@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  font-family: "Kaisei Decol", serif;
  font-weight: 500;
  font-style: normal;
  color: #a98f7b;
  line-height: 1.7;
  text-align: left;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  font-size: 1rem;
}
@media (max-width: 767px) {
  body {
    font-size: 0.875rem;
  }
}

img, picture, svg, video, canvas {
  max-width: 100%;
  display: block;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
}

button {
  cursor: pointer;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
a:not([class]) {
  text-decoration-skip-ink: auto;
}

i, em {
  font-style: normal;
}

.pc-br {
  display: block;
}
@media (max-width: 767px) {
  .pc-br {
    display: none;
  }
}

.sp-br {
  display: none;
}
@media (max-width: 767px) {
  .sp-br {
    display: block;
  }
}

/*------------------------------------------------------------
ラッパー
------------------------------------------------------------*/
#wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.inner {
  width: calc(100% - 60px);
  max-width: 1280px;
  margin: 0 auto;
}

/*------------------------------------------------------------
nav関連
------------------------------------------------------------*/
.smenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1000;
}
.smenu .logo img {
  height: 40px;
  width: auto;
}

.nav-content ul {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 20px;
}

@media (max-width: 767px) {
  .nav-btn {
    position: relative;
    z-index: 1100;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .nav-btn span, .nav-btn span::before, .nav-btn span::after {
    content: "";
    position: absolute;
    left: 50%;
    translate: -50% 0;
    width: 30px;
    height: 2px;
    background: #333;
    transition: 0.3s;
    border-radius: clamp(3px, calc(calc(infinity)vw + calc(-infinity)px), 6px);
  }
  .nav-btn span {
    top: 50%;
    translate: -50% -50%;
  }
  .nav-btn span::before {
    top: -9px;
  }
  .nav-btn span::after {
    top: 9px;
  }
  .nav-open .nav-btn span {
    background: transparent;
  }
  .nav-open .nav-btn span::before {
    top: 0;
    rotate: 45deg;
  }
  .nav-open .nav-btn span::after {
    top: 0;
    rotate: -45deg;
  }
  .nav-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.4s;
  }
  .nav-content ul {
    list-style: none;
    text-align: center;
  }
  .nav-content ul li {
    margin-bottom: 25px;
  }
  .nav-content ul li a {
    font-size: clamp(14px, calc(calc(infinity)vw + calc(-infinity)px), 16px);
    font-weight: bold;
  }
  .nav-open .nav-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
/*------------------------------------------------------------
footer
------------------------------------------------------------*/
/*------------------------------------------------------------
inview css
------------------------------------------------------------*/
.anm {
  opacity: 0;
}

.anm_all.trigger {
  opacity: 1;
}
.anm_all .item {
  opacity: 0;
}
.anm_all .item.up {
  animation: up 0.7s cubic-bezier(0.33, 1, 0.68, 1) 0.1s 1 normal forwards;
}

.op-blur {
  filter: blur(0.4em);
  opacity: 0;
  transition: opacity 0.8s ease, filter 0.8s ease-out;
  will-change: filter;
}

.scale-blurs {
  filter: blur(0.4em);
  opacity: 0;
  transition: opacity 0.8s ease, filter 0.8s ease-out;
  will-change: filter;
}

.scb {
  transition: all 0.8s ease;
  transform: scale(1.5);
}

.scale-opacity {
  opacity: 0;
  transform: scale(1.2);
  transition: all 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}
.scale-opacity.trigger {
  opacity: 1;
  transform: scale(1);
}

.trigger {
  opacity: 0;
}
.trigger.up {
  animation: up 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s 1 normal forwards;
}
.trigger.op-blur {
  opacity: 1;
  filter: blur(0);
}
.trigger.scb {
  opacity: 1;
}
.trigger.delay0 {
  animation-delay: 0ms;
}
.trigger.delay1 {
  animation-delay: 100ms;
}
.trigger.delay2 {
  animation-delay: 200ms;
}
.trigger.delay3 {
  animation-delay: 300ms;
}
.trigger.delay4 {
  animation-delay: 400ms;
}
.trigger.delay5 {
  animation-delay: 500ms;
}
.trigger.delay6 {
  animation-delay: 600ms;
}
.trigger.delay7 {
  animation-delay: 700ms;
}
.trigger.delay8 {
  animation-delay: 800ms;
}
.trigger.delay9 {
  animation-delay: 900ms;
}
.trigger.delay10 {
  animation-delay: 1000ms;
}
.trigger.delay11 {
  animation-delay: 1100ms;
}
.trigger.delay12 {
  animation-delay: 1200ms;
}
.trigger.delay13 {
  animation-delay: 1300ms;
}
.trigger.delay14 {
  animation-delay: 1400ms;
}
.trigger.delay15 {
  animation-delay: 1500ms;
}
.trigger.delay16 {
  animation-delay: 1600ms;
}
.trigger.delay17 {
  animation-delay: 1700ms;
}
.trigger.delay18 {
  animation-delay: 1800ms;
}
.trigger.delay19 {
  animation-delay: 1900ms;
}
.trigger.delay20 {
  animation-delay: 2000ms;
}

@keyframes up {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
.load {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 20;
  transition: all 1s cubic-bezier(0.33, 1, 0.68, 1);
  place-content: center;
  text-align: center;
}
.load img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
.load .gifs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  place-content: center;
}
.load .gifs img {
  display: inline-block;
  width: 160px;
  height: auto;
}
@media all and (max-width: 767px) {
  .load .gifs img {
    width: 160px;
    height: auto;
  }
}
.load.is-hide {
  opacity: 0;
  visibility: hidden;
}

.content-in {
  overflow: hidden;
}
.content-in .pc-left {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(50vw - 190px);
  height: 100vh;
  background: url("../images/pc-left.webp") center center;
  background-size: 102% auto;
  place-content: center;
  text-align: center;
}
.content-in .pc-left .copy-pc {
  width: 220px;
  display: inline-block;
}
.content-in .pc-left .copy-pc .txt {
  text-align: left;
  font-size: 26px;
  line-height: 1.3;
  margin-top: 20px;
}
.content-in .pc-left .kl1 {
  position: absolute;
  width: 6.5%;
  top: 9%;
  left: 13%;
}
.content-in .pc-left .kl2 {
  position: absolute;
  width: 2%;
  top: 12%;
  left: 50%;
}
.content-in .pc-left .kl3 {
  position: absolute;
  width: 3.5%;
  top: 7%;
  right: 14%;
}
.content-in .pc-left .kl4 {
  position: absolute;
  width: 12%;
  top: 31%;
  left: 8%;
}
.content-in .pc-left .kl5 {
  position: absolute;
  width: 3%;
  top: 28%;
  right: 15%;
}
.content-in .pc-left .kl6 {
  position: absolute;
  width: 3.5%;
  top: 47%;
  right: 24%;
}
.content-in .pc-left .kl7 {
  position: absolute;
  width: 4%;
  bottom: 38%;
  left: 16%;
}
.content-in .pc-left .kl8 {
  position: absolute;
  width: 4%;
  bottom: 31%;
  right: 18%;
}
.content-in .pc-left .kl9 {
  position: absolute;
  width: 4.2%;
  bottom: 16%;
  left: 6%;
}
.content-in .pc-left .kl10 {
  position: absolute;
  width: 7%;
  bottom: 8%;
  left: 26%;
}
.content-in .pc-left .kl11 {
  position: absolute;
  width: 2%;
  bottom: 15%;
  right: 40%;
}
.content-in .pc-left .kl12 {
  position: absolute;
  width: 8.5%;
  bottom: 9%;
  right: 11%;
}
.content-in .pc-left .txt.jsb {
  line-height: 1.6;
  opacity: 1;
}
.content-in .pc-left {
  /* 通常時（隠しておく） */
}
.content-in .pc-left .txt.jsb .char {
  display: inline-block;
  opacity: 0;
  filter: blur(5px); /* ぼかしを入れるとお洒落 */
  transition: 0.4s ease-out;
  transition-delay: var(--delay);
}
.content-in .pc-left {
  /* is-activeがついた時（発火！） */
}
.content-in .pc-left .txt.jsb.is-active .char {
  opacity: 1;
  filter: blur(0);
}
@media all and (max-width: 1000px) {
  .content-in .pc-left .kll {
    display: none;
  }
  .content-in .pc-left .copy-pc {
    display: none;
  }
  .content-in .pc-left {
    width: 100%;
  }
}
.content-in .pc-right {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: calc(50vw - 190px);
  background: url("../images/pc-right.jpg") center center;
  background-size: 102% auto;
  place-content: center;
  text-align: center;
}
.content-in .pc-right .km1 {
  width: 23.5px;
  margin: 0 auto 5px auto;
}
.content-in .pc-right .km2 {
  width: 23.5px;
  margin: 10px auto 0 auto;
}
.content-in .pc-right .tl1 {
  font-size: 24px;
  color: white;
}
.content-in .pc-right .tl2 {
  font-size: 14.5px;
  color: white;
}
.content-in .pc-right .menus {
  max-width: 215px;
  margin: 0 auto;
  padding: 60px 0 85px 0;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  text-align: center;
  border-radius: 100%;
  border: 2px solid #a98f7b;
  border-radius: 187.5px;
  background: url("../images/bg-pink2.jpg") top center;
}
.content-in .pc-right .menus .mi {
  display: inline-block;
  margin-top: 25px;
}
.content-in .pc-right .menus a {
  display: block;
  color: white;
  font-size: 16.5px;
  letter-spacing: 0.1em;
  text-align: left;
  line-height: 2;
}
.content-in .pc-right .cta {
  margin: 20px auto 0 auto;
  max-width: 200px;
}
.content-in .pc-right .cta a {
  font-size: 17px;
}
.content-in .pc-right .kr1 {
  position: absolute;
  width: 3.1%;
  top: 9%;
  left: 11%;
}
.content-in .pc-right .kr2 {
  position: absolute;
  width: 5%;
  top: 4%;
  left: 62%;
}
.content-in .pc-right .kr3 {
  position: absolute;
  width: 11%;
  top: 16%;
  right: 7%;
}
.content-in .pc-right .kr4 {
  position: absolute;
  width: 2%;
  top: 34%;
  left: 12%;
}
.content-in .pc-right .kr5 {
  position: absolute;
  width: 3%;
  top: 44%;
  right: 4%;
}
.content-in .pc-right .kr6 {
  position: absolute;
  width: 7%;
  top: 52%;
  left: 4%;
}
.content-in .pc-right .kr7 {
  position: absolute;
  width: 7%;
  bottom: 34%;
  right: 12%;
}
.content-in .pc-right .kr8 {
  position: absolute;
  width: 2%;
  bottom: 27%;
  left: 18%;
}
.content-in .pc-right .kr9 {
  position: absolute;
  width: 3%;
  bottom: 18%;
  right: 11%;
}
.content-in .pc-right .kr10 {
  position: absolute;
  width: 3%;
  bottom: 8%;
  left: 9%;
}
.content-in .pc-right .kr11 {
  position: absolute;
  width: 5%;
  bottom: 4%;
  right: 23%;
}
@media all and (max-width: 1000px) {
  .content-in .pc-right .menus, .content-in .pc-right .cta, .content-in .pc-right .klr {
    display: none;
    margin: 40px 0;
  }
}
.content-in .contents {
  width: 380px;
  margin: 0 auto;
  position: relative;
}
@media all and (max-width: 1000px) {
  .content-in .contents {
    width: 375px;
    position: relative;
    margin: 0 auto;
    z-index: 10;
    overflow: hidden;
  }
}
@media all and (max-width: 375px) {
  .content-in .contents {
    width: 100%;
  }
}
.content-in .bg1 {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: calc(50vw - 190px);
  background: url("../images/bg_pink.jpg") top left;
  z-index: -1;
}
.content-in .bg1 .bg1-in1 {
  width: 100%;
  height: 100%;
  opacity: 0;
  background: url("../images/bg-blue.jpg") top left/cover;
  background: 100% auto;
  transition: all 1s cubic-bezier(0.33, 1, 0.68, 1);
}
.content-in .bg1 .bg1-in1.is-active {
  opacity: 1;
}
@media all and (max-width: 1000px) {
  .content-in .bg1 {
    left: 0;
    width: 375px;
    left: 50%;
    margin-left: -187.5px;
  }
}
@media all and (max-width: 767px) {
  .content-in .bg1 {
    z-index: 1;
  }
}
.content-in .fade-blur {
  opacity: 0;
  filter: blur(10px);
  transition: all 0.9s cubic-bezier(0.33, 1, 0.68, 1);
}
.content-in .fade-blur.trigger {
  opacity: 1;
  filter: blur(0);
}
.content-in .mv .mvi {
  padding-bottom: 40px;
  box-sizing: border-box;
  border-radius: 0 0 100px 100px;
  background: url("../images/bg1.webp") top center;
  background-size: auto 101%;
}
.content-in .mv .curten {
  position: relative;
  z-index: 4;
}
.content-in .mv .wall {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 1;
}
.content-in .mv .funi {
  position: absolute;
  top: 35px;
  left: 0;
  z-index: 2;
}
.content-in .mv .women {
  width: 93%;
  margin: -114px auto 0 auto;
  position: relative;
  z-index: 3;
}
.content-in .mv .jsb, .content-in .mv .jsb2 {
  opacity: 0;
  transition: all 1s cubic-bezier(0.33, 1, 0.68, 1);
}
.content-in .mv .jsb.is-active, .content-in .mv .jsb2.is-active {
  opacity: 1;
}
.content-in .mv .jsb.is-active.fade-blur, .content-in .mv .jsb2.is-active.fade-blur {
  opacity: 1;
  filter: blur(0);
}
.content-in .mv .txt.jsb2 {
  line-height: 1.6;
}
.content-in .mv {
  /* 通常時（隠しておく） */
}
.content-in .mv .txt.jsb2 .char {
  display: inline-block;
  opacity: 0;
  filter: blur(5px); /* ぼかしを入れるとお洒落 */
  transition: 0.4s ease-out;
  transition-delay: var(--delay);
}
.content-in .mv {
  /* is-activeがついた時（発火！） */
}
.content-in .mv .txt.jsb2.is-active .char {
  opacity: 1;
  filter: blur(0);
}
@media all and (max-width: 767px) {
  .content-in .mv {
    position: relative;
    z-index: 1;
  }
}
.content-in .copys {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 10px;
  width: 80%;
  position: relative;
  left: 2%;
  margin: 15px auto 0 auto;
}
.content-in .copys .l {
  padding-top: 10px;
  box-sizing: border-box;
}
.content-in .copys .txt {
  font-size: 18px;
  line-height: 1.4;
  margin-top: 15px;
}

.ttl-bx1 {
  text-align: center;
}
.ttl-bx1 .jp {
  font-size: 26px;
  line-height: 1.3;
}
.ttl-bx1 .eg {
  font-size: 26px;
  line-height: 1.3;
  letter-spacing: 0.11em;
  font-weight: 500;
}
.ttl-bx1 .k1, .ttl-bx1 .k2 {
  text-align: center;
  line-height: 1;
}
.ttl-bx1 .k1 img, .ttl-bx1 .k2 img {
  width: 24px;
  display: inline-block;
}
.ttl-bx1 .k1 {
  margin-bottom: 6px;
}
.ttl-bx1 .k2 {
  margin-top: 6px;
}
.ttl-bx1 .eub {
  font-size: 16px;
  letter-spacing: 0.11em;
}

.curten2 {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  pointer-events: none;
}

.bg-p {
  padding-bottom: 40px;
  box-sizing: border-box;
}

.bg-blue {
  padding: 40px 0 60px 0;
  box-sizing: border-box;
}

.sec-1 {
  position: relative;
}
.sec-1 .in {
  padding: 75px 0;
  box-sizing: border-box;
  background: url("../images/bg1.jpg") top center;
  border-radius: 0 0 187.5px 187.5px;
}
.sec-1 .inner {
  padding-top: 15px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  text-align: center;
  border-radius: 100%;
  border: 2px solid #a98f7b;
  border-radius: 187.5px;
  background: url("../images/bg-pink2.jpg") top center;
  padding-bottom: 180px;
}
.sec-1 .txt {
  font-size: 16px;
  line-height: 1.8;
}
.sec-1 .img {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 3%;
  width: 85%;
  margin: 0 auto 0 auto;
}
.sec-1 .planet {
  position: absolute;
  top: -27%;
  left: 8%;
  width: 22%;
  height: auto;
}
.sec-1 .bl {
  position: absolute;
  top: -26%;
  right: 4%;
  width: 8%;
  height: auto;
}
.sec-1 .bs {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 5.7%;
  height: auto;
}
.sec-1 .bm {
  position: absolute;
  top: 15%;
  left: 2%;
  width: 6%;
  height: auto;
}
@media all and (max-width: 767px) {
  .sec-1 {
    position: relative;
    z-index: 1;
  }
}

.sec-2, .sec-4 {
  position: relative;
  padding-top: 20px;
}
.sec-2 .stt, .sec-4 .stt {
  position: absolute;
  width: 100%;
  height: auto;
  left: 1%;
  top: 0;
  z-index: 5;
  pointer-events: none;
}
.sec-2 .stb, .sec-4 .stb {
  position: absolute;
  width: 100%;
  height: auto;
  left: 1%;
  bottom: 0;
  z-index: 5;
  pointer-events: none;
}
.sec-2 .lead, .sec-4 .lead {
  text-align: center;
}
.sec-2 .inner, .sec-4 .inner {
  background: url("../images/camp-bg.jpg") top center;
  background-size: 100% auto;
  position: relative;
  border-radius: 187.5px;
  overflow: hidden;
  border: 2px solid #a98f7b;
  box-sizing: border-box;
  padding: 70px 0 210px 0;
}
.sec-2 .k1, .sec-4 .k1 {
  margin-bottom: 0;
}
.sec-2 .lead1, .sec-2 .bx, .sec-2 .lead3, .sec-4 .lead1, .sec-4 .bx, .sec-4 .lead3 {
  width: 86%;
  margin: 0 auto;
}
.sec-2 .lead1, .sec-2 .lead3, .sec-4 .lead1, .sec-4 .lead3 {
  text-align: center;
  font-size: 14.5px;
  letter-spacing: -0.05em;
}
.sec-2 .let, .sec-4 .let {
  letter-spacing: -1px;
}
.sec-2 .bx, .sec-4 .bx {
  margin: 20px auto;
}
.sec-2 .inb2, .sec-4 .inb2 {
  padding: 10px 0 15px 0;
  box-sizing: border-box;
}
.sec-2 h3, .sec-4 h3 {
  text-align: center;
  color: white;
  font-size: 21px;
  line-height: 1;
}
.sec-2 h3 img, .sec-4 h3 img {
  display: inline-block;
  height: 11px;
  white-space: auto;
  line-height: 1;
}
.sec-2 h3 i, .sec-4 h3 i {
  font-size: 16px;
}
.sec-2 h3 span, .sec-4 h3 span {
  margin: 6px 0 6px 0;
  display: block;
}
.sec-2 .img, .sec-4 .img {
  width: 81%;
  margin: 20px auto;
  overflow: hidden;
}
.sec-2 .cap, .sec-4 .cap {
  text-align: center;
  color: white;
  font-size: 13px;
  line-height: 1;
}
.sec-2 .cap img, .sec-4 .cap img {
  display: inline-block;
  height: 7px;
  white-space: auto;
  line-height: 1;
  margin-bottom: 5px;
}
.sec-2 .lined, .sec-4 .lined {
  width: 93%;
  margin: 0 auto;
}
.sec-2 .table, .sec-4 .table {
  position: absolute;
  bottom: -5%;
  left: 0;
  width: 100%;
  text-align: center;
}
.sec-2 .table img, .sec-4 .table img {
  display: inline-block;
  width: 52%;
}
.sec-2 .kr1, .sec-4 .kr1 {
  position: absolute;
  bottom: 29%;
  left: 1%;
  width: 16%;
  height: auto;
}
.sec-2 .kr2, .sec-4 .kr2 {
  position: absolute;
  right: 17%;
  bottom: 13%;
  width: 13%;
  height: auto;
}
.sec-2 .kr3, .sec-4 .kr3 {
  position: absolute;
  left: 4%;
  bottom: 3%;
  width: 21%;
  height: auto;
}
.sec-2 .kr4, .sec-4 .kr4 {
  position: absolute;
  right: 4%;
  bottom: 4%;
  width: 22%;
  height: auto;
}
.sec-2 .kr5, .sec-4 .kr5 {
  position: absolute;
  left: 13%;
  bottom: -1%;
  width: 7.5%;
  height: auto;
}
@media all and (max-width: 767px) {
  .sec-2, .sec-4 {
    position: relative;
    z-index: 1;
  }
}

.lgs {
  height: 12px;
  width: auto;
  text-align: center;
  margin-bottom: 10px;
}
.lgs img {
  display: inline-block;
  height: 100%;
  width: auto;
}

.camp-bn {
  width: 220px;
  height: 75px;
  place-content: center;
  text-align: center;
  border-radius: 100px;
  line-height: 1;
  color: white;
  background: url("../images/bg_pink.jpg") top center;
  border: 2px solid #a98f7b;
  box-sizing: border-box;
  position: relative;
  margin: 15px auto 20px auto;
}
.camp-bn .nm {
  display: inline-block;
  font-size: 13px;
  padding: 4px 5px;
  border-radius: 100px;
  position: relative;
}
.camp-bn .nm em {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  mix-blend-mode: overlay;
  border-radius: 100px;
}
.camp-bn .nm i {
  z-index: 2;
  position: relative;
}
.camp-bn .tx {
  font-size: 15px;
  margin-top: 5px;
}

.sec-3, .sec-6 {
  margin-top: 30px;
}
.sec-3 .inner, .sec-6 .inner {
  width: calc(100% - 70px);
  background: url("../images/bg1.jpg") top center;
  background-size: 100% auto;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  border: 2px solid #a98f7b;
  box-sizing: border-box;
  padding: 30px 0 20px 0;
  box-sizing: border-box;
}
.sec-3 .img, .sec-6 .img {
  width: 68%;
  margin: 0 auto;
}
.sec-3 .infos, .sec-6 .infos {
  width: 72%;
  margin: 0 auto 10px auto;
}
.sec-3 .infos .top, .sec-6 .infos .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  align-items: center;
}
.sec-3 .infos .r, .sec-6 .infos .r {
  display: grid;
  grid-template-columns: 20px 20px;
  gap: 0 12px;
}
.sec-3 .infos .career, .sec-6 .infos .career {
  font-size: 10px;
  ine-height: 1;
}
.sec-3 .infos .name, .sec-6 .infos .name {
  font-size: 22px;
  line-height: 1;
  margin: 0px 0 10px 0;
}
.sec-3 .lead, .sec-6 .lead {
  font-size: 12.5px;
}
@media all and (max-width: 767px) {
  .sec-3, .sec-6 {
    position: relative;
    z-index: 1;
  }
}

