@charset "UTF-8";

/* ==== color ========================== */
:root {
  --color-black: #000000;
  --color-white: #ffffff;

  --noto-ckj: "noto-sans-cjk-jp", sans-serif;
  --shingo: "a-otf-ud-shin-go-pr6n", sans-serif;
  --source-han-sans: "source-han-sans-japanese", sans-serif;
  --din-Condensed: "din-condensed", sans-serif;
  --header: 20rem;
  scroll-padding: var(--header);
}

@media screen and (max-width: 767px) {
  :root {
    --header: 15.6rem;
    scroll-padding: var(--header);
  }
}

/*================================================
 *  一般・共通設定
 ================================================*/
html {
  /* 1920px 10px */
  font-size: 0.5208vw;
  scroll-behavior: smooth;
}

body {
  font-family: var(--noto-ckj);
  font-weight: 500;
  line-height: 1.55;
  background: var(--color-white);
  color: var(--color-black);
}

body.hiddn {
  overflow: hidden;
}

body * {
  font-size: 2.4rem;
}

a {
  display: block;
  text-decoration: none;
  transition: all 0.4s;
}

a:hover {
  opacity: 0.6;
}

img {
  max-width: 100%;
  display: block;
}

strong {
  font-weight: bold;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

li {
  margin-left: 0;
}

/* タイトル */

h2.hd img {
  width: auto;
  max-width: unset;
  height: 14rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  html {
    font-size: 1.333333vw;
  }

  body * {
    font-size: 2.5rem;
  }

  h2.hd img {
    height: 16rem;
  }
}

/*================================================
 *  header / ヘッダー
 ================================================*/
header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 20rem;
}

#mainnav {
  position: absolute;
}

#mainnav.changeNav {
  position: fixed;
  animation: header_ani 0.5s ease-out 0s 1 alternate none running;
}

#mainnav::before {
  position: absolute;
  content: "";
  width: 100%;
  background: url(../images/nav_bg.png) no-repeat center bottom/cover;
  height: 100%;
  top: 0;
  left: 0;
  /* opacity: 0; */
}

#mainnav.open_nav::before,
#mainnav.changeNav::before {
  opacity: 1;
}

@keyframes header_ani {
  0% {
    top: -63px;
  }

  100% {
    top: 0;
  }
}

#mainnav .nav__logo {
  width: 72.1rem;
  margin-left: 29.4rem;
  margin-top: 1.8rem;
  /* opacity: 0; */
  position: relative;
  z-index: 1;
}

#mainnav.open_nav .nav__logo,
#mainnav.changeNav .nav__logo {
  opacity: 1;
}

#mainnav .nav__banner {
  width: 32rem;
  z-index: 1;
  margin-left: 4rem;
  margin-right: auto;
  display: flex;
}

#mainnav .nav__banner a {
  width: 50%;
}

/* ハンバーガーメニュー内 */
nav.global__nav {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: #faff93;
  /* background: url(../images/nav_bg.png) no-repeat center top/cover; */
  transition: all 0.3s ease-out;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  padding-bottom: 10rem;
}

/* 表示 */
.open_nav .global__nav {
  opacity: 1;
  pointer-events: fill;
}

ul.nav__menu {
  width: 62rem;
  margin: 24rem auto 0;
}

ul.nav__menu li {
  border-bottom: 0.3rem solid #48a536;
  margin-bottom: 3.2rem;
}

ul.nav__menu li a {
  font-size: 2.7rem;
  padding-bottom: 2.8rem;
  padding-left: 3rem;
  position: relative;
}

ul.nav__menu li a::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/nav_arrow.png);
  width: 1.1rem;
  height: 1.6rem;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}

.hamburger {
  position: absolute;
  right: 40rem;
  top: 4rem;
  width: 5rem;
  height: 3rem;
  cursor: pointer;
  z-index: 300;
}

/* line open */
.hamburger__line {
  position: absolute;
  left: 50%;
  width: 100%;
  height: 0.3rem;
  background-color: var(--color-white);
  transition: all 0.2s ease-out;
  transform: translateX(-50%);
}

.hamburger__line--1 {
  top: 15%;
}

.hamburger__line--2 {
  top: 50%;
}

.hamburger__line--3 {
  top: 85%;
}

.hamburger__line--1::before {
  position: absolute;
  content: "MENU";
  top: -2.8rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.8rem;
  color: var(--color-white);
  transition: 0.1s;
}

/* line close */
.open_nav .hamburger__line--1 {
  transform: translateX(-50%) rotate(35deg);
  top: 50%;
}

.open_nav .hamburger__line--1::before {
  opacity: 0;
  left: 30%;
}

