@charset "utf-8";
/*
Theme Name: Original Theme

*/

:root {
  --theme-color: #5fd5f9;
  --theme-back-color: #00aade;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 62.5%;
  color: #000000;
}

body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.wrapper {
  max-width: 1320px;
  width: calc(100% - 60px);
  margin: 0 auto;
}



h1,h2,h3,h4,h5,h6,p,th,td,li,dt,dd {
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
b {
  font-weight: bold;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3.5rem;
}

h3 {
  font-size: 2.5rem;
}

h4 {
  font-size: 2rem;
}

p,th,td,li,dt,dd {
  font-size: 1.6rem;
}

@media screen and (max-width: 770px) {
  h1,h2,h3,h4,h5,h6,p,th,td,li,dt,dd {
    line-height: 1.6;
  }
  
  h1 {
    font-size: 4rem;
  }
  
  h2 {
    font-size: 3.5rem;
  }
  
  h3 {
    font-size: 2.5rem;
  }
  
  h4 {
    font-size: 2rem;
  }
  
  p,th,td,li,dt,dd {
    font-size: 1.6rem;
  }


  .wrapper {
    width: calc(100% - 6rem);
  }

}

/*共通*/
.section_title {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section_title .jp {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: bold;
}

.section_title .en {
  font-size: 7rem;
  line-height: 1;
  font-weight: bold;
}

.color_title span {
  color: var(--theme-color);
}




.btn_box a {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d5d5d5;
  border-radius: 50px;
  max-width: 235px;
  font-weight: bold;
  font-size: 1.4rem;
  position: relative;
  background-color: white;
  transition: all 0.3s ease;
}

.btn_box a:hover {
  background-color: var(--theme-back-color);
  color: white;
  transition: all 0.3s ease;
}

.btn_box a::after {
  width: 12px;
  height: 12px;
  content: '';
  background-color: var(--theme-color);
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  border-radius: 50%;
}

.btn_box a:hover::after {
  background-color: white;
}


table th,
table td {
    border: 1px solid #cccccc;
    padding: 15px;
}

table th{
    background-color: #d5f0f8;
}

table td {
  background-color: white;
}

@media screen and (max-width: 770px) {


}







@media screen and (min-width: 771px) {
  .sp {
    display: none;
  }
  .minsp {
    display: none;
  }

}
@media screen and (max-width: 770px) {


  .pc {
    display: none;
  }
  /*共通*/
  h1 {
    font-size: 3.4rem;
  }
  
  h2 {
    font-size: 3.2rem;
  }
  
  h3 {
    font-size: 2.8rem;
  }
  
  h4 {
    font-size: 2.6rem;
  }
  p,th,td,li,dt,dd {
    font-size: 2.2rem;
  }


  .section_title {
    gap: 2rem;
  }
  
  .section_title .jp {
    font-size: 2.6rem;
  }
  
  .section_title .en {
    font-size: 7rem;
  }



  .btn_box a {
    min-height: 6.6rem;
    border-radius: 6rem;
    max-width: 30rem;
    font-size: 2.2rem;
  }

  .btn_box a::after {
    width: 1.2rem;
    height: 1.2rem;
    right: 1.5rem;
  }



}



/***ヘッダー***/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
header .header_wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_logo {
  max-width: 200px;
}


.header_menu .sns_link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header_menu .sns_link a {
  width: 25px;
}




@media screen and (min-width: 771px) {


  .header_menu {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
  }
  
  .header_menu nav > ul {
    display: flex;
    gap: 30px;
  }

  .header_menu nav > ul li {
    font-size: 1.5rem;
  }
  

}


@media screen and (max-width: 770px) {
  header .header_wrapper {
    padding: 4rem 6rem;
  }
  
  .header_logo {
    max-width: 27.6rem;
  }

  .header_logo img {
    width: 100%;
  }

  .header_menu {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.7);
    height: 100vh;
    width: 100%;
    padding: 5rem;
    display: none;
  }

  .openbtn{
    position: relative;
    /* background:var(--theme-color); */
    cursor: pointer;
      width: 6rem;
      height:6rem;
    display: block;
    z-index: 1000;
  }
  
  /*ボタン内側*/
  .openbtn span{
      display: inline-block;
      transition: all .3s;/*アニメーションの設定*/
      position: absolute;
      left: 50%;
      height: 0.2rem;
      border-radius: 2px;
    background: var(--theme-color);
      width: 3.3rem;
      transform: translate(-50%, -50%);
    }
  
  .openbtn span:nth-of-type(1) {
    top:calc(50% - 1rem); 
  }
  
  .openbtn span:nth-of-type(2) {
    top:50%;
  }
  
  .openbtn span:nth-of-type(3) {
    top:calc(50% + 1rem);
  }
  
  /*activeクラスが付与されると線が回転して×に*/
  
  .openbtn.active span:nth-of-type(1) {
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(-35deg);
  }
  
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;/*真ん中の線は透過*/
  }
  
  .openbtn.active span:nth-of-type(3){
    top: 50%;
    left: 50%;
      transform: translate(-50%, -50%) rotate(35deg);
  }

}


