/*********************************
Variables
*********************************/
:root {
  /* Font */
  --font-family--primary: 'Noto Sans JP' , sans-serif;
  --font-family--secondary: "Montserrat", sans-serif;
  --font-family--headding: 'Noto Serif JP' , sans-serif;

  /* Colors */
  --color-body: #252120;
  --color-primary: #789354;
  --color-secondary: #B4872C;
  --color-tertiary:  #FFE7D7;
	--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: 500;
  line-height: 1.8rem;
  color: var(--color-body); 
  overflow-x: hidden;
}

a {
  color: var(--color-body);
  text-decoration: none;
  transition: all .5s;
}
a:hover,
a:focus {
  color: var(--color-primary);
}

p {
  margin-bottom: 1rem;
}

.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 1rem !important;
}
.mb-2 {
  margin-bottom: 1.5rem !important;
}
.mb-3 {
  margin-bottom: 2rem !important;
}
.mb-4 {
  margin-bottom: 3rem !important;
}

.mt-1 {
  margin-top: .5rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-white {
  color: var(--color-white);
}
.text-decoration {
  text-decoration: underline;
}

img {
  max-width: 100%;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1 {
  font-size: 4rem;
  line-height: 5.5rem;
}
h2 {
  font-size: 2.5rem;
  line-height: 3.5rem;
}
h3 {
  font-size: 2rem;
  line-height: 3rem;
}
h4 {
  font-size: 1.25rem;
  line-height: 2.5rem;
}
h5 {
  font-size: 1.125rem;
  line-height: 2rem;
}
h6 {
  font-size: 1rem;
  line-height: 1.75rem;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family--headding);
  font-weight: 700;
  margin-bottom: 1rem;
}

.w-100 {
  width: 100%;
  max-width: 100%;
}

.section {
  padding: 80px 0 70px;
}

.d-none {
  display: none;
}

@media (max-width: 767px) {
  h3 {
    font-size: 1.625rem;
    line-height: 2.25rem;
  }
  h5 {
    font-size: 1rem;
    line-height: 1.75rem;
  }

  .section {
    padding: 50px 0 50px;
  }
}

/*-----------------------------
  badge
-----------------------------*/
.badge {
  width: 45px;
  height: 35px;
  color: var(--color-secondary);
  display: inline-block;
  font-weight: 700;
  font-family: var(--font-family--secondary);
  text-transform: uppercase;
  border-radius: 20px;
  text-align: center;
  background-color: var(--color-tertiary);
  line-height: 35px;
}

.badge-outline {
  border: 1px solid var(--color-body);
  display: inline-block;
  position: relative;
  padding: 0 8px;
  font-weight: 700;
  border-radius: 8px;
  height: 35px;
  font-size: 14px;
  line-height: 35px;
}
.badge-outline span {
  padding-left: 10px;
  font-size: 12px;
}

@media (max-width: 767px) {
  .badge-outline {
    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 24px;
	}
}
/*-----------------------------
  Button
-----------------------------*/
.btn-button {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-family--primary);
  color: var(--color-white);
  padding: 0 40px;
  display: inline-block;
  min-width: 400px;
  position: relative;
  background-color: var(--color-secondary);
  border-radius: 35px;
  text-align: center;
  height: 45px;
  line-height: 45px;
}

.btn-button:hover {
  color: var(--color-white);
  opacity: 0.7;
}

.btn-outline {
  border: 2px solid var(--color-tertiary);
  display: flex;
  gap: 10px;
  position: relative;
  padding: 13.61px 20px;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 30px;
  text-align: center;
  color: var(--color-tertiary);
  width: 300px;
  justify-content: center;
  align-items: center;
}
.btn-outline:hover {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .btn-button {
    font-size: 16px;
    min-width: 264px;
    width: 100%;
  }
  .btn-outline {
    width: 100%;
  }
  .btn-outline:after {
    bottom: 5px;
  }
}

