@charset "UTF-8";
/*!
  Reset Stylesheet
  Author: yama-dev - https://github.com/yama-dev
  */
html, body, div, span, object, iframe, embed, main,
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, u, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, tbody, tfoot, thead, tr, th, td, caption,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, source {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: middle;
  background: transparent;
  box-sizing: border-box;
}

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

blockquote, q {
  quotes: none;
}

a {
  margin: 0;
  padding: 0;
  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;
}

ol, ul {
  list-style: none;
}

button, input, select, textarea, datalist {
  vertical-align: middle;
  min-height: 1.5em;
  background-color: transparent;
}

input[type=submit], input[type=reset] {
  cursor: pointer;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
}

a[href^=tel] {
  display: inline-block;
  color: inherit;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

iframe {
  border: none;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0;
}

[role=button] {
  cursor: pointer;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

body {
  line-height: 1;
}

body, button, input, select, textarea, datalist {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-wrap: break-word;
}

:root {
  --color-black: #000;
  --color-white: #fff;
  --color-gray: #cdcac2;
  --font-jp: "Zen Old Mincho", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  --ease-out-cubic: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-out-sine: cubic-bezier(0.61, 1, 0.88, 1);
  --ease-in-cubic: cubic-bezier(0.32, 0, 0.67, 0);
  --ease-inout-cubic: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  font-size: min(0.7142857143vw, 10px);
}
@media screen and (max-width: 750px) {
  html {
    font-size: min(2.6666666667vw, 20px);
  }
}

img {
  max-width: 100%;
  display: block;
  vertical-align: middle;
}

footer,
section,
div,
a {
  display: block;
  position: relative;
}

a:focus {
  outline: none;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  box-sizing: border-box;
  min-height: auto;
  padding: 0;
  background-color: transparent;
  border: none;
  outline: none;
  font-family: var(--font-jp);
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0rem;
  font-feature-settings: "palt";
  cursor: pointer;
}

body {
  color: var(--color-black);
  font-family: var(--font-jp);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.75;
}
@media screen and (max-width: 750px) {
  body {
    font-size: 1.4rem;
    line-height: 2;
  }
}

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

.is-pc {
  display: block;
}
@media screen and (max-width: 750px) {
  .is-pc {
    display: none;
  }
}

.l-wrapper::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg.jpg) repeat center center/cover;
}
@media screen and (max-width: 750px) {
  .l-wrapper::before {
    background-size: auto 50%;
  }
}

.l-footer {
  padding-top: 3.3rem;
  padding-bottom: 3.3rem;
  background: var(--color-white);
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .l-footer {
    padding-top: 4.4rem;
    padding-bottom: 4.4rem;
  }
}
.l-footer__inner {
  width: calc(100% - 11.8rem);
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .l-footer__inner {
    width: 100%;
  }
}
.l-footer__copyright {
  margin-top: 2.5rem;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .l-footer__copyright {
    margin-top: 2.7rem;
    text-align: center;
    font-size: 1.1rem;
    letter-spacing: 0.03em;
  }
}
.l-footer__pagetop {
  position: absolute;
  bottom: -0.2rem;
  right: 0;
}
@media screen and (max-width: 750px) {
  .l-footer__pagetop {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 3.8rem;
  }
}
.l-footer__pagetop-link {
  box-sizing: content-box;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-left: 2rem;
  text-decoration: none;
  color: var(--color-black);
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  transition: filter 0.5s var(--ease-out-cubic);
}
@media screen and (max-width: 750px) {
  .l-footer__pagetop-link {
    margin: 0 auto;
    padding-left: 1.6rem;
    font-size: 1rem;
  }
}
@media (hover: hover) {
  .l-footer__pagetop-link:hover {
    filter: blur(1px);
  }
}
.l-footer__pagetop-link::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleY(-1);
  width: 1rem;
  height: 100%;
  background: url(../img/icon_arrow.svg) no-repeat center center/100% auto;
}
@media screen and (max-width: 750px) {
  .l-footer__pagetop-link::before {
    width: 0.8rem;
  }
}

.l-footer_official {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .l-footer_official {
    display: block;
  }
}
.l-footer_official__more {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
@media screen and (max-width: 750px) {
  .l-footer_official__more {
    display: block;
  }
}
.l-footer_official__more-btn {
  width: 32rem;
}
@media screen and (max-width: 750px) {
  .l-footer_official__more-btn {
    width: 64%;
    margin: 0 auto;
  }
}
.l-footer_official__more-btn:nth-child(n+2) {
  margin-left: 1rem;
}
@media screen and (max-width: 750px) {
  .l-footer_official__more-btn:nth-child(n+2) {
    margin-left: auto;
    margin-top: 1rem;
  }
}
.l-footer_official__more-btn-link {
  box-sizing: border-box;
  width: 100%;
  height: 6.8rem;
  border: 1px solid var(--color-black);
  transition: filter 0.5s var(--ease-out-cubic), opacity 0.5s var(--ease-out-cubic);
}
@media screen and (max-width: 750px) {
  .l-footer_official__more-btn-link {
    height: 5.1rem;
  }
}
@media (hover: hover) {
  .l-footer_official__more-btn-link:hover {
    filter: blur(1px);
    opacity: 0.4;
  }
}
.l-footer_official__more-btn-link img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
@media screen and (max-width: 750px) {
  .l-footer_official__sns {
    margin-top: 3.9rem;
  }
}
.l-footer_official__sns-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .l-footer_official__sns-list {
    justify-content: center;
  }
}
.l-footer_official__sns-list-item {
  width: 3rem;
  margin-left: 2.55rem;
}
@media screen and (max-width: 750px) {
  .l-footer_official__sns-list-item {
    margin: 0 1.3rem;
  }
}
.l-footer_official__sns-link {
  transition: filter 0.5s var(--ease-out-cubic), opacity 0.5s var(--ease-out-cubic);
}
@media (hover: hover) {
  .l-footer_official__sns-link:hover {
    filter: blur(1px);
    opacity: 0.4;
  }
}

