@charset "utf-8";

html {
  font-size: 10px;
  /*scroll-behavior: smooth;*/
}
body {
  background: #fff;
  color: #333;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", system-ui;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  width: 100%;
  overflow-x: hidden;
  max-width: 100%;
  letter-spacing: 0.05em;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  text-align: justify;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  margin: 0;
}
main {
  overflow: hidden;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}
img {
  width: 100%;
  max-width: 100%;
}
.en-txt {
  font-family: "Antonio", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
}
.en {
  font-family: "Antonio", sans-serif;
  font-optical-sizing: auto;
  font-weight: ;
  font-style: normal;
  line-height: 1.4;
}
.sp {
  display: none;
}


/*==================================================
common
===================================*/

.mt-0 {
  margin-top: 0 !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.inner {
  width: 1080px;
  margin: 0 auto;
}
.f-box {
  display: flex;
}
.f-box-r {
  flex-direction: row-reverse;
}

/*▼アニメーション*/
.sa {
  opacity: 0;
  transition: all 0.8s ease;
}
.sa.inline {
  display: inline;
}
.sa.show {
  opacity: 1;
  transform: none;
}
.sa--lr {
  transform: translate(-100px, 0);
}
.sa--rl {
  transform: translate(100px, 0);
}
.sa--up {
  transform: translate(0, 100px);
}
.sa--down {
  transform: translate(0, -100px);
}
.sa--scaleUp {
  transform: scale(0.5);
}
.sa--scaleDown {
  transform: scale(1.5);
}
.sa--rotateL {
  transform: rotate(180deg);
}
.sa--rotateR {
  transform: rotate(-180deg);
}

/*==================================================
header
===================================*/
header {
  position: fixed;
  z-index: 100;
  background-color: #fff;
  width: 100%;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.07);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}
.header-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:  20px 40px;
}
.header-area .flex-item {
  display: flex;
  align-items: center;
}
.header_gnav ul {
  display: flex;
  margin-right: 30px;
}
.header_gnav ul li {
  margin-right: 30px;
  letter-spacing: 0.2em;
}
.header_gnav ul li:last-of-type {
  margin-right: 0;
}
.header_gnav ul li a {
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  color: #333;
  font-weight: 500;
}
.header_gnav ul li a:hover {
  opacity: 0.7;
}
.header_btn a {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #d9a814;
  padding: 0 40px;
  transition: 0.3s ease-in-out;
  line-height: 1;
  letter-spacing: 0.2em;
  height: 40px;
  font-size: 1.6rem;
}
.header_btn a:hover {
  opacity: 0.7;
}

/*==================================================
hamburger
===================================*/
@media(max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block;
  }
  /*開閉用ボタン（ハンバーガーボタン）*/
  .menu-btn {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 101;
    border: 1px solid #316e4c;
    -webkit-transition: all 3s ease-in-out;
    transition: all .3s ease-in-out;
    background-color: rgba(255,255,255,.7);
  }
  .menu-btn-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 2px;
    width: 30%;
    background: #316e4c;
    -webkit-transition: all 3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  .menu-btn-line::before,
  .menu-btn-line::after {
    content: "";
    height: 2px;
    width: 100%;
    background: #316e4c;
    position: absolute;
    left: 0;
    -webkit-transition: inherit;
    transition: inherit;
  }
  .menu-btn-line::before{
    top: -5px;
  }
  .menu-btn-line::after{
    top: 5px;
  }

  /* 開閉用ボタンがクリックされた時のスタイル */
  .open .menu {
    -webkit-transition: all .5s;
    transition: all .5s;
    visibility: visible;
    opacity: 1;
  }
  .open .menu-btn {
    border-color: #316e4c;
  }
  .open .menu-btn-line{
    background-color: transparent;
  }
  .open .menu-btn-line::before,
  .open .menu-btn-line::after {
    top: 0;
    background: #316e4c;
  }
  .open .menu-btn-line::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .open .menu-btn-line::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  /*開いたメニュー*/
  .menu {
    position: fixed;
    display: flex;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:  rgba(255,255,255,.9);
    -webkit-transition: all .5s;
    transition: all .5s;
    visibility: hidden;
    opacity: 0;
    z-index: 100;
  }
  .menu ul {
    padding: 0;
    list-style-type: none;
    width: 50%;
    padding-top: 160px;
  }
  .menu li {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 40px;
  }
  .menu li:nth-of-type(4) {
    margin-bottom: 50px;
  }
  .menu li:last-of-type {
    margin-bottom: 0;
  }
  .menu li.header_btn {
    width: 100%;
  }
  .menu li a {
    color: #333;
    align-items: center;
    letter-spacing: 0.2em;
    font-size: 1.4rem;
  }
  .menu .header_btn a {
    width: 100%;
    padding: 20px 20px;
    background-color: #d9a814;
    color: #fff;
    font-weight: 600;
    border: 1px solid #d9a814;
  }
}