/*-----------------------------
  icon
-----------------------------*/
.icon-arrow {
  background-image: url("../img/svg/icon_arrow_cricle.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 30px;
  height: 30px;
  display: inline-flex;
}

@media (max-width: 767px) {
  .icon-arrow {
    width: 23px;
    height: 23px;
  }
}

/*-----------------------------
  pc,sp/on_off
-----------------------------*/
.pc {
	display: block;
}

.sp {
	display: none;
}

@media (max-width: 767px) {
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}
}

/*-----------------------------
  Background color
-----------------------------*/
.bg-graylight {
  background-color: #F0F0F0B2;
}
.bg-white {
  background-color: var(--color-white);
}

/*-----------------------------
  lp-cont
-----------------------------*/
.lp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 24px;
  background-color: var(--color-white);
}
.lp-cont.lf {
  padding: 24px;
}
.lp-cont__head {
  margin-bottom: 25px;
}
.lp-cont__head h2,
.lp-cont__head h3 {
  font-weight: bold;
  margin-bottom: 0;
  position: relative;
  display: inline-block;
  z-index: 1;
}
.lp-cont__head h2 {
  text-transform: uppercase;
}
.lp-cont__head h3 span {
  position: relative;
}
.lp-cont__head h2 span:after,
.lp-cont__head h3 span:after {
  position: absolute;
  content: "";
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: var(--color-primary);
  z-index: -2;
}

.lp-cont__head .subhead > span {
  position: relative;
  padding: 0 23px;
  display: inline-block;
}
.lp-cont__head .subhead > span:before,
.lp-cont__head .subhead > span:after {
  position: absolute;
  content: "";
  top: 50%;
  width: 13px;
  height: 18px;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
.lp-cont__head .subhead > span:before {
  left: 0;
  background-image: url(../img/svg/icon_subhead_before.svg);
}
.lp-cont__head .subhead > span:after {
  right: 0;
  background-image: url(../img/svg/icon_subhead_after.svg);
}

.lp-cont__image {
	display: flex;
	flex-wrap: wrap;
}
.lp-cont__image img {
  border-top-right-radius: 24px;
  border-bottom-left-radius: 24px;
  width: 100%;
  transition: all 0.5s ease;
}
.lp-cont__image img:hover {
  opacity: 0.8;
}

.lp-cont__list .lp-cont__list--item:not(:last-child) {
  margin-bottom: 60px;
}

.lp-cont__content--root {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}
.lp-cont__content--root li {
  position: relative;
  padding-left: 36px;
}
.lp-cont__content--root li:before {
  position: absolute;
  content: "";
  width: 26px;
  height: 26px;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center center;
}
.lp-cont__content--root li:nth-last-child(1):before {
  background-image: url(../img/svg/icon_walk.svg);
}
.lp-cont__content--root li:nth-last-child(2):before {
  background-image: url(../img/svg/icon_run.svg);
}

.lp-cont__content--note {
  font-size: 12px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .lp-layout {
    gap: 0;
    grid-template-columns: 1fr;
    border-radius: 16px;
  }
  .lp-layout .lp-cont {
    width: 100%;
  }
  .lp-layout .lp-cont.lf {
    order: 2;
  }
  .lp-layout .lp-cont.rg {
    order: 1;
  }
  .lp-cont__head {
    margin-bottom: 13px;
  }
  .lp-cont__head h2 span:after,
  .lp-cont__head h3 span:after {
    height: 18px;
    bottom: 10px;
  }
  .lp-cont__head h3 span:after {
    bottom: -2px;
  }

  .lp-cont__image {
    max-width: 100%;
  }
  .lp-cont__image:after {
    width: 40px;
    height: 40px;
    right: -14px;
    top: -7px;
    background-size: 22px;
  }

  .lp-cont__content--root {
    gap: 15px;
  }
  .lp-cont__content--root li {
    width: 100%;
  }

  .lp-cont__image img {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-left-radius: 0;
  }
}

/*-----------------------------
  lp-thumb
-----------------------------*/
.lp-thumb {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
}
.lp-thumb > li {
  display: inline-flex;
}
.lp-thumb > li img {
  border-radius: 8px;
}

/*-----------------------------
  lp-step
-----------------------------*/
.lp-step {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 80px;
  position: relative;
  padding-bottom: 220px;
}
.lp-step:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 944px;
  height: 377px;
  background-position: left center;
  background-repeat: no-repeat;
  background-image: url(../img/lp_contents05_before.png);
  z-index: -1;
}
.lp-step .img_box {
  display: flex;
  margin-bottom: 1rem;
}
.lp-step .img_box img {
  border-radius: 8px;
}
.lp-step .text_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 8px;
}

