@charset "utf-8";
/* スマホ */
@media (width < 768px) {
}
@media (max-width: 767.99px) {
}
/* タブレット */
@media (width >= 768px) {
}
@media (width >= 1024px) {
}
@media (width >= 768px) and (width < 1024px) {
}
@media (width >= 768px) and (width < 1280px) {
}
@media (width >= 1024px) and (width < 1280px) {
}
@media (min-width: 768px) {
}
@media (min-width: 1024px) {
}
@media (min-width: 768px) and (max-width: 1023.99px) {
}
@media (min-width: 768px) and (max-width: 1279.99px) {
}
@media (min-width: 1024px) and (max-width: 1279.99px) {
}
/* PC */
@media (width >= 1280px) {
}
@media (min-width: 1280px) {
}
/* *****************************************************************************
// BaseのCSS
***************************************************************************** */
/* *************************************
// 変数定義
************************************* */
:root {
  --main-color: #9c0032;
  --sub-color: #f9afaf;
  --text-color: #333;
  --link-color: #00a;
  --default-space: 2rem;
}
/* *************************************
// Base
************************************* */
body {
  font-family: 'Helvetica Neue', Helvetica, Arial, '游ゴシック', 'Yu Gothic', '游ゴシック体', 'YuGothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'Meiryo UI', 'メイリオ', Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-color);
  background-color: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
b,
strong {
  font-weight: 600;
}
a {
  color: var(--link-color);
}
img,
video {
  max-width: 100%;
  height: auto;
}
pre {
  white-space: pre-wrap;
}
/* フォーム用 パーツ*/
input[type='text'],
input[type='password'],
input[type='datetime'],
input[type='datetime-local'],
input[type='date'],
input[type='month'],
input[type='time'],
input[type='week'],
input[type='number'],
input[type='email'],
input[type='url'],
input[type='search'],
input[type='tel'],
input[type='color'],
select,
textarea,
.field {
  display: block;
  width: 100%;

  background-color: #eaedf2;
  padding: 0 0.75rem;
  line-height: 2.5rem;
  border-radius: 3px;
  min-height: 40px;
}
textarea {
  max-height: 120px;
}
select {
  background-image: linear-gradient(-45deg, transparent 0%, transparent 50%, #ccc 50%, #ccc 100%), linear-gradient(45deg, transparent 0%, transparent 50%, #ccc 50%, #ccc 100%);
  background-position: right 0.25em center, right 0.75em center;
  background-size: 0.5em 0.5em, 0.5em 0.5em;
  background-repeat: no-repeat, no-repeat;
  padding-right: 2em;
}
input[type='radio'] + span,
input[type='checkbox'] + span {
  position: relative;
  cursor: pointer;
  padding-left: 1.5em;
  line-height: 2.5rem;
}
input[type='radio'] + span:before,
input[type='radio'] + span:after {
  content: '';
  display: block;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
input[type='radio'] + span:before {
  border: 1px solid var(--text-color);
  width: 1.2em;
  left: 0;
}
input[type='radio'] + span:after {
  background-color: var(--text-color);
  opacity: 0;
  width: 0.8em;
  left: 0.2em;
}
input[type='radio']:checked + span::after {
  opacity: 1;
}
input[type='checkbox'] + span:before,
input[type='checkbox'] + span:after {
  content: '';
  display: block;
  position: absolute;
}
input[type='checkbox'] + span:before {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--text-color);
  width: 1.2em;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
input[type='checkbox'] + span:after {
  border-bottom: 2px solid #dc3232;
  border-left: 2px solid #dc3232;
  opacity: 0;
  width: 0.8em;
  height: 0.4em;
  top: calc(50% - 0.3em);
  left: 0.2em;
  transform: rotate(-45deg);
}
input[type='checkbox']:checked + span::after {
  opacity: 1;
}
input[type='date'] {
  align-items: center;
}
.wpcf7-list-item {
  line-height: 2.5rem;
}
.wpcf7-not-valid-tip {
  font-size: 0.8rem;
  font-weight: bold;
  margin: 0.5em 0 0;
}
::placeholder {
  color: #999;
}

/* *************************************
// 汎用ID・Class
************************************* */
#container {
  max-width: 100%;
  position: relative;
}

.cf,
.clearfix {
  display: flow-root;
}
/* 旧clearfixの手法(必要があればコメントアウトを外す) */
.cf:after,
.clearfix:after {
  /*content: "";*/
  /*clear: both;*/
  /*display: block;*/
}

/* 行間 */
#content p {
  margin-bottom: 1rem;
}
/* PC・SPの表示 / 非表示 */
@media (width < 768px) {
  .pc_only {
    display: none;
  }
}
@media (width >= 768px) {
  .sp_only {
    display: none;
  }
}
/*電話番号リンク*/
a[href^='tel:'] {
  text-decoration: none;
  color: inherit;
}
@media (width >= 768px) {
  a[href^='tel:'] {
    pointer-events: none;
  }
}
/* テーブル */
@media (width < 768px) {
  table.two_column tbody th,
  table.two_column tbody td {
    display: block;
  }
}
/* 分割 */
.flex,
.two_in_one,
.three_in_one,
.four_in_one,
.five_in_one,
.six_in_one {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.flex.reverse,
.two_in_one.reverse,
.three_in_one.reverse,
.four_in_one.reverse,
.five_in_one.reverse,
.six_in_one.reverse {
  flex-direction: row-reverse;
}
.flex > div,
.two_in_one > div,
.three_in_one > div,
.four_in_one > div,
.five_in_one > div,
.six_in_one > div {
  width: 100%;
}
@media (width >= 768px) {
  /* 2分割 */
  .two_in_one > div {
    width: calc(100% / 2);
  }
  .flex > div:where(:nth-child(1):nth-last-child(2)),
  .flex > div:where(:nth-child(2):nth-last-child(1)) {
    width: calc(100% / 2);
  }
  /* 3分割 */
  .three_in_one > div {
    width: calc(100% / 3);
  }
  .flex > div:where(:nth-child(1):nth-last-child(3)),
  .flex > div:where(:nth-child(2):nth-last-child(2)),
  .flex > div:where(:nth-child(3):nth-last-child(1)) {
    width: calc(100% / 3);
  }
  /* 4分割 */
  .four_in_one > div {
    width: calc(100% / 4);
  }
  .flex > div:where(:nth-child(1):nth-last-child(4)),
  .flex > div:where(:nth-child(2):nth-last-child(3)),
  .flex > div:where(:nth-child(3):nth-last-child(2)),
  .flex > div:where(:nth-child(4):nth-last-child(1)) {
    width: calc(100% / 4);
  }
  /* 5分割 */
  .five_in_one > div {
    width: calc(100% / 5);
  }
  .flex > div:where(:nth-child(1):nth-last-child(5)),
  .flex > div:where(:nth-child(2):nth-last-child(4)),
  .flex > div:where(:nth-child(3):nth-last-child(3)),
  .flex > div:where(:nth-child(4):nth-last-child(2)),
  .flex > div:where(:nth-child(5):nth-last-child(1)) {
    width: calc(100% / 5);
  }
  /* 6分割 */
  .six_in_one > div {
    width: calc(100% / 6);
  }
  .flex > div:where(:nth-child(1):nth-last-child(6)),
  .flex > div:where(:nth-child(2):nth-last-child(5)),
  .flex > div:where(:nth-child(3):nth-last-child(4)),
  .flex > div:where(:nth-child(4):nth-last-child(3)),
  .flex > div:where(:nth-child(5):nth-last-child(2)),
  .flex > div:where(:nth-child(6):nth-last-child(1)) {
    width: calc(100% / 6);
  }
}
/* youtube レスポンシブ */
.youtube_wrap {
  /*position: relative;*/
  /*width: 100%;*/
  /*padding-top: 56.25%;*/
}
.youtube_wrap iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  /*position: absolute;*/
  /*top: 0;*/
  /*left: 0;*/
  /*width: 100%;*/
  /*height: 100%;*/
}
/* アニメーション用 */
.animation {
  opacity: 0;
}
.animation.animated {
  opacity: 1;
}
/* *****************************************************************************
// 各種パーツ
***************************************************************************** */
/* *************************************
// 見出し(head line)
************************************* */
.hl001 {
  position: relative;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  text-align: center;
  padding: 1.5em 0.5em;
  font-size: clamp(20px, 5.5vw, 50px);
}
.hl001 > *:first-child:nth-last-child(2) {
  line-height: 1.6;
}
.hl001 > *:nth-child(2):last-child {
  display: block;
  font-size: max(0.4em, 12px);
  line-height: 1;
}
.hl001:before {
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url('../images/common/hl001_bg.webp');
  background-size: cover;
  background-position: center;
}
/* *************************************
// ボタン(button)
************************************* */
.btn001 {
  margin: var(--default-space) 0;
}
.btn001 input[type='submit'],
.btn001 a {
  display: block;
  width: fit-content;
  padding: 0.5em 3em;
  margin: 0 auto;
  border-radius: 2em;
  white-space: nowrap;
  transition: all 0.5s;
  background: var(--brown1);
  color: #fff;
  cursor: pointer;
}
.btn001 input[type='submit']:hover,
.btn001 a:hover {
  opacity: 0.7;
}
/* *************************************
// ローダー(loader)
************************************* */
#loader-bg.l001 {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l001 .spinner {
  margin: 100px 0 0;
  width: 70px;
  text-align: center;
}
.l001 .spinner > div {
  width: 18px;
  height: 18px;
  background: var(--brown1);

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.l001 .spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.l001 .spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/* *************************************
// ヘッダー(header)
************************************* */
.header {
  background-color: var(--grey);
  width: 100%;
  padding-block: calc(14 * var(--rem));
  position: absolute;
  top: 100dvh;
  left: 0;
  z-index: calc(infinity);
  @media (width < 768px) {
    position: fixed;
    top: 0;
    z-index: 100;
    padding-block: calc(10 * var(--rem));
    height: calc(100 * var(--rem));
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
  }
}

.header.is-active {
  position: fixed;
  top: 0;
  left: 0;
  @media (width < 768px) {
    opacity: 1;
    visibility: visible;
    z-index: 10;
  }
}

.header__inner {
}

.header.is-active .header__inner.l-inner,
.header.no-top .header__inner.l-inner {
  width: 100%;
  max-width: 100%;
  padding-inline: 20px;
}

.header.is-active .header__container,
.header.no-top .header__container {
  display: flex;
}

.header.is-active .header__menu,
.header.no-top .header__menu {
  margin-block-start: 0;
}

.header__wrap {
  display: contents;
  @media (width < 768px) {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }
}

.header__logo {
  width: calc(200 * var(--rem));
  margin-inline: auto;
  @media (width < 768px) {
    width: calc(150 * var(--rem));
    margin-inline: revert;
    position: relative;
    z-index: calc(infinity);
  }
}

.header.is-active .header__logo,
.header.no-top .header__logo {
  margin-inline: 0 auto;
  width: calc(150 * var(--rem));
}

.header__btn {
  display: none;
  @media (width < 768px) {
    display: block;
    top: calc(20 * var(--rem));
    right: calc(20 * var(--rem));
    z-index: calc(infinity);
    text-align: center;
    position: static;
    margin-inline-start: auto;
  }
}

.header_btn__text {
  text-transform: uppercase;
  text-align: center;
}

.header__modal {
  display: contents;
  @media (width < 768px) {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    padding-block: calc(120 * var(--rem));
    background-color: var(--grey);
    width: 100%;
    height: 100dvh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
  }
}

.header__modal.is-active {
  @media (width < 768px) {
    opacity: 1;
    visibility: visible;
    overflow: scroll;
  }
}

.header__menu {
  margin-block-start: calc(40 * var(--rem));
  @media (width < 768px) {
    margin-block-start: 0;
    padding-inline: calc(20 * var(--rem));
    min-height: calc(750 * var(--rem));
  }
}

.header__nav > ul {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  @media (width < 768px) {
    grid-template-columns: 1fr;
    row-gap: calc(16 * var(--rem));
  }
}

.header__nav > ul > li:has(.sub-menu) {
  position: relative;
}

.header__nav > ul > li > a {
  display: block;
  width: 100%;
  padding-block: calc(10 * var(--rem));
  padding-inline: calc(10 * var(--rem));
  text-align: center;
  border-left: 2px solid var(--brown1);
  @media (width < 768px) {
    border-left: none;
    border-bottom: 2px dashed;
    text-align: left;
  }
}

.header__nav > ul > li:last-child > a {
  border-right: 2px solid var(--brown1);
  @media (width < 768px) {
    border-right: none;
  }
}

@media (any-hover: hover) {
  .header__nav > ul > li > a:hover {
    opacity: 0.7;
    color: var(--brown1);
  }
}

/* 2階層 */

  .header__nav > ul > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
  }


