/*********************************
Variables
*********************************/
:root {
  /* Font */
  --font-family--primary: "Shippori Mincho", serif;
  --font-family--secondary: "Noto Sans JP", serif;
  --font-family--headding: "Shippori Mincho", serif;

  /* Colors */
  --color-body: #333333;
  --color-primary: #C9BC23;
  --color-secondary: #78CDCB;
  --color-tertiary: #DB5B50;
	--color-white: #ffffff;
  --color-black: #000000;
  --color-link-hover: #333333;
}

/*********************************
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: 1.8rem;
  color: var(--color-body);
  overflow-x: hidden;
  padding-right: 90px;
}
@media(max-width: 991px) {
  body {
    padding-right: 0;
  }
}

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;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1 {
  font-size: 4rem; /* 64px */
  line-height: 5.5rem;
}
h2 {
  font-size: 2.5rem; /* 40px */
  line-height: 3.5rem;
}
h3 {
  font-size: 2rem; /* 32px */
  line-height: 3rem;
}
h4 {
  font-size: 1.5rem; /* 24px */
  line-height: 2.3rem;
}
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;
}
@media (max-width: 768px) {
  h3 {
    line-height: 180%;
  }
  h4 {
    font-size: 1.20rem;
    line-height: 2rem;
  }
  h5 {
    font-size: 1rem;
    line-height: 1.75rem;
  }
}
@media (max-width: 390px) {
  h3 {
    font-size: 1.5rem;
    line-height: 160%;
  }
}

.text-center {
  text-align: center;
}

.section {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .section {
    padding: 50px 0;
  }
}

.section-title__heading {
  position: relative;
  margin-bottom: 66px;
  padding-bottom: 20px;
  text-align: center;
}
.section-title__heading:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 4px;
  background-color: var(--color-primary);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .section-title__heading {
    margin-bottom: 40px;
  }
}
/*-----------------------------
  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 20px;
	}
}

/*-----------------------------
  Button
-----------------------------*/
.btn-button {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-family--primary);
  color: var(--color-white);
  padding: 11px 50px;
  display: inline-block;
  min-width: 320px;
  position: relative;
  border-radius: 25px;
  background-color: #EA5D6C;
}
.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: 1px solid var(--color-primary);
  display: flex;
  gap: 15px;
  position: relative;
  padding: 16px 20px;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  color: var(--color-body);
  justify-content: center;
  align-items: center;
  max-width: 350px;
  background-color: var(--color-white);
  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: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: 12px 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;
  }
}

.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 {
  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: flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  background-color: var(--color-primary);
  border-radius: 50%;
  padding: 0;
  transition: 0.3s;
  cursor: pointer;
}
.swiper-button-prev {
  left: -25px;
}
.swiper-button-next {
  right: -25px;
}
.swiper-button-next:after,
.swiper-button-prev::after {
  font-size: 20px;
  color: var(--color-white);
}
.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;
}
.swiper-button-next.swiper-button-disabled, 
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.7;
}
.plan__sliderlist .is-hidden {
  display: none;
}

@media screen and (max-width: 768px) {
  .swiper-button-prev, .swiper-button-next {
    width: 35px;
    height: 35px;
  }
  .swiper-button-prev {
    left: -3px;
  }
  .swiper-button-next {
    right: -3px;
  }
  .swiper-button-next:after, .swiper-button-prev::after {
    font-size: 16px;
  }
}

/*********************************
1. Header
*********************************/
.header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9;
  width: 90px;
}

.lp_overlay {
  background: #4d4d4d;
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
.is_open .lp_overlay {
  display: block;
}

@media(max-width: 991px) {
  .header {
    width: 98px;
    right: 20px;
  }
}
/*-----------------------------
  lp_nav
-----------------------------*/
.lp_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 42px 0;
}
.lp_nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.lp_nav-list li {
  position: relative;
}
.lp_nav-list li,
.lp_nav-list li > a {
  color: var(--color-black);
  font-weight: bold;
  font-family: var(--font-family--headding);
  font-size: 1rem;
  transition: all ease .3s;
  cursor: pointer;
  writing-mode: vertical-rl;
  height: -moz-fit-content;
  height: fit-content;
  border-right: 1px solid var(--color-black);
  padding-right: 9px;
  letter-spacing: 1.6px;
}
.lp_nav-list li.active,
.lp_nav-list li:hover,
.lp_nav-list li > a:hover {
  color: var(--color-primary);
  text-decoration: none;
  border-right-color: var(--color-primary);
}

