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

* {
  margin: 0;
}

html,
body {
  font-size: 16px;
}

html {
  min-height: 100%;
}

body {
  font-family: "Zen Old Mincho", serif;
  color: #333333;
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
}

.c-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-sp {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  br.c-sp {
    display: inline;
  }
}

@media screen and (max-width: 768px) {
  .c-pc {
    display: none;
  }
}

.anim-shine {
  position: relative;
  overflow: hidden;
}
.anim-shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.3;
  transform: skewX(-20deg);
}
.anim-shine.js-animate::after {
  animation-name: keyShine;
  animation-duration: 1.5s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

@keyframes keyShine {
  0% {
    left: -60%;
  }
  100% {
    left: 160%;
  }
}
.anim-scale-in {
  opacity: 0;
  transform: scale(1.05);
}
.anim-scale-in.js-animate {
  animation-name: keyScaleIn;
  animation-duration: 5s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: forwards;
}

@keyframes keyScaleIn {
  0% {
    opacity: 0;
    transform: scale(1.15);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.anim-fade-in-left {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
}
.anim-fade-in-left.js-animate {
  animation-name: keyFadeInLeft;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: forwards;
}

@keyframes keyFadeInLeft {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}
.anim-fade-in-right {
  opacity: 0;
  clip-path: inset(0 0 0 100%);
}
.anim-fade-in-right.js-animate {
  animation-name: keyFadeInRight;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: forwards;
}

@keyframes keyFadeInRight {
  0% {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}
.anim-fade-in-up {
  opacity: 0;
  transform: translateY(5%);
}
.anim-fade-in-up.js-animate {
  animation-name: keyFadeInUp;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: forwards;
}

@keyframes keyFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(5%);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.anim-from-btm {
  overflow: hidden;
}
.anim-from-btm > * {
  transform: translateY(101%);
}

.anim-from-btm.js-animate > *,
.js-animate > .anim-from-btm > * {
  animation: 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards keyFromBtm;
}

@keyframes keyFromBtm {
  0% {
    opacity: 0;
    transform: translateY(101%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.anim-fade-in-blur {
  filter: blur(2vw);
  opacity: 0;
}
.anim-fade-in-blur.js-animate {
  animation-name: keyFadeInBlur;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  animation-fill-mode: forwards;
}

@keyframes keyFadeInBlur {
  0% {
    opacity: 0;
    filter: blur(2vw);
  }
  99% {
    filter: blur(0);
  }
  100% {
    opacity: 1;
    filter: none;
  }
}
@keyframes mvBg {
  0% {
    opacity: 0;
    transform: scale(1.15);
    filter: blur(1.5vw);
  }
  20% {
    opacity: 1;
    filter: blur(0);
  }
  30% {
    filter: blur(0);
  }
  31% {
    filter: none;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.mv__main {
  position: relative;
}
.mv__bg::after {
  opacity: 0.2;
  animation-delay: 0.5s;
}
.mv.js-animate .mv__bg::after {
  animation-name: keyShine;
  animation-duration: 1.5s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
.mv__bg img {
  width: 100%;
  opacity: 0;
  transform: scale(1.2);
}
.mv.js-animate .mv__bg img {
  animation: mvBg 5s cubic-bezier(0, 0.34, 0.39, 0.65) forwards;
}
.mv__ttl {
  position: absolute;
  top: 13.3vw;
  left: 45.7vw;
}
@media screen and (max-width: 768px) {
  .mv__ttl {
    position: relative;
    top: auto;
    left: auto;
  }
}
.mv__ttl img.mv__ttl-img {
  opacity: 0;
  transform: translateY(15%);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.mv.js-animate .mv__ttl img.mv__ttl-img {
  opacity: 1;
  transform: translateY(0);
}
.mv__ttl img.mv__ttl-img--1 {
  transition-delay: 0.95s;
}
.mv__ttl img.mv__ttl-img--2 {
  transition-delay: 1.1s;
}
.mv__ttl img.mv__ttl-img--3 {
  transition-delay: 1.25s;
}
.mv__ttl img.mv__ttl-img--4 {
  transition-delay: 1.4s;
}
.mv__ttl img.mv__ttl-img--5 {
  transition-delay: 1.55s;
}
.mv__ttl img.mv__ttl-img--6 {
  transition-delay: 1.7s;
}
.mv__ttl img.mv__ttl-img--7 {
  transition-delay: 1.85s;
}
.mv__ttl img.mv__ttl-img--8 {
  transition-delay: 2s;
}
.mv__ttl img.mv__ttl-img--9 {
  transition-delay: 2.15s;
}
.mv__ttl img.mv__ttl-img--10 {
  transition-delay: 2.3s;
}
.mv__ttl img.mv__ttl-img--11 {
  transition-delay: 2.45s;
}
.mv__ttl img.mv__ttl-img--12 {
  transition-delay: 2.6s;
}
.mv__ttl-01 {
  display: flex;
}
@media screen and (max-width: 768px) {
  .mv__ttl-01 {
    margin-top: 8vw;
    margin-left: 4.53vw;
  }
}
.mv__ttl-01 img {
  height: 5.18vw;
  width: auto;
}
@media screen and (max-width: 768px) {
  .mv__ttl-01 img {
    height: 8.91vw;
  }
}
.mv__ttl-wrap {
  display: flex;
  margin-top: 2.2vw;
  margin-left: 7.6vw;
}
@media screen and (max-width: 768px) {
  .mv__ttl-wrap {
    margin-top: 4.26vw;
    margin-left: 10.13vw;
  }
}
.mv__ttl-02, .mv__ttl-03 {
  display: flex;
}
.mv__ttl-02 img, .mv__ttl-03 img {
  height: 6.35vw;
  width: auto;
}
@media screen and (max-width: 768px) {
  .mv__ttl-02 img, .mv__ttl-03 img {
    height: 13.21vw;
  }
}
.mv__en {
  margin-top: 5.33vw;
  position: absolute;
  left: 62vw;
  top: 28.8Vw;
}
@media screen and (max-width: 768px) {
  .mv__en {
    position: relative;
    left: auto;
    top: auto;
  }
}
.mv.js-animate .mv__en picture {
  animation-name: keyFadeInLeft;
  animation-duration: 1s;
  animation-delay: 2.5s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.mv__en img {
  width: 25.02vw;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .mv__en img {
    width: 37.5vw;
  }
}
.mv__logo {
  position: absolute;
  right: 1.46vw;
  top: 1.46vw;
}
@media screen and (max-width: 768px) {
  .mv__logo {
    right: 3.2vw;
    top: 3.46vw;
  }
}
.mv__logo img {
  width: 5.85vw;
}
@media screen and (max-width: 768px) {
  .mv__logo img {
    width: 17.59vw;
  }
}
.mv__text {
  margin-top: min(6.29vw, 86px);
  font-size: 1.12rem;
  font-size: clamp(1.12rem, 0.97rem + 0.1805054152vw, 1.18rem); /* 18px @1366px - 19px @1920px */
  line-height: 3.111;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .mv__text {
    margin-top: 87px;
    font-size: 1rem;
    font-size: clamp(1rem, 0.88rem + 0.5089058524vw, 1.12rem); /* 16px @375px - 18px @768px */
    line-height: 2.188;
  }
}
.mv__text p {
  width: max-content;
  display: inline-block;
  max-width: 100%;
}

.index {
  margin-top: 84px;
}
@media screen and (max-width: 768px) {
  .index {
    margin-top: 71px;
  }
}
.index__list {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-left: 0;
  list-style-type: none;
  width: clamp(680px, 49.78vw, 956.16px);
  gap: 0 5.88%;
}
@media screen and (max-width: 768px) {
  .index__list {
    width: 100%;
    gap: 0 1.5vw;
  }
}
.index__item a {
  display: block;
  text-decoration: none !important;
}
.index__img {
  overflow: hidden;
  position: relative;
}
.index__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transform: skewX(-20deg);
}
.index a:hover .index__img::after {
  animation-name: keyShine;
  animation-duration: 0.8s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  opacity: 0.3;
}
.index__img img {
  width: 100%;
}
.index__name {
  margin-top: 8.5%;
}
.index__name img {
  margin-inline: auto;
  width: 75%;
}
@media screen and (max-width: 768px) {
  .index__name img {
    width: 100%;
    max-width: 190px;
  }
}

.sec-header {
  margin-top: clamp(100px, 9.51vw, 182.4px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec-header {
    margin-top: max(54px, 14.4vw);
    padding-block: 40px 50px;
  }
}
#summer .sec-header {
  margin-top: clamp(100px, 11.71vw, 224.64px);
}
@media screen and (max-width: 768px) {
  #summer .sec-header {
    margin-top: max(58px, 15.46vw);
  }
}
.sec-header__bg {
  position: absolute;
  inset: 0;
  margin-block: 3.66%;
  background-color: #F4F9FF;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .sec-header__bg {
    margin-block: 0;
  }
}
.sec-header__slice {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(222 233 244 / 100) 0%, rgb(222 233 244 / 0.04) 20%, rgb(222 233 244 / 0) 60%);
  transform: skew(0, 7deg) translateY(40%);
  opacity: 0.35;
}
@media screen and (max-width: 768px) {
  .sec-header__slice {
    transform: skew(0, 7deg) translateY(45%);
  }
}
.sec-header__ctt {
  display: flex;
  align-items: center;
  position: relative;
  width: 1920px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sec-header__ctt {
    flex-direction: column;
    row-gap: 33px;
  }
}
.sec-header__txt-col {
  flex: 1;
  margin-left: 2.92%;
}
@media screen and (max-width: 768px) {
  .sec-header__txt-col {
    margin-left: 0;
  }
}
.sec-header__ttl {
  margin-block: 0.3em 1.1em;
  font-size: clamp(2.12rem, 1.2rem + 1.083032491vw, 2.5rem);
  letter-spacing: 0.2em;
  text-align: center;
  font-weight: normal;
}
@media screen and (max-width: 1365px) {
  .sec-header__ttl {
    font-size: 1.5rem;
    font-size: clamp(1.5rem, 0.69rem + 1.675041876vw, 2.12rem); /* 24px @768px - 34px @1365px */
  }
}
@media screen and (max-width: 768px) {
  .sec-header__ttl {
    margin-block: 0 0.8em;
    font-size: 2.12rem;
    line-height: 1.647;
    letter-spacing: 0.1em;
  }
}
.sec-header__desc {
  font-size: clamp(1.12rem, 0.5rem + 0.7220216606vw, 1.37rem);
  line-height: 2.222;
  text-align: center;
}
@media screen and (max-width: 1365px) {
  .sec-header__desc {
    font-size: 0.87rem;
    font-size: clamp(0.87rem, 0.55rem + 0.6700167504vw, 1.12rem); /* 14px @768px - 18px @1365px */
  }
}
@media screen and (max-width: 768px) {
  .sec-header__desc {
    font-size: 1.12rem;
    line-height: 2;
  }
}
.sec-header__img-col {
  width: 36.6%;
  margin-right: 8.78%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec-header__img-col {
    width: min(84vw, 450px);
    margin-right: 0;
  }
}
.sec-header__img-col::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 0.16);
  transform: translate(0.8%, 0.8%);
}
@media screen and (max-width: 768px) {
  .sec-header__img-col::before {
    transform: translate(1.26%, 1.26%);
  }
}
.sec-header__img-col picture::after {
  animation-delay: 0.4s;
}
.sec-header__img-col img {
  width: 100%;
  position: relative;
}

.sec#shiny .sec-header__bg {
  background-color: #FFF5F5;
}
.sec#shiny .sec-header__slice {
  background: linear-gradient(180deg, rgb(255 234 232 / 100) 0%, rgb(244 229 228 / 0) 60%);
  opacity: 0.66;
}
.sec#shiny .item__photo-col {
  width: 40.99%;
}
@media screen and (max-width: 768px) {
  .sec#shiny .item__photo-col {
    width: 100%;
  }
}
.sec#shiny .link__list--main {
  --link-bg-color: #F4E5E4;
  --link-border-color: #F4E5E4;
  --link-bg-color-hover: #F4E5E4;
  --link-border-color-hover: #F4E5E4;
}

.sec#georgette .sec-header__bg {
  background-color: #F5F4F2;
}
.sec#georgette .sec-header__slice {
  background: linear-gradient(180deg, rgb(237 232 225 / 100) 0%, rgb(237 232 225 / 0.1) 50%, rgb(237 232 225 / 0) 60%);
  opacity: 0.66;
}
.sec#georgette .item__photo-col {
  width: 40.99%;
}
@media screen and (max-width: 768px) {
  .sec#georgette .item__photo-col {
    width: 100%;
  }
}
.sec#georgette .link__list--main {
  --link-bg-color: #EDE8E1;
  --link-border-color: #EDE8E1;
  --link-bg-color-hover: #EDE8E1;
  --link-border-color-hover: #EDE8E1;
}