.sec-3 .img {
  overflow: hidden;
  border-radius: 100%;
}

.sec-4 .inner {
  padding: 70px 0 250px 0;
  background: url("../images/bg1.jpg") top center;
  background-size: 100% auto;
}
.sec-4 .lead3 {
  font-size: 12px;
}
.sec-4 .table2 {
  position: absolute;
  bottom: -1%;
  right: -15%;
  width: 110%;
}
.sec-4 .b21, .sec-4 .b22, .sec-4 .b23, .sec-4 .b24, .sec-4 .b25, .sec-4 .b26 {
  position: absolute;
}
.sec-4 .b21 {
  left: 9%;
  top: 4%;
  width: 4.3%;
}
.sec-4 .b22 {
  top: 35%;
  left: 10%;
  width: 4%;
}
.sec-4 .b23 {
  top: -2%;
  left: 53%;
  width: 9%;
}
.sec-4 .b24 {
  top: 25%;
  left: 1%;
  width: 8%;
}
.sec-4 .b25 {
  top: 6%;
  left: 38%;
  width: 18%;
}
.sec-4 .b26 {
  top: 11%;
  left: 16%;
  width: 19%;
}
.sec-4 .lead1 {
  margin-top: 15px;
}
.sec-4 .bx {
  margin: 10px auto;
}

