/*********************************
Variables
*********************************/
:root {
  /* Font */
  --font-family--primary: 'Noto Sans JP' , sans-serif;
  --font-family--secondary: "Shippori Mincho", serif;
  --font-family--headding: 'Noto Serif JP' , sans-serif;

  /* Colors */
  --color-body: #000000;
  --color-primary: #A07506;
  --color-secondary: #774230;
  --color-tertiary: #222222;
	--color-white: #ffffff;
}

/*********************************
Common
*********************************/
* { 
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
  
body {
  font-family: var(--font-family--primary);
  font-size: 1rem;
  font-weight: 400;
  line-height: 2rem;
  color: var(--color-body);
  overflow-x: hidden;
  background-color: var(--color-body);
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: all .5s;
}
a:hover {
  text-decoration: underline;
}

p {
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1 {
  font-size: 4rem; /* 64px */
  line-height: 5.5rem;
}
h2 {
  font-size: 2.5rem; /* 40px */
  line-height: 3.5rem;
}
h3 {
  font-size: 2rem; /* 32px */
  line-height: 3rem;
}
h4 {
  font-size: 1.5rem; /* 24px */
  line-height: 2.5rem;
}
h5 {
  font-size: 1.125rem; /* 18px */
  line-height: 2rem;
}
h6 {
  font-size: 1rem; /* 16px */
  line-height: 1.75rem;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family--headding);
  font-weight: 500;
  margin-bottom: 1rem;
}

.w-100 {
  width: 100%;
  max-width: 100%;
}

.text-center {
  text-align: center;
}
.mb-0 {
  margin-bottom: 0;
}

.section {
  padding: 80px 0;
}

@media (max-width: 767px) {
  h2 {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
  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;
  }
}

/*-----------------------------
  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--headding);
  color: var(--color-body);
  padding: 13px 50px;
  display: inline-block;
  min-width: 320px;
  position: relative;
  background-color: var(--color-white);
  text-align: center;
  position: relative;
  z-index: 1;
}
.btn-button:after {
  position: absolute;
  content: '';
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 20px;
  height: 20px;
  background-image: url(../img/svg/icon_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
}
.btn-button::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-button:hover {
  text-decoration: none;
  color: var(--color-white);
}
.btn-button:hover:before {
  width: 100%;
}
.btn-button:hover:after {
  background-image: url(../img/svg/icon_arrow_white.svg);
}

@media (max-width: 767px) {
  .btn-button {
    font-size: 16px;
    min-width: 264px;
    padding: 20px 15px;
  }
}

/*-----------------------------
  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;
	}
}

/*-----------------------------
  titleline
-----------------------------*/
.titleline {
  position: relative;
  padding-bottom: 24px;
  margin-bottom: 30px;
}
.titleline:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  width: 80px;
  height: 2px;
  background-color: var(--color-primary);
  margin: 0 auto;
}

.boldline {
  height: 6px;
  width: 100%;
  background-color: var(--color-primary);
}

/*-----------------------------
  Grid
-----------------------------*/
.grid {
  display: grid;
  grid-template-columns: 1fr 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: 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 {
  background-color: var(--color-white);
}
.header_logo {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  height: 100px;
}
.header_logo > a {
  display: inline-block;
}

@media(max-width: 768px) {
  .header_logo {
    height: 58px;
  }
  .header_logo > a > img {
    width: 150px;
  }
}

/*********************************
2. Lp mainvisual slideshow
*********************************/
.lp-mvisual_inner {
  position: relative;
  overflow: hidden;
}
.mvisual_slide {
  position: relative;
  opacity: 0;
  transform: scale(1.01);
  animation: fadeSlide 1.2s ease-out forwards;
  animation-delay: 0.2s;
}
@keyframes fadeSlide {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.mvisual_slide:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(41, 40, 32, 0.4);
  z-index: 2;
}
.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: grid;
  grid-template-columns: 1fr 1fr;
}
.mvisual_slide picture {
  display: flex;
  width: 100%;
}
.mvisual_caption {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  margin: 0 auto;
  color: var(--color-white);

  opacity: 0;
  transform: translateY(0);
  animation: fadeCaption 1s ease-out forwards;
  animation-delay: 2s;
}
@keyframes fadeCaption {
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}
.mvisual_caption h2,
.mvisual_caption h3 {
  font-family: var(--font-family--secondary);
  line-height: normal;
  margin-bottom: 0;
}
.mvisual_caption h3 {
  font-size: 30px;
  line-height: normal;
}
.mvisual_caption h2 {
  letter-spacing: 1.6px;
}

@media(max-width: 991px) {
  .mvisual_slide .swiper-pagination {
    bottom: 10px;
  }
  .mvisual_slide .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
  }
  .mvisual_caption img {
    width: 327px;
    height: 329px;
  }
}
@media(max-width: 767px) {
  .mvisual_caption h3 {
    font-size: 18px;
  }
  .mvisual_caption h2 {
    font-size: 24px;
  }
}
@media(max-width: 375px) {
  .mvisual_slide img {
    object-fit: cover;
    height: 142px;
  }
}
/*********************************
3. Main
*********************************/
.main {
  overflow: hidden;
}
/*-----------------------------
  3.1. Layout 01
-----------------------------*/
#lp_contents01 {
  padding: 100px 0;
  color: var(--color-white);
  background-color: var(--color-body);
}
#lp_contents01 p {
  font-family: var(--font-family--secondary);
  line-height: 32px;
  letter-spacing: 0.64px;
  margin-bottom: 30px;
}
#lp_contents01 p.note {
  text-align: right;
  margin-bottom: 0;
}
.lp-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}
.lp-intro_content {
  border-width: 1px 0 1px 0;
  border-style: solid;
  border-color: var(--color-primary);
  padding: 31px 0;
}

