@charset "utf-8";
@font-face {/* 400 */
    font-family: "A1MinchoStdN";
    src: url("../font/AP-OTF-A1MinchoStdN-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}
@font-face {/* 500 */
    font-family: "A1MinchoStdN";
    src: url("../font/AP-OTF-A1MinchoStdN-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
}
@font-face {/* 600 */
    font-family: "A1MinchoStdN";
    src: url("../font/AP-OTF-A1MinchoStdN-Bold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
}
:root {
    --color-season: #FBF3F8;
    --color-bk: #000;
    --color-wh: #fff;
    --color-gray: #F7F7F7;
    --color-gr: #034E43;
    --color-bl: #222365;
    --color-nav: #0C0D3E;
    --color-ye: #EBCE43;
    --color-red: #B22223;
    --txt-size: 18px;
    --txt-lh: 1.6;
    --inner-size: 950;
    --inner-size-wide: 1100;
    --content-wrap-top: 180px;
    --content-wrap-bottom: 180px;
    --sec-tit-width: 220px;
}
html, body {
    color: var(--color-bk);
    font-family: "A1MinchoStdN", serif;
    font-size: var(--txt-size);
    font-weight: 400;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: none;
    animation: fadeIn 1.5s ease 0s 1 normal;
    -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
}
html { overflow-x: hidden; }
#tpage { overflow-x: hidden; }

* { min-height: 0vw; }
.hidden { display: none; }
.grecaptcha-badge { visibility: hidden; }
/*--- 画面全体をフェードイン(animation設定) ---*/
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0;
}
h1, .sizeh1 { font-size: 50px; }
h2, .sizeh2 { font-size: 40px; }
h3, .sizeh3 { font-size: 30px; }
h4, .sizeh4 { font-size: 26px; }
h5, .sizeh5 { font-size: 24px; }
h6, .sizeh6 { font-size: 22px; }
.other-page section h1 { margin-bottom: 56px; }
.other-page section h2 { margin-bottom: 40px; }
.other-page section h3 { margin-bottom: 32px; }
.other-page section h4 { margin-bottom: 26px; }
.other-page section h5 { margin-bottom: 20px; }
.other-page section h6 { margin-bottom: 14px; }

.sec-tit-wrap { width: var(--sec-tit-width); }
.sec-tit {
    position: relative;
    padding-top: 30px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
.sec-tit h2 {
    font-size: 60px;
    line-height: 1.05;
    letter-spacing: 0.036em;
    margin: 0;
}
.sec-tit p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.05;
    margin: 0.36em 0 0;
}
.sec-tit::before {
    content: '';
    display: block;
    width: 80px;
    height: 16px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: transparent;
    background-image: url(../img/tit-icon-line.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.tit-bg {
    color: var(--color-wh);
    line-height: 1.4;
    letter-spacing: 0.06em;
    padding: 8px;
    background-color: var(--color-gr);
}

/*--- 背景動画 ---*/
#video-area{
    position: fixed;
    z-index: -1;
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
}
#video {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

/*--- aタグ ---*/
a, a:hover, a:focus { text-decoration: none; outline: none; }
a {
    color: #127aca;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: translateZ(0);
    -webkit-perspective: 1000;
    -webkit-backface-visibility: hidden;
}
a:hover, a:focus { color: #00028A; }
a::before, a::after {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

a.anchorpoint {
    display: block;
    padding-top: 100px;
    margin-top: -100px;
}

/*--- imgタグ ---*/
img {
    /*width: auto;*/
    max-width: 100%;
    height: auto;
}
.img-all,
.img-lb,
.img-lt { overflow: hidden; }
.img-all { clip-path: polygon(18% 0%, 82% 0%, 100% 18%, 100% 82%, 82% 100%, 18% 100%, 0% 82%, 0% 18%); }
.img-lb { clip-path: polygon(0 0, 100% 0, 100% 100%, 18% 100%, 0% 82%); }
.img-lt { clip-path: polygon(0 18%, 18% 0, 100% 0, 100% 100%, 0 100%); }

.img-shadow-gr {
    position: relative;
    z-index: 10;
    margin-bottom: 62px;
}
.img-shadow-gr::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: -1;
    background-color: var(--color-gr);
    background-size: contain;
    background-repeat: no-repeat;
}
.img-shadow-gr.reverse::before { left: -1rem; }

/*--- マウスカーソルで選択したテキストの色と背景色 ---*/
::selection {
    /*color: var(--color-wh);*/
    background-color: rgba(18, 122, 202, 0.15);
}

/*--- 共通 ---*/
p {
    margin: 0 auto 1rem;
	padding: 0;
    line-height: 1.9;
    letter-spacing: 0.02em;
}
.txt-ja { font-family: sans-serif; }
.txt-cp { font-size: 16px; }
.txt-lh1 { line-height: 1.4; }
.txt-lh2 { line-height: 2.2; }
.color-bl { color: var(--color-bl); }
.color-nav { color: var(--color-nav); }
.color-ye { color: var(--color-ye); }
.color-red { color: var(--color-red); }
.color-bk { color: var(--color-bk); }
.color-wh { color: var(--color-wh); }
.bg-nav { background-color: var(--color-nav); }
.bg-gr { background-color: var(--color-gr); }
.bg-bl { background-color: var(--color-bl); }
.bg-ye { background-color: var(--color-ye); }
.bg-red { background-color: var(--color-red); }
.bg-wh { background-color: var(--color-wh); }
.bg-gray { background-color: #EAEAEA; }
.bg-none { background-color: transparent; }
.bg-season { background-color: var(--color-season) }

.bg-t-yama::before,
.bg-b-yama::after {
    content: '';
    display: block;
    width: 100vw;
    height: 14.1vw;
    position: absolute;
    left: calc(50% - 50vw);
    z-index: 0;
    background-color: transparent;
    background-size: contain;
    background-repeat: no-repeat;
}
.bg-t-yama::before {
    top: -2px;
    background-position: center top;
}
.bg-b-yama::after {
    bottom: -2px;
    background-position: center bottom;
}
.t-yama01::before { background-image: url(../img/bg-yama01.svg); }
.b-yama01::after { background-image: url(../img/bg-yama01.svg); }
.t-yama02::before { background-image: url(../img/bg-yama02.svg); }
.b-yama02::after { background-image: url(../img/bg-yama02.svg); }
.t-yama03::before { background-image: url(../img/bg-yama03.svg); }
.b-yama03::after { background-image: url(../img/bg-yama03.svg); }
.t-yama-reverse::before { transform: scale(-1, 1); }
.b-yama-reverse::after { transform: scale(-1, 1); }
.t-yama-reverse-column::before { transform: scale(1, -1); }
.b-yama-reverse-column::after { transform: scale(1, -1); }

.txt-marker {
    line-height: 1.6;
    font-weight: bold;
    display: block;
    width: fit-content;
    padding: 0 0.1em;
    background: linear-gradient(0deg, transparent 0%, var(--color-ye) 0%, var(--color-ye) 4px, transparent 4px);
}

/* --- flex-box --- */
.flex-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.flex-reverse { flex-direction: row-reverse; }
.flex-reverse-column { flex-direction: column-reverse; }
.flex1 { flex: 1; }
.flex3 { flex: 3; }
.flex5 { flex: 5; }
/*--- grid-box ---*/
.grid-box {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
}
.grid2 { grid-template-columns: repeat(2, 1fr) }
.grid3 { grid-template-columns: repeat(3, 1fr) }
.grid4 { grid-template-columns: repeat(4, 1fr) }
.grid5 { grid-template-columns: repeat(5, 1fr) }
.grid-gap0 { grid-gap: 0!important; }

/*--- .sns-list ---*/
.sns-list {
    display: flex;
    gap: 30px;
}
.sns-list a {
    display: block;
    width: 32px;
}

/*--- .row ---*/
.row {
    margin-right: -20px;
    margin-left: -20px;
}
.row > * {
    padding-right: 20px;
    padding-left: 20px;
}

/*--- ul ---*/
ul.list-2col {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    width: fit-content;
    grid-gap: 5px 3rem;
    grid-template-columns: repeat(2, auto);
}

/*--- table ---*/
table {
    width: 100%;
    height: auto!important;
    margin: 0 auto;
    border-collapse: collapse;
    border: none;
}
table tr:not(:last-of-type) { border-bottom: 1px solid #D9D9D9; }
table tr th, table tr td {
    font-size: 18px;
    line-height: 2;
    letter-spacing: 0.02em;
    height: auto !important;
    padding: 24px;
    vertical-align: middle;
}

/*--- .row-map ---*/
.row-map {
    line-height: 0;
    width: 100%;
    overflow: hidden;
}
.row-map iframe {
    width: 100%;
    height: 340px;
}

/* リキャプチャ非表示用（別途フォームに注記必要） */
.recaptcha_policy {
  padding: 0;
  margin: 0;
  text-align: center;
  font-size: 11px !important;
  color: #444 !important;
}
.recaptcha_policy a {
  font-size: 11px !important;
  color: #111 !important;
}
.grecaptcha-badge { visibility: hidden; }

/* --------------------------------------------
    btn00
-------------------------------------------- */
.btn00 a,
.rela-btn > span {
    color: var(--color-bk);
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    overflow: hidden;
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    padding: 12px 56px 12px 24px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    outline: none;
    background-color: transparent;
    border: 1px solid var(--color-bk);
}
.btn00 a::after,
.rela-btn > span::after {
    content: '';
    display: block;
    width: 28px;
    height: 10px;
    position: absolute;
    top: calc(50% - 5px);
    right: 18px;
    z-index: 10;
    background-color: transparent;
    background-image: url(../img/icon-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.btn00 a:hover,
.rela-box:hover .rela-btn > span { color: var(--color-wh); background-color: var(--color-gr); }
.btn00 a:hover::after,
.rela-box:hover .rela-btn > span::after { -webkit-filter: brightness(0) invert(1); filter: brightness(0) invert(1); }
.btn-full a { width: 100%; }

/* --------------------------------------------
    Content
-------------------------------------------- */
section {
    position: relative;
    /*overflow: hidden;*/
}
.sec-inner {
    box-sizing: content-box;
    container-type: inline-size;
    max-width: calc(var(--inner-size)* 1px);
    padding-right: calc(50 / var(--inner-size) * 100cqi);
    padding-left: calc(50 / var(--inner-size) * 100cqi);
    margin-inline: auto;
}
.sec-inner-wide {
    box-sizing: content-box;
    container-type: inline-size;
    max-width: calc(var(--inner-size-wide)* 1px);
    padding-right: calc(50 / var(--inner-size-wide) * 100cqi);
    padding-left: calc(50 / var(--inner-size-wide) * 100cqi);
    margin-inline: auto;
}
.sec-inner-start { padding-left: calc(50 / var(--inner-size) * 100cqi); }
.sec-inner-end { padding-right: calc(50 / var(--inner-size) * 100cqi); }
.content-wrap {
    position: relative;
    z-index: 10;
    padding-top: var(--content-wrap-top);
    padding-bottom: var(--content-wrap-bottom);
}

/*---------- sec00 ----------*/
#hd01 {
    position: absolute;
    top: 50px;
    left: 50%;
    z-index: 100;
    transform: translateX(-50%);
    transition: all 0.4s ease;
}
.hd-logo {
    width: 216px;
}
.hd-logo a { line-height: 1; }
.other-content .hd-logo img { filter: brightness(0); }

.sec00 {
    height: 100vh;
    background: linear-gradient(0deg,rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.25) 100%);
}

/*---------- sec01 ----------*/
.sec01 {
    background: linear-gradient(0deg,rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.35) 100%);
}
.sec01 .sec01-box {
    width: 100%;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;

    flex-direction: column;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 150px;
}

.sec01-box .item-tit {
    position: relative;
    width: 15rem;
    display: flex;
    align-items: center;
    transform: translateY(-0.2em);
}
.sec01-box .item-tit::before {
    content: '';
    display: block;
    width: 700px;
    height: 770px;
    position: absolute;
    top: -17%;
    left: -28%;
    z-index: -1;
    background-color: transparent;
    background-image: url(../img/nishikawa.svg);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.4;
}
.sec01-tit {
    font-size: 50px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.08em;
}
.sec01-tit > span { display: block; white-space: nowrap; }
.sec01-tit > span.tit02 { margin-top: 1.1em; }

.sec01-box .item-txt { position: relative; z-index: 10; }
.sec01-txt p {
    line-height: 2.46;
    letter-spacing: 0.14em;
    white-space: nowrap;
}
.sec01-txt p:not(:last-of-type) {
    margin-bottom: 0;
    margin-left: 1.5em;
}

/* 全幅バナー */
.sec01-bnr {
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    -ms-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
.sec01-bnr:not(:last-child) { margin-bottom: 60px; }
.sec01-bnr .bnr-btn {
    position: relative;
    color: var(--color-wh);
    display: block;
    width: 100%;
    max-width: 950px;
    margin-inline: auto;
    padding: 22px 30px;
    background-color: var(--color-gr);
}
.sec01-bnr .bnr-btn .txt span {
    display: block;
    line-height: 1.4;
}
.sec01-bnr .bnr-btn .txt .main {
    font-size: 26px;
}
.sec01-bnr .bnr-btn .txt .sub {
    font-size: 14px;
    letter-spacing: 0.05em;
}

.sec01-bnr.btn-wh .bnr-btn {
    color: var(--color-bk);
    background-color: var(--color-wh);
}

.sec01-bnr .bnr-btn::before,
.sec01-bnr.btn-wh .bnr-btn::before {
    content: '';
    display: block;
    position: absolute;
    background-color: transparent;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
}
.sec01-bnr .bnr-btn::before {
    width: 50%;
    max-width: 446px;
    height: 30px;
    bottom: 12px;
    right: 60px;
    background-image: url(../img/top-btn-icon01.png);
}
.sec01-bnr.btn-wh .bnr-btn::before {
    width: 212px;
    height: 80px;
    bottom: 10px;
    right: 30px;
    background-image: url(../img/top-btn-icon02.png);
}

.sec01-bnr .bnr-btn::after,
.sec01-bnr.btn-wh .bnr-btn::after {
    content: '';
    display: block;
    width: 50px;
    height: 20px;
    position: absolute;
    top: calc(50% - 10px);
    right: 30px;
    z-index: 10;
    background-color: transparent;
    background-image: url(../img/icon-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.sec01-bnr:not(.btn-wh) .bnr-btn::after {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

/*---------- sec02 ----------*/
.sec02-box .sec02-tit { position: relative; z-index: 100; }
.sec02-box .sec02-item { width: calc(100% - var(--sec-tit-width)); }

/*---------- sec03 ----------*/
.sec03-wrap { padding-bottom: 4px!important; }
.sec03 .sec-tit { width: 100%; }
.sec03-box .sec03-item { flex: 1; }
.sec03-bnr {
    display: block;
    margin-bottom: 60px;
}

/*---------- sec04 ----------*/
.sec04-wrap {
    position: relative;
    z-index: 10;
    padding-top: calc(280px + 14.1vw);
}
.sec04-box {
    grid-gap: 46px 90px;
    margin-bottom: 80px;
}
.sec04-sub-box { grid-gap: 44px; }

.trave-box .trave-item a { display: block; position: relative; color: var(--color-bk); }

.trave-box.sec04-box .trave-item a::after {
    content: '';
    display: block;
    width: 22px;
    height: 100%;
    position: absolute;
    top: 0;
    right: calc(100% + 24px);
    background-color: transparent;
    border-top: 1px solid var(--color-bk);
    border-left: 1px solid var(--color-bk);
    opacity: 0.3;
}
.trave-box .trave-item:nth-child(3n - 1) a::after {
    border-top: none;
    border-bottom: 1px solid var(--color-bk);
}
.trave-box .trave-item:nth-child(1) a::after,
.trave-box .trave-item:nth-child(10) a::after { display: none; }


.trave-box .trave-item:nth-child(1) .sec-tit {
    transform: translateY(-96px);
    margin-left: 72px;
}
.trave-box .trave-item:nth-child(5) { margin-top: 40px; }
.trave-box .trave-item:nth-child(7) { transform: translateY(-100px); }
.trave-box .trave-item:nth-child(8) { margin-top: 40px; }
.trave-box .trave-item:nth-child(11) { transform: translateY(-10px); }
.trave-box .trave-item:nth-child(12) { margin-top: 40px; }

.trave-cat {
    line-height: 0;
    margin-bottom: 20px;
}
.trave-cat .cat-item {
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.05em;
    white-space: nowrap;
    text-align: center;
    padding: 3px 7px;
    border-radius: 0;
    display: inline-block;
    vertical-align: baseline;
    background-color: transparent;
    border: 1px solid var(--color-bk);
    font-feature-settings: "palt";
}

.trave-box .trave-item .trave-img { position: relative; }
.trave-box .trave-item .trave-img::before {
    content: attr(data-cat);
    display: block;
    color: var(--color-wh);
    font-size: 24px;
    line-height: 1.4;
    white-space: pre;
    font-feature-settings: "palt";
    position: absolute;
    top: 20%;
    left: 22px;
    z-index: 3;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    opacity: 0;
}
.trave-box .trave-item a:hover .trave-img::before { opacity: 1; }
.sec04-sub-box .trave-item .trave-img::before { top: auto; left: auto; bottom: 18px; right: 32px; }


.trave-box .trave-item .trave-img .img-wrap { position: relative; }
.trave-box .trave-item .trave-img .img-wrap::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: var(--color-bk);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    opacity: 0;
}
.trave-box .trave-item a:hover .trave-img .img-wrap::before { opacity: 0.4; }

/*---------- sec05 ----------*/
.sec05-wrap { padding-bottom: 4px!important; }
.sec05 .sec-tit {
    width: 100%;
    transform: translateY(-30px);
}
.sec05-box .sec05-item {
    width: calc(100% - var(--sec-tit-width));
}
.people-slider {
    position: relative;
    width: 100%;
    max-width: 720px;
}
.people-item a {
    color: var(--color-bk);
    font-size: 18px;
    line-height: 1.5;
}
.people-item .people-img { margin-bottom: 10px; }
.people-item .people-img img {
    aspect-ratio: 22 / 30;
    object-fit: cover;
}
.people-item .people-post {
    font-size: 14px;
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #D8D8D8;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
    height: 26px;
    width: 46px;
    top: calc(50% - 30px)!important;
}
.swiper-button-prev { left: auto!important; right: calc(100% + 20px)!important; }
.swiper-button-next { left: calc(100% + 20px)!important; right: auto!important; }
.swiper-button-prev::after,
.swiper-button-next::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    margin: auto;
    background-image: url(../img/icon-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.swiper-button-prev::after { transform: scale(-1, 1); }
.swiper-button-prev svg,
.swiper-button-next svg { display: none; }

/* --------------------------------------------
    other page
-------------------------------------------- */
#titbar {
    padding-top: 180px;
    padding-bottom: 60px;
}
#titbar h1 {
    position: relative;
    display: block;
    padding-left: 30px;
}
#titbar h1::before {
    content: "";
    position: absolute;
    top: 0.56em;
    left: -14px;
    z-index: 10;
    display: block;
    width: 50px;
    height: 16px;
    background-color: transparent;
    background-image: url(../img/tit-icon-line.svg);
    background-size: cover;
    background-repeat: no-repeat;
    transform: rotate(90deg);
}
#titbar.bg-gr h1::before { filter: brightness(0) invert(1); }

.other-content .content-wrap h1,
.other-content .content-wrap h2,
.other-content .content-wrap h3,
.other-content .content-wrap h4,
.other-content .content-wrap h5,
.other-content .content-wrap h6 { font-feature-settings: "palt"; }
.other-content .content-wrap h2 { margin-bottom: 36px; }
.other-content .content-wrap h3 { margin-bottom: 28px; }
.other-content .content-wrap h4 { margin-bottom: 22px; }
.other-content .content-wrap h5 { margin-bottom: 16px; }
.other-content .content-wrap h6 { margin-bottom: 12px; }

/*--- ul / ol ---*/
.other-content .content-wrap ul {
    list-style: none;
    margin-bottom: 1em;
    padding: 0;
    padding-left: 1em;
}
.other-content .content-wrap ul li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 0;
}
.other-content .content-wrap ul > li:before {
    position: absolute;
    content: "-";
    left: -1em;
    top: 0;
}

.other-content .content-wrap ol {
    list-style: none;
    counter-reset: li;
    margin-bottom: 1em;
    padding-left: 1em;
}
.other-content .content-wrap ol li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 10px;
}
.other-content .content-wrap ol > li:before {
    position: absolute;
    counter-increment: li;
    content: counter(li) ".";
    left: -1em;
    top: 0;
}
.other-content section .content-wrap { padding-bottom: 36px; }
.other-content .sec-fst .content-wrap { padding-top: 36px; }


/* --------------------------------------------
    footer
-------------------------------------------- */
#ft01 {
    color: var(--color-wh);
    font-size: 17px;
    position: relative;
    z-index: 5;
    background-color: rgba(0, 0, 0, 0.5);
}
#ft01::before {
    content: '';
    display: block;
    width: 100vw;
    height: 20vw;
    position: relative;
    top: -2px;
    left: calc(50% - 50vw);
    background-image: url(../img/ft-bg.svg);
    background-color: transparent;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
}
#ft01 a { color: var(--color-wh); }
#ft01 p {
    line-height: 1.8;
    letter-spacing: 0.05em;
}
.ft-wrap {
    align-items: flex-start;
    position: relative;
    margin: 0 auto;
    padding-top: 2rem;
    padding-bottom: 4rem;
}
.ft-hd .ft-logo {
    width: 100%;
    max-width: 278px;
    margin-bottom: 80px;
}
.ft-hd .ft-logo img { width: 100%; }
.ft-hd .ft-txt { margin-bottom: 60px; }
.f-line {
    display: block;
    width: 1px;
    height: 460px;
    background-color: rgba(255, 255, 255, 0.3);
}

.f-flex {
    position: relative;
    justify-content: flex-end;
    gap: 60px;
    margin-bottom: 20px;
}
.f-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
.f-menu li { min-height: 1em; }
.f-menu li:not(.tit) a { padding-left: 8px; }
.f-menu li:not(:last-child) { margin-bottom: 12px; }
.f-menu li a {
    position: relative;
    letter-spacing: 0.05em;
    font-feature-settings: "palt";
}
.f-menu li.tit { margin-bottom: 26px; }
.f-menu li.tit a { padding-left: 18px; }
.f-menu li.tit a::before {
    content: '';
    display: block;
    width: 10px;
    height: 18px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
    background-image: url(../img/tit-icon-tate.svg);
    background-size: contain;
    background-repeat: no-repeat;
    filter: brightness(0) invert(1);
}

.f-sub-menu {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    gap: 40px;
    margin: 0;
    padding: 0;
}
.f-sub-menu li {
    position: relative;
    padding-left: 18px;
}
.f-sub-menu li::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent var(--color-wh);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}

.ft-ft {
    position: relative;
    padding: 10px 10px 12px;
}
.ft-cp {
    color: var(--color-nav);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-align: center;
}

.ft-ft .f-cp-menu {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    gap: 24px;
    position: absolute;
    right: 30px;
    top: calc(50% - 13px);
    margin: 0;
    padding: 0;
}
.ft-ft .f-cp-menu li a {
    color: var(--color-bk)!important;
    font-size: 13px;
}


/* --------------------------------------------
    Responsive
-------------------------------------------- */
@media screen and (max-width: 1100px) {
    :root { --sec-tit-width: 160px; }
    .people-slider { max-width: 650px; margin-left: 60px; }
    .ft-ft { padding: 12px 10px 12px; }
    .ft-ft .f-cp-menu {
        font-size: 11px;
        position: relative;
        right: auto;
        top: auto;
        justify-content: center;
        gap: 18px;
        margin-bottom: 7px;
    }

}
@media screen and (max-width: 991px) {
    :root {
        --txt-size: 18px;
        --content-wrap-top: 120px;
        --content-wrap-bottom: 120px;
        --sec-tit-width: 120px;
    }
    .sec-tit::before { width: 68px; height: 14px; }
    .sec-tit h2 { font-size: 50px; }
    .txt-cp { font-size: 15px; }
    .btn00 a, .rela-btn > span { font-size: 16px; }

    .sec01-wrap { padding-top: calc(var(--content-wrap-top) + 50px); }
    .sec01 .sec01-box { justify-content: center; gap: 0; }
    .sec01-tit { font-size: 42px; }
    .sec01-box .item-tit { line-height: 1.3; width: 14rem; }
    .sec01-box .item-tit::before {
        top: -20%;
        left: auto;
        right: -35%;
        width: 520px;
        height: 600px;
    }
    .sec04-wrap { padding-top: calc(230px + 14.1vw); }
    .sec04-box { grid-gap: 46px 46px; }
    .trave-box .trave-item:nth-child(1) .sec-tit {
        margin-left: 26px;
        margin-top: -80px;
        transform: translateY(0);
    }
    .trave-box.sec04-box .trave-item a::after { right: calc(100% + 2px); }
    .people-slider { margin-left: 0; }
    .swiper-button-box { display: flex; justify-content: flex-end; gap: 30px; margin-top: 30px; }
    .swiper-button-prev,
    .swiper-button-next {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        display: block;
        margin-top: 0;
    }
    .ft-wrap { display: block; }
    .ft-hd .ft-logo { max-width: 226px; margin-bottom: 46px; margin-inline: auto; }
    .ft-hd .ft-txt { margin-bottom: 30px; }
    .f-line { width: 100%; height: 1px; display: none; }
    .ft-main { display: none; }
    .ft-ft .f-cp-menu { display: none; }
}
@media screen and (max-width: 767px) {
    :root {
        --txt-size: 16px;
        --content-wrap-top: 100px;
        --content-wrap-bottom: 100px;
        --sec-tit-width: fit-content;
    }
    h1, .sizeh1 { font-size: 26px; }
    h2, .sizeh2 { font-size: 24px; }
    h3, .sizeh3 { font-size: 22px; }
    h4, .sizeh4 { font-size: 20px; }
    h5, .sizeh5 { font-size: 18px; }
    h6, .sizeh6 { font-size: 17px; }
    .sec-tit {
        padding-left: 14px;
        margin-bottom: 50px;
        -ms-writing-mode: rl-tb;
        writing-mode: horizontal-tb;
    }
    .sec-tit h2 {
        font-size: 28px;
        line-height: 1.5;
        letter-spacing: 0.06em;
    }
    .sec-tit p { font-size: 13px; }
    .sec-tit::before {
        width: 46px;
        height: 9px;
        top: auto;
        bottom: 4px;
        left: -42px;
        right: auto;
        background-size: cover;
        transform: rotate(90deg);
        transform-origin: right;
    }
    .txt-cp { font-size: 14px; }
    .txt-marker { padding: 0; }
    .grid2 { grid-template-columns: repeat(1, 1fr); }
    .grid4 { grid-template-columns: repeat(2, 1fr); }
    table tr th, table tr td { font-size: 16px; padding: 16px 20px; }
    colgroup col { width: 100%!important; }
    section { overflow-x: hidden; }
    section .flex-box { display: block; }
    .sec-inner {
        padding-right: 6%;
        padding-left: 6%;
    }
    .hd-logo { width: 190px; }
    .sec01 .sec01-box {
        -ms-writing-mode: rl-tb;
        writing-mode: horizontal-tb;
        margin-bottom: 50px;
    }
    .sec01-box .item-tit { width: 100%; }
    .sec01-tit {
        font-size: 30px;
        font-feature-settings: "palt";
        margin-bottom: 50px;
        margin-inline: auto;
    }
    .sec01-tit > span,
    .sec01-txt p { white-space: initial }
    .sec01-tit > span.tit02 { margin-top: 10px; margin-left: 0.8em; }
    .sec01-box .item-tit::before {
        top: -85%;
        right: -5%;
        width: 420px;
        height: 470px;
    }
    .sec01-txt p {
        line-height: 2.2;
        letter-spacing: 0.16em;
        font-feature-settings: "palt";
    }
    .sec01-txt p:not(:last-of-type) {
        margin-left: 0;
        margin-bottom: 1.5em;
    }

    .sec01-bnr:not(:last-child) { margin-bottom: 30px; }
    .sec01-bnr .bnr-btn { padding: 22px 18px; }
    .sec01-bnr .bnr-btn .txt .main { font-size: 20px; }
    .sec01-bnr .bnr-btn .txt .sub { font-size: 11.5px; }
    .sec01-bnr .bnr-btn::after,
    .sec01-bnr.btn-wh .bnr-btn::after { width: 36px; right: 18px; }
    .sec01-bnr .bnr-btn::before { width: 240px; right: 16px; }
    .sec01-bnr.btn-wh .bnr-btn::before { width: 120px; right: 16px; }
    .sec03-bnr { margin-bottom: 20px; }
    .sec03-bnr:last-of-type { margin-bottom: 40px; }
    .sec04-wrap { padding-top: calc(var(--content-wrap-top) + 14.1vw); }
    .sec04-box { grid-template-columns: 1fr; grid-gap: 30px; margin-bottom: 50px; }
    .trave-box .trave-item:nth-child(1) .sec-tit {
        margin-left: auto;
        margin-right: auto;
        margin-top: 0;
    }
    .sec04-box .trave-item {
        margin-top: 0!important;
        transform: translateY(0)!important;
    }
    .sec04-box .trave-item:nth-child(10) { display: none; }
    .sec04-box .trave-item a {
        display: flex;
        gap: 14px;
        padding-left: 12px;
    }
    .sec04-box .item-reverse a { flex-direction: row-reverse; }
    .sec04-box .trave-item .trave-tit { width: 210px; }
    .trave-box.sec04-box .trave-item a::after {
        width: 100%;
        height: 12px;
        right: 3px;
        top: calc(100% + 4px);
        border: none;
        border-bottom: 1px solid var(--color-bk);
        border-left: 1px solid var(--color-bk);
    }
    .sec04-box .trave-img { width: 100px; margin-bottom: 0!important; }
    .sec04-box .trave-img img {
        object-fit: cover;
        aspect-ratio: 1 / 1;
    }
    .sec04-box .trave-g { flex: 1; }
    .trave-cat { margin-bottom: 14px; }
    .trave-cat .cat-item { font-size: 13px; }
    .sec04-sub-box { grid-template-columns: repeat(2, 1fr); grid-gap: 12px; }
    .trave-box .trave-item .trave-img::before,
    .trave-box .trave-item .trave-img .img-wrap::before { display: none!important; }

    .sec05-wrap { padding-bottom: 50px !important; }
    .sec05-wrap .btn00 { text-align: center; }
    .swiper-button-box { justify-content: center; margin-bottom: 30px; }
    #titbar {
        padding-top: 150px;
        padding-bottom: 20px;
    }
    #titbar h1 { padding-left: 20px; }
    #titbar h1::before {
        top: 0.48em;
        left: -12px;
        width: 30px;
        height: 12px;
    }
    .other-content .content-wrap h2 { margin-bottom: 24px; }
    .ft-hd .ft-logo { max-width: 190px; }
}
@media screen and (max-width: 575px) {
    :root {
        --txt-size: 15px;
    }
    .sec-tit { margin-bottom: 36px; }
    ul.list-2col { grid-template-columns: repeat(1, auto); }
    .row-map iframe { height: 260px; }
    .btn00 a, .rela-btn > span { font-size: 14px; }
    table:not(.table-data) tr th,
    table:not(.table-data) tr td { display: block; padding: 20px 12px; }
    table:not(.table-data) tr th { text-align: left; padding-bottom: 0; }
    table:not(.table-data) tr td { font-size: 15px; padding-top: 2px; }
    table:not(.table-data) tr > *:not(:last-child) { border-right: none; }
    table.table-data tr th, table.table-data tr td { letter-spacing: 0; padding: 10px 10px; }
    table.table-data tr th { font-size: 12px; line-height: 1.4; }
    table.table-data tr th:first-child { width: 4.3em!important; }
    table.table-data tr th:last-child { width: 4em!important; }
    table.table-data tr td { font-size: 15px; line-height: 1.4; }
    section { overflow: hidden; }
    .sec01-tit { font-size: 29px; }
    .sec01-txt p { letter-spacing: 0.13em; }
    .sec01-txt p:not(:last-of-type) { margin-bottom: 1.3em; }
    .sec01-box .item-tit::before {
        right: -16%;
        width: 420px;
        height: 460px;
    }
    .sec01-bnr .bnr-btn { padding: 20px 16px; }
    .sec01-bnr .bnr-btn .txt .main { font-size: 18px; margin-bottom: 2px; }
    .sec01-bnr .bnr-btn .txt .sub { font-size: 10.2px; letter-spacing: 0.1em; }
    .sec01-bnr .bnr-btn::after, .sec01-bnr.btn-wh .bnr-btn::after { width: 28px; }
    .trave-box .trave-item:nth-child(1) .sec-tit { margin-bottom: 24px; }
    .sec04-box .trave-item a { padding-left: 8px; }
    .sec04-box .trave-item .trave-tit { width: 100%; }
    .sec04-box .trave-img { width: 90px; }
    .trave-cat { margin-bottom: 12px; }
    .sec04-sub-box { grid-gap: 6px; }
    .other-content .content-wrap .grid3 { grid-template-columns: repeat(1, 1fr); grid-gap: 10px; }
    #ft01 { font-size: 14px; }
    .ft-cp { font-size: 10px; }
}

/* --------------------------------------------
    お知らせリスト - info-box
-------------------------------------------- */
.info-box {
    position: relative;
    z-index: 50;
    margin-bottom: 2.5rem;
}
.info-item {
    color: var(--color-bk);
    display: flex;
    align-items: baseline;
    gap: 60px;
    margin-bottom: 10px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--color-bk);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
/*
.info-box > a:first-child .info-item { padding-top: 0; }
.info-box > a:last-child .info-item { padding-bottom: 0; border-bottom: none; }
*/
.info-item dt {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    display: block;
    width: 100px;
}
.info-item dd {
    flex: 1;
    font-size: 18px;
    font-weight: 500;
    display: block;
    margin: 0;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.info-box > a:hover .info-item, .info-box > a:focus .info-item {
    color: #000;
    text-decoration: none;
    outline: none;
}
@media screen and (max-width: 991px) {
    .info-item { gap: 30px; }
    .info-item dt { font-size: 15px; }
    .info-item dd { font-size: 16px; }
}
@media screen and (max-width: 767px) {
    .info-item { flex-direction: column; gap: 6px; }
    .info-item dt { color: #ccc; font-size: 14px; }
    .info-item dd {
        white-space: initial;
        text-overflow: initial;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
}
@media screen and (max-width: 575px) {
    .info-item dt { font-size: 12px; }
    .info-item dd { font-size: 15px; }
}

/* --------------------------------------------
    .event-box
-------------------------------------------- */
#tpage .event-box .event-item:nth-child(n+4) { display: none!important; }
.event-box {
    grid-template-rows: auto;
    gap: 36px 10px;
    margin-bottom: 60px;
}
.event-box a {
    color: var(--color-bk);
    font-size: 16px;
    display: block;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 0;
}
.event-box .event-item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 0;
}
.event-box .event-img img {
    object-fit: cover;
    /*aspect-ratio: 233 / 175;*/
    aspect-ratio: 566 / 800;
}
.event-box .event-txt {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    padding: 10px;
    background-color: var(--color-gray);
}
.event-box .event-txt .event-data {
    font-size: 13.5px;
    margin-bottom: 3px;
}
.event-box .event-txt .event-tit { line-height: 1.6; }
.event-box .event-arrow {
    display: block;
    width: 34px;
    height: 12px;
    margin-left: auto;
    background-color: transparent;
    background-image: url(../img/icon-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
@media screen and (max-width: 575px) {
    .event-box { grid-template-columns: 1fr; gap: 10px; margin-bottom: 36px; }
    /*.event-box a { grid-template-columns: 100px 1fr; }*/
    .event-box .event-img .img-wrap { height: 100%; }
    /*.event-box .event-img img { aspect-ratio: auto; height: 100%; }*/
    .event-box .event-txt { padding: 14px 14px; }
    .event-box .event-txt .event-data { font-size: 12px; margin-bottom: 5px; }
    .event-box .event-txt .event-tit {
        font-size: 15px;
        white-space: initial;
        text-overflow: initial;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
}

/* --------------------------------------------
    site-color - 色変更ボタン
-------------------------------------------- */
.site-color {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 500;
    width: 50px;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    cursor: pointer;
}
.site-color .site-color-wrap {
    display: flex;
    flex-direction: column;
}
.site-color .site-color-wrap .color-item {
    color: var(--color-wh);
    font-size: 20px;
    line-height: 50px;
    letter-spacing: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.site-color .site-color-wrap .color-item.color01 { background-color: #D189BB; }
.site-color .site-color-wrap .color-item.color02 { background-color: #2A9E4F; }
.site-color .site-color-wrap .color-item.color03 { background-color: #BE8A4D; }
.site-color .site-color-wrap .color-item.color04 { background-color: #3B75A7; }

.site-color .site-color-btn {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    background-color: var(--color-gr);
}

.site-color.open .site-color-wrap .color-item { transform: translateX(0); }
.site-color.open .site-color-wrap .color-item.color01 { transition-delay: 90ms; }
.site-color.open .site-color-wrap .color-item.color02 { transition-delay: 60ms; }
.site-color.open .site-color-wrap .color-item.color03 { transition-delay: 30ms; }
.site-color.open .site-color-wrap .color-item.color04 { transition-delay: 0; }
.site-color.open .site-color-btn::before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 5px;
    left: 5px;
    background-color: transparent;
    background-image: url(../img/icon-close.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.site-color.open img { display: none; }
@media screen and (max-width: 575px) {
    .site-color {
        bottom: 16px;
        left: 16px;
        width: 42px;
    }
    .site-color .site-color-btn { height: 42px; }
    .site-color .site-color-wrap .color-item {
        font-size: 16px;
        line-height: 42px;
    }
    .site-color.open .site-color-btn::before {
        width: 32px;
        height: 32px;
    }
}

/* --------------------------------------------
    season-box - 季節画像切り替え
-------------------------------------------- */
.sec02-box .sec02-item { position: relative; }
.season-box {
    display: block;
    position: absolute;
    z-index: 10;
}
.season-box.box01 {
    width: 230px;
    height: 160px;
    top: -120px;
    right: -135px;
}
.season-box.box02 {
    width: 230px;
    height: 190px;
    bottom: 20px;
    left: -170px;
}
.season-box.box03 {
    width: 500px;
    height: 330px;
    top: 120px;
    right: 20px;
}
.trave-box .trave-item { position: relative; }
.season-box.box04 {
    width: 350px;
    height: 230px;
    top: 20px;
    right: 15px;
}
@media screen and (max-width: 1100px) {
    .season-box.box01 { width: 220px; right: -50px; top: -140px; }
    .season-box.box02 { width: 200px; bottom: -10px; left: -140px; }
    .season-box.box03 { width: 430px; right: 30px; }
    .season-box.box04 { width: 290px; right: 0; }
}
@media screen and (max-width: 991px) {
    .season-box.box01 { width: 200px; top: -100px; right: -40px; }
    .season-box.box02 { bottom: -30px; }
    .season-box.box03 { width: 360px; top: 60px; right: 20px; }
    .season-box.box04 { width: 230px; }
}
@media screen and (max-width: 767px) {
    .season-box.box01 { width: 160px; height: 110px; }
    .season-box.box02 { display: none; }
    .season-box.box04 { display: none; }
    .season-box.box03 { width: 300px; }
}
@media screen and (max-width: 575px) {
    .season-box.box03 {
        width: 200px;
        height: 140px;
        top: 30px;
        right: 0px;
    }
}

/* --------------------------------------------
    Breadcrumbs - パンクズリスト
-------------------------------------------- */
.breadcrumb {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 36px;
    margin-bottom: 0;
}
.breadcrumb li,
.breadcrumb li a { font-size: 16px; }
.breadcrumb li {
    color: #ccc;
    list-style: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 !important;
    padding: 0 !important;
}
.breadcrumb li:not(:last-of-type)::after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background-color: transparent;
    background-image: url(../img/icon-arrow-short.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.breadcrumb li a {
    color: var(--color-bk);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}

.bg-gr .breadcrumb li a { color: var(--color-wh); }
.bg-gr .breadcrumb li:not(:last-of-type)::after { filter: brightness(0) invert(1); }
@media screen and (max-width: 767px) {
    .breadcrumb li, .breadcrumb li a { font-size: 11px; }
    .breadcrumb li:not(:last-of-type):before { left: calc(100% + 0.5em); }
    .breadcrumb li:not(:last-of-type)::after { width: 8px; height: 8px; }
}

/* --------------------------------------------
    gassan - 月山とともにある西川町
-------------------------------------------- */
.gassan-content .hd-logo img { filter: brightness(0) invert(1); }
.gassan-content .sec-inner { max-width: 970px; }
.gassan-content .sec-inner .flex-box { gap: 67px; }

/* --------------------------------------------
    seasons - 四季の楽しみ
-------------------------------------------- */
.seasons-content.s01 #ft01::before { background-image: url(../img/ft-bg-s01.svg); }
.seasons-content.s02 #ft01::before { background-image: url(../img/ft-bg-s02.svg); }
.seasons-content.s03 #ft01::before { background-image: url(../img/ft-bg-s03.svg); }
.seasons-content.s04 #ft01::before { background-image: url(../img/ft-bg-s04.svg); }

.seasons-content .site-color {
    position: relative;
    inset: 0;
    width: auto;
    margin-bottom: 70px;
    border: none;
    cursor: default;
}
.seasons-content .site-color .site-color-btn { display: none; }
.seasons-content .site-color .site-color-wrap { flex-direction: row; justify-content: center; gap: 14px; }
.seasons-content .site-color .site-color-wrap .color-item { width: 50px; transform: translateX(0); }
.seasons-content .site-color .site-color-wrap .color-item a { color: var(--color-wh); }

.seasons-content .site-color .site-color-wrap a:not(.active) .color-item {
    color: var(--color-bk);
    background-color: transparent;
    border: 1px solid var(--color-bk);
}
@media screen and (max-width: 575px) {
    .seasons-content .season-box.box03 { 
        width: 160px;
        height: 160px;
        top: 70px;
        right: -10px;
    }
}

/* --------------------------------------------
    purpose - 目的から探す（一覧）
-------------------------------------------- */
.purpose-list-box {
    grid-gap: 130px 58px;
}
.purpose-item .purpose-img {
    position: relative;
    margin-bottom: 16px;
}
.purpose-item .purpose-img img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 448 / 325;
}
.purpose-item .purpose-img .purpose-icon {
    color: var(--color-wh);
    font-size: 20px;
    line-height: 1.4;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: block;
    width: fit-content;
    max-width: 100%;
    padding: 12px 26px;
    background-color: var(--color-gr);
}
.area-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}
.area-box .area-item {
    color: var(--color-bk);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    padding: 5px 8px;
    border: 1px solid currentColor;
}
.area-box a.area-item:hover {
    color: var(--color-wh);
    border: 1px solid var(--color-bk);
    background-color: var(--color-bk);;
}
.tag-box .tag-item {
    color: var(--color-bk);
    font-size: 16px;
    display: inline-block;
    margin-bottom: 8px;
    padding: 3px;
}
.tag-box a.tag-item:hover {
    color: var(--color-gr);
}
.purpose-item .purpose-txt .tit {
    position: relative;
    font-size: 20px;
    line-height: 1.5;
    white-space: initial;
    text-overflow: initial;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-bottom: 12px;
    padding: 0 3px;
    display: block;
    border-bottom: 2px solid var(--color-gr);
}
.purpose-item .purpose-txt .subtxt {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}
.purpose-item .purpose-txt .name {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 3px 16px;
    margin-bottom: 12px;
}
.purpose-item .purpose-txt .name .name-post { font-size: 14px; }
.purpose-item .purpose-txt .name .name-main { font-size: 18px; }
.purpose-item .btn00 a { width: 100%; }
@media screen and (max-width: 767px) {
    .purpose-list-box { grid-gap: 72px 58px; }
    .area-box { margin-bottom: 12px; }
    .area-box .area-item { font-size: 12px; }
    .purpose-item .purpose-txt .subtxt { font-size: 14px; line-height: 1.6; }

    .purpose-list-box .purpose-item { position: relative; z-index: 10; padding: 0 0 36px; }
    .purpose-list-box .purpose-item::before {
        content: '';
        display: block;
        width: 112%;
        height: calc(100% - 30px);
        position: absolute;
        inset: 0;
        top: auto;
        left: -6% !important;
        z-index: -1;
        background-color: var(--color-gray);
    }

}

/* --------------------------------------------
    purpose - 目的から探す（詳細）
-------------------------------------------- */
.one-slider-wrap {
    position: relative;
    margin-bottom: 60px;
}
.one-slider {
    width: 100%;
    margin-inline: auto;
    margin-bottom: 12px;
    overflow: hidden;
}
.one-slider-tmb {
    overflow: hidden;
}
.one-slider-tmb .swiper-wrapper { justify-content: center; }
.one-slider-tmb .swiper-slide {
    opacity: .5;
    transition: opacity .5s;
    cursor: pointer;
}
.one-slider-tmb .swiper-slide.swiper-slide-thumb-active {
    opacity: 1;
}
.one-slider .swiper-slide img,
.one-slider-tmb .swiper-slide img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.purpose-hd {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px 27px;
    margin-bottom: 50px;
}
.purpose-tit {
    color: var(--color-wh);
    letter-spacing: 0;
    text-align: center;
    display: block;
    width: 100%;
    padding: 28px 24px 8px;
    background-color: var(--color-gr);
}
[data-ruby] {
    position: relative;
    display: block;
    line-height: 1.4;
}
[data-ruby]::before {
    content: attr(data-ruby);
    position: absolute;
    top: -16px;
    left: 50%;
    right: 0;
    transform: translateX(-50%);
    margin: auto;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-align: center;
    display: block;
    width: 100%;
    text-wrap-mode: nowrap;
}

table.purpose-table { margin-bottom: 36px; }
table.purpose-table thead tr th {
    color: var(--color-wh);
    text-align: center;
    background-color: var(--color-gr);
}
table.purpose-table tr th,
table.purpose-table tr td {
    font-size: 17px;
    line-height: 1.8;
    padding: 16px 20px;
}
table.purpose-table tr td p {
    line-height: 1.8;
    margin-bottom: 0;
}


/* --------------------------------------------
    people - 西川町の人々
-------------------------------------------- */
.people-hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
    margin-bottom: 62px;
}
.people-hd .img-item {
    width: 420px;
}
.people-hd .img-item img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.people-hd .txt-item {
    flex: 1;
}
.people-hd .txt-item .tit { margin-bottom: 18px; }
.people-hd .txt-item .name {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 3px 16px;
    margin-bottom: 18px;
}
.people-hd .txt-item .prof {
    font-size: 16px;
}
.people-hd .txt-item .prof p:last-of-type { margin-bottom: 0; }

.people-read {
     padding: 42px 46px;
     margin-bottom: 80px;
}
.people-read .tit { margin-bottom: 18px; }
.people-read .txt p:last-of-type { margin-bottom: 0; }

.people-box { margin-bottom: 80px; }
.people-box:not(.center-box) {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 56px;
}
.people-box .txt-item,
.people-box .img-item { flex: 1; }
.people-box .txt-item p { line-height: 1.8; }
.people-box.center-box .txt {
    width: 740px;
    max-width: 100%;
    margin-inline: auto;
}
@media screen and (max-width: 991px) {
    .people-hd { gap: 46px; }
    .people-hd .img-item { width: 100%; flex: 1; }
    .people-box:not(.center-box) { gap: 46px; }
}
@media screen and (max-width: 767px) {
    .people-hd,
    .people-box:not(.center-box) { flex-direction: column; }
    .people-hd .txt-item .prof p { font-size: 14px; }
    .people-hd .img-item img { aspect-ratio: 3 / 2; }
    .people-read { padding: 24px 20px; margin-bottom: 60px; }
    .people-read .txt p { font-size: 14px; }
}

/* --------------------------------------------
    modelcourse - おすすめの過ごし方（一覧）
-------------------------------------------- */
.course-box .course-item {
    display: flex;
    margin-bottom: 80px;
}
.course-item .course-img {
    display: flex;
    width: 420px;
}
.course-item .course-img img {
    height: 100%;
    object-fit: cover;
}
.course-item .course-txt {
    flex: 1;
    padding: 40px 46px;
}
.course-item .course-txt .tit { margin-bottom: 16px; }
.course-item .course-txt .txt { font-size: 16px; }
.course-item .course-txt .btn00 a { width: 100%; }
@media screen and (max-width: 991px) {
    .course-item .course-img { width: 300px; }
}
@media screen and (max-width: 767px) {
    .course-box .course-item { flex-direction: column; }
    .course-item .course-img { width: 100%; }
    .course-item .course-txt { padding: 24px 20px; }
    .course-item .course-txt .txt { font-size: 15px; }
}

/* --------------------------------------------
    modelcourse - おすすめの過ごし方（詳細）
-------------------------------------------- */
.course-map {
    line-height: 0;
    width: 100%;
    overflow: hidden;
    margin-top: 46px;
    margin-bottom: 46px;
}
.course-map iframe {
    width: 100%;
    height: 460px;
}

.course-list-item {
    position: relative;
    display: flex;
    gap: 50px;
    padding: 50px 50px;
    background-color: var(--color-gray);
}
.course-list-item .img-item,
.course-list-item .txt-item { flex: 1; }
.course-list-item .img-item img {
    width: calc(100% + 100px);
    max-width: none;
    margin-left: -100px;
}
.course-list-item .txt-item p { font-size: 17px; }

.ontheway {
    position: relative;
    width: 3px;
    height: 160px;
    margin: 0 auto;
    background-color: var(--color-bk);
}
.ontheway .ontheway-time {
    font-size: 16px;
        letter-spacing: 0.05em;
    display: block;
    width: fit-content;
    padding: 10px 24px;
    border: 2px solid currentColor;
    background-color: var(--color-wh);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-wrap-mode: nowrap;
}
@media screen and (max-width: 767px) {
    .course-list-item {
        flex-direction: column;
        gap: 36px;
        padding: 30px 24px;
    }
    .course-list-item .txt-item p {
        font-size: 15px;
        line-height: 1.7;
    }
    .ontheway { height: 130px; }
    .ontheway .ontheway-time { font-size: 14px; }
}


/* --------------------------------------------
    area-content - エリアから探す
-------------------------------------------- */
.area-content .content-wrap {
    position: relative;
}
.area-content .maincontents {
    margin-top: -400px;
    padding-left: 200px;
    height: auto;
    min-height: 400px;
}
.area-content .sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    width: 200px;
    box-sizing: content-box;
    pointer-events: auto;
    padding-bottom: 400px;
}
.sidebar-nav {
    width: 100%;
    position: absolute;
}
.sidebar-nav .nav-tabs {
    display: block;
    border: none;
}
.sidebar-nav a {
    color: #D8D8D8;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    display: block;
    padding-left: 16px;
    margin-bottom: 20px;
}
.sidebar-nav a::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    left: 0;
    top: calc(50% - 5px);
    background-color: #D8D8D8;
    border-radius: 100vmax;
}
.sidebar-nav a.active { color: var(--color-bk); }
.sidebar-nav a.active::before { background-color: var(--color-gr); }
@media screen and (max-width: 991px) {
    .area-content .sidebar {
        position: -webkit-relative;
        position: relative;
        top: 0;
        width: 100%;
        padding-bottom: 60px;
    }
    .sidebar-nav { position: relative; }
    .sidebar-nav .nav-tabs {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 13px 12px;
    }
    .sidebar-nav a {
        font-size: 15px;
        text-align: center;
        padding: 5px;
        margin-bottom: 0;
        border: 1px solid #D8D8D8;
    }
    .sidebar-nav a.active {
        color: var(--color-wh);
        border: 1px solid var(--color-gr);
        background-color: var(--color-gr);
    }
    .sidebar-nav a::before { display: none; }
    .area-content .maincontents {
        margin-top: 0;
        padding-left: 0;
        min-height: auto;
    }
}
@media screen and (max-width: 767px) {
    .sidebar-nav .nav-tabs { grid-template-columns: repeat(3, 1fr); }
    .sidebar-nav .nav-tabs a:nth-last-child(2) { grid-area: 4 / 1 / 5 / 3; }
    .sidebar-nav .nav-tabs:last-child { grid-area: 4 / 3 / 5 / 4; }
}

/* --------------------------------------------
    検索結果
-------------------------------------------- */
#search-results-main .purpose-list-box .purpose-item::before { display: none!important; }


/* --------------------------------------------
    gourmet-box - グルメ／名産・名品（一覧）
-------------------------------------------- */
.gourmet-content section {
    overflow-x: hidden;
}

.toc-box {
    margin-bottom: 60px;
    padding: 1em 1em 1em 2em;
    background-color: var(--color-gray);
}
.toc-box .toc-hd {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 5px 0;
}
.toc-box:has(:checked) .toc-hd { margin-bottom: 10px; }
.toc-box .toc-hd label::after {
    margin-left: 15px;
    font-size: 15px;
    color: var(--color-gr);
    content: "[ 開く ]";
    cursor: pointer;
}
.toc-box:has(:checked) label::after {
    content: "[ 閉じる ]";
}
.toc-box input { display: none; }

.toc-box ol {
    list-style-type: decimal;
    margin: 0!important;
    padding: 0 1.2em!important;
    overflow: hidden;
    height: 0;
}
.toc-box:has(:checked) ol { height: auto; }
.toc-box ol li { padding: 0; padding-left: 16px!important; }
.toc-box ol li::before {
    font-size: 15px;
    top: 4px !important;
}
.toc-box a {
    color: var(--color-gr);
    font-size: 15px;
    line-height: 1.2;
}

.gourmet-box .gourmet-item {
    position: relative;
    z-index: 10;
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    padding: 46px 0;
}
.gourmet-box .gourmet-item.even-item { flex-direction: row-reverse; }
.gourmet-box .gourmet-item::before {
    content: '';
    display: block;
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: -46px;
    z-index: -1;
    background-color: var(--color-gray);
}
.gourmet-box .gourmet-item.even-item::before { left: auto; right: -46px; }

.gourmet-item .img-item { flex: 1; }
.gourmet-item .txt-item { flex: 1; }

.dots-slider,
.dots-slider .swiper-slide {
    position: relative;
    width: 100%!important;
}
.dots-slider .swiper-pagination {
    top: 100%;
}
.dots-slider .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border: 1px solid var(--color-bk);
    background-color: transparent!important;
    opacity: 1;
}
.dots-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-bk)!important;
}
@media screen and (max-width: 767px) {
    .gourmet-box .gourmet-item { flex-direction: column !important; gap: 20px; padding: 0 0 20px; }
    .gourmet-box .gourmet-item::before {
        width: 112%;
        height: calc(100% - 30px);
        inset: 0;
        top: auto;
        left: -6%!important;
    }
    .dots-slider .swiper-pagination { position: relative; inset: 0; }
}

/* --------------------------------------------
    イベントカレンダー
-------------------------------------------- */
#calendar {
    width: 1280px;
    max-width: 100%;
    margin-inline: auto;
}
#calendar .fc-content,
#calendar .fc-divider,
#calendar .fc-list-heading td,
#calendar .fc-list-view,
#calendar .fc-popover,
#calendar .fc-row,
#calendar tbody,
#calendar td,
#calendar th,
#calendar thead {
    border-color: var(--color-gray)!important;
}
/*#calendar .fc-day-grid .fc-week { border-bottom: 1px solid var(--color-gr)!important; }*/


#calendar thead.fc-head { background-color: var(--color-gray); }
#calendar thead.fc-head th { text-align: center; padding: 8px; }
#calendar thead.fc-head td { padding: 0!important; }

#calendar .fc-header-toolbar {
    color: var(--color-wh);
    margin: 0;
    padding: 12px 16px 4px;
    background-color: var(--color-gr);
}
#calendar .fc-header-toolbar h2 {
    font-size: 28px;
    margin-bottom: 0;
}
#calendar .fc-header-toolbar .fc-left button,
#calendar .fc-header-toolbar .fc-right button {
    background: none;
    border: none;
    text-shadow: none;
    box-shadow: none;
}

.fc-icon {
    display: flex !important;
    gap: 10px;
    align-items: baseline;
}
.fc-icon-left-single-arrow::after,
.fc-icon-right-single-arrow::before {
    color: var(--color-wh);
    font-family: "A1MinchoStdN", serif!important;
    font-size: 20px!important;
    font-weight: 500!important;
    line-height: 1;
}
.fc-icon-left-single-arrow::after { content: "前の月へ"!important; }
.fc-icon-right-single-arrow::before { content: "次の月へ"!important; }
.fc-icon-left-single-arrow::before,
.fc-icon-right-single-arrow::after {
    content: ""!important;
    top: 0!important;
    display: block;
    width: 16px;
    height: 16px;
    background-color: transparent;
    background-image: url(../img/icon-arrow-short.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.fc-icon-left-single-arrow::before { transform: scale(-1, 1); }

#calendar .fc-row:nth-child(2n) { background-color: var(--color-gray); }
#calendar .fc-row .fc-content-skeleton td.fc-day-top { text-align: center; }
#calendar .fc-row .fc-content-skeleton td.fc-day-top .fc-day-number { float: none; }

.fc-sun { color: #B22323; }
.fc-sat { color: #0358A2; }

#calendar .fc-content { font-size: 13px; padding: 3px 6px; }
#calendar .fc-content .fc-time { display: none; }
@media screen and (max-width: 767px) {
    .fc-icon-left-single-arrow::after,
    .fc-icon-right-single-arrow::before { display: none; }
    #calendar .fc-header-toolbar h2 { font-size: 20px; }
}
@media screen and (max-width: 575px) {
    #calendar td,
    #calendar th { display: table-cell; padding: 6px; }
    #calendar thead.fc-head th { font-size: 13px; }
    #calendar .fc-body .fc-widget-content { padding: 0; }
    #calendar .fc-row .fc-content-skeleton td.fc-day-top { font-size: 14px; padding-top: 0; padding-bottom: 0; }
    #calendar .fc-row .fc-content-skeleton td.fc-event-container { padding: 0 0 10px; }
}


/* --------------------------------------------
    FAQ - よくある質問
-------------------------------------------- */
.btn-list-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 16px 16px;
    margin-bottom: 60px;
}
.btn-list-box a {
    color: var(--color-bk);
    font-size: 15px;
    line-height: 42px;
    letter-spacing: 0.05em;
    overflow: hidden;
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    outline: none;
    background-color: transparent;
    border: 1px solid var(--color-bk);
}
.btn-list-box a::after {
    content: '';
    display: block;
    width: 24px;
    height: 10px;
    position: absolute;
    top: calc(50% - 5px);
    right: 18px;
    z-index: 10;
    background-color: transparent;
    background-image: url(../img/icon-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(90deg);
}
.btn-list-box a:hover { color: var(--color-wh); background-color: var(--color-gr); }
.btn-list-box a:hover::after { -webkit-filter: brightness(0) invert(1); filter: brightness(0) invert(1); }
@media screen and (max-width: 767px) {
    .btn-list-box { grid-template-columns: repeat(2, 1fr); grid-gap: 10px 10px; }
    .btn-list-box a { font-size: 13px; line-height: 36px; }
    .btn-list-box a::after { right: 8px; }
}


.qa-list-box .qa-item {
    width: 100%;
    margin-bottom: 36px;
}

.qa-item .q-item {
    color: var(--color-wh);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 16px 16px 16px 68px;
    background-color: var(--color-gr);
    cursor: pointer;
}

.qa-item .q-item::before,
.qa-item .a-item::before {
    position: absolute;
    left: 20px;
    font-weight: 600;
    font-size: 1.3em;
}

.qa-item .q-item::before {
    content: "Q：";
    line-height: 1.2;
}
.qa-item .q-item::after {
    content: "";
    display: block;
    width: 26px;
    height: 20px;
    margin: 4px 0 0;
    background-color: transparent;
    background-image: url(../img/icon-arrow-short.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(90deg);
    transition: transform .1s;
    filter: brightness(0) invert(1);
}
.qa-item[open] .q-item::after {
    transform: rotate(90deg) scale(-1, 1);
}

.qa-item .a-item {
    font-size: 16px;
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 18px 18px 18px 66px;
    background-color: var(--color-gray);
    transition: transform .5s, opacity .5s;
}
.qa-item[open] .a-item {
    transform: none;
    opacity: 1;
}
.qa-item .a-item::before {
    color: #E24D00;
    line-height: 1.5;
    content: "A：";
    left: 24px;
}
.qa-item .a-item p:last-of-type { margin-bottom: 0; }


/* --------------------------------------------
    shugen - 修験ストーリーリスト
-------------------------------------------- */
.shugen-content section .content-wrap {
    padding-top: var(--content-wrap-top);
    padding-bottom: var(--content-wrap-bottom);
}
.shugen-content .content-wrap h2 {
    font-size: 36px;
    font-feature-settings: normal;
}
.shugen-content .sec-tit {
    margin: 0 auto;
    padding-top: 40px;
}
.shugen-content .sec-tit h2 {
    font-size: 40px;
    letter-spacing: 0.3em;
    margin-bottom: 46px;
}
.shugen-content .sec-tit::before {
    width: 27px;
    height: 27px;
    top: 0;
    left: calc(50% - 13px);
    right: auto;
    background-image: url(../img/icon-shugen.svg);
}

.shugen-long-bg01 {
    background-color: var(--color-wh);
    background-image: url(../img/shugen-bg01.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.shugen-hd .shugen-logo {
    text-align: center;
    padding: 42px 0 32px;
}
.shugen-hd .img-wrap { width: 100%; }
.shugen-hd .img-wrap img {
    width: 100%;
    height: calc(100svh - 170px);
    object-fit: cover;
}
.shugen-sec01 {
    width: 100%;
    max-width: 38em;
}
.shugen-content .shugen-sec01 h2 { width: 12em; margin-bottom: 60px; }
.shugen-content .shugen-sec01 h2:not(:last-of-type) { margin-bottom: 12px; }
.shugen-sec01 p {
    line-height: 2;
    margin-bottom: 36px;
}
.shugen-content .purpose-list-box {
    grid-gap: 80px 24px;
}
@media screen and (max-width: 991px) {
    .shugen-content section .content-wrap {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .shugen-content .content-wrap h2 {
        font-size: 32px;
        margin-bottom: 50px;
    }
    .shugen-content .content-wrap h6 { font-size: 19px; }
    .shugen-content section .content-wrap p { font-size: 17px; }
    .shugen-sec01 { max-width: 24em; }
    .shugen-content .purpose-item .purpose-txt .tit { font-size: 22px; padding-bottom: 4px; }
}
@media screen and (max-width: 767px) {
    .shugen-content .content-wrap h2 {
        font-size: 25px;
    }
    .shugen-content section .content-wrap p {
        font-size: 15px;
    }
    .shugen-content .sec-tit {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 36px;
        padding: 0;
    }
    .shugen-content .sec-tit h2 { letter-spacing: 0.2em; margin-bottom: 0; }
    .shugen-content .sec-tit::before {
        position: relative;
        inset: 0;
        transform: none;
    }
    .shugen-hd .shugen-logo {
        display: block;
        margin: 0 auto;
        padding: 0 0 36px;
        width: 136px;
    }
    .shugen-hd .img-wrap { height: calc(100svh - 160px); }
    .shugen-hd .img-wrap img { height: 100%; object-fit: cover; }
    .shugen-content .purpose-item .purpose-txt .tit { font-size: 18px; }
    .shugen-content .purpose-item .purpose-txt .name .name-post { font-size: 13px; }
    .shugen-content .purpose-item .purpose-txt .name .name-main { font-size: 16px; }
}

/* --------------------------------------------
    shugen - 修験ストーリー詳細
-------------------------------------------- */
.shugen-content.single-content .shugen-long-bg01 {
    position: relative;
    background-image: url(../img/shugen-single-bg01.jpg);
}
.shugen-content.single-content .shugen-long-bg01.bg-fade-b::before {
    content: "";
    display: block;
    width: 100%;
    height: 16vw;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.shugen-content.single-content p {
    font-size: 17px;
    line-height: 2.2;
    text-align: justify;
    position: relative;
    z-index: 10;
}
.shugen-short-bg01 {
    background-color: var(--color-wh);
    background-image: url(../img/shugen-single-bg02.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
}
.shugen-content .last-sec .content-wrap {
    padding-top: 36px;
    padding-bottom: 46px;
}
.shugen-content .last-sec .content-wrap h3 { margin-bottom: 50px; }

.shugen-single-hd { position: relative; }
.shugen-single-hd .shugen-tit {
    color: var(--color-wh);
    font-size: 36px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
    position: absolute;
    top: 46%;
    right: 10%;
    transform: translateY(-50%);
    text-wrap-mode: nowrap;
}
.shugen-tit.tit-left {
    left: 10%;
    right: auto;
}
.shugen-tit.tit-center {
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
}
.shugen-prof {
    text-align: center;
    padding: 22px 30px;
    background-color: var(--color-wh);
    border: 1px solid #AC9A6F;
    position: absolute;
    left: 90px;
    bottom: 80px;
    z-index: 10;
}
.shugen-prof.prof-right {
    left: auto;
    right: 90px;
}
.shugen-prof .shugen-post { font-size: 15px; }
.shugen-prof .shugen-name { font-size: 30px; }
.shugen-prof .shugen-name .subtxt { font-size: 20px; margin-left: 10px; }

.shugen-full-txt {
    padding-top: 80px;
    padding-bottom: 100px;
}
.shugen-full-txt p {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
}

.shugen-flex-box .shugen-flex-item {
    position: relative;
    z-index: 10;
    display: flex;
    gap: 90px;
    padding-bottom: 120px;
}
.shugen-flex-box .shugen-flex-item.even-item { flex-direction: row-reverse; }
.shugen-flex-item .img-item { width: 600px; position: relative; }
.shugen-flex-item .txt-item { flex: 1; }
.shugen-flex-item .img-item .img-txt {
    position: absolute;
    top: -12px;
    left: -24px;
    z-index: 10;
    width: 100px;
}
.shugen-flex-item .img-item .img-txt.txt-right { left: auto; right: -26px; }
.img-aspect6-5 { aspect-ratio: 6 / 5; object-fit: cover; }

.shugen-full-img .img-item {
    position: relative;
    width: 92%;
    margin-left: auto;
}
.shugen-full-img .img-item .img-txt {
    position: absolute;
    top: -12px;
    left: -24px;
    z-index: 10;
    width: 100px;
}
.shugen-full-img .img-item .img-txt.txt-right { left: auto; right: -26px; }
@media screen and (max-width: 1100px) {
    .shugen-content.single-content p { line-height: 2; }
    .shugen-flex-item .img-item { width: 500px; }
    .shugen-single-hd .shugen-tit { font-size: 32px; }
    .shugen-flex-box .shugen-flex-item { gap: 50px; }
}
@media screen and (max-width: 767px) {
    .shugen-content.single-content p { font-size: 16px; }
    .shugen-single-hd .shugen-tit { font-size: 30px; top: 50%; }
    .shugen-prof { padding: 20px 26px; left: 46px; bottom: 50px; }
    .shugen-prof.prof-right { left: auto; right: 46px; }
    .shugen-prof .shugen-post { font-size: 14px; }
    .shugen-prof .shugen-name { font-size: 26px; }
    .shugen-prof .shugen-name .subtxt { font-size: 20px; }
    .shugen-flex-box .shugen-flex-item { flex-direction: column !important; gap: 30px; }

    .shugen-flex-item .img-item { width: 100%; flex: 1.5; }
    .shugen-flex-item .img-item .img-txt {
        position: relative;
        inset: 0;
        z-index: 20;
        inset: 0;
        width: 62px;
    }
    .shugen-flex-item .img-item .img-txt.txt-right { margin-left: auto; inset: 0; }
    .shugen-flex-item .img-item > img {
        position: absolute;
        top: 14px;
    }

    .shugen-full-img .img-item .img-txt {
        position: relative;
        inset: 0;
        z-index: 20;
        inset: 0;
        width: 62px;
    }
    .shugen-full-img .img-item .img-txt.txt-right { margin-left: auto; inset: 0; }
    .shugen-full-img .img-item > img {
        position: absolute;
        top: 14px;
    }

    .shugen-flex-item.sec-inner-start .txt-item { padding-right: calc(50 / var(--inner-size) * 100cqi); }
    .shugen-flex-item.sec-inner-end .txt-item { padding-left: calc(50 / var(--inner-size) * 100cqi); }
}
@media screen and (max-width: 575px) {
    .shugen-long-bg01 { padding-top: 50px; }
    .shugen-content.single-content p { font-size: 15px; }
    .shugen-single-hd { overflow: visible; }
    .shugen-single-hd .shugen-tit {
        font-size: 20px;
        top: 8%;
        right: auto;
        left: 50%;
        -ms-writing-mode: rl-tb;
        writing-mode: horizontal-tb;
        transform: translateX(-50%);
    }
    .shugen-prof {
        width: 86%;
        max-width: 320px;
        padding: 12px 16px 8px;
        left: 50%;
        bottom: -50px;
        transform: translateX(-50%);
    }
    .shugen-prof.prof-right { left: auto; right: 20px; }
    .shugen-prof .shugen-post { font-size: 12px; }
    .shugen-prof .shugen-name { font-size: 18px; }
    .shugen-prof .shugen-name .subtxt { font-size: 15px; }
    .shugen-full-txt { padding-top: 60px; padding-bottom: 60px; }
    .shugen-flex-box .shugen-flex-item { padding-bottom: 60px; }
}
s


/* --------------------------------------------
    A-Form
-------------------------------------------- */
.aform-content section .content-wrap { padding-top: 36px; }

.aform-header { display: none!important; }
.aform-content dl {
    margin: 0!important;
    padding: 10px 0!important;
    display: flex;
    border-bottom: 1px dotted #F2F2F2;
}
.aform-content dl:last-child { border-bottom: none; }
.aform-content dl dt {
    font-weight: bold;
    width: 35%;
    max-width: 260px;
    margin-right: 2.5%;
    background: #F2F2F2;
    padding: 10px;
}
.aform-content dl dd {
    margin: 0 0 0.5em;
    padding: 10px 0;
    width: 65%;
}
.aform-content ul,
.aform-name-ul, .aform-radio-ul {
    margin-bottom: 0!important;
    padding-left: 0!important;
}
.aform-name-ul li, .aform-kana-ul li, .aform-radio-ul li { padding-left: 0!important; }
.aform-name-ul li:last-child, .aform-kana-ul li:last-child, .aform-radio-ul li:last-child { margin-bottom: 0!important; }
.aform-name-ul li::before, .aform-kana-ul li::before, .aform-radio-ul li::before { display: none!important; }

.aform-name-ul label { margin-right: 5px; }

.aform-radio-ul li {
    position: relative;
    padding-left: 1.2em!important;
    margin-bottom: 0!important;
}
.aform-content input[type="radio"], .aform-content input[type="checkbox"] { margin-right: 5px; margin-top: 0; }
.aform-content input[type="radio"] {
    position: absolute;
    left: 0;
    top: 0.8em;
}
.aform-content label { margin-top: 5px; }
.aform-input-example { font-size: 14px!important; font-weight: 500!important; }
.aform-upload { margin-bottom: 5px!important; }

.aform-required {
    color: #fff!important;
    font-size: 14px!important;
    font-weight: bold!important;
    line-height: 1!important;
    display: inline-block!important;
    margin-left: 5px!important;
    padding: 0.3em!important;
    background: #C30008!important;
    border-radius: 3px!important;
    vertical-align: bottom!important;
}

.aform-button-area { text-align: center; background-color: transparent!important; }
.aform-button-area input {
    color: #fff!important;
    font-size: 1rem!important;
    width: auto!important;
    font-size: 1em!important;
    font-weight: bold!important;
    line-height: 1!important;
    letter-spacing: 0.02em!important;
    display: inline-block!important;
    margin: 0 5px!important;
    padding: 20px 5em!important;
    background: var(--color-gr)!important;
    border: none!important;
    border-radius: 0!important;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.aform-button-area input:hover {
    color: #FFF!important;
    background: #6A6F76!important;
    border-right-width: 3px!important;
    border-bottom-width: 3px!important;
}
@media screen and (max-width: 767px) {
  .aform-content dl { display: block; }
  .aform-content dl dt { width: 100%; max-width: 100%; margin-right: 0; margin-bottom: 15px; padding: 10px 15px; }
  .aform-content dl dd { width: 100%; }
  .aform-content dl dd input, .aform-content dl dd textarea { max-width: 100%; }
  .aform-button-area { padding-top: 30px; }
  .aform-button-area input { width: 100%!important; padding: 20px 1em!important; margin: 0 5px 20px!important; }
  .aform-content .aform-name-ul input { max-width: calc(100% - 2em); }
}