.cta {
  margin: 25px auto 55px auto;
  max-width: 220px;
}
.cta a {
  display: block;
  border-radius: 100px;
  width: 100%;
  height: 51px;
  text-align: center;
  place-content: center;
  margin-bottom: 15px;
  font-size: 19px;
  box-sizing: border-box;
  background: url("../images/bg1.jpg") center center/cover;
  position: relative;
}
.cta a i {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  transition: all 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.cta a em {
  position: relative;
  z-index: 2;
}
.cta a:last-of-type {
  margin-bottom: 0;
}
.cta .btn1 {
  color: white;
  border: 2px solid #a98f7b;
}
.cta .btn1 i {
  background: #b29a26;
  mix-blend-mode: exclusion;
}
@media (any-hover: hover) {
  .cta .btn1:hover {
    color: #a98f7b;
  }
  .cta .btn1:hover i {
    mix-blend-mode: unset;
    background: #00a99d;
    opacity: 0.6;
  }
}
.cta .btn2 {
  border: 2px solid #a98f7b;
  color: #a98f7b;
}
.cta .btn2 i {
  background: #00a99d;
  opacity: 0.6;
}
@media (any-hover: hover) {
  .cta .btn2 {
    /* PC（マウス操作）のみに適用されるスタイル */
  }
  .cta .btn2:hover {
    color: white;
  }
  .cta .btn2:hover i {
    background: #b29a26;
    mix-blend-mode: exclusion;
    opacity: 1;
  }
}
@media all and (max-width: 767px) {
  .cta {
    position: relative;
    z-index: 1;
  }
}

.product .inner {
  background: url("../images/bg1.jpg") top center;
  background-size: 100% auto;
  position: relative;
  border-radius: 187.5px;
  overflow: hidden;
  border: 2px solid #a98f7b;
  box-sizing: border-box;
  padding: 70px 0 120px 0;
}
.product .in {
  width: 86%;
  margin: 0 auto;
}
.product .items {
  width: 70%;
  margin: 0 auto;
  position: relative;
}
.product .items .cir {
  width: 40%;
  position: absolute;
  right: -20px;
  top: 7px;
  z-index: 10 !important;
}
.product .main-item {
  margin-top: 15px;
}
.product .items-name {
  text-align: center;
  line-height: 1;
  margin-top: 15px;
}
.product .items-name img {
  display: inline-block;
  height: 13px;
}
.product .items-name .name {
  font-size: 22px;
  margin: 10px 0;
}
.product .items-name .qua {
  font-size: 14px;
}
.product .price-bx {
  text-align: center;
  line-height: 1;
  margin: 30px 0 0 0;
}
.product .price-bx .tag {
  display: inline-block;
  color: #a98f7b;
  text-align: center;
  place-content: center;
  position: relative;
  width: 110px;
  height: 28px;
  border: 2px solid #a98f7b;
  box-sizing: border-box;
  border-radius: 100px;
}
.product .price-bx .tag i {
  position: relative;
  z-index: 2;
}
.product .price-bx .tag em {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #29abe2;
  mix-blend-mode: normal;
  border-radius: 100px;
  opacity: 0.6;
  z-index: 1;
}
.product .pr-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  align-items: flex-end;
  padding-top: 20px;
}
.product .pr-main .l {
  color: #a98f7b;
}
.product .pr-main .l .off {
  width: 47px;
  position: absolute;
  top: 0px;
  left: 15px;
}
.product .pr-main .l .tl1 {
  text-align: left;
  font-size: 10px;
  transform-origin: left top;
  transform: scale(0.8);
  position: relative;
  bottom: -3px;
}
.product .pr-main .l .num {
  position: relative;
  font-size: 16px;
}
.product .pr-main .l .num:before {
  position: absolute;
  content: "";
  display: block;
  transform: rotate(11deg);
  background-color: #c1272d;
  width: 100%;
  height: 1.5px;
  top: 50%;
  left: 0;
}
.product .pr-main .l .num i {
  font-size: 23px;
  line-height: 1;
}
.product .pr-main .l .num em {
  font-size: 10px;
  position: absolute;
  right: 0;
  top: -1px;
  transform-origin: right top;
  transform: scale(0.6);
  font-weight: bold;
}
.product .pr-main .arw {
  text-align: center;
}
.product .pr-main .arw img {
  width: 11px;
  display: inline-block;
}
.product .pr-main .r {
  color: white;
}
.product .pr-main .r .tl1 {
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.product .pr-main .r .num {
  position: relative;
  font-size: 32px;
}
.product .pr-main .r .num i {
  font-size: 42px;
  line-height: 1;
}
.product .pr-main .r .num em {
  font-size: 10px;
  position: absolute;
  transform-origin: right top;
  transform: scale(0.8);
  right: 4px;
  top: 2px;
}
.product .pr-main .f-bron {
  color: #a98f7b;
  position: relative;
  bottom: -8px;
  padding-top: 0;
}
.product .pr-main .f-bron .tl1 {
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 0;
  line-height: 1;
}
.product .f-bron-w {
  padding-top: 10px;
}
.product .price-tag {
  display: grid;
  grid-template-columns: 56% 44%;
  gap: 0 10px;
  text-align: center;
  margin-top: 10px;
}
.product .price-tag p {
  font-size: 13px;
  color: #a98f7b;
  text-align: center;
  border: 1px solid #a98f7b;
  border-radius: 6px;
}
.product .plus {
  width: 24px;
  margin: 24px auto;
}
.product .plus img {
  width: 100%;
}
.product .begin h3 {
  font-size: 23px;
  text-align: center;
  line-height: 1;
  box-sizing: border-box;
  padding-bottom: 3px;
  border-bottom: 3px solid rgba(41, 171, 226, 0.6);
}
.product .bnr {
  margin-top: 20px;
  box-sizing: border-box;
  border: 2px solid #a98f7b;
  aspect-ratio: 507/189;
  place-content: center;
  text-align: center;
  color: #a98f7b;
  position: relative;
  line-height: 1;
  overflow: hidden;
}
.product .bnr .bnbg {
  background: url("../images/bg-pink2.jpg") center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.product .bnr .bnbg:before {
  content: "";
  position: absolute;
  top: 5px;
  left: -10px;
  margin-top: 0;
  margin-left: 0;
  width: 50px;
  height: 8px;
  background: #a98f7b;
  transform: rotate(-30deg);
}
.product .bnr .bnbg:after {
  content: "";
  position: absolute;
  bottom: 5px;
  right: -10px;
  margin-top: 0;
  margin-left: 0;
  width: 50px;
  height: 8px;
  background: #a98f7b;
  transform: rotate(150deg);
}
.product .bnr .t1 {
  font-size: 16px;
  position: relative;
  z-index: 3;
  margin-bottom: 2px;
}
.product .bnr .t2 {
  font-size: 28px;
  position: relative;
  z-index: 3;
}
.product .bnr .t2 i {
  font-size: 41px;
}
.product .bnr .t2 em {
  letter-spacing: -0.1em;
}
.product .lead {
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
}
.product .b11 {
  position: absolute;
  width: 61%;
  top: 4%;
  left: 7%;
}
.product .b12 {
  position: absolute;
  width: 23%;
  top: 44%;
  right: -5%;
}
.product .b13 {
  position: absolute;
  width: 13%;
  bottom: 12%;
  left: 4%;
}
@media all and (max-width: 767px) {
  .product {
    position: relative;
    z-index: 1;
  }
}

.cta2 {
  width: 100%;
  max-width: none;
  margin: 30px 0 0 0;
}
.cta2 a {
  width: 220px;
  margin: 0 auto;
}
.cta2 .lead {
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
}
@media all and (max-width: 767px) {
  .cta2 {
    position: relative;
    z-index: 1;
  }
}

.sec-6 {
  margin-top: 40px;
}
.sec-6 .inner {
  padding: 35px 0 40px 0;
  width: calc(100% - 60px);
}
.sec-6 .inb {
  width: 84%;
  margin: 0 auto;
}
.sec-6 .inb2 {
  margin-top: 50px;
}
.sec-6 .ttl-bx2 {
  text-align: center;
}
.sec-6 .ttl-bx2 h2 {
  font-size: 22px;
  line-height: 1.3;
}
.sec-6 .ttl-bx2 img {
  width: 26px;
  display: inline-block;
}
.sec-6 .youtube {
  width: 85%;
  margin: 50px auto 20px auto;
  aspect-ratio: 16/9;
}
.sec-6 .youtube iframe {
  width: 100%;
  height: 100%;
}
.sec-6 .lead2 {
  font-size: 21px;
  text-align: center;
  line-height: 1.3;
}
.sec-6 .tag-lot {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 1%;
  width: 90%;
  margin: 20px auto 35px auto;
}
.sec-6 .tag-lot p {
  font-size: 10px;
  text-align: center;
  width: 32.6666%;
  border: 1.5px solid #a98f7b;
  height: 26px;
  place-content: center;
  line-height: 1;
}
.sec-6 .slw_wrap {
  position: relative;
}
.sec-6 .slw {
  overflow: hidden;
  width: 90%;
  margin: 0 auto;
}
.sec-6 .swiper_co1 {
  font-size: 12.5px;
}
.sec-6 .swiper_co1 img {
  width: 100%;
}
.sec-6 .swiper_co1 .imgww {
  position: relative;
  margin-bottom: 10px;
}
.sec-6 .swiper_co1 .nm {
  position: absolute;
  left: 0;
  bottom: 0;
  background: white;
  width: 101px;
  height: 29px;
  text-align: center;
  place-content: center;
  border: 1.5px solid #a98f7b;
  box-sizing: border-box;
}
.sec-6 .nv {
  position: absolute;
  width: 100%;
  top: 30%;
}
.sec-6 .swiper-button-next, .sec-6 .swiper-button-prev {
  width: 23px;
  height: 23px;
  margin: 0;
}
.sec-6 .swiper-button-prev, .sec-6 .swiper-rtl .swiper-button-next {
  left: 5px;
  right: auto;
}
.sec-6 .swiper-button-next, .sec-6 .swiper-rtl .swiper-button-prev {
  right: 5px;
  left: auto;
}

.pr2 {
  margin-top: 70px;
}

.sec-7, .sec-8 {
  padding-top: 60px;
}
.sec-7 .inner, .sec-8 .inner {
  background: url("../images/bg1.jpg") top center/cover;
  background-size: 100% auto;
  position: relative;
  border-radius: 187.5px;
  overflow: hidden;
  border: 2px solid #a98f7b;
  box-sizing: border-box;
  padding: 70px 0 95px 0;
}
.sec-7 .k1, .sec-8 .k1 {
  margin-bottom: 0;
}
.sec-7 .stp-bx, .sec-8 .stp-bx {
  text-align: center;
  margin-top: 30px;
}
.sec-7 .stp-bx h3, .sec-8 .stp-bx h3 {
  display: inline-block;
  font-size: 22px;
  line-height: 1;
  padding: 0 8px 4px 8px;
  box-sizing: border-box;
  background: linear-gradient(transparent 60%, rgba(176, 35, 125, 0.6) 60%);
}
.sec-7 .stp-bx .lead, .sec-8 .stp-bx .lead {
  margin-top: 15px;
}
.sec-7 .stp-bx .lead2, .sec-8 .stp-bx .lead2 {
  font-size: 12.5px;
  margin-top: 25px;
}
.sec-7 .stp-bx .img, .sec-8 .stp-bx .img {
  width: 46%;
  margin: 25px auto 0 auto;
}
.sec-7 .arw, .sec-8 .arw {
  width: 24px;
  line-height: 1;
  margin: 30px auto;
}
@media all and (max-width: 767px) {
  .sec-7, .sec-8 {
    position: relative;
    z-index: 1;
  }
}

.sec-7 a {
  text-decoration: underline;
}

.sec-8 {
  padding-top: 45px;
  padding-bottom: 50px;
}
.sec-8 .at-wrap {
  width: 86%;
  margin: 50px auto 0 auto;
}
.sec-8 .at-wrap .at-bx {
  margin-bottom: 15px;
}
.sec-8 .at-wrap .at-bx:last-of-type {
  margin-bottom: 0;
}
.sec-8 .at-wrap .plus {
  width: 13px;
  height: 13px;
  position: absolute;
  right: 0;
  top: 0;
  right: 12px;
  top: 12px;
  transition: all 0.3s ease;
}
.sec-8 .at-wrap .plus:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -0.5px;
  width: 1px;
  height: 100%;
  background: white;
}
.sec-8 .at-wrap .plus:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -0.5px;
  width: 100%;
  height: 1px;
  background: white;
  transition: all 0.3s ease;
}
.sec-8 .at-wrap .q {
  background: #a98f7b;
  color: white;
  height: 36px;
  text-align: center;
  place-content: center;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
}
.sec-8 .at-wrap .q.open .plus {
  transform: rotate(180deg);
}
.sec-8 .at-wrap .q.open .plus:before {
  opacity: 0;
}
.sec-8 .at-wrap .a {
  font-size: 12.5px;
}
.sec-8 .at-wrap .a .fb1 {
  font-size: 14px;
  font-weight: bold;
  margin-top: 20px;
}
.sec-8 .at-wrap .a .fb1:nth-of-type(1) {
  margin-top: 0;
}
.sec-8 .at-wrap .a .fb2 {
  font-size: 14px;
  margin: 10px 0;
}
.sec-8 .at-wrap .a .dts {
  position: relative;
  padding-left: 8px;
}
.sec-8 .at-wrap .a .dts:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background: #a98f7b;
}
.sec-8 .at-wrap .a a {
  text-decoration: underline;
}
.sec-8 .at-wrap .a-inner {
  padding: 20px 0; /* ここで余白を調整 */
}