@media(max-width: 1180px) {
  .header-area {
    padding: 30px 20px;
  }
  .header_gnav ul li {
    margin-right: 20px;
  }
  .header_btn a {
    padding: 0 20px;
    font-size: 1.4rem;
  }
}
@media(max-width: 1024px) {
  .header_logo img {
    height: 24px;
  }
}
@media(max-width: 960px) {
  .header_gnav img {
    height: 140px;
  }
  .header_gnav ul {
    margin-right: 20px;
  }
  .header_gnav ul li {
    margin-right: 20px;
  }
  .header_gnav ul li a {
    font-size: 1.4rem;
  }
  .header_gnav ul li a::before {
    width: 26px;
    height: 32px;
  }
  .header_btn a {
    padding:12px 30px;
    font-size: 1.4rem;
  }
}
@media(max-width: 768px) {
  header #com_gNav {
    display: none;
  }
  .header_btn a {
    font-size: 1.6rem;
    height: 60px;
  }
  .sp {
    display: block;
  }
  header .border {
    padding: 15px 15px;
  }
  .header_logo {
    margin-left: 0;
  }
}
@media(max-width: 425px) {
  header .border {
    padding: 10px 10px;
  }
  .header_btn a {
    font-size: 1.4rem;
  }
  .header-area {
    padding: 30px 15px;
  }
  .menu-btn {
    width: 50px;
    height: 50px;
    top: 15px;
  }
  .menu ul {
    width: 80%;
  }
}


/*==================================================
common
===================================*/
.ttl {
  text-align: center;
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #316e4c;
}
.ttl span {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 10px;
}


/*==================================================
MV
===================================*/
.mv-area {
  background-color: #284d39;
  margin-top: 80px;
}
.main-visual img {
  width: 100%;
}


/*==================================================
ABOUT
===================================*/
.about.sec01 {
  padding: 100px 0;
  text-align: center;
  background-image: url(../images/bg_about.jpg);
  background-position: center;
  color: #fff;
}
.about .ttl {
  color: #fff;
}