.open_nav .hamburger__line--2 {
  width: 0;
  left: 50%;
}

.open_nav .hamburger__line--3 {
  transform: translateX(-50%) rotate(-35deg);
  top: 50%;
}

@media screen and (max-width: 767px) {
  header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    height: 15.6rem;
  }

  #mainnav::before {
    background: url(../images/nav_bg_sp.png) no-repeat center bottom/cover;
  }

  #mainnav .nav__banner {
    display: none;
  }

  #mainnav .nav__logo {
    width: 49rem;
    margin-left: 6rem;
    margin-top: 1.4rem;
  }

  .hamburger {
    right: 4rem;
  }

  ul.nav__menu {
    width: 60rem;
    margin: 24rem auto 0;
  }

  .sp__policy {
    background: #6a7188;
    padding: 3rem 8rem;
  }

  .sp__policy a {
    padding: 1rem 3rem;
    display: inline-block;
    border: 0.3rem solid var(--color-white);
    color: var(--color-white);
    margin: 1rem;
    border-radius: 1000px;
    font-size: 2.2rem;
  }

  .sp__policy a::before {
    content: none;
  }
}

/*================================================
 *  banner
 ================================================*/
#banner {
  display: none;
}

@media screen and (max-width: 767px) {
  #banner {
    display: flex;
    position: fixed;
    z-index: 10;
    width: 100%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  #banner a {
    width: 42rem;
    margin: 0 auto;
  }
}

/*================================================
 *  section btn
 ================================================*/
section {
  position: relative;
  padding-bottom: 6rem;
}

.section {
  padding-top: 6rem;
}

/*================================================
 *  
 ================================================*/

#mv {
  padding: 25rem 0 6rem;
  background: #fafe94;
  z-index: 2;
}

.mv_swiper .swiper-slide {
  margin: 0 2rem;
  display: flex;
  align-items: start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.mv_swiper .swiper-slide img {
  width: auto;
  height: 65rem;
  max-width: unset;
}

.mv_swiper .swiper-button-next,
.mv_swiper .swiper-button-prev {
  width: 8rem;
  height: 8rem;
  border-radius: 10000px;
  background: #00a383;
}

.mv_swiper .swiper-button-next:after,
.mv_swiper .swiper-button-prev:after {
  color: var(--color-white);
  width: 4rem;
  height: 4rem;
  text-align: center;
  font-size: 4rem;
}

/* ボタン（画像） */
.mv-button {
  position: absolute;
  bottom: 24vw;
  width: 100%;
  text-align: center;
  z-index: 3;
}

.mv-button img {
  width: auto;
  max-width: 76rem;
  height: auto;
  display: inline-block;
  transition: opacity 0.3s ease;
}

.mv-button img:hover {
  opacity: 0.8;
}

/* ボタン（画像） */
.mv-button2 {
  position: absolute;
  bottom: 7vw;
  width: 89%;
  text-align: center;
  z-index: 3;
}

.mv-button2 img {
  width: 8rem;
  max-width: 76rem;
  height: auto;
  display: inline-block;
  transition: opacity 0.3s ease;
}

.mv-button2 img:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  #mv {
    padding: 19rem 0 6rem;
  }
  /* ボタン（画像） */
  .mv-button {
    position: absolute;
    bottom: 81vw;
    width: 100%;
    text-align: center;
    z-index: 3;
  }

  .mv-button img {
    width: auto;
    max-width: 300px;
    height: auto;
    display: inline-block;
    transition: opacity 0.3s ease;
  }

  .mv-button img:hover {
    opacity: 0.8;
  }

  /* ボタン（画像） */
  .mv-button2 {
    position: absolute;
    bottom: 5vw;
    width: 30%;
    text-align: center;
    z-index: 3;
  }

  .mv-button2 img {
    width: 11rem;
    max-width: 300px;
    height: auto;
    display: inline-block;
    transition: opacity 0.3s ease;
  }

  .mv-button2 img:hover {
    opacity: 0.8;
  }
}
/*================================================
 *  
 ================================================*/
.cp_btn {
  padding: 4rem 0;
  background: #fbb03b;
}

.cp_btn a {
  display: block;
  width: 47rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
}

/*================================================
 *  
 ================================================*/

#campaign02 {
  z-index: 1;
}

.cp_btn02 {
  gap: 6rem 1rem;
  background: #faff93;
  padding: 3rem 0;
}

.cp_btn02 img {
  width: auto;
  max-width: unset;
  height: 20rem;
  margin-left: auto;
  margin-right: auto;
}