@media (max-width: 767px) {
  .lp-step {
    gap: 32px;
    margin-top: 0;
    padding-bottom: 165px;
  }
  .lp-step:before {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: left bottom;
    background-image: url(../img/lp_contents05_before_sp.png);
  }
  .lp-step > li {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .lp-step > li .img_box {
    order: 2;
    margin-bottom: 0;
  }
  .lp-step > li .text_box {
    order: 1;
  }
}

/*-----------------------------
  lp-cont__slide__wrap
-----------------------------*/
.lp-cont__slide__wrap {
  padding-top: 28px;
  width: 500px;
  position: relative;
}
.lp-cont__slide {
  overflow: hidden;
}
.lp-cont__slide__wrap .img_box img {
  border-radius: 8px;
}
.lp-cont__slide__wrap .swiper-pagination {
  bottom: -25px;
}

@media (max-width: 767px) {
  .lp-cont__slide__wrap {
    width: 100%;
  }
}

/* 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-next:after, .swiper-button-prev:after {
  font-size: 20px;
  color: var(--color-body);
  line-height: 48px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #e6e1d1;
}

.swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: var(--color-white);
  opacity: 1;
  border: 2px solid var(--color-body)
}
.swiper-pagination-bullet-active {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, 
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
}

.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(min-width: 769px) {
  .swiper-nextprev {
    opacity: 0;
    visibility: hidden;
  }
}
@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: var(--color-white);
    left: 0px;
    border-radius: 50%;
    padding: 0;
    transition: 0.3s;
    cursor: pointer;
    border: 2px solid var(--color-primary);
  }

  .swiper-btn-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50px;
    padding: 0 24px 0 16px;
  }
  .swiper-nextprev {
    display: flex;
    gap: 32px;
    height: 50px;
  }
  .lp_contents_slide .swiper-pagination {
    margin-top: 10px;
    text-align: left;
    position: initial;
  }
}

/*********************************
1. Header
*********************************/
.header {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 99;
}

.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;
}
@media(max-width: 991px) {
  .is_open {
    overflow: hidden;
  }
  .header {
    top: 24px;
  }
}
/*-----------------------------
  lp_nav
-----------------------------*/
.lp_nav {
  display: flex;
  justify-content: center;
}
.lp_nav-list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 59px;
  background-color: var(--color-white);
  box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.20);
  padding: 26px 40px;
  border-radius: 50px;
}
.lp_nav-list li {
  position: relative;
  color: var(--color-body);
  font-weight: bold;
  font-family: var(--font-family--primary);
  cursor: pointer;
}
.lp_nav-list li:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: 10px;
  left: -35px;
  background-color: var(--color-primary);
  transform: rotate(-45deg);
}
.lp_nav-list li:first-child:after {
  content: none;
}
.lp_nav-list li.active,
.lp_nav-list li:hover {
  color: var(--color-primary);
}

@media (max-width: 991px) {
  .lp_nav {
    background-color: transparent;
    border: none;
    padding: 0;
    justify-content: end;
  }
}

.is_open {
  overflow: hidden;
}
.is_open .lp_nav-list {
  opacity: 1;
  transform: translatex(0);
  -webkit-transform: translatex(0);
  visibility: visible;
  border-radius: 0;
}

