@charset "UTF-8";
html {
  background: #fff;
}

body {
  font-size: 15px;
  color: #000;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Verdana, "Osaka", "ＭＳ Ｐゴシック", sans-serif;
  position: relative;
}

.mn {
  font-family: "Noto Serif JP", serif;
}

.cn-w {
  width: 100%;
  max-width: 1100px;
  height: auto;
  margin: 0 auto;
  padding: 0 2%;
}

.text-nowrap {
  display: inline-block;
}
/*----- .link-box -----*/
.link-box {
  padding: 40px 0;
  background: #fff;
}
.link-box .box {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    border: 2px solid #014ab1;
}
.link-box .box h2 {
    line-height: 1.4;
    background-color: #0049b0;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 4%;
    margin-bottom: 20px;
}
.link-box .box .txt {
    text-align: center;
    color: #e85382;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    padding: 0 4%;
    margin-bottom: 15px;
}
.link-box .box .text {
    text-align: center;
    padding: 0 4%;
    margin-bottom: 15px;
}
.link-box .box .btn {
    width: 100%;
    max-width: 500px;
    padding: 0 4%;
    margin: 0 auto 20px;
}

/*===== header =====*/
header {
}

header h1 {
  background: #004ab0;
  line-height: 1.4;
  font-size: 13px;
  color: #fff;
}

header h1 span {
    display: block;
  width: 100%;
  max-width: 1200px;
  height: auto;
  padding: 3px 2%;
  margin: 0 auto;
}

header .hd-box {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  padding: 15px 2%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
    align-items: center;
}

header .hd-box .logo {
  width: 29%;
}
header .hd-box .info {
  width: 63%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
    align-items: center;
}
header .hd-box .info .tel {
  width: 46%;
}
header .hd-box .info .time {
  width: 52%;
}

header .hd-box .hd-link {
  display: none;
}

/*---- #g-nav ----*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position: fixed;
  z-index: -10;
  opacity: 0;
  /*はじめは透過0*/
  /*ナビの位置と形状*/
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background: #004ab0;
  /*動き*/
  transition: all 0.3s;
  display: none;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
  opacity: 1;
  z-index: 10;
  display: block;
  margin-top: 65px;
  width: 300px;
  left: auto;
  right: 0;
}

/*ナビゲーション*/
#g-nav ul.sp-nav {
  display: none;
  margin-top: 70px;
}

#g-nav.panelactive ul.sp-nav {
  display: block;
}

/*リストのレイアウト設定*/
#g-nav ul.sp-nav li {
  list-style: none;
  text-align: center;
}

#g-nav ul.sp-nav li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  top: 0;
  right: 0;
  cursor: pointer;
  width: 65px;
  height: 65px;
    background-color: #004ab0;
}

.openbtn.active {
    background-color: #073a81;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  height: 2px;
  background-color: #ffffff;
  width: 33px;
}

.openbtn span:nth-of-type(1) {
  top: 19px;
}

.openbtn span:nth-of-type(2) {
  top: 31px;
  width: 22px;
  margin: 0 16px 0 auto;
}

.openbtn span:nth-of-type(3) {
  top: 43px;
}

.openbtn.active span:nth-of-type(1) {
  transform: translateY(6px) rotate(-45deg);
  top: 26px;
  width: 44%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  transform: translateY(-6px) rotate(45deg);
  top: 38px;
  width: 45%;
}

/*==プルダウンメニューの設定==*/
#g-nav-list {
  margin-top: 40px;
  margin-bottom: 25px;
}

/*ナビゲーションを横並びに*/
#g-nav-list ul {
  text-align: left;
  margin: 0 7%;
  line-height: 1.4;
}

#g-nav-list li.has-child ul {
  border-bottom: none;
  position: relative;
  margin: 0;
  margin-bottom: 10px;
  left: 0;
  top: 0;
  width: 100%;
  visibility: visible;
  /*JSで制御するため一旦表示*/
  opacity: 1;
  /*JSで制御するため一旦表示*/
  display: none;
  /*JSのslidetoggleで表示させるため非表示に*/
  transition: none;
  /*JSで制御するためCSSのアニメーションを切る*/
}

