@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@4.0.0/dist/css/yakuhanjp.css");
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@3.4.1/dist/css/yakuhanmp.min.css");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
body {
  scroll-behavior: auto;
  background-color: #fff;
  padding-top: constant(safe-area-inset-top); /* 古い iOS */
  padding-top: env(safe-area-inset-top); /* 新しい iOS */
  padding-right: constant(safe-area-inset-right);
  padding-right: env(safe-area-inset-right);
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: constant(safe-area-inset-left);
  padding-left: env(safe-area-inset-left);
}

img {
  line-height: 1;
  max-width: 100%;
  vertical-align: middle;
  caret-color: transparent;
  pointer-events: none;
}

strong {
  font-weight: 600;
}

small {
  font-size: 70%;
}

span,
small {
  font-weight: inherit;
}

sup,
sub {
  font-size: 0.9rem;
}
@media screen and (min-width: 768px) {
  sup,
  sub {
    font-size: 1.1rem;
  }
}

/* common
-------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .tel {
    pointer-events: none;
  }
}
@media print {
  body {
    width: 1060px;
    margin-left: auto;
    margin-right: auto;
    background-color: transparent;
    background-image: none;
  }
  .tab_only,
  .sp_only {
    display: none;
  }
  .pc_none {
    display: none;
  }
}
/* スライド
-------------------------------------------------------*/
.c-slideLeft {
  position: relative;
  opacity: 0;
}
.c-slideLeft::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #efefef;
}

.c-slideLeft.is-active {
  -webkit-animation: slideLeft 1s ease-in-out forwards;
          animation: slideLeft 1s ease-in-out forwards;
}
.c-slideLeft.is-active::after {
  -webkit-animation: slideLeft-after 1s ease-in-out forwards;
          animation: slideLeft-after 1s ease-in-out forwards;
  left: 0;
  -webkit-transform-origin: left;
          transform-origin: left;
}

