/*************************************************************************
[Master Stylesheet]
  Description 	: Sanyoso spring stay
  Author      	: TFO
  Version     	: 1.0
  Created     	: 2025/02/27

[Table of contents]
  1. Header
    1.1. Nav menu
  2. Main
    2.1. Layout 01 - Slideshow
    2.2. Layout 02 - Intro
    2.3. Layout 03 - Start
    2.4. Layout 04 - 箱根セラピーロード
  3. Footer
    3.1. Footer top
    3.3. Footer copyright
  4. Back top

[Color codes]
  Background  : #ffffff
  Content     : #443B38
  Header      : #443B38
  Footer      : #443B38

  a (standard): #443B38
  a (visited) : #FE9CA0
  a (active)  : #FE9CA0

[Typography]
  Body        : 1rem/1.8rem 'Noto Sans JP' , sans-serif
  Headding    : 'Noto Serif JP' , sans-serif

*************************************************************************/

/*********************************
Variables
*********************************/
:root {
  /* Font */
  --font-family--primary: 'Noto Sans JP' , sans-serif;
  --font-family--secondary: 'Noto Sans JP', sans-serif;
  --font-family--headding: 'Noto Serif JP' , sans-serif;

  /* Colors */
  --color-body: #443B38;
  --color-primary: #FE9CA0;
  --color-secondary: #2998E2;
  --color-tertiary: #F1DFDC;
	--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: 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;
}

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.5rem;
  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%;
}

.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 24px;
	}
}

.container-lg {
  margin: 0 auto;
	width: 100%;
	max-width: 1700px;
}
@media (max-width: 768px) {
	.container-lg {
		padding: 0 24px;
	}
}
/*-----------------------------
  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: 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: 20px 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;
	}
}

/*-----------------------------
  lp-cont
-----------------------------*/
.lp-layout {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 120px;
}
.lp-layout:last-child {
  margin-bottom: 0;
}
.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__title h4 {
  margin-bottom: 1.5rem;
  line-height: 3rem;
}
.lp-cont__image {
	display: flex;
	flex-wrap: wrap;
  transition: all ease .3s;
}
.lp-cont__image:hover {
  opacity: 0.8;
}

.lp-cont__content .lp-cont__content--text {
  margin-bottom: 25px;
}

.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;
}

.lp-cont__content--link {
  margin-top: 60px;
}

@media (max-width: 767px) {
  .lp-layout {
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 64px;
  }
  .lp-layout .lp-cont {
    width: 100%;
  }
  .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__title h4 {
    line-height: 2.3rem;
    margin-bottom: 20px;
  }
  .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__content--link {
    margin-top: 30px;
  }
}

/*-----------------------------
  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-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: 9;
  background-image: url("../img/bg-header.png");
  background-position: top center;
  background-repeat: repeat-x;
  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;
    /* color: var(--color-white); */
  }
  .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;
    /* background-color: var(--color-body); */
    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
*********************************/
.main {
  overflow-x: hidden;
}
/*-----------------------------
  3.1. Layout 01
-----------------------------*/
#lp_contents01 {
  padding: 170px 0 0;
}
.lp_intro {
  padding-bottom: 170px;
  position: relative;
}
.lp_intro:after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 526px;
  height: 237px;
  background-image: url("../img/bg_lp_content01.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.lp_intro h3 {
  margin-bottom: 3.75rem;
}