/*2階層目以降は横並びにしない*/
#g-nav-list ul ul {
  display: block;
}

/*ナビゲーションのリンク設定*/
#g-nav-list ul li a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  padding: 13px 15px 13px 10px;
  transition: all 0.3s;
  background: url(../img/lp-jiko/icon02.png) no-repeat center right;
  background-size: 8px;
  border-bottom: 1px solid #fff;
}

#g-nav-list ul li a.icon-plus {
  background: url(../img/common/icon09.jpg) no-repeat center right;
  background-size: 17px;
}

#g-nav-list ul li a .icon {
  background: url(../img/common/icon01b.png) no-repeat right center;
  background-size: 17px;
  padding-right: 25px;
}

#g-nav-list li.has-child ul.sp-sub-nav li {
  width: 100%;
  margin-bottom: 0;
  margin-left: 8%;
}

#g-nav-list li.has-child ul.sp-sub-nav li a {
  padding: 10px 35px 10px 15px;
  border: none;
  font-weight: normal;
  background: url(../img/common/icon08.png) no-repeat left center;
}

/*hoverしたら表示*/
#g-nav-list li.has-child:hover > ul,
#g-nav-list li.has-child ul li:hover > ul,
#g-nav-list li.has-child:active > ul,
#g-nav-list li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}

/*===== #mv =====*/

/*===== #global-nav =====*/
#global-nav {
  background-color: #004ab0;
}

#global-nav ul {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  padding: 5px 2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#global-nav ul li {
  width: calc(100% / 5);
  border-right: 1px solid #fff;
  text-align: center;
}

#global-nav ul li.first {
  border-left: 1px solid #fff;
}

#global-nav ul li a {
  display: flex;
  width: 100%;
  min-height: 50px;
  flex-direction: column;
  justify-content: center;
  padding: 0 3%;
  text-decoration: none;
}

#global-nav ul li a span {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  line-height: 1.4;
}

/*===== footer =====*/
footer {
  background-color: #004ab0;
}

footer .copy {
  text-align: center;
  line-height: 1.4;
  font-size: 14px;
  color: #fff;
  padding: 15px 2%;
}

/*==================
    main
==================*/
/*===== 共通 =====*/
.cn-hx {
    width: 80%;
    margin: 0 auto 40px;
    line-height: 1.6;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 45px 3%;/*文字回りの余白（上下左右）*/
    display: block;
    border-color: #4aa481;/*線の色*/
    position: relative;
}
.cn-hx:before,
.cn-hx:after {
    content: '';
    width: 80px;/*左右の枠線の幅*/
    height: 20px;/*左右の枠線の高さ*/
    position: absolute;
}
.cn-hx:before {
    border-left: 2px solid #004ab0;/*左枠左線（太さ 実線 色）*/
    border-top: 2px solid #004ab0;/*左枠上線（太さ 実線 色）*/
    top: 0;
    left: 0;
}
.cn-hx:after {
    border-right: 2px solid #004ab0;/*右枠右線（太さ 実線 色）*/
    border-bottom: 2px solid #004ab0;/*右枠下線（太さ 実線 色）*/
    bottom: 0;
    right: 0;
}
.cn-hx span {
    border-bottom: 2px solid #004ab0;
}
.cn-hx span span {
    border-bottom: none;
    color: #e85382;
}
.cn-hx br {
    display: none;
}

/*===== .web-btn =====*/
.web-btn {
    padding: 50px 2% 10px;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
}

/*===== #front =====*/
#front {
    padding: 50px 0;
}
#front .box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
#front .box .img {
  width: 45%;
}
#front .box .text-box {
    width: 55%;
    background-color: #e1f3fe;
    padding: 4%;
}