footer {
  background: url("../images/bg1.jpg") center center/cover;
  padding: 25px 0 65px 0;
  box-sizing: border-box;
  text-align: center;
}
footer .lead {
  font-size: 12.5px;
  margin-top: 25px;
}
footer .lead a {
  text-decoration: underline;
  line-height: 2.2;
}
@media all and (max-width: 767px) {
  footer {
    position: relative;
    z-index: 1;
  }
}

.float, .float2, .float3, .float4, .float5 {
  opacity: 0;
  transform: translateY(10px);
  transition: all 2s cubic-bezier(0.33, 1, 0.68, 1);
  filter: blur(2em);
}
.float.trigger, .float2.trigger, .float3.trigger, .float4.trigger, .float5.trigger {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.float, .float2, .float3, .float4, .float5 {
  animation: float 2s linear infinite alternate;
}

.float2 {
  animation: float2 3s 0.1s linear infinite alternate;
}

.float3 {
  animation: float 2s 0.2s linear infinite alternate;
}

.float4 {
  animation: float2 3s 0.4s linear infinite alternate;
}

.float5 {
  animation: float 2s 0.5s linear infinite alternate;
}

@keyframes float {
  0% {
    transform: translateY(6px);
  }
  100% {
    transform: translateY(-6px);
  }
}
@keyframes float2 {
  0% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(-4px);
  }
}

/*# sourceMappingURL=base.css.map */