.lp_info {
  padding: 25px 24px;
  background-image: url("../img/bg_lp_info.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: fixed;
}
.lp_info-inner {
  max-width: 600px;
  margin: 0 auto;
  background-color: #ffffffe8;
  border-radius: 8px;
  padding: 80px 15px 60px;
}
.lp_info-inner h4 {
  margin: 16px 0;
}
.lp_info-inner p {
  line-height: 32px;
  margin-bottom: 0;
}

@media(max-width: 767px) {
  #lp_contents01 {
    padding: 80px 0 0;
  } 
  .lp_intro {
    padding-bottom: 95px;
  }
  .lp_intro:after {
    width: 211px;
    height: 95px;
  }
  .lp_intro h3 {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 2.125rem;
  }
  .lp_info {
    padding: 64px 24px;
  }
  .lp_info-inner {
    padding: 24px 20px 32px;
  }
  .lp_intro h4 {
    font-size: 1rem;
    margin: 25px 0 0;
  }
}
/*-----------------------------
 2.2. Layout 02
-----------------------------*/
#lp_contents02 {
  padding: 170px 0 0;
}
#lp_contents02 h3 {
  margin-bottom: 100px;
}
#lp_contents02 .lp_inner {
  background-color: var(--color-white);
  padding: 64px 0 80px;
  position: relative;
}
#lp_contents02 .lp_inner::before,
#lp_contents02 .lp_inner::after {
  position: absolute;
  content: "";
  width: 938px;
  height: 227px;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
#lp_contents02 .lp_inner::before {
  background-image: url("../img/lp_contents02_before.png");
  background-position: top left;
  top: 0;
  left: 0;
}
#lp_contents02 .lp_inner::after {
  background-image: url("../img/lp_contents02_after.png");
  background-position: bottom right;
  bottom: 0;
  right: 0;
}
#lp_contents02 .lp_inner .container {
  z-index: 2;
  position: relative;
}
#lp_contents02 .lp-layout:first-child .rg .lp-cont__image {
  margin-top: -120px;
}
#lp_contents02 .lp-layout:nth-child(2) {
  gap: 37px;
  justify-content: flex-start;
  align-items: end;
}

@media(max-width: 1199px) {
  #lp_contents02 {padding: 120px 0 0;}
}
@media(max-width: 991px) {
  #lp_contents02 .lp_inner::before, #lp_contents02 .lp_inner::after {
    width: 375px;
    height: 91px;
  }
}
@media(max-width: 767px) {
  #lp_contents02 {
    padding: 120px 0 0;
  }
  #lp_contents02 h3 {
    margin-bottom: 24px;
  }
  #lp_contents02 .lp-layout:nth-child(2) .lf {
    order: 2;
  }
  #lp_contents02 .lp-layout:nth-child(2) .rg {
    order: 1;
  }
  #lp_contents02 .lp-layout:first-child .rg .lp-cont__image {
    margin-top: 0;
  }
  #lp_contents02 .lp-layout .lp-cont__image img {
    width: 100%;
  }
  #lp_contents02 .lp_inner {
    padding-bottom: 120px;
  }
}
/*-----------------------------
 2.3. Layout 03 
-----------------------------*/
#lp_contents03 {
  padding: 100px 0 0;
  background-image: url("../img/bg_lp_content03.jpg");
  background-position: top center;
  background-repeat: repeat-y;
  background-color: transparent;
}
#lp_contents03 h3 {
  margin-bottom: 40px;
}
#lp_contents03 .lp-layout {
  margin-bottom: 80px;
}
#lp_contents03 .lp-layout:last-child {
  margin-bottom: 0;
}
#lp_contents03 .lp-layout:nth-child(1) {
  margin-left: 21.6%;
}
#lp_contents03 .lp-layout:nth-child(2) {
  margin-right: 21.6%;
  gap: 32px;
  justify-content: flex-start;
}

