/*********************************
Variables
*********************************/
:root {
  /* Font */
  --font-family--primary: "Shippori Mincho B1", serif;
  --font-family--secondary: "Zen Old Mincho", serif;
  --font-family--headding: "Shippori Mincho B1", serif;

  /* Colors */
  --color-text: #1F1F1F;
  --color-primary: #B0884E;
  --color-secondary: #262523;
  --color-tertiary: #FFF9F9;
	--color-white: #ffffff;
}

/*********************************
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: 400;
  line-height: 2rem;
  color: var(--color-body);
  overflow-x: hidden;
  background-color: var(--color-tertiary);
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: all .5s;
}
a:hover {
  text-decoration: underline;
}

p {
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1 {
  font-size: 4rem; /* 64px */
  line-height: 5.5rem;
}
h2 {
  font-size: 2.813rem; /* 45px */
  line-height: 4rem;
}
h3 {
  font-size: 2.25rem; /* 36px */
  line-height: 160%; /* 57.6px */
}
h4 {
  font-size: 1.5rem; /* 24px */
  line-height: 2.5rem;
}
h5 {
  font-size: 1.125rem; /* 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: 700;
  margin-bottom: 1rem;
}

.text-center {
  text-align: center;
}

.section {
  padding: 80px 0;
}

@media (max-width: 767px) {
  h3 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  h4 {
    font-size: 1.25rem;
    line-height: 2rem;
  }
  h5 {
    font-size: 1rem;
    line-height: 1.75rem;
  }

  .section {
    padding: 50px 0;
  }
}

/*-----------------------------
  badge
-----------------------------*/
.badge {
  border-radius: 100%;
  width: 72px;
  height: 30px;
  color: var(--color-body);
  display: inline-block;
  font-weight: 700;
  font-family: var(--font-family--secondary);
  text-transform: uppercase;
  border: 1px solid var(--color-body);
  border-radius: 4px;
  text-align: center;
}

.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;
  }
}

/*-----------------------------
  Container
-----------------------------*/
.container {
	margin: 0 auto;
	width: 100%;
	max-width: 1080px;
}

@media (max-width: 1024px) {
	.container {
		padding: 0 35px;
	}
}

/*-----------------------------
  Button
-----------------------------*/
.btn-button {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-family--primary);
  color: var(--color-white);
  padding: 20px 50px;
  display: inline-block;
  min-width: 320px;
  position: relative;
}
.btn-button:after {
  position: absolute;
  content: '';
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 35px;
  height: 20px;
  background-image: url(../img/svg/icon_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
}

.btn-button:hover {
  color: var(--color-white);
  opacity: 0.7;
  text-decoration: none;
}

.btn-outline {
  border: 2px solid var(--color-white);
  display: flex;
  gap: 15px;
  position: relative;
  padding: 16px 35px 16px 20px;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  color: var(--color-white);
  justify-content: center;
  align-items: center;
  max-width: 350px;
  z-index: 1;
  font-family: var(--font-family--headding);
}
.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: 15px;
  width: 10px;
  height: 20px;
  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-button {
    font-size: 16px;
    min-width: 264px;
    padding: 10px 15px;
  }
  .btn-outline {
    width: 100%;
    font-size: 1rem;
    padding: 10px 20px;
  }
  .btn-outline:after {
    bottom: 5px;
  }
}

/*-----------------------------
  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;
}

/*-----------------------------
  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;
  }
}

/*-----------------------------
  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;
}

.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;
  }
}

/*********************************
1. Header
*********************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: var(--color-secondary);
  height: 120px;
}

.lp_overlay {
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
.is_open .lp_overlay {
  display: block;
}
/*-----------------------------
  lp_nav
-----------------------------*/
.lp_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 35px 0;
}
.lp_nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 150px;
}
.lp_nav-list li {
  position: relative;
}
.lp_nav-list li:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: 13px;
  left: -75px;
  background-color: var(--color-primary);
  transform: rotate(-45deg);
}
.lp_nav-list li:first-child:after {
  content: none;
}
.lp_nav-list li,
.lp_nav-list li > a {
  color: var(--color-body);
  font-weight: bold;
  font-family: var(--font-family--headding);
  font-size: 1.5rem;
  transition: all ease .3s;
  cursor: pointer;
}
.lp_nav-list li.active,
.lp_nav-list li:hover,
.lp_nav-list li > a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