/*===== #point =====*/
#point {
  background-color: #e1f3fe;
  padding: 50px 0;
}
#point .box {
  background-color: #fff;
  padding: 3%;
  margin-bottom: 20px;
}
#point .box h3 {
    width: 65%;
    float: left;
    line-height: 1.4;
    font-size: 18px;
    font-weight: bold;
    color: #004ab0;
    background: url(../img/lp-jiko/point-icon01.jpg) no-repeat left top;
    background-size: 45px;
    padding: 10px 0 10px 54px;
    margin-bottom: 15px;
}
#point .box h3.icon01 {
    background-image: url(../img/lp-jiko/point-icon01.jpg);

}
#point .box h3.icon02 {
    background-image: url(../img/lp-jiko/point-icon02.jpg);
}
#point .box h3.icon03 {
    background-image: url(../img/lp-jiko/point-icon03.jpg);
}
#point .box h3.icon04 {
    background-image: url(../img/lp-jiko/point-icon04.jpg);
}
#point .box h3.icon05 {
    background-image: url(../img/lp-jiko/point-icon05.jpg);
}
#point .box .img {
    width: 32%;
    float: right;
}
#point .box .text-box {
    width: 65%;
    float: left;
}

/*===== #step =====*/
#step {
  background-color: #e1f3fe;
  padding: 60px 0;
}
#step .step-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#step .step-box .box {
  width: 47%;
  border: 2px solid #004ab0;
  background-color: #fff;
    padding: 2%;
  margin-bottom: 25px;
}
#step .step-box .box .img {
    width: 100%;
    max-width: 276px;
    margin: 10px auto 15px;
}
#step .step-box .box h3 {
    line-height: 1.4;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #004ab0;
    margin-bottom: 15px;
}
#step .step-box .box .text-box {
}
#step .step-box .box .text-box .text {
  margin-bottom: 0;
}

/*===== #mitiuti =====*/
#mitiuti {
  background-color: #e1f3fe;
  padding: 60px 0;
}
#mitiuti .syojyo {
    margin-bottom: 25px;
}
#mitiuti .syojyo h3 {
    display: inline-block;
    line-height: 1.4;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    background-color: #e85382;
    padding: 6px 20px;
    margin-bottom: 10px;
}
#mitiuti .syojyo .main-text {
    line-height: 1.4;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}
#mitiuti .syojyo .box {
    background-color: #fff;
    border: 5px solid #004ab0;
    padding: 3%;
    margin-bottom: 15px;
}
#mitiuti .syojyo .box h4 {
    width: 65%;
    float: left;
    line-height: 1.4;
    font-size: 20px;
    font-weight: bold;
    color: #004ab0;
    border-bottom: 3px solid #004ab0;
    padding-bottom: 6px;
    margin-bottom: 15px;
}
#mitiuti .syojyo .box .img {
    width: 30%;
    float: right;
    padding: 4%;
}
#mitiuti .syojyo .box .text-box {
    width: 65%;
    float: left;
}
#mitiuti .syojyo .box .text-box .text {
  margin-bottom: 0;
}
#mitiuti .genin {
    margin-bottom: 25px;
}
#mitiuti .genin h3 {
    display: inline-block;
    line-height: 1.4;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    background-color: #e85382;
    padding: 6px 20px;
    margin-bottom: 10px;
}
#mitiuti .genin .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#mitiuti .genin .list .box {
    width: 32%;
    background-color: #fff;
    border: 5px solid #004ab0;
    padding: 3%;
    margin-bottom: 15px;
}
#mitiuti .genin .list .box h4 {
    line-height: 1.4;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #004ab0;
    border-bottom: 3px solid #004ab0;
    padding-bottom: 5px;
    margin-bottom: 10px;
}
#mitiuti .genin .list .box .text-box {
}
#mitiuti .genin .list .box .text-box .text {
  margin-bottom: 0;
}
#mitiuti .tiryo {
}
#mitiuti .tiryo h3 {
    display: inline-block;
    line-height: 1.4;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    background-color: #e85382;
    padding: 6px 20px;
    margin-bottom: 10px;
}
#mitiuti .tiryo .box {
    background-color: #fff;
    border: 5px solid #004ab0;
    padding: 3%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
