/*********************************
Font face
*********************************/
@font-face {
    font-family: 'HiraMinProN-W3-AlphaNum';
    src: url('../font/HiraMinProN-W3-AlphaNum.woff2') format('woff2'),
        url('../font/HiraMinProN-W3-AlphaNum.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HiraMinProN-W6-AlphaNum';
    src: url('../font/HiraMinProN-W6-AlphaNum.woff2') format('woff2'),
        url('../font/HiraMinProN-W6-AlphaNum.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/*********************************
Variables
*********************************/
:root {
  /* Font */
  --font-family--primary: "HiraMinProN-W6-AlphaNum", serif;
  --font-family--secondary: "Cinzel", serif;
  --font-family--tertiary: "HiraMinProN-W3-AlphaNum", serif;
  --font-family--headding: "HiraMinProN-W6-AlphaNum", serif;

  /* Colors */
  --color-text: #232220;
  --color-primary: #986621;
  --color-secondary: #C66E4E;
  --color-tertiary: #F2EDE9;
  --color-btn: #998542;
  --color-black: #232220;
  --color-white: #ffffff;
  --color-gray-light: #F7F7F7;
}

/*********************************
Common
*********************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family--primary);
  font-size: 1rem;
  font-weight: 600;
  line-height: 2rem;
  color: var(--color-text);
  overflow-x: hidden;
  background-color: var(--color-white);
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: all .5s;
  will-change: color, text-decoration; 
}

a:hover {
  text-decoration: underline;
}

p {
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1 {
  font-size: 5rem; /* 80px */
  line-height: 5.5rem;
}

h2 {
  font-size: 2.5rem; /* 40px */
  line-height: 3rem;
}

h3 {
  font-size: 2rem; /* 32px */
  line-height: 2.7rem;
}

h4 {
  font-size: 1.5rem; /* 24px */
  line-height: 2.5rem;
}

h5 {
  font-size: 1.25rem; /* 18px */
  line-height: 2rem;
}

h6 {
  font-size: 1rem; /* 16px */
  line-height: 1.75rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family--headding);
  font-weight: 600;
  margin-bottom: 1rem;
}

.text-center {
  text-align: center;
}

.section {
  padding: 75px 0;
}
.mb-0 {margin-bottom: 0;}

@media (max-width: 767px) {
  h2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  h3 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  h4 {
    font-size: 1.2rem;
    line-height: 2rem;
  }

  h5 {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .section {
    padding: 50px 0;
  }
}

/*-----------------------------
  badge
-----------------------------*/
.badge {
  width: 75px;
  height: 36px;
  line-height: 40px;
  text-align: center;
  color: var(--color-white);
  background-color: var(--color-primary);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.28px;
}
@media (max-width: 767px) {
  .badge {
    font-size: 14px;
    height: 30px;
    line-height: 32px;
  }
}

.badge-outline {
  border: 1px solid var(--color-primary);
  display: inline-block;
  position: relative;
  padding: 7.1px 20px;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 10px;
}

.badge-outline span {
  padding-left: 10px;
  font-size: 12px;
}

@media (max-width: 767px) {
  .badge-outline {
    line-height: 27px;
    text-align: left;
  }

  .badge-outline span {
    display: block;
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .fit {
    justify-items: center;
  }

  .lpcontents__item-bottom {
    display: grid;
    justify-content: center;
    justify-items: center;
  }

  .w-100 {
    height: 664px;
  }
}

/*-----------------------------
  Container
-----------------------------*/
.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1080px;
}
@media (max-width: 1280px) {
  .container {
    padding: 0 20px;
  }
}

/*-----------------------------
  Button
-----------------------------*/
.btn-button {
  font-family: var(--font-family--primary);
  color: var(--color-white);
  padding: 0 45px;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  background-color: var(--color-black);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1.92px;
  height: 84px;
  line-height: initial;
}

.btn-button:hover {
  text-decoration: none;
  background-color: var(--color-primary);
}
.btn-button.comingsoon {
  pointer-events: none;
}

@media(min-width: 768px) {
  .btn-button {
    width: 560px;
    font-size: 24px;
  }
}
@media(max-width: 767px) {
  .btn-button {
    font-size: 16px;
  }
}

.btn-outline {
  border: 2px solid var(--color-white);
  display: flex;
  gap: 15px;
  position: relative;
  padding: 16px 20px;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  justify-content: start;
  align-items: center;
  max-width: 350px;
  z-index: 1;
  color: var(--color-white);
  font-family: var(--font-family--headding);
  will-change: width;
}

.btn-outline::before {
  position: absolute;
  content: "";
  top: 0;
  width: 0;
  height: 100%;
  left: 0;
  background-color: var(--color-primary);
  z-index: -1;
  transition: all ease .3s;
  transform: translateX(0);
}

.btn-outline:after {
  position: absolute;
  content: '';
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 26px;
  height: 22px;
  background-image: url(../img/svg/icon_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
}

.btn-outline:hover {
  text-decoration: none;
}

.btn-outline:hover:before {
  width: 100%;
}
@media (max-width: 767px) {
  .btn-outline {
    width: 100%;
    font-size: 1rem;
    padding: 12px 20px;
  }

  .btn-outline:after {
    bottom: 5px;
  }
}

.btn-gradient {
  display: block;
  width: 100%;
  padding: 10px;
  border-radius: 44.5px;
  background: linear-gradient(0deg, #E3BB66 0%, #CFA341 100%);
  transition: all ease .3s;
  will-change: box-shadow;
}
.btn-gradient span {
  color: var(--color-black);
  width: 100%;
  border-radius: 44.5px;
  background: linear-gradient(180deg, #E3BB66 0%, #CFA341 100%);
  font-size: 24px;
  font-family: var(--font-family--primary);
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 62px;
}
.btn-gradient:hover {
  text-decoration: none;
  box-shadow: 0px 3px 10px var(--color-secondary);
}
@media(max-width: 767px) {
  .btn-gradient {
    padding: 5px;
  }
  .btn-gradient span {
    font-size: 15px;
    padding: 8px;
    line-height: 120%;
    min-height: 50px;
  }
}

.comingsoon {
  pointer-events: none;
}

/*-----------------------------
  icon
-----------------------------*/
.icon-arrow {
  background-image: url("../img/svg/icon_arrow_dark_long.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 80px;
  height: 6px;
  display: inline-flex;
}
.icon-phone {
  background-image: url("../img/svg/icon_phone.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 17px;
  height: 32px;
  display: inline-flex;
}

.icon-mask01 {
  background-image: url("../img/svg/icon-mask01.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 228px;
  height: 40px;
  display: inline-flex;
}
.icon-mask02 {
  background-image: url("../img/svg/icon-mask02.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 130px;
  height: 7px;
  display: inline-flex;
}
.icon-mask03 {
  background-image: url("../img/svg/icon-mask03.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 228px;
  height: 38px;
  display: inline-flex;
}

@media(max-width: 767px) {
  .icon-mask01 {
    width: 126.368px;
    height: 22.262px;
  }
  .icon-mask02 {
    width: 73.165px;
    height: 5.288px;
  }
  .icon-mask03 {
    width: 126.63px;
    height: 21.105px;
  }
}
/*-----------------------------
  pc,sp/on_off
-----------------------------*/
.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

/*-----------------------------
  Grid
-----------------------------*/
.grid-cols-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media(max-width: 768px) {
  .grid-cols-2 {
    gap: 16px;
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

.grid-cols-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

@media(max-width: 768px) {
  .grid-cols-3 {
    grid-template-columns: 1fr;
  }
}

/*-----------------------------
  Animate
-----------------------------*/
.animate-on-load {
  will-change: transform, opacity;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpOnLoad 1.2s ease-out forwards;
  animation-delay: 0.5s;
}

@keyframes fadeUpOnLoad {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*-----------------------------
  swiper custom
-----------------------------*/
.swiper-button-prev,
.swiper-button-next {
  display: inline-block;
  width: 80px;
  height: 80px;
  text-align: center;
  background-color: var(--color-primary);
  border-radius: 50%;
  padding: 0;
  transition: 0.3s;
  cursor: pointer;
  will-change: background-color;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #e6e1d1;
}

.swiper-button-prev:before {
  position: absolute;
  top: 50%;
  right: 50%;
  height: 2px;
  background: #343434;
  content: '';
  width: 40px;
  transform: translate(50%, -50%);
}

.swiper-button-next:before {
  position: absolute;
  top: 50%;
  right: 50%;
  height: 2px;
  background: #343434;
  content: '';
  width: 40px;
  transform: translate(50%, -50%);
}

.swiper-button-next::after {
  position: absolute;
  top: 50%;
  right: 14px;
  height: 2px;
  background: #343434;
  content: '';
  width: 14px;
  transform: translate(-50%, -50%) rotate(40deg);
  transform-origin: right center;
}

.swiper-button-prev::after {
  position: absolute;
  top: 50%;
  left: 7px;
  width: 14px;
  height: 2px;
  transform: translateY(-50%) rotate(145deg);
  transform-origin: right center;
  background: #343434;
  content: '';
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #E4E4E4;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 15px;
}

.swiper_btn_box {
  position: absolute;
  content: "";
  top: 45%;
  width: 100%;
  transform: translateY(-45%);
  z-index: 1;
}

.swiper_btn_box .swiper-button-prev {
  left: -40px;
}

.swiper_btn_box .swiper-button-next {
  right: -40px;
}

@media screen and (max-width: 768px) {

  .swiper-button-prev,
  .swiper-button-next {
    display: inline-block;
    position: relative;
    width: 50px;
    height: 50px;
    text-align: center;
    background-color: #faf9f6;
    left: 0px;
    border-radius: 50%;
    padding: 0;
    transition: 0.3s;
    cursor: pointer;
  }

  .swiper-button-prev::after {
    position: absolute;
    top: 50%;
    left: 6px;
    width: 10px;
    height: 2px;
    transform: translateY(-50%) rotate(145deg);
    transform-origin: right center;
    background: #343434;
    content: '';
  }

  .swiper-button-next::after {
    position: absolute;
    top: 50%;
    right: 11px;
    height: 2px;
    background: #343434;
    content: '';
    width: 10px;
    transform: translate(-50%, -50%) rotate(40deg);
    transform-origin: right center;
  }

  .swiper-button-prev:before {
    position: absolute;
    top: 50%;
    right: 50%;
    height: 2px;
    background: #343434;
    content: '';
    width: 20px;
    transform: translate(50%, -50%);
  }

  .swiper-button-next:before {
    position: absolute;
    top: 50%;
    right: 50%;
    height: 2px;
    background: #343434;
    content: '';
    width: 20px;
    transform: translate(50%, -50%);
  }

  .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 10px;
  }
}

/*********************************
  Main visual
*********************************/
.mainvisual {
  position: relative;
  background-color: var(--color-black);
}
.mainvisual__caption {
  position: absolute;
  left: 20%;
  top: 35%;
  transform: translateY(-35%);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.mainvisual__caption h1 {
  font-size: 22px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 2px;
  text-align: center;
  font-family: var(--font-family--primary);
  margin-bottom: 0;
  background: linear-gradient(91deg, #68481E -12.22%, #CAB25E 48.37%, #906D31 108.96%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mainvisual__caption h1 span {
  display: flex;
  justify-self: center;
  align-items: center;
  gap: 10px;
}
.mainvisual picture {
  display: flex;
  justify-content: space-around;
}
.mainvisual__subtitle {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font-family--primary);
  margin-bottom: 0;
}
@media(min-width: 1441px) {
  .mainvisual__caption img.logo_kodakumi {
    width: 530px;
    height: 551px;
  }
}
@media(min-width: 1280px) and (max-width: 1440px) {
  .mainvisual__caption {
    left: 12%;
    gap: 5px;
  }
  .mainvisual__caption h1 {
    font-size: 20px;
  }
}
@media(min-width: 768px) and (max-width: 1199px) {
  .mainvisual__caption img.logo_kodakumi {
    width: 311px;
  }
  .mainvisual__caption h1 {
    font-size: 18px;
  }
  .mainvisual picture img {
    object-fit: cover;
    height: 500px;
  }
}
@media(max-width: 767px) {
  .mainvisual__caption {
    left: 0;
    right: 0;
    margin: 0 auto;
    gap: 0;
    top: 75%;
    transform: translateY(-75%);
  }
  .mainvisual__caption h1 {
    font-size: 18px;
    letter-spacing: 0;
    margin-top: -5px;
  }
  .mainvisual__subtitle {
    font-size: 13px;
  }
}

/*********************************
1. Header
*********************************/

/*-----------------------------
  lp_nav
-----------------------------*/
.lp_nav {
  display: flex;
  flex-wrap: wrap;
}

.lp_nav-list {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(5, 1fr);
  height: 96px;
  background-color: #F2EED0;
  width: 100%;
}

.lp_nav-list li {
  background-color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-width: 13px;
  border-top-style: solid;
  border-top-color: #DBC3DD;
}

.lp_nav-list li:nth-child(2) {
  border-top-color: #AEE2E9;
}

.lp_nav-list li:nth-child(3) {
  border-top-color: #F5EBA0;
}

.lp_nav-list li:nth-child(4) {
  border-top-color: #BCDDB1;
}

.lp_nav-list li:nth-child(5) {
  border-top-color: #AEE2E9;
}

.lp_nav-list li,
.lp_nav-list li>a {
  color: var(--color-text);
  font-weight: 400;
  font-family: var(--font-family--headding);
  font-size: 1.5rem;
  transition: all ease .3s;
  cursor: pointer;
}

.lp_nav-list .item1 li.active,
.lp_nav-list .item1 li:hover,
.item1:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.lp_nav-list .item2 li.active,
.lp_nav-list .item2 li:hover,
.item2:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.lp_nav-list .item3 li.active,
.lp_nav-list .item3 li:hover,
.item3:hover {
  background-color: var(--color-tertiary);
  color: var(--color-white);
}

.lp_nav-list .item4 li.active,
.lp_nav-list .item4 li:hover,
.item4:hover {
  background-color: #9db894;
  color: var(--color-white);
}

.lp_nav-list .item5 li.active,
.lp_nav-list .item5 li:hover,
.item5:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

@media (max-width: 991px) {
  .lp_nav-list li {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.28px;
  }

}

/*********************************
2. Lp mainvisual slideshow
*********************************/
.lp-mvisual_inner {
  position: relative;
  overflow-x: hidden;
}

.mvisual_slide .swiper-pagination {
  bottom: 30px;
}

.mvisual_slide .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  border: 3px solid white;
  background-color: transparent;
}

.mvisual_slide .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.mvisual_slide picture {
  display: flex;
  width: 100%;
}

.mvisual_caption {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
  z-index: 3;
  width: 50%;
  margin: 0 auto;
}

@media(max-width: 991px) {
  .mvisual_slide .swiper-pagination {
    bottom: 10px;
  }

  .mvisual_slide .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
  }

  .mvisual_caption {
    top: 32%;
    transform: translateY(-32%);
    width: 100%;
  }

  .mvisual_caption img {
    width: 327px;
    height: 329px;
  }
}

/*********************************
3. Main
*********************************/
/*-----------------------------
  3.1. Layout 01
-----------------------------*/
.introduction {
  padding-top: 100px;
}
.introduction p {
  font-weight: bold;
  font-size: 20px;
  line-height: 200%;
}
@media(max-width: 767px) {
  .introduction {
    padding-top: 40px;
  }
  .introduction p {
    font-size: 16px;
  }
}

/*-----------------------------
  3.2. Layout 02
-----------------------------*/
.schedule {
  margin: 120px 0;
  background-color: var(--color-tertiary);
}

.schedule__list {
  max-width: 700px;
  margin: 0 auto;
  padding: 30px 70px;
  background-color: var(--color-white);
}
.schedule__item:not(:last-child) {
  margin-bottom: 56px;
}
.schedule__heading {
  text-align: center;
}
.schedule__title,
.plan__title {
  font-weight: 400;
  font-family: var(--font-family--secondary);
  margin-bottom: 0;
}
.schedule__session {
  max-width: 700px;
  margin: 0 auto;
}
.schedule__detail,
.schedule__session {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 150%;
}
.schedule__detail {
  text-align: center;
}
.schedule__session-item {
  display: grid;
  grid-template-columns: .15fr 1fr;
  gap: 25px;
}
.schedule__session-item:not(:last-child) {
  margin-bottom: 1rem;
}
.schedule__table tr .schedule__name {
  padding-right: 10px;
  width: 20%;
}

@media(min-width: 1500px) {
  .schedule__list {
    max-width: 1080px;
  }
}
@media(max-width: 767px) {
  .schedule {
    margin: 40px 0;
    background-color: var(--color-white);
    position: relative;
  }
  .schedule:before,
  .schedule:after {
    position: absolute;
    content: "";
    width: 188px;
    height: 188px;
    background-color: #F2EDE9;
    -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 1;
  }
  .schedule:before {
    top: 0;
    left: 0;
  }
  .schedule:after {
    bottom: 0;
    right: 0;
    transform: rotate(180deg);
  }
  .schedule__list {
    padding: 64px 0;
  }
  .schedule__item {
    position: relative;
    z-index: 2;
  }
  .schedule__detail, .schedule__session {
    font-size: 16px;
    line-height: 150%;
  }
  .schedule__session-item {
    gap: 15px;
  }
  .schedule__item:not(:last-child) {
    margin-bottom: 40px;
  }
  .schedule__item .badge {
    width: 50px;
  }
}

.profile {
  padding-bottom: 100px;
}
.profile p {
  margin-bottom: 0;
}
@media(max-width: 767px) {
  .profile {
    padding-bottom: 40px;
  }
}

/*-----------------------------
  3.3. Layout 03
-----------------------------*/
.plan {
  background-color: var(--color-gray-light);
}
.plan__section-heading {
  background-color: var(--color-black);
  text-align: center;
  color: var(--color-white);
  padding: 40px 0 30px;
}
.plan__list {
  padding: 120px 0;
  display: grid;
  grid-column: column;
  gap: 4rem;
}
.plan__list > li {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.plan__card-heading {
  background-color: var(--color-tertiary);
  padding: 24px 50px;
  text-align: center;
  line-height: 3rem;
  position: relative;
}
.plan__card-heading h3 {
  font-size: 1.8rem;
  margin-bottom: 0;
}
.plan__card-heading .badge {
  position: absolute;
  content: "";
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background-color: #843c0c;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}
.plan__title {
  font-size: 40px;
  font-weight: 400;
}
.plan__title,
.plan__subtitle {
  margin-bottom: 0;
}
.plan__subtitle {
  font-weight: 300;
}
.plan_content {
  padding: 64px 102px;
}
.plan_content {
  display: grid;
  grid-column: column;
  gap: 2rem;
}
.plan__date {
  display: grid;
  grid-template-columns: .1fr 1fr;
  gap: 25px;
}
.plan__date-value {
  color: var(--color-primary);
  font-size: 23px;
  font-weight: 600;
  padding-top: 5px;
  line-height: 150%;
}
.plan__date-value ul {
  display: grid;
  gap: 5px;
}
.plan__date-value ul > li {
  position: relative;
  padding-left: 30px;
}
.plan__date-value ul > li:before {
  position: absolute;
  content: "◆";
  top: 0px;
  left: 0;
  width: 13px;
  height: 13px;
}
.plan__date-label.badge {
  width: 96px;
}
.plan__link .btn-button {
  width: 100%;
}
  .plan__link .btn-button.end {
	  text-align: center
  }
.plan__note {
  font-weight: 300;
}
.plan__note a {
  color: var(--color-text);
  text-decoration: underline;
}
.plan__note a:hover {
  color: var(--color-primary);
}
@media(max-width: 1199px) {
  .plan__card-heading .badge {
    top: -35px;
    right: -10px;
    width: 70px;
    height: 70px;
    font-size: 10px;
  }
  .plan__card-heading h3 {
    font-size: 1.5rem;
  }
}
@media(max-width: 767px) {
  .plan__list {
    padding: 40px 0;
    gap: 40px;
  }
  .plan__section-heading h3 {
    margin-bottom: 0;
    font-size: 32px;
    font-weight: 300;
  }
  .plan__card-heading {
    padding: 1rem .5rem;
  }
  .plan__card-heading h3 {
    font-size: 1rem;
    line-height: normal;
    font-weight: 600;
  }
  .plan__card-heading .badge {
    top: -30px;
    right: -10px;
    width: 60px;
    height: 60px;
    font-size: 10px;
  }
  .plan_content {
    padding: 16px;
    gap: 24px;
  }
  .plan__item .badge {
    width: 58px;
  }
  .plan__date {gap: 15px;}
  .plan__date-value {
    font-size: 14px;
    line-height: 160%;
  }
  .plan__link .btn-button {
    height: 40px;
    padding: 0 10px;
  }
  .plan__link .btn-button.end {
    height: auto;
    padding: 1.2em 10px;
	  font-size: .9em;
  }
  .plan__note {
    font-size: 13px;
    line-height: 180%;
    font-weight: 500;
  }
}

/*-----------------------------
 3.4. Layout 04
-----------------------------*/
.membership {
  padding: 80px 0 90px ;
  text-align: center;
}
.membership__logo {
  margin-bottom: 2.5rem;
}
.membership__text {
  color: var(--color-primary);
}
.membership__link {
  max-width: 876px;
  margin: 2.5rem auto 0;
}
.membership__link .btn-button {
  width: 100%;
  background-color: var(--color-secondary);
}
.membership__link .btn-button:hover {
  background-color: var(--color-primary);
}
.membership__desc h4 {
  margin-bottom: 10px;
}
@media(max-width: 767px) {
  .membership {
    padding: 64px 0;
  }
  .membership__text {
    font-size: 22px;
  }
  .membership__desc h4 {
    font-size: 18px;
  }
  .membership__desc p {
    font-size: 14px;
  }
  .membership__link .btn-button {
    height: 40px;
    padding: 0 10px;
    font-size: 16px;
  }
}

/*-----------------------------
 3.5. Layout 05
-----------------------------*/
.contact {
  padding: 80px 0;
  background-color: var(--color-tertiary);
  text-align: center;
}
.contact__title {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}
.contact__info {
  font-size: 24px;
}
.contact__info a {
  color: var(--color-primary);
  display: flex;
  justify-self: center;
  align-items: center;
  gap: 10px;
  line-height: initial;
  margin-top: 1.5rem;
}
@media(max-width: 767px) {
  .contact {
    padding: 64px 0;
  }
  .contact__title {
    font-size: 32px;
  }
  .contact__info {
    font-size: 18px;
  }
  .contact__info a {
    font-size: 24px;
  }
}

/*-----------------------------
 3.6. Layout 06
-----------------------------*/
.notes {
  padding: 64px 0;
  background-color: var(--color-gray-light);
}
.notes__inner {
  padding: 40px 60px;
  background-color: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.notes__title {
  color: var(--color-primary);
  text-align: center;
}
@media(max-width: 768px) {
  .notes__inner {
    padding: 24px 16px;
  }
  .notes__list {
    font-size: 13px;
    line-height: 180%;
  }
}

/*********************************
4. Footer
*********************************/
.footertop {
  padding: 88px 0;
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-family--primary);
}

.footertop h4 {
  font-family: var(--font-family--primary);
}

@media(max-width: 767px) {
  .footertop {
    padding: 58px 0;
  }
}

/*-----------------------------
 4.1. Footer top
-----------------------------*/
.footertop__logo {
  margin-bottom: 25px;
}
.footertop__sns {
  gap: 24px;
}
.footertop__sns,
.footertop__link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.footertop__sns {
  margin-bottom: 20px;
}
.footertop__sns-item img {
  width: 59px;
  height: 59px;
}
.footertop__link > li {
  padding: 0 20px;
  line-height: 16px;
  border-left: 1px solid var(--color-white);
}
.footertop__link > li:last-child {
  border-right: 1px solid var(--color-white);
}
.footertop__link > li a {
  color: var(--color-white);
  vertical-align: sub;
}

.footertop__hotel-details {
  text-align: center;
  margin-bottom: 50px;
}

.footertop__access .footertop__access-title {
  color: var(--color-white);
}

.footertop__access .footertop__access-title span {
  font-size: 16px;
}

.footertop__map iframe {
  width: 100%;
  height: 320px;
}

@media (max-width: 768px) {
  .footertop__logo {
    margin-bottom: 20px;
  }
  .footertop__info {
    grid-template-columns: 1fr;
    margin: 30px 0;
  }
  .footertop__sns {gap: 20px;}
  .footertop__link {
    flex-wrap: wrap;
    gap: 20px;
  }
  .footertop__link > li {
    text-align: center;
  }
  .footertop__link > li:first-child {
    border-right: 1px solid var(--color-white);
  }
  .footertop__hotel-details {
    margin-bottom: 30px;
  }
  .footertop__map iframe {
    height: 280px;
  }
  .footertop__sns-item img {
    width: 45px;
    height: 45px;
  }
}

/*-----------------------------
 4.3. Footer copyright
-----------------------------*/
.footercopyright {
  font-size: 12px;
  padding: 7px 0 4px;
  font-weight: 400;
  font-family: var(--font-family--primary);
  background-color: var(--color-white);
  color: var(--color-text);
}

.footercopyright p {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .footercopyright {
    font-size: 11px;
    line-height: 17px;
  }
}

/*********************************
5. Back top
*********************************/
.pageTop .backtop {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  background-color: var(--color-primary);
  background-image: url("../img/svg/icon_arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  will-change: background-color, transform;
  transform: rotate(-90deg);
  font-size: 0;
  cursor: pointer;
  transition: all ease 0.5s;
  border: none;
  box-shadow: 0px 3px 10px #3D260440;
}
.pageTop .backtop:hover {
  background-color: var(--color-secondary);
}

@media (max-width: 768px) {
	.pageTop .backtop {
    width: 50px;
    height: 50px;
	}
}