@media (max-width: 991px) {
  .lp_nav {
    background-color: transparent;
    border: none;
    padding: 0;
    justify-content: flex-end;
  }
}

.is_open {
  overflow: hidden;
}
.is_open .lp_nav-list {
  opacity: 1;
  transform: translatex(0);
  -webkit-transform: translatex(0);
  visibility: visible;
}

.is_open .header {
  height: 100%;
  position: fixed;
  z-index: 99;
}
.is_open .btn__nav--bar>.bar:nth-child(1),
.is_open .btn__nav--bar>.bar:nth-child(3) {
  position: absolute;
  content: "";
  top: 50%;
  background-color: var(--color-body);
}
.is_open .btn__nav--bar>.bar:nth-child(1) {
  transform: rotate(45deg) translatey(-50%);
}
.is_open .btn__nav--bar>.bar:nth-child(3) {
  transform: rotate(-45deg) translatey(-50%);
}

.btn__nav {
  display: none;
}

@media (max-width: 1024px) {
  .lp_nav-list {
    gap: 70px;
  }
  .lp_nav-list li:after {left: -35px;}
}
@media (max-width: 991px) {
  .lp_nav-list {
    position: fixed;
    content: "";
    top: 40px;
    left: 24px;
    right: 24px;
    bottom: 40px;
    width: auto;
    height: auto;
    padding: 96px 24px 30px;
    gap: 20px;
    background-color: var(--color-white);
    z-index: 10;
    opacity: 0;
    transform: translatex(-100%);
    -webkit-transform: translatex(-100%);
    transition: all 0.35s ease 0s;
    -webkit-transition: all 0.35s ease 0s;
    visibility: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    z-index: 100;
    align-content: flex-start;
    border-radius: 8px;
  }
  .lp_nav-list > .lp_nav-item {
    display: block;
    width: 100%;
  }
  .lp_nav-list li {
    padding-left: 20px;
  }
  .lp_nav-list li,
  .lp_nav-list li > a {
    font-size: 1rem;
  }
  .lp_nav-list li.active, .lp_nav-list li:hover,
  .lp_nav-list li a:hover {
    color: var(--color-primary);
  }

  .btn__nav {
    width: 40px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 101;
    margin-top: 20px;
  }
  .btn__nav--bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 40px;
    position: relative;
  }
  
  .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-body);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .is_open .bar:nth-child(2) {
    display: none;
  }
  .is_open .btn__nav {
    margin-top: 65px;
    margin-right: 20px;
  }
  .lp_nav-list li:first-child:after,
  .lp_nav-list li:after {
    left: 0;
    border-radius: 100%;
    background: transparent;
    border: 1px solid var(--color-primary);
    top: 10px;
    content: "";
  }
}

