
/* -----------------------------------------------

	 header

----------------------------------------------- */
header{
  padding: 15px 0;
  z-index: 10;
  width: 100%;
  border-radius: 15px;
  background: #fff;
  position: fixed;
  top: 15px;
  left: 50%;
  -webkit-transform : translateX(-50%);
  transform : translateX(-50%);
  width: calc(100% - 30px);
  box-shadow: 2px 3px 8px #cacaca;
}
header .cwrap{
  padding: 0 80px;
}
header .container{
  max-width: 100%;
}
header .logo{
  max-width: 290px;
}
header .pcnav01 {
  gap: 20px;
  margin-bottom: 15px;
}
header .pcnav01 .pcnavbtn {
  background: #4297cc;
  border-radius: 30px;
  font-size: 16px;
}
header .pcnav01 .pcnavbtn.btn01{
  max-width: 150px;
  width: 100%;
}
header .pcnav01 .pcnavbtn.btn02{
  max-width: 175px;
  width: 100%;
}
header .pcnav01 .pcnavbtn a{
  padding: 5px 10px;
  color: #fff;
  font-weight: 500;
}
header .pcnav01 .pcnavbtn span.icon{
  margin-right: 15px;
  max-width: 20px;
}
/* header .pcnav01 .pcnavbtn span .txt{} */
header .pcnav01 .pcnavbtn img{
  max-width: 15px;
  margin-right: 10px;
}
header .pcnav01 .pcnavbtn.btn02 img{
  max-width: 18px;
}
header .pcnav01 .tel{
  max-width: 185px;
}

header .pcnav02 ul{
  gap: 40px;
}
header .pcnav02 li{
  position: relative;
}
header .pcnav02 li:first-child:after{
  display: none;
}
header .pcnav02 li::after{
  content: "";
  display: inline-block;
  width: 1px;
  height: 15px;
  background: #cccccc;
  transform: rotate(25deg) translate(-50%, -50%);
  position: absolute;
  top: 50%;
  right: calc(100% + 22.5px);
}
header .pcnav02 li a{
  font-weight: 600;
  font-size: 17px;
}
#nav li a.active{
  color:#4297cc;
}

@media only screen and (max-width: 1400px) {
  header .cwrap{
    padding: 0 40px;
  }
}
@media only screen and (max-width: 1024px) {
  header {
    padding: 10px 0;
    width: calc(100% - 60px);
  }
  header .cwrap{
    padding: 0 30px;
  }
  header .logo {
    max-width: 200px;
  }
  header .pcnav01 {
    margin-bottom: 10px;
  }
  header .pcnav02 ul {
    gap: 18px;
  }
  header .pcnav02 li::after{
    right: calc(100% + 11.5px);
  }
  header .pcnav02 li a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1000px) {
  header {
    padding: 15px 0;
  }
  header .pcnavwrap{
    display: none;
  }
}
@media only screen and (max-width: 479px) {
  header .cwrap {
    padding: 0 20px;
  }
  header .logo {
    max-width: 150px;
  }
}




/* -----------------------------------------------

	 hamburger

----------------------------------------------- */

/*　ハンバーガーボタン　*/
.hamburger {
  display : none;
  position: absolute;
  z-index : 3;
  right : 13px;
  top   : 10.5px;
  width : 40px;
  height: 40px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 28px;
  height  : 3px ;
  left    : 6px;
  border-radius: 30px;
  background : #40a0da;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 12px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 28px;
}

/* ナビ開いてる時のボタン */
/* .hamburger.active span{
  background: #fff;
} */
.hamburger.active span{
  background: #fff;
}
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : -15px;
  left : 15px;
  color: #000;
  background: #40a0da;
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 100vw;
  height: 100vh;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
  max-width: 600px;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 30px 0 15px;
  text-decoration :none;
  font-size: 18px;
}
nav.globalMenuSp ul li.tel a{
  background: #fff;
  color: #40a0da;
  margin: 10px 0;
  padding: 10px;
}
nav.globalMenuSp ul li.tel a span.txt{
  font-size: 18px;
}
nav.globalMenuSp ul li.tel a span.num{
  display: block;
  font-size: 30px;
}
nav.globalMenuSp.active,
header.fixed nav.globalMenuSp.active {
  transform: translateX(calc(0% - 30px));
}

