@charset "UTF-8";
html{
  font-size: 10px
}
body{
  font-family: "MS Pゴシック",sans-serif;
  background-color: #fff;
  line-height: 1.7;
}
a{
  text-decoration: none;
}
img{
  max-width: 100%;
}



/*ヘッダー---------------------------------------------------*/
.pc-header{
  width: 100%;
  height: 13%;
  display: flex;
  position: fixed;
  z-index: 2;
  top: 0;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, .94);
}

.logo{
  width: 25%;
  padding-left: 10px;
  padding-top: 1.7%;
}
.logo:hover{
  opacity: 0.7;
  transition: 0.5s;
}

#menu{
  list-style-type: none;
  width: 40%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 4%;
}
#menu li{
  position: relative;
  width: 15%;
  float: left;
  margin: 0;
  padding: 0;
  text-align: center;
}
#menu li p{
  color: #333;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  text-decoration: none;
  letter-spacing: 0.15rem;
  cursor: pointer;
}
#menu li a{
  display: block;
  margin: 0;
  padding: 13px 0;
  color: #333;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  text-decoration: none;
  letter-spacing: 0.15rem;
}
#menu li ul{
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  margin-top: 0px;
}
#menu li:last-child ul{
  left: -100%;
  width: 100%
}
#menu li ul li{
  overflow: hidden;
  width: 200%;
  height: 0;
  color: #333;
  -moz-transition: .2s;
  -webkit-transition: .2s;
  -o-transition: .2s;
  -ms-transition: .2s;
  transition: .2s;
}
#menu li ul li a{
  padding: 11px 15px;
  background-color: rgba(255, 255, 255, .94);
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  text-align: left;
}



/*ホバー時下線----------------------------*/
#menu li a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #333;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
#menu li:hover > a:hover::after {
  transform: scale(1, 1);
}
#menu li ul li a::after {
  position: absolute;
  bottom: 0px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #333;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
#menu li ul li:hover > a:hover::after {
  transform: scale(1, 1);
}
/*---------------------------------------*/
#menu li:hover ul li{
  overflow: visible;
  height: 38px;
  border-bottom: 1px solid #fff;
}
#menu li:hover ul li:first-child{
  border-top: 0;
}
#menu li:hover ul li:last-child{
  border-bottom: 0;
}

/* ここから下がハンバーガーメニューに関するCSS */
/*スマートフォンヘッダー---------------------------------------------------*/
/* Navbar & Navmenu color */
:root {
  --background-navbar: rgba(250, 250, 250, 0.98);
}
.sp-header {
  display: none;
}
@media screen and (max-width: 780px){
  .pc-header{
    display: none;
  }
}
@media screen and (max-width: 780px){
  .sp-header{
    display: block;
    top: 0;
    z-index: 1;
    background: var(--background-navbar);
    position: fixed;
    width: 100%;
    height: 52px;
  }
}

/* Nav items */
.menu {
  list-style: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  margin-top: 52px;
  padding: 0 0 10px 0;
  clear: both;
  background: var(--background-navbar);
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transform: scale(1, 0);
  transform-origin: top;
}

/* Hamburger menu button */
.menu-btn:checked ~ .menu {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger menbu text */
.menu a ,.sp-service {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 16px;
  text-transform: capitalize;
  color: #333;
  opacity: 0;
  transition: 0.5s;
}


.menu li {
  border-top: 1px solid rgb(75, 75, 75);
  padding: 15px 0;
  margin: 0 54px;
  opacity: 0;
  transition: 0.5s;
}

.menu-btn:checked ~ .menu a,
.menu-btn:checked ~ .menu li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

.menu-btn {
  display: none;
}

.menu-icon {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 24px 14px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.navicon {
  background: #333;
  display: block;
  height: 3.5px;
  width: 26px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #333;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
  top: 9px;
}

.navicon:after {
  bottom: 9px;
}

/* Hamburger Menu Animation Start */
.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}

.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
/* Hamburger Menu Animation End */

/* Navbar Container */
.navtext-container {
  width: 100%;
  height: 52px;
  position: absolute;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Navbar Text */
.navtext {
  position: absolute;
  font-weight: bold;
  color: #333;
  letter-spacing: 2px;
  font-size: 15px;
}


/*トップ---------------------------------------------------*/
#top{
  margin-top: 7%;
  margin-bottom: 7%;
}
#top img{
  transform: scale(-1, 1);
  display: block;
  width: 50%;
  position: relative;
  margin-left: auto;
}
#top h1{
  position: absolute;
  color: #fff;
  top: 35%;
  left: 20%;
  line-height: 1;
  font-size: 14vw;
  font-family: Bahnschrift Condensed;
}