.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(2) {
  position: absolute;
  content: "";
  top: 50%
}
.is_open .btn__nav--bar>.bar:nth-child(1) {
  transform: rotate(45deg) translatey(-50%);
}
.is_open .btn__nav--bar>.bar:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.is_open .btn__nav--bar>.bar:nth-child(3) {
  transform: rotate(-45deg) translatey(-50%);
}

.btn__nav {
  display: none;
}

@media (max-width: 991px) {
  .lp_nav-list {
    position: fixed;
    content: "";
    top: 0;
    right: 0;
    width: 255px;
    height: 100%;
    padding: 75px 30px 25px 50px;
    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;
    gap: 25px;
  }
  .lp_nav-list li:first-child:after {
    content: "";
  }
  .lp_nav-list li:after {
    left: -22px;
  }
  .lp_nav-list > .lp_nav-item {
    display: block;
    width: 100%;
    color: var(--color-body);
  }

  .btn__nav {
    width: 50px;
    height: 50px;
    background-color: var(--color-white);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 101;
  }
  .btn__nav--bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 30px;
    position: relative;
    justify-content: center;
  }
  
  .bar {
    width: 100%;
    height: 1px;
    background-color: var(--color-body);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .btn__nav--bar .bar:nth-child(2) {
    width: 24px;
    transition: none;
  }
}

/*********************************
2. Main
*********************************/
.main {
  overflow-x: hidden;
}

.lp_contents_head {
  text-align: center;
  margin-bottom: 40px;
}
.lp_contents_head h4 {
  margin-bottom: 0;
  color: var(--color-primary);
}
.lp_contents_head .head_time {
  font-weight: bold;
}
.lp_contents_head .head_time .span_note {
  font-weight: 400;
  display: block;
  font-size: 15px;
}

.lp_contents_slide > ul > li {
  max-width: 1080px;
  margin: 0 auto;
}

