@charset "UTF-8";
/**
  @fonts
--------------------------------------------------------
  setting/_font.scss
--------------------------------------------------------
■日本語フォント
- Noto Sans Japanese
https://fonts.google.com/noto/specimen/Noto+Sans+JP

- Yaku Han JP
https://yakuhanjp.qranoko.jp/

■英字フォント
- Libre Baskerville
https://fonts.google.com/specimen/Libre+Baskerville
-------------------------------------------------------- */
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-style: normal;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  color: #404040;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

*, *::before, *::after {
  box-sizing: border-box;
}

hr {
  display: block;
  height: 0;
  border: none;
  margin: 0;
  padding: 0;
  background: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media screen and (min-width: 992px) {
  a:not([class]):hover {
    color: #999999;
    text-decoration: none;
  }
}

b, strong {
  font-weight: 700;
}

i, em {
  font-style: normal;
}

sup {
  font-size: 0.75rem;
  vertical-align: top;
  position: relative;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  font-feature-settings: "palt";
  height: 100%;
  word-break: break-all;
}

main {
  font-size: 1rem;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #404040;
  letter-spacing: 0.1em;
}
main a:hover img {
  opacity: 1;
}

.c-btn {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  padding-inline: 10px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
}
@media screen and (max-width: 575px) {
  .c-btn {
    height: 60px;
  }
}
@media screen and (max-width: 413px) {
  .c-btn {
    height: 50px;
  }
}
@media screen and (max-width: 413px) {
  .c-btn {
    width: 100%;
  }
}
@media screen and (min-width: 576px) {
  .c-btn {
    height: 70px;
  }
}
@media screen and (min-width: 769px) {
  .c-btn {
    font-size: 1.125rem;
  }
}
.c-btn:hover {
  color: #fff;
}
@media screen and (min-width: 992px) {
  .c-btn:hover {
    background: #000;
  }
  .c-btn:hover i[class*=arrow] {
    transform: translateX(3px);
  }
}
.c-btn-more {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 150px;
  height: 40px;
  color: #fff;
  font-family: "Marcellus", serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
}
.c-btn-more:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.c-btn-more:hover {
  color: #fff;
}
@media screen and (min-width: 992px) {
  .c-btn-more:hover:after {
    transform: scale(1.1, 1);
    transform-origin: center top;
  }
}
.c-btn-more span, .c-btn-more i {
  position: relative;
  z-index: 10;
}

.c-icon-arrow {
  position: relative;
  width: 20px;
  height: 6px;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.c-icon-arrow:before, .c-icon-arrow:after {
  content: "";
  display: block;
  position: absolute;
}
.c-icon-arrow:before {
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 7px;
  border-color: transparent transparent transparent #fff;
}
.c-icon-arrow:after {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 1px;
  background: #fff;
}

.c-modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999999;
}
.c-modal__bg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  z-index: 888888;
}
.c-modal__bg.is-on {
  opacity: 1;
  pointer-events: auto;
}
.c-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
}
@media screen and (max-width: 1339px) {
  .c-modal__content {
    width: calc(100% - 340px);
    height: calc(100svh - 260px);
  }
}
@media screen and (max-width: 991px) {
  .c-modal__content {
    width: calc(100% - 280px);
    height: calc(100svh - 200px);
  }
}
@media screen and (max-width: 768px) {
  .c-modal__content {
    width: calc(100% - 110px);
    height: calc(100svh - 170px);
  }
}
@media screen and (min-width: 1340px) and (max-height: 800px) {
  .c-modal__content {
    width: 700px;
    height: calc(100svh - 260px);
  }
}
@media screen and (min-width: 1340px) and (min-height: 800px) {
  .c-modal__content {
    width: 700px;
    height: 640px;
  }
}
.c-modal__content:after {
  content: "";
  display: block;
  position: absolute;
  background: #fff;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  .c-modal__content:after {
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    border-radius: 0 80px 0 80px;
  }
}
@media screen and (max-width: 768px) {
  .c-modal__content:after {
    top: -35px;
    left: -35px;
    right: -35px;
    bottom: -35px;
    border-radius: 0 50px 0 50px;
  }
}
@media screen and (min-width: 992px) {
  .c-modal__content:after {
    top: -80px;
    left: -80px;
    right: -80px;
    bottom: -80px;
    border-radius: 0 100px 0 100px;
  }
}
.c-modal__inner {
  position: relative;
  overflow: auto;
  height: 100%;
}
.c-modal__inner main {
  overflow: auto;
}
@media screen and (max-width: 768px) {
  .c-modal__inner main {
    height: calc(100% - 80px);
  }
}
@media screen and (max-width: 575px) {
  .c-modal__inner main {
    height: calc(100% - 140px);
  }
}
@media screen and (max-width: 413px) {
  .c-modal__inner main {
    height: calc(100% - 120px);
  }
}
@media screen and (min-width: 769px) {
  .c-modal__inner main {
    height: calc(100% - 100px);
  }
}
@media screen and (max-width: 575px) {
  .c-modal__inner main:has(div.p-top-contents__modal-btns) {
    height: calc(100% - 70px);
  }
}
@media screen and (max-width: 413px) {
  .c-modal__inner main:has(div.p-top-contents__modal-btns) {
    height: calc(100% - 60px);
  }
}
.c-modal div a.js-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #fff;
  text-decoration: none;
}
@media screen and (max-width: 991px) {
  .c-modal div a.js-modal-close {
    transform: translate(calc(100% + 50px), calc(-50% - 50px));
  }
}
@media screen and (max-width: 768px) {
  .c-modal div a.js-modal-close {
    width: 40px;
    transform: translate(calc(3vw + 35px), calc(-100% - 35px));
  }
}
@media screen and (min-width: 769px) {
  .c-modal div a.js-modal-close {
    width: 80px;
  }
}
@media screen and (min-width: 992px) {
  .c-modal div a.js-modal-close {
    transform: translate(calc(100% + 80px), -80px);
  }
}
.c-modal div a.js-modal-close i {
  position: relative;
  display: block;
  width: 50%;
  aspect-ratio: 1/1;
  transform: rotate(45deg);
}
.c-modal div a.js-modal-close i:before, .c-modal div a.js-modal-close i:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #000;
  transform: translate(-50%, -50%);
}
.c-modal div a.js-modal-close i:before {
  width: 100%;
  height: 2px;
}
.c-modal div a.js-modal-close i:after {
  width: 2px;
  height: 100%;
}
.c-modal > a.js-modal-close {
  position: fixed;
  top: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 0;
}
@media screen and (max-width: 887px) {
  .c-modal > a.js-modal-close {
    right: 5%;
    transform: translate(10px, -10px);
  }
}
@media screen and (min-width: 888px) {
  .c-modal > a.js-modal-close {
    left: 50%;
    margin-left: 380px;
    margin-top: -20px;
  }
}
.c-modal > a.js-modal-close i {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  transform: rotate(45deg);
  background: #fff;
  border-radius: 100%;
}
.c-modal > a.js-modal-close i:hover {
  background: #000;
}
.c-modal > a.js-modal-close i:before, .c-modal > a.js-modal-close i:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #000;
}
.c-modal > a.js-modal-close i:before {
  width: 12px;
  height: 2px;
  margin-top: -1px;
  margin-left: -6px;
}
.c-modal > a.js-modal-close i:after {
  width: 2px;
  height: 12px;
  margin-top: -6px;
  margin-left: -1px;
}