.header__nav > ul > li > .sub-menu {
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--grey);
  /*  */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  @media (width < 768px) {
    position: static;
    opacity: 1;
    visibility: revert;
  }
}

.header__nav > ul > li > .sub-menu li a {
  display: block;
  text-align: center;
  border-bottom: 1px solid var(--brown1);
  padding-block: calc(10 * var(--rem));
  @media (width < 768px) {
    text-align: left;
    padding-inline: calc(36 * var(--rem));
  }
}

@media (any-hover: hover) {
  .header__nav > ul > li > .sub-menu li a:hover {
    opacity: 0.7;
  }
}

.header__atc {
  display: none;
  @media (width < 768px) {
    display: block;
    margin-block-start: calc(40 * var(--rem));
  }
}

.header__tel {
}

.header__mail {
  display: block;
  margin-block-start: calc(24 * var(--rem));
}

.header__tel-wrap,
.header__mail-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: calc(8 * var(--rem));
}

.header__tel-icon {
  width: calc(33 * var(--rem));
  height: calc(50 * var(--rem));
}

.header__mail-icon {
  width: calc(50 * var(--rem));
  height: calc(38 * var(--rem));
}

.header__tel-num,
.header__mail-text {
  font-size: calc(30 * var(--rem));
}

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

/* トップページ以外 */
.header.no-top {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  @media (width < 768px) {
    opacity: 1;
    visibility: visible;
  }
}

