@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;
}

/*お問い合わせタイトル--------------------------------------------------*/
.contact-title{
  background-color: #126d7e;
  height: 500px;
  text-align: center;
}
.contact-title p{
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1rem;
  padding-top: 250px;
}
.contact-title h1{
  font-size: 3rem;
  color: #fff;
  letter-spacing: 1rem;
}

/*お問い合わせ時間--------------------------------------------------*/
.contact-tel{
  text-align: center;
  width: 70%;
  border: solid #ccc 1px;
  margin: 0 auto;
  margin-top: 8%;
  padding: 2%;
}
@media screen and (max-width: 580px) {
.contact-tel {
  width: 85%;
 }
}
.contact-tel h2{
  font-size: 2rem;
}
@media screen and (max-width: 580px) {
.contact-tel h2 {
  font-size: 1.7rem;
 }
}
.contact-tel h3{
  font-size: 3rem;
  margin-top: 2%;
  letter-spacing: 1rem;
}
@media screen and (max-width: 580px) {
.contact-tel h3 {
  font-size: 2rem;
  letter-spacing: 0.8rem;
 }
}
.contact-tel p{
  font-size: 1.5rem;
}
@media screen and (max-width: 580px) {
.contact-tel p {
  font-size: 1.3rem;
  margin-top: 10px;
 }
}
.contact-thk{
  font-size: 1.6rem;
  width: 70%;
  margin: 0 auto;
  margin-top: 4%;
}
@media screen and (max-width: 580px) {
.contact-thk {
  font-size: 2rem;
  width: 90%;
  margin-top: 10%;
 }
}

/*お問い合わせ--------------------------------------*/
.Form {
margin-top: 80px;
margin-left: auto;
margin-right: auto;
max-width: 720px;
margin-bottom: 10%;
}
@media screen and (max-width: 480px) {
.Form {
margin-top: 40px;
width: 90%;
}
}
.Form-Item {
border-top: 1px solid #ddd;
padding-top: 24px;
padding-bottom: 24px;
width: 100%;
display: flex;
align-items: center;
}
@media screen and (max-width: 480px) {
.Form-Item {
padding-left: 14px;
padding-right: 14px;
padding-top: 16px;
padding-bottom: 16px;
flex-wrap: wrap;
}
}
.Form-Item:nth-child(5) {
border-bottom: 1px solid #ddd;
}
.Form-Item-Label {
width: 100%;
max-width: 248px;
letter-spacing: 0.05em;
font-weight: bold;
font-size: 18px;
}
@media screen and (max-width: 480px) {
.Form-Item-Label {
max-width: inherit;
display: flex;
align-items: center;
font-size: 15px;
}
}
.Form-Item-Label.isMsg {
margin-top: 8px;
margin-bottom: auto;
}
@media screen and (max-width: 480px) {
.Form-Item-Label.isMsg {
margin-top: 0;
}
}
.Form-Item-Label-Required {
border-radius: 6px;
margin-right: 8px;
padding-top: 8px;
padding-bottom: 8px;
width: 48px;
display: inline-block;
text-align: center;
background: #5bc8ac;
color: #fff;
font-size: 14px;
}
@media screen and (max-width: 480px) {
.Form-Item-Label-Required {
border-radius: 4px;
padding-top: 4px;
padding-bottom: 4px;
width: 32px;
font-size: 10px;
}
}

.Form-Item-Label-Required-a {
border-radius: 6px;
margin-right: 8px;
padding-top: 8px;
padding-bottom: 8px;
width: 48px;
display: inline-block;
text-align: center;
background: #2176c4;
color: #fff;
font-size: 14px;
}
@media screen and (max-width: 480px) {
.Form-Item-Label-Required-a {
border-radius: 4px;
padding-top: 4px;
padding-bottom: 4px;
width: 32px;
font-size: 10px;
}
}

.Form-Item-Input {
border: 1px solid #ddd;
border-radius: 6px;
margin-left: 40px;
padding-left: 1em;
padding-right: 1em;
height: 48px;
flex: 1;
width: 100%;
max-width: 410px;
background: #eaedf2;
font-size: 18px;
}
@media screen and (max-width: 480px) {
.Form-Item-Input {
margin-left: 0;
margin-top: 18px;
height: 40px;
flex: inherit;
font-size: 15px;
}
}

.Form-Item select {
border: 1px solid #ddd;
border-radius: 6px;
margin-left: 40px;
padding-left: 1em;
padding-right: 1em;
height: 48px;
flex: 1;
width: 100%;
max-width: 410px;
background: #eaedf2;
font-size: 18px;
-moz-appearance: menulist;
-webkit-appearance: menulist;
}
@media screen and (max-width: 480px) {
.Form-Item select {
margin-left: 0;
margin-top: 18px;
height: 40px;
flex: inherit;
font-size: 15px;
}
}
.Form-Item-Textarea {
border: 1px solid #ddd;
border-radius: 6px;
margin-left: 40px;
padding-left: 1em;
padding-right: 1em;
height: 216px;
flex: 1;
width: 100%;
max-width: 410px;
background: #eaedf2;
font-size: 18px;
}
@media screen and (max-width: 480px) {
.Form-Item-Textarea {
margin-top: 18px;
margin-left: 0;
height: 200px;
flex: inherit;
font-size: 15px;
}
}
.Form-Btn {
border-radius: 6px;
margin-top: 32px;
margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-bottom: 20px;
width: 280px;
display: block;
letter-spacing: 0.05em;
background: #5bc8ac;
color: #fff;
font-weight: bold;
font-size: 20px;
}
@media screen and (max-width: 480px) {
.Form-Btn {
margin-top: 24px;
padding-top: 8px;
padding-bottom: 8px;
width: 160px;
font-size: 16px;
}
}

/*フッター--------------------------------------------------*/
.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;
}
.last h5{
  color: #333;
  background-color: #fff;
  width: 30%;
  margin: 6% auto;
  line-height: 3rem;
  font-size: 1.3rem;
  letter-spacing: 0.2rem;
}
.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;
  }
}