@media(min-width: 1360px) and (max-width: 1500px) {
  #lp_contents03 .lp-layout:nth-child(1) {
    margin-left: 10%;
  }
  #lp_contents03 .lp-layout:nth-child(1) .lf {
    width: 40%;
  }
  #lp_contents03 .lp-layout:nth-child(2) {
    margin-right: 10%;
  }
  #lp_contents03 .lp-layout:nth-child(2) .rg {
    width: 60%;
  }
}
@media(max-width: 1299px) {
  #lp_contents03 .lp-layout {gap: 30px;}
  #lp_contents03 .lp-layout:nth-child(1) {
    margin-left: 25px;
  }
  #lp_contents03 .lp-layout:nth-child(2) {
    margin-right: 25px;
  }
}
@media(min-width: 768px) and (max-width: 1199px) {
  #lp_contents03 .lp-layout:nth-child(1) .rg,
  #lp_contents03 .lp-layout:nth-child(2) .lf {
    width: 50%;
  }
}
@media(max-width: 767px) {
  #lp_contents03 {
    padding: 56px 0 0;
  }
  #lp_contents03 .lp-layout {
    gap: 32px;
    margin-bottom: 60px;
    padding: 0 24px
  }
  #lp_contents03 .lp-layout:nth-child(1) {
    margin-left: 0;
  }
  /* #lp_contents03 .lp-layout:nth-child(1) .lf,
  #lp_contents03 .lp-layout:nth-child(2) .rg {
    margin: 0 24px;
  } */
  #lp_contents03 .lp-layout:nth-child(2) {
    margin-right: 0;
  }
  #lp_contents03 .lp-layout:nth-child(2) .lf {
    order: 2;
  }
  #lp_contents03 .lp-layout:nth-child(2) .rg {
    order: 1;
  }
}
/*-----------------------------
 2.4. Layout 04
-----------------------------*/
#lp_contents04 {
  height: 160px;
}
.lp_contents04 {
  padding: 3px 0 0;
  background-color: var(--color-white);
}
.lp_contents04 .lp-layout_title {
  background-color: var(--color-white);
  text-align: center;
  padding: 54px 0;
  position: relative;
  border-top: 1px solid #927c3be3;
}
.lp_contents04 .lp-layout_title::before,
.lp_contents04 .lp-layout_title::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: 0 auto;
}
.lp_contents04 .lp-layout_title::before {
  background-color: var(--color-white);
  width: 120px;
  height: 20px;
  top: -1px;
  z-index: 1;
}
.lp_contents04 .lp-layout_title::after {
  background-image: url("../img/svg/icon_bow.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 45px;
  height: 26px;
  top: -11px;
  z-index: 2;
}
.lp_contents04 .lp-layout_title h3 {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  z-index: 1;
  background: white;
  max-width: 350px;
  height: 100%;
  padding-top: 40px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  z-index: 2;
}
.lp_contents04 .lp-layout_title h3 span {
  writing-mode: vertical-rl;
  letter-spacing: 5px;
}
.lp_contents04 .lp-layout_title h3 span:nth-child(1) {
  padding-top: 60px;
}
.lp_contents04 .lp-layout_title h3 span:nth-child(2) {
  padding-top: 30px;
}
.lp_contents04 .lp-layout_thumb {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
}
.lp_contents04 .lp-layout_thumb ul {
  display: flex;
  flex-wrap: nowrap;
  transition-timing-function : linear;
}
.lp_contents04 .lp-layout_thumb ul > li img {
  border-radius: 100%;
}

.lp_contents04 .lp_inner {
  background-image: url("../img/bg_lp_content04.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-color: transparent;
  padding: 120px 0 64px;
  background-color: #ebdbd8;
}
.lp_contents04 .lp-layout {
  margin-bottom: 80px;
  position: relative;
}
.lp_contents04 .lp-layout::before {
  position: absolute;
  content: "";
  width: 96.3%;
  height: 100%;
  top: 0;
  background-color: white;
  z-index: 1;
  border-radius: 8px;
}
.lp_contents04 .lp-layout {
  gap: 26px;
}
.lp_contents04 .lp-layout:nth-child(1) {
  padding: 32px 0 32px 32px;
}
.lp_contents04 .lp-layout:nth-child(1)::before {
  left: 0;
}
.lp_contents04 .lp-layout:nth-child(2) {
  padding: 32px 32px 32px 0;
  justify-content: flex-start;
}
.lp_contents04 .lp-layout:nth-child(2)::before {
  right: 0;
}
.lp_contents04 .lp-layout h4 {
  margin-bottom: 1.5rem;
}
.lp_contents04 .lp-layout .lp-cont {
  position: relative;
  z-index: 2;
}
.lp_contents04 .lp-layout:last-child {
  margin-bottom: 0;
}
.lp_contents04 .lp-layout .lp-cont__image {
  margin-top: -72px;
}
.lp_contents04 .lp_note {
  text-align: center;
  margin-top: 68px;
}

@media(max-width: 1200px) {
  .lp_contents04 .lp-layout_title h3 {
    max-width: 300px;
  }
}
@media(max-width: 768px) {
  #lp_contents04 {
    height: 64px;
  }
  .lp_contents04 .lp-layout_title h3 {
    font-size: 18px;
  }
}
@media(max-width: 767px) {
  .lp_contents04 .lp-layout_title {
    padding: 0 0 10px;
  }
  .lp_contents04 .lp-layout_title h3 {
    height: 220px;
    width: 180px;
    gap: 10px;
    padding-top: 15px;
  }
  .lp_contents04 .lp-layout_thumb {
    margin-top: 240px;
  }
  .lp_contents04 .lp-layout_thumb ul,
  .lp_contents04 .lp-layout_thumb {
    gap: 16px;
  }
  .lp_contents04 .lp_inner {
    padding: 80px 0 40px;
  }
  .lp_contents04 .lp-layout:nth-child(1),
  .lp_contents04 .lp-layout:nth-child(2) {
    padding: 24px 16px;
  }
  .lp_contents04 .lp-layout .lp-cont__image {
    margin-top: 0;
  }
  .lp_contents04 .lp-layout .lp-cont__image img {
    width: 100%;
  }
  .lp_contents04 .lp-layout:nth-child(2) {
    gap: 20px;
  }
  .lp_contents04 .lp-layout {
    margin-bottom: 40px;
  }
  .lp_contents04 .lp-layout::before {
    width: 100%;
    border-radius: 8px;
  }
  .lp_contents04 .lp-layout h4 {
    margin-bottom: 1rem;
  }
  .lp_contents04 .lp-layout:nth-child(2) .lf {
    order: 2;
  }
  .lp_contents04 .lp-layout:nth-child(2) .rg {
    order: 1;
  }
  .lp_contents04 .lp-layout .lp-cont__content {
    padding-bottom: 12px;
  }
  .lp_contents04 .lp_note {
    font-size: .9rem;
  }
}
/*-----------------------------
 3.5. Layout 05
-----------------------------*/
#lp_contents05 {
  padding: 150px 0 50px;
}
#lp_contents05 .lp_note {
  max-width: 350px;
  margin: 0 auto;
}
@media(max-width: 767px) {
  #lp_contents05 {
    padding: 120px 0 32px;
  }
  #lp_contents05 .lp_note {
    font-size: .9rem;
  }
}
/*********************************
4. Footer
*********************************/
/*-----------------------------
 4.1. Footer top
-----------------------------*/
.s__footertop {
  padding: 30px 0;
  background-color: var(--color-white);
}
.footertop > ul {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  align-items: center;
}
.footertop > ul li.instagram a {
  width: 30px;
  height: 30px;
  display: block;
  background-image: url("../img/svg/icon_instagram.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.footertop > ul > li.address {
  font-size: 12px;
  line-height: 21px;
}

@media (max-width: 767px) {
  .footertop > ul {
    gap: 8px;
    flex-wrap: wrap;
  }
  .footertop > ul > li.logo {
    width: 100%;
  }
  .footertop > ul > li.logo a {
    display: flex;
  }
  .footertop > ul > li.address {
    padding-right: 20px;
  }
}

/*-----------------------------
 4.2. Footer copyright
-----------------------------*/
.s__footercopyright {
  padding: .6rem 0;
  font-size: 12px;
  font-weight: 400;
  font-family: var(--font-family--secondary);
  background-color: #443B38;
  color: var(--color-white);
}
.s__footercopyright p {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .s__footercopyright {
    font-size: 11px;
    line-height: 17px;
  }
}

/*********************************
5. 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 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: 50px;
    height: 50px;
	}
}