/***common_contact***/
.common_contact {
  padding: 150px 0;
  position: relative;
  background: url(img/top_contact_back.jpg) center / cover no-repeat;
  color: white;
}

.common_contact .wrapper {
  max-width: 1300px;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.common_contact .section_title {
  text-align: right;
  color: white;
}


.common_contact .section_title .en {
  position: relative;
  
}
.common_contact .section_title .en::before {
  content: 'ONTACT';
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
  height: 30px;
  color: #ebebeb;
  display: flex;
  align-items: flex-start;
}

.common_contact .two_column {
  display: flex;
  align-items: center;
  text-align: center;
}

.common_contact .two_column > div {
  width: 50%;
}

.common_contact .tel_box h3 {
  font-size: 2.4rem;
  font-weight: bold;
}
.common_contact .tel_box p {
  font-weight: bold;
}
.common_contact .tel_box .tel {
  font-size: 4.8rem;

}

.common_contact .tel_box .time {
  font-size: 1.8rem;
}


.common_contact .mail_box a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  width: 100%;
  max-width: 536px;
  height: 104px;
  border: 1px solid white;
  position: relative;
  margin: 0 auto;
  transition: all 0.3s ease;
}



.common_contact .mail_box a::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 1.5px solid white;
  border-bottom: none;
  border-left: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 25px;
}

.common_contact .mail_box a:hover {
  background-color: white;
  color: #000;
}

.common_contact .mail_box a:hover::after {
  border-color: #000;
}


@media screen and (max-width: 770px) {

  .common_contact {
    padding: 15rem 0 7rem;
    background: url(img/top_contact_back_sp.png) center / cover no-repeat;
  }

  .common_contact .wrapper {
    top: -3rem;
  }

  .common_contact .section_title .en::before {
    height: 3rem;
  }
  .common_contact .two_column {
    flex-direction: column;
    gap: 6rem;
  }
  
  .common_contact .two_column > div {
    width: 100%;
  }


  .common_contact .tel_box h3 {
    font-size: 3rem;
  }
  .common_contact .tel_box .tel {
    font-size: 3.6rem;
  }
  .common_contact .tel_box .tel a {
    font-size: 6rem;
  }
  .common_contact .tel_box .time {
    font-size: 2.2rem;
  }
  .common_contact .mail_box a {
    font-size: 2.6rem;
    max-width: 53.6rem;
    height: 10rem;
  }
  .common_contact .mail_box a::after {
    width: 1rem;
    height: 1rem;
    right: 2.5rem;
  }
  


}

/***footer***/
footer {
  padding: 100px 0;
  background-color: #00303f;
  color: white;
}

footer .wrapper {
  max-width: 1260px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch
}

footer .logo {
  max-width: 200px;
  margin-bottom: 15px;
}

footer .address {
  font-size: 15px;
}

footer .menu_box {
  display: flex;
  flex-wrap: wrap;
  gap: 110px;
}

footer nav li {
  font-size: 1.5rem;
}

footer .sns_link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

footer .sns_link a {
  width: 25px;
}

footer .copy_box {
  display: flex;
  align-items: flex-end;
}

footer .copy {
  font-size: 1.1rem;
  color: #637175;
}


@media screen and (max-width: 770px) {
  footer {
    padding: 7rem 0;
  }

  footer .wrapper {
    flex-direction: column;
    align-items: center;
    gap: 5rem;
  }


  footer .logo {
    max-width: inherit;
    width: 32.2rem;
    margin: 0 auto;
    margin-bottom: 2rem;
  }

  footer .logo img {
    width: 100%;
  }
  footer .address {
    text-align: center;
    font-size: 1.8rem;
  }
  footer .menu_box {
    display: block;
  }


  footer nav li {
    font-size: 1.8rem;
  }

  footer .sns_link {
    gap: 3rem;
    margin-top: 6.5rem;
    justify-content: center;
  }

  footer .sns_link a {
    width: 5.4rem;
  }

  footer .sns_link a img {
    width: 100%;
  }
  footer .copy {
    font-size: 1.6rem;
    text-align: center;
  }



  


}