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

li {
  list-style: none;
}

a {
  text-decoration: none;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.5;
  overflow-x: hidden;
}

h1 {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

.sp_only {
  display: none;
}

.br-pc {
  display: block;
}

.br-sp {
  display: none;
}

@media (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
  .sp_only {
    display: block !important;
  }
  .br-sp {
    display: block;
  }
  .br-pc {
    display: none;
  }
  header {
    margin: 0;
    padding: 0;
  }
  header h1,
  header p {
    margin-bottom: 0;
    width: 100%;
  }
}
.l-contents {
  background-repeat: repeat;
  background-size: 50px;
}

.l-contents-inner {
  padding: 0 2rem 1.5rem;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .l-contents-inner {
    width: 95%;
    padding: 0 0 3%;
  }
}

.none {
  display: none;
}

.clear {
  clear: both;
}

.left {
  float: left;
}

.right {
  float: right;
}

.aligncenter {
  text-align: center;
}

.alignleft {
  text-align: left;
}

.alignright {
  text-align: right;
}

input.Buttons.survey-btn {
  background: #ff0000;
  color: #fff;
  padding: 5px 40%;
  font-size: 1rem;
  font-weight: bold;
}

.ans-list {
  display: none;
}

p.survey-result {
  display: none;
}

h1#question_ttl img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
  width: 100%;
  height: auto;
}

/*---------------------------
スプラッシュページ（動画全面表示）
---------------------------*/
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.splash.is-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.splash__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

/* SP時のドロアーメニュー */
.menu-checkbox {
  display: none;
}

.drawer-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  transform: translateX(100%);
  transition: all 0.5s ease-in-out 0s;
  z-index: 20;
}

ul.drawer-menu-list {
  list-style: none;
  padding: 10px;
}

.menu-checkbox:checked ~ .drawer-menu {
  transform: translateX(0);
}

.drawer-icon {
  position: absolute;
  top: 3vw;
  right: 3%;
  width: 60px;
  height: 60px;
  touch-action: manipulation; /* タップ反応を軽快に */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 30;
  cursor: pointer;
}
.drawer-icon span {
  display: block;
  width: 40px;
  height: 3px;
  border-radius: 3px;
  position: absolute;
  background-color: #fff;
  transition: all 0.5s ease-in-out 0s;
}
.drawer-icon span::before, .drawer-icon span::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  border-radius: 3px;
  position: absolute;
  background-color: #fff;
  transition: all 0.5s ease-in-out 0s;
}
.drawer-icon span::before {
  bottom: 12px;
}
.drawer-icon span::after {
  top: 12px;
}

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 {
  background-color: rgba(255, 255, 255, 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 {
  display: block;
  text-align: center;
  font-size: 1.3rem;
  color: #f39700;
  background-color: #231815;
  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: url("../img/bg.jpg") top center repeat-y;
  background-size: 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 0.25s ease, box-shadow 0.25s ease, background-color 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}
.btn-more::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 0.5px solid #a6732d;
  transition: border-color 0.25s ease, box-shadow 0.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 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
  pointer-events: none;
}
.btn-more:hover {
  background-color: rgb(76.4, 34.1071428571, 0);
  border-color: rgb(204.2843601896, 146.8066350711, 67.9156398104);
  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: rgb(210.8104265403, 160.7289099526, 91.9895734597);
  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: 0.9;
  }
}
.btn-img-next {
  display: block;
  width: 35%;
  margin: 2em auto 0;
  text-decoration: none;
}
.btn-img-next img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.btn-img-next:hover img {
  transform: scale(1.03);
}
.btn-img-next:focus-visible {
  outline: 3px solid rgba(166, 115, 45, 0.7);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .btn-img-next {
    width: 65%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-img-next img {
    transition: none;
    transform: none;
  }
}
/* スクロールアニメーション */
/* ===== 可変パラメータ ===== */
/* 動きを控えたい人向け */
@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;
}
.reveal:not(.is-inview),
.reveal-onload:not(.is-inview) {
  transform: none;
}
.reveal,
.reveal-onload {
  /* バリエーション（初期位置は is-inview まで） */
}
.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;
  display: block;
  text-align: center;
  padding: 7.5vw 0 3.5vw;
}
#header .logo_box .header_bg {
  width: 100%;
  height: auto;
}
#header .logo_box .logo_img {
  display: inline;
  margin: 0 auto;
  width: 24%;
  height: auto;
}
@media (max-width: 768px) {
  #header .logo_box .logo_img {
    width: 45%;
  }
}
@media (max-width: 768px) {
  #header .logo_box {
    padding-bottom: 0;
  }
  #header .logo_box::after {
    content: "";
    display: block;
    width: 100%;
    height: 7px;
    background: url("../img/nav_line.png") repeat-x left center;
    background-size: auto 100%;
    margin-top: 1.5vw;
  }
}

