@charset "UTF-8";
/* CSS Document */
/*---------------------------
sec
---------------------------*/
.sec {
  width: 100%;
  max-width: 800px;
  margin: 0 auto; }
  @media (max-width: 768px) {
    .sec {
      width: 95%; } }

/*---------------------------
スプラッシュページ
---------------------------*/
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0b0b0b;
  color: #fff;
  display: grid;
  place-items: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  /* ロゴ：初期は見えない（チラつき防止） */
  /* タイトル：分割準備が終わるまで非表示 */
  /* 1文字ごとの span（JSで挿入） */ }
  .splash.is-hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none; }
  .splash__inner {
    text-align: center; }
  .splash__logo {
    width: min(220px, 40vw);
    margin: 0 auto 15px;
    display: block;
    opacity: 0;
    transform: scale(0.9);
    will-change: opacity, transform; }
  .splash__title {
    font-size: clamp(12px, 5vw, 20px);
    font-weight: normal;
    letter-spacing: 0.2em;
    white-space: nowrap;
    display: inline-block;
    visibility: hidden; }
    @media (max-width: 768px) {
      .splash__title {
        font-size: 3.5vw; } }
    .splash__title.is-ready {
      visibility: visible; }
    .splash__title .is-accent {
      color: #fee290; }
  .splash__title .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(6px);
    filter: blur(6px);
    margin: 0; }
  .splash__title .char.is-show {
    opacity: 1;
    transform: none;
    filter: blur(0);
    transition: opacity 0.22s ease, transform 0.22s ease, filter 0.22s ease; }

/* スプラッシュ中はスクロール禁止 */
html.splash-lock {
  overflow: hidden; }

