@charset "utf-8";

/* ==============================================
   Base & Typography
   ============================================== */
body {
    overflow-x: hidden;
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    color: #333;
    font-style: normal;
    top: 0 !important;

    font-optical-sizing: auto;
}

.wrapper {
    position: relative;
}

.uk-lb:hover{
  cursor:pointer;
}
.w-txt {
    overflow-wrap: anywhere;
    word-break: keep-all;
}

.txt {
    line-height: 1.7em;
}

.lang-btn span {
    cursor: pointer;
}

.lang-btn span.active {
    font-weight: bold;
    text-decoration: underline;
}

.h1 {
    display: none;
}

.ttl01 {
    font-weight: bold;
    font-size: 32px;
    color: #316745;
}

.ttl02 {
    font-weight: bold;
    font-size: 24px;
}

.trtxt {
    writing-mode: vertical-rl;
}

/* ==============================================
   Utility Classes
   ============================================== */
.grn-txt {
    color: #316745;
}

.red-txt {
    color: #e60012;
}

.page-title {
    color: #fff;
    filter: drop-shadow(0 0 1px #000) drop-shadow(0 0 1px #000);
}

.bg-beige {
    background-color: #f6f4ef;
}

.bg-white {
    background-color: #fff;
}

.f-right {
    float: right;
}

.f-left {
    float: left;
}

.box-radius-shadow {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map iframe {
    border: 0;
}

/* ==============================================
   Header
   ============================================== */
#header {
    height: 0;
    position: relative;
}

.header-main {
    width: 100%;
    transition: 0.5s;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}

.scrolled .header-main {
    background-color: rgba(0, 0, 0, 0.5);
}

.header-inner {
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 15px 2%;
}

.header-logo {
    width: 120px;
}

.header-logo a {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 1px #fff) drop-shadow(0 0 1px #fff) drop-shadow(0 0 1px #fff) drop-shadow(0 0 1px #fff) drop-shadow(0 0 1px #fff) drop-shadow(0 0 1px #fff);
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-grow: 1;
}

.header-nav-item {
    flex-grow: 1;
    text-align: center;
}

.header-nav-item a {
    width: 100%;
    display: block;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    filter: drop-shadow(0 0 1px #000) drop-shadow(0 0 1px #000);
}

.header-btns {
    display: flex;
    align-items: center;
    flex-grow: 0;
    filter: drop-shadow(0 0 1px #000) drop-shadow(0 0 1px #000);
}

.lang-btn {
    padding: 0 10px;
    color: #fff;
}

.sns-btn {
    width: 25px;
    height: 25px;
}

.sns-btn a {
    display: block;
    padding: 2px;
}

.sns-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hm-bars {
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 101;
}

.hm-bars:hover{
  cursor: pointer;
}

.hm-bars span {
    width: 80%;
    height: 3px;
    display: block;
    border-radius: 3px;
    background-color: #fff;
    filter: drop-shadow(0 0 1px #000) drop-shadow(0 0 1px #000);
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
}

.hm-bars span:nth-child(1) {
    top: 30%;
}

.hm-bars span:nth-child(2) {
    bottom: 30%;
}

/* ==============================================
   Drawer Navigation
   ============================================== */
.drw-nav {
    width: 100%;
    max-width: 400px;
    height: 100vh;
    margin: 0;
    background-color: #d4ebdc;
    transition: 0.5s;
    position: fixed;
    top: 0;
    right: -401px;
    z-index: 100;
}

.openned .drw-nav {
    right: 0;
}

body.openned {
    overflow: hidden;
}

.drw-nav-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px 15px;
    position: relative;
}

.drw-nav-inner::before {
    content: "×";
    width: 50px;
    height: 50px;
    display: block;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    font-size: 60px;
    color: #fff;
    line-height: 35px;
    text-align: center;
    border-radius: 0 0 0 10px;
    background: linear-gradient(0.25 turn, #316745, #659b79, #316745);
    position: absolute;
    top: 0;
    right: 0;
}

.h1-area {
    width: calc(100% - 40px);
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 12px;
    border-bottom: 1px solid #316745;
}

.drw-nav-logo {
    width: 120px;
    margin: 0 auto 10px auto;
}

.drw-nav-logo a {
    width: 100%;
    display: block;
}

.drw-nav-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.drw-add {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 12px;
    color: #316745;
    text-align: center;
}

.drw-nav-box {
    width: 100%;
    flex-grow: 1;
    overflow-y: scroll;
    padding: 20px;
    background-color: #fff;
}

.drw-nav-list {
    display: block;
}

.drw-nav-item+.drw-nav-item {
    margin-top: 15px;
}

.drw-nav-item>a {
    display: block;
    padding: 5px 0;
    font-weight: 600;
    border-bottom: 1px solid #316745;
    position: relative;
}

.nav-mini {
    display: block;
    font-size: 14px;
    color: #316745;
}

.drw-sns-btn {
    margin-top: 15px;
}

.drw-sns-btn>a {
    display: flex;
    align-items: center;
    padding: 5px 0;
    font-family: "游ゴシック", YuGothic, Hiragino Sans, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    font-weight: 900;
    border-bottom: 1px solid #316745;
    position: relative;
}

.drw-sns-btn>a>img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

/* ==============================================
   Overlay
   ============================================== */
.overlay {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    transition: 0.5s;
    animation: overlay-open 0.5s forwards;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}

@keyframes overlay-open {
    0% {
        transform: translateX(-100vw);
    }

    100% {
        transform: translateX(0);
    }
}

/* ==============================================
   Main & Layout blocks
   ============================================== */
.main-visual {
    height: 800px;
    overflow: hidden;
    position: relative;
}

.main-visual-img {
    width: 100%;
    height: 100%;
    background-color: #000;
}

.main-visual-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.main-visual-box01 {
    width: 100%;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
}

.main-visual-box01 .inner {
    font-weight: bold;
    color: #fff;
    writing-mode: vertical-rl;
    filter: drop-shadow(0 0 1px #000) drop-shadow(0 0 1px #000);
}

.main-visual-box01 .row01 {
    display: block;
    font-size: 45px;
}

.main-visual-box01 .row02 {
    display: block;
    margin-top: 10em;
    margin-right: 2em;
    font-size: 22px;
}

.main-visual-box02 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 80px;
    color: #fff;
    writing-mode: vertical-rl;
    filter: drop-shadow(0 0 1px #000) drop-shadow(0 0 1px #000);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 30%;
    z-index: 2;
}

.main-visual-box02 img {
    width: 120px;
    margin-bottom: 0.2em;
    object-fit: contain;
}

/* ==============================================
   Backgrounds & Decorative Elements
   ============================================== */
.bg01 {
    overflow: hidden;
    background-image: url('/import/tenant_1/162.43.17.208/images/bg01.webp');
    background-size: 100% auto;
    background-repeat: repeat-y;
    position: relative;
}

.bg01::after {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url('/import/tenant_1/162.43.17.208/images/bg01.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.bg02 {
    background-image: url('/import/tenant_1/162.43.17.208/images/bg02.webp');
    background-size: 100% auto;
    background-repeat: repeat-y;
    position: relative;
}

.bg02::after {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url('/import/tenant_1/162.43.17.208/images/bg02.webp');
    background-size: 100% auto;
    background-repeat: repeat-y;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;

    -webkit-mask-image: linear-gradient(to bottom, black calc(100% - 200px), transparent 100%);
    mask-image: linear-gradient(to bottom, black calc(100% - 200px), transparent 100%);
}

.bg01.mk3bg1::after {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url('/import/tenant_1/162.43.17.208/images/bg01.webp');
    background-size: 100% auto;
    background-repeat: repeat-y;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;

    -webkit-mask-image: linear-gradient(to bottom, black calc(100% - 200px), transparent 100%);
    mask-image: linear-gradient(to bottom, black calc(100% - 200px), transparent 100%);
}

.nbt.bg02::after {
    display: none;
}

.bgbox {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.bgbox.mk2 {
    z-index: 2;

    -webkit-mask-image: linear-gradient(to top, black 0, transparent 200px);
    mask-image: linear-gradient(to top, black 0, transparent 200px);
}

.rellax-layer {
    width: 100%;
    height: 1000%;
    background-image: url('/import/tenant_1/162.43.17.208/images/bg03.webp');
    background-size: 100% auto;
    background-repeat: repeat-y;
    background-position: center;
    opacity: 0.5;
    animation: dmsc 100s infinite alternate linear;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.rellax-layer.mk2 {
    background-image: url('/import/tenant_1/162.43.17.208/images/bg08.webp');
    z-index: 2;
}

.rellax-layer.mk3 {
    background-image: url('/import/tenant_1/162.43.17.208/images/bg05.webp');
}


@keyframes dmsc {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-2000px);
    }
}

.deco01 {
    margin-bottom: 5%;
    position: relative;
}

.deco01>img {
    border-radius: 20px;
}

.deco01::before {
    content: "";
    width: 50%;
    height: 50%;
    background-image: url('/import/tenant_1/162.43.17.208/images/deco01.webp');
    background-size: contain;
    background-repeat: no-repeat;
    animation: frameout 10s infinite alternate linear;
    position: absolute;
    bottom: -10%;
    right: -10%;
    z-index: 2;
}

.deco02 {
    margin-bottom: 5%;
    position: relative;
}

.deco02>img {
    border-radius: 20px;
}

.deco02::before {
    content: "";
    width: 80%;
    height: 80%;
    background-image: url('/import/tenant_1/162.43.17.208/images/deco02.webp');
    background-size: contain;
    background-repeat: no-repeat;
    animation: frameout 10s infinite alternate linear;
    position: absolute;
    bottom: -20%;
    left: -50%;
    z-index: 1;
}

@keyframes frameout {
    0% {
        transform: translateX(25px);
    }

    50% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-25px);
    }
}

/* ==============================================
   Block Grid & Layout
   ============================================== */
.blk01-p1 {
    width: 48%;
    float: right;
}

.blk01-p2 {
    width: 45%;
    float: left;
}

.blk01-p3 {
    width: 48%;
    float: right;
}

.blk02-p1 {
    width: 48%;
    float: left;
}

.blk02-p2 {
    width: 45%;
    float: right;
}

.blk02-p3 {
    width: 48%;
    float: left;
}

.blk03 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.blk03-p1 {
    flex-grow: 10%;
}

.blk03-p2 {
    width: 32%;
}

.blk03-p3 {
    width: 50%;
}

.blk04-p2 {
    width: 45%;
    float: right;
}

.blk04-p3 {
    width: 48%;
    float: left;
}

.overimg {
    padding-top: 70%;
    position: relative;
}

.overimg img {
    width: 50vw;
    max-width: 200%;
    height: calc(100% + 200px);
    object-fit: cover;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
}

.suigyo-img {
    width: 100%;
    position: relative;
}

.suigyo-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.suigyo-card {
    margin: -300px auto 0;
    padding: 50px 60px;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.suigyo-card.mini {
    margin: -200px auto 0;
}

/* ==============================================
   Buttons
   ============================================== */
.grn-btn a,
.grn-btn button {
    display: inline-block;
    overflow: hidden;
    padding: 1em 2em;
    border: none;
    border-radius: 10px;
    background: linear-gradient(0.25turn, #316745, #659b79, #316745);
    transition: ease 0.5s;
    position: relative;
}

.grn-btn button {
    width: 100%;
}

.grn-btn a:hover,
.grn-btn button:hover {
    opacity: 1;
}

.grn-btn a .btn-inner,
.grn-btn button .btn-inner {
    color: #fff;
    position: relative;
    z-index: 3;
}

.grn-btn a::after,
.grn-btn button::after {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    margin-left: 5px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transition: right 0.5s ease;
    transform: rotate(45deg);
    position: relative;
    z-index: 3;
}

.grn-btn.back a::after,
.grn-btn.back button::after {
    content: "";
    width: 100%;
    height: 100%;
    margin: 0;
    border: none;
    background: #e0ba47;
    transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: top;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.grn-btn a::before,
.grn-btn button::before {
    content: "";
    width: 100%;
    height: 100%;
    margin: 0;
    border: none;
    background: #e0ba47;
    transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: top;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.grn-btn.back a::before,
.grn-btn.back button::before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    margin-right: 5px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    background-color: transparent;
    transition: right 0.5s ease;
    transform: rotate(45deg);
    position: relative;
    z-index: 3;
}

.grn-btn a:hover::before,
.grn-btn button:hover::before {
    transform: scale(1, 1);
}

.grn-btn a:hover::after,
.grn-btn button:hover::after {
    transform: rotate(45deg);
}

.grn-btn.back a:hover::before,
.grn-btn.back button:hover::before {
    transform: rotate(45deg);
}

.grn-btn.back a:hover::after,
.grn-btn.back button:hover::after {
    transform: scale(1, 1);
}

.grn-btn.btn-sm a {
    padding: 0.6em 1.5em;
    border-radius: 5px;
}

/* ==============================================
   Guide List
   ============================================== */
.guide-list li a {
    height: 100%;
    display: block;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    background-color: transparent;
    transform: translateZ(0);
    position: relative;
}

.guide-list li a:hover {
    opacity: 1;
}

.guide-list .guide-img {
    width: 100%;
}

.up-col-2 .guide-img {
    height: 360px;
}

.up-col-3 .guide-img {
    height: 300px;
}

.guide-list .guide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.guide-list li a:hover .guide-img img {
    transform: scale(1.05);
}

.guide-list .guide-content {
    width: 100%;
    height: 100%;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
}

.guide-list .guide-ttl {
    height: 100%;
    padding: 20px 20px 40px 20px;
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
    writing-mode: vertical-rl;
    background-color: rgba(0, 0, 0, 0.45);
    position: absolute;
    top: 0;
    left: 0;
}

.guide-list .guide-sub {
    width: 100%;
    padding:12px 20px;
    font-weight: 500;
    background-color: rgba(0, 0, 0, 0.45);
    position: absolute;
    bottom: 0;
    left: 0;
}

.guide-list li a::after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transition: right 0.5s ease;
    transform: rotate(45deg);
    position: absolute;
    bottom: 22px;
    right: 20px;
}

.guide-list li a:hover::after {
    right: 15px;
}

/* ==============================================
   News, Blog, Media
   ============================================== */
.news-list li {
    border-bottom: 2px solid #dcdcdc;
}

.news-list li a {
    display: flex;
    flex-wrap: wrap;
    padding: 18px 5px;
    color: #333;
}

.news-meta {
    width: 100%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.news-date {
    margin-right: 12px;
    font-family: "Noto Sans JP";
    font-size: 14px;
    color: #316745;
}

.news-cat>span {
    display: inline-block;
    margin-right: 3px;
    padding: 1px 5px;
    font-weight: bold;
    font-size: 12px;
    color: #316745;
    white-space: nowrap;
    border: 1px solid #ccc;
    background-color: #fff;
}

.news-title {
    width: 100%;
    margin-top: 5px;
    font-weight: bold;
    font-size: 16px;
}

.blog-list li a {
    height: 100%;
    display: block;
    padding-bottom: 0.5em;
    border-bottom: 2px solid #dcdcdc;
}

.blog-list li a:hover {
    opacity: 1;
}

.blog-list li a:hover .blog-img img {
    transform: scale(1.05);
}

.blog-list li a:hover .blog-title {
    color: #316745;
}

.blog-img {
    width: 100%;
    overflow: hidden;
    margin-bottom: 12px;
    border-radius: 10px;
    position: relative;
}

.blog-img img {
    transition: 0.5s;
}

.blog-cat {
    width: 100%;
    padding: 5px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.blog-cat>span {
    display: inline-block;
    margin-right: 3px;
    padding: 1px 5px;
    font-weight: bold;
    font-size: 12px;
    color: #316745;
    white-space: nowrap;
    border: 1px solid #ccc;
    background-color: #fff;
}

.blog-date {
    font-family: "Noto Sans JP";
    font-size: 14px;
    color: #316745;
}

.blog-title {
    font-weight: bold;
    opacity: 1;
    transition: color 0.5s;
}

.media-card a {
    height: 100%;
    display: block;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.5s ease, transform 0.5s ease;
}

.media-card a:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    opacity: 1;
    transform: translateY(-5px);
}

.media-meta {
    display: flex;
}

.media-date {
    margin-right: 3px;
    font-family: "Noto Sans JP";
    font-size: 14px;
    color: #316745;
    min-width: 90px;
}

.media-cat span {
    display: inline-block;
    margin-right: 3px;
    padding: 1px 5px;
    font-size: 12px;
    color: #fff;
    white-space: nowrap;
    border-radius: 2px;
    background-color: #659b79;
}

.media-title {
    font-weight: bold;
    font-size: 18px;
}

/* ==============================================
   History List (DL)
   ============================================== */
.history-list dl {
    border-top: 2px solid #ccc;
}

.f-dtl.history-list dl {
    border-top: none;
}

.history-list dt,
.history-list dd {
    padding: 20px 10px;
    font-weight: bold;
    font-size: 15px;
    line-height: 1.6;
    border-bottom: 2px solid #ccc;
}

.history-list dt {
    width: 28%;
    font-weight: bold;
    color: #316745;
}

.history-list dd {
    width: 72%;
}

.history-list.min-dl dt {
    width: 20%;
}

.history-list.min-dl dd {
    width: 80%;
    padding: 20px 0;
}

/* ==============================================
   Event Cards
   ============================================== */
.event-card {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 25px 30px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
}

.event-month {
    margin-right: 25px;
    padding-right: 25px;
    font-weight: bold;
    font-size: 24px;
    color: #316745;
    white-space: nowrap;
    border-right: 2px solid #f6f4ef;
}

.indents {
    padding-left: 1em;
    text-indent: -1em;
}

/* ==============================================
   Access Information
   ============================================== */
.access-box {
    height: 100%;
    padding: 35px 30px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
}

.access-ttl {
    margin-bottom: 25px;
    padding-bottom: 15px;
    color: #316745;
    border-bottom: 2px solid #316745;
}

.access-item {
    margin-bottom: 20px;
}

.access-item:last-child {
    margin-bottom: 0;
}

.access-label {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 15px;
    color: #316745;
}

/* ==============================================
   Value Cards & Concept Boxes
   ============================================== */
.value-card {
    height: 100%;
    padding: 30px;
    text-align: center;
    border-top: 5px solid #316745;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.value-num {
    margin-bottom: 10px;
    font-family: serif;
    font-weight: 900;
    font-size: 40px;
    color: rgba(49, 103, 69, 0.1);
    line-height: 1;
}

.value-ttl {
    margin-bottom: 20px;
    font-size: 18px;
    color: #316745;
}

.value-card .txt {
    text-align: left;
}

.concept-box {
    height: 100%;
    padding: 40px 30px;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8);
}

.concept-ttl {
    display: inline-block;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 20px;
    color: #316745;
    border-bottom: 1px dotted #316745;
}

/* ==============================================
   Message Section
   ============================================== */
.message-sec {
    overflow: hidden;
    position: relative;
}

.message-sec .para-img {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

.message-sec .para-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.message-sec::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.message-box {
    padding: 60px 80px;
    border: 1px solid rgba(49, 103, 69, 0.2);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* ==============================================
   Instagram List
   ============================================== */
.insta-list li {
    width: 31.333%;
    margin: 1%;
}

.insta-list li a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.insta-list li a:hover {
    opacity: 1;
}

.insta-info {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: 0.4s;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.insta-list li a:hover .insta-info {
    opacity: 1;
}

.insta-like {
    font-weight: bold;
    color: #fff;
}

.insta-like::before {
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 5px;
    background-image: url('/import/tenant_1/162.43.17.208/images/like.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
}

.insta-date {
    font-weight: bold;
    font-size: 20px;
    color: #fff;
}

/* ==============================================
   Swiper
   ============================================== */
.grl .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* ==============================================
   Contact Section
   ============================================== */
.contact-sec {
    margin-bottom: -30px;
}

.contact-btn {
    width: 320px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.5s ease, border-color 0.5s ease, opacity 0.5s ease;
    position: relative;
    z-index: 5;
}

.contact-btn.tel-btn a {
    width: 100%;
    display: block;
    overflow: hidden;
    padding: 15px 0;
    font-weight: bold;
    font-size: 20px;
    color: #316745;
    text-align: center;
    border-radius: 5px;
    background-color: #fff;
    position: relative;
}

.contact-btn.mail-btn a {
    width: 100%;
    display: block;
    overflow: hidden;
    padding: 15px 0;
    font-weight: bold;
    font-size: 20px;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    background: linear-gradient(0.25turn, #316745, #659b79, #316745);
    position: relative;
}

.contact-btn a .btn-inner {
    transition: 0.4s;
    position: relative;
    z-index: 3;
}

.contact-btn a:after {
    content: "";
    width: 100%;
    height: 100%;
    background: #e0ba47;
    transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: top;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.contact-btn a:hover {
    opacity: 1;
}

.contact-btn a:hover::after {
    transform: scale(1, 1);
}

/* ==============================================
   Footer
   ============================================== */
.footer {
    position: relative;
}

.footer-logo {
    width: 160px;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo a {
    width: 100%;
    display: block;
}

.footer-logo a img {
    width: 100%;
}

.footer-sns li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background-color: #4a775a;
    transition: opacity 0.5s;
}

.footer-sns li a:hover {
    opacity: 0.7;
}

.footer-sns li a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.nav-heading {
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 14px;
    color: #333;
}

.footer-nav ul li {
    margin-bottom: 8px;
}

.footer-nav ul li:last-child {
    margin-bottom: 0;
}

.footer-nav ul li a {
    display: inline-block;
    padding-left: 1.2em;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.5s;
    position: relative;
}

.footer-nav ul li a:hover {
    color: #4a775a;
}

.footer-nav ul li a::before {
    content: "┗";
    font-family: monospace;
    color: #666;
    position: absolute;
    top: 0;
    left: 0;
}

.gonta {
    width: 150px;
    height: 120px;
    display: block;
    animation: peekaboo 180s infinite ease-in-out;
    position: fixed;
    bottom: 0px;
    left: 10px;
    z-index: 97;
}

.gonta a {
    height: 100%;
    display: block;
}

.gonta img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center top;
    transition: 0.4s;
}

.gonta img:last-child {
    display: none;
}

.gonta a:hover {
    opacity: 1;
}

.gonta a:hover img:last-child {
    display: block;
}

.gonta a:hover img:first-child {
    display: none;
}

@keyframes peekaboo {
    0% {
        transform: translateY(150px);
    }

    0.5% {
        transform: translateY(0px);
    }

    2.7% {
        transform: translateY(0px);
    }

    3.3% {
        transform: translateY(150px);
    }

    100% {
        transform: translateY(150px);
    }
}

.iframe-area {
    width: 100%;
    height: 400px;
}

.iframe-area iframe {
    width: 100%;
    height: 100%;
}

.cp-line {
    padding: 1em 0 100px 0;
    font-size: 14px;
    color: #fff;
    text-align: center;
    background-color: #666;
}

.floating-cta {
    width: 400px;
    background: #fff;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 98;
}

.cta-label {
    padding: 5px 0;
    font-weight: bold;
    font-size: 14px;
    color: #333;
    text-align: center;
}

.cta-inner {
    width: 100%;
    display: flex;
}

.floating-cta .contact-btn {
    width: 50%;
    flex: 1;
}

.floating-cta .contact-btn a {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 14px;
    border-radius: 0;
    transition: 0.4s;
}

.floating-cta .contact-btn.tel-btn a {
    color: #fff;
    background: #316745;
}

.floating-cta .contact-btn.mail-btn a {
    background: #d68523;
}

.floating-cta .contact-btn a:after {
    content: "";
    width: 100%;
    height: 100%;
    background: #d4ebdc;
    transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(1, 0);
    transform-origin: top;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.floating-cta .contact-btn a:hover::after {
    transform: scale(1, 1);
}

.floating-cta .contact-btn a:hover .btn-inner {
    color: #316745 !important;
}

/* ==============================================
   Other Components
   ============================================== */
.page-header {
    position: relative;
    height:400px;
    overflow: hidden;
}

.under-mv {
    width: 100%;
    height:100%;
    position: relative;
}

.under-mv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.under-mv-txt {
    width: 100%;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
}

.breadcrumbs {
    width: 100%;
    padding: 10px 0;
    background-color: #ddd;
}

.breadcrumbs-list li+li:before {
    content: ">";
    display: inline;
    margin: 0 0.5em;
}

.breadcrumbs-list li {
    display: inline;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.2;
}

.breadcrumbs-list li a {
    color: #316745;
}

.image-main img {
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}

.feet {
    width: 300px;
    height: 750px;
    background-image: url('/import/tenant_1/162.43.17.208/images/feet.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    animation: feet 10s infinite steps(1);
    position: absolute;
    bottom: 0;
    right: 0;
}

@keyframes feet {
    0% {
        height: 75px;
    }

    10% {
        height: 150px;
    }

    20% {
        height: 225px;
    }

    30% {
        height: 300px;
    }

    40% {
        height: 375px;
    }

    50% {
        height: 450px;
    }

    60% {
        height: 525px;
    }

    70% {
        height: 600px;
    }

    80% {
        height: 675px;
    }

    90% {
        height: 750px;
    }

    100% {
        height: 75px;
    }
}

.event-cards {
    margin-bottom: -30px;
}

.access-box-list {
    margin-bottom: -30px;
}

.nomap .iframe-area {
    display: none;
}

.udb {
    border-bottom: 1px solid #316745;
}

/* ==============================================
   Media Queries
   ============================================== */
@media(max-width: 1250px) {
    .header-nav {
        display: none;
    }

    .header-btns {
        justify-content: flex-end;
        flex-grow: 1;
    }
}

@media(max-width: 1024px) {
    .f-right,
    .f-left {
        float: none;
    }

    .main-visual {
        height: 600px;
    }

    .main-visual-box01 .row01 {
        font-size: 35px;
    }

    .main-visual-box01 .row02 {
        margin-right: 1em;
        font-size: 20px;
    }

    .main-visual-box02 {
        height: 100%;
        font-size: 60px;
    }

    .main-visual-box02 img {
        width: 80px;
    }

    .blk01-p1,
    .blk01-p3,
    .blk02-p1,
    .blk02-p3,
    .blk03-p3,
    .blk04-p2,
    .blk04-p3 {
        width: 100%;
        float: none;
    }

    .blk01-p2,
    .blk02-p2 {
        width: 100%;
        max-width: 600px;
        float: none;
        margin-left: auto;
        margin-right: auto;
    }

    .blk03-p2 {
        width: 55%;
    }

    .ttl01 {
        font-size: 28px;
    }

    .ttl02 {
        font-size: 20px;
    }

    .overimg img {
        width: 100%;
        max-width: 100%;
        height: 100%;
    }

    .blog-list {
        margin-bottom: -30px;
    }

    .message-box {
        padding: 30px 15px;
    }

    .suigyo-card {
        padding: 30px;
    }

    .guide-list .guide-sub {
        padding: 10px;
        font-size: 14px;
    }

    .guide-list li a::after {
        bottom: 14px;
    }

    .news-sec {
        margin-bottom: -50px;
    }

    .media-meta {
        display: block;
    }

    .media-title {
        font-size: 16px;
    }

    .gonta {
        width: 120px;
        height: 100px;
    }

    .access-box-list {
        margin-bottom: -10px;
    }

    .access-box {
        padding: 25px 15px;
        border-radius: 10px;
    }

    .page-header{
        height: 360px;
    }

    .value-card-list {
        margin-bottom: -30px;
    }

    .value-card {
        padding: 20px 10px;
    }

    .concept-box-list {
        margin-bottom: -30px;
    }
}

@media(max-width: 599px) {
    .header-logo {
        width: 90px;
    }

    .lang-btn {
        padding: 0 10px 0 0;
        font-size: 14px;
        letter-spacing: -0.1em;
    }

    .main-visual-box01 {
        width: 100%;
        transform: translate(-50%, 0);
        top: auto;
        bottom: 2%;
    }

    .main-visual-box01 .inner {
        display: block;
        writing-mode: horizontal-tb;
    }

    .main-visual-box01 .row01 {
        font-size: 24px;
        text-align: center;
    }

    .main-visual-box01 .row02 {
        margin-top: 10px;
        margin-right: 0;
        font-size: 16px;
        text-align: center;
    }

    .main-visual-box02 {
        padding-bottom: 1em;
        font-size: 50px;
        transform: translate(-50%, -50%);
        left: 50%;
    }

    .main-visual-box02 img {
        width: 60px;
    }

    .ttl01 {
        font-size: 22px;
    }

    .ttl02 {
        font-size: 18px;
    }

    .txt {
        line-height: 1.5em;
    }

    .history-list dt {
        width: 100%;
        padding-bottom: 5px;
        border-bottom: none;
    }

    .history-list dd {
        width: 100%;
        padding-top: 0;
    }

    .history-list.min-dl dt {
        width: 24%;
        padding: 20px 0px;
    }

    .history-list.min-dl dd {
        width: 76%;
    }

    .event-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

    .event-month {
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
        padding-bottom: 10px;
        padding-right: 0;
        border-bottom: 2px solid #f6f4ef;
        border-right: none;
    }

    .access-box {
        padding: 25px 20px;
    }


    .concept-box {
        padding: 20px 10px;
    }

    .message-box {
        padding: 30px 10px;
    }

    .contact-btn {
        width: 100%;
        height: 60px;
        font-size: 18px;
    }

    .suigyo-card {
        padding: 20px 10px;
    }

    .suigyo-card.mini {
        margin: -300px auto 0;
    }

    .guide-list .guide-ttl {
        width: auto;
        height: auto;
        padding: 10px 20px;
        font-size: 18px;
        writing-mode: horizontal-tb;
    }

    .up-col-2 .guide-img {
        height: 160px;
    }

    .up-col-3 .guide-img {
        height: 160px;
    }

    .media-list {
        margin-bottom: -10px;
    }

    .contact-sec {
        margin-bottom: 0;
        padding-bottom: 50px;
    }

    .nav-col:first-child ul {
        display: flex;
        flex-wrap: wrap;
    }

    .nav-col:first-child ul li {
        width: 50%;
    }

    .iframe-area {
        height: 200px;
    }

    .gonta {
        width: 100px;
        height: 90px;
        bottom: 39px;
    }

    .floating-cta {
        width: 100%;
    }

    .cta-label {
        display: none;
    }

    .floating-cta .contact-btn {
        height: 40px;
    }

    .floating-cta .contact-btn a {
        height: 40px;
    }

    .floating-cta .contact-btn.tel-btn a {
        font-size: 12px;
    }

    .cp-line {
        padding: 1em 0 50px 0;
    }

    .breadcrumbs-list li {
        font-size: 12px;
    }

    .event-cards {
        margin-bottom: -10px;
    }
}



.for-p.breadcrumbs {
    color: #fff;
    background-color: #333;
}

.for-p .breadcrumbs-list li a {
    color: #fff;
}

.for-p.ttl01 {
    color: #fff;
    filter: drop-shadow(0 0 1px #000) drop-shadow(0 0 1px #000);
}

.for-p.ttl02 {
    color: #fff;
    filter: drop-shadow(0 0 1px #000) drop-shadow(0 0 1px #000);
}

.for-p.txt {
    color: #fff;
    filter: drop-shadow(0 0 1px #000) drop-shadow(0 0 1px #000);
}

.bg-ex-01-img {
    width: 100%;
    height: 100%;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.bg-ex-01-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    filter: blur(2px);
}

.for-p.bg02 {
    background-image: url('/import/tenant_1/162.43.17.208/images/bg01_v2.webp');
}

.for-p.bg02::after {
    background-image: url('/import/tenant_1/162.43.17.208/images/bg01_v2.webp');
}

.for-p.bg01 {
    background-image: url('/import/tenant_1/162.43.17.208/images/bg01_v2.webp');
}

.for-p.bg01::after {
    background-image: url('/import/tenant_1/162.43.17.208/images/bg01_v2.webp');
}


/* ==============================================
   Aragyoh Page (荒行ページ) 新規レイアウト
   ============================================== */

/* 縦書き見出しを持つ和風パネルレイアウト */
.wafu-panel {
    display: flex;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.ver-w .wafu-panel {
    background-color: #fff;
}

.for-p.wafu-panel {
    background: rgba(0, 0, 0, 0.4);
}

/* 縦書き見出し部分（帯） */
.wafu-panel-header {
    width: 80px;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
    padding: 40px 0;
    color: #fff;
    background: #316745;
}

.wafu-panel-header.for-p {
    background: #4e3257;
}

.wafu-panel-header>* {
    font-weight: bold;
    font-size: 24px;
    line-height: rgb(152, 165, 157);
    writing-mode: vertical-rl;
}

/* 本文・画像エリア */
.wafu-panel-body {
    display: flex;
    align-items: center;
    flex-grow: 1;
    padding: 40px;

    gap: 40px;
}

.wafu-panel-img {
    width: 45%;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 10px;
}

.wafu-panel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wafu-panel-txt {
    flex-grow: 1;
}

/* 左右反転パターン */
.wafu-panel.reverse .wafu-panel-body {
    flex-direction: row-reverse;
}

.message-sec.for-p::before {
    background: rgba(0, 0, 0, 0.5);
}

.message-sec.for-p .para-img {
    filter: blur(5px);
}

.message-sec.for-p .message-box {
    background-color: #333;
}

.wafu-panel-list {
    margin-bottom: -50px;
}

/* タブレット・スマホ対応（縦積みへ） */
@media(max-width: 1024px) {
    .wafu-panel-body,
    .wafu-panel.reverse .wafu-panel-body {
        flex-direction: column;
        padding: 30px;

        gap: 30px;
    }

    .wafu-panel-img {
        width: 100%;
    }
}

@media(max-width: 599px) {
    .wafu-panel {
        flex-direction: column;
    }

    .wafu-panel-header {
        width: 100%;
        justify-content: flex-start;
        padding: 15px 20px;
    }

    .wafu-panel-header>* {
        writing-mode: horizontal-tb;
    }

    .wafu-panel-body,
    .wafu-panel.reverse .wafu-panel-body {
        padding: 20px 10px;

        gap: 20px;
    }

    .wafu-panel-list {
        margin-bottom: -30px;
    }

    .wafu-panel-header>* {
        font-size: 20px;
    }
}

/* ==============================================
   Price Table (料金表レイアウト)
   ============================================== */
.price-table {
    border-top: 2px solid #316745;
    border-bottom: 2px solid #316745;
    border-collapse: collapse;
}

.price-table th,
.price-table td {
    vertical-align: middle;
    padding: 20px;
    border-bottom: 1px solid #dcdcdc;
}

.price-table th {
    width: 30%;
    font-weight: bold;

/* サイト共通のベージュ背景 */
    color: #316745;
    text-align: left;
    background-color: #f6f4ef;
}

@media(max-width: 599px) {
    .price-table th,
    .price-table td {
        width: 100%;
        display: block;
        padding: 15px 10px;
    }

    .price-table th {
        padding-bottom: 5px;
        border-bottom: none;
    }
}





.dtl-box {
    height: 100%;
    padding: 35px 30px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
}


.dtl-ttl {
    margin-bottom: 15px;
    padding-bottom: 5px;
    font-weight: bold;
    font-size: 20px;
    color: #316745;
    border-bottom: 2px solid #316745;
}

.dtl-item {
    margin-bottom: 30px;
}

.dtl-item:last-child {
    margin-bottom: 0;
}

.dtl-label {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 15px;
    color: #316745;
}

.dtl-list {
    display: flex;
    flex-wrap: wrap;
}


.dtl-list dt,
.dtl-list dd {
    padding: 15px 0px;
    font-size: 16px;
    border-bottom: 2px solid #ccc;
}

.dtl-list dt {
    width: 20%;
    font-weight: bold;
    color: #316745;
}

.dtl-list dd {
    width: 80%;
}

.dtl-item a {
    display: inline-block;
    margin-left: 5px;
    padding: 3px 10px;
    font-size: 0.8em;
    color: #fff;
    line-height: 1.2em;
    border-radius: 3px;
    background-color: #316745;
}

.dtl-item a::after {
    content: "";
    width: 6px;
    height: 6px;
    display: inline-block;
    margin-bottom: 2px;
    margin-left: 3px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transition: right 0.5s ease;
    transform: rotate(45deg);
    position: relative;
    z-index: 3;
}

.voice-list li>* {
    background-image: url('/import/tenant_1/162.43.17.208/images/hanamaru.webp');
    background-size: 100px;
    background-repeat: no-repeat;
    background-position: right bottom;
}

.news-list.forall li {
    margin-bottom: 15px;
    border-bottom: 2px solid #316745;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.news-list.forall li:last-child {
    margin-bottom: 0;
}

.news-list.forall li a {
    padding: 20px;
    background-color: #fff;
}

.news-list.forall li a:hover {
    background-color: #f6f4ef;
    opacity: 1;
    transform: translateY(-5px);
}

.cus-block {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.cus-main {
    width: 75%;
}

.cus-side {
    width: 22%;
}

.cus-btn {
    width: 100%;
}

.ct-title {
    padding: 10px 0;
    font-size: 18px;
    color: #fff;
    text-align: center;
    background-color: #316745;
}

.ct-item {
    font-size: 14px;
    text-align: center;
    border-bottom: 1px solid #888;
    background-color: #fff;
}

.ct-item:last-child {
    border: none;
}

.ct-item a {
    display: block;
    padding: 10px 0;
}

.ct-list {
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.ct-list:last-child {
    margin-bottom: 0px;
}

.pagenation {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.pagenation .item {
    margin: 0 10px;
}

.pagenation .prev {
    position: relative;
}

.pagenation .prev a:before {
    content: "←";
    font-weight: 600;
}

.pagenation .next {
    position: relative;
}

.pagenation .next a:before {
    content: "→";
    font-weight: 600;
}

.pagenation a,
.pagenation .now {
    font-weight: bold;
}

.pagenation .number a,
.pagenation .now,
.pagenation .next a,
.pagenation .prev a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-align: center;
    border: none;
    border-radius: 50%;
    background-color: #659b79;
}

.pagenation .number a:hover,
.pagenation .next a:hover,
.pagenation .prev a:hover,
.pagenation .now {
    color: #fff;
    background: #316745;
    opacity: 1;
}

@media (max-width: 599px) {
    .pagenation .item {
        margin: 0 5px;
    }

    .pagenation .prev {
        margin-right: 10px;
    }

    .pagenation .next {
        margin-left: 10px;
    }
}

.cus-detail-area {
    padding: 50px 60px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

@media(max-width:1024px) {
    .cus-block {
        flex-wrap: wrap;
    }

    .cus-main {
        width: 100%;
        order: 1;
    }

    .cus-side {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        order: 2;
        margin-top: 60px;
    }

    .ct-list {
        width: 48%;
        margin-bottom: 0;
    }

    .cus-detail-area {
        padding: 30px 20px;
    }

    .cus-btn {
        order: 3;
    }

    .news-list.forall li a {
        padding: 20px 10px;
    }

    .news-meta {
        display: block;
    }
}

@media(max-width:599px) {
    .ct-list {
        width: 100%;
        margin-bottom: 25px;
    }

    .cus-detail-area {
        padding: 20px 10px;
    }
}

.blog-list.forall li a {
    border-bottom: 3px solid #316745;
}




.cus-meta {
    width: 100%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.cus-date {
    margin-right: 15px;
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 16px;
    color: #316745;
    min-width:90px;
}

.cus-cat>span {
    display: inline-block;
    margin-right: 3px;
    padding: 1px 5px;
    font-weight: bold;
    font-size: 14px;
    color: #316745;
    white-space: nowrap;
    border: 2px solid #ccc;
    background-color: #fff;
}

@media(Max-width:599px) {
    .cus-date {
        margin-right: 12px;
        font-size: 14px;
    }

    .cus-cat>span {
        font-size: 12px;
        border: 1px solid #ccc;
    }

    .cus-meta {
        display: block;
    }
}

/*記事詳細ページ用タイトル*/
.cus-html-area h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 20px;
    color: #fff;
    background: #316745;
}

.cus-html-area h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    padding-left: 10px;
    font-weight: bold;
    font-size: 20px;
    border-left: solid 4px #316745;
}

.cus-html-area h4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    align-items: baseline;
    -ms-flex-align: baseline;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 20px;
}

.cus-html-area h4:before {
    content: "・";
    color: #316745;
}

.cus-html-area ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    align-items: baseline;
    -ms-flex-align: baseline;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
}

.cus-html-area ul li::before {
    content: "■";
    color: #316745;
}

.cus-html-area ol li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    align-items: baseline;
    -ms-flex-align: baseline;
    list-style-type: none;
    counter-increment: cnt;
}

.cus-html-area ol li::before {
    content: ""counter(cnt)".";
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 10px;
    font-weight: bold;
    font-size: 120%;
    color: #316745;
}

.cus-html-area iframe[src*="youtube"] {
    height: 100%;
    display: block;
    margin-top: 1em;
    margin-bottom: 1em;

    aspect-ratio: 16 / 9;
}

.amb01 {
    position: relative;
}

.amb01::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-image: url('/import/tenant_1/162.43.17.208/images/bg09.webp');
    background-size: 50%;
    opacity: 0.5;
    animation: fluid-animation 10s ease 0s infinite normal;
    position: absolute;
    bottom: -50%;
    right: -50%;
    z-index: 0;
    ;
}

.amb02 {
    position: relative;
}

.amb02::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-image: url('/import/tenant_1/162.43.17.208/images/bg07.webp');
    background-size: 50%;
    opacity: 0.5;
    animation: fluid-animation 10s ease 0s infinite normal;
    position: absolute;
    bottom: -50%;
    left: -50%;
    z-index: 0;
    ;
}

.amb03 {
    overflow: hidden;
    position: relative;
}

.amb03::before {
    content: "";
    width: 280px;
    height: 3000px;
    display: block;
    background-image: url('/import/tenant_1/162.43.17.208/images/deco02.webp');
    background-size: 100% auto;
    opacity: 0.5;
    animation: fall-animation 60s ease 0s infinite normal;
    position: absolute;
    bottom: 0;
    left: 30px;
    z-index: 1;
}

.amb03>* {
    position: relative;
    z-index: 2;
}

@keyframes fluid-animation {
    0%,
    100% {
        /* 丸みに近い状態からスタート */
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    }

    50% {
        /* 極端に形を歪ませる（20%と80%を多用） */
        border-radius: 20% 80% 20% 80% / 80% 20% 80% 20%;
    }
}

@keyframes fall-animation {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(1000px);
    }
}






/* form */
.formitem button,
.formitem input,
.formitem select,
.formitem textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: 2px solid #888;
    border-radius: 5px;
    background-color: #fff;
}

.formitem {
    padding: 1em 0;
}

.formitem+.formitem {
    border-top: 2px solid #d4ebdc;
}

.formitem dt {
    width: 30%;
}

.formitem .reqw {
    margin-left: 1em;
    padding: 2px 5px;
    font-family: "Noto Sans JP";
    font-weight: 500;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    background-color: #316745;
}

.formitem dd {
    width: 66%;
}

.formitem dt label {
    font-weight: bold;
}

.formitem dd .inputlist li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
}

.formitem dd .inputlist li+li {
    margin-top: 1em;
}

.formitem dd input {
    width: 100%;
    padding: 0.5em 0.5em;
}

.formitem dd select {
    padding: 0.25em 0.5em;

    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
}

.formitem dd input[type="radio"] {
    display: none;
}

.formitem dd input[type="radio"]+label {
    margin-right: 20px;
    padding-left: 20px;
    line-height: 200%;
    position: relative;
}

.formitem dd input[type="radio"]+label::before {
    content: "";
    width: 10px;
    height: 10px;
    display: block;
    border: 1px solid #316745;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    top: 4px;
    left: 0;
}

.formitem dd input[type="radio"]:checked+label::after {
    content: "";
    width: 8px;
    height: 8px;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 2px;
}

.formitem dd input[type="radio"]:checked+label {
    color: #316745;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.formitem dd textarea {
    width: 100%;
    height: 250px;
    padding: 0.25em 0.5em;
}

@media (max-width:1024px) {
    .formitem dt {
        width: 100%;
        margin-bottom: 0.5em;
    }

    .formitem dt label {
        display: block;
    }

    .formitem dd {
        width: 100%;
    }
}


.form01 .formlist .formitem .checkboxer label {
    display: inline-block;
    margin: 0.5em 0;
    margin-right: 15px;
    padding: 0 10px 0 24px;
    font-weight: bold;
    position: relative;
}

.form01 .formlist .formitem .checkboxer label::before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    border: 1px solid #888;
    border-radius: 3px;
    background-color: white;
    position: absolute;
    top: 7px;
    left: 0;
}

.form01 .formlist .formitem .checkboxer label:hover {
    cursor: pointer;
}

.form01 .formlist .formitem .checkboxer input {
    display: none;
}

.form01 .formlist .formitem .checkboxer input:checked+label::after {
    content: "✓";
    width: 0;
    height: 0;
    display: inline-block;
    font-weight: 900;
    font-size: 20px;
    color: #316745;
    line-height: 1;
    background-color: transparent;
    position: absolute;
    top: 5px;
    left: 2px;
}




[data-element-id].swiper,
[data-element-id].grl,
[data-element-id].swiper-box{
  position:relative;
}

[data-element-id].swiper-wrapper{
  overflow-x: scroll;
  display:flex;

}

[data-element-id].swiper::after,
[data-element-id].grl::after,
[data-element-id].swiper-box::after{
  content:"←　横向きにスクロールできます　→";
  display:block;
  width:100%;
  background-color:yellow;
  color:#111;
  text-align: center;
  position:absolute;
 bottom:18px;
  left:0;
  z-index:5;
}


[data-element-id].swiper-wrapper>*{
  display:block;
}

[data-element-id].grl .swiper-wrapper>* {
  width:22%;
}

[data-element-id].drw-nav {
    right: 0;
    position:absolute;
    height:500px;
}

[data-element-id].toppage .drw-nav {
    height:800px;
}


[data-element-id].header-main{
  padding-right:400px;
  position:absolute;
}

[data-element-id].header-inner{
  flex-wrap:wrap;
}

[data-element-id].header-btns{
  margin-left:60%;
}

[data-element-id].main-visual{
  margin-right:400px;
}

[data-element-id].sns-btn {
   margin:0 10px;
}

[data-element-id].h1-area{
  display:none;
}

[data-element-id].h1{
  display:block;
  background-color:#fff;
}

[data-element-id].suigyo-img img {
    z-index: 5;
}

[data-element-id].guide-list .guide-content{
  pointer-events: auto;
}

[data-element-id].cp-line{
    padding: 1em 0 150px 0;
}

[data-element-id].floating-cta {
    position:absolute;
    bottom:50px;
}

[data-element-id].gonta {
    animation: none;
    position: absolute;
    bottom: 50px;
}

[data-element-id].page-header {
    height:500px;
    margin-right:400px;
}

[data-common-area] {
    padding-top: 0em!important;
}

[data-element-id] .media-meta{
  display:block;
}

[data-element-id].bgbox.mk2{
  z-index:0;
}

.shine a::before{
    content: "";
    position: absolute;
    display: block;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
    width: 50px;
    height: 50px;
    top: -60px;
    left: -60px;
    animation-name: shine-run;
    animation-delay: 0s;
    animation-duration: 3s;
    animation-timing-function: ease-in;
    animation-iteration-count: infinite;
    pointer-events: none;
}

@keyframes shine-run {
    0% {
        transform: scale(0) rotate(50deg);
        opacity: 0;
    }
    40% {
        transform: scale(1) rotate(50deg);
        opacity: 1;
    }
    100% {
        transform: scale(250) rotate(50deg);
        opacity: 0;
    }
}

.translate-setting{
  position:absolute;
  bottom:0;
  left:0;
  z-index:-999;
}

.is-en .main-visual-box01 .inner {
    writing-mode: horizontal-tb;
}

.is-en .main-visual-box02{
  writing-mode: horizontal-tb;
}

.is-en wbr{
  display:none!important;
}

@media (max-width: 599px) {
    .is-en .main-visual-box02 {
        width: 100%;
    }
    
    .map{
      padding-top:100%;
    }
}

.roll-flw{
  display:block;
  width:400px;
  height:400px;
  position:absolute;
  bottom:-30%;
  right:2%;
  background-image:url(/upload/tenant_1/flwc.webp);
  animation: spin 60s linear infinite;
  background-size:contain;
  opacity:0.3;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.history-list.min-dl.mk2 dt{
   display:flex;
  align-items: center;
  justify-content: center;
  width:40px;
    padding:0;
}

.history-list.min-dl.mk2 dt>span{
  width:30px;
  height:30px;
  background-color:#316745;
  display:flex;
  align-items: center;
  justify-content: center;
  line-height:1em;
  color:#fff;
  padding:0;
  border-radius:50%;
}

.history-list.min-dl.mk2 dd{
  width:calc(100% - 40px);

}

.insta-iframe{
  height:0;
  position:relative;
  padding-top:33%;
}

.insta-iframe iframe{
  width:100%;
  height:100%;
  position:absolute;
  top:0;
  left:0;
  z-index:2;
}