input[type=submit] {
  display: inline-block;
}

/* 共通 Gナビ */
#head_menu {
  max-width: 100%;
  width: 100%;
  background-color: #231815;
  display: block;
  text-align: center;
}
#head_menu::before, #head_menu::after {
  content: "";
  display: block;
  width: 100%;
  height: 7px;
  background: url("../img/nav_line.png") repeat-x left center;
  background-size: auto 100%;
}
#head_menu .head_menu_in {
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 4em;
  padding: 0.8em 3em;
}
#head_menu .head_menu_in li {
  box-sizing: border-box;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.3em;
  transition: border-color 0.3s;
}
#head_menu .head_menu_in li:hover {
  border-bottom: 2px solid #fee290;
}
#head_menu .head_menu_in li a {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
#head_menu .head_menu_in li a:hover {
  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 {
  position: relative;
  border: none;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0.85em 0;
  letter-spacing: 0.15em;
}
.sec_title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/title_bg.png") center/100% 100% no-repeat;
  z-index: -1;
}
@media (max-width: 768px) {
  .sec_title::before {
    background: url("../img/title_bg_sp02.png") center/100% 100% no-repeat;
  }
}
.sec_title span {
  background: linear-gradient(180deg, #fff380 0%, #ffc820 40%, #e07010 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .sec_title {
    font-size: 5vw;
    padding: 0;
    aspect-ratio: 1446/292;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.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, rgb(66, 33, 11) 4.3%, rgb(109, 70, 26) 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 {
  margin-top: 100px;
  background-color: #231815;
}
#footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background: url("../img/nav_line.png") repeat-x left center;
  background-size: auto 100%;
}
#footer #footer-all {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 2.5rem 5rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}
#footer #footer-all #footer-l {
  flex: 0 0 30%;
  text-align: center;
}
#footer #footer-all #footer-l .footer-logo-img {
  width: 80%;
  max-width: 180px;
  display: block;
  margin: 0 auto;
}
#footer #footer-all #footer-r {
  flex: 1;
  display: flex;
  flex-direction: column;
}
#footer #footer-all #footer-r #footer-ru {
  display: flex;
  justify-content: flex-end;
  gap: 5em;
  font-size: 0.9rem;
}
#footer #footer-all #footer-r #footer-ru #footer-rl,
#footer #footer-all #footer-r #footer-ru #footer-rr {
  width: auto;
}
#footer #footer-all .footer-pr-row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.7em;
  margin-top: 1.5rem;
  padding-left: 4em;
}
#footer #footer-all .footer-pr-row img.pr {
  width: 38px;
  height: auto;
  flex-shrink: 0;
}
#footer #footer-all .footer-pr-row .pr-txt {
  font-size: 0.7rem;
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
  line-height: 1;
}
#footer ul.footer-list {
  text-align: left;
  padding-left: 0;
  width: 100%;
  font-size: 1.05rem;
}
#footer ul.footer-list a {
  color: #fff;
  font-weight: bold;
}
#footer li.footer-list-in {
  border-bottom: 2px solid #fff;
  margin-bottom: 1rem;
  padding-right: 5em;
}
@media (max-width: 768px) {
  #footer {
    padding: 1rem 5%;
  }
  #footer #footer-u-sp {
    display: flex;
  }
  #footer #footer-l-sp {
    width: 40%;
    text-align: center;
    padding-top: 2.5rem;
  }
  #footer #footer-l-sp .footer-logo-img {
    width: 90%;
    display: block;
    margin: 0 auto;
  }
  #footer #footer-r-sp {
    width: 60%;
  }
  #footer #footer-d-sp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6em;
    margin-top: 1rem;
  }
  #footer #footer-d-sp img.pr {
    width: 12%;
    height: auto;
    flex-shrink: 0;
  }
  #footer #footer-d-sp .pr-txt {
    font-size: 2.1vw;
    color: #fff;
    font-weight: bold;
    line-height: 1.6;
    margin-left: 0;
    text-align: right;
  }
  #footer ul.footer-list {
    width: auto;
    padding-left: 15%;
    font-size: 4vw;
  }
  #footer li.footer-list-in {
    margin-bottom: 0.8rem;
    padding-right: 0;
  }
}

.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 0.25s ease, transform 0.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));
}