@media only screen and (max-width: 1000px) {
  header .hamburger{
    display: block;
  }
  .hamburger{
    right: 15px;
  }
  nav.globalMenuSp.active, header.fixed nav.globalMenuSp.active{
    transform: translateX(calc(0% - 45px));
  }
}
@media only screen and (max-width: 479px) {
  header {
    width: calc(100% - 30px);
  }
  header nav.globalMenuSp{
    top  : -15px;
    left : 15px;
  }
  header nav.globalMenuSp.active{
    overflow-y: scroll;
    transform: translateX(calc(0% - 30px));
  }
  .hamburger{
    top: 5.5px;
    width: 45px;
  }
  nav.globalMenuSp ul{
    padding: 60px;
    height: 95%;
  }
  nav.globalMenuSp ul li.tel a span.num{
    font-size: 25px;
  }
  nav.globalMenuSp ul li a {
    padding: 15px 0 10px;
    line-height: 1.5;
    font-size: 17px;
  }
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 90px;
  }
}
@media only screen and (max-width: 350px) {
  nav.globalMenuSp ul {
    padding: 30px;
  }
  nav.globalMenuSp ul li a{
    font-size: 16px;
    padding: 15px 0 8px;
  }
  nav.globalMenuSp ul li.tel a span.txt {
    font-size: 16px;
  }
  nav.globalMenuSp ul li.tel a{
    padding: 10px;
  }
}

/* -----------------------------------------------

	 sec_timeaccess

----------------------------------------------- */
.sec_timeaccess{
  padding: 110px 0;
  background: #40a0da;
}
.sec_timeaccess .headttl01{
  color: #fff;
}
.sec_timeaccess .timeinfo{
  margin-bottom: 60px;
}
.sec_timeaccess .med_time{
  width: 50%;
  padding: 35px 30px;
  background: #fff;
  border-radius: 45px;
}
.sec_timeaccess .med_time .image{
  margin-bottom: 30px;
}
.sec_timeaccess .med_time li{
  margin-bottom: 30px;
}
.sec_timeaccess .med_time li:last-child{
  margin-bottom: 0;
}
.sec_timeaccess .med_time li span{
  color: #40a0da;
  font-weight: 700;
}
.sec_timeaccess .med_info{
  width: 50%;
  padding-left: 80px;
}
.sec_timeaccess .med_info .logo{
  max-width: 290px;
  margin-bottom: 40px;
}
.sec_timeaccess .med_info .txt{
  margin-bottom: 40px;
  line-height: 2;
  font-weight: normal;
}
.sec_timeaccess .med_info .txt:last-child{
  margin-bottom: 0;
}
.sec_timeaccess .med_info .txt02 h3{
  font-size: 14px;
}
.sec_timeaccess .med_info .txt02 a{
  font-size: 18px;
}
.sec_timeaccess .med_info .txt02 a span{
  font-size: 32px;
  display: inline-block;
  margin-left: 10px;
  font-weight: 500;
  line-height: 1.3;
}
.sec_timeaccess .med_info .txt03 a{
  text-decoration: underline;
  font-weight: 600;
}
.sec_timeaccess .med_info .txt03 h3,
.sec_timeaccess .med_info .txt04 h3{
  font-weight: 500;
  font-size: 18px;
}

.sec_timeaccess .med_info *,
.sec_timeaccess .mapwrap *{
  color: #fff;
}
.sec_timeaccess .mapwrap iframe{
  border-radius: 30px;
  margin-bottom: 20px;
}
.sec_timeaccess .mapwrap p{
  text-align: right;
}
.sec_timeaccess .mapwrap a{
  text-decoration: underline;
}