@-webkit-keyframes slideLeft {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slideLeft {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes slideLeft-after {
  0% {
    width: 100vw;
  }
  100% {
    width: 0vw;
  }
}
@keyframes slideLeft-after {
  0% {
    width: 100vw;
  }
  100% {
    width: 0vw;
  }
}
.c-slideRight {
  position: relative;
  opacity: 0;
}
.c-slideRight::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #efefef;
  -webkit-transform-origin: right;
          transform-origin: right;
}

.c-slideRight.is-active {
  -webkit-animation: slideRight 1s ease-in-out forwards;
          animation: slideRight 1s ease-in-out forwards;
}
.c-slideRight.is-active::after {
  -webkit-animation: slideRight-after 1s ease-in-out forwards;
          animation: slideRight-after 1s ease-in-out forwards;
  right: 0;
}

@-webkit-keyframes slideRight {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slideRight {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes slideRight-after {
  0% {
    width: 100vw;
  }
  100% {
    width: 0vw;
  }
}
@keyframes slideRight-after {
  0% {
    width: 100vw;
  }
  100% {
    width: 0vw;
  }
}
.js-scroll {
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
}
@media screen and (min-width: 768px) {
  .js-scroll:nth-child(3n+2) {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s;
  }
  .js-scroll:nth-child(3n+3) {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
}
@media screen and (max-width: 767px) {
  .js-scroll {
    -webkit-animation-duration: 0.7s;
            animation-duration: 0.7s;
  }
}

/* フェード
-------------------------------------------------------*/
.--fadeIn {
  opacity: 0;
}

.--fadeIn.is-active {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.--fadeUp {
  opacity: 0;
  -webkit-transform: translateY(5rem);
          transform: translateY(5rem);
}

.--fadeUp.is-active {
  -webkit-animation-name: fadeUp;
          animation-name: fadeUp;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadeUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.--fadeDown {
  opacity: 0;
  -webkit-transform: translateY(-4rem);
          transform: translateY(-4rem);
}

.--fadeDown.is-active {
  -webkit-animation-name: fadeDown;
          animation-name: fadeDown;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadeDown {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeDown {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.--fadeLeft {
  opacity: 0;
  -webkit-transform: translateX(4rem);
          transform: translateX(4rem);
  -webkit-filter: blur(5px);
          filter: blur(5px);
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .--fadeLeft {
    -webkit-transform: translateX(3rem);
            transform: translateX(3rem);
  }
}
@media screen and (max-width: 767px) {
  .--fadeLeft {
    -webkit-transform: translateX(2rem);
            transform: translateX(2rem);
  }
}

.--fadeLeft.is-active {
  -webkit-animation-name: fadeLeft;
          animation-name: fadeLeft;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadeLeft {
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes fadeLeft {
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
.--fadeRight {
  opacity: 0;
  -webkit-transform: translateX(-4rem);
          transform: translateX(-4rem);
  -webkit-filter: blur(5px);
          filter: blur(5px);
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .--fadeRight {
    -webkit-transform: translateX(-3rem);
            transform: translateX(-3rem);
  }
}
@media screen and (max-width: 767px) {
  .--fadeRight {
    -webkit-transform: translateX(-2rem);
            transform: translateX(-2rem);
  }
}

.--fadeRight.is-active {
  -webkit-animation-name: fadeRight;
          animation-name: fadeRight;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadeRight {
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}

@keyframes fadeRight {
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}
.--fadeZoomIn {
  opacity: 0;
}

.--fadeZoomIn.js-scroll {
  -webkit-animation-name: fadeZoomIn;
          animation-name: fadeZoomIn;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadeZoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes fadeZoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.--fadeScale {
  opacity: 0;
  scale: 0.9;
}

.--fadeScale.js-scroll {
  -webkit-animation-name: fadeScale;
          animation-name: fadeScale;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadeScale {
  from {
    opacity: 0;
    scale: 0.9;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}

@keyframes fadeScale {
  from {
    opacity: 0;
    scale: 0.9;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}
.--fadeBlur {
  opacity: 0;
}

.--fadeBlur.js-scroll {
  -webkit-animation-name: fadeBlur;
          animation-name: fadeBlur;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadeBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes fadeBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.none {
  display: none !important;
}

.event-none {
  pointer-events: none;
}

/* テキスト処理
-------------------------------------------------------*/
.u-line_clamp {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.u-visually_hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
}

.u-justify {
  overflow-wrap: break-word;
  text-align: justify;
  word-break: break-all;
  text-justify: inter-ideograph;
  text-justify: inter-character;
  word-wrap: break-word;
}

/* ul li ol dl dt dd
-------------------------------------------------------*/
dd:empty::before {
  content: "-";
}

/* リンク
-------------------------------------------------------*/
.list__image-hover li a {
  display: block;
  position: relative;
}
.list__image-hover li:not(:hover) a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

/* 角丸
-------------------------------------------------------*/
.radius3 {
  border-radius: 3px;
}

.radius5 {
  border-radius: 5px;
}

.radius7 {
  border-radius: 7px;
}

.radius10 {
  border-radius: 10px;
}

.radius15 {
  border-radius: 15px;
}

.radius20 {
  border-radius: 20px;
}

.radius50 {
  border-radius: 50px;
}

/* gmap
------------------------------------------------------------------------*/
.gmap {
  position: relative;
  height: 450px;
}

.gmap iframe,
.gmap #gmap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100% !important;
  height: 100% !important;
  pointer-events: all !important;
}

/* youtube
------------------------------------------------------------------------*/
.youtube,
.video {
  position: relative;
  padding-bottom: 56.25%;
}

.youtube iframe,
.video iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100% !important;
  height: 100% !important;
  pointer-events: all !important;
}

/* align
------------------------------------------------------------------------*/
.u-align--left {
  text-align: left;
}

.u-align--center {
  text-align: center;
}

.u-align--right {
  text-align: right;
}

/**/
@media screen and (min-width: 1401px) {
  .pcWidth_none {
    display: none;
  }
}
@media all and (min-width: 1201px) {
  .sp_only,
  .tab_only {
    display: none !important;
  }
  .pcWidth_only {
    display: none;
  }
  /**/
  .pc_none {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .sp_only {
    display: none !important;
  }
  .pc_only,
  .pcWidth_only {
    display: none;
  }
  /**/
  .tab_none {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .sp_only {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .tab_only,
  .pc_only,
  .pcWidth_only,
  .sp_none {
    display: none !important;
  }
  /**/
}
@media screen and (max-height: 880px) {
  .notePC_none {
    display: none !important;
  }
}
.c-main {
  color: #f7f8f8;
}

.c-main2 {
  color: #000;
}

.c-sub {
  color: #f7f8f8;
}

.c-sub2 {
  color: #000;
}

.c-red {
  color: #dc143c;
}

.c-red__dark {
  color: #870404;
  font-weight: bold;
}

.c-blue {
  color: #0067c0;
}

.c-green {
  color: #4db56a;
}

.c-yellow {
  color: #f8b400;
}

.c-black {
  color: #000;
}

.c-gray {
  color: #ddd;
}

.c-white {
  color: #fff;
}

.c-ivory {
  color: #f3ecd8;
}

.u-bg {
  background-color: #f2f4f4;
}
.u-bg__white {
  background-color: #ffffff;
}
.u-bg__black {
  background-color: #000000;
}
.u-bg__gray {
  background-color: #cacfcf;
}
.u-bg__gray--light {
  background-color: #eeeeee;
}
.u-bg__gray--dark {
  background-color: #cccccc;
}

.u-bg__paper {
  position: relative;
  background-image: url(../../img/common/bg_paper.jpg);
  background-repeat: repeat;
  background-position: center center;
}
.u-bg__paper:before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f2eedf;
  mix-blend-mode: multiply;
}

/* flex
-------------------------------------------------------*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.flex.flex--alignStart {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.flex.flex--alignCenter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex.flex--alignEnd {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.flex.flex--justStart {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.flex.flex--justCenter {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flex.flex--justEnd {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.flex.flex--nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.flex.flex--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/* 3・4列の最後を左寄せにする
 .flex::after, .flex::before {
  content: "";
  display: block;
  width: 21%;
  height: 0;
 }
 .flex::before {
  order: 1;
 }
 */
/* col
-------------------------------------------------------*/
.--col1 {
  width: 100%;
}

.--col2 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .--col2 {
    width: 50%;
  }
}

.--col3 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .--col3 {
    width: 33.3333333333%;
  }
}

.--col4 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .--col4 {
    width: 25%;
  }
}

.grid {
  display: grid;
}
@media screen and (min-width: 768px) {
  .grid.--grid2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .grid.--grid3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.grid.--grid4 {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 768px) {
  .grid.--grid4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* margin
-------------------------------------------------------*/
.u3 {
  margin-bottom: 3px;
}

.u5 {
  margin-bottom: 5px;
}

.u7 {
  margin-bottom: 7px;
}

.u10 {
  margin-bottom: 10px;
}

.u15 {
  margin-bottom: 15px;
}

.u20 {
  margin-bottom: 20px;
}

.u25 {
  margin-bottom: 25px;
}

.u30 {
  margin-bottom: 30px;
}

.u35 {
  margin-bottom: 35px;
}

.u40 {
  margin-bottom: 40px;
}

.u45 {
  margin-bottom: 45px;
}

.u50 {
  margin-bottom: 50px;
}

.u55 {
  margin-bottom: 55px;
}

.u60 {
  margin-bottom: 60px;
}

.u70 {
  margin-bottom: 70px;
}

.u80 {
  margin-bottom: 80px;
}

.u90 {
  margin-bottom: 90px;
}

.u100 {
  margin-bottom: 100px;
}

.u110 {
  margin-bottom: 110px;
}

.u120 {
  margin-bottom: 120px;
}

.u130 {
  margin-bottom: 130px;
}

.u140 {
  margin-bottom: 140px;
}

.u150 {
  margin-bottom: 150px;
}

.u160 {
  margin-bottom: 160px;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .u3 {
    margin-bottom: 2.1px;
  }
  .u5 {
    margin-bottom: 3.5px;
  }
  .u7 {
    margin-bottom: 4.9px;
  }
  .u10 {
    margin-bottom: 7px;
  }
  .u15 {
    margin-bottom: 10.5px;
  }
  .u20 {
    margin-bottom: 14px;
  }
  .u25 {
    margin-bottom: 17.5px;
  }
  .u30 {
    margin-bottom: 21px;
  }
  .u35 {
    margin-bottom: 24.5px;
  }
  .u40 {
    margin-bottom: 28px;
  }
  .u45 {
    margin-bottom: 31.5px;
  }
  .u50 {
    margin-bottom: 35px;
  }
  .u55 {
    margin-bottom: 38.5px;
  }
  .u60 {
    margin-bottom: 42px;
  }
  .u70 {
    margin-bottom: 49px;
  }
  .u80 {
    margin-bottom: 56px;
  }
  .u90 {
    margin-bottom: 63px;
  }
  .u100 {
    margin-bottom: 70px;
  }
  .u110 {
    margin-bottom: 77px;
  }
  .u120 {
    margin-bottom: 84px;
  }
  .u130 {
    margin-bottom: 91px;
  }
  .u140 {
    margin-bottom: 98px;
  }
  .u150 {
    margin-bottom: 105px;
  }
  .u160 {
    margin-bottom: 112px;
  }
}
@media screen and (max-width: 767px) {
  .u3 {
    margin-bottom: 1.5px;
  }
  .u5 {
    margin-bottom: 2.5px;
  }
  .u7 {
    margin-bottom: 3.5px;
  }
  .u10 {
    margin-bottom: 5px;
  }
  .u15 {
    margin-bottom: 7.5px;
  }
  .u20 {
    margin-bottom: 10px;
  }
  .u25 {
    margin-bottom: 12.5px;
  }
  .u30 {
    margin-bottom: 15px;
  }
  .u35 {
    margin-bottom: 17.5px;
  }
  .u40 {
    margin-bottom: 20px;
  }
  .u45 {
    margin-bottom: 22.5px;
  }
  .u50 {
    margin-bottom: 25px;
  }
  .u55 {
    margin-bottom: 27.5px;
  }
  .u60 {
    margin-bottom: 30px;
  }
  .u70 {
    margin-bottom: 35px;
  }
  .u80 {
    margin-bottom: 40px;
  }
  .u90 {
    margin-bottom: 45px;
  }
  .u100 {
    margin-bottom: 50px;
  }
  .u110 {
    margin-bottom: 55px;
  }
  .u120 {
    margin-bottom: 60px;
  }
  .u130 {
    margin-bottom: 65px;
  }
  .u140 {
    margin-bottom: 70px;
  }
  .u150 {
    margin-bottom: 75px;
  }
  .u160 {
    margin-bottom: 80px;
  }
}
/* -------------------------------------------------------*/
.u-5 {
  position: relative;
  margin-bottom: -5px;
}

.u-10 {
  position: relative;
  margin-bottom: -10px;
}

.u-20 {
  position: relative;
  margin-bottom: -20px;
}

.u-30 {
  position: relative;
  margin-bottom: -30px;
}

.u-40 {
  position: relative;
  margin-bottom: -40px;
}

.u-50 {
  position: relative;
  margin-bottom: -50px;
}

.u-60 {
  position: relative;
  margin-bottom: -60px;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .u-10 {
    margin-bottom: -7px;
  }
  .u-20 {
    margin-bottom: -14px;
  }
  .u-30 {
    margin-bottom: -21px;
  }
  .u-40 {
    margin-bottom: -28px;
  }
  .u-50 {
    margin-bottom: -35px;
  }
  .u-60 {
    margin-bottom: -42px;
  }
}
@media screen and (max-width: 767px) {
  .u-5 {
    position: relative;
    margin-bottom: -2.5px;
  }
  .u-10 {
    position: relative;
    margin-bottom: -5px;
  }
  .u-20 {
    position: relative;
    margin-bottom: -10px;
  }
  .u-30 {
    position: relative;
    margin-bottom: -15px;
  }
  .u-40 {
    position: relative;
    margin-bottom: -20px;
  }
  .u-50 {
    position: relative;
    margin-bottom: -25px;
  }
  .u-60 {
    position: relative;
    margin-bottom: -30px;
  }
}
/* -------------------------------------------------------*/
.t5 {
  margin-top: 5px;
}

.t7 {
  margin-top: 7px;
}

.t10 {
  margin-top: 10px;
}

.t15 {
  margin-top: 15px;
}

.t20 {
  margin-top: 20px;
}

.t25 {
  margin-top: 25px;
}

.t30 {
  margin-top: 30px;
}

.t40 {
  margin-top: 40px;
}

.t50 {
  margin-top: 50px;
}

.t60 {
  margin-top: 60px;
}

.t70 {
  margin-top: 70px;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .t5 {
    margin-top: 3.5px;
  }
  .t7 {
    margin-top: 4.9px;
  }
  .t10 {
    margin-top: 7px;
  }
  .t15 {
    margin-top: 10.5px;
  }
  .t20 {
    margin-top: 14px;
  }
  .t25 {
    margin-top: 17.5px;
  }
  .t30 {
    margin-top: 21px;
  }
  .t40 {
    margin-top: 28px;
  }
  .t50 {
    margin-top: 35px;
  }
  .t60 {
    margin-top: 42px;
  }
  .t70 {
    margin-top: 49px;
  }
}
@media screen and (max-width: 767px) {
  .t5 {
    margin-top: 2.5px;
  }
  .t7 {
    margin-top: 3.5px;
  }
  .t10 {
    margin-top: 5px;
  }
  .t15 {
    margin-top: 7.5px;
  }
  .t20 {
    margin-top: 10px;
  }
  .t25 {
    margin-top: 12.5px;
  }
  .t30 {
    margin-top: 15px;
  }
  .t40 {
    margin-top: 20px;
  }
  .t50 {
    margin-top: 25px;
  }
  .t60 {
    margin-top: 30px;
  }
  .t70 {
    margin-top: 35px;
  }
}
/* -------------------------------------------------------*/
.t-5,
.t-10,
.t-15,
.t-20,
.t-25,
.t-30 {
  position: relative;
}

.t-5 {
  margin-top: -5px;
}

.t-10 {
  margin-top: -10px;
}

.t-15 {
  margin-top: -15px;
}

.t-20 {
  margin-top: -20px;
}

.t-25 {
  margin-top: -25px;
}

.t-30 {
  margin-top: -30px;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .t-5 {
    margin-top: -3.5px;
  }
  .t-10 {
    margin-top: -7px;
  }
  .t-15 {
    margin-top: -10.5px;
  }
  .t-20 {
    margin-top: -14px;
  }
  .t-25 {
    margin-top: -17.5px;
  }
  .t-30 {
    margin-top: -21px;
  }
}
@media screen and (max-width: 767px) {
  .t-5 {
    margin-top: -2.5px;
  }
  .t-10 {
    margin-top: -5px;
  }
  .t-15 {
    margin-top: -7.5px;
  }
  .t-20 {
    margin-top: -10px;
  }
  .t-25 {
    margin-top: -12.5px;
  }
  .t-30 {
    margin-top: -15px;
  }
}
/* -------------------------------------------------------*/
.t0 {
  margin-top: 0 !important;
}

.l0 {
  margin-left: 0 !important;
}

.r0 {
  margin-right: 0 !important;
}

.u0 {
  margin-bottom: 0 !important;
}

.u0 img {
  vertical-align: bottom;
}

/* section
-------------------------------------------------------*/
.section--pt {
  padding-top: 100px;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .section--pt {
    padding-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .section--pt {
    padding-top: 100px;
    padding-top: 14.2857142857vw;
  }
}

.section--pt_sm {
  padding-top: 70px;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .section--pt_sm {
    padding-top: 70px;
  }
}
@media screen and (max-width: 767px) {
  .section--pt_sm {
    padding-top: 70px;
    padding-top: 10vw;
  }
}

.section--pt_lg {
  padding-top: 140px;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .section--pt_lg {
    padding-top: 140px;
  }
}
@media screen and (max-width: 767px) {
  .section--pt_lg {
    padding-top: 140px;
    padding-top: 20vw;
  }
}

.section--pt_xl {
  padding-top: 200px;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .section--pt_xl {
    padding-top: 200px;
  }
}
@media screen and (max-width: 767px) {
  .section--pt_xl {
    padding-top: 200px;
    padding-top: 20vw;
  }
}

.section--pb {
  padding-bottom: 100px;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .section--pb {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .section--pb {
    padding-bottom: 100px;
    padding-bottom: 14.2857142857vw;
  }
}

.section--pb_sm {
  padding-bottom: 70px;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .section--pb_sm {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 767px) {
  .section--pb_sm {
    padding-bottom: 70px;
    padding-bottom: 10vw;
  }
}

.section--pb_lg {
  padding-bottom: 140px;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .section--pb_lg {
    padding-bottom: 140px;
  }
}
@media screen and (max-width: 767px) {
  .section--pb_lg {
    padding-bottom: 140px;
    padding-bottom: 20vw;
  }
}

.section--pb_xl {
  padding-bottom: 200px;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .section--pb_xl {
    padding-bottom: 200px;
  }
}
@media screen and (max-width: 767px) {
  .section--pb_xl {
    padding-bottom: 200px;
    padding-bottom: 20vw;
  }
}

.section--pb_xl2 {
  padding-bottom: 300px;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .section--pb_xl2 {
    padding-bottom: 300px;
  }
}
@media screen and (max-width: 767px) {
  .section--pb_xl2 {
    padding-bottom: 300px;
    padding-bottom: 42.8571428571vw;
  }
}

.section--mt {
  margin-top: 100px;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .section--mt {
    margin-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .section--mt {
    margin-top: 100px;
    margin-top: 14.2857142857vw;
  }
}

.section--mt_sm {
  margin-top: 70px;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .section--mt_sm {
    margin-top: 70px;
  }
}
@media screen and (max-width: 767px) {
  .section--mt_sm {
    margin-top: 70px;
    margin-top: 10vw;
  }
}

.section--mt_lg {
  margin-top: 140px;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .section--mt_lg {
    margin-top: 140px;
  }
}
@media screen and (max-width: 767px) {
  .section--mt_lg {
    margin-top: 140px;
    margin-top: 20vw;
  }
}

.section--mt_xl {
  margin-top: 200px;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .section--mt_xl {
    margin-top: 200px;
  }
}
@media screen and (max-width: 767px) {
  .section--mt_xl {
    margin-top: 200px;
    margin-top: 20vw;
  }
}

.section--mb {
  margin-bottom: 100px;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .section--mb {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .section--mb {
    margin-bottom: 100px;
    margin-bottom: 14.2857142857vw;
  }
}

.section--mb_sm {
  margin-bottom: 70px;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .section--mb_sm {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 767px) {
  .section--mb_sm {
    margin-bottom: 70px;
    margin-bottom: 10vw;
  }
}

.section--mb_lg {
  margin-bottom: 140px;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .section--mb_lg {
    margin-bottom: 140px;
  }
}
@media screen and (max-width: 767px) {
  .section--mb_lg {
    margin-bottom: 140px;
    margin-bottom: 20vw;
  }
}

.section--mb_xl {
  margin-bottom: 200px;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .section--mb_xl {
    margin-bottom: 200px;
  }
}
@media screen and (max-width: 767px) {
  .section--mb_xl {
    margin-bottom: 200px;
    margin-bottom: 20vw;
  }
}

.underLine--yellow {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #ffee00));
  background: linear-gradient(transparent 70%, #ffee00 70%);
}

.underLine--yellow__border {
  position: relative;
}
.underLine--yellow__border::before {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: #ffee00;
}
@media screen and (max-width: 767px) {
  .underLine--yellow__border::before {
    bottom: -1px;
    height: 3px;
  }
}

.underLine--blue {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(40%, #66ccff));
  background: linear-gradient(transparent 40%, #66ccff 40%);
}

.underLine--green {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(40%, #66ffcc));
  background: linear-gradient(transparent 40%, #66ffcc 40%);
}

.underLine--red {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(40%, #ff9494));
  background: linear-gradient(transparent 40%, #ff9494 40%);
}

.underLine--pink {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(40%, #f0aeeb));
  background: linear-gradient(transparent 40%, #f0aeeb 40%);
}

.u-zoomLink a {
  display: block;
}
@media screen and (min-width: 1001px) {
  .u-zoomLink a figure img {
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .u-zoomLink a:hover figure img {
    opacity: 0.5;
    -webkit-transform: scale(1.15, 1.15);
            transform: scale(1.15, 1.15);
  }
}
.u-zoomLink a figure {
  overflow: hidden;
  background-color: #fff;
}
.u-zoomLink a figure img {
  width: 100%;
}

.breadcrumb {
  color: #fff;
  background-color: #333333;
  padding-left: 20px;
}
.breadcrumb__list {
  padding-top: 6px;
  padding-bottom: 7px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .breadcrumb__list {
    padding-top: 2px;
    padding-bottom: 4px;
    white-space: nowrap;
  }
}
.breadcrumb__item {
  list-style: none;
  font-weight: bold;
  font-size: 13px;
  display: inline-block;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .breadcrumb__item {
    font-size: 1rem;
  }
}
.breadcrumb__item a {
  position: relative;
  color: #fff;
  font-weight: normal;
}
.breadcrumb__item a:hover {
  text-decoration: underline;
}
.breadcrumb__item:not(:last-child):after {
  content: ">";
  font-weight: 300;
  position: relative;
  top: -1px;
  margin-left: 1em;
  margin-right: 1em;
}
@media screen and (max-width: 767px) {
  .breadcrumb__item:not(:last-child):after {
    margin-left: 0.3em;
    margin-right: 0.3em;
  }
}
.breadcrumb__item:last-child a {
  pointer-events: none;
}

.breadcrumb__bottom {
  color: #fff;
  background-color: #f7f8f8;
}

/*
-------------------------------------------------------*/
.c-wrap {
  width: 90%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-wrap {
    width: 96%;
    margin-inline: auto;
  }
  .c-wrap.--lg {
    max-width: 1200px;
  }
  .c-wrap.--md {
    max-width: 1100px;
  }
  .c-wrap.--sm {
    max-width: 1000px;
  }
  .c-wrap.--xs {
    max-width: 800px;
  }
}

@media screen and (min-width: 768px) {
  .c-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.c-heading {
  padding-top: 70px;
  padding-top: 10vw;
  padding-bottom: 70px;
  padding-bottom: 10vw;
}
@media screen and (min-width: 768px) {
  .c-heading {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.c-heading .c-heading__ttl {
  font-family: YakuHanJP, "dnp-shuei-gothic-gin-std";
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.07em;
}
@media screen and (min-width: 768px) {
  .c-heading .c-heading__ttl {
    font-size: min(3.8181818182vw, 4.2rem);
  }
}
@media screen and (max-width: 767px) {
  .c-heading .c-heading__ttl {
    font-size: 7.2222222222vw;
  }
}
@media screen and (min-width: 768px) {
  .c-heading .c-heading__ttl {
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .c-heading .c-heading__ttl.--sm {
    font-size: min(3.4545454545vw, 3.8rem);
  }
}
@media screen and (max-width: 767px) {
  .c-heading .c-heading__ttl.--sm {
    font-size: 7.2222222222vw;
  }
}
.c-heading .c-heading__txt {
  font-family: YakuHanJP, "dnp-shuei-gothic-gin-std";
  font-weight: 300;
  line-height: 1.9;
  margin-top: 0.8em;
}
@media screen and (min-width: 768px) {
  .c-heading .c-heading__txt {
    font-size: min(2vw, 2.2rem);
  }
}
@media screen and (max-width: 767px) {
  .c-heading .c-heading__txt {
    font-size: 5vw;
  }
}
@media screen and (min-width: 768px) {
  .c-heading .c-heading__txt {
    line-height: 2.2727272727;
    margin-top: 0.5em;
  }
}
.c-heading.--center {
  text-align: center;
}
.c-heading.--left {
  text-align: left;
}
.c-heading.--right {
  text-align: right;
}

.c-heading.--section {
  text-align: center;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .c-heading.--section {
    padding-bottom: 20px;
  }
}
.c-heading.--section .c-heading__eng {
  width: 70%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.c-heading.--section .c-heading__copy {
  font-size: 1.4444444444em;
  font-weight: 600;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .c-heading.--section .c-heading__copy {
    font-size: 1.1666666667em;
  }
}
.c-heading.--section .c-heading__txt {
  font-size: 1.375em;
  letter-spacing: 0.05em;
}
.c-heading.--section.--mt {
  position: relative;
  margin-top: -120px;
  padding-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .c-heading.--section.--mt {
    margin-top: -64px;
    padding-bottom: 17px;
  }
}
.c-heading.--section.--mt .c-heading__copy {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .c-heading.--section.--mt .c-heading__copy {
    margin-top: 20px;
  }
}

/* font
-------------------------------------------------------*/
.font-eng {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
}

.font-mincho {
  font-family: "Hannari", "Noto Serif JP", "Hiragino Mincho ProN", "Noto Serif JP", "Yu Mincho", YuMincho, serif;
}

.font-mincho__shippori {
  font-family: YakuHanMP, "Shippori Mincho", "Hiragino Mincho ProN", "Noto Serif JP", "Yu Mincho", YuMincho, serif;
}

.font-gothic {
  font-family: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  font-weight: 300;
}

/* title
-------------------------------------------------------*/
/* txt
-------------------------------------------------------*/
.txt__lg {
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .txt__lg {
    font-size: min(2.5454545455vw, 2.8rem);
  }
}
@media screen and (max-width: 767px) {
  .txt__lg {
    font-size: 5.8333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .txt__lg {
    line-height: 1.9285714286;
  }
}

.txt__md2 {
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .txt__md2 {
    font-size: min(1.8181818182vw, 2rem);
  }
}
@media screen and (max-width: 767px) {
  .txt__md2 {
    font-size: 4.4444444444vw;
  }
}
@media screen and (min-width: 768px) {
  .txt__md2 {
    line-height: 2.4;
  }
}

.txt__md {
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .txt__md {
    font-size: min(1.6363636364vw, 1.8rem);
  }
}
@media screen and (max-width: 767px) {
  .txt__md {
    font-size: 4.1666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .txt__md {
    line-height: 2.3333333333;
  }
}

/* capt
-------------------------------------------------------*/
.capt {
  font-size: 9.5px;
  font-size: 2.5333333333vw;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .capt {
    font-size: 11px;
    font-size: 1.2790697674vh;
  }
}
.capt_s {
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .capt_s {
    font-size: 1.1rem;
  }
}

.capt__img {
  position: absolute;
  bottom: 2px;
  right: 5px;
  margin: auto;
}

/* txt_indent
-------------------------------------------------------*/
.txt_indent {
  padding-left: 1em;
  text-indent: -1em;
}

.txt_indent2 {
  padding-left: 2em;
  text-indent: -2em;
}

/* txt_shadow
-------------------------------------------------------*/
.txt_shadow__wh {
  text-shadow: 0 0 1px #fff, 0 0 2px #fff, 0 0 3px #fff, 0 0 5px #fff;
}

.txt_shadow__bk {
  color: #fff;
  text-shadow: 0 0 1px rgb(0, 0, 0), 0 0 2px rgb(0, 0, 0), 0 0 3px rgb(0, 0, 0), 0 0 5px rgb(0, 0, 0), 0 0 10px rgb(0, 0, 0);
}

.txt_shadow__bk_light {
  color: #fff;
  text-shadow: 0 0 1px rgb(0, 0, 0), 0 0 3px rgb(0, 0, 0), 0 0 5px rgb(0, 0, 0);
}

/* lts
-------------------------------------------------------*/
.lts__0 {
  letter-spacing: 0;
}

.lts__sm {
  letter-spacing: 0.03em;
}

.lts__md {
  letter-spacing: 0.05em;
}

.lts__lg {
  letter-spacing: 0.07em;
}

.lts__xl {
  letter-spacing: 0.1em;
}

.lts__xl2 {
  letter-spacing: 0.13em;
}

.lts__xl3 {
  letter-spacing: 0.15em;
}

.pageTitle {
  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;
  position: relative;
  width: 100%;
  height: 400px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .pageTitle {
    height: 190px;
  }
}
.pageTitle::before {
  z-index: 2;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  margin: auto;
}
.pageTitle img {
  z-index: -1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pageTitle .ttl__data {
  position: relative;
  z-index: 5;
  font-size: 2.4rem;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .pageTitle .ttl__data {
    font-size: 2.16rem;
  }
}
@media screen and (max-width: 767px) {
  .pageTitle .ttl__data {
    font-size: 1.5rem;
    letter-spacing: 0.03em;
    bottom: -20px;
  }
}
.pageTitle .ttl__data::before {
  font-size: 8rem;
  color: #fff;
  background: none;
  margin-bottom: 40px;
  -webkit-text-fill-color: #fff;
}
@media screen and (max-width: 767px) {
  .pageTitle .ttl__data::before {
    font-size: 5.2rem;
    margin-bottom: 15px;
  }
}
.pageTitle .ttl__data::after {
  content: "";
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  width: 45px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  margin: auto;
}
@media screen and (max-width: 767px) {
  .pageTitle .ttl__data::after {
    width: 40px;
    bottom: 33px;
  }
}
/* グラデーション
-------------------------------------------------------*/
.grade--txt {
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(#7ac9ea), to(#007bd1));
  background: linear-gradient(to right, #7ac9ea, #007bd1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.grade--data {
  color: #f7f8f8;
}
.grade--data::before {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  background: -webkit-gradient(linear, left top, right top, from(#7ac9ea), to(#007bd1));
  background: linear-gradient(to right, #7ac9ea, #007bd1);
  margin-left: auto;
  margin-right: auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ttl__underline {
  position: relative;
  border-bottom: 5px solid #f6f6f6;
}
.ttl__underline::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 70px;
  height: 5px;
  background-color: #387ccc;
}

.ttl__underline--center {
  text-align: center;
}
.ttl__underline--center::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* 矢印の共通パーツ
-------------------------------------------------------*/
.c-arrow {
  padding-right: 0.5em;
}
.c-arrow::after {
  content: "";
  position: absolute;
  right: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.5em;
  height: 0.5em;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

.arrow-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.arrow-nav:before {
  display: inline-block;
  margin-right: 0.5em;
  content: "";
  width: 17px;
  aspect-ratio: 1;
  background-image: url(../../img/common/slider_arrow_right.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.arrow-nav.--white:before {
  background-image: url(../../img/common/slider_arrow_right_white.svg);
}

.arrow-blank {
  position: relative;
  padding: 0 20px 0 0;
  vertical-align: middle;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.arrow-blank:after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0px;
  content: "";
  width: 11px;
  height: 11px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../../img/common/icon-blank.svg);
}
@media screen and (min-width: 768px) {
  .arrow-blank:after {
    width: 11px;
    height: 11px;
  }
}
.arrow-blank.--white:after {
  background-image: url(../../img/common/icon-blank_white.svg);
}

.list__square {
  list-style: square;
}
.list__square li {
  list-style: inside;
}

.list__circle {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.list__circle li {
  position: relative;
  padding-left: 1em; /* マーカー分のスペースだけ確保 */
}
.list__circle li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em; /* テキストの中央に揃える */
  width: 0.4em;
  height: 0.4em;
  border-radius: 50%; /* 丸にする */
  background: black; /* マーカー色 */
}

.list__before {
  list-style: none;
}
.list__before li {
  position: relative;
}
.list__before li::before {
  content: "▪";
  display: block;
  position: absolute;
  left: -1em;
  color: #ddd;
}

.list__check li {
  font-weight: 600;
  position: relative;
  padding-left: 56px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 2.2rem;
}
.list__check li + li {
  margin-top: 1em;
}
.list__check li::before {
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(../../images/common/arrow_check.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* color
-------------------------------------------------------*/
.list__blue ul li {
  background-color: #f2f4f4;
  padding: 30px;
}
.list__blue ul li .ttl {
  color: #f7f8f8;
  text-align: center;
}
.list__blue ul li .txt {
  font-size: 1.5rem;
  line-height: 1.8;
  margin-top: 15px;
}

.list__gray ul li {
  min-height: 240px;
  background-color: #f7f7f7;
  padding: 20px;
}
.list__gray ul li .img {
  width: 90%;
  max-width: 430px;
  margin-left: auto;
  margin-right: auto;
}
.list__gray ul li .ttl {
  color: #f7f8f8;
  text-align: center;
}
.list__gray ul li .txt {
  font-size: 1.5rem;
  line-height: 1.8;
  margin-top: 15px;
}

table {
  line-height: 1.5;
  border-collapse: collapse;
  border-spacing: 0;
}
@media screen and (min-width: 768px) {
  table {
    width: 100%;
  }
}
table th {
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .table-scroll {
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}
.table-scroll::-webkit-scrollbar {
  height: 5px;
}
.table-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.table-scroll::-webkit-scrollbar-thumb {
  background: #bcbcbc;
}
.table-scroll table th,
.table-scroll table td {
  position: relative;
  font-weight: 400;
  padding: 65px 0 20px 0;
  text-align: left;
}
.table-scroll table th::before,
.table-scroll table td::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 93%;
  height: 1px;
  margin: auto;
}
.table-scroll table th {
  width: 20%;
  min-width: 130px;
}
.table-scroll table th::before {
  background-color: #000;
}
.table-scroll table td::before {
  background-color: #ccc;
}
.table-scroll table .head {
  background-color: #e2e2e2;
}
@media only screen and (max-width: 767px) {
  .table-scroll table .fixed {
    position: sticky;
    left: 0;
    height: 100%;
  }
  .table-scroll table .fixed:before {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    right: -1px;
    height: 100%;
  }
}

.table-col table th,
.table-col table td {
  padding: 20px 40px;
  border: none;
}
.table-col table th {
  width: 30%;
  background-color: #f0f0f0;
}
@media only screen and (max-width: 767px) {
  .table-col table th,
  .table-col table td,
  .table-col table tr {
    display: block;
    width: 100%;
  }
  .table-col table th {
    width: 100%;
  }
  .table-col table td {
    padding-top: 0;
  }
}

.table-dl {
  /* sp */
}
.table-dl dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #b5b1b1;
}
.table-dl dt,
.table-dl dd {
  padding: 24px 0;
}
.table-dl dt {
  width: 30%;
}
.table-dl dd {
  width: 70%;
}
@media only screen and (max-width: 767px) {
  .table-dl dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    box-orient: vertical;
  }
  .table-dl dt,
  .table-dl dd {
    width: 100%;
  }
  .table-dl dd {
    padding-top: 0;
  }
}

figcaption {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  figcaption {
    font-size: 1rem;
  }
}

/* figure
-------------------------------------------------------*/
.figure {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.figure figcaption {
  position: absolute;
  bottom: 0;
  right: 0;
  font-family: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  padding: 4px 8px;
  margin: auto;
}
.figure figcaption.capt_bg {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.3);
}
.figure.reverse figcaption {
  position: absolute;
  left: 0;
  right: 0;
}

/* figure_capt
-------------------------------------------------------*/
.figure_capt {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.figure_capt figcaption {
  margin-top: 4px;
  text-align: right;
  letter-spacing: 0.07em;
}

.figure__frame__stripe::after {
  z-index: 1;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-image-source: repeating-linear-gradient(45deg, #fff 0, #fff 3px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 6px);
  border-width: 10px;
  border-image-slice: 10;
  border-image-repeat: round;
  border-style: solid;
}

.figure__frame__photo::before, .figure__frame__photo::after {
  z-index: 1;
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}
.figure__frame__photo::before {
  top: -10px;
  right: -10px;
  border-top: 30px solid #053e62;
  border-bottom: 30px solid rgba(0, 0, 0, 0);
  border-left: 30px solid rgba(0, 0, 0, 0);
  border-right: 30px solid #053e62;
}
.figure__frame__photo::after {
  bottom: -10px;
  left: -10px;
  border-top: 30px solid rgba(0, 0, 0, 0);
  border-bottom: 30px solid #053e62;
  border-left: 30px solid #053e62;
  border-right: 30px solid rgba(0, 0, 0, 0);
}

.figure__frame__photo2::before, .figure__frame__photo2::after {
  z-index: 1;
  content: "";
  position: absolute;
  width: 70px;
  height: 25px;
  background-color: #fff;
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
}
.figure__frame__photo2::before {
  top: -10px;
  left: -25px;
  border-bottom: 1px solid #aaa;
}
.figure__frame__photo2::after {
  bottom: -10px;
  right: -25px;
  border-top: 1px solid #aaa;
}

.figure__frame__shadow::before {
  z-index: -1;
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#999 30%, rgba(0, 0, 0, 0) 31%), radial-gradient(#999 30%, rgba(0, 0, 0, 0) 31%);
  background-position: 0 0, 3px 3px;
  background-size: 3px 3px;
}

.figure__frame__shadow2::before {
  z-index: -1;
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#999 30%, rgba(0, 0, 0, 0) 31%), radial-gradient(#999 30%, rgba(0, 0, 0, 0) 31%);
  background-position: 0 0, 2px 2px;
  background-size: 4px 4px;
}

/* ボタン
-------------------------------------------------------*/
.c-button__wrap {
  width: 75%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.c-button {
  position: relative;
  color: #fff;
  background-color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.1666666667em;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 50px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-button {
    font-size: 1em;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 1001px) {
  .c-button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .c-button:hover {
    background-color: #f7f8f8;
  }
}

.c-button.--arrow-right a {
  padding-right: 30px;
}
.c-button.--arrow-right a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 23px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: auto;
  width: 30px;
  height: 30px;
  background-image: url(../../images/common/arrow/arrow_btn_right.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .c-button.--arrow-right a:after {
    right: 20px;
    width: 18px;
    height: 18px;
  }
}

.c-button.--arrow-bottom a {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-button.--arrow-bottom a:after {
  margin-top: 10px;
  content: "";
  max-width: 30px;
  max-height: 30px;
  width: 30px;
  width: 3vw;
  height: 30px;
  height: 3vw;
  background-image: url(../../images/common/arrow/arrow_btn_bottom.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .c-button.--arrow-bottom a:after {
    margin-top: 5px;
  }
}

.c-button__request__wrap {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-button__request__wrap {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.c-button__request {
  position: relative;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  font-weight: 600;
  padding-block: 0.7em;
  color: #fff;
  background: #fff;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  border-left: 2px solid #6ebebe;
  border-right: 2px solid #0f4669;
}
@media screen and (min-width: 768px) {
  .c-button__request {
    font-size: min(1.8181818182vw, 2rem);
  }
}
@media screen and (max-width: 767px) {
  .c-button__request {
    font-size: 4.4444444444vw;
  }
}
@media screen and (min-width: 768px) {
  .c-button__request {
    width: 400px;
    height: 60px;
    padding-block: 0em;
  }
}
.c-button__request::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(#6ebebe), to(#0f4669));
  background: linear-gradient(to right, #6ebebe, #0f4669);
  z-index: 0;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.c-button__request::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#6ebebe), to(#0f4669)) top/100% 2px no-repeat, -webkit-gradient(linear, left top, right top, from(#6ebebe), to(#0f4669)) bottom/100% 2px no-repeat;
  background: linear-gradient(to right, #6ebebe, #0f4669) top/100% 2px no-repeat, linear-gradient(to right, #6ebebe, #0f4669) bottom/100% 2px no-repeat;
  pointer-events: none;
  z-index: 1;
}
.c-button__request:hover {
  color: #0f4669;
}
.c-button__request:hover::before {
  opacity: 0;
}
.c-button__request:hover span:before {
  background-color: #6ebebe;
}
.c-button__request span {
  z-index: 5;
  position: relative;
  width: 100%;
  padding-left: 1em;
  text-align: center;
}
.c-button__request span:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -2px;
  width: 30px;
  height: 1px;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-button__request span:before {
    width: 30px;
  }
}
.c-button__request.--sm {
  width: 320px;
  height: 40px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .c-button__request.--sm {
    font-size: min(1.4545454545vw, 1.6rem);
  }
}
@media screen and (max-width: 767px) {
  .c-button__request.--sm {
    font-size: 3.8888888889vw;
  }
}
.c-button__request.--sm span:before {
  width: 20px;
}

.c-button__border {
  position: relative;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 320px;
  height: 60px;
  font-weight: 600;
  white-space: nowrap;
  padding-bottom: 0.07em;
  border-left: 2px solid #6ebebe;
  border-right: 2px solid #0f4669;
}
@media screen and (min-width: 768px) {
  .c-button__border {
    font-size: min(1.8181818182vw, 2rem);
  }
}
@media screen and (max-width: 767px) {
  .c-button__border {
    font-size: 4.4444444444vw;
  }
}
.c-button__border:before, .c-button__border:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#6ebebe), to(#0f4669));
  background: linear-gradient(to right, #6ebebe, #0f4669);
}
.c-button__border:before {
  top: 0;
}
.c-button__border:after {
  bottom: 0;
}
.c-button__border span {
  z-index: 5;
  position: relative;
  width: 100%;
  padding-left: 1em;
  text-align: center;
}
.c-button__border span:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -2px;
  width: 30px;
  height: 1px;
  background-color: #6ebebe;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-button__border span:after {
  right: 15px;
}
.c-button__border.--sm {
  width: 320px;
  height: 40px;
  font-size: 1.6rem;
  font-weight: 600;
}
@media (any-hover: hover) {
  .c-button__border {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .c-button__border:hover {
    opacity: 0.4;
  }
}

.l-header {
  z-index: 50;
}

.l-header__brand,
.l-header__btn {
  z-index: 5;
}

.l-header__inner {
  z-index: 2;
}

.menu {
  z-index: 100;
}

.sp-menu {
  z-index: 200;
}

.sp-menu__bg {
  z-index: 10;
}

.l-main {
  color: #333;
  font-family: YakuHanMP, "Shippori Mincho", "Hiragino Mincho ProN", "Noto Serif JP", "Yu Mincho", YuMincho, serif;
}

.l-header,
.l-footer,
.l-fixed {
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
}

.l-header {
  z-index: 10;
  top: 0;
  position: fixed;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.l-footer {
  bottom: 0;
}

.l-fixed {
  z-index: 10;
  bottom: 0;
  position: fixed;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* 固定ナビ
-------------------------------------------------------*/
/* 固定ボタン
-------------------------------------------------------*/
.fixedBtn > * {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .fixedBtn .sp_only {
    display: none !important;
  }
}
.fixedBtn a {
  color: #fff !important;
  font-weight: 600;
}
.fixedBtn .contact--tel a {
  background-color: #f7f8f8;
}
.fixedBtn .contact--mail a {
  background-color: #f8b400;
}
.fixedBtn .contact--line a {
  background-color: #06c656;
}

@media screen and (min-width: 768px) {
  .fixedBtn {
    z-index: 15;
    position: fixed;
    top: 150px;
    right: 0px;
    margin: auto;
  }
  .fixedBtn a {
    width: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .fixedBtn a .icon {
    width: 60px;
    height: 60px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .fixedBtn a p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl; /* 縦書き */
    text-orientation: upright; /* 英数字 */
  }
  .fixedBtn .contact--line {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .fixedBtn {
    z-index: 150;
    position: fixed;
    bottom: 0;
    right: 0px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .fixedBtn > * {
    width: 33.3333333333%;
  }
  .fixedBtn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 2px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .fixedBtn a {
    height: 58px;
  }
}
@media screen and (max-width: 767px) {
  .fixedBtn a .icon {
    width: 36px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .fixedBtn a p {
    font-size: 1.3rem;
    position: relative;
    top: -3px;
  }
}
@-webkit-keyframes fadeMoveLoop {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeMoveLoop {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.ani-fade {
  opacity: 0;
  -webkit-transition: opacity 1s ease-out;
  transition: opacity 1s ease-out;
}
.ani-fade:nth-child(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.ani-fade:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.ani-fade:nth-child(3) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.ani-fade:nth-child(4) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.ani-fade:nth-child(5) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.ani-fade:nth-child(6) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.ani-fade:nth-child(7) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.ani-fade:nth-child(8) {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
.ani-fade:nth-child(9) {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}
.ani-fade:nth-child(10) {
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}
.ani-fade.is-active {
  opacity: 1;
}

.ani-blur {
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transition: opacity 2s ease, -webkit-filter 1.5s ease;
  transition: opacity 2s ease, -webkit-filter 1.5s ease;
  transition: opacity 2s ease, filter 1.5s ease;
  transition: opacity 2s ease, filter 1.5s ease, -webkit-filter 1.5s ease;
}
.ani-blur:nth-child(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.ani-blur:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.ani-blur:nth-child(3) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.ani-blur:nth-child(4) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.ani-blur:nth-child(5) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.ani-blur:nth-child(6) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.ani-blur:nth-child(7) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.ani-blur:nth-child(8) {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
.ani-blur:nth-child(9) {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}
.ani-blur:nth-child(10) {
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}
.ani-blur.is-active {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}

.ani-mask-panning {
  -webkit-transition: all 1s 0s ease;
  transition: all 1s 0s ease;
  -webkit-mask-image: url(../../img/anime/mask.png);
          mask-image: url(../../img/anime/mask.png);
  -webkit-mask-size: 100% 4800%;
          mask-size: 100% 4800%;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
}
.ani-mask-panning.is-active {
  -webkit-animation: mask-panning 2s steps(47) 0.2s forwards;
          animation: mask-panning 2s steps(47) 0.2s forwards;
}

@-webkit-keyframes mask-panning {
  from {
    -webkit-mask-position: 0 0;
            mask-position: 0 0;
  }
  to {
    -webkit-mask-position: 0 100%;
            mask-position: 0 100%;
  }
}

@keyframes mask-panning {
  from {
    -webkit-mask-position: 0 0;
            mask-position: 0 0;
  }
  to {
    -webkit-mask-position: 0 100%;
            mask-position: 0 100%;
  }
}
.ani-mask-tilt {
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  -webkit-mask-image: url(../../img/anime/menu_img_mask.webp);
          mask-image: url(../../img/anime/menu_img_mask.webp);
  mask-mode: alpha;
  -webkit-mask-position: center bottom;
          mask-position: center bottom;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: auto 200%;
          mask-size: auto 200%;
  opacity: 0;
}
.ani-mask-tilt.is-active {
  -webkit-animation: 2s mask-tilt cubic-bezier(0, 0.4, 0.48, 1) 0s forwards;
          animation: 2s mask-tilt cubic-bezier(0, 0.4, 0.48, 1) 0s forwards;
}
@-webkit-keyframes mask-tilt {
  0% {
    -webkit-mask-position: center bottom;
            mask-position: center bottom;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  to {
    -webkit-mask-position: center 0%;
            mask-position: center 0%;
    -webkit-mask-size: auto 500%;
            mask-size: auto 500%;
    opacity: 1;
  }
}
@keyframes mask-tilt {
  0% {
    -webkit-mask-position: center bottom;
            mask-position: center bottom;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  to {
    -webkit-mask-position: center 0%;
            mask-position: center 0%;
    -webkit-mask-size: auto 500%;
            mask-size: auto 500%;
    opacity: 1;
  }
}

body.--loading {
  overflow: hidden !important;
  height: 100vh;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
  position: fixed; /* ← これが超重要！！ */
  width: 100%;
}

@media screen and (min-width: 1021px) {
  .contents-property.--horizontal {
    padding-top: 0 !important;
  }
}

.block.--block01 {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (min-width: 768px) {
  .block.--block01 {
    width: 800px;
    width: 93.023255814vh;
  }
}
@media screen and (min-width: 768px) and (max-width: 1400px) {
  .block.--block01 {
    padding-left: 100px;
  }
}
@media screen and (max-height: 860px) {
  .block.--block01 {
    width: calc(100vw - (100vw - 600px) / 2);
  }
}

@media screen and (max-width: 767px) {
  .page-title__wrap {
    padding-top: 90px;
    padding-top: 24vw;
    padding-bottom: 50px;
    padding-bottom: 13.3333333333vw;
  }
}

.page-title {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-size: 8vw;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .page-title {
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    border: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
  }
}

.page-title__outline {
  padding-top: 80px;
  padding-top: 21.3333333333vw;
  padding-bottom: 30px;
  padding-bottom: 8vw;
}
@media screen and (min-width: 768px) {
  .page-title__outline {
    padding-block: 80px;
  }
}
.page-title__outline .page-title__jp {
  position: relative;
  letter-spacing: 0.4em;
}
@media screen and (min-width: 768px) {
  .page-title__outline .page-title__jp {
    font-size: min(2.3636363636vw, 2.6rem);
  }
}
@media screen and (max-width: 767px) {
  .page-title__outline .page-title__jp {
    font-size: 5vw;
  }
}
.page-title__outline .page-title__eng {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Playfair Display", serif;
  line-height: 1;
  letter-spacing: 0.2em;
  margin-top: 0.1em;
}
@media screen and (min-width: 768px) {
  .page-title__outline .page-title__eng {
    font-size: min(5.4545454545vw, 6rem);
  }
}
@media screen and (max-width: 767px) {
  .page-title__outline .page-title__eng {
    font-size: 11.1111111111vw;
  }
}
.page-title__outline .page-title__eng:after {
  content: "";
  width: 100px;
  width: 14.2857142857vw;
  height: 1px;
  background-color: #333333;
  margin-top: 4px;
  margin-top: 0.5714285714vw;
  margin-left: 20px;
  margin-left: 2.8571428571vw;
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .page-title__outline .page-title__eng:after {
    width: 130px;
    margin-left: 20px;
  }
}

.--lh10 {
  line-height: 1 !important;
}

.--lh11 {
  line-height: 1.1 !important;
}

.--lh12 {
  line-height: 1.2 !important;
}

.--lh13 {
  line-height: 1.3 !important;
}

.--lh14 {
  line-height: 1.4 !important;
}

.--lh15 {
  line-height: 1.5 !important;
}

.--lh16 {
  line-height: 1.6 !important;
}

.--lh17 {
  line-height: 1.7 !important;
}

.--lh18 {
  line-height: 1.8 !important;
}

.--lh19 {
  line-height: 1.9 !important;
}

.--lh20 {
  line-height: 2 !important;
}

.action-info {
  position: relative;
  font-size: 3rem;
  line-height: 1.45;
  letter-spacing: 0.1em;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.action-info span {
  font-size: 1.8em;
  line-height: 1;
  color: #8c7250;
}

.action-info i {
  font-size: 1.1333333333em;
  line-height: 1;
}

.action-info small {
  font-size: 0.3666666667em;
  line-height: 1;
  letter-spacing: 0;
  position: absolute;
  right: 0;
  bottom: 3.7em;
}

@media screen and (min-width: 768px) {
  .sec-caption {
    margin-top: 40px;
  }
}
.sec-caption .capt {
  text-align: justify;
  word-break: break-all;
  text-justify: inter-ideograph;
  text-justify: inter-character;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hanging-punctuation: last allow-end;
}

.meritbox {
  width: 100%;
  margin-inline: auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .meritbox {
    min-width: 400px;
  }
}
@media screen and (min-width: 501px) and (max-height: 860px) {
  .meritbox {
    max-width: 720px;
  }
}
.meritbox .meritbox-block {
  font-size: 16px;
  font-size: 4.2666666667vw;
  letter-spacing: 0.05em;
  padding-block: 0.5em;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 768px) {
  .meritbox .meritbox-block {
    font-size: 20px;
    font-size: 2.3255813953vh;
  }
}
@media screen and (min-width: 768px) and (max-height: 860px) {
  .meritbox .meritbox-block {
    display: block;
    gap: 0px;
  }
}
@media screen and (min-width: 501px) and (max-height: 860px) {
  .meritbox .meritbox-block {
    font-size: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 3.5vh;
       -moz-column-gap: 3.5vh;
            column-gap: 3.5vh;
  }
}
.meritbox .sp-full {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%; /* 幅100% */
}
.meritbox .txt {
  line-height: 1.9;
}
.meritbox .txt + .txt {
  margin-top: 0 !important;
}
@media screen and (min-width: 768px) and (max-height: 860px) {
  .meritbox .txt.u-10 {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .meritbox .txt.u-10 {
    margin-bottom: -10px;
  }
}
.meritbox .num {
  position: relative;
  bottom: -0.05em;
  color: #aa6923;
  font-size: 200%;
  line-height: 0.3;
}
.meritbox .num.--md {
  font-size: 150%;
}
.meritbox .num.--sm {
  font-size: 125%;
}
.meritbox .subway {
  font-size: 50%;
  display: inline-block;
  line-height: 1.2;
  white-space: normal;
}
.meritbox .subway.--position {
  position: relative;
  bottom: -0.2em;
}
.meritbox .nakaguro {
  margin-inline: 0.2em;
}
.meritbox small {
  font-size: 75%;
}
.meritbox .abso03__wrap {
  position: relative;
}
.meritbox .abso03__wrap .abso03 {
  position: absolute;
  top: 93%;
  left: 0;
  font-size: 48%;
  line-height: 1.2;
  white-space: nowrap;
  letter-spacing: 0;
}

.entry-yoko {
  width: min(300px, 80%);
  margin-inline: auto;
  margin-top: 45px;
  text-align: center;
}
.entry-yoko a {
  display: block;
}
@media (any-hover: hover) {
  .entry-yoko a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .entry-yoko a:hover {
    opacity: 0.4;
  }
}

.merit {
  font-size: 17px;
  font-size: 4.5333333333vw;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .merit {
    width: 100%;
    padding-bottom: 50px;
    padding-bottom: 13.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .merit {
    font-size: 19.5px;
    font-size: 2.2674418605vh;
  }
}
.merit .merit__ttl {
  line-height: 1;
}
.merit .merit-block {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.5);
  margin-top: 20px;
  margin-top: 2.3255813953vh;
}
@media screen and (min-width: 768px) {
  .merit .merit-block {
    width: 420px;
    width: 48.8372093023vh;
    margin-top: 20px;
    margin-top: 2.3255813953vh;
  }
}
.merit .merit-block dt,
.merit .merit-block dd {
  line-height: 1.4;
}
.merit .merit-block dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  height: 7.1428571429vw;
  padding-bottom: 3px;
  padding-bottom: 0.3488372093vh;
  color: #fff;
  background-color: #aa6923;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .merit .merit-block dt {
    height: 32px;
    height: 3.7209302326vh;
  }
}
.merit .merit-block dd {
  padding-top: 23px;
  padding-top: 2.6744186047vh;
  padding-bottom: 25px;
  padding-bottom: 2.9069767442vh;
}
@media screen and (max-width: 767px) {
  .block-textArea:has(.merit) {
    width: 100%;
    margin-top: 0 !important;
  }
}

#horizontal-section {
  width: 100%;
  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;
}
@media screen and (min-width: 768px) {
  #horizontal-section img {
    width: auto;
    max-width: none;
    height: 100%;
  }
}
#horizontal-section .figure figcaption {
  font-size: 9px;
  font-size: 2.4vw;
}
@media screen and (max-width: 767px) {
  #horizontal-section .figure figcaption {
    padding: 0.2em 1em;
  }
}
@media screen and (min-width: 768px) {
  #horizontal-section .figure figcaption {
    font-size: 13px;
    font-size: 1.511627907vh;
  }
}

.horizontal-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

.horizontal-content {
  position: relative;
}
@media screen and (max-width: 767px) {
  .horizontal-content {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .horizontal-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.horizontal-content .horizontal-content__bg {
  pointer-events: none;
  mix-blend-mode: multiply;
  width: 100%; /* 親要素に追従 */
  height: 110%; /* 必要に応じて調整 */
  background-image: url("../../img/common/pattern_bg_top.png");
  background-size: cover; /* 画像を領域に合わせて拡大縮小 */
  background-position: left center; /* 左上起点 */
  background-repeat: no-repeat;
  /* スマホ用 */
}
@media screen and (min-width: 768px) {
  .horizontal-content .horizontal-content__bg {
    opacity: 0;
  }
}
@media screen and (max-width: 767px) {
  .horizontal-content .horizontal-content__bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%; /* 必要に応じて調整 */
    background-image: url("../../img/common/sp/pattern_bg_top_sp.png");
    background-position: center top;
    background-size: contain; /* 画像を領域に合わせて拡大縮小 */
  }
}
@media screen and (min-width: 768px) {
  .horizontal-content .horizontal-content__bg {
    position: absolute;
    bottom: 0%;
    left: 0;
    height: calc(100% - 110px);
  }
}
@media screen and (max-height: 860px) {
  .horizontal-content .horizontal-content__bg {
    background-size: contain; /* 画像を領域に合わせて拡大縮小 */
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .horizontal-content .horizontal-content__bg {
    height: 100%;
  }
}

.block {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .block {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
@media screen and (min-width: 768px) {
  .block {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: 100svh;
    padding-top: 110px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 1200px) {
  .block {
    padding-top: 0px;
  }
}
.block .block__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .block .block__inner {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 325px;
    width: 86.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .block .block__inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.block .scroll {
  z-index: 2;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: absolute;
  bottom: 75px;
  left: 0;
  width: 60px;
  width: 16vw;
  -webkit-animation: fadeMoveLoop 2s infinite;
          animation: fadeMoveLoop 2s infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear; /* 全体を均等に補間 */
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
@media screen and (min-width: 768px) {
  .block .scroll {
    width: auto;
    height: 16px;
    height: 1.8604651163vh;
    max-height: 16px;
    top: calc((100vh - 110px) / 2 + 110px);
    bottom: auto;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: auto;
    right: 25px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .block .scroll {
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .block .scroll {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
@media screen and (max-width: 767px) {
  .block .scroll.--sp-right {
    margin-left: 85vw;
  }
}
@media screen and (max-width: 767px) {
  .block .scroll img {
    width: 100%;
    height: auto;
  }
}

.--block00 {
  display: block;
  width: calc((100vw - 1200px) / 2);
  min-width: auto;
}
@media screen and (max-width: 767px) {
  .--block00 {
    display: none;
  }
}

.--block--end .block__inner {
  width: 100vw;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .--block--end .block__inner {
    padding-inline: 5vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .--block--end .block__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.--block--end .block-textArea {
  margin-top: 50px;
  margin-top: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .--block--end .block-textArea {
    margin-top: 0;
  }
}

.--block--end-spacer {
  display: block;
  width: 0.1vw;
  min-width: auto;
}
@media screen and (max-width: 767px) {
  .--block--end-spacer {
    display: none !important;
  }
}

.block-headArea .block__eng {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-size: 5.3333333333vw;
  letter-spacing: 0.09em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .block-headArea .block__eng {
    padding-block: 1.3em;
  }
}
@media screen and (min-width: 768px) {
  .block-headArea .block__eng {
    font-size: 26px;
    font-size: 3.023255814vh;
  }
}
@media screen and (max-width: 767px) {
  .block-textArea {
    margin-bottom: 45px;
    margin-bottom: 12vw;
  }
}
.block-textArea .block__ttl span {
  position: relative;
}
.block-textArea .block__ttl span:before {
  content: "";
  width: 2em;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.5);
  left: 2.7em;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.block-textArea .block__ttl.--lg span {
  letter-spacing: 0.05em;
}
.block-textArea .block__ttl.--lg span:before {
  left: 5em;
}
@media screen and (min-width: 768px) {
  .block-textArea .block__ttl.--lg span:before {
    left: 5.5em;
  }
}
.block-textArea .block__ttl + .block__copy {
  margin-top: 1.25em;
}
@media screen and (min-width: 768px) {
  .block-textArea .block__ttl + .block__copy {
    margin-top: 1em;
  }
}
.block-textArea .block__txt {
  margin-top: 1.5em;
}
.block-imgArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .block-imgArea.--sp-full {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
  }
  .block-imgArea.--sp-90 {
    width: 90vw;
    margin-inline: calc(50% - 50vw);
  }
}
@media screen and (min-width: 768px) {
  .block-imgArea .block__img {
    height: calc(100vh - 110px);
  }
}
@media screen and (max-width: 1200px) {
  .block-imgArea .block__img {
    height: 100vh;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .block-imgArea .block__img {
    height: 100vh;
  }
}
@media screen and (max-width: 767px) {
  .block-imgArea .block__img {
    height: auto;
  }
}
.block__ttl {
  font-size: 42px;
  font-size: 11.2vw;
  letter-spacing: 0.25em;
}
@media screen and (min-width: 768px) {
  .block__ttl {
    font-size: 64px;
    font-size: 7.4418604651vh;
  }
}
.block__ttl small {
  display: block;
  font-size: 40%;
  line-height: 1;
}

.block__copy {
  font-size: 21px;
  font-size: 5.6vw;
  line-height: 1.5714285714;
  letter-spacing: 0.07em;
}
@media screen and (min-width: 768px) {
  .block__copy {
    font-size: 32px;
    font-size: 3.7209302326vh;
  }
}
.block__copy.--sm {
  font-size: 17px;
  font-size: 4.5333333333vw;
  line-height: 1.5714285714;
}
@media screen and (min-width: 768px) {
  .block__copy.--sm {
    font-size: 24px;
    font-size: 2.7906976744vh;
    line-height: 1.5416666667;
  }
}
.block__copy.--padding {
  margin-top: 1.7em;
}

.block__txt {
  font-size: 12px;
  font-size: 3.2vw;
  line-height: 2.2;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .block__txt {
    font-size: 20px;
    font-size: 2.3255813953vh;
    line-height: 2.2;
    letter-spacing: 0.05em;
  }
}
.block__txt.--xs {
  font-size: 11px;
  font-size: 2.9333333333vw;
  line-height: 1.625;
}
@media screen and (min-width: 768px) {
  .block__txt.--xs {
    font-size: 15px;
    font-size: 1.7441860465vh;
  }
}
.block__txt.--sm {
  font-size: 12px;
  font-size: 3.2vw;
  line-height: 2.1666666667;
}
@media screen and (min-width: 768px) {
  .block__txt.--sm {
    font-size: 17.5px;
    font-size: 2.0348837209vh;
    line-height: 2;
    letter-spacing: 0.08em;
  }
}
@media screen and (max-height: 860px) {
  .block__txt.--sm {
    line-height: 2;
  }
}
.block__txt.--lg {
  font-size: 15px;
  font-size: 4vw;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .block__txt.--lg {
    font-size: 22px;
    font-size: 2.5581395349vh;
  }
}

.block__capt {
  font-size: 9px;
  font-size: 2.4vw;
}
@media screen and (min-width: 768px) {
  .block__capt {
    font-size: 12px;
    font-size: 1.3953488372vh;
  }
}

.block__bg {
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .block__left-margin300 {
    margin-left: 300px;
    margin-left: 34.8837209302vh;
  }
  .block__left-margin220 {
    margin-left: 220px;
    margin-left: 25.5813953488vh;
  }
  .block__left-margin200 {
    margin-left: 200px;
    margin-left: 23.2558139535vh;
  }
  .block__left-margin150 {
    margin-left: 150px;
    margin-left: 17.4418604651vh;
  }
  .block__left-margin100 {
    margin-left: 100px;
    margin-left: 11.6279069767vh;
  }
  .block__left-margin90 {
    margin-left: 90px;
    margin-left: 10.4651162791vh;
  }
  .block__left-margin70 {
    margin-left: 70px;
    margin-left: 8.1395348837vh;
  }
  .block__left-margin60 {
    margin-left: 60px;
    margin-left: 6.976744186vh;
  }
  .block__left-margin50 {
    margin-left: 50px;
    margin-left: 5.8139534884vh;
  }
  .block__left-margin40 {
    margin-left: 40px;
    margin-left: 4.6511627907vh;
  }
}
@media screen and (max-width: 767px) {
  .mfp-bg,
  .mfp-wrap {
    width: 90vw;
    height: 100vh;
  }
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.6 !important;
}

.mfp-bg {
  background: #000 !important;
}

.mfp-content {
  position: relative;
  width: 80%;
  max-width: 800px;
  margin-inline: auto;
}
.mfp-content iframe {
  position: relative !important;
  aspect-ratio: 16/9 !important;
}

/* 休業告知 */
.holiday {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #f5f5f5;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 15px;
  margin: 14px auto;
}
@media screen and (max-width: 767px) {
  .holiday {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .holiday {
    margin: 27px auto;
    padding: 20px 30px;
  }
}
@media screen and (min-width: 768px) {
  .holiday .ttl {
    font-size: min(1.2727272727vw, 1.4rem);
  }
}
@media screen and (max-width: 767px) {
  .holiday .ttl {
    font-size: 3.1944444444vw;
  }
}
.holiday a {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .holiday a {
    color: #f5f5f5;
  }
}
.holiday .txt {
  text-align: center;
  margin-top: 0.8em;
}
@media screen and (min-width: 768px) {
  .holiday .txt {
    font-size: min(1.2272727273vw, 1.35rem);
  }
}
@media screen and (max-width: 767px) {
  .holiday .txt {
    font-size: 3.1944444444vw;
  }
}/*# sourceMappingURL=style.css.map */