/*==================================================
STRENGTHS
===================================*/
.strengths.sec02 {
  padding: 100px 0;
}
.strengths .f-box {
  align-items: center;
  margin-bottom: 40px;
}
.strengths .f-box .f-item {
  width: 50%;
}
.strengths .f-box .f-item:nth-of-type(even) {
  margin-left: 60px;
}
.strengths .f-box-r .f-item:nth-of-type(even) {
  margin-left: 0;
  margin-right: 60px;
}
.strengths .f-box .f-item .txt-area .sub-ttl h3 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 25px;
}
.strengths .f-box .f-item .txt-area .sub-ttl h3 span {
  display: block;
  color: #316e4c;
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.strengths .f-box .f-item .txt-area .sub-ttl h3::after {
  display: block;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #284d39;
  margin-top: 20px;
}


/*==================================================
PRICE
===================================*/
.price.sec03 {
 padding: 100px 0;
 background-color: #284d39;
 color: #fff;
}
.price .ttl {
  color: #fff;
}
.price .f-box {
  justify-content: space-between;
}
.price .f-item {
  border: 1px solid #ffdd76;
  width: 100%;
  margin-right: 60px;
}
.price .f-item:last-of-type {
  margin-right: 0;
}
.price .f-item .txt-area .sub-ttl {
  background-color: #ffdd76;
  padding: 10px 0;
  font-size: 2.4rem;
  font-weight: 700;
  color: #333;
  text-align: center;
}
.price .f-item .txt-area .txt {
  padding: 30px  30px;
  font-size: 1.4rem;
}
.price .f-item .txt-area .txt .fee {
  text-align: center;
  font-weight: 700;
  font-size: 1.6rem;
}
.price .f-item .txt-area .txt .fee span {
  font-size: 3.0rem;
   font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  padding: 0px 5px;
}
.price .f-item .txt-area .txt .fee::after {
  display: block;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #ffdd76;
  margin-top: 20px;
  margin-bottom: 25px;
  opacity: 0.4;
}
.price .f-item .txt-area .txt .list ul {
  padding-left: 2.5em;
}
.price .f-item .txt-area .txt .list ul li {
  list-style: disc;
}


/*==================================================
FLOW
===================================*/
.flow.sec04 {
  padding: 100px 0;
}
.flow .f-box {
  border: 1px solid #284d39;
  padding: 40px 60px;
  margin-bottom:  30px;
  align-items: center;
}
.flow .f-box:last-of-type {
  margin-bottom: 0;
}
.flow .f-box .l-img {
  display: flex;
}
.flow .f-box .l-img .en {
  color: #316e4c;
  margin-right: 20px;
  font-size: 1.6rem;
}
.flow .f-box .l-img .en span.number {
  display: block;
  font-size: 3.0rem;
  line-height: 1.4;
}
.flow .f-box .l-img .icon img {
  width: 160px;
}
.flow .f-box .r-txt {
  width: 100%;
  margin-left: 40px;
}
.flow .f-box .r-txt .sub-ttl {
  color: #316e4c;
  font-size: 2.0rem;
  font-weight: 700;
}
.flow .f-box .r-txt .sub-ttl::after {
  display: block;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #284d39;
  margin-top: 20px;
  margin-bottom: 25px;
}


/*==================================================
RESERVE
===================================*/
.reserve.sec04 {
  padding: 100px 0;
  background-image: url(../images/bg_reserve.jpg);
  background-position: center;
  color: #fff;
}
.reserve .ttl {
  color: #fff;
}
.reserve .f-box .f-item {
  width: 50%;
  margin-right: 60px;
}
.reserve .f-box .f-item:last-of-type {
  margin-right: 0;
}
.reserve a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  height: 80px;
  transition: 0.3s ease-in-out;
  font-size: 2.0rem;
}
.reserve a:hover {
  opacity: 0.7;
}
.reserve a.join-btn {
  color: #d9a814;
  background-color: #fff;
  border: 2px solid #d9a814;
}
.reserve a.trial-btn {
  color: #fff;
  background-color: #d9a814;
}


/*==================================================
FACILITY
===================================*/
.facility.sec05 {
 padding: 100px 0;
 background-color: #284d39;
 color: #fff;
}
.facility .ttl {
  color: #fff;
}
.facility .f-box {
  flex-wrap: wrap;
  justify-content: center;
}
.facility .f-box .f-item {
  width: 510px;
}
.facility .f-box .f-item:first-of-type {
  margin: 0 60px;
}
.facility .f-box .f-item:nth-of-type(2) {
  margin-right: 60px;
}
.facility .f-box .f-item:nth-of-type(n+2) {
    margin-top: 40px;
}
.facility .f-box .f-item .img-box {
  margin-bottom: 25px;
}
.facility .f-box .f-item .txt-box .sub-ttl {
  background-color: #ffdd76;
  padding: 10px 0;
  font-weight: 700;
  color: #333;
  text-align: center;
  font-size: 2.0rem;
  margin-bottom: 15px;
}


/*==================================================
MAP
===================================*/
.g-map {
  width: 100%;
}
.g-map iframe  {
  width: 100%;
  aspect-ratio: 4/5;
  height: 360px;
}


/*==================================================
INFORMATION
===================================*/
.information.sec06 {
  padding: 100px 0;
}
.information .info-list {
  border-top: 1px solid #bbddca;
}
.information .info-list dl {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #bbddca;
  padding: 30px 60px;
}
.information .info-list dl dt {
  width: 240px;
  font-weight: 500;
}