/* SP時のドロアーメニュー */
.drawer-icon {
  position: absolute;
  top: 3vw;
  right: 3%;
  width: 60px;
  height: 60px;
  touch-action: manipulation;
  /* タップ反応を軽快に */
  display: flex; }
  .drawer-icon span {
    height: 3px;
    background-color: #fff; }
    .drawer-icon span::before, .drawer-icon span::after {
      height: 3px;
      background-color: #fff; }

ul#drawer-menu-ul {
  margin-top: 60px; }

.drawer-menu {
  background-color: rgba(56, 25, 0, 0.98);
  padding: 0; }

.menu-checkbox:checked ~ .drawer-icon span::before {
  bottom: 0;
  transform: rotate(-45deg);
  background-color: #fff; }
.menu-checkbox:checked ~ .drawer-icon span::after {
  top: 0;
  transform: rotate(45deg);
  background-color: #fff; }

li.drawer-menu-item {
  border-bottom: none; }
  li.drawer-menu-item .drawer-menu-item-link {
    font-size: 1.3rem;
    color: #fee290;
    background-color: #530000;
    border: 2px solid #b18f50;
    font-weight: bolder;
    margin: 10px 0;
    padding: 0.5em 0;
    letter-spacing: 0.2em; }

/* ドロワーON中はページを固定 */
html:has(#drawer-checkbox:checked) {
  overflow: hidden;
  /* iOSのアドレスバー対策 */
  height: 100%; }

body {
  background: linear-gradient(0deg, #230400 1.1%, #522300 55.34%, #230400 100%); }

/* 明朝体 */
.noto-serif-jp {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal; }

.no-result {
  color: #fff; }

.btn-more {
  display: block;
  width: 35%;
  margin: 2em auto 0;
  position: relative;
  padding: 1em 0;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border: 3px solid #a6732d;
  background-color: #381900;
  overflow: hidden;
  cursor: pointer; }
  @media (max-width: 768px) {
    .btn-more {
      border-width: 2px;
      width: 60%;
      font-size: 1rem;
      padding: 1.2em 0; } }
  .btn-more .btn-more__inner {
    display: inline-block;
    transition: transform .25s ease, box-shadow .25s ease, background-color .3s ease, border-color .3s ease;
    will-change: transform; }
  .btn-more::before {
    content: "";
    position: absolute;
    inset: 4px;
    border: 0.5px solid #a6732d;
    transition: border-color .25s ease, box-shadow .25s ease;
    pointer-events: none; }
    @media (max-width: 768px) {
      .btn-more::before {
        inset: 3px; } }
  .btn-more::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.5em;
    transform: translateY(-50%) rotate(45deg);
    width: 0.6em;
    height: 0.6em;
    border-top: 2px solid #a6732d;
    border-right: 2px solid #a6732d;
    transition: right .3s ease, transform .3s ease, opacity .3s ease;
    opacity: .9;
    pointer-events: none; }
  .btn-more:hover {
    background-color: #4c2200;
    border-color: #cc9344;
    box-shadow: 0 10px 28px rgba(166, 115, 45, 0.35), 0 0 12px rgba(166, 115, 45, 0.25); }
    .btn-more:hover::before {
      border-color: #d3a15c;
      box-shadow: 0 0 6px rgba(166, 115, 45, 0.4); }
    .btn-more:hover .btn-more__inner {
      transform: translateY(-2px); }
    .btn-more:hover::after {
      right: 1.2em;
      transform: translateY(-50%) rotate(45deg) scale(1.08);
      opacity: 1; }
  .btn-more:focus-visible {
    outline: 3px solid rgba(166, 115, 45, 0.7);
    outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  .btn-more .btn-more__inner {
    transition: none;
    transform: none; }
  .btn-more:hover {
    background-color: #381900;
    box-shadow: none; }
    .btn-more:hover::before {
      border-color: #a6732d;
      box-shadow: none; }
    .btn-more:hover::after {
      right: 1.5em;
      transform: translateY(-50%) rotate(45deg);
      opacity: .9; } }
/* スクロールアニメーション */
/* ===== 可変パラメータ ===== */
/* 動きを控えたい人向け */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-onload {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important; } }
/* ベース（reveal／reveal-onload 共通） */
.reveal,
.reveal-onload {
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.5s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform, filter;
  /* バリエーション（初期位置は is-inview まで） */ }
  .reveal:not(.is-inview),
  .reveal-onload:not(.is-inview) {
    transform: none; }
  .reveal[data-reveal="fade-up"]:not(.is-inview),
  .reveal-onload[data-reveal="fade-up"]:not(.is-inview) {
    transform: translate3d(0, 24px, 0); }
  .reveal[data-reveal="fade-left"]:not(.is-inview),
  .reveal-onload[data-reveal="fade-left"]:not(.is-inview) {
    transform: translate3d(-24px, 0, 0); }
  .reveal[data-reveal="fade-right"]:not(.is-inview),
  .reveal-onload[data-reveal="fade-right"]:not(.is-inview) {
    transform: translate3d(24px, 0, 0); }
  .reveal[data-reveal="fade"]:not(.is-inview),
  .reveal-onload[data-reveal="fade"]:not(.is-inview) {
    transform: none; }
  .reveal.is-inview,
  .reveal-onload.is-inview {
    opacity: 1;
    filter: blur(0);
    transform: none; }

#header .logo_box {
  position: relative; }
  #header .logo_box .header_bg {
    width: 100%;
    height: auto; }
  #header .logo_box .logo_img {
    position: absolute;
    top: 0.9vw;
    left: 0;
    right: 0;
    margin: auto;
    width: 14.4%;
    height: auto; }
    @media (max-width: 768px) {
      #header .logo_box .logo_img {
        top: 2.3vw;
        width: 31.5%; } }

#submit {
  display: inline-block; }

/* 共通 Gナビ */
#head_menu {
  max-width: 100%;
  width: 100%;
  background-color: #530000;
  display: block;
  text-align: center; }
  #head_menu .head_menu_in {
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 0.5em 3em; }
    #head_menu .head_menu_in li {
      box-sizing: border-box;
      width: 18%;
      border-bottom: 1px solid transparent;
      padding-bottom: 0.2em;
      transition: all 0.7s; }
      #head_menu .head_menu_in li:hover {
        border-bottom: 1px solid #fee290; }
      #head_menu .head_menu_in li a {
        display: block;
        color: #fee290; }

