@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
}

/*- PC ----------*/
.header-pc {
  position: absolute;
  width: 100%;
  padding: 55px 45px 0 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-logo {
  width: 30%;
}

.header-logo img{
  width: 50%;
  padding-left: 45px;
}

.header-nav{
  width: 70%;

}

.header-nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

.header-nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
}

.reserve-btn {
  width: 200px;
  background-color: #0091ea;
  color: #fff;
  padding: 10px 20px;
  margin-left: 30px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
}

/* SP メニュー　*/
.header-sp{
  display: none;
}

@media screen and (max-width: 960px){
  .header-pc{
    display: none;
  }

  .header-sp{
    display: block;
  }

/*ハンバーガーボタン*/
.openbtn{
  position: fixed;
    top: 0px;
    right: 5px;
	cursor: pointer;
    width: 50px;
    height:50px;
	border-radius: 5px;
  z-index: 9999;
}



/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background: #fff;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;/*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/* 黒い背景を画面いっぱいに表示させる */
  .header__nav--sp{
    top: 0;
    position: fixed;
    width: 100%;
    height: 100vh; /* どの媒体で見ても高さを100にする */
    background-color: #4A4A4A;
    opacity: 0.8;
    z-index: 9998; /* mainvisualより表層に表示したいけどハンバーガーメニューよりは下にしたい */
  }
/* header-nav-spを真ん中に表示させる */
  .header__nav--sp ul{
    padding-left: 0;
  display: flex; /*justify-contentなどで中央配置に設定したいので一旦flexにする*/
  flex-direction: column; /* 横並びを縦並びにする */
  justify-content: center;
  align-items: center; /* これだとulのもつ高さにしかならないので */
  height: 100%; /* 親要素であるheader-nav-sp自体の高さの100％とする */
  gap: 20px;
  list-style: none;
  }

  .header__nav--sp li{
    color: #FFFFFF;
    font-size: 36px;
    font-weight: bold;
    text-align: right;
  }
}



/*-------------------------------------*/
.hero img {
  width: 100%;
  top: 0;
}
/*-------------------------------------*/
.about {
  display: flex;
  padding: 80px 60px;
  text-align: center;
  justify-content: space-around;
  align-items: center;
}


.copy {
  font-size: 55px;
  font-weight: bold;
  margin-bottom: 50px;
  text-align: left;
  line-height: 1.5em;
}

.message {
  font-size: 20px;
  text-align: left;
  line-height: 2em;
  letter-spacing: 0.1em;
}

.about-icon {
  margin-top: 20px;
  width: 50%;
}

.about-icon img {
  width: 70%;
}

.message-sp{
  display: none;
}

/*- SP ----------*/
@media screen and (max-width: 960px){
  .message{
    display: none;
  }
  .message-sp{
    padding: 0px 60px;
    display: block;
    font-size: 20px;
    text-align: left;
  }
  .message-sp p{
    line-height: 2em;
    letter-spacing: 0.1em;
  }
  .reserve-btn-sp{
    width: 80%;
    background-color: #0091ea;
    color: #fff;
    padding: 10px 20px;
    margin: 30px 30px 80px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
  }
}

@media screen and (max-width: 720px){
  .about{
    display: block;
    margin: auto;
  }
  .copy{
    text-align: center;
  }

.about-icon {
  margin: auto  ;
}
.message-sp{
  text-align: center;
}
}

/*-------------------------------------*/
.features {
  display: flex;
  justify-content: space-around;
  padding: 50px 20%;
  gap: 10%;
  background-color: #FEF7D9;
}

.features .feature {
  text-align: center;
  max-width: 30%;
}

.features .feature img {
  width: 250px;
  margin-bottom: 10px;
}

.features h3 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.features p {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 2em;
  text-align: left;
}

/*- SP ----------*/
@media screen and (max-width: 960px){
  .features {
    display: block;
    padding: 50px;
  }
  .features .feature {
    text-align: center;
    max-width: 100%;
    padding: 50px 30px;
  }
}

/*-------------------------------------------------*/
.pricing {
  padding: 80px 10%;
  text-align: center;
}

.pricing h2 {
  font-size: 36px;
  font-weight: 1000;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}

.yellow{
  color: #FCD641;
}

.sub-title{
  padding-bottom: 40px;
}

.plan-container {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.plan-box{
  background-color: #f2f2f2;
  border-radius: 30px;
  max-width: 50%;
}

.plan-box h3{
  background: #FCD641;
  text-align: center;
  margin: 0;
  padding: 20px 40px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.plan-box-inner{
  padding: 1em 40px;
}

.plan-box-price{
  display: flex;
  justify-content: center;
  vertical-align: bottom;
  padding: 20px;
}

.price-main{
  font-size: 40px;
  font-weight: bold;
}

.vertical{
  background-color: black;
  color: #fff;
  padding: 5px;
  margin: 5px;
}

.price-tax{
  font-size: 12px;
  vertical-align: baseline;
}

.plan-box-inner ul {
  list-style: none;
  text-align: left;
  border-top: solid 3px black;
  padding-top: 20px;
}

.pricing ul li {
  font-size: 14px;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.pricing ul li:before,
.pricing ul li:after{
	content:"";
	display:block;
	position:absolute;
}
.pricing ul li:before{
	width:16px;
	height:16px;
	border-radius:8px;
	background:green;
	left:0;top:2px;
}
.pricing ul li:after{
	border-left:2px solid #fff;
	border-bottom:2px solid #fff;
	width:6px;
	height:3px;
	-webkit-transform:rotate(-45deg);
	transform:rotate(-45deg);
	left:4px;
	top:7px;
}

/*- SP ----------*/
@media screen and (max-width: 960px){
  .plan-container {
    display: block;
  }
  
  .plan-box{
    max-width: 100%;
    margin-bottom: 50px;
  }
}

/*-------------------------------------------------*/
.services {
  padding: 80px 10%;
  text-align: center;
  background-color: #FEF7D9;
}

.services h2 {
  font-size: 36px;
  font-weight: 1000;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}


.service-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.service {
  max-width: 200px;
}

.service img {
  width: 150px;
  margin-bottom: 10px;
}

.service h3{
  margin: 20px;
}

.service p{
  text-align: left;
  line-height: 2em;
}

/*- SP ----------*/
@media screen and (max-width: 960px){
  .service-container {
    display: block;
  }
  .service {
    max-width: 100%;
    padding-bottom: 50px;
  }
  .service p{
    text-align: center;
    line-height: 2em;
  }
}



/*-------------------------------------------------*/
footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.footer-links ul {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 50px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
}

.sns-icon img{
  width: 20px;
}

footer p {
  color: #fff;
  font-size: 12px;
  padding: 15px;
}

/*- SP ----------*/
@media screen and (max-width: 960px){
  .footer-links ul {
    display: block;
  }
  .footer-nav li{
    padding-bottom: 10px;
  }
  .footer-links a {
    text-align: center;
  }
}