.c-txt--left {
  text-align: left;
}
.c-txt--right {
  text-align: right;
}
.c-txt--center {
  text-align: center;
}
.c-txt--bold {
  font-weight: 700;
}
.c-txt--md {
  font-size: 0.875rem;
}
.c-txt--sm {
  font-size: 0.75rem;
}
.c-txt--xs {
  font-size: 0.625rem;
}
.c-txt-sep {
  display: inline-block;
}

body.is-on {
  overflow: hidden;
}

.p-top-kv {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .p-top-kv {
    height: 100vh;
  }
}
.p-top-kv:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.3;
}
.p-top-kv a {
  display: block;
  text-decoration: none;
}
.p-top-kv a:hover {
  opacity: 1;
}
.p-top-kv a:first-child {
  position: relative;
}
@media screen and (min-width: 769px) {
  .p-top-kv a:first-child {
    height: 100vh;
  }
}
.p-top-kv a:first-child:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 5;
}
@media screen and (min-width: 769px) {
  .p-top-kv a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-top-kv__name {
  position: absolute;
  right: 1em;
  bottom: 1em;
  z-index: 10;
  color: #fff;
  font-size: clamp(0.875rem, 0.705rem + 0.73vw, 1.25rem);
  font-weight: 700;
}
.p-top-kv__copy {
  display: flex;
  align-items: flex-start;
  position: absolute;
  z-index: 10;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-top-kv__copy {
    justify-content: center;
    top: 8vw;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 769px) {
  .p-top-kv__copy {
    top: 0;
    right: 0;
    justify-content: flex-start;
    padding-top: 5vw;
  }
}
@media screen and (min-width: 1340px) {
  .p-top-kv__copy {
    left: 50%;
    right: auto;
    width: 1260px;
    height: 100%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .p-top-kv__copy img {
    width: 90%;
    max-width: 600px;
  }
}
@media screen and (min-width: 769px) {
  .p-top-kv__copy img {
    width: 62%;
  }
}
.p-top-anchor {
  padding-top: clamp(3.125rem, 1.705rem + 6.06vw, 6.25rem);
  padding-bottom: clamp(5rem, 3.011rem + 8.48vw, 9.375rem);
}
@media screen and (max-width: 768px) {
  .p-top-anchor {
    background: url("../images/anchor-bg_s.png") no-repeat top center;
    background-size: 100%;
  }
}
@media screen and (min-width: 769px) {
  .p-top-anchor {
    background: url("../images/anchor-bg_l.png") no-repeat top center;
    background-size: 100%;
  }
}
.p-top-anchor__inner {
  position: relative;
}
.p-top-anchor__ttl {
  margin-bottom: min(120px, 8vw);
  text-align: center;
}
.p-top-anchor__ttl img {
  width: min(362px, 55vw);
}
.p-top-anchor__txt {
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 991px) {
  .p-top-anchor__txt {
    margin-bottom: 7vw;
  }
}
@media screen and (max-width: 768px) {
  .p-top-anchor__txt {
    grid-column: span 2/span 2;
    grid-column-start: 1;
    grid-row-start: 4;
  }
}
@media screen and (min-width: 769px) {
  .p-top-anchor__txt {
    position: absolute;
    top: -3%;
    left: 50%;
    max-width: 400px;
    transform: translateX(-50%);
    font-size: 12px;
  }
}
@media screen and (min-width: 992px) {
  .p-top-anchor__txt {
    max-width: 410px;
    font-size: 14px;
  }
}
@media screen and (min-width: 1340px) {
  .p-top-anchor__txt {
    max-width: 500px;
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .p-top-anchor__txt br {
    display: none;
  }
}
.p-top-anchor__list {
  display: grid;
}
@media screen and (max-width: 768px) {
  .p-top-anchor__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 5vw;
  }
}
@media screen and (min-width: 992px) {
  .p-top-anchor__list {
    position: relative;
  }
}
@media screen and (min-width: 769px) {
  .p-top-anchor__list {
    position: relative;
  }
}
@media screen and (min-width: 769px) {
  .p-top-anchor__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 3vw;
    padding-bottom: calc((100% - 6vw) / 3 / 2);
  }
}
@media screen and (min-width: 1340px) {
  .p-top-anchor__list {
    gap: 40px;
    margin-inline: -20px;
    padding-bottom: calc((100% - 80px) / 3 / 2);
  }
}
@media screen and (min-width: 769px) {
  .p-top-anchor__item:nth-of-type(2), .p-top-anchor__item:nth-of-type(5) {
    transform: translateY(50%);
  }
}
@media screen and (min-width: 769px) {
  .p-top-anchor__item:nth-of-type(4) {
    transform: translateX(3vw);
  }
}
@media screen and (min-width: 1340px) {
  .p-top-anchor__item:nth-of-type(4) {
    transform: translateX(40px);
  }
}
@media screen and (min-width: 769px) {
  .p-top-anchor__item:nth-of-type(6) {
    transform: translateX(-3vw);
  }
}
@media screen and (min-width: 1340px) {
  .p-top-anchor__item:nth-of-type(6) {
    transform: translateX(-40px);
  }
}
.p-top-anchor__item a {
  position: relative;
  display: block;
}
.p-top-anchor__item a:hover {
  opacity: 0.7;
}
.p-top-anchor__item span {
  display: block;
}
@media screen and (max-width: 1339px) {
  .p-top-section__inner {
    width: 100%;
    padding-inline: min(40px,5vw);
  }
}
@media screen and (min-width: 1340px) {
  .p-top-section__inner {
    width: 1260px;
    margin-inline: auto;
  }
}
.p-top-contents {
  position: relative;
  margin-bottom: min(150px, 20vw);
  padding-bottom: min(90px, 13vw);
}
@media screen and (min-width: 769px) {
  .p-top-contents {
    padding-top: 50px;
  }
}
.p-top-contents:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-top-contents:after {
    left: 0;
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .p-top-contents:after {
    right: 0;
    width: 73%;
    border-radius: 0 0 0 100px;
  }
}
.p-top-contents__bg {
  position: absolute;
  right: 30px;
  top: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 991px) {
  .p-top-contents__bg {
    display: none;
  }
}
.p-top-contents__head {
  margin-bottom: clamp(2.188rem, 1.761rem + 1.82vw, 3.125rem);
}
@media screen and (max-width: 1339px) {
  .p-top-contents__head {
    margin-inline: min(40px,5vw);
  }
}
@media screen and (min-width: 769px) {
  .p-top-contents__head {
    position: relative;
  }
}
@media screen and (min-width: 1340px) {
  .p-top-contents__head {
    width: 1260px;
    margin-inline: auto;
  }
}
.p-top-contents__head p {
  max-width: 500px;
}
.p-top-contents__ttl {
  position: relative;
  margin-bottom: clamp(1.875rem, 1.591rem + 1.21vw, 2.5rem);
}
@media screen and (max-width: 768px) {
  .p-top-contents__ttl:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 80%;
    background: #fff;
    transform: translateX(-50%);
  }
}
.p-top-contents__ttl picture {
  position: relative;
  z-index: 10;
}
.p-top-contents__slide {
  position: relative;
}
.p-top-contents__slide--center {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .p-top-contents__slide .splide__arrows {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: -50px;
    right: min(40px, 5vw);
    width: 180px;
    transform: translateY(-100%);
  }
}
@media screen and (min-width: 1300px) {
  .p-top-contents__slide .splide__arrows {
    right: calc((100% - 1260px) / 2);
  }
}
.p-top-contents__slide .splide__arrow {
  position: static;
  width: 41px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 100%;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media screen and (max-width: 768px) {
  .p-top-contents__slide .splide__arrow {
    position: absolute;
    top: 19.6vw;
    background: #fff;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
  }
}
@media screen and (min-width: 769px) {
  .p-top-contents__slide .splide__arrow {
    width: 50px;
    height: 26px;
    background: none;
  }
}
@media (hover: hover) {
  .p-top-contents__slide .splide__arrow:hover {
    opacity: 0.7;
  }
}
.p-top-contents__slide .splide__arrow i {
  position: relative;
  background-size: 100%;
}
@media screen and (max-width: 768px) {
  .p-top-contents__slide .splide__arrow i {
    width: 16px;
    height: 5px;
    background: url("../images/icon-arrow_blk.png") no-repeat top left;
  }
}
@media screen and (min-width: 769px) {
  .p-top-contents__slide .splide__arrow i {
    width: 16px;
    height: 5px;
    background: url("../images/icon-arrow_blk.png") no-repeat top left;
    background-size: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-top-contents__slide .splide__arrow.splide__arrow--next {
    right: 12vw;
    transform: translate(20px, -50%);
  }
}
.p-top-contents__slide .splide__arrow.splide__arrow--next i {
  transform: scaleX(-1);
}
@media screen and (max-width: 768px) {
  .p-top-contents__slide .splide__arrow.splide__arrow--prev {
    left: 12vw;
    transform: translate(-20px, -50%);
  }
}
.p-top-contents__slide .splide-info {
  font-family: "Fleur De Leah", cursive;
}
@media screen and (max-width: 768px) {
  .p-top-contents__slide .splide-info {
    display: none;
  }
}
.p-top-contents__card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.p-top-contents__card a {
  text-decoration: none;
}
.p-top-contents__card-img a {
  display: block;
}
.p-top-contents__card-img a:hover span {
  transform: scale(1.05);
}
.p-top-contents__card-img span {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.p-top-contents__card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-contents__card-ttl {
  margin-top: 1.2em;
  margin-bottom: 0.5em;
  font-size: clamp(1.125rem, 0.926rem + 0.85vw, 1.563rem);
  line-height: 1.3;
  font-weight: 700;
}
.p-top-contents__card-ttl a {
  position: relative;
  color: inherit;
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.p-top-contents__card-ttl a:hover {
  background-size: 100% 1px;
}
.p-top-contents__card-body {
  flex-grow: 2;
  display: flex;
  flex-direction: column;
  margin-top: auto;
}
.p-top-contents__card-name {
  margin-bottom: 1.2em;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (min-width: 576px) {
  .p-top-contents__card-name {
    font-size: 1.125rem;
  }
}
.p-top-contents__card-txt {
  margin-bottom: 1.8em;
}
@media screen and (max-width: 575px) {
  .p-top-contents__card-txt {
    font-size: 0.875rem;
  }
}
.p-top-contents__card .c-btn-more {
  margin-top: auto;
  margin-inline: auto;
}
.p-top-contents .swiper-slide {
  display: flex;
  width: 80%;
  max-width: 560px;
  height: auto;
  padding-inline: clamp(0.625rem, 0.057rem + 2.42vw, 1.875rem);
}
.p-top-contents__modal a {
  text-decoration: none;
}
.p-top-contents__modal-ttl {
  margin-top: 1.2em;
  margin-bottom: 0.5em;
  font-size: clamp(1.125rem, 0.926rem + 0.85vw, 1.563rem);
  line-height: 1.3;
  font-weight: 700;
}
.p-top-contents__modal-name {
  margin-bottom: 1.2em;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (min-width: 576px) {
  .p-top-contents__modal-name {
    font-size: 1.125rem;
  }
}
.p-top-contents__modal-name a {
  text-decoration: underline;
}
.p-top-contents__modal-name a:hover {
  text-decoration: none;
}
@media screen and (max-width: 575px) {
  .p-top-contents__modal-txt {
    font-size: 0.875rem;
  }
}
.p-top-contents__modal-btns {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 575px) {
  .p-top-contents__modal-btns {
    flex-direction: column;
    gap: 10px;
  }
}
@media screen and (min-width: 576px) {
  .p-top-contents__modal-btns {
    left: 0;
    gap: 20px;
  }
}
@media screen and (min-width: 992px) {
  .p-top-contents__modal-btns {
    gap: 30px;
  }
}
@media screen and (min-width: 576px) {
  .p-top-contents__modal-btns li {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (min-width: 992px) {
  .p-top-contents__modal-btns li {
    width: calc((100% - 30px) / 2);
  }
}
.p-top-contents__modal .c-btn {
  line-height: 1.3;
}
@media screen and (max-width: 1339px) {
  .p-top-contents__modal .c-btn {
    font-size: 1rem;
  }
}
@media screen and (max-width: 575px) {
  .p-top-contents__modal .c-btn {
    width: 100%;
    padding-inline: 0;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 575px) {
  .p-top-contents__modal .c-btn br {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .p-top-contents__modal .c-btn br {
    display: none;
  }
}
.p-top-contents__modal .c-btn--disable {
  pointer-events: none;
  background: #999 !important;
}
.p-top-contents__modal .c-btn--disable .c-icon-arrow {
  display: none;
}
.p-top-contents__modal .c-btn--disable span {
  opacity: 0.5;
}
.p-top-contents__modal .c-btn-exp {
  background: #444 !important;
}
@media screen and (min-width: 576px) {
  .p-top-contents__modal div.p-top-contents__modal-btns .c-btn {
    width: 300px;
  }
}
.p-top-cool:after {
  background: rgba(141, 189, 192, 0.1);
}
.p-top-cool .c-btn {
  background: #8dbdc0;
}
.p-top-cool .c-btn-more:after {
  background: #8dbdc0;
}
.p-top-cool [class*=ttl] {
  color: #8dbdc0;
}
.p-top-cool [class*=ttl] a {
  background-image: linear-gradient(90deg, #8dbdc0, #8dbdc0);
}
.p-top-taste:after {
  background: rgba(224, 186, 72, 0.1);
}
.p-top-taste .c-btn {
  background: #e0ba48;
}
.p-top-taste .c-btn-more:after {
  background: #e0ba48;
}
.p-top-taste [class*=ttl] {
  color: #e0ba48;
}
.p-top-taste [class*=ttl] a {
  background-image: linear-gradient(90deg, #e0ba48, #e0ba48);
}
.p-top-family:after {
  background: rgba(89, 185, 198, 0.1);
}
.p-top-family .c-btn {
  background: #59b9c6;
}
.p-top-family .c-btn-more:after {
  background: #59b9c6;
}
.p-top-family [class*=ttl] {
  color: #59b9c6;
}
.p-top-family [class*=ttl] a {
  background-image: linear-gradient(90deg, #59b9c6, #59b9c6);
}
.p-top-night:after {
  background: rgba(186, 167, 204, 0.1);
}
.p-top-night .c-btn {
  background: #baa7cc;
}
.p-top-night .c-btn-more:after {
  background: #baa7cc;
}
.p-top-night [class*=ttl] {
  color: #baa7cc;
}
.p-top-night [class*=ttl] a {
  background-image: linear-gradient(90deg, #baa7cc, #baa7cc);
}
.p-top-nature:after {
  background: rgba(104, 190, 141, 0.1);
}
.p-top-nature .c-btn {
  background: #68be8d;
}
.p-top-nature .c-btn-more:after {
  background: #68be8d;
}
.p-top-nature [class*=ttl] {
  color: #68be8d;
}
.p-top-nature [class*=ttl] a {
  background-image: linear-gradient(90deg, #68be8d, #68be8d);
}
.p-top-exp:after {
  background: rgba(56, 161, 219, 0.1);
}
.p-top-exp .c-btn {
  background: #38a1db;
}
.p-top-exp .c-btn-more:after {
  background: #38a1db;
}
.p-top-exp [class*=ttl] {
  color: #38a1db;
}
.p-top-exp [class*=ttl] a {
  background-image: linear-gradient(90deg, #38a1db, #38a1db);
}
.p-top-pagetop {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 1em;
  bottom: calc(70px + 1em);
  width: 60px;
  aspect-ratio: 1/1;
  border-radius: 15px 0 15px 0;
  background: #3da5ef;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  z-index: 30;
}
.p-top-pagetop:hover {
  background: #bfd7c8;
}
.p-top-pagetop svg {
  width: 16px;
  height: auto;
  fill: #fff;
}/*# sourceMappingURL=style.css.map */