/* パンくずリスト */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  font-size: 0.8rem;
  color: #fff;
  padding: 0;
  margin: 20px 0; }
  @media (max-width: 768px) {
    .breadcrumb {
      font-size: 3vw; } }
  .breadcrumb li a {
    color: #fff; }
    .breadcrumb li a span {
      color: #fff; }
  .breadcrumb li:last-of-type a span {
    color: #ffff1f; }

.breadcrumb__list:not(:last-of-type)::after {
  content: ">";
  margin: 0 0.6em; }

/*ページネーション*/
.pager {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 4px; }
  .pager a,
  .pager span {
    display: inline-block;
    padding: 0.5em 0.8em;
    color: #fff;
    background: #1a0d05;
    font-size: 1rem;
    border: 1px solid #c9b385; }
    @media (max-width: 768px) {
      .pager a,
      .pager span {
        font-size: 3vw; } }
    .pager a.current,
    .pager span.current {
      background-color: #e60033;
      color: #fff; }

/* 共通タイトル部分02 スタイル */
.title_format02 {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../img/logo_tra.png") top center no-repeat;
  background-size: contain;
  width: 25%;
  margin: auto;
  aspect-ratio: 342 / 179;
  color: #fee29b;
  letter-spacing: 0.2em;
  font-size: 1.2rem; }
  @media (max-width: 768px) {
    .title_format02 {
      width: 45%; } }

.sec_title {
  background-color: #381900;
  border: 1px solid #b18f50;
  color: #fee290;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  padding: 0.5em 0;
  letter-spacing: 0.1em; }
  @media (max-width: 768px) {
    .sec_title {
      padding: 0.2em 0; } }
  .sec_title.result_title {
    margin-bottom: 1em; }
    @media (max-width: 768px) {
      .sec_title.result_title {
        margin-bottom: 0; } }

.cts_title {
  letter-spacing: 0.1em;
  text-align: center;
  background: linear-gradient(0deg, #42210b 4.3%, #6d461a 99.96%);
  border: 2px solid #b18f50;
  color: #fff;
  font-size: 1.3rem;
  padding: 0.5em 0; }
  @media (max-width: 768px) {
    .cts_title {
      margin-top: 10px;
      font-size: 1rem; } }

/* FOOTER */
#footer #footer-all {
  max-width: 800px; }
  #footer #footer-all #footer-l {
    text-align: center; }
    #footer #footer-all #footer-l .footer-x-img {
      width: 88%; }
  #footer #footer-all #footer-r {
    display: flex;
    align-items: stretch;
    flex-direction: column; }
    #footer #footer-all #footer-r #footer-ru {
      display: flex;
      font-size: 0.8rem;
      justify-content: flex-end; }
      #footer #footer-all #footer-r #footer-ru #footer-rl {
        width: 32%;
        margin-left: 0; }
      #footer #footer-all #footer-r #footer-ru #footer-rc {
        width: 32%; }
      #footer #footer-all #footer-r #footer-ru #footer-rr {
        width: 32%; }
    #footer #footer-all #footer-r #footer-rd {
      margin-top: auto;
      justify-content: flex-end; }
      #footer #footer-all #footer-r #footer-rd .pr-txt {
        font-size: 0.6rem; }
#footer #footer-l-sp p.footer-l-ttx {
  font-size: 0.7rem;
  margin-bottom: 7vw; }

.back-to-top {
  position: fixed;
  right: clamp(16px, 2vw, 24px);
  bottom: calc(clamp(16px, 2vw, 24px) + env(safe-area-inset-bottom));
  z-index: 9990;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background: transparent;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease; }
  .back-to-top img {
    display: block;
    width: 100%;
    height: 100%; }
  .back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto; }
  .back-to-top:hover {
    transform: translateY(-2px); }
  @media (prefers-reduced-motion: reduce) {
    .back-to-top {
      transition: none; } }
  body.admin-bar .back-to-top {
    bottom: calc(56px + env(safe-area-inset-bottom)); }