#mitiuti .tiryo .box .img {
    width: 32%;
}
#mitiuti .tiryo .box .text-box {
    width: 64%;
}
#mitiuti .tiryo .box .text-box .text {
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 0;
}

/*===== #faq =====*/
#faq {
  background-color: #fee1ea;
  padding: 60px 0;
}
#faq .faq-box {
  background-color: #fff;
    padding: 4%;
}
#faq .faq-box dl {
    margin-bottom: 15px;
}
#faq .faq-box dl dt {
    line-height: 1.4;
    font-size: 18px;
    font-weight: bold;
    color: #e95381;
    background: url(../img/lp-jiko/icon-q.jpg) no-repeat left top;
    background-size: 38px;
    padding: 7px 0 14px 48px;
    border-bottom: 1px solid #e95381;
    margin-bottom: 10px;
}
#faq .faq-box dl dd {
    line-height: 1.6;
}
#faq .faq-box dl dd span {
    color: #e95381;
    font-weight: bold;
}

/*===== #nayami =====*/
#nayami {
  background-color: #e1f3fe;
  border-top: 3px solid #004ab0;
  border-bottom: 3px solid #004ab0;
  padding-top: 30px;
}
#nayami .cn-w {
  position: relative;
}
#nayami .text-box {
  width: 55%;
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
}
#nayami .text-box h2 {
    width: 100%;
    max-width: 580px;
    margin: 0 auto 30px;
}
#nayami .text-box ul {
  background-color: #fff;
  border: 3px solid #004ab0;
  border-radius: 10px;
    padding: 20px 4%;
  line-height: 1.4;
}
#nayami .text-box ul li {
  background: url(../img/lp-jiko/icon-check.png) no-repeat top left;
    font-size: 17px;
  padding: 1px 0 3px 32px;
  margin-bottom: 15px;
}
#nayami .text-box ul li span {
  font-weight: bold;
}
#nayami .text-box ul li.last {
  margin-bottom: 0;
}
#nayami .img {
  width: 48%;
  margin-left: auto;
  line-height: 0;
}

/*===== #access =====*/
#access {
  padding: 30px 0 60px;
}
#access .img {
    margin-bottom: 25px;
}
#access .access-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}
#access .access-box .info {
    width: 40%;
}
#access .access-box .info h3 {
    width: 100%;
    max-width: 338px;
    margin-bottom: 10px;
}
#access .access-box .info .adrs {
    line-height: 1.4;
    font-size: 16px;
    margin-bottom: 15px;
}
#access .access-box .info .tel {
    width: 100%;
    max-width: 501px;
    margin-bottom: 15px;
}
#access .access-box .info .time {
    width: 100%;
    max-width: 501px;
    margin-bottom: 15px;
}
#access .access-box .info .tel02 {
    width: 100%;
    max-width: 501px;
}
#access .access-box .route {
    width: 50%;
}
#access .access-box .route .box {
    background-color: #e1f3fe;
    padding: 3%;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
#access .access-box .route .box h3 {
    line-height: 1.4;
    font-size: 20px;
    font-weight: bold;
    color: #4aa481;
    margin-bottom: 15px;
}
#access .access-box .route .box .hx {
    width: 90px;
    line-height: 1.4;
    font-weight: bold;
    background-color: #004ab0;
    color: #ffffff;
    text-align: center;
    padding: 5px 2%;
    margin-bottom: 5px;
}
#access .access-box .route .box .text {
    width: calc(98% - 90px);
    padding: 5px 0;
}
#access .access-box .route .joint {
}
#access .access-box .route .joint .text {
}
#access .access-box .route .joint .joint-logo {
}
#access .access-box .route .joint .joint-logo a {
    display: flex;
    justify-content: space-between;
}
#access .access-box .route .joint .joint-logo a .img {
    display: block;
    width: 30%;
}
#access .access-box .route .joint .joint-logo a p {
    width: 67%;
    line-height: 1.4;
    font-size: 16px;
}