/* *************************************
フッター
************************************* */
.footer {
  padding-block: calc(80 * var(--rem)) calc(20 * var(--rem));
  margin-block-start: calc(80 * var(--rem));
  background-color: var(--grey);
  position: relative;
  @media (width < 768px) {
    padding-block-end: calc(80 * var(--rem));
  }
}

.footer::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/svg/nami.svg) no-repeat center / cover;
  position: absolute;
  top: -20%;
  left: 0;
  z-index: -1;
}

.footer__contents {
  display: flex;
  align-items: flex-end;
  @media (width < 768px) {
    display: grid;
    justify-items: center;
    row-gap: calc(40 * var(--rem));
  }
}

.footer__wrap {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  column-gap: calc(40 * var(--rem));
  @media (width < 768px) {
    display: contents;
  }
}

.footer__logo {
  width: calc(220 * var(--rem));
}

.footer__info {
  @media (width < 768px) {
    display: grid;
    row-gap: calc(16 * var(--rem));
  }
}

.footer__sns {
  margin-inline-start: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  column-gap: calc(16 * var(--rem));
  @media (width < 768px) {
    margin-inline: auto;
  }
}

.footer__sns-link {
  width: calc(60 * var(--rem));
}

@media (any-hover: hover) {
  .footer__sns-link:hover {
    opacity: 0.7;
  }
}