@media (max-width: 1199px) {
  .lp_nav {
    padding: 20px 0;
  }
}
@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-white);
}
.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: 1536px) {
  .lp_nav-list {
    gap: 25px;
  }
}
@media (max-width: 1024px) {
  .lp_nav-list {
    gap: 30px;
  }
  .lp_nav-list li:after {left: -35px;}
}
@media (max-width: 991px) {
  .lp_nav-list {
    position: fixed;
    content: "";
    top: 0;
    left: 0;
    right: 98px;
    bottom: 0;
    width: auto;
    height: auto;
    padding: 96px 24px 30px;
    gap: 40px;
    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;
    justify-content: flex-start;
    display: grid;
  }
  .lp_nav-list > .lp_nav-item {
    display: block;
    width: fit-content;
  }
  .lp_nav-list li,
  .lp_nav-list li > a {
    font-size: 24px;
    writing-mode: initial;
    border-right: none;
    padding-right: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--color-black);
  }
  .lp_nav-list li.active, .lp_nav-list li:hover,
  .lp_nav-list li a:hover {
    color: var(--color-primary);
  }

  .btn__nav {
    width: 45px;
    height: 45px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 101;
    margin-top: 20px;
    background-color: var(--color-white);
    border: 1px solid var(--color-primary);
  }
  .btn__nav--bar {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    width: 24px;
    position: relative;
  }
  
  .bar {
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 3px;
  }
  .is_open .bar:nth-child(2) {
    display: none;
  }
  .is_open .btn__nav {
    margin-top: 24px;
    background-color: var(--color-primary);
  }
}

/*********************************
2. Lp mainvisual slideshow
*********************************/
.lp-mvisual__inner {
  position: relative;
  overflow-x: hidden;
  background-color: var(--color-primary);
  padding: 73px 16px 92px;
}
.lp-mvisual__inner::before {
  position: absolute;
  content: "";
  left: 16px;
  z-index: 3;
  top: 25px;
  width: 293px;
  height: 97px;
  background-image: url("../img/kussharo.svg");
  background-repeat: no-repeat;
  background-position: center center;
}
.mvisual__slide {
  position: relative;
}
.mvisual__slide:before,
.mvisual__slide:after {
  position: absolute;
  content: "";
  bottom: -55px;
  z-index: 3;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.mvisual__slide:before {
  left: 0;
  width: 316px;
  height: 142px;
  background-image: url("../img/slideshow_after.png");
}
.mvisual__slide:after {
  width: 189px;
  height: 97px;
  right: 0;
  background-image: url("../img/kushiro.svg");
}
.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 .swiper-slide {
  display: flex;
  flex-wrap: nowrap;
  border-radius: 20px;
  overflow: hidden;
}
.mvisual__slide .swiper-slide:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.mvisual__slide .swiper-slide picture,
.mvisual__slide .swiper-slide img {
  width: 100%;
}
.mvisual__slide .swiper-slide img {
  display: block;
}
.mvisual__caption {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 92px;
  top: 73px;
  text-align: center;
  z-index: 3;
  width: 50%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  justify-content: center;
  align-content: center;
}

@media(max-width: 1199px) {
  .mvisual__caption {
    gap: 30px;
  }
  .lp-mvisual__inner::before {
    top: 53px;
    width: 128px;
    height: 43px;
    background-size: cover;
  }
  .mvisual__slide:before, .mvisual__slide:after {
    bottom: -22px;
  }
  .mvisual__slide:after {
    width: 83px;
    height: 43px;
    right: 0;
  }
  .mvisual__slide:before {
    width: 180px;
    height: 81px;
  }
}
@media(max-width: 991px) {
  .mvisual__slide .swiper-pagination {
    bottom: 10px;
  }
  .mvisual__slide .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
  }
}
@media(max-width: 768px) {
  .lp-mvisual__inner {
    padding: 58px 20px 67px;
  }
  .mvisual__slide .swiper-slide {
    flex-wrap: wrap;
  }
  .mvisual__slide:before {
    content: none;
  }
  .mvisual__caption {
    gap: 88px;
    width: 80%;
  }
  .lp-mvisual__inner::before {
    top: 38px;
  }
}
/*********************************
3. Main
*********************************/
.main {
  overflow-x: hidden;
}
/*-----------------------------
  3.1. Layout 01
-----------------------------*/
#lp_contents01 {
  padding: 0;
  background-image: url("../img/bg_lp_contents01.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  position: relative;
}
#lp_contents01:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.7);
}
#lp_contents01:after {
  position: absolute;
  content: "";
  left: 46px;
  bottom: 0;
  width: 267px;
  height: 181px;
  background-image: url("../img/lp_content01_after.svg");
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 2;
}
#lp_contents01 .container {
  position: relative;
  z-index: 4;
}
.hokkaido-story__inner {
  position: relative;
  padding: 86px 0 97px;
  z-index: 3;
}
.hokkaido-story__inner:before,
.hokkaido-story__inner:after {
  position: absolute;
  content: "";
  right: 0;
  height: 50%;
  width: 50%;
}
.hokkaido-story__inner:before {
  top: 0;
  background: linear-gradient(270deg, #C9BC23 0%, rgba(201, 188, 35, 0.00) 100%);
}
.hokkaido-story__inner:after {
  bottom: 0;
  background: linear-gradient(270deg, #78CDCB 0%, rgba(120, 205, 203, 0.00) 100%);
}
.hokkaido-story__content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.hokkaido-story__text {
  color: var(--color-white);
  position: absolute;
  content: "";
  left: 0;
  top: 10%;
}
.hokkaido-story__text h4 {
  margin-bottom: 40px;
}
@media(max-width: 1199px) {
  .hokkaido-story__text {
    position: inherit;
  }
}
@media(max-width: 767px) {
  #lp_contents01:after {content: none;}
  .hokkaido-story__inner {
    padding: 40px 0;
  }
}
/*-----------------------------
 3.2. Layout 02
-----------------------------*/
#lp_contents02 {
  padding: 58px 0 74px;
  position: relative;
}
#lp_contents02:before,
#lp_contents02:after {
  position: absolute;
  content: "";
  width: 246px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#lp_contents02:before {
  top: 109px;
  left: 17%;
  height: 80px;
  background-image: url("../img/bg_lp_contents02_before.png");
}
#lp_contents02:after {
  top: 45px;
  right: 15.5%;
  height: 103px;
  background-image: url("../img/bg_lp_contents02_after.png");
}

