@charset "UTF-8";
/*
Description: Original
Author: Ann Tachibana
Version: 3.0
*/
/*
body {
  animation: pagefadeIn .5s forwards;
}
@keyframes pagefadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
*/
/*======================================
font
/*======================================*/
/* base font */
html, body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
  font-variant-ligatures: none;
  letter-spacing: 1px;
}
.gothic {
  font-family:
    'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', 'Yu Gothic', YuGothic, メイリオ, Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-feature-settings: "pkna";
  letter-spacing: normal;
}
.EN {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
/*======================================
font-size
/*======================================*/
html {
  font-size: clamp(14px, calc(100vw * 16 / 1200), 16px);
}
.txt-fluid {
  font-size: clamp(14px, calc(100vw * 16 / 1200), 18px);
}
.txt-fluid-lg {
  font-size: clamp(18px, calc(100vw * 22 / 1400), 22px);
}
body {
  font-size: 1rem;
}
/*======================================
font-style
/*======================================*/
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}
/* emphasis */
strong, em, .gothic strong, .gothic em {
  font-weight: bold;
}
p {
  line-height: 1.6em;
}
p a {
  text-decoration: underline;
  margin-left: 5px;
  margin-right: 5px;
}
a {
  cursor: pointer;
}
a:hover {
  opacity: .7;
  filter: alpha(opacity=70);
  transition: all .3s ease;
}
a:after, a:hover:after {
  transition: all .3s ease;
}
.gothic-B {
  font-weight: 700;
}
.gothic-M {
  font-weight: 600;
}
.gothic-L {
  font-weight: 300;
}
.txt-normal {
  font-weight: 400;
}
.txt-bold {
  font-weight: bold;
}
/*======================================
color setting
/*======================================*/ :root {
  /* base colors */
  --navy: rgba(2, 45, 80, 1);
  --orange: rgba(240, 110, 0, 1);
  --red: rgba(200, 85, 85, 1);
  --gray: rgba(240, 240, 240, 1);
  --white: #fff;
  --yellow: rgba(255, 250, 0, 1);
  --black: #000;
  /* rgb values（アルファ用） */
  --navy-rgb: 2 45 80;
  --orange-rgb: 240 110 0;
  --red-rgb: 200 85 85;
  --gray-rgb: 240 240 240;
  --white-rgb: 255 255 255;
  --yellow-rgb: 255 250 0;
  --black-rgb: 0 0 0;
}
/* style-common.css */
html, body {
  color: var(--navy);
}
.txt-normal {
  color: initial;
}
.txt-white {
  color: var(--white);
}
.txt-navy {
  color: var(--navy);
}
.txt-orange {
  color: var(--orange);
}
.txt-red {
  color: var(--red);
}
.bg-white {
  background: var(--white);
}
.bg-white-50 {
  background: var(--white-50);
}
.bg-navy {
  background: var(--navy);
  color: var(--white);
}
.bg-orange {
  background: var(--orange);
  color: var(--white);
}
.bg-gray {
  background: var(--gray);
}
.bgGR-white-bottom {
  background: var(--gr-white-bottom);
}
.bgGR-white-top {
  background: var(--gr-white-top);
}
/*======================================
scrollbar
/*======================================*/
html::-webkit-scrollbar, body::-webkit-scrollbar {
  width: 8px;
}
html::-webkit-scrollbar-track, body::-webkit-scrollbar-track {
  background: rgb(var(--white-rgb) / .9);
}
html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb {
  background: rgb(var(--orange-rgb) / .5);
  border-radius: 999px;
}
html {
  scrollbar-color: rgb(var(--orange-rgb) / .3) rgb(var(--white-rgb) / .9);
  scrollbar-width: thin;
}
/*======================================
background imagre
/*======================================*/
body::before, body::after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
  width: 100%;
  height: 120vh;
  transform: translate(0, 0);
  /*
    background-image: url(../img/bg-wood-SP.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
    */
}
/*======================================*/
@media screen and (orientation: portrait) { /*SP*/
  body::before, body::after {
    /*    background-image: url(../img/bg-wood-SP.jpg);
      */
  }
} /*END query*/
@media screen and (orientation: landscape) { /*PC*/
  body::before, body::after {
    /*
      background-image: url(../img/bg-wood-PC.jpg);
    height: 110vh;
      */
  }
} /*END query*/
/*======================================
Page Transition
/*======================================*/
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  background: rgb(var(--navy-rgb) / 1);
  /* 初期は上に隠す */
  transform: translateY(-100%);
  will-change: transform;
}
/* ① 退出：上から降りて覆う */
body.is-leave .page-transition {
  animation: pt-down .6s cubic-bezier(.4, 0, .2, 1) forwards;
}
/* ③ 進入：下へ逃げる（ゆっくり・分かりやすく） */
body.is-enter .page-transition {
  transform: translateY(0); /* 開始位置を固定 */
  animation: pt-out 1s cubic-bezier(.25, .8, .25, 1) forwards;
  animation-delay: .3s;
}
@keyframes pt-down {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes pt-out {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(100%);
  }
}
@media (prefers-reduced-motion: reduce) {
  body.is-leave .page-transition, body.is-enter .page-transition {
    animation: none;
  }
  .page-transition {
    transform: translateY(-100%);
  }
}
/*======================================
LAYOUT
/*======================================*/
.wrap {
  position: relative;
  text-align: center;
  width: 90%;
  margin: 0 auto;
  z-index: 1;
  max-width: 1300px;
}
@media screen and (min-width:768px) {
  .wrap-wide {
    width: calc(100% - 10% - 54px - 1em);
  }
} /*END query*/
/*======================================
responsive
======================================*/
.sp {
  display: block;
}
.tab {
  display: none;
}
.sp-tab {
  display: block;
}
.pc {
  display: none; /* tab-pc 用：ここでは非表示 */
}
.pc-only {
  display: none; /* PC専用 */
}
@media (min-width: 768px) {
  .sp {
    display: none;
  }
  .tab {
    display: block;
  }
  .sp-tab {
    display: block;
  }
  .pc {
    display: block;
  }
}
@media (min-width: 1024px) {
  .tab {
    display: none;
  }
  .sp-tab {
    display: none;
  }
  .pc-only {
    display: block;
  }
}
@media (min-width: 1200px) {} /*END */
/*======================================
speacer
/*======================================*/
.bg {
  padding: 3em 0;
}
.bg-top {
  padding-top: 3em;
}
.bg-bottom {
  padding-bottom: 3em;
}
.bg-min {
  padding: 2em 0;
}
.bg-top-min {
  padding-top: 2em;
}
.bg-bottom-min {
  padding-bottom: 2em;
}
@media (min-width: 768px) {
  .bg {
    padding: 6em 0;
  }
  .bg-top {
    padding-top: 6em;
  }
  .bg-bottom {
    padding-bottom: 6em;
  }
  .bg-min {
    padding: 3em 0;
  }
  .bg-top-min {
    padding-top: 3em;
  }
  .bg-bottom-min {
    padding-bottom: 3em;
  }
} /*END */
/*======================================
flexbox
/*======================================*/
.flex-SP {
  display: flex;
  flex-wrap: wrap;
}
.flex-SB {
  justify-content: space-between;
}
.flex-RE {
  flex-direction: row-reverse;
}
.flex-center {
  justify-content: center;
}
.flex-end {
  justify-content: flex-end;
}
.flex-middle {
  align-items: center;
}
.flex-stretch {
  align-items: stretch;
}
.flex-bottom {
  align-items: flex-end;
}
.flex-start {
  justify-content: start;
}
@media screen and (min-width: 768px) { /*768px〜1023px*/
  .flex {
    display: flex;
    flex-wrap: wrap;
  }
} /*END */
/*======================================
grid
/*======================================*/
.grid-CMN {
  display: grid;
  grid-template-columns: minmax(30%, max-content) 1fr;
  gap: 5%;
  font-size: 100%;
}
.grid-CMN > * {
  min-width: 0;
}
.grid-CMN.reverse {
  grid-auto-flow: column;
}
/* grid-table */
.grid-table {
  display: block; /* ← gridをやめる */
  font-size: 100%;
}
.grid-table dt, .grid-table dd {
  margin: 0;
  text-align: left;
  line-height: 1.6em;
}
.grid-table dt {
  font-weight: 600;
  padding: 1em 0 .4em;
}
.grid-table dd {
  padding: 0 0 1em;
  border-bottom: 1px solid rgb(var(--navy-rgb) / .5);
  min-width: 0;
  overflow-wrap: anywhere;
}
.grid-table dt:first-of-type {
  border-top: 1px solid rgb(var(--navy-rgb) / .5);
}
@media (min-width: 767px) {
  .grid-table {
    display: grid;
    grid-template-columns: 25% 1fr;
    gap: 0 1em;
  }
  .grid-table dt, .grid-table dd {
    padding: 2em .5em;
    border-bottom: 1px solid rgb(var(--navy-rgb) / .5);
  }
  /* PC時はdtも下線を揃える（ddと同じでOK） */
  .grid-table dt {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
  }
  .grid-table dd:first-of-type {
    border-top: 1px solid rgb(var(--navy-rgb) / .5);
  }
} /*END */
/*======================================
max-wrap
/*======================================*/
.max-wrap {
  width: 100%;
  max-width: 767px;
  margin: 0 auto;
}
.max-wrap-100 {
  max-width: 100px;
}
.max-wrap-150 {
  max-width: 150px;
}
.max-wrap-200 {
  max-width: 200px;
}
.max-wrap-250 {
  max-width: 250px;
}
.max-wrap-300 {
  max-width: 300px;
}
.max-wrap-350 {
  max-width: 350px;
}
.max-wrap-400 {
  max-width: 400px;
}
.max-wrap-450 {
  max-width: 450px;
}
.max-wrap-500 {
  max-width: 500px;
}
.max-wrap-550 {
  max-width: 550px;
}
.max-wrap-600 {
  max-width: 600px;
}
.max-wrap-650 {
  max-width: 650px;
}
.max-wrap-700 {
  max-width: 700px;
}
.max-wrap-800 {
  max-width: 800px;
}
.max-wrap-850 {
  max-width: 850px;
}
.max-wrap-900 {
  max-width: 900px;
}
.max-wrap-950 {
  max-width: 950px;
}
.max-wrap-1000 {
  max-width: 1000px;
}
.max-wrap-1024 {
  max-width: 1024px;
}
.max-wrap-1100 {
  max-width: 1100px;
}
.max-wrap-1200 {
  max-width: 1200px;
}
.max-wrap-1300 {
  max-width: 1300px;
}