.footer__sns-link img {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer_copy {
  margin-block-start: calc(32 * var(--rem));
  font-size: calc(14 * var(--rem));
  text-align: right;
  @media (width < 768px) {
    text-align: center;
  }
}

.article-contents {
  margin-block-start: calc(80 * var(--rem));
  padding-block-end: calc(80 * var(--rem));
}

.article-contents h1 {
  font-size: calc(36 * var(--rem));
  font-weight: bold;
  margin-block-end: calc(64 * var(--rem));
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: calc(24 * var(--rem));
  @media (width < 768px) {
    font-size: calc(26 * var(--rem));
  }
}

.article-contents h1::before,
.article-contents h1::after {
  content: '';
  display: inline-block;
  width: calc(100 * var(--rem));
  height: 3px;
  background-color: var(--brown1);
}

@media (width < 768px) {
  .article-contents h1::before,
  .article-contents h1::after {
    width: calc(40 * var(--rem));
  }
}

.article-contents a {
  color: var(--orange);
  text-decoration: revert;
}

@media (any-hover: hover) {
  .article-contents a:hover {
    opacity: 0.7;
  }
}

.article-contents p {
  text-align: center;
  margin-block-end: calc(24 * var(--rem));
}

.article-contents figcaption {
  text-align: center;
  font-size: calc(14 * var(--rem));
  margin-block-start: calc(8 * var(--rem));
  margin-block-end: calc(24 * var(--rem));
}

.article-contents figure,
.article-contents p:has(img) {
  width: min(100%, calc(500 * var(--rem)));
  margin-inline: auto;
}

/* 画像の中央寄せ */
.article-contents .aligncenter {
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}
/* figureタグで囲まれた画像の中央寄せ */
.article-contents .aligncenter img {
  height: auto;
  max-width: 100%;
}
/* 画像右寄せ */
.article-contents .alignright {
  height: auto;
  margin-left: auto;
  max-width: 100%;
}
/* figureタグで囲まれた画像右寄せ */
.article-contents .alignright img {
  height: auto;
  max-width: 100%;
}
/* 位置指定のない画像 */
.article-contents .alignnone {
  height: auto;
  max-width: 100%;
}
/* figureタグで囲まれた位置指定のない画像 */
.article-contents .alignnone img {
  height: auto;
  max-width: 100%;
}
/* 自動折り返し有効化 */
.article-contentspre {
  white-space: pre-wrap;
}