.reason__list {
  padding: 45px 0 0;
  display: grid;
  gap: 29px;
  grid-template-columns: repeat(3, 1fr);
}
.reason__item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 44px 24px 18px;
  border-radius: 16px;
  min-height: 463px;
}
.reason__item.even {
  background-color: var(--color-secondary);
}
.reason__item.odd {
  background-color: var(--color-primary);
}
.reason__number {
  position: absolute;
  z-index: 2;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white); 
  width: 84px;
  height: 84px;
  border-radius: 50%;
  font-weight: 400;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-width: 12px;
  border-style: solid;
  font-family: var(--font-family--secondary);
}
.reason__number:before,
.reason__number:after {
  position: absolute;
  content: "";
  width: 30px;
  height: 18px;
  top: 13px;
  z-index: 3;
}
.reason__number:before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='18' viewBox='0 0 30 18' fill='none'%3E%3Cpath d='M30 0C23.5 14.5 11.4521 18 0 18H26.5L30 0Z' fill='%23000'/%3E%3C/svg%3E") no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='18' viewBox='0 0 30 18' fill='none'%3E%3Cpath d='M30 0C23.5 14.5 11.4521 18 0 18H26.5L30 0Z' fill='%23000'/%3E%3C/svg%3E") no-repeat;
  mask-size: contain;
  left: -38px;
}
.reason__number:after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='18' viewBox='0 0 30 18' fill='none'%3E%3Cpath d='M0 0C6.5 14.5 18.5479 18 30 18H3.5L0 0Z' fill='%23C9BC23'/%3E%3C/svg%3E") no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='18' viewBox='0 0 30 18' fill='none'%3E%3Cpath d='M0 0C6.5 14.5 18.5479 18 30 18H3.5L0 0Z' fill='%23C9BC23'/%3E%3C/svg%3E") no-repeat;
  mask-size: contain;
  right: -38px;
}
.odd .reason__number:before,
.odd .reason__number:after {
  background: var(--color-primary);
}
.odd .reason__number {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.even .reason__number:before,
.even .reason__number:after {
  background: var(--color-secondary);
}
.even .reason__number {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}
.reason__image img {
  display: block;
  border-radius: 12px;
}
.reason__text {
  margin-top: 1rem;
}
.reason__text h5 {
  font-size: 20px;
  line-height: 160%;
  text-align: center;
}
.reason__text p {
  margin-bottom: 0;
}

@media(max-width: 1500px) {
  #lp_contents02:before {
    left: 50px;
  }
  #lp_contents02:after {
    right: 32px;
  }
}
@media(max-width: 1199px) {
  #lp_contents02:before, #lp_contents02:after {
    width: 160px;
  }
  #lp_contents02:before {
    height: 52px;
  }
  #lp_contents02:after {
    height: 67px;
  }
}
@media(max-width: 768px) {
  #lp_contents02:before,
  #lp_contents02:after {
    content: none;
  }
  .reason__list {
    gap: 29px;
    grid-template-columns: 1fr;
  }
  .reason__item:not(:first-child) {
    margin-top: 42px;
  }
  .reason__image img {
    width: 100%;
  }
}
@media(max-width: 390px) {
  .reason__text p {
    font-size: 15px;
  }
}
/*-----------------------------
 3.3. Layout 03 
-----------------------------*/
#lp_contents03 {
  padding: 60px 0 90px;
  background-image: url("../img/bg_lp_contents03.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  position: relative;
}
#lp_contents03:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.7);
}
#lp_contents03 > .container {
  position: relative;
  z-index: 2;
}
.map__inner {
  position: relative;
  z-index: 3;
}
.map__inner:before,
.map__inner:after {
  position: absolute;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.map__inner:before {
  top: 249px;
  left: 17%;
  width: 278px;
  height: 170px;
  background-image: url("../img/bg_lp_contents03_before.png");
}
.map__inner:after {
  top: 95px;
  right: 15.5%;
  width: 348px;
  height: 107px;
  background-image: url("../img/bg_lp_contents03_after.png");
}
.map__title h3 {
  color: var(--color-white);
}

@media(max-width: 1500px) {
  .map__inner:before {
    left: 35px;
  }
  .map__inner:after {
    right: -44px;
  }
}
@media(max-width: 1199px) {
  .map__inner:before {
    width: 180px;
    height: 110px;
  }
  .map__inner:after {
    width: 280px;
    height: 86px;
  }
}
@media(max-width: 768px) {
  .map__inner:before,
  .map__inner:after {
    content: none;
  }

  .map__image {
    text-align: center;
  }
}
/*-----------------------------
 3.4. Layout 04
-----------------------------*/
#lp_contents04 {
  padding: 100px 0;
}
#lp_contents04 .container {
  position: relative;
}
#lp_contents04 .container:after {
  position: absolute;
  content: "";
  bottom: -55px;
  right: -118px;
  width: 244px;
  height: 153px;
  background-image: url("../img/bg_lp_contents04_after.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.plan__wrapper {
  background-color: #FEF4E5;
  border-radius: 32px;
  padding: 50px 50px 70px 50px;
  position: relative;
}
.plan__wrapper:before,
.plan__wrapper:after {
  position: absolute;
  content: "";
  width: 246px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.plan__wrapper:before {
  top: -32px;
  left: -103px;
  height: 103px;
  background-image: url("../img/bg_lp_contents02_after.png");
}
.plan__wrapper:after {
  top: 0;
  right: -123px;
  height: 80px;
  background-image: url("../img/bg_lp_contents02_before.png");
}
.plan__content > div:not(:last-child) {
  margin-bottom: 58px;
}

@media(max-width: 1360px) {
  #lp_contents04 .container:after {
    right: -60px;
  }
  .plan__wrapper:before {
    left: -60px;
  }
  .plan__wrapper:after {
    right: -60px;
  }
}
@media(max-width: 1199px) {
  .plan__wrapper:before {
    height: 67px;
    width: 160px;
    left: 0;
  }
  .plan__wrapper:after {
    height: 52px;
    width: 160px;
    right: 0;
  }
  #lp_contents04 .container:after {
    right: 0;
    width: 180px;
    height: 114px;
  }
}
@media(max-width: 768px) {
  #lp_contents04 {
    padding: 60px 0 50px;
  }
  .plan__wrapper:before,
  .plan__wrapper:after,
  #lp_contents04 .container:after {
    content: none;
  }

  .plan__wrapper {
    padding: 33px 16px;
  }
}