@media only screen and (max-width: 1024px) {
  .sec_timeaccess .med_info{
    padding-left: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .sec_timeaccess {
    padding: 80px 0;
  }
  .sec_timeaccess .timeinfo{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 50px;
  }
  .sec_timeaccess .med_time,
  .sec_timeaccess .med_info{
    width: 100%;
  }
  .sec_timeaccess .med_time{
    border-radius: 20px;
    padding: 30px 20px;
  }
  .sec_timeaccess .med_info {
    padding-left: 0;
  }
  .sec_timeaccess .med_info .logo {
    max-width: 250px;
    margin-bottom: 15px;
  }
  .sec_timeaccess .med_info .txt {
    margin-bottom: 30px;
  }
  .sec_timeaccess .med_time .image ,
  .sec_timeaccess .med_time li{
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 479px) {
  .sec_timeaccess {
    padding: 60px 0;
  }
  .sec_timeaccess .timeinfo{
    gap: 40px;
    margin-bottom: 40px;
  }
  .sec_timeaccess .med_info .logo {
    max-width: 230px;
    margin-bottom: 10px;
  }
  .sec_timeaccess .med_info address {
    font-size: 15px;
  }
  .sec_timeaccess .med_info .txt {
    margin-bottom: 20px;
  }
  .sec_timeaccess .mapwrap iframe {
    height: 320px;
    border-radius: 20px;
    margin-bottom: 10px;
  }
  .sec_timeaccess .med_time .image ,
  .sec_timeaccess .med_time li{
    margin-bottom: 10px;
  }
}


/* -----------------------------------------------

	 footer

----------------------------------------------- */
footer{
  background: #f7f7f7;
  position: relative;
  font-size: 16px;
  padding: 100px 0 40px;
}

footer .footer_nav{
  border-bottom: solid 1px #e0e0e0;
  padding-bottom: 75px;
  margin-bottom: 45px;
}
footer .footer_nav *{
  font-weight: 600;
}
footer .fnav,
footer .fnav_child li{
  margin-bottom: 15px;
}
footer .fnav:last-child, 
footer .fnav_child li:last-child{
  margin-bottom: 0;
}
footer .fnav_child li::before{
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  display: inline-block;
  color: #40a0da;
  margin-right: 7px;
  position: relative;
  font-size: 14px;
  font-weight: 700;
}
footer .footer_info .flogo{
  max-width: 240px;
  margin-bottom: 20px;
}
footer .footer_info .copyright{
  text-align: center;
  color: #999999;
  font-size: 14px;
}

@media only screen and (max-width: 1024px) {}
@media only screen and (max-width: 768px) {
  footer{
    padding: 80px 0 40px;
  }
  footer .footer_nav *{
    font-size: 15px;
  }
}
@media only screen and (max-width: 650px) {
  footer{
    padding: 60px 0 40px;
  }
  footer .footer_nav{
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 65px;
  }
  footer .footer_nav .fnavset {
    width: 100%;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: solid 1px #e0e0e0;
  }
  .footer_info{
    font-size: 15px;
    gap: 30px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media only screen and (max-width: 479px) {
  footer .footer_nav *{
    line-height: 1.5;
  }
}





/* -----------------------------------------------

	 tophe

----------------------------------------------- */
a#tophe{
  display: none;
  position: absolute;
  right: 40px;
  bottom: 45px;
  z-index: 2;
}
a#tophe{
  display: block;
  font-size: 0;
  text-align: center;
  max-width: 70px;
}
a#tophe:hover{
  opacity: 1;
}
a#tophe i{
  color:#40a0da;
  line-height: 50px;
}
a#tophe span{
  font-weight: 700;
  display: block;
}


@media only screen and (max-width: 1400px){
  a#tophe {
    right: 30px;
    bottom: 90px;
  }
}
  @media only screen and (max-width: 650px){
    a#tophe{
      right: 20px;
      bottom: 220px;
    }
  }