/*よくある質問タイトル--------------------------------------------------*/
.q-a-title{
  background-color: #126d7e;
  height: 500px;
  text-align: center;
}
.q-a-title p{
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1rem;
  padding-top: 250px;
}
.q-a-title h1{
  font-size: 3rem;
  color: #fff;
  letter-spacing: 1rem;
}

/*よくある質問タイトル--------------------------------------------------*/
.q-a-title2{
  text-align: center;
  margin-top: 10%;
  margin-bottom: 6%;
}
.q-a-title2 p{
  font-size: 2rem;
  font-weight: bold;
  color: #2bddff;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 880px){
  .q-a-title2 p{
    font-size: 1.4rem;
  }
}
.q-a-title2 h2{
  font-size: 3rem;
  border-bottom: solid #2bddff 4px;
  width: 45%;
  margin: 0 auto;
  letter-spacing: 0.4rem;
}
@media screen and (max-width: 880px){
  .q-a-title2 h2{
    font-size: 1.8rem;
    width: 70%;
    letter-spacing: 0.2rem;
  }
}

/*よくある質問サービスに関して--------------------------------------*/
#q-a-service{
  margin-bottom: 10%;
}
#q-a-service h2{
  color: #333;
  letter-spacing: 0.6rem;
  font-size: 2rem;
  width: 40%;
  margin: 0 auto;
  border-bottom: solid #fff;

}

.acd-check{
  display: none;
}
.acd-label{
  background: #4092af;
  color: #fff;
  font-size: 1.5rem;
  display: block;
  padding: 10px;
  width: 80%;
  margin: 3% auto 1px;
}
.acd-content{
  border: 1px solid #333;
  height: 0;
  opacity: 0;
  padding: 0 10px;
  transition: .5s;
  visibility: hidden;
  width: 80%;
  margin: 0 auto 2px;
  font-size: 1.5rem;
}
.acd-check:checked + .acd-label + .acd-content{
  height: 30%;
  opacity: 1;
  padding: 10px;
  visibility: visible;
}


/*フッター--------------------------------------------------*/
.last{
  background-color: #126d7e;
  text-align: center;
  padding-bottom: 2.5%;
}
.last h4{
  color: #fff;
  font-size: 2.5rem;
  padding-top: 7%;
  letter-spacing: 0.4rem;
}
@media screen and (max-width: 880px){
  .last h4{
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
    margin-top: 10%;
    padding-top: 20%;
  }
}
.last a{
  -webkit-transition: all 200ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
  -moz-transition: all 200ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
  -ms-transition: all 200ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
  -o-transition: all 200ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
  transition: all 200ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
  display: block;
  margin: 50px auto;
  width: 80%;
  text-decoration: none;
  border-radius: 4px;
  padding: 20px;
  font-size: 1.5rem;
  letter-spacing: 1rem;
}

a.button {
  color: rgba(18, 109, 126, 0.6);
  background-color: #fff;
  box-shadow: rgba(43, 221, 255, 0.4) 0 0px 0px 2px inset;
  border: solid #2bddff 2px;
}

a.button:hover {
  color: rgba(255, 255, 255, 0.85);
  box-shadow: rgba(43, 221, 255, 0.7) 0 0px 0px 40px inset;
  border: solid #fff 2px;
}
@media screen and (max-width: 880px){
  .last h5{
    font-size: 0.9rem;
  }
}
.copy{
  background-color: #fff;
  color: #333;
  line-height: 4rem;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 880px){
  .copy{
    font-size: 0.8rem;
    line-height: 2rem;
  }
}
