@charset "utf-8";

/*
  共通
*/
:root {
  --header-height: 0;
  --margin-top: 0px;
  --margin-bottom: 0px;
  --leading-trim: ((1em - 1lh) / 2);
  --color-white: 255, 255, 255;
  /* --color-red: 157, 24, 23; */
  --color-red: 181, 25, 20;
  --color-pink: 255, 222, 225;
  --color-gray: 244, 244, 244;
  --color-gradient: rgba(132, 29, 30, 1), rgba(181, 25, 20, 1), rgba(117, 2, 0, 1);
}

@supports not (top: 1lh) {
  :root {
    --leading-trim: 0px;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  -webkit-text-size-adjust: 100%;
  margin: auto;
  /* padding-top: var(--header-height); */
  color: #595757;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1;
}

abbr, address, article, aside, audio, b, blockquote, canvas, caption, cite, code, dd, del, details, dfn, div, dl, dt, em, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p, pre, q, samp, section, small, span, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

h1, h2, h3, h4, h5, h6, th {
  font-weight: normal;
  margin: 0;
}

em {
  font-style: normal;
}

sub {
  vertical-align: sub;
  bottom: 0;
}

sup {
  vertical-align: super;
  top: 0;
}

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

svg {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  fill: currentColor;
}

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

td, th {
  padding: 0;
}

li {
  list-style: none;
}

button {
  border: none;
  border-radius: 0;
  background: none;
  outline: none;
  -webkit-appearance: initial;
  appearance: none;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.sp-bl, .sp-il, .tablet-bl {
  display: none !important;
}

.tablet .tablet-bl {
  display: block !important;
}

.opa {
  transition: 0.3s ease-in-out;
}

.w100 {
  width: 100% !important;
}

.none {
  display: none !important
}

.visuallyhidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.tc {
  text-align: center;
}

.tl {
  text-align: left;
}

.tr {
  text-align: right;
}

.tj {
  text-align: justify;
}

.cf:before, .cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  zoom: 1;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.outer {
  position: relative;
  max-width: 1920px;
  margin-inline: auto;
}

.inner {
  position: relative;
  width: 95%;
  max-width: 1200px;
  margin-inline: auto;
}

/* フォント */
.bold, b {
  font-weight: bold;
}

.medium {
  font-weight: 500;
}

.wf-notosansjp-n4-active {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.wf-notosansjp-n5-active .medium {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.wf-notosansjp-n7-active .bold,
.wf-notosansjp-n7-active b {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}

.wf-barlowcondensed-n4-active .barlow {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  line-height: .9cap;
}

.wf-questrial-n4-active .century {
  font-family: "Century Gothic", "Questrial", sans-serif;
  line-height: 1cap;
}

/* カラー */
.white {
  color: rgba(var(--color-white), 1);
}

.red {
  color: rgba(var(--color-red), 1);
}

/* トラッキング */
.ls0 {
  letter-spacing: 0;
}

.ls50 {
  letter-spacing: .05em;
}

.ls100 {
  letter-spacing: .1em;
}

.ls150 {
  letter-spacing: .15em;
}

.ls200 {
  letter-spacing: .2em;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.grid {
  display: grid;
}

.flex.column {
  flex-direction: column;
}

.flex.nowrap {
  flex-wrap: nowrap;
}

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

.flex.jc-s {
  justify-content: flex-start;
}

.flex.jc-e {
  justify-content: flex-end;
}

.flex.ai-e {
  align-items: flex-end;
}

.flex.ai-st {
  align-items: stretch;
}

.grid.jc-s {
  justify-content: start;
}

.grid.jc-e {
  justify-content: end;
}

.grid.ai-s {
  align-items: start;
}

.grid.ai-e {
  align-items: end;
}

.grid.ai-st {
  align-items: stretch;
}

.jc-c {
  justify-content: center;
}

.ai-c {
  align-items: center;
}

.fit-right {
  margin-right: calc(50% - var(--window-half-width));
}

.fit-left {
  margin-left: calc(50% - var(--window-half-width));
}

@media (hover: hover) {
  .opa:hover {
    opacity: 0.7 !important;
  }
}

@media screen and (max-width: 480px) {
  .pc {
    display: none !important;
  }

  .sp-bl {
    display: block !important;
  }

  .sp-il {
    display: inline !important;
  }

  .inner {
    width: calc(330 / 375 * 100%);
    max-width: 560px;
  }
}



/*
  h1
*/
h1 {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}



/*
  ヘッダー
*/
/* .header {
} */
.header__content {
  position: relative;
  /* position: sticky;
  z-index: 1000;
  top: 0;
  left: 0; */
  display: flex;
  align-items: center;
  column-gap: 30px;
  box-sizing: border-box;
  padding: 25px 24px 18px;
  background: #fff;
}

.header__content__logo {
  width: 235px;
}

.header__sidecv {
  position: fixed;
  z-index: 1000;
  top: 54px;
  right: 0;
  display: grid;
  grid-template-columns: auto;
  justify-content: end;
  justify-items: end;
  align-content: start;
  align-items: start;
  gap: 10px 0;
}

.header__sidecv__item {
  overflow: hidden;
  transition: scale .4s linear;
  transform-origin: center right;
}

.header__sidecv__item--contact {
  width: clamp(68px, calc(108 / 1200 * 100vw), 108px);
}

.header__sidecv__item--contact img {
  width: calc(124 / 108 * 100%);
  max-width: none;
}

@media (any-hover: hover) {
  .header__sidecv__item:hover {
    scale: .95;
  }
}

@media screen and (max-width: 480px) {
  .header__content {
    column-gap: 15px;
    padding: calc(25 / 750 * 100vw) calc(24 / 750 * 100vw) calc(18 / 750 * 100vw);
  }

  .header__content__logo {
    width: calc(236 / 750 * 100%);
  }

  .header__brand {
    width: calc(206 / 750 * 100%);
  }

  .header__sidecv {
    top: auto;
    bottom: 0;
    right: 0;
    justify-content: center;
    justify-items: center;
    align-content: end;
    align-items: end;
    gap: 10px;
    width: 100%;
  }

  .header__sidecv__item--contact {
    width: calc(684 / 750 * 100vw);
    translate: 2px;
  }

  .header__sidecv__item--contact img {
    width: 100%;
  }
}



/*
  メイン
*/
.main {
  overflow-x: clip;
}

/* キャプション */
.photo, .figure {
  position: relative;
}

.p-caption, .f-caption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  font-size: 10px;
  letter-spacing: .05em;
  line-height: 1;
  text-align: right;
  padding: 8px;
}

.p-caption.w, .f-caption.w {
  color: #fff;
  background: rgba(0, 0, 0, .8);
}

.p-caption.b, .f-caption.b {
  color: #595757;
  background: rgba(255, 255, 255, .8);
}

.p-caption.l, .f-caption.l {
  left: 0;
  right: auto;
  text-align: left;
}

.p-caption.t, .f-caption.t {
  top: 0;
  bottom: auto;
}

.p-caption.r, .f-caption.r {
  position: relative;
  padding: 0;
  margin-top: 10px;
}

.p-caption.white {
  text-shadow: 0 0 3px rgba(0, 0, 0, 1), 0 0 15px rgba(0, 0, 0, .4);
}

@media screen and (max-width: 480px) {
  .p-caption, .f-caption {
    font-size: 8px;
  }
}

/* 見出し・本文・注釈 */
.heading {
  font-size: clamp(20px, calc(30 / 1200 * 100vw), 30px);
  line-height: 2;
  margin-block: calc(var(--margin-top) + var(--leading-trim)) calc(var(--margin-bottom) + var(--leading-trim));
}

.heading em {
  font-size: calc(36 / 30 * 100%);
  /* line-height: 0; */
}

.heading em.bold {
  font-size: clamp(25px, calc(45 / 1200 * 100vw), 45px);
}

.subheading {
  font-size: clamp(15px, calc(21 / 1200 * 100vw), 21px);
  line-height: 1.714285714;
  margin-block: calc(var(--margin-top) + var(--leading-trim)) calc(var(--margin-bottom) + var(--leading-trim));
}

.copy {
  font-size: clamp(11px, calc(16 / 1200 * 100vw), 16px);
  line-height: 1.875;
  margin-block: calc(var(--margin-top) + var(--leading-trim)) calc(var(--margin-bottom) + var(--leading-trim));
}

.caution {
  font-size: clamp(10px, calc(12 / 1200 * 100vw), 12px);
  line-height: 1.875;
  margin-block: calc(var(--margin-top) + var(--leading-trim)) calc(var(--margin-bottom) + var(--leading-trim));
}

.caution-item {
  box-sizing: border-box;
  padding-left: 1em;
  text-indent: -1em;
}

@media screen and (max-width: 480px) {
  .heading {
    font-size: calc(30 / 750 * 100vw);
  }

  .heading em.bold {
    font-size: calc(45 / 750 * 100vw);
  }

  .subheading {
    font-size: calc(21 / 750 * 100vw);
  }

  .copy {
    font-size: calc(22 / 750 * 100vw);
    line-height: 1.8;
  }

  .caution {
    font-size: calc(16 / 750 * 100vw);
    line-height: 1.8;
  }
}

/* スライド */
.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
  transform: rotate(180deg);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  content: none;
}

/* モーダル */
.modal {
  display: none;
}

.modal.active {
  display: block;
}

.modal-overlay {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh + 1px);
  height: calc(100dvh + 1px);
  display: grid;
  grid-template: ". container ."auto / 2.5% minmax(0, 1fr) 2.5%;
  place-items: center;
  background: rgba(0, 0, 0, .8);
  overflow-y: scroll;
  overscroll-behavior-y: contain;
}

.modal[aria-hidden="true"] .modal-overlay {
  animation: closeModal .3s ease-out;
}

.modal[aria-hidden="false"] .modal-overlay {
  animation: openModal .3s ease-out;
}

@keyframes openModal {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes closeModal {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.modal-container {
  grid-area: container;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-block: 70px;
  background: #fff;
}

.modal-close {
  position: -webkit-sticky;
  position: sticky;
  z-index: 2;
  top: 0;
  left: calc(100% - 70px);
  display: block;
  width: 70px;
  height: 70px;
  margin-bottom: -70px;
  color: #fff;
  background: linear-gradient(45deg, transparent calc(50% - 0.5px), currentColor calc(50% - 0.5px), currentColor calc(50% + 0.5px), transparent calc(50% + 0.5px)) no-repeat center/20px auto, linear-gradient(-45deg, transparent calc(50% - 0.5px), currentColor calc(50% - 0.5px), currentColor calc(50% + 0.5px), transparent calc(50% + 0.5px)) no-repeat center/20px auto #666;
  cursor: pointer;
}

.modal-content {
  position: relative;
  z-index: 1;
}

.modal-open,
.modal-content-close {
  cursor: pointer;
}

@media screen and (max-width: 480px) {
  .modal-overlay {
    grid-template-columns: calc(27.5 / 375 * 100%) minmax(0, 1fr) calc(27.5 / 375 * 100%);
  }

  .modal-close {
    width: 50px;
    height: 50px;
    margin-bottom: -50px;
  }
}

/* スワイプ可能アイコン */
.scroll-hint-icon {
  all: initial;
  position: absolute;
  z-index: 1;
  inset: 0;
  /* background: url(../img/common/icon_swipe.svg) no-repeat center/144px auto rgba(79, 73, 65, .8); */
  opacity: 0;
  transition: opacity .3s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 1;
}

.scroll-hint-icon:before,
.scroll-hint-icon:after,
.scroll-hint-text {
  display: none;
}



/*
  フッター
*/
/* .footer {
} */
.footer__content {
  padding-top: 110px;
  background: #fff;
}

.footer__content__recommend {
  width: min(95%, 1000px);
  margin-inline: auto;
  margin-bottom: 110px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer__content__recommend__item {
  flex: 1;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto 1fr;
  justify-content: start;
  justify-items: center;
  align-content: start;
  align-items: start;
}

.footer__content__recommend__item__name {
  font-size: clamp(15px, calc(21 / 1200 * 100vw), 21px);
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
  text-align: center;
  margin-block: calc((1.5 - 1) / 2 * -1em) calc((36 / 21 * 1em) + ((1.5 - 1) / 2 * -1em));
}

.footer__content__recommend__item__photo {
  align-self: center;
}

/* .footer__content__recommend__item__photo__item {
} */
.footer__content__recommend__item--media .footer__content__recommend__item__photo {
  max-width: min(calc(80 / 1200 * 100vw), 80px);
}

.footer__content__recommend__item--awards .footer__content__recommend__item__photo {
  max-width: min(calc(166 / 1200 * 100vw), 166px);
}

.footer__content__recommend__item--cm .footer__content__recommend__item__photo {
  max-width: min(calc(205 / 1200 * 100vw), 205px);
}

.footer__content__info {
  width: min(95%, 1000px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  justify-content: start;
  justify-items: start;
  align-content: stretch;
  align-items: end;
  gap: 60px 30px;
}

.footer__content__info__logo {
  width: clamp(161px, calc(201 / 1200 * 100vw), 201px);
}

.footer__content__info__list {
  width: 100%;
  align-self: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: start;
  gap: calc(34 / 14 * 1em) calc(74 / 14 * 1em);
  font-size: clamp(10px, calc(14 / 1200 * 100vw), 14px);
  letter-spacing: .1em;
  line-height: 1.5;
}

.footer__content__info__list__item {
  margin-block: calc((1.5 - 1) / 2 * -1em);
}

.footer__content__info__list__item a {
  color: #737272;
  transition: opacity .4s;
}

.footer__content__caution {
  margin-top: 25px;
  padding-block: 25px;
  color: #737272;
  background: #f4f4f4;
}

.footer__content__caution__list {
  width: min(95%, 1000px);
  margin-inline: auto;
  font-size: 10px;
  letter-spacing: .05em;
  line-height: 1.75;
}

/* .footer__content__caution__list__item {
  box-sizing: border-box;
  padding-left: 1em;
  text-indent: -1em;
} */
.footer__content__copyright {
  font-size: 10px;
  letter-spacing: .1em;
  line-height: 35px;
  text-align: center;
  color: #737272;
  background: #f4f4f4;
}

@media (any-hover: hover) {
  .footer__content__info__list__item a:hover {
    opacity: .7;
  }
}

@media screen and (max-width: 480px) {
  .footer__content {
    padding-top: calc(63 / 750 * 100vw);
    padding-bottom: calc(132 / 750 * 100vw);
  }

  .footer__content__recommend {
    width: calc(660 / 750 * 100%);
    margin-bottom: calc(92 / 750 * 100vw);
    gap: 20px;
  }

  .footer__content__recommend__item {
    flex: 0 0 auto;
  }

  .footer__content__recommend__item__name {
    font-size: calc(18 / 750 * 100vw);
    margin-bottom: calc((26 / 18 * 1em) + ((1.5 - 1) / 2 * -1em));
  }

  .footer__content__recommend__item--media .footer__content__recommend__item__photo {
    max-width: calc(64 / 750 * 100vw);
  }

  .footer__content__recommend__item--awards .footer__content__recommend__item__photo {
    max-width: calc(128 / 750 * 100vw);
  }

  .footer__content__recommend__item--cm .footer__content__recommend__item__photo {
    max-width: calc(158 / 750 * 100vw);
  }

  .footer__content__info {
    width: calc(660 / 750 * 100%);
    gap: 40px 20px;
  }

  .footer__content__info__logo {
    width: calc(201 / 750 * 100vw);
  }

  .footer__content__info__list {
    gap: calc(33 / 18 * 1em) calc(53 / 18 * 1em);
    font-size: calc(18 / 750 * 100vw);
  }

  .footer__content__caution {
    margin-top: calc(26 / 750 * 100vw);
    padding-block: calc(26 / 750 * 100vw);
  }

  .footer__content__caution__list {
    width: calc(660 / 750 * 100%);
    font-size: calc(16 / 750 * 100vw);
  }

  .footer__content__copyright {
    font-size: calc(16 / 750 * 100vw);
    line-height: calc(45 / 750 * 100vw);
  }
}



/*
  フェードインアニメーション
*/
.fi-u, .fi-d, .fi, .fi-r, .fi-l {
  visibility: hidden;
}

.fi-u-stagger>* {
  opacity: 0;
  translate: 0 20px;
}


/* fade in */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fi.faded {
  animation-name: fadeIn;
  animation-fill-mode: both;
  animation-duration: 1s;
  visibility: visible !important;
  opacity: 0;
}

/* fade in up */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fi-u.faded {
  animation-name: fadeInUp;
  animation-fill-mode: both;
  animation-duration: 1.5s;
  visibility: visible !important;
  opacity: 0;
}

/* fade in down */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fi-d.faded {
  animation-name: fadeInDown;
  animation-fill-mode: both;
  animation-duration: 1.5s;
  visibility: visible !important;
  opacity: 0;
}

/* fade in right */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate(30px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fi-r.faded {
  animation-name: fadeInRight;
  animation-fill-mode: both;
  animation-duration: 1.5s;
  visibility: visible !important;
  opacity: 0;
}

/* fade in left */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate(-30px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fi-l.faded {
  animation-name: fadeInLeft;
  animation-fill-mode: both;
  animation-duration: 1.5s;
  visibility: visible !important;
  opacity: 0;
}



/*
  印刷用
*/
@media print {
  body, html {
    zoom: .8 !important;
  }

  h1,
  .header,
  .footer {
    display: none;
  }

  body {
    padding-top: 0;
  }
}