/*===============================================
    ■tablet 画面の横幅が900pxまで
===============================================*/
@media screen and (max-width: 900px) {
  /*===== #nayami =====*/
}
/*===============================================
    ■tablet 画面の横幅が800pxまで
===============================================*/
@media screen and (max-width: 800px) {
  /*===== header =====*/
  header .hd-box .logo {
    width: 100%;
    max-width: 338px;
    margin: 0 auto 15px;
  }
  header .hd-box .info {
    width: 100%;
  }
  /*===== #front =====*/
  #front .box .img {
    width: 100%;
    max-width: 479px;
    margin: 0 auto 15px;
  }
  #front .box .text-box {
    width: 100%;
  }
  /*===== #step =====*/
  #step .step-box .box {
    width: 49%;
  }
  /*===== #nayami =====*/
  #nayami .text-box {
    width: 100%;
    position: static;
    top: auto;
    transform: none;
    margin-bottom: 25px;
  }
  #nayami .img {
    width: 100%;
    max-width: 512px;
    margin: 0 auto;
  }
  /*===== #mitiuti =====*/
  #mitiuti .genin .list .box {
    width: 100%;
  }
  #mitiuti .genin .list .box h4 {
    text-align: left;
  }
}
/*===============================================
    ■tablet 画面の横幅が520pxまで
===============================================*/
@media screen and (max-width: 520px) {
  .cn-hx {
    width: 100%;
    font-size: 20px;
    padding: 30px 3%;
  }
  .cn-hx br {
    display: block;
  }
  .link-box {
    padding: 30px 0;
  }
  .link-box ul li {
    width: 49%;
  }
  /*===== header =====*/
  header {
    position: absolute;
   top: 0;
    left: 0;
    width: 100%;
  }
  header h1 {
    display: none;
  }
  header .hd-box .logo {
        display: none;
  }
  header .hd-box .info {
    display: none;
  }
  header .hd-box .hd-link {
    display: block;
  }
  #global-nav {
    display: none;
  }
  /*===== #front =====*/
  #front {
    padding: 30px 0;
  }
  /*===== #nayami =====*/
  #nayami .txt02 p {
    font-size: 20px;
  }
  /*===== #point =====*/
  #point {
    padding: 30px 0;
  }
  #point .box h3 {
    width: 100%;
    float: none;
  }
  #point .box .img {
    width: 100%;
    float: none;
    max-width: 311px;
    margin: 0 auto 15px;
  }
  #point .box .text-box {
    width: 100%;
    float: none;
  }
  /*===== #step =====*/
  #step {
    padding: 30px 0;
  }
  #step .step-box .box {
    width: 100%;
  }
  /*===== #mitiuti =====*/
  #mitiuti {
    padding: 30px 0;
  }
  #mitiuti .syojyo .box h4 {
    width: 100%;
    float: none;
  }
  #mitiuti .syojyo .box .img {
    width: 100%;
    float: none;
    max-width: 170px;
    margin: 0 auto 15px;
  }
  #mitiuti .syojyo .box .text-box {
    width: 100%;
    float: none;
  }
  #mitiuti .tiryo .box .img {
    width: 100%;
    max-width: 315px;
    margin: 0 auto 15px;
  }
  #mitiuti .tiryo .box .text-box {
    width: 100%;
  }
  #mitiuti .tiryo .box .text-box .text {
    line-height: 1.6;
    font-weight: normal;
  }
  /*===== #faq =====*/
  #faq {
    padding: 30px 0;
  }
  /*===== #access =====*/
  #access {
    padding: 0 0 30px;
  }
  #access .access-box .info {
    width: 100%;
    margin-bottom: 20px;
  }
  #access .access-box .route {
    width: 100%;
  }
}