.cp_btn02_01 {
  gap: 1rem;
}

.cp_btn02_01 p img {
  height: 5.2rem;
}

.cp_btn02_03 img {
  height: 23rem;
  margin-top: 2rem;
}

.cp_btn02_04 p {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 700;
  padding-top: 1rem;
  color: #333333;
}

.cp_btn02_04 p img {
  height: 10.4rem;
}

@media screen and (max-width: 767px) {
  .cp_btn02 {
    padding: 5rem 0;
  }

  .cp_btn02_01 {
    display: block;
  }

  .cp_btn02_01 p {
    margin-bottom: 1rem;
  }

  .cp_btn02 {
    align-items: end;
  }

  .cp_btn02_04 p {
    font-size: 2.8rem;
    text-align: center;
    padding-top: 0;
    line-height: 1.5;
  }

  .cp_btn02_04 p img {
    height: 6.4rem;
  }

  .cp_btn02_03 img {
    margin-bottom: -3rem;
  }
}

/*================================================
 *  point
 ================================================*/

#point ul {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 10rem;
}

#point ul li {
  position: relative;
  border: 0.6rem solid #48a536;
  border-radius: 1rem;
  padding-top: 7rem;
  width: 32rem;
}

#point ul li img {
  width: 24rem;
  margin: 0 auto;
}

#point ul li:nth-child(1) img {
  margin-top: 3rem;
}

#point ul li .num {
  position: absolute;
  text-align: center;
  font-size: 1.5rem;
  width: 11rem;
  aspect-ratio: 1/1;
  display: grid;
  place-content: center;
  border-radius: 10000px;
  background: #48a536;
  line-height: 1;
  color: var(--color-white);
  top: -7rem;
  left: 50%;
  transform: translateX(-50%);
}

#point ul li .num::before {
  position: absolute;
  content: "";
  width: 90%;
  height: 90%;
  border-radius: 10000px;
  border: 1px solid var(--color-white);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#point ul li .num span {
  display: block;
  font-size: 3.8rem;
}

#point ul li h3 {
  font-size: 3.4rem;
  font-feature-settings: "palt";
  font-weight: bold;
  text-align: center;
  color: #48a536;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  #point ul {
    gap: 8rem 2rem;
  }
}

/*================================================
 *  facility
 ================================================*/
.facility_bg {
  background: url(../images/facility_bg.png) no-repeat center bottom/cover;
  padding: 6rem 0;
}

#facility h3 {
  width: 50rem;
  margin: 6rem auto;
}

#facility h4 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 2rem;
  font-size: 1.8rem;
  color: var(--color-white);
  background: #4d4d4d;
  padding: 0.5rem 1rem;
  border-radius: 1000px;
}

#facility p {
  text-align: center;
}

.facility_map {
  width: 94rem;
  margin: 4rem auto;
}

.facility_box h2 {
  margin-top: 6rem;
}

#facility ul {
  width: 110rem;
  margin: 0 auto;
}

#facility ul li {
  margin-top: 6rem;
}

#facility .sp_scroll {
  margin-top: 4rem;
}

@media screen and (max-width: 767px) {
  .facility_bg {
    background: url(../images/facility_bg_sp.png) no-repeat center bottom/cover;
  }

  #facility h4 {
    font-size: 2rem;
  }

  #facility ul {
    width: 48rem;
  }

  .facility_map {
    width: 69rem;
    margin: 4rem auto;
  }

  #facility .sp_scroll {
    overflow: scroll;
  }

  #facility .sp_scroll img {
    min-width: 135rem;
  }
}

/*================================================
 *  price
 ================================================*/
#price {
  padding: 10rem 0;
}

#price .wrap {
  width: 110rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  #price .wrap {
    width: 69rem;
  }
}

/*================================================
 *  faq
 ================================================*/
#faq h2 {
  margin-bottom: 4rem;
}

#faq ul {
  width: 120rem;
  margin: 6rem auto 0;
}

#faq ul li {
  background: #f2f2f2;
  padding: 4rem 12rem;
  margin-top: 4rem;
}

#faq ul li img {
  width: 33rem;
  display: inline-block;
}

#faq ul h3 {
  font-size: 2.2rem;
  position: relative;
  padding-left: 8rem;
  margin-bottom: 4rem;
}

#faq ul p {
  font-size: 2rem;
  position: relative;
  padding-left: 8rem;
  margin-left: 2rem;
}

#faq ul span {
  position: absolute;
  width: 6rem;
  height: 6rem;
  display: grid;
  place-content: center;
  border-radius: 1000px;
  color: var(--color-white);
  top: -1rem;
  left: 0;
  font-size: 4rem;
  background: #00a383;
  border: 1px solid #fff;
  border-radius: 10000px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