.item {
  display: flex;
  align-items: flex-start;
  margin-top: clamp(100px, 13.17vw, 253.44px);
}
@media screen and (max-width: 768px) {
  .item {
    position: relative;
    flex-direction: column;
    margin-top: max(52px, 13.86vw);
  }
}
.item:first-of-type {
  margin-top: clamp(100px, 11.71vw, 224.64px);
}
@media screen and (max-width: 768px) {
  .item:first-of-type {
    margin-top: 64px;
  }
}
.item__txt-col {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .item__txt-col {
    width: 100%;
  }
}
.item__photo-col {
  width: 42.24%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .item__photo-col {
    width: 100%;
    margin-top: min(23.73vw, 118.5px);
  }
}
.item__photo-col a {
  display: block;
}
.item__photo-col img {
  width: 100%;
}
.item__header {
  position: relative;
  margin: -1.5% 0 0;
  flex-direction: row-reverse;
  padding-inline: 0 10.24vw;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 3%;
  display: flex;
  gap: 0 min(1.09vw, 21.12px);
}
@media screen and (max-width: 860px) {
  .item__header {
    padding-right: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .item__header {
    position: absolute;
    top: 0;
    left: 50%;
    right: 0;
    transform: translateX(-50%);
    flex-direction: row;
    padding-inline: 0;
    width: min(89.86vw, 449.5px);
    max-width: 100%;
  }
}
.item__header::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #E3E3E3;
  width: 100%;
  height: 1px;
  transform: scale(0, 1);
  transform-origin: right center;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}
@media screen and (max-width: 768px) {
  .item__header::before {
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
  }
}
.item__header.js-animate::before {
  transform: scale(1, 1);
}
@media screen and (max-width: 768px) {
  .item__header.js-animate::before {
    transform: translateX(-50%) scale(1, 1);
  }
}
.item__num img {
  height: clamp(40px, 4.09vw, 78.72px);
  width: auto;
}
@media screen and (max-width: 768px) {
  .item__num img {
    height: min(10vw, 50px);
  }
}
.item__ttl {
  transform: translateY(26%);
}
@media screen and (max-width: 768px) {
  .item__ttl {
    margin-left: 1.4vw;
  }
}
.item__ttl img {
  height: clamp(43px, 4.39vw, 84.48px);
  width: auto;
}
@media screen and (max-width: 768px) {
  .item__ttl img {
    height: min(10vw, 50px);
  }
}
.item__info {
  margin: 52px auto 0;
  width: clamp(320px, 32.21vw, 618.24px);
}
@media screen and (max-width: 768px) {
  .item__info {
    width: 670px;
    max-width: 100%;
    padding: 0 8vw;
    margin-top: 36px;
  }
}
.item__desc {
  margin-right: min(-122.88px, -6.45vw);
  font-size: 1.12rem;
  font-size: clamp(1.12rem, 0.5rem + 0.7220216606vw, 1.37rem); /* 18px @1366px - 22px @1920px */
  line-height: 2.444;
}
@media screen and (max-width: 1365px) {
  .item__desc {
    font-size: 0.93rem;
    font-size: clamp(0.93rem, 0.69rem + 0.5025125628vw, 1.12rem); /* 15px @768px - 18px @1365px */
  }
}
@media screen and (max-width: 1000px) {
  .item__desc {
    margin-right: -2vw;
  }
}
@media screen and (max-width: 768px) {
  .item__desc {
    margin-right: 0;
    font-size: 1rem;
    font-size: clamp(1rem, 0.88rem + 0.5089058524vw, 1.12rem); /* 16px @375px - 18px @768px */
    line-height: 1.75;
  }
}
.item__desc p {
  width: max-content;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .item__desc br {
    display: none;
  }
}
.item .link {
  width: 100%;
  margin-top: min(3.66vw, 71.04px);
}
@media screen and (max-width: 768px) {
  .item .link {
    margin-top: 38px;
  }
}
.item--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .item--reverse {
    flex-direction: column;
  }
}
.item--reverse .item__header {
  flex-direction: row;
  padding-left: 7.2vw;
}
@media screen and (max-width: 860px) {
  .item--reverse .item__header {
    padding-left: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .item--reverse .item__header {
    padding-left: 0;
  }
}
.item--summer-01 .item__header {
  margin-top: 2vw;
}
@media screen and (max-width: 768px) {
  .item--summer-01 .item__header {
    margin-top: 0;
  }
}
.item--summer-02 .item__header {
  margin-top: 2.41vw;
  padding-inline: 0 10.24vw;
}
@media screen and (max-width: 768px) {
  .item--summer-02 .item__header {
    margin-top: 0;
    padding-inline: 0;
  }
}

.link {
  --link-text-color: #333;
  --link-bg-color: #DEE9F4;
  --link-border-color: #DEE9F4;
  --link-text-color-hover: #333;
  --link-bg-color-hover: #DEE9F4;
  --link-border-color-hover: #DEE9F4;
  --link-arrow-url: url("../img/link_arrow_black.svg");
}
.link__list {
  padding-left: 0;
  list-style-type: none;
  font-size: clamp(0.87rem, 0.56rem + 0.3610108303vw, 1rem);
}
@media screen and (max-width: 768px) {
  .link__list {
    font-size: 0.87rem;
    font-size: 0.87rem;
    font-size: clamp(0.87rem, 0.81rem + 0.2544529262vw, 0.93rem); /* 14px @375px - 15px @768px */
  }
}
.link__item {
  padding-bottom: 0.64em;
  font-size: inherit;
  position: relative;
  opacity: 0;
  left: -0.8em;
  top: -0.3em;
  transition: opacity 1.2s ease, left 0.6s ease, top 0.6s ease;
  will-change: opacity, left;
}
.link__item:nth-child(0) {
  transition-delay: 0s;
}
.link__list--sub .link__item:nth-child(0) {
  transition-delay: 0.3s;
}
.link__item:nth-child(1) {
  transition-delay: 0.1s;
}
.link__list--sub .link__item:nth-child(1) {
  transition-delay: 0.4s;
}
.link__item:nth-child(2) {
  transition-delay: 0.2s;
}
.link__list--sub .link__item:nth-child(2) {
  transition-delay: 0.5s;
}
.link__item:nth-child(3) {
  transition-delay: 0.3s;
}
.link__list--sub .link__item:nth-child(3) {
  transition-delay: 0.6s;
}
.link__item:nth-child(4) {
  transition-delay: 0.4s;
}
.link__list--sub .link__item:nth-child(4) {
  transition-delay: 0.7s;
}
.link__item:nth-child(5) {
  transition-delay: 0.5s;
}
.link__list--sub .link__item:nth-child(5) {
  transition-delay: 0.8s;
}
.link__item:nth-child(6) {
  transition-delay: 0.6s;
}
.link__list--sub .link__item:nth-child(6) {
  transition-delay: 0.9s;
}
.link__item:nth-child(7) {
  transition-delay: 0.7s;
}
.link__list--sub .link__item:nth-child(7) {
  transition-delay: 1s;
}
.link__item:nth-child(8) {
  transition-delay: 0.8s;
}
.link__list--sub .link__item:nth-child(8) {
  transition-delay: 1.1s;
}
.link__item:nth-child(9) {
  transition-delay: 0.9s;
}
.link__list--sub .link__item:nth-child(9) {
  transition-delay: 1.2s;
}
.link__item:nth-child(10) {
  transition-delay: 1s;
}
.link__list--sub .link__item:nth-child(10) {
  transition-delay: 1.3s;
}
.link.js-animate .link__item {
  opacity: 1;
  top: 0;
  left: 0;
}
.link a {
  font-size: inherit;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.link a > span {
  display: inline-block;
}
.link__name {
  flex: 1;
  font-size: inherit;
}
.link__price {
  position: relative;
  margin-right: 0.31em;
  font-size: 1.14em;
  text-align: right;
}
.link__item--l .link__price, .link__item--s .link__price {
  min-width: 5.37em;
}
.link__price::before {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: 0.06em;
  transform: translateY(-50%);
  display: block;
  width: 0.93em;
  height: 0.93em;
  background: center center/contain no-repeat none;
}
.link__item--l .link__price::before {
  content: "";
  background-image: url("../img/link_l.svg");
}
.link__item--s .link__price::before {
  content: "";
  background-image: url("../img/link_s.svg");
}
.link__tax {
  margin-right: 1.18em;
  font-size: 0.78em;
}
.link__btn {
  position: relative;
  width: 7.81em;
  height: 2.54em;
  font-size: 0.78em;
  letter-spacing: 0.05em;
  background-color: var(--link-bg-color);
  border: 1px solid var(--link-border-color);
  text-align: center;
  line-height: 2.36em;
  color: var(--link-text-color);
  transition: padding-right 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.link__btn::before {
  content: "";
  display: block;
  width: 1.16em;
  height: 0.36em;
  background: center center/contain no-repeat var(--link-arrow-url);
  position: absolute;
  top: 50%;
  right: 1.1em;
  opacity: 0;
  transform: translate(0, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.link a:hover .link__btn {
  padding-right: 1.1em;
  color: var(--link-text-color-hover);
  background-color: var(--link-bg-color-hover);
  border-color: var(--link-border-color-hover);
}
.link a:hover .link__btn::before {
  transform: translate(0.3em, -50%);
  opacity: 1;
}
.link__list--sub {
  position: relative;
  margin-top: 0.28em;
  padding-top: 0.85em;
  --link-text-color: #333;
  --link-bg-color: #fff;
  --link-border-color: #625549;
  --link-text-color-hover: #fff;
  --link-bg-color-hover: #625549;
  --link-border-color-hover: #625549;
  --link-arrow-url: url("../img/link_arrow_white.svg");
}
.link__list--sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  opacity: 0;
  display: block;
  height: 1px;
  background-color: #E3E3E3;
  transition: right 1.2s cubic-bezier(0, 0.55, 0.45, 1) 0.3s, opacity 0.1s linear;
}
.link.js-animate .link__list--sub::before {
  right: 0;
  opacity: 1;
}

.flex-box {
  display: flex;
}

.flex-box-reverse {
  flex-direction: row-reverse;
}

.slide-box {
  overflow: hidden;
}

/* end-block------------------ */
.end-block {
  position: relative;
  margin-top: 0;
  background-color: #fff;
  overflow: hidden;
}

.end-block .bgi-photo {
  position: absolute;
  top: 0;
  left: 0;
}

/*banner-block-----------------------------*/
.banner-block {
  margin: 21% auto 51px;
  position: relative;
}

.banner-block a {
  display: block;
  transition: 0.6s ease-in-out;
}

.banner-block a:hover {
  background: rgba(255, 255, 255, 0.4);
}

.banner-block .c-btn01 {
  width: 36%;
  min-width: 600px;
  margin: 0 auto 1rem;
  border: 1px solid #000;
  transition: 0.3s;
  display: block;
}
.banner-block .c-btn01 img {
  width: 100%;
}

.banner-block .line {
  display: block;
  width: 100%;
  max-width: 1200px;
  height: 1px;
  margin: 5% auto 0;
  background: #000;
}

.banner-block .flex-box {
  padding-left: 0;
  justify-content: space-between;
  width: 36%;
  min-width: 600px;
  margin: 4.5% auto 0;
}

.banner-block .flex-box .c-btn01 {
  width: 48%;
  min-width: 290px;
  margin: 0;
}

/* ページトップボタン---------------------------- */
#pagetop {
  position: fixed;
  right: 15px;
  bottom: 15px;
  width: 50px;
  height: 50px;
  display: block;
  z-index: 99;
}

#pagetop .btn-loading {
  display: inline-flex;
  text-decoration: none;
  font-weight: 700;
  color: #111;
  width: 100%;
  height: 100%;
  position: relative;
  opacity: 1 !important;
  transition: all 0.3s;
  background-color: #CCC;
  border-radius: 100%;
  transition: color 0.2s;
  overflow: hidden;
}

#pagetop .btn-loading01:before,
#pagetop .btn-loading01:after {
  content: "";
  display: block;
  position: absolute;
  width: 50%;
  height: 0;
  background-color: #231815;
  pointer-events: none;
}

#pagetop .btn-loading:before {
  bottom: 0;
  left: 0;
}