.lp-cont__title--sub {
  font-weight: bold;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.lp-cont__title--sub > span {
  margin-right: 8px;
  white-space: pre;
}
.lp-cont__title h3 {
  color: var(--color-secondary);
  line-height: 56px;
  margin-bottom: 0;
  text-transform: uppercase;
}
.lp-cont__title--date {
  color: var(--color-secondary);
  margin-bottom: 0;
}

.lp-cont__content > li {
  border-bottom: 2px dashed var(--color-primary);
  padding: 16px 0;
}
.lp-cont__content > li p {
  margin-bottom: 0;
}
.lp-cont__content > li p.info_time {
  margin-bottom: 16px;
  display: flex;
  gap: 15px;
}
.lp-cont__content > li p.info_time span {
  font-size: 20px;
  color: var(--color-secondary);
  font-weight: 400;
  white-space: pre;
  font-family: var(--font-family--headding);
}
.lp-cont__content > li p.info_fee {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  letter-spacing: -0.5px;
}
.lp-cont__content--info > .badge {
  margin-bottom: 11px;
}
.lp-cont__content .lp-cont__content--link {
  border-bottom: none;
}
.lp-cont__content .lp-cont__content--link a {
  margin-top: 24px;
}
.lp-cont__content .lp-cont__content--link p.note {
  font-size: 14px;
  font-weight: 400;
}

.lp_contents_slide {
  position: relative;
  padding-bottom: 60px;
  transition: height 0.4s ease;
}

@media(min-width: 768px) and (max-width: 1024px) {
  .lp_contents_slide > ul > li {
    padding: 0 24px;
  }
}
@media(max-width: 991px) {
  .lp-cont__title h3 {
    line-height: 44px;
  }
  .lp-cont__content > li {
    padding: 10px 0;
  }
  .lp-cont__content > li p.info_time {
    margin-bottom: 8px;
  }
  .lp-cont__content > li p.info_fee {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .lp_contents_slide {
    padding-bottom: 0;
    padding-top: 66px;
  }
}
/*-----------------------------
  2.1. Layout 01
-----------------------------*/
#lp_contents01 {
  position: relative;
  padding: 0;
}
.lp_contents01_center {
  background-image: url("../img/bg_contents01.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  padding-bottom: 80px;
  position: relative;
}
.lp_contents01_center::before {
  position: absolute;
  content: "";
  left: 10%;
  top: 12%;
  width: 450px;
  height: 408px;
  background-image: url("../img/map_mark.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.lp_contents01_top {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 2;
}
.lp_contents01_caption {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 3;
  width: 924px;
  margin: 0 auto;
  text-align: center;
  color: var(--color-white);
  
}
.lp_contents01_caption:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  background-image: url("../img/bg_slide_mark.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 775px;
  width: 886px;
}

.lp_contents01_caption h1, 
.lp_contents01_caption h2 {
  font-family: var(--font-yu-mincho);
}
.lp_contents01_caption h1 {
  font-size: 104px;
  margin-bottom: 40px;
}
.lp_contents01_caption h2 {
  font-size: 64px;
  margin-bottom: 40px;
}

.lp_contents01_center {
  padding-top: 110px;
}
.lp_contents01_center_head {
  max-width: 930px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 102px;
  position: relative;
}
.lp_contents01_center_head h3 {
  margin-bottom: 40px;
}
.lp_contents01_center_head > p {
  text-align: left;
}

.lp_contents01_center_box {
  border: 1px solid var(--color-body);
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.50);
  padding: 40px;
}
.lp_contents01_center_box h4 {
  font-family: var(--font-family--primary);
  margin-bottom: 8px;
}
.lp_contents01_center_box .box_time {
  margin: 24px 0;
}
.lp_contents01_center_box .box_des {
  margin-bottom: 24px;
}
.lp_contents01_center_box .box_image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lp_contents01_center_box .box_image img {
  transition: all 0.5s ease;
  width: 100%;
  border-radius: 8px;
}
.lp_contents01_center_box .box_image img:hover {
  opacity: .8;
}

.lp_contents01_slide picture {
  display: flex;
}

.box_item {
  display: grid;
  grid-template-columns: 1fr 0.4fr;
  gap: 57px;
  align-items: end;
}
.box_item-rg p {
  margin-bottom: 0;
  text-align: center;
}
.lp_contents01_center_box .box_item:nth-child(2) {
  margin-top: 50px;
  align-items: start;
}

.menu-list {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: 100px;
}
.menu-list_lf {
  margin-top: 30px;
}
.menu-list_lf > li {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  margin-bottom: 10px;
  gap: 15px;
}
.menu-list_lf > li:last-child {
  margin-bottom: 0;
}
.menu-list_lf > li > .span-price {
  text-align: right;
}
.box_item-rg {text-align: center;}

@media (max-width: 1440px) {
  .lp_contents01_center:before {
    left: 5%;
  }
  .lp_contents01_caption:before {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .lp_contents01_center_box .box_image {
    grid-template-columns: 1fr;
  }
  .lp_contents01_center {
    background-size: cover;
  }
  .lp_contents01_center {
    padding-top: 80px;
    padding-bottom: 50px;
  }
  .lp_contents01_center_head {
    margin-bottom: 40px;
  }

  .lp_contents01_caption {
    width: 100%;
  }
  .lp_contents01_caption:before {
    width: 308px;
    height: 302px;
    margin: 0 auto;
  }
  .lp_contents01_caption h1 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 10px;
  }
  .lp_contents01_caption h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 10px;
  }
  .lp_contents01_caption img {
    width: 55%;
  }
  .lp_contents01_center {
    background-position: center;
  }
  .lp_contents01_center:before {
    content: none;
  }
  
  .lp_contents01_center_box {
    padding: 18px;
  }
  .menu-list,
  .box_item {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .box_item-lf h4 {
    font-size: 18px;
    line-height: 30px;
  }
  .menu-list-rg {text-align: center;}
}

/*-----------------------------
 2.2. Layout 02
-----------------------------*/
.lp_contents02,
.lp_contents04 {
  background-image: url('../img/bg_contents02.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/*-----------------------------
 2.3. Layout 03 
-----------------------------*/
.lp_contents03 {
  background-image: url('../img/bg_contents03.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/*-----------------------------
 2.4. Layout 04
-----------------------------*/

/*********************************
3. Footer
*********************************/
/*-----------------------------
 3.1. Footer top
-----------------------------*/
.footertop {
  padding: 80px 0 40px;
  background-image: url('../img/bg-footer.jpg');
  background-repeat: no-repeat;
  background-position: center center;
}

.footertop__logo {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: center;
  margin: 80px 0 74px;
}
.footertop__logo a:hover img {
  opacity: 0.8;
}

.footertop__link ul {
  display: grid;
  gap: 25px;
  grid-template-columns: 1fr 1fr;
}
.footertop__link ul > li {
  width: 100%;
}

.footertop__link ul > li a {
  display: block;
  border: 3px solid var(--color-white);
  border-radius: 16px;
  padding: 23px 70px 23px 155px;
  font-size: 1.25rem;
  font-weight: bold;
  background-position: 40px center;
  background-repeat: no-repeat;
  position: relative;
  height: 126px;
  color: var(--color-white);
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
  font-size: 20px;
}
.footertop__link ul > li.instagram a {
  background-image: url(../img/svg/icon_instagram_large.svg);
}
.footertop__link ul > li.line a {
  background-image: url(../img/svg/icon_line_large.svg);
}
.footertop__link ul > li a:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 40px;
  width: 9px;
  height: 18px;
  transform: translateY(-50%);
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/svg/icon_arrow_green.svg);
}
.footertop__link ul > li a:hover {
  opacity: 0.7;
}
.footertop__link ul > li a span {
  font-size: 14px;
  display: block;
}

.footertop_linkhotel {
  display: flex;
  justify-content: center;
}
.footertop_linkhotel > li {
  border-width: 0 1px 0 1px;
  border-style: solid;
  border-color: var(--color-white);
  padding: 0 20px;
  line-height: 22px;
}
.footertop_linkhotel > li a {
  color: var(--color-white);
}

.footertop_note {
  color: var(--color-white);
  margin-bottom: 80px;
}

@media (max-width: 767px) {
  .footertop {
    padding: 60px 0 30px;
    background-size: cover;
  }
  .footertop__logo {
    margin: 20px 0;
  }
  .footertop__logo,
  .footertop__logo a {
    display: block;
  }
  .footertop__logo > a:nth-last-child(2) {
    margin-bottom: 10px;
  }
  .footertop__logo img  {
    width: 176px;
  }

  .footertop__link {
    margin-bottom: 30px;
  }
  .footertop__link ul {
    gap: 16px;
    grid-template-columns: 1fr;
  }
  .footertop__link ul > li a {
    font-size: 1rem;
    padding: 13px 23px 13px 85px;
    background-position: 15px center;
    background-size: 50px;
    height: 87px;
  }
  .footertop__link ul > li a:after {
    content: none;
  }
  .footertop__link ul > li a span {
    font-size: 12px;
  }
  .footertop__link ul > li.bar:nth-child(1) {
    order: 1;
  }
  .footertop__link ul > li.bar:nth-child(2) {
    order: 4;
  }
  .footertop__link ul > li.bar:nth-child(3) {
    order: 2;
  }
  .footertop__link ul > li.bar:nth-child(4) {
    order: 5;
  }
  .footertop__link ul > li.bar:nth-child(5) {
    order: 3;
  }
}

/*-----------------------------
 3.2. Footer copyright
-----------------------------*/
.footercopyright {
  color: var(--color-white);
  padding: .61rem 0;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-family--secondary);
  background-color: var(--color-secondary);
}

@media (max-width: 767px) {
  .footercopyright {
    font-size: 11px;
    line-height: 17px;
  }
}

/*********************************
4. Back top
*********************************/
.pageTop a {
  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-white);
  filter: drop-shadow(0px 3px 1px #3D260440);
}

.pageTop a img {
	width: 15px;
	transform: rotate(-90deg);
}

@media (max-width: 768px) {
	.pageTop a {
    width: 50px;
    height: 50px;
	}
}