/*********************************
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
*********************************/
.bg-gradient {
  background: linear-gradient(270deg, #D2A637 0%, #F2C873 36.5%, #C69B34 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-light {
  background: linear-gradient(327deg, #DDCB9B 20.88%, #FFE3AE 45.16%, #F7E6B1 58.61%, #DDCB9B 89.12%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-dark {
  background: linear-gradient(270deg, #A6804A 0%, #CDB37E 36.5%, #A6804A 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.icon-chevron {
  width:8px;
  height:13px;
  display:inline-block;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 13' fill='none'><path d='M1.21745 0.817755L6.96518 6.47461L1.21745 12.1315' stroke='%23B0884E' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size:contain;
  background-repeat:no-repeat;
}
/*-----------------------------
  3.1. Layout 01
-----------------------------*/
.hero {
  position: relative;
  overflow: hidden;
  height: 755px;
}
.hero picture {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: 0 auto;
  z-index: 1;
}
.hero picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
}
.hero__heading {
  background-image: url("../img/bg-mask01.jpg");
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero__heading h1 {
  font-size: 180px;
  font-weight: 600;
  line-height: 100%;
}
.hero__heading h2 {
  font-size: 80px;
  font-weight: 600;
  line-height: 160%;
}
@media(max-width: 767px) {
  .hero {
    height: 420px;
  }
  .hero picture img {
    height: 420px;
  }
  .hero__heading h1 {
    font-size: 94px;
  }
  .hero__heading h2 {
    font-size: 41.848px;
  }
}
/*-----------------------------
 3.2. Layout 02
-----------------------------*/
.intro {
  background-color: var(--color-tertiary);
  position: relative;
}
.intro:before,
.intro:after {
  position: absolute;
  content: "";
  width: 269.67px;
  height: 122.475px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}
.intro:before {
  top: 32px;
  left: 14%;
  background-image: url("../img/icon03.svg");
}
.intro:after {
  bottom: 32px;
  right: 14%;
  background-image: url("../img/icon04.svg");
}
.intro__title {
  margin-bottom: 50px;
  font-size: 32px;
  font-weight: 500;
  line-height: 170%; /* 54.4px */
}
.intro__list {
  color: var(--color-text);
  max-width: 870px;
  margin: 0 auto;
}
.intro__list > li {
  display: grid;
  gap: 1rem;
  grid-template-columns: .3fr 1fr;
  align-items: center;
}
.intro__list > li:not(:last-child) {
  margin-bottom: 20px;
}
.intron__date {
  font-size: 20px;
  line-height: 170%;
  font-weight: 500;
}
.intron__time {
  font-size: 32px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 1.6px;
}
.intron__time > span {
  font-size: 1.5rem;
  line-height: 170%;
  letter-spacing: 1.2px;
}
@media(min-width: 1137px) and (max-width: 1680px) {
  .intro:before {
    left: 3%;
  }
  .intro:after {
    right: 3%;
  }
}
@media(min-width: 992px) and (max-width: 1366px) {
  .intro:before,
  .intro:after {
    width: 250px;
    height: 113.542px;
  }
  .intro:before {
    left: 13px;
    top: -65px;
  }
  .intro:after {
    right: 0;
    bottom: -65px;
  }
}
@media(max-width: 991px) {
  .intro {
    padding-top: 40px;
  }
  .intro:before,
  .intro:after {
    width: 150px;
    height: 68.125px;
  }
  .intro:before {
    left: 13px;
    top: -45px;
  }
  .intro:after {
    right: 0;
    height: 72.991px;
    bottom: -45px;
  }
  .intro__title {
    font-size: 20px;
    font-weight: 800;
  }
  .intro__list > li {
    grid-template-columns: 1fr;
    text-align: center;
    gap: .2rem;
  }
  .intro__list > li:not(:last-child) {
    margin-bottom: 1.5rem;
  }
  .intron__date {
    font-weight: 800;
    font-size: 20px;
  }
  .intron__time,
  .intron__time > span {
    font-weight: 800;
    font-size: 26px;
    letter-spacing: 0;
  }
}
/*-----------------------------
 3.3. Layout 03 
-----------------------------*/
.card__heading {
  margin-bottom: 50px;
}
.card__heading h3 {
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 800;
  line-height: 170%;
}
.card__heading .card__price {
  font-size: 32px;
  font-weight: 500;
  line-height: 160%;
}
.card__heading .card__price span {
  font-size: 20px;
}
.card .card__des {
  font-size: 28px;
  font-weight: 500;
  line-height: 170%;
  max-width: 545px;
  text-align: left;
  margin: 0 auto;
}
.card .card__des table tr {
  vertical-align: baseline;
}
.card .card__des span {
  font-size: 20px;
  margin-left: 5px;
}
.card.style1 {
  background-image: url("../img/bg-mask03.png");
  background-repeat: repeat;
  background-position: top center;
}
.card.style1 .card__des {
  color: var(--color-white);
}
.card.style2 .card__des {
  text-align: center;
}
.card__content {
  position: relative;
  padding: 50px 0;
}
.card__content:before,
.card__content:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 495.58px;
  height: 12.23px;
  background-image: url("../img/bg-mask02.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.card__content:before {
  top: 0;
}
.card__content:after {
  bottom: 0;
  transform: rotateX(180deg);
}
.card__images {
  display: grid;
  grid-template-columns: 1fr .46fr;
  gap: 1rem;
}
.card__images img {
  transition: all ease 0.5s;
}
.card__images img:hover {
  opacity: 0.7;
}
.card__images-rg {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.card__box {
  margin: 2.5rem 0;
}
.card__box:last-child {
  margin-bottom: 0;
}
.card__box h3 {
  position: relative;
  padding: 0 25px;
  max-width: max-content;
  margin: 0 auto 1rem;
}
.card__box h3:before,
.card__box h3:after {
  position: absolute;
  content: "";
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background-image: url("../img/icon01.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.card.style2 .card__box h3:before,
.card.style2 .card__box h3:after {
  background-image: url("../img/icon02.svg");
}
.card__box h3:before {
  left: 0;
}
.card__box h3:after {
  right: 0;
}
.card__box-text {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%; /* 34px */
  padding: 16px 64px 16px 71px;
  margin-bottom: 0;
  border: 1px solid var(--color-primary);
  text-align: justify;
}
.card__info > li {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 38.4px */
  font-family: var(--font-family--secondary);
  margin: 40px 0 50px;
  justify-content: center;
}
.card.style1 .card__info > li {
  color: var(--color-white);
}
.card__info > li .card__info-rf {
  text-align: left;
}
.card__btn {
  text-align: center;
  border-radius: 35px;
  border: 1px solid var(--color-primary);
  padding: 2px;
  max-width: max-content;
  margin: 0 auto;
  transition: all ease .5s;
}
.card__btn .btn-outline {
  font-size: 24px;
  width: 260px;
  max-width: 100%;
  border-radius: 35px;
  padding: 16px 15px;
  border: 0.5px solid var(--color-primary);
}
.card__btn .btn-outline::before,
.card__btn .btn-outline::after {
  content: none;
}
.card__btn:hover{
  box-shadow: 0 0 15px #b0884e9e;
}
.card__note {
  margin: 80px auto 20px;
  max-width: 530px;
  font-weight: 500;
}
.card__note > li {
  position: relative;
  padding-left: 17px;
}
.card__note > li:before {
  position: absolute;
  content: "※";
  top: 0;
  left: 0;
  width: 17px;
}

@media(max-width: 991px) {
  .card {
    padding: 80px 0 70px;
  }
  .card__heading {
    margin-bottom: 25px;
  }
  .card__heading h3 {
    font-size: 2rem;
  }
  .card__heading .card__price {
    font-size: 26px;
    font-weight: 800;
  }
  .card .card__des {
    font-size: 20px;
    font-weight: 800;
  }
  .card__content:before,
  .card__content:after {
    max-width: 323px;
  }
  .card__content {
    padding: 34px 0;
  }
  .card__box h3 {
    font-size: 26px;
  }
  .card__box-text {
    padding: 16px;
    font-size: 16px;
    font-weight: 800;
  }
  .card__info > li {
    font-size: 19px;
    font-weight: 800;
    gap: .5rem;
    margin-top: 25px;
    margin-bottom: 40px;
  }
  .card__btn .btn-outline {
    font-size: 20px;
    font-weight: 800;
    padding: 8px 15px;
  }
  .card__info > li .card__info-rf {
    text-align: center;
  }
  .card__note {
    font-size: 15.5px;
    font-weight: 800;
  }
  .card__images {
    gap: .5rem;
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .card__images-rg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    justify-items: center;
  }
}
/*-----------------------------
 3.4. Layout 04
-----------------------------*/
@media(max-width: 767px) {
  
}
/*-----------------------------
 3.5. Layout 05
-----------------------------*/
.mb-0 {
  margin-bottom: 0 !important;
}
.contact {
  padding: 50px 0;
  background-image: url("../img/bg-mask04.jpg");
  background-position: bottom;
  background-repeat: no-repeat;
  position: relative;
}
.contact:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.7;
  z-index: 1;
}
.contact-list {
  position: relative;
  z-index: 2;
}
.contact-list > li {
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  gap: 8px;
  max-width: 830px;
  margin: 0 auto;
  font-size: 1.5rem;
  line-height: 160%;
  color: var(--color-white);
}
.contact__name {
  font-weight: 700;
  font-size: 24px;
}
.contact__info table.tel tr {
  font-size: 24px;
}
.contact__info table.tel tr:first-child {
  font-size: 32px;
  font-weight: 700;
  line-height: 160%;
}

@media(max-width: 991px) {
  .contact-list > li {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .contact__name {
    text-align: center;
  }
  .contact__name,
  .contact__info table.tel tr {
    font-size: 20px;
  }
  .contact__info table.tel tr:first-child {
    font-size: 26px;
  }
}
/*********************************
4. Footer
*********************************/
/*-----------------------------
 4.1. Footer top
-----------------------------*/
.footertop {
  padding: 80px 0 40px;
  color: var(--color-white);
  background-color: var(--color-secondary);
}
.footertop__sns {
  gap: 25px;
  max-width: 757px;
  margin: 0 auto 50px;
}
.footertop__sns-item .btn-outline {
  width: 100%;
  max-width: 100%;
  height: 96px;
  font-family: var(--font-family--secondary);
  text-align: left;
  justify-content: flex-start;
}
.footertop__sns-item .btn-outline:after {
  background-image: url("../img/svg/icon_arrow_white.svg");
}
.footertop__sns-item .btn-outline .footertop__sns-text {
  line-height: 24px;
  display: grid;
  grid-template-columns: 1fr;
}

.footertop_note {
  max-width: 550px;
  margin: 65px auto;
  font-size: 15px;
}
.footertop_note li {
  padding-left: 16px;
  position: relative;
}
.footertop_note li::before {
    content: "※";
    position: absolute;
    left: 0;
}

.footertop_buttoms {
  text-align: center;
  margin-bottom: 65px;
}
.footertop_buttoms .btn-button {
  height: 70px;
  background-color: var(--color-white);
  border-radius: 50px;
  color: var(--color-black);
  line-height: 70px;
  font-size: 18px;
  font-weight: 600;
  padding: 0 20px;
  width: 435px;
}
.footertop_buttoms .btn-button:hover {
  opacity: 1;
  color: var(--color-white);
  background-color: var(--color-primary);
}

.footertop__logo {
  display: flex;
  flex-wrap: nowrap;
  gap: 82px;
  justify-content: center;
  align-items: center;
}
.footertop__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 70px;
}
.footertop__links > li {
  line-height: 20px;
  padding: 0 24px;
  border-width: 0 1px 0 0;
  border-style: solid;
  border-color: var(--color-white);
}
.footertop__links > li:first-child {
  border-left: 1px solid var(--color-white);
}
.footertop__links > li a {
  color: var(--color-white);
}
.footertop__links > li a:hover {
  text-decoration: none;
  color: var(--color-link-hover);
}
@media(min-width: 768px) and (max-width: 991px) {
  .footertop__sns {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width: 768px) {
  .footertop {
    padding: 36px 0;
  }
  .footertop__links {
    gap: 8px;
    margin-top: 25px;
  }
  .footertop__links > li,
  .footertop__links > li:first-child {
    border: none;
  }
  .footertop__logo {
    gap: 10px;
  }
}
@media(max-width: 767px) {
  .footertop__links {
    gap: 13px;
  }
  .footertop__links > li {
    position: relative;
    padding-bottom: 9px;
    width: 100%;
    text-align: center;
  }
  .footertop__links > li:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 13px;
    height: 1px;
    background-color: var(--color-white);
  }
  .footertop_buttoms .btn-button {
    width: 100%;
  }
  .footertop__logo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .footertop__sns {
    gap: 16px;
    margin-bottom: 50px;
  }
  .footertop__sns-item .btn-outline {
    height: 90px;
  }
  .footertop__sns-item .btn-outline .footertop__sns-text {
    font-size: 14px;
  }

  .footertop_note {
    margin: 20px 0 40px;
  }
}
/*-----------------------------
 4.2. Footer copyright
-----------------------------*/
.footercopyright {
  padding: .6rem 0;
  font-size: 12px;
  font-weight: 400;
  font-family: var(--font-family--secondary);
  background: linear-gradient(270deg, #A6804A 0%, #CDB37E 36.5%, #A6804A 100%);
  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: 24px;
  bottom: 20px;
  z-index: 10;
  background-color: #5f522a;
  background-image: url("../img/svg/icon_arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(-90deg);
  font-size: 0;
  cursor: pointer;
  transition: all ease 0.5s;
  border: none;
}
.pageTop .backtop:hover {
  background-color: var(--color-primary);
}
@media (max-width: 768px) {
	.pageTop .backtop {
    width: 60px;
    height: 60px;
	}
}