/*-----------------
基本設定
------------------*/
body{
  font-size: 4vw;
}
.pc{
  display: none;
}
.tab{
  display: none;
}
.mobi{
  display: block;
}
.tab.mobi{
  display: block;
}
.pc.tab{
  display: none;
}
.wrapper{
margin: 2.5%;
width: 95%;
}
h2{
  font-size: 7vw;
}
/*-----------------
header top
------------------*/
header{
  height: 65px;
}
.mobi-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-height: 65px;
  padding: 10px 2.5%;
  box-sizing: border-box;
}
header .logo{
  margin: 0;
  display: block;
  height: 45px;
}
header .logo img{
  max-height: 100%;
  width: auto;
}
.mobi-nav{
  width: 100%;
  position: relative;
}
.mobi-nav ul{ 
  width: 100%;
  position: absolute;
  transform: translateX(100%);
  transition: all ease .3s;
  background: #fff;
  height: 100vh;
}
.mobi-nav ul.active{
  transform: translateX(0);
}
.mobi-nav ul li a{
  text-align: center;
  width: 100%;
  height: 100%;
  display: block;
  border-bottom: 1px solid #ec6b5b;
  padding: 10px;
}

.hamburger{
  position: relative;
  width:45px;
  height: 45px;
}
.hamburger span{
  width: 35px;
  height: 2px;
  background: #ec6b5b;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all ease .3s;
}
.hamburger span:nth-of-type(1){
  top: 10px;
}
.hamburger span:nth-of-type(2){
  top: 50%;
  transform: translate(-50%, -50%); 
}
.hamburger span:nth-of-type(3){
  bottom: 10px;
}
.hamburger span:nth-of-type(1).active{
  top: 9px;
  transform: rotate(-45deg) translateX(-50%);
}
.hamburger span:nth-of-type(2).active{
  opacity: 0;
}
.hamburger span:nth-of-type(3).active{
  transform: rotate(45deg) translateX(-50%);
}
.top{
  margin-top: 65px;
}
/*-----------------
about
------------------*/
.about{
  margin: -30px 0 30px;
}
.about h2{
  margin: 0 0 30px;
}
.about-inner{
  flex-wrap: wrap-reverse;
  align-items: center;
  justify-content: center;
}
.about-inner p{
  width: 100%;
}
.about-inner img{
  margin: 30px 0 0;
}
/*-----------------
特徴
------------------*/
.features{
  padding: 30px 0;
}
.features-container{
  width: 95%;
  margin: 0 2.5%;
  row-gap:40px;
}
.features-inner-heading{
  font-size: 5vw;
}
.features-inner-heading span{
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 7vw;
}
/*-----------------
一日の流れ
------------------*/
.flow{
  background: none;
  width: 95%;
  margin: 0 auto;
}
.flow-container{
  width: 100%;
}
.flow-inner{
  display: grid;
  grid-template-columns: 85px auto;
  grid-column-gap: 15px;
}
.flow-inner .time::before{
  left: 43px;
}
.flow-inner:last-of-type p:last-of-type{
  margin-bottom: 0;
}
.flow-inner .time {
  grid-area: 1 / 1 / 2 / 2;
  width: 86px;
  font-size: 4.5vw;
}
.flow-inner p:nth-of-type(2) {
  grid-area: 1 / 2 / 2 / 4;
  margin-left: 0;
  font-size: 4.5vw;;
}
.flow-inner p:last-of-type {
  grid-area: 2 / 2 / 3 / 4;
}
/*-----------------
施設紹介
------------------*/
.equipment{
  padding: 30px 2.5%;
}
.equipment h2{
  margin-bottom: 30px;
}
.equipment-desc{
  flex-wrap: wrap-reverse;
  margin: 30px auto;
  width: 90%;
}
.equipment-desc p{
  margin-right: 0;
}
.equipment-container{
  justify-content: space-between;
  gap: 10px;
}
.equipment-inner{
  width: calc(95% / 2);

}
.equipment-inner p{
  margin-bottom: 5px;
}
/*-----------------
ご利用料金
------------------*/
.fee{
  margin: 30px 0 0;
}
.fee-container{
  width: 95%;
  margin: 30px 2.5% 0;
}
.fee-container img{
  width: 60%;
  z-index: -1;
}
.fee-inner h3{
  font-size: 5vw;
}
.fee-inner-box{
  width: 65%;
  padding: 10px;
  margin-top: 20px;
}
.fee-inner-box p{
  font-size: 3vw;
}
.fee-inner-box p span{
  font-size: 7vw;
}

/*-----------------
事務所概要
------------------*/
.company{
  padding: 30px 2.5%;
}
.company table{
  width: 100%;
  font-size: 4vw;
  margin: 30px auto 0;
}
.company th{
  width: 100px;
  vertical-align: text-top;
  padding: 10px;
}
.company td{
  padding: 10px;
}
/*-----------------
contact
------------------*/
.contact{
  padding: 45px 2.5%;
}
.contact-inner{
  width: 100%;
}
.contact-inner-tel p{
  font-size: 6vw;
  margin-right: 0;
  padding-left: 30px;
}
.contact-inner-tel span{
  font-size: 3.5vw;
}
.contact-inner-tel p::before{
  background-size: contain;
  width: 20px;
  height: 20px;
}
.contact-inner-mail{
  font-size: 3.5vw;
  padding: 10px;
}
/*-----------------
footer
------------------*/
.footer-container{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.footer-nav ul{
  gap: 10px;
  width: 95%;
  justify-content: space-between;
  margin: 10px 2.5%;
}
.footer-nav ul li a{
  font-size: 2.5vw;
}
footer .logo{
  margin: 0 20px 10px 0;
  margin-bottom: 5px;
  grid-area: 1 / 1 / 2 / 2;
}
.footer-address{
  font-size: 3vw;
  grid-area: 2 / 1 / 3 / 2;
}
.footer-address span{
  margin-bottom: 5px;
  grid-area: 1 / 2 / 2 / 3;
}
.footer-tel{
  font-size: 3.5vw;
}
.copyright{
  font-size: 3vw;
}

/*-----------------
お問い合わせ
------------------*/
.sub-title{
	height:100px;
}

.sub-title h1 {
    line-height: 100px;
}

.content-wrap {
    margin-top: 60px;
}

.sub-contact table th,
.sub-contact table td  {
    width: 100%;
    padding: 0;
    display:block;
}
.sub-contact table td{
	margin-bottom:4vw;
}

.sub-contact .doui {
    font-size: 15px;
}

.sub-contact input[type="checkbox" i] {
    left: 22px;
}