/* plan row1 */
.plan-row1 {
  display: flex;
  flex-wrap: nowrap;
  gap: 35px;
  align-items: flex-start;
}
.plan-row1 .plan__intro {
  width: 45%;
}
.plan-row1 .plan__sliderlist {
  width: 55%;
  position: relative;
}
.plan__intro h4 {
  margin-bottom: 25px;
}
.plan__time {
  font-weight: bold;
  margin-bottom: 25px;
}
.plan__time > span {
  background-color: var(--color-tertiary);
  color: #fff;
  padding: 0.16rem 0.5rem;
  border-radius: 4px;
  margin-right: 0.3rem;
}
.plan__slider {
  overflow: hidden;
}
.plan__slider img {
  border-radius: 11px;
  display: block;
  width: 100%;
}
@media(max-width: 768px) {
  .plan-row1 {
    flex-wrap: wrap;
    gap: 15px;
  }
  .plan-row1 .plan__intro,
  .plan-row1 .plan__sliderlist {
    width: 100%;
  }
  .plan__map {
    text-align: center;
  }
  .plan__slider {
    margin: 0 15px;
  }
}
@media(max-width: 390px) {
  .plan__time {
    font-size: 15px;
  }
}

/* plan row2 */
.plan-row2 {
  gap: 34px;
  align-items: start;
}
.plan__hotel {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--color-tertiary);
  background-color: var(--color-white);
}
.plan__hotel-title {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--color-white);
  background-color: var(--color-tertiary);
  text-align: center;
  padding: 4px;
  line-height: 180%;
  margin-bottom: 0;
}
.plan__hotel-content {
  padding: 1rem;
}
.plan__hotel-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  justify-content: center;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px dashed var(--color-body);
}
.plan__hotel-item {
  text-align: center;
  background-color: #FEF4E5;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.plan__hotel-item img {
  display: block;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.plan__hotel-name {
  font-size: 1rem;
  font-weight: bold;
  padding: 7px;
}
@media(max-width: 390px) {
  .plan__hotel-name {
    font-size: 15px;
  }
}

/* plan__benefits */
.plan__benefits-block {
  display: grid;
  grid-template-columns: 0.2fr 1fr;
  gap: 20px;
}
.plan__benefits-title {
  font-weight: bold;
  color: var(--color-tertiary);
}
.plan__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.plan__benefits-item {
  display: flex;
  gap: 8px;
  border-radius: 8px;
  background-color: #FFFFF6;
  border: 1px solid var(--color-tertiary);
  overflow: hidden;
  align-items: center;
}
.plan__benefits-item:not(:last-child) {
  margin-bottom: 1rem;
}
.plan__benefits-hotel {
  background-color: var(--color-tertiary);
  color: #fff;
  padding: 0.2rem 0.5rem;
  display: inline-block;
  line-height: 140%;
}

@media(max-width: 1199px) {
  .plan__benefits-item {
    font-size: 14px;
  }
}
@media(max-width: 768px) {
  .plan__benefits-block {
    grid-template-columns: 1fr;
  }
}
/*-----------------------------
 3.5. Layout 05
-----------------------------*/
#lp_contents05 {
  padding: 0;
}