/*==================================================
footer
===================================*/
footer {
  background-color: #284d39;
  padding: 100px 0;
  color: #fff;
}
footer .f-top::after {
  display: block;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin-top: 25px;
  margin-bottom: 30px;
}
footer .f-top .sns a {
  transition: 0.3s ease-in-out;
}
footer .f-top .sns a:hover {
  opacity: 0.7;
}
footer .f-top .f-box {
  justify-content: space-between;
  align-items: center;
}
footer .f-top .f-navi {
  margin-top: 30px;
}
footer .f-top .f-navi ul {
  display: flex;
}
footer .f-top .f-navi ul li {
  margin-right: 30px;
}
footer .f-top .f-navi ul li:last-of-type {
  margin-right: 0;
}
footer .f-top .f-navi ul li a {
  transition: 0.3s ease-in-out;
}
footer .f-top .f-navi ul li a:hover {
  opacity: 0.7;
}
footer .f-bottom {
  font-size: 1.2rem;
  text-align: right;
}


/*==================================================
下層ページ共通タイトル
===================================*/
.title {
  height: 300px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: 80px;
}
.ttl-txt {
  z-index: 1;
}
h1.page_title {
  font-weight: 700;
  font-size: 4.8rem;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1;
}
h1.page_title span {
  display: block;
  font-size: 1.4rem;
  margin-top: 15px;
  font-family: "Noto Sans JP", system-ui;
}

@media (max-width: 1080px) {
  h1.page_title {
    font-size: 4.8rem;
  }
  h1.page_title::after {
    bottom: 8px;
  }
}
@media (max-width: 768px) {
  .title {
    height: 320px;
  }
  h1.page_title {
    font-size: 3.6rem;
  }
}
@media(max-width: 425px) {
  .title {
    height: 240px;
  }
}


/*==================================================
PRIVACY POLICY & TERMS
===================================*/
.lower_cont .title {
    background-image: url(../images/bg_title.jpg);
    background-position: right;
}
.lower_cont .inner {
  margin: 100px auto;
  border: 1px solid #284d39;
  padding:  60px 60px;
}
.lower_cont .privacy-list {
  margin-top: 40px;
}
.lower_cont .privacy-list dl {
  margin-bottom: 30px;
}
.lower_cont .privacy-list dl:last-of-type {
  margin-bottom: 0;
}
.lower_cont .privacy-list dl dt {
  color: #284d39;
  font-size: 1.8rem;
  font-weight: 400;
}
.lower_cont .privacy-list dl dt::after {
  display: block;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #284d39;
  margin-top: 15px;
  margin-bottom: 20px;
}
.lower_cont .privacy-list dl dd:nth-of-type(2) {
  margin-top: 10px;
}

.terms .sub-ttl {
  color: #284d39;
  font-size: 2.0rem;
  font-weight: 700;
}


