/*==================================================
sp pc
==================================================*/
@media all and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

@media all and (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}
@media all and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

/*--------------------------------------
l-opening
----------------------------------------*/
.l-opening {
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: var(--z-index-opening);
}
.l-opening__panel {
  background-color: var(--main-color);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  inset: 0;
  position: absolute;
  transform: translateZ(0);
  will-change: transform;
}

.is-opening .l-opening__panel {
  -webkit-animation: openingWipe 1.4s cubic-bezier(0.77, 0, 0.18, 1) forwards;
          animation: openingWipe 1.4s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}
.is-opening .js-page-in {
  -webkit-animation: openingPageIn 1s ease 1.6s forwards;
          animation: openingPageIn 1s ease 1.6s forwards;
}

.js .js-page-in {
  opacity: 0;
  visibility: hidden;
}

@-webkit-keyframes openingWipe {
  0%, 45% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(101%);
            transform: translateX(101%);
  }
}

@keyframes openingWipe {
  0%, 45% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(101%);
  }
}
@-webkit-keyframes openingPageIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(1.4rem);
            transform: translateY(1.4rem);
    visibility: visible;
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    visibility: visible;
  }
}

@keyframes openingPageIn {
  from {
    opacity: 0;
    transform: translateY(1.4rem);
    visibility: visible;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}
@media (prefers-reduced-motion: reduce) {
  .l-opening {
    display: none;
  }
  .js .js-page-in {
    opacity: 1;
    visibility: visible;
  }
}
/*--------------------------------------
hero
----------------------------------------*/
.noheader .l-wrapper {
  display: flex;
  flex-direction: column;
  height: 100dvh;
  overflow: hidden;
}

.p-hero {
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  position: relative;
}
.p-hero__head {
  background-color: #fff;
  position: relative;
  z-index: 3;
}
.p-hero__head-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 2rem 2.4rem;
}
@media all and (max-width: 768px) {
  .p-hero__head-inner {
    padding: 1.6rem 1.2rem;
  }
}
.p-hero__logo {
  display: inline-block;
}
.p-hero__logo img {
  height: 3rem;
  width: auto;
}
@media all and (max-width: 768px) {
  .p-hero__logo img {
    height: 2.8rem;
  }
}
.p-hero__official {
  align-items: center;
  background-color: var(--main-color);
  border: 1px solid transparent;
  color: #fff;
  display: inline-flex;
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
  gap: 0.8rem;
  height: 4.4rem;
  padding: 0 2rem;
}
@media all and (max-width: 768px) {
  .p-hero__official {
    font-size: 1.2rem;
    height: 3.6rem;
    padding: 0 1.4rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-hero__official {
    transition: background-color 0.2s, color 0.2s;
  }
  .p-hero__official:hover {
    background-color: #fff;
    border-color: var(--main-color);
    color: var(--main-color);
    opacity: 1;
  }
  .p-hero__official:hover .p-hero__official-ico {
    background-color: var(--main-color);
  }
}
.p-hero__official-ico {
  background-color: #fff;
  display: inline-block;
  height: 1.1rem;
  mask-image: url(/assets/img/ico-arrow-right.svg);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url(/assets/img/ico-arrow-right.svg);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  transition: background-color 0.2s;
  width: 1rem;
}
@media all and (min-width: 769px) {
  .p-hero {
    padding: 0 1.8rem 1.8rem;
  }
}
@media all and (max-width: 768px) {
  .p-hero {
    flex-direction: column;
    padding: 0 1rem 1rem;
  }
}
.p-hero__panel {
  flex: 1 1 50%;
  overflow: hidden;
  position: relative;
}
.p-hero__panel--beach {
  border-radius: 1rem 0 0 1rem;
}
@media all and (max-width: 768px) {
  .p-hero__panel--beach {
    border-radius: 0 0 1rem 1rem;
    order: 2;
  }
}
.p-hero__panel--hill {
  border-radius: 0 1rem 1rem 0;
}
@media all and (max-width: 768px) {
  .p-hero__panel--hill {
    border-radius: 1rem 1rem 0 0;
    order: 1;
  }
  .p-hero__panel--hill .p-hero__panel-img {
    -o-object-position: center 10%;
       object-position: center 10%;
  }
}
.p-hero__panel-img {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: block;
  height: 100%;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  position: absolute;
  scale: 1;
  transition: opacity 2.25s ease;
  width: 100%;
  will-change: opacity, scale;
  z-index: 1;
}
.p-hero__panel-img.is-active {
  opacity: 1;
  z-index: 2;
}
.p-hero__panel-img.is-leaving {
  opacity: 0;
  z-index: 1;
}
.p-hero__panel-img.is-zooming {
  -webkit-animation: p-hero-zoom 7s linear both;
          animation: p-hero-zoom 7s linear both;
}
.p-hero__panel-img.is-zooming.js-hero-first-zoom {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.p-hero__circle {
  aspect-ratio: 1/1;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(49rem, 35.5vw, 64rem);
  z-index: 3;
}
@media all and (max-width: 768px) {
  .p-hero__circle {
    width: clamp(33rem, 93vw, 40.5rem);
  }
}
.p-hero__ring {
  -webkit-animation: p-hero-ring-rotate-left 45s linear infinite;
          animation: p-hero-ring-rotate-left 45s linear infinite;
  height: clamp(70rem, 60vw, 110rem);
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(70rem, 60vw, 110rem);
}
@media all and (max-width: 768px) {
  .p-hero__ring {
    height: clamp(30rem, 82vw, 42rem);
    width: clamp(30rem, 82vw, 42rem);
  }
}
.p-hero__badge {
  align-items: center;
  background-color: #FFFBF1;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 68%;
  justify-content: center;
  left: 50%;
  padding: 2rem;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 68%;
}
@media (hover: hover) and (pointer: fine) {
  .p-hero__badge:hover {
    opacity: 1;
  }
}
.p-hero__badge-ring {
  background-color: var(--main-color);
  height: 135%;
  left: 50%;
  mask-image: url(/assets/img/circle_2.svg);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  -webkit-mask-image: url(/assets/img/circle_2.svg);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  -webkit-animation: p-hero-ring-rotate-right 45s linear infinite;
          animation: p-hero-ring-rotate-right 45s linear infinite;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 135%;
  z-index: 0;
}
.p-hero__catch {
  height: auto;
  line-height: 0;
  position: relative;
  width: 18vw;
  z-index: 1;
}
.p-hero__catch img {
  height: auto;
  width: 100%;
}
@media all and (max-width: 768px) {
  .p-hero__catch {
    width: clamp(15rem, 56vw, 20rem);
  }
}
.p-hero__btn {
  align-items: center;
  background-color: #fff;
  border: 1px solid #1A1311;
  box-shadow: 0 0.5rem 0.1rem rgba(152, 141, 126, 0.5);
  display: inline-flex;
  flex: none;
  gap: 1.6rem;
  justify-content: center;
  margin-top: 3.2rem;
  padding: 1.4rem 2rem 1.4rem 4rem;
  position: relative;
  white-space: nowrap;
  width: max-content;
  z-index: 1;
}
@media all and (max-width: 768px) {
  .p-hero__btn {
    margin-top: 2rem;
    min-width: 20rem;
    padding: 1.1rem 0.4rem 1.1rem 2.6rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-hero__btn {
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .p-hero__btn:hover {
    box-shadow: 0 0 0 rgba(152, 141, 126, 0.5);
    opacity: 1;
    transform: translateY(0.5rem);
  }
}
.p-hero__btn-body {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media all and (max-width: 768px) {
  .p-hero__btn-body {
    gap: 0.4rem;
  }
}
.p-hero__btn-logo {
  height: auto;
  width: clamp(13rem, 11vw, 17rem);
}
@media all and (max-width: 768px) {
  .p-hero__btn-logo {
    width: clamp(9rem, 28vw, 15rem);
  }
}
.p-hero__btn-sub {
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
}
@media all and (max-width: 768px) {
  .p-hero__btn-sub {
    font-size: 1.2rem;
  }
}
.p-hero__btn-ico {
  background-color: #1A1311;
  display: inline-block;
  flex: none;
  height: clamp(1.4rem, 1.2vw, 1.6rem);
  mask-image: url(/assets/img/ico-arrow-right.svg);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url(/assets/img/ico-arrow-right.svg);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  width: clamp(1.4rem, 1.2vw, 1.6rem);
}
@media all and (max-width: 768px) {
  .p-hero__btn-ico {
    height: 1.4rem;
    width: 1.4rem;
  }
}

@-webkit-keyframes p-hero-zoom {
  from {
    scale: 1;
  }
  to {
    scale: 1.08;
  }
}

@keyframes p-hero-zoom {
  from {
    scale: 1;
  }
  to {
    scale: 1.08;
  }
}
@-webkit-keyframes p-hero-ring-rotate-left {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
            transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes p-hero-ring-rotate-left {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@-webkit-keyframes p-hero-ring-rotate-right {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes p-hero-ring-rotate-right {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/*--------------------
read-ttl
--------------------*/
.p-sec.m-block-space-l {
  margin-bottom: 3em;
}
@media all and (min-width: 769px) {
  .p-sec.m-block-space-l {
    padding-bottom: 1em;
  }
}

/*--------------------
bnr
--------------------*/
.p-bnr {
  margin-bottom: 10rem;
}
.p-bnr-btn-wrap {
  width: 100%;
  max-width: 943px;
  margin: 0 auto;
}

/*--------------------------------------
brand
----------------------------------------*/
.brands {
  display: grid;
  gap: 3.5rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
}
@media all and (max-width: 1280px) {
  .brands {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-width: 768px) {
  .brands {
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }
}

.brand {
  background-color: #fff;
  border-radius: 0.8rem;
  box-shadow: 0 0 1.6rem rgba(142, 126, 102, 0.3);
  padding: 3rem;
  scroll-margin-top: 15rem;
}
@media all and (max-width: 768px) {
  .brand {
    padding: 2rem;
  }
}
.brand__logo {
  display: block;
  text-align: center;
}
.brand__logo:hover .brand__logo-img {
  transform: scale(1.08);
}
.brand__logo-img {
  max-width: 20rem;
  width: 100%;
  transition: transform 0.3s ease;
}
.brand__logo-name {
  display: block;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-top: 0.5em;
}
.brand__btns {
  display: grid;
  gap: 1em;
  justify-items: center;
  margin-top: 1.5em;
  text-align: center;
}
.brand__btns .m-btn {
  max-width: 26rem;
  width: 100%;
}