.reservation {
  text-align: center;
}
.reservation__title {
  margin-bottom: 66px;
}
.reservation__title .section-title__heading {
  margin-bottom: 15px;
}
.reservation__title p {
  margin-bottom: 0;
}
.reservation__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.reservation__item {
  position: relative;
  color: white;
  overflow: hidden;
  cursor: pointer;
}
.reservation__image {
  aspect-ratio: auto;
  overflow: hidden;
  position: relative;
}

.reservation__image picture,
.reservation__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.reservation__content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  right: 20px;
  margin: 0 auto;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.reservation__content > div {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  align-items: center;
}
.reservation__content p {
  margin-bottom: 0;
}
.reservation__content a {
  color: var(--color-white);
}
.reservation__content a:hover {
  color: var(--color-primary);
}
.reservation__item:hover .reservation__image img {
  transform: scale(1.1);
}
.reservation__item:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.reservation__item.bg-grandient1:before {
  background: rgba(18, 26, 86, 0.60);
}
.reservation__item.bg-grandient2:before {
  background: rgba(104, 93, 12, 0.60);
}
@media(max-width: 390px) {
  .reservation__content {
    font-size: 13px;
    line-height: 24px;
    left: 10px;
    right: 10px;
  }
}

/*----------------------------
3.6. layout 06
-----------------------------*/
#lp_contents06 {
  position: relative;
}
#lp_contents06:before,
#lp_contents06:after {
  position: absolute;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#lp_contents06:before {
  top: 45px;
  left: 11.5%;
  width: 266px;
  height: 163px;
  background-image: url("../img/bg_lp_contents06_before.png");
}
#lp_contents06:after {
  bottom: 0;
  right: 13%;
  width: 268px;
  height: 120px;
  background-image: url("../img/bg_lp_contents06_after.png");
}
.lp_spot {
  width: 100%;
  max-width: 770px;
  margin: 0 auto;
}
.lp_spot h4 {
  margin-bottom: 3rem;
}
.lp_spot-list {
	display: flex;
	flex-wrap: wrap;
  max-width: 812px;
}