/*==================================================
Responsive
===================================*/
@media(max-width: 1180px) {
  .inner {
    width: 100%;
    padding: 0 20px;
  }
  .strengths .f-box .f-item:nth-of-type(even) {
    margin-left: 40px;
  }
  .strengths .f-box-r .f-item:nth-of-type(even) {
    margin-left: 0;
    margin-right: 40px;
  }
  .price .f-item {
    margin-right: 40px;
  }
  .reserve .f-box .f-item {
    margin-right: 40px;
  }
  .facility .f-box .f-item:nth-of-type(2) {
    margin-right: 40px;
  }
  .lower_cont .inner {
    width: 90%;
    margin: 80px auto;
  }
}
@media(max-width: 1080px) {
  .about.sec01 , .strengths.sec02 , .price.sec03 , .flow.sec04 , .reserve.sec04 , .facility.sec05 , .information.sec06 , footer {
    padding: 80px 0;
  }
  .facility .f-box .f-item:first-of-type {
    margin: 0 0;
  }
  .facility .f-box .f-item:nth-of-type(2) {
    margin-right: 0;
  }
}
@media(max-width: 768px) {
  .about.sec01 , .strengths.sec02 , .price.sec03 , .flow.sec04 , .reserve.sec04 , .facility.sec05 , .information.sec06 , footer {
    padding: 60px 0;
  }
  .ttl {
    font-size: 3.6rem;
  }
  .ttl span {
    margin-top: 5px;
  }
  .f-box {
    display: block;
  }
  .strengths .f-box {
    margin-bottom: 30px;
  }
  .strengths .f-box .f-item {
    width: 100%;
  }
  .strengths .f-box .f-item:nth-of-type(even) {
    margin-left: 0;
  }
  .strengths .f-box-r .f-item:nth-of-type(even) {
    margin-left: 0;
    margin-right: 20px;
  }
  .strengths .f-box .f-item .txt-area {
    margin-top: 10px;
  }
  .strengths .f-box .f-item .txt-area .sub-ttl h3 {
    font-size: 2.0rem;
    margin-bottom: 15px;
  }
  .strengths .f-box .f-item .txt-area .sub-ttl h3 span {
    font-size: 2.0rem;
    margin-bottom: 5px;
  }
  .strengths .f-box .f-item .txt-area .sub-ttl h3::after {
    margin-top: 10px;
  }
  .strengths .f-box .f-item .txt-area .sub-ttl h3 br {
    display: none;
  }
  .price .f-item {
    margin-right: 0;
  }
  .price .f-item:nth-of-type(n+2) {
    margin-top: 30px;
  }
  .price .f-item .txt-area .txt {
    padding: 20px 30px;
  }
  .price .f-item .txt-area .sub-ttl {
    font-size: 2.0rem;
    padding: 5px 0;
  }
  .price .f-item .txt-area .txt .fee::after {
    margin-top: 10px;
    margin-bottom: 15px;
  }
  .price .f-item .txt-area .txt .fee span {
    font-size: 2.0rem;
    padding: 0px 2px;
  }
  .price .f-item .txt-area .txt .list ul {
    padding-left: 1.5em;
  }
  .flow .f-box {
    padding: 30px 30px;
  }
  .flow .f-box .l-img {
    justify-content: center;
    margin-bottom: 15px;
  }
  .flow .f-box .r-txt {
    margin-left: 0;
  }
  .flow .f-box .r-txt .sub-ttl {
    font-size: 1.8rem;
    text-align: center;
  }
  .flow .f-box .r-txt .sub-ttl::after {
    margin-top: 10px;
    margin-bottom: 15px;
  }
  .reserve a {
    height: 60px;
    font-size: 1.6rem;
  }
  .reserve .f-box .f-item {
    width: 100%;
    margin-right: 0;
  }
  .reserve .f-box .f-item:nth-of-type(n+1) {
    margin-bottom: 20px;
  }
  .facility .f-box .f-item {
    width: 100%;
  }
  .facility .f-box .f-item .txt-box .sub-ttl {
    padding: 5px 5px;
    font-size: 1.8rem;
  }
  .information .info-list dl {
    flex-direction: column;
    padding: 20px 30px;
  }
  .information .info-list dl dt {
    width: 100%;
    margin-bottom: 10px;
  }
  .information .info-list dl dd {
    width: 100%;
  }
  footer .f-top {
    text-align: center;
  }
  footer .f-logo {
    margin-bottom: 20px;
  }
  footer .f-logo img {
    width: auto;
  }
  footer .sns img {
    width: auto;
  }
  footer .f-top .f-navi ul {
    justify-content: center;
  }
  footer .f-bottom {
    margin-right: 20px;
  }
  footer .f-bottom {
    text-align: center;
  }
  .lower_cont .inner {
    margin: 60px auto;
    padding: 40px 30px;
  }
  .lower_cont .privacy-list {
    margin-top: 20px;
  }
  .lower_cont .privacy-list dl {
    margin-bottom: 20px;
  }
  .lower_cont .privacy-list dl dt {
    font-size: 1.6rem;
  }
  .lower_cont .privacy-list dl dt::after {
    margin-top: 5px;
    margin-bottom: 10px;
  }
  .lower_cont .privacy-list dl dd:nth-of-type(2) {
    margin-top: 5px;
  }
  .lower_cont.terms .sub-ttl {
    font-size: 1.6rem;
  }
}
@media(max-width: 425px) {
  .price .f-item .txt-area .txt {
    padding: 20px 20px;
  }
  .flow .f-box {
    padding: 30px 20px;
  }
  .information .info-list dl {
    padding: 20px 0;
  }
  .lower_cont .inner {
    padding: 30px 20px;
  }
}