#faq ul p span {
  background: #ed6c00;
}

@media screen and (max-width: 767px) {
  #faq .ac-spal {
    padding: 0 3rem;
  }

  #faq ul {
    width: 100%;
    margin: 6rem auto 0;
  }

  #faq ul li {
    padding: 4rem 4rem;
    margin-top: 2rem;
  }

  #faq ul h3 {
    font-size: 2.5rem;
    padding-left: 8rem;
    margin-bottom: 4rem;
  }

  #faq ul p {
    font-size: 2.4rem;
    padding-left: 8rem;
    margin-left: 2rem;
  }
}

/*================================================
* access
================================================*/
#access {
  background: #48a536;
}

#access h3 {
  text-align: center;
  color: var(--color-white);
  font-size: 3rem;
  padding: 3rem 0;
}

#access h2 {
  text-align: center;
  padding-bottom: 5rem;
}

#access h2 img {
  width: 54rem;
  margin: 0 auto 1rem;
}

#access h2 span {
  display: inline-block;
  color: #48a536;
  background: var(--color-white);
  margin: 1rem auto;
  font-weight: 500;
  padding: 1rem 2rem;
  border-radius: 1.2rem;
}

.map {
  background: var(--color-white);
  padding: 3rem 0;
}

.map iframe {
  display: block;
  width: 149rem;
  height: 65rem;
  margin: 0 auto;
}

.address__list {
  padding: 3rem 0;
}

.address__list li {
  font-size: 2rem;
  line-height: 2;
  text-align: center;
  color: var(--color-white);
}

.address__list li:nth-child(2) {
  font-size: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.address__list li:nth-child(2) img {
  width: 5.5rem;
  margin-right: 1rem;
}

.time__list {
  background: var(--color-white);
  text-align: center;
  padding: 4rem 0;
}

.time__list li:first-child {
  font-size: 1.7rem;
}

.time__list li:first-child span {
  font-size: 2.5rem;
}

.time__list li:nth-child(2) {
  font-size: 2.5rem;
}

.time__list li:nth-child(2) a {
  font-size: 3.6rem;
  font-family: var(--din-Condensed);
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .map iframe {
    width: 100%;
  }

  .address__list li:nth-child(2) {
    font-size: 2.7rem;
  }
}

/*================================================
 *  
 ================================================*/

@media screen and (max-width: 767px) {
}

/*================================================
 *  footer
 ================================================*/
footer {
  background: #6a7188;
  padding: 3rem 0;
}

footer a {
  font-size: 1.7rem;
  border: 0.25rem solid var(--color-white);
  color: var(--color-white);
  border-radius: 1000px;
  padding: 1rem 3rem;
  margin: 0 1rem;
}

@media screen and (max-width: 767px) {
  footer {
    margin-bottom: 15rem;
  }
}

/*================================================
* anshin
================================================*/
#anshin {
  padding-bottom: 5rem;
}

#anshin h3 {
  text-align: center;
  font-size: 3.4rem;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4rem 0 -2rem 71rem;
}

#anshin ul li:first-child {
  width: 35rem;
}

#anshin ul li:nth-child(2) {
  width: 26rem;
  margin: 0 2rem;
}

#anshin ul li:nth-child(4) p {
  text-align: left;
  font-size: 2.5rem;
  font-family: var(--shingo);
  margin-bottom: 1rem;
  line-height: 1;
}

#anshin ul li:nth-child(4) p span {
  font-size: 3.8rem;
}

#anshin ul li:nth-child(4) p small {
  font-size: 1.5rem;
  font-family: var(--noto-ckj);
}

#anshin ul li:nth-child(4) img {
  width: 25rem;
}

#anshin p.pc {
  font-size: 1.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 3rem auto;
  line-height: 2;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #anshin {
    padding-bottom: 10rem;
  }

  #anshin h3 {
    margin: 4rem auto;
  }

  #anshin ul li:nth-child(3) {
    font-size: 2.4rem;
    margin: 1rem 0;
    text-align: center;
  }

  #anshin ul li:nth-child(4) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    width: 87%;
  }

  #anshin ul li:nth-child(4) p {
    font-size: 4rem;
  }

  #anshin ul li:nth-child(4) p span {
    font-size: 6rem;
  }

  #anshin ul li:nth-child(4) p:last-of-type {
    margin-left: auto;
  }

  #anshin ul li:nth-child(4) img {
    width: 33rem;
  }

  #anshin p.sp small {
    font-size: 1.8rem;
  }
}