.lp_spot-list .lp_spot-item {
	margin: 0 4.1% 20px 0;
	width: calc((100% - 4.1%) / 2);
}

.lp_spot-list .lp_spot-item:nth-child(even) {
	margin-right: 0;
}

.lp_spot-detail {
	margin-top: 15px;
  text-align: center;
}

.lp_spot-detail dt {
	margin-bottom: 16px;
	font-size: 18px;
	font-weight: bold;
}

.lp_spot-detail dd p {
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

.lp_spot-detail dd a {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

@media(max-width: 1500px) {
  #lp_contents06:before {
    left: 31px;
  }
  #lp_contents06:after {
    right: 0;
  }
}
@media(max-width: 1199px) {
  #lp_contents06:before {
    width: 180px;
    height: 110px;
  }
  #lp_contents06:after {
    width: 180px;
    height: 81px;
  }
}
@media (max-width: 991px) {
  .lp_spot h4 {
    margin-bottom: 1.5rem;
  }
	.lp_spot-detail {
		margin-top: 10px;
	}
	.lp_spot-detail dt {
		margin-bottom: 1rem;
		font-size: 1rem;
	}
	.lp_spot-detail dd p {
		margin-bottom: 1rem;
		font-size: 1rem;
	}
	.lp_spot-detail dd a {
		font-size: 18px;
	}
	.lp_spot-detail dd a::after {
		width: 2.60417vw;
		height: 2.60417vw;
	}

  #lp_contents06:before,
  #lp_contents06:after {
    content: none;
  }
}
@media(max-width: 568px) {
  .lp_spot-list .lp_spot-item {
		width: 100%;
	}
  .lp_spot-list .lp_spot-item:not(:last-child) {
    margin: 0 0 48px;
  }
}
/*********************************
4. Footer
*********************************/
.footer {
  background-color: var(--color-primary);
}
/*-----------------------------
 4.1. Footer top
-----------------------------*/
.footertop {
  padding: 96px 0 58px;
}
.footertop__logo {
  display: flex;
  flex-wrap: nowrap;
  gap: 82px;
  justify-content: 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(max-width: 1199px) {
  .footertop__logo {
    gap: 50px;
  }
}
@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: 30px;
  }
}
@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);
  }
}
/*-----------------------------
 4.2. Footer copyright
-----------------------------*/
.footercopyright {
  padding: .6rem 0;
  font-size: 12px;
  font-weight: 400;
  font-family: var(--font-family--primary);
  color: var(--color-body);
  background-color: var(--color-white);
  letter-spacing: 1.92px;
}
.footercopyright p {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .footercopyright {
    font-size: 11px;
    line-height: 17px;
    letter-spacing: 0.2px;
  }
}

/*********************************
5. Back top
*********************************/
.pageTop a {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 14px;
  bottom: 20px;
  z-index: 10;
  background-color: var(--color-white);
  filter: drop-shadow(0px 3px 10px #3D260440);
}
.pageTop a:hover {
  background-color: var(--color-primary);
}

.pageTop a img {
	width: 12px;
	transform: rotate(-90deg);
}

@media (max-width: 768px) {
	.pageTop a {
    width: 45px;
    height: 45px;
    right: 20px;
	}
}