:root {
  --color-black: #333333;
  --color-white: #ffffff;
  --color-primary: #FF7700;
  --color-secondary: #005E8D;
  --color-border: #555555;
}

/*----------------------------------------

	top CSS

-----------------------------------------*/
/*----------------------------------------
	common
-----------------------------------------*/
#wrapper::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -100;
  background: url("../img/top/bg.webp") left top/cover no-repeat;
}
@media print, screen and (min-width: 960px ) {
  #wrapper::before {
    background-position: center top;
  }
}

/*----------------------------------------
	mv
-----------------------------------------*/
.mv {
  position: relative;
  margin: 0 0 40rem;
  padding: 106rem 0 0;
}
@media print, screen and (min-width: 960px ) {
  .mv {
    margin-bottom: 0;
    padding-top: 8%;
  }
}
.mv__bg {
  display: block;
  position: absolute;
  top: 70rem;
  left: 0;
  width: 100%;
  height: 316rem;
  background: transparent;
  -webkit-transition: background 0.3s cubic-bezier(0.22, 0.39, 0.89, 0.2);
  transition: background 0.3s cubic-bezier(0.22, 0.39, 0.89, 0.2);
}
@media print, screen and (min-width: 960px ) {
  .mv__bg {
    top: 0;
    height: auto;
    aspect-ratio: 1600/870;
  }
}
.mv__inner {
  position: relative;
  width: 90.05%;
  margin: 0 auto;
}
@media print, screen and (min-width: 960px ) {
  .mv__inner {
    width: 87.5%;
  }
}
.mv__title {
  overflow: hidden;
  position: relative;
  margin-bottom: 30rem;
  color: transparent;
  background: var(--color-black);
  -webkit-mask: url(../img/top/mv_title.svg) center center/cover no-repeat;
          mask: url(../img/top/mv_title.svg) center center/cover no-repeat;
}
@media print, screen and (min-width: 960px ) {
  .mv__title {
    width: 48%;
    margin-bottom: 12%;
  }
}
.mv__title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  aspect-ratio: 1/1;
  background: url(../img/top/mv_obj.webp) center center/cover no-repeat;
  -webkit-animation: spin 4s ease-in-out infinite;
          animation: spin 4s ease-in-out infinite;
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
  pointer-events: none;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
  }
  35% {
    -webkit-transform: translateY(-50%) rotate(180deg);
            transform: translateY(-50%) rotate(180deg);
  }
  70% {
    -webkit-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
  }
  35% {
    -webkit-transform: translateY(-50%) rotate(180deg);
            transform: translateY(-50%) rotate(180deg);
  }
  70% {
    -webkit-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
  }
}
.mv__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 55rem;
  padding-left: 150rem;
  font-size: 14rem;
  color: #969696;
}
@media print, screen and (min-width: 960px ) {
  .mv__text {
    margin-bottom: -160rem;
    padding-left: 60%;
    font-size: 20rem;
    font-size: 1.25vw;
  }
}
.mv__text p {
  color: transparent;
  background: radial-gradient(circle at left 40% top 0%, #FAC270 21%, #A1CDE3 60%, #EEBC76 100%) left 0 top 0/100% auto no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mv__slide {
  display: -ms-grid;
  display: grid;
  gap: 20rem 0;
  margin: 0;
  opacity: 1;
  -webkit-transition: opacity 0.5s 0.3s;
  transition: opacity 0.5s 0.3s;
}
@media print, screen and (min-width: 960px ) {
  .mv__slide {
    width: 400rem;
  }
}
.mv__slide.is-first-fade .swiper-slide-active {
  opacity: 0 !important;
}
.mv__slide:not(.swiper-initialized) {
  opacity: 0;
}
.mv__slide:not(.swiper-initialized) .swiper-slide:nth-child(n+2) {
  display: none;
}
.mv__slide--item {
  overflow: hidden;
  -ms-grid-row: 1;
      grid-row-start: 1;
  -ms-grid-column: 1;
      grid-column-start: 1;
  position: relative;
  aspect-ratio: 362/230;
  background: #fff;
  border-radius: 10rem;
}
.mv__slide--item--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10rem;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15rem 15rem;
  color: var(--color-white);
  font-size: 16rem;
  font-weight: 700;
  line-height: 1.3;
}
@media print, screen and (min-width: 960px ) {
  .mv__slide--item--box {
    padding: 20rem 20rem;
    font-style: 18rem;
  }
}
.mv__slide--item .c-button {
  display: block;
  width: 38rem;
  height: 24rem;
  padding: 0;
}
@media print, screen and (min-width: 960px ) {
  .mv__slide--item .c-button {
    width: 42rem;
    height: 26rem;
  }
}
.mv__slide--item .c-button > div {
  position: relative;
  height: 100%;
}
.mv__slide--pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  padding: 0 8rem;
}
@media print, screen and (min-width: 960px ) {
  .mv__slide--pagination {
    gap: 4rem;
  }
}
.mv__slide--pagination button {
  --slide-pagination-line: var(--color-black);
  --slide-pagination-bg: transparent;
  --slide-pagination-progress: transparent;
  position: relative;
  width: 18rem;
  height: 18rem;
  background: none;
}
@media print, screen and (min-width: 960px ) {
  .mv__slide--pagination button {
    width: 20rem;
    height: 20rem;
  }
}
.mv__slide--pagination button::before {
  content: "";
  position: absolute;
  inset: 4rem;
  aspect-ratio: 1/1;
  border-radius: 100vmax;
  border: 1px solid var(--slide-pagination-line);
  background: var(--slide-pagination-bg);
  -webkit-transition: background 0.3s, border-color 0.3s;
  transition: background 0.3s, border-color 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media print, screen and (min-width: 960px ) {
  .mv__slide--pagination button::before {
    inset: 5rem;
  }
}
.mv__slide--pagination button svg {
  position: absolute;
  inset: 0;
  display: block;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  stroke-linecap: round;
  fill: none;
  stroke: var(--slide-pagination-progress);
  stroke-width: 1;
  stroke-dasharray: 56.55;
  stroke-dashoffset: 56.55;
  -webkit-transition: stroke 0.3s;
  transition: stroke 0.3s;
}
.mv__slide--pagination button:hover {
  --slide-pagination-line: transparent;
  --slide-pagination-bg: #ED8B00;
  --slide-pagination-progress: transparent;
}
.mv__slide--pagination button.swiper-pagination-bullet-active {
  --slide-pagination-line: #ED8B00;
  --slide-pagination-bg: #ED8B00;
  --slide-pagination-progress: #ED8B00;
}
.mv__slide--pagination button.swiper-pagination-bullet-active svg {
  -webkit-animation: progress var(--slide-autoplay-duration, 5800ms) linear forwards;
          animation: progress var(--slide-autoplay-duration, 5800ms) linear forwards;
}
@-webkit-keyframes progress {
  from {
    stroke-dashoffset: 56.55;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes progress {
  from {
    stroke-dashoffset: 56.55;
  }
  to {
    stroke-dashoffset: 0;
  }
}

/*----------------------------------------
	news
-----------------------------------------*/
.news {
  position: relative;
  margin-bottom: 110rem;
}
.news__inner {
  width: 90.05%;
  margin: 0 auto;
}
@media print, screen and (min-width: 960px ) {
  .news__inner {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 100%;
  }
}
@media print, screen and (min-width: 960px ) {
  .news__list {
    width: 500rem;
  }
}
.news__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 90rem 1fr;
  grid-template-columns: 90rem 1fr;
  padding: 20rem 10rem;
  font-size: 14rem;
  border-bottom: 1px dashed #B2B2B2;
}
@media print, screen and (min-width: 960px ) {
  .news__item {
    -ms-grid-columns: 100rem 1fr;
    grid-template-columns: 100rem 1fr;
    font-size: 16rem;
  }
}
.news__item--date {
  font-weight: 700;
}

/*----------------------------------------
	about
-----------------------------------------*/
.about {
  padding: 120rem 0;
  background: linear-gradient(134deg, #F69C4D 18.8%, #FFECD0 47.46%, #F69C4D 84.63%), #E6DAC9;
}
@media print, screen and (min-width: 960px ) {
  .about {
    height: 776rem;
    padding: 0;
    background: linear-gradient(110deg, #F69C4D 4.06%, #FFECD0 62.59%, #F69C4D 93.25%), var(--color-white);
  }
}
.about__inner {
  display: -ms-grid;
  display: grid;
  gap: 66rem 0;
}
@media print, screen and (min-width: 960px ) {
  .about__inner {
    gap: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-auto-flow: column;
    -ms-grid-columns: auto 0 1fr 0 auto;
    grid-template-columns: auto 1fr auto;
    width: 1400rem;
    height: 100%;
    margin: 0 auto;
  }
}
.about__slide--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 148rem;
  padding: 8rem 12rem;
  background: var(--color-white);
  border-radius: 3rem;
  margin-right: 20rem;
}
@media print, screen and (min-width: 960px ) {
  .about__slide--item {
    width: 220rem;
    height: 98rem;
    margin-bottom: 34rem;
    margin-right: 0;
    border-radius: 4rem;
  }
}
.about__title {
  display: -ms-grid;
  display: grid;
  gap: 15rem 0;
  font-size: 20rem;
  font-weight: 900;
  line-height: 1.7;
  text-align: center;
}
@media print, screen and (min-width: 960px ) {
  .about__title {
    gap: 25rem 0;
    font-size: 32rem;
  }
}
.about__title--line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media print, screen and (min-width: 960px ) {
  .about__title--line {
    gap: 12rem;
  }
}
.about__title--strong {
  display: block;
  padding: 2rem 15rem 6rem;
  border-radius: 4rem;
  background: var(--color-black) url(../img/top/about_bg.webp) center center/cover no-repeat;
  color: var(--color-white);
  font-size: 25rem;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
@media print, screen and (min-width: 960px ) {
  .about__title--strong {
    padding: 8rem 28rem 16rem;
    font-size: 40rem;
    border-radius: 6rem;
  }
}
.about__title--strong em {
  font-size: 46rem;
}
@media print, screen and (min-width: 960px ) {
  .about__title--strong em {
    font-size: 74rem;
  }
}

.js-loops {
  --loops-width: 0px;
  --loops-height: 0px;
  --loops-num: 0;
  overflow: hidden;
  font-size: 0;
  white-space: nowrap;
}
@media print, screen and (min-width: 960px ) {
  .js-loops {
    height: 100%;
  }
}
.js-loops:is([data-loops-initialized]) .js-loops__inner {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.js-loops:is(.--reverse) .js-loops__inner {
  animation-direction: reverse;
}
.js-loops__inner {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  width: var(--loops-width);
  -webkit-animation: loops-horizontal calc(var(--loops-num) * 3s) linear infinite;
          animation: loops-horizontal calc(var(--loops-num) * 3s) linear infinite;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
@media print, screen and (min-width: 960px ) {
  .js-loops__inner {
    grid-auto-flow: row;
    width: 100%;
    height: var(--loops-height);
    -webkit-animation: loops-vertical calc(var(--loops-num) * 3s) linear infinite;
            animation: loops-vertical calc(var(--loops-num) * 3s) linear infinite;
  }
}
@-webkit-keyframes loops-horizontal {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loops-horizontal {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes loops-vertical {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@keyframes loops-vertical {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
.js-loops__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media print, screen and (min-width: 960px ) {
  .js-loops__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/*----------------------------------------
	section
-----------------------------------------*/
.section {
  padding-top: 100rem;
}
@media print, screen and (min-width: 960px ) {
  .section {
    padding-top: 180rem;
  }
}
.section__head {
  display: -ms-grid;
  display: grid;
  gap: 30rem;
  width: 90.05%;
  margin: 0 auto;
}
@media print, screen and (min-width: 960px ) {
  .section__head {
    gap: 60rem;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -ms-grid-columns: 900rem 60rem auto;
    grid-template-columns: 900rem auto;
    max-width: 1400rem;
    margin-bottom: 40rem;
  }
}
.section__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10rem;
}
@media print, screen and (min-width: 960px ) {
  .section__title {
    gap: 20rem;
  }
}
.section__title--en {
  font-size: 16rem;
  background: linear-gradient(92deg, #C09A63 25.8%, #9DB6C3 72.08%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section__title--ja {
  font-size: 40rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(92deg, #272727 2.95%, #9F6627 25.46%, #272727 46.6%, #4D848C 63.07%, #272727 83.56%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media print, screen and (min-width: 960px ) {
  .section__title--ja {
    font-size: 70rem;
  }
}
.section__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 16rem;
  letter-spacing: 0.1em;
}
@media print, screen and (min-width: 960px ) {
  .section__button {
    font-size: 18rem;
  }
}
.section__button > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 10rem;
}
.section__item {
  position: relative;
  padding: 80rem 0 60rem;
  color: var(--section-text, var(--color-black));
  background: linear-gradient(100deg, #FFFDFA 13.46%, #CED9E0 92.3%);
  background-blend-mode: normal, soft-light, normal;
}
@media print, screen and (min-width: 960px ) {
  .section__item {
    position: sticky;
    top: 0;
    padding: 90rem 0 70rem;
  }
}
.section__item:first-of-type {
  margin-top: 40rem;
}
@media print, screen and (min-width: 960px ) {
  .section__item:first-of-type {
    margin-top: 80rem;
  }
}
.section__item:nth-of-type(even) {
  --section-typography: linear-gradient(91deg, #C6DEEA 20.61%, #FFCF9E 63.74%);
  --section-title: linear-gradient(110deg, #272727 0%, #977755 24%, #272727 47%, #4D848C 65%, #272727 100%);
  --section-text: var(--color-black);
  color: var(--section-text);
  background: linear-gradient(100deg, #FFFDFA 13.46%, #CED9E0 92.3%);
  background-blend-mode: normal, soft-light, normal;
}
.section__item:nth-of-type(odd) {
  --section-typography: linear-gradient(90deg, #D3A176 23.4%, #C6DEEA 95.94%);
  --section-title: linear-gradient(110deg, #FFFFFF 0%, #FFECD0 46%, #C3EBFF 70%, #FFFFFF 100%);
  --section-text: var(--color-white);
  color: var(--section-text);
  background: linear-gradient(100deg, rgba(253, 237, 214, 0.8) 20.9%, rgba(93, 153, 181, 0.8) 77.19%, rgba(192, 154, 99, 0.8) 97.3%), #353535;
  background-blend-mode: soft-light, normal;
}
.section__item--typography {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background: var(--section-typography);
  background-blend-mode: darken, normal;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: 70rem;
  white-space: nowrap;
  line-height: 0.8;
  opacity: 0.35;
  pointer-events: none;
}
@media print, screen and (min-width: 960px ) {
  .section__item--typography {
    font-size: 180rem;
  }
}
.section__item--typography._small {
  font-size: 56rem;
}
@media print, screen and (min-width: 960px ) {
  .section__item--typography._small {
    font-size: 180rem;
  }
}
.section__item--cate {
  display: none;
}
@media print, screen and (min-width: 960px ) {
  .section__item--cate {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    padding-left: 22rem;
    font-size: 16rem;
    line-height: 1;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
    text-align: center;
  }
}
.section__item--head {
  display: -ms-grid;
  display: grid;
  gap: 20rem;
  position: relative;
  width: 90.05%;
  margin: 0 auto;
}
@media print, screen and (min-width: 960px ) {
  .section__item--head {
    gap: 60rem;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -ms-grid-columns: 900rem 60rem auto;
    grid-template-columns: 900rem auto;
    max-width: 1400rem;
  }
}
.section__item--read {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15rem 0;
}
.section__item--title {
  display: -ms-grid;
  display: grid;
  gap: 10rem;
  -ms-grid-columns: 44rem 10rem auto;
  grid-template-columns: 44rem auto;
  color: transparent;
  font-size: 32rem;
  font-weight: 700;
  line-height: 1.15;
}
.section__item--title._small {
  font-size: 28rem;
}
@media print, screen and (min-width: 960px ) {
  .section__item--title._small {
    font-size: 50rem;
  }
}
@media print, screen and (min-width: 960px ) {
  .section__item--title {
    -ms-grid-columns: 60rem auto;
    grid-template-columns: 60rem auto;
    font-size: 50rem;
  }
}
.section__item--title small {
  display: block;
  font-size: 18rem;
  line-height: 1.5;
}
@media print, screen and (min-width: 960px ) {
  .section__item--title small {
    display: inline;
    font-size: 30rem;
  }
}
.section__item--title--text {
  background: var(--section-title);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.section__item--text {
  font-size: 16rem;
  line-height: 2;
}
.section__item--button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 16rem;
  letter-spacing: 0.1em;
}
@media print, screen and (min-width: 960px ) {
  .section__item--button {
    font-size: 18rem;
  }
}
.section__item--button > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 10rem;
}
.section__slide {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20rem 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  padding-top: 40rem;
  padding-bottom: 20rem;
}
@media print, screen and (min-width: 960px ) {
  .section__slide {
    gap: 24rem;
  }
}
.section__slide--frame {
  overflow: visible;
  width: 90.05%;
  margin: 0 auto;
}
@media print, screen and (min-width: 960px ) {
  .section__slide--frame {
    max-width: 1400rem;
  }
}
.section__slide--pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20rem;
  width: 90.05%;
  margin: 0 auto;
}
@media print, screen and (min-width: 960px ) {
  .section__slide--pager {
    max-width: 1400rem;
  }
}
.section__slide--pager--button {
  position: relative;
  width: 40rem;
  aspect-ratio: 1/1;
  border-radius: 100vmax;
  border: 1px solid #969696;
}
@media print, screen and (min-width: 960px ) {
  .section__slide--pager--button {
    -webkit-transition: border-color 0.3s, background 0.3s;
    transition: border-color 0.3s, background 0.3s;
  }
}
.section__slide--pager--button::before {
  content: "";
  position: absolute;
  top: calc(50% - 8rem);
  right: calc(50% - 8rem);
  width: 16rem;
  aspect-ratio: 1/1;
  background: var(--section-text, var(--color-black));
  -webkit-mask: url(../img/cmn/cmn_toggle.svg) center center/cover no-repeat;
          mask: url(../img/cmn/cmn_toggle.svg) center center/cover no-repeat;
}
@media print, screen and (min-width: 960px ) {
  .section__slide--pager--button::before {
    -webkit-transition: background 0.3s, -webkit-transform 0.3s;
    transition: background 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, background 0.3s;
    transition: transform 0.3s, background 0.3s, -webkit-transform 0.3s;
  }
}
.section__slide--pager--button._prev::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.section__slide--pager--button._next::before {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media print, screen and (min-width: 960px ) {
  .section__slide--pager--button:hover {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
  }
}
@media print, screen and (min-width: 960px ) {
  .section__slide--pager--button:hover::before {
    background: var(--color-white);
  }
}
.section__card {
  width: 320rem;
  height: auto;
  padding-right: 20rem;
  color: var(--color-black);
}
@media print, screen and (min-width: 960px ) {
  .section__card {
    width: 430rem;
    padding-right: 30rem;
  }
}
@media print, screen and (min-width: 960px ) {
  .section__card._small {
    width: 390rem;
  }
}
.section__card > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  border-radius: 15rem;
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0 0 38rem 0 rgba(255, 204, 159, 0.3);
          box-shadow: 0 0 38rem 0 rgba(255, 204, 159, 0.3);
  padding: 16rem;
}
@media print, screen and (min-width: 960px ) {
  .section__card > a {
    padding: 24rem;
  }
}
.section__card--img {
  overflow: hidden;
  aspect-ratio: 262/158;
  margin-bottom: 18rem;
  border-radius: 8rem;
  -webkit-box-shadow: 0 0 15rem 0 rgba(0, 0, 0, 0.04);
          box-shadow: 0 0 15rem 0 rgba(0, 0, 0, 0.04);
}
@media print, screen and (min-width: 960px ) {
  .section__card--img {
    margin-bottom: 24rem;
  }
}
.section__card--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section__card--text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10rem 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-bottom: 10rem;
}
@media print, screen and (min-width: 960px ) {
  .section__card--text {
    padding-bottom: 0;
  }
}
.section__card--text dt {
  font-size: 18rem;
  font-weight: 700;
  line-height: 1.6;
}
@media print, screen and (min-width: 960px ) {
  .section__card--text dt {
    font-size: 22rem;
  }
}
.section__card--text dd {
  display: -ms-grid;
  display: grid;
  gap: 6rem;
  -ms-grid-columns: 1fr 6rem auto;
  grid-template-columns: 1fr auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 14rem;
  line-height: 1.6;
}
@media print, screen and (min-width: 960px ) {
  .section__card--text dd {
    line-height: 2;
  }
}
.section__card--text dd .c-button {
  -ms-flex-item-align: end;
      align-self: flex-end;
  aspect-ratio: 60/34;
  margin-bottom: -10rem;
}
@media print, screen and (min-width: 960px ) {
  .section__card--text dd .c-button {
    margin-bottom: 0;
  }
}

/*----------------------------------------
	request
-----------------------------------------*/
.request {
  display: none;
  position: fixed;
  top: 200rem;
  right: var(--scrollbar-width);
  z-index: 700;
  width: 300rem;
  padding: 40rem 25rem 30rem;
  color: var(--color-white);
}
@media print, screen and (min-width: 960px ) {
  .request {
    display: block;
    opacity: 0;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
  }
}
@media print, screen and (min-width: 960px ) {
  .request.--request-open {
    opacity: 1;
  }
}
@media print, screen and (min-width: 960px ) {
  .request.--request-close {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
.request__bg {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 20rem 0 0 20rem;
  background: rgba(53, 53, 53, 0.9);
  z-index: -100;
}
.request__close {
  position: absolute;
  top: -40rem;
  left: 0;
  width: 30rem;
  height: 30rem;
  border: none;
  border-radius: 100vmax;
  background: #4A4A4A;
}
@media print, screen and (min-width: 960px ) {
  .request__close {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}
@media print, screen and (min-width: 960px ) {
  .request__close:hover {
    opacity: 0.7;
  }
}
.request__close::before, .request__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14rem;
  height: 2rem;
  background: var(--color-white);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.request__close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.request__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
          transform: translate(-50%, -50%) rotate(135deg);
}
.request__head {
  display: -ms-grid;
  display: grid;
  gap: 12rem;
  position: relative;
  margin-bottom: 14rem;
}
.request__head--balloon {
  position: absolute;
  bottom: calc(100% + 20rem);
  right: -15rem;
  padding: 4rem 10rem;
  border-radius: 6rem;
  background: var(--color-primary);
  font-size: 16rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
.request__head--balloon::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 24rem;
  width: 14rem;
  height: 14rem;
  background: var(--color-primary);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.request__head--balloon em {
  font-size: 22rem;
  line-height: 1;
}
.request__head--balloon span {
  display: inline-block;
  -webkit-transform: rotate(16deg);
          transform: rotate(16deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  font-size: 18rem;
  line-height: 1;
}
.request__head--title {
  font-size: 26rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
}
.request__head--text {
  font-size: 11rem;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.02em;
}
.request__form {
  display: -ms-grid;
  display: grid;
  gap: 14rem 15rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: auto 15rem 1fr;
  grid-template-columns: auto 1fr;
  margin-bottom: 22rem;
}
.request__form dt {
  font-size: 14rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.request__form dd input {
  width: 100%;
  padding: 10rem 20rem;
  border-radius: 5rem;
  background: var(--color-white);
  font-size: 13rem;
}
.request__form dd input:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
}
.request__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 30rem;
}
.request .c-button {
  --arrow-bg: var(--color-primary);
  --arrow-icon: var(--color-white);
  --arrow-line: var(--color-primary);
  display: block;
  height: 34rem;
}
/*# sourceMappingURL=top.css.map */