.c-btn {
  box-sizing: border-box;
  width: 100%;
  height: 7.6rem;
  background: var(--color-white);
  border: 1px solid var(--color-black);
  cursor: pointer;
  transition: filter 0.5s var(--ease-out-cubic), opacity 0.5s var(--ease-out-cubic);
}
@media screen and (max-width: 750px) {
  .c-btn {
    height: 5rem;
  }
}
@media (hover: hover) {
  .c-btn:hover {
    filter: blur(1px);
    opacity: 0.4;
  }
}
.c-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 7.5%;
  width: 2.6%;
  height: 100%;
  background: url(../img/icon_blank-arrow.svg) no-repeat center center/100% auto;
}
.c-btn[data-modal]::after {
  content: none;
}

.c-btn__text {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  text-align: center;
  color: var(--color-black);
  font-size: 1.8rem;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  .c-btn__text {
    font-size: 1.4rem;
  }
}
.c-btn__more_icon {
  display: block;
  position: absolute;
  top: 50%;
  right: 6.6%;
  transform: translateY(-50%);
  width: 3.2%;
  padding-top: 3.2%;
}
@media screen and (max-width: 750px) {
  .c-btn__more_icon {
    right: 6.2%;
    width: 2.2%;
    padding-top: 2.2%;
  }
}
.c-btn__more_icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: var(--color-black);
}
.c-btn__more_icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  width: 1px;
  height: 100%;
  background: var(--color-black);
}

[data-modal] {
  cursor: pointer;
}

.m-modal.m-modal-custom .m-modal__content {
  box-sizing: content-box;
  width: 100rem;
  max-width: 121.0892399538vh;
  padding-bottom: 6rem;
}
@media screen and (min-width: 751px) and (max-height: 800px) {
  .m-modal.m-modal-custom .m-modal__content {
    max-width: 109.8251246093vh;
  }
}
@media screen and (max-width: 750px) {
  .m-modal.m-modal-custom .m-modal__content {
    width: 93.5%;
    max-width: 51.6136878935vh;
    margin: 0 auto;
    padding-bottom: 4.7rem;
  }
}
.m-modal.default-modal .m-modal__content {
  max-width: 100rem;
  padding-bottom: 0;
}

.is-modal-overflow-prep .m-modal.m-modal-custom .m-modal__content {
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .is-modal-overflow-prep .m-modal.m-modal-custom .m-modal__content {
    margin: 0 auto;
  }
}
.m-modal.m-modal-custom .m-modal__content > div:has(> img) {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.m-modal.m-modal-custom .m-modal__content > div > img {
  max-height: 80vh;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .m-modal.m-modal-custom .m-modal__content > div > img {
    max-height: 85vh;
  }
}
.m-modal.m-modal-custom .m-modal__back {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url(../img/bg_3.jpg) repeat center center/cover;
}
@media screen and (max-width: 750px) {
  .m-modal.m-modal-custom .m-modal__back {
    background-size: auto 50%;
  }
}
.m-modal.m-modal-custom .m-modal__other {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7.2rem;
  border-top: 1px solid var(--color-black);
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .m-modal.m-modal-custom .m-modal__other {
    height: 5rem;
  }
}
.m-modal.m-modal-custom .m-modal__other::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url(../img/bg_3.jpg) repeat center center/cover;
}
@media screen and (max-width: 750px) {
  .m-modal.m-modal-custom .m-modal__other::before {
    background-size: auto 50%;
  }
}
.m-modal.m-modal-custom .m-modal__title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-basis: 0;
  flex-grow: 1;
  padding-left: 3rem;
  border-right: 1px solid var(--color-black);
  font-size: 1.6rem;
}
@media screen and (max-width: 750px) {
  .m-modal.m-modal-custom .m-modal__title {
    padding-left: 2rem;
    font-size: 1.4rem;
  }
}
.m-modal.m-modal-custom .m-modal__close {
  width: 7.1rem;
  height: 7.1rem;
}
@media screen and (max-width: 750px) {
  .m-modal.m-modal-custom .m-modal__close {
    width: 4.9rem;
    height: 4.9rem;
  }
}
.m-modal.m-modal-custom .m-modal__close-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: background-color 0.5s var(--ease-out-cubic);
}
@media (hover: hover) {
  .m-modal.m-modal-custom .m-modal__close-btn:hover {
    background: rgba(255, 255, 255, 0.8);
  }
}
.m-modal.m-modal-custom .m-modal__close-btn::before, .m-modal.m-modal-custom .m-modal__close-btn::after {
  content: none;
}
.m-modal.m-modal-custom .m-modal__close-btn-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 55%;
  height: 55%;
}
.m-modal.m-modal-custom .m-modal__close-btn-icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: var(--color-black);
}
.m-modal.m-modal-custom .m-modal__close-btn-icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  width: 1px;
  height: 100%;
  background: var(--color-black);
}