#pagetop .btn-loading:after {
  top: 0;
  right: 0;
}

#pagetop:hover .btn-loading {
  color: #65A04D;
}

#pagetop:hover .btn-loading:before,
#pagetop:hover .btn-loading:after {
  height: 100%;
}

#pagetop:hover .btn-loading:before {
  transition: height 0.1s 0.1s linear;
}

#pagetop:hover .btn-loading:after {
  transition: height 0.1s linear;
}

#pagetop .btn-loading span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 1px);
  height: calc(100% - 1px);
  background-color: #FFF;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

#pagetop .btn-loading span img {
  width: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* フッター--------------------------------------------- */
.footer {
  letter-spacing: 0.3em;
  position: relative;
  text-align: center;
  padding: 0 0 30px 0;
}

.footer img {
  transition: 0.3s;
}

.footer img:hover {
  opacity: 0.6;
  transition: 0.3s;
}

.footer_sns .instagram {
  display: block;
  width: 2.34%;
  min-width: 30px;
  margin: 0 auto 2%;
  opacity: 1;
  transition: 0.3s;
}

.f-ow {
  width: 7.96%;
  min-width: 102px;
  margin: 25px auto 0 auto;
}

.footer_copyright {
  font-family: "Helvetica", sans-serif;
  font-size: max(0.6vw, 10px);
  letter-spacing: 0.02em;
  margin: 1.71% 0 0;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .flex-box {
    flex-direction: column;
  }
  /* バナー--------------------------- */
  .banner-block {
    margin-top: 104px;
    margin-bottom: 16vw;
  }
  .banner-block .c-btn01 {
    width: 80%;
    min-width: auto;
  }
  .banner-block .line {
    display: none;
  }
  .banner-block .flex-box {
    flex-direction: row;
    width: 80%;
    min-width: auto;
    margin: 0 auto;
  }
  .banner-block .flex-box .c-btn01 {
    min-width: auto;
  }
  /* ページトップボタン--------------------------- */
  #pagetop {
    position: fixed;
    right: 10px;
    bottom: 10px;
    width: 35px;
    height: 35px;
    display: block;
    z-index: 30;
  }
  #pagetop .btn-loading {
    display: inline-flex;
    text-decoration: none;
    font-weight: 700;
    color: #111;
    width: 100%;
    height: 100%;
    position: relative;
    opacity: 1 !important;
    transition: all 0.3s;
    background-color: #CCC;
    border-radius: 100%;
    transition: color 0.2s;
    overflow: hidden;
  }
  #pagetop .btn-loading01:before,
  #pagetop .btn-loading01:after {
    content: "";
    display: block;
    position: absolute;
    width: 50%;
    height: 0;
    background-color: #231815;
    pointer-events: none;
  }
  #pagetop .btn-loading:before {
    bottom: 0;
    left: 0;
  }
  #pagetop .btn-loading:after {
    top: 0;
    right: 0;
  }
  #pagetop:hover .btn-loading {
    color: #65A04D;
  }
  #pagetop:hover .btn-loading:before,
  #pagetop:hover .btn-loading:after {
    height: 100%;
  }
  #pagetop:hover .btn-loading:before {
    transition: height 0.1s 0.1s linear;
  }
  #pagetop:hover .btn-loading:after {
    transition: height 0.1s linear;
  }
  #pagetop .btn-loading span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 1px);
    height: calc(100% - 1px);
    background-color: #FFF;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
  }
  #pagetop .btn-loading span img {
    width: 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  /* フッター--------------------------- */
  .footer {
    padding-bottom: 20px;
  }
  .footer_sns {
    margin: 0 auto;
  }
  .footer_sns .instagram {
    width: 2.73%;
    min-width: 35px;
  }
  .f-ow {
    margin-top: 5.86vw;
    width: 9.37%;
    min-width: 120px;
  }
  .footer_copyright {
    margin-top: 5.33vw;
  }
  .footer_copyright img {
    width: 72vw;
  }
}
/*# sourceMappingURL=style.css.map */
