@charset "utf-8";

/******
フォント

Inter
font-family: "Inter", sans-serif;

しっぽり明朝
font-family: "Shippori Mincho", serif;

*******/

body {
  color: #716148;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

main {
  overflow-x: hidden;
}

.img {
  width: 100%;
  height: auto;
}

.sp {
  display: none;
}

.hover--opacity {
  transition: opacity 0.3s;
}
.hover--opacity:hover {
  opacity: 0.7;
}

.ilblk {
  display: inline-block;
}

br.br-350 {
  display: none;
}
br.br-980 {
  display: none;
}


.inner-1200 {
  width: calc(100% - 44px);
  max-width: 1200px;
  margin: 0 auto;
}
.inner-1075 {
  width: 100%;
  max-width: 1075px;
  margin: 0 auto;
}
.inner-980 {
  width: 100%;
  max-width: 980px;
  margin: 0 0 0 auto;
}
.inner-980--type02 {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 0 0;
}

.bg--cream {
  background-color: #eeedea;
  background-image: url(../imgs/index/gurange_bg.png);
     background-position: center center;
    background-repeat: repeat;
    background-size: contain;
}
.bg--gray {
  background-color: #3e433e;
}
.bg--gray2 {
  background-color: #e3e1dc;
   background-image: url(../imgs/index/gurange_bg.png);
     background-position: center center;
    background-repeat: repeat;
    background-size: contain;
}
.bg--gray3{
   background-color: #D9D9D9;
   background-image: url(../imgs/index/gurange_bg.png);
     background-position: center center;
    background-repeat: repeat;
    background-size: contain;
}

.clr--gray {
  color: #767e76;
}

.vertical {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.vertical__title {
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0.06em;
}

.copy {
  color: #6c6c6c;
  font-size: 13px;
  position: absolute;
  bottom: 26px;
  right: 40px;
  line-height: 2.3;
  letter-spacing: 0.02em;
}

.column-outside-left,
.column-outside-right {
  flex: 1;
  display: flex;
  justify-content: space-between;
}
.column-outside-right {
  margin-right: calc(50% - 50vw);
  margin-left: 4%;
}
.column-outside-left {
  margin-left: calc(50% - 50vw);
  margin-right: 4%;
}

.section__mainWrap {
  padding-top: 163px;
}
.section__mainFlex {
  display: flex;
  justify-content: space-between;
}
.section__mainFlex.sp {
  display: none;
}

.section__mainText {
  width: 176px;
  margin-left: 39px;
  padding-top: 209px;
}
.section__mainText-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
}
.section__mainText-ja {
  font-size: 65px;
  margin-bottom: 32px;
  line-height: 1.07;
  letter-spacing: 0.06em;
}
.section__mainText-en {
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1;
  letter-spacing: 0.06em;
}
.section__mainText-img {
  width: 176px;
  margin: 0 auto;
}
.section__mainImg {
  width: calc(100% - 235px);
  max-width: 538px;
}



.accordion {
  margin-inline: auto;
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.accordion-title {
  cursor: pointer;
}
.accordion-content {
  display: none;
}
/* 矢印 */
.accordion-title {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 22px;
  line-height: 1.25;
  letter-spacing: 0.06em;
  border-top: 1px solid #716148;
  border-bottom: 1px solid #716148;
}
/* 縦線 */
.accordion-title::before {
  background: #716148; /* 線の色 */
  content: "";
  height: 1px; /* 線の太さ */
  position: absolute;
  left: 0;
  top: 50%; /* 線の位置を縦中央に */
  transform: rotate(90deg); /* 線を縦に */
  transition: transform 0.3s ease-in-out;
  width: 11px; /* 線の幅 */
}
/* 横線 */
.accordion-title::after {
  background: #716148; /* 線の色 */
  content: "";
  height: 1px; /* 線の太さ */
  position: absolute;
  left: 0;
  top: 50%; /* 線の位置を縦中央に */
  transition: opacity 0.3s ease-in-out;
  width: 11px; /* 線の幅 */
}
/* 縦線(クリック後) */
.accordion-title.open::before {
  transform: rotate(180deg);
}
/* 横線(クリック後) */
.accordion-title.open::after {
  opacity: 0;
}
.accordion-content {
  padding-top: 25px;
}
.accordion-content02 {
  padding-top: 47px;
}
.under-line {
  text-decoration: underline;
}
.sec-titleWrap {
  text-align: center;
}
.sec-title {
  font-size: 36px;
  font-family: "Shippori Mincho", serif;
  font-weight: normal;
  color: #716148;
}



.arrow {
  position: relative;
  display: inline-block;
  width: 19px;
  height: 1px;
  margin: 0px 0 5px 0;
  border-radius: 9999px;
  background-color: #ffffff;
  transform: rotate(-45deg);
}
.arrow.brown{
  background-color: #716148;
}
.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 5px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 0.5px) 50%;
}
.arrow.brown::before,
.arrow.brown::after {
  background-color: #716148;
}
.arrow::before {
  transform: rotate(45deg);
}

.arrow::after {
  transform: rotate(-45deg);
}

.lenis.lenis-smooth iframe{
      pointer-events: painted!important;
}

@media screen and (max-width: 1280px) {
}

@media screen and (max-width: 980px) {
  br.br-980 {
  display: block;
}

}
@media screen and (max-width: 750px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .sec-title {
    font-size: 23px;
  }
  .copy {
    font-size: 11px;
  }

  .vertical__title {
    font-size: 15px;
  }

  .section__mainFlex {
    position: relative;
  }
  .section__mainFlex.sp{
    display: flex;
    justify-content: space-between;
  }
  .section__mainText {
    width: auto;
    position: relative;
    height: 100%;
    padding-top: 42.933vw;
    padding-bottom: 2.133vw;
    margin-left: 0;
  }
  .section__mainText-heading {
    justify-self: flex-start;
    margin-left: 22px;
  }
  .section__mainText-ja {
    font-size: 10.666vw;
    margin-bottom: 6.133vw;
    line-height: 1;
  }
  .section__mainText-en {
    font-size: 4vw;
    margin-bottom: 30px;
  }
  .section__mainImg {
    width: 71.733vw;
    max-width: 100%;
    min-width: 249px;
  }
  .section__mainText-img {
    width: 34.133vw;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
  }




 .accordion-title {
    font-size: 16px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 22px;
    line-height: 1.56;
  }
  .accordion-title::before {
    width: 8px;
  }
  .accordion-title::after {
    width: 8px;
  }
  .accordion-content02 {
    padding-top: 25px;
  }


}

@media screen and (max-width: 375px) {
  .section__mainText {
    padding-bottom: 1.133vw;
  }
}

@media screen and (max-width: 350px) {
  br.br-350 {
    display: block;
  }
}