@media(max-width: 767px) {
  #lp_contents01 p {
    font-size: 14px;
    letter-spacing: 0;
  }
}
@media(max-width: 390px) {
  #lp_contents01 h2 {
    font-size: 22px;
  }
  #lp_contents01 p {
    font-size: 12px;
    letter-spacing: 0;
  }
}
/*-----------------------------
 2.2. Layout 02
-----------------------------*/
#lp_contents02 {
  padding: 0;
}

@media(max-width: 767px) {
  
}
/*-----------------------------
 2.3. Layout 03 
-----------------------------*/
#lp_contents03 {
  padding: 0;
  color: var(--color-white);
  background-image: url("../img/bg_lp_contents03.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
#lp_contents03::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0; 
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
#lp_contents03 .lp_inner {
  position: relative;
  padding: 88px 0 165px;
  z-index: 2;
}
#lp_contents03 .lp_inner::before,
#lp_contents03 .lp_inner::after {
  position: absolute;
  content: "";
  width: 938px;
  height: 198px;
  background-repeat: no-repeat;
  background-size: contain;
}
#lp_contents03 .lp_inner::before {
  background-image: url("../img/lp_contents03_before.png");
  background-position: top left;
  top: 0;
  left: 0;
}
#lp_contents03 .lp_inner::after {
  background-image: url("../img/lp_contents03_after.png");
  background-position: bottom right;
  bottom: 0;
  right: 0;
}

#lp_contents03 .lp_contents {
  position: relative;
  z-index: 3;
}
#lp_contents03 .lp_contents h3 {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: center;
  align-items: end;
  align-items: baseline;
  margin-bottom: 79px;
}
#lp_contents03 .lp_contents h3 span {
  font-size: 24px;
}
#lp_contents03 .lp_content {
  grid-template-columns: 0.8fr 1fr;
  gap: 64px;
}
#lp_contents03 .lp_content-lf-box {
  padding: 64px 32px;
  background: linear-gradient(270deg, rgba(36, 45, 74, 0.00) 0%, #774230 100%);
  border-width: 2px 0 2px 0;
  border-style: solid;
  border-color: var(--color-primary);
  position: relative;
}
#lp_contents03 .lp_content-lf {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  align-content: baseline;
}
#lp_contents03 .lp_content-lf .content-txt01 {
  line-height: 32px;
  font-family: var(--font-family--headding);
  margin-bottom: 32px;
}
#lp_contents03 .lp_content-lf .content-txt02 {
  font-family: var(--font-family--secondary);
}

@media(max-width: 1199px) {
  #lp_contents03 .lp_inner::before, #lp_contents03 .lp_inner::after {
    width: 375px;
    height: 91px;
  }
}
@media(max-width: 767px) {
  #lp_contents03 .lp_inner {
    padding: 78px 0 140px;
  }
  #lp_contents03 .lp_inner::before, 
  #lp_contents03 .lp_inner::after {
    width: 214px;
    height: 78px;
  }
  #lp_contents03 .lp_inner::before {
    background-image: url("../img/lp_contents03_before_sp.png");
  }
  #lp_contents03 .lp_inner::after {
    background-image: url("../img/lp_contents03_after_sp.png");
  }
  #lp_contents03 .lp_contents h3 {
    margin-bottom: 32px;
  }
  #lp_contents03 .lp_content.grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  #lp_contents03 .lp_content.grid .lp_content-lf {
    order: 2;
  }
  #lp_contents03 .lp_content.grid .lp_content-rg {
    order: 1;
  }
  #lp_contents03 .lp_content-lf-box {
    background: linear-gradient(0deg, rgba(36, 45, 74, 0.00) 0%, #774230 100%);
  }
  #lp_contents03 .lp_content-lf .content-txt02 {
    font-size: 14px;
  }
  #lp_contents03 .lp_content-lf-box {
    padding: 60px 25px;
  }
}
@media(max-width: 480px) {
  #lp_contents03 .lp_content-lf .content-txt02 {
    font-size: 12px;
  }
}
/*-----------------------------
 2.4. Layout 04
-----------------------------*/
#lp_contents04 {
  background-color: #000000;
  color: var(--color-white);
}
#lp_contents04 .lp_note {
  max-width: 520px;
  margin: 0 auto 60px;
}
#lp_contents04 .btn-button {
  font-size: 24px;
}

@media(max-width: 767px) {
  #lp_contents04 .lp_note {
    font-size: 14px;
    margin-bottom: 32px;
  }
  #lp_contents04 h4 {
    line-height: 40px;
  }
}
/*********************************
4. Footer
*********************************/
/*-----------------------------
 4.1. Footer top
-----------------------------*/
.s__footertop {
  padding: 30px 0;
  background-color: #FFFAF1;
}
.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;
    justify-content: center;
  }
  .footertop > ul > li.logo {
    width: 100%;
    text-align: center;
  }
  .footertop > ul > li.logo a {
    display: inline-block;
  }
  .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: var(--color-secondary);
  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;
	}
}