/*
Theme Name: akari-child
Template: akari
Version: 1.0
*/

/************
フォント　＆　共通部分
************/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sen:wght@400;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&display=swap');

:root {
    --akari-beige: #F3EFE7;
    --akari-black: #231815;
}

html {
	scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13.5px;
    line-height: 1.63;
    color: #231815;
    letter-spacing: 0.04rem;
    background-color: #FFFFFF;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a, a:hover, a:visited {
    color: #231815;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
h2 {
    font-family: 'Sen', sans-serif;
    font-weight: 400;
    font-size: 60px;
    letter-spacing: 0;
    margin: 0 0 4px 0;
}
h3 {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.25em;
    margin: 0;
}
section {
    padding: 4%;
    margin-bottom: 0;
    background-color: #FFF;
}
ul {
    padding-inline-start: 0;
}
ul li {
    list-style: none;
}
.kiwi-font {
    font-family: 'Kiwi Maru', serif;
    font-weight: 400;
    letter-spacing: 0.1em;
}

@media (max-width: 599px) {
    body {
        font-size: 12.3px;
    }
    body.page-template-page-landing-php {
        background-color: #000000;
    }
    h2 {
        font-size: 37px;
        line-height: 1em;
    }
    h3 {
        font-size: 13px;
    }
}


/* ヘッダー　　*/
.head-menu {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    z-index: 1000;
    pointer-events: none;
}
.head-menu__container {
    width: 100%;
    height: 100svh;
    position: relative;
    /*display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    gap: 12px;*/
}
.head-menu__top {
    display: flex;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    will-change: transform, opacity;
    padding: 12px 24px;
    justify-content: space-between;
}
.head-menu__top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    pointer-events: auto;
}
.head-menu__top.is-visible {
    position: fixed;
    top: env(safe-area-inset-top, 0px);
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100vw;
    margin: 0 !important;
  }
@media (min-width: 600px) {
    body.has-fixed-header .head-menu__top {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(4px);
    }
}
.head-menu__logo {
    display: inline-flex;
    align-items: center;
}
.head-menu__logo img {
    width: 176px;
    height: auto;
    display: block;
}
.head-menu__bottom {
    display: none;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(calc(-50% + 16px));
    transition: opacity 0.4s ease, transform 0.4s ease;
    will-change: transform, opacity;
}
.head-menu__bottom.is-visible {
    display: none;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%);
}
@media (max-width: 599px) {
    .head-menu__bottom.is-visible {
        display: block;
    }
    .head-menu__bottom {
        background: rgba(35, 24, 21, 0.85);
        backdrop-filter: blur(4px);
        pointer-events: auto;
        transform: translateY(-50%);
        display: block;
    }
    .head-menu__item {
        display: flex;
        flex-direction: column;
        gap: 11px;
        padding: 28px 5px;
        letter-spacing: 0.04em;
        align-items: center;
        min-width: 30px;
    }
    .head-menu__item:first-child {
        border-bottom: .5px solid #ffffff;
    }
    .head-menu__item-label {
        color: #ffffff;
        font-size: 9px;
        display: inline-flex;
        justify-content: center;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        width: 100%; /* 行全体を占有して中央揃えを安定させる */
        align-items: center;
    }
    .head-menu__item img {
        display: inline-block;
        width: 20px;
    }
    .head-menu__item-main {
        font-family: "Sen", 'Noto Sans JP', sans-serif;
        display: inline-flex;
        gap: 10px;
        color: #ffffff;
        font-size: 13px;
        justify-content: center;
        width: 100%; /* 親行全体を使って中央揃えを安定させる */
        /*text-align: center;*/
        
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
    }
    .head-menu__item-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .head-menu__item-icon img {
        width: 20px;
        height: 20px;
    }
    .head-menu__item-text {
        display: inline-flex;
        align-items: center;
        letter-spacing: 0.13em;
    }
    
}

/* フッター */
footer {
    font-family: 'Sen', sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    background-color: #FFF;
}
.footer_content {
    display: flex;
    justify-content:space-between;
    align-items:center;
    padding: 7% 4.5%;
}
.footer-logo img {
    width: 125px;
}
.footer-nav {
    width: min(80%,970px);
    padding: 0 5%;
}
.footer-nav ul {
    display: flex;
    justify-content:space-around;
    flex-wrap: wrap;
    gap: 0 4%;
}
.footer-nav ul li a {
    font-size: 22px;
}
.footer-sns {
    margin-left: 36px;
}
.footer_credit {
    text-align: center;
    padding-bottom: 36px;
}

@media (max-width: 599px) {
    .footer_content {
        display: grid;
        grid-template-columns: 100%;
    }
    .footer-logo, .footer-nav, .footer-sns {
        margin: 20px auto;
        text-align: center;
    }
    .footer-nav ul {
        padding: 0;
    }
    .footer-nav ul li a {
        font-size: 16px;
        line-height: 2;
    }
    footer {
        padding-bottom: 96px;
    }
    .footer-logo img {
        width: 100px;
    }
}


/* スプラッシュ */
html.is-splash-scroll-locked,
body.is-splash-scroll-locked {
    overflow: hidden;
    overscroll-behavior: contain;
}
#splash {
    position: fixed;
    inset: 0;
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    place-items: center;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    background: var(--akari-beige);
    color: var(--fg);
    z-index: 9999;
    opacity: 1;
    --text-gap: clamp(28px, 12vw, 72px);
    --fade-delay: 2000;
    --fade-duration: 500;
    --vt-font-size: clamp(15px, 3.2vw, 19px);
    --vt-line-height: 2.1;
    transition: opacity calc(var(--fade-duration, 900) * 1ms) ease;
}
#splash.fade-out {
    opacity: 0;
    pointer-events: none;
}
#splash .stack {
    display: flex;
    gap: var(--text-gap);
    flex-direction: column;
    align-items: center;
}
#splash .logo {
    width: 128px;
    aspect-ratio: 3 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    overflow: visible;
}
#splash .logo img{
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}
#splash .logo-fallback{
    display: none; /* ロゴ画像が読み込めない時のみ表示 */
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--fg);
    letter-spacing: .1em;
    opacity: .95;
}
#splash .vertical-wrap{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: clamp(120px, 38vmin, 240px);
}
#splash .vertical-lines{
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: 500;
    font-size: 19px;
    line-height: var(--vt-line-height);
    color: #231815;
    letter-spacing: .12em;
    text-align: start;
}
#splash .vertical-lines .l1,
#splash .vertical-lines .l2{
    display: inline-block;
}
@media (prefers-reduced-motion: reduce){
    #splash{ transition: none; }
}



/************
レイアウト　　トップページ
************/

/*------- セクション　　TOP -------*/
#top {
    height: 100vh;
    background-color: #F3EFE7;
    position: relative;
    overflow: hidden;
    padding: 0;
}

/* ヒーロー: 背景画像（中央配置・カバー） */
#top .top-hero__media {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 0;
}
#top .top-hero__media img {
    width: 90%;
    max-width: 90vw;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ヒーロー: オーバーレイ領域 */
#top .top-hero__overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

@property --iris-radius {
    syntax: '<length-percentage>';
    inherits: false;
    initial-value: 0%;
}

#top .top-hero__iris-mask {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    --iris-center-x-auto: 50%;
    --iris-center-y-auto: 36%;
    --iris-center-x: var(--iris-center-x-auto);
    --iris-center-y: var(--iris-center-y-auto);
    --iris-center-x-offset: 0%;
    --iris-center-y-offset: -36%;
    --iris-overlay-opacity: 0.45;
    --iris-start-radius: 10px;
    --iris-final-radius: 100%;
    --iris-duration: 3000ms;
    --iris-delay: 1200ms;
    --iris-radius: var(--iris-start-radius);
    background: radial-gradient(
        circle at
            var(--iris-center-x, var(--iris-center-x-auto, 50%))
            var(--iris-center-y, var(--iris-center-y-auto, 36%)),
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0) var(--iris-radius),
        rgba(0, 0, 0, var(--iris-overlay-opacity)) var(--iris-radius),
        rgba(0, 0, 0, var(--iris-overlay-opacity)) 100%
    );
    transition: none;
}

#top .top-hero__iris-mask.is-iris-active {
    opacity: 1;
    visibility: visible;
    animation: top-hero-iris-in var(--iris-duration, 1200ms) cubic-bezier(0.4, 0.04, 0, 1) var(--iris-delay, 0ms) forwards;
}

#top .top-hero__iris-mask.is-iris-finished {
    visibility: hidden;
    --iris-radius: var(--iris-final-radius, 165%);
}

@keyframes top-hero-iris-in {
    0% {
        visibility: visible;
        opacity: 1;
        --iris-radius: var(--iris-start-radius, 6%);
    }
    100% {
        opacity: 0;
        visibility: hidden;
        --iris-radius: var(--iris-final-radius, 165%);
    }
}

/* テキスト */
#top .top-hero__text {
    position: absolute;
    top: 6%;
    left: 6%;
    color: #231815;
    font-size: max(2vw,29px);
    writing-mode: vertical-rl; /* 縦書き */
    text-orientation: mixed; /* 文字の向きを自然に */
    line-height: 1.8; /* 行間調整 */
}

#top .top-hero__text p {
    margin: 0;
    display: block;
    margin-bottom: 1em; /* 2行目の間隔調整 */
}

#top .top-hero__text p:last-child {
    margin-bottom: 0; /* 最後の行は下マージンなし */
}

/* ロゴ */
#top .top-hero__logo {
    position: absolute;
    right: 4%;
    bottom: 5%;
}
#top .top-hero__logo img {
    width: 160px;
    height: auto;
}

/* スクロール */
#top .scroll {
    position: absolute;
    bottom: 115px;
    left: 6%;
    font-family: 'Sen', sans-serif;
    letter-spacing: 0.09rem;
}
/* 線のアニメーション部分 */
.scroll::before {
  animation: scroll 2s infinite;
  background-color: #000;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/* くるくる */
#top .top-hero__maru {
    position: absolute;
    top: 3%;
    right: 5%;
}
.rotate__cont{
    position: relative;
    width: 250px;
    height: 250px;
    margin:0 auto 30px;
}
.rotate__inner-txt{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    font-size: 14px;
    text-align: center;
    z-index: 1;
    width: 250px;
}
.rotate__inner-txt img {
    margin: 7px auto;
}
.rotate__float{
    animation: rotate 12s infinite linear;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* モバイル微調整 */
@media (max-width: 767px) {
    #top .top-hero__text {
        top: 36px;
        font-size: 19px;
    }
    #top .top-hero__logo {
        bottom: auto;
        top:16px;
    }
    #top .top-hero__logo img {
        width: 107px;
    }

    #top .top-hero__media {
        display: block;
    }
    #top .top-hero__media img {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 110vw;
        height: auto;
        bottom: 7vh;
        max-width: none;
        object-fit: initial;
    }
    #top .top-hero__scroll, #top .top-hero__maru {
        display: none;
    }
}


@media (min-width: 768px) { /* デスクトップ */
    #top .top-hero__media img {
        width: auto;
        height: 93vh;
        max-height: 100vh;
        object-fit: contain;
        object-position: center;
    }
}

/* 画面の高さが800px以下の場合 - デスクトップ用スタイルを上書き */
@media (max-height: 800px) and (min-width: 768px) {
    #top .top-hero__media img {
        width: 800px !important;
        height: 100vh !important;
        object-fit: cover !important;
        object-position: center !important;
    }
}

/* -------セクション　　Concept------- */
#concept {
    padding: 0;
    position: relative;
    min-height: 500px;
}
.concept_imagearea {
    padding:200px 0 60px 0;
}
.concept_txtarea {
    background-color: #fff;
    padding: 1.8em 1.2em;
    position: absolute;
    left: 4%;
    top: 15%;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    line-height: 0.87;
    font-size: min(18px, 2.6vw);
    letter-spacing: 0.04em;
}
.concept_txtarea p{
    white-space: nowrap;
}

.slide {
    margin: 0 20px;
}
@media (max-width: 599px) {
    .slide {
        margin: 0;
    }
    .concept_imagearea {
        padding:0 0 100px 0;
    }
    .concept_txtarea {
        padding: 0.9em 0.7em;
        top: auto;
        bottom: 0;
        font-size: min(15.5px, 4vw);
    }
    .concept_txtarea p {
        margin: 10.5px;
    }
}

/* インジケーター */
.dots-wrap {
    display: flex;
    justify-content: right;
    margin: 24px 4%;
}
.dots-wrap li {
    width: 20px;
    height: 1px;
    margin: 0 5px;
    background: #231815;
    opacity: 0.35;
    cursor: pointer;
}
.dots-wrap li:hover,
.dots-wrap li.slick-active {
    background: #231815;
    opacity: 1;
}
.dots-wrap li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}


/* -------セクション　　Service------- */
#service {
    display: flex;
    padding-top: 12%;
}
.service_title {
    width: 300px;
    margin-right: 4%;
}
.service_content {
    width: 100%;
}
.service_content ul {
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    margin: 0;
}
.service_content ul li{
    width: calc(91% / 2);
    margin-bottom: 6%;
    padding: 0 3% 3% 0;
    border-right: solid 1px #231815;
    border-bottom: solid 1px #231815;
}
.serv_img_area_child {
    display: flex;
    justify-content:space-between;
    padding-top: 1%;
}
.serv_img_area_child img {
    width: calc(99% / 2);
}
.serv_img_area {
    position: relative;
}
.floor_badge {
    position: absolute;
    font-family: 'Sen', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #FFF;
    width: 65px;
    height: 65px;
    text-align:center;
    line-height:65px;
    background-color: #231815;
    border-radius: 999px;
    right: 16px;
    bottom: -32.5px;
}
.floor_badge_small {
    font-size: 16px;
}
.serv_txt_area {
    padding: 32px 6% 0 9%;
}
.serv_txt_area_name {
    margin: 1.2rem 0;
}
.serv_txt_area p {
    margin: 1.2rem 0;
    min-height: 4.5rem;
}
.serv_name_sub {
    font-size: 12.3px;
}
.serv_name_main {
    font-size: max(24.5px, 1.85vw);
    font-weight: 500;
}
.serv_txt_area_info {
    background-color: #F3EFE7;
    font-size: 11px;
    padding: 3%;
    margin: 1.2rem 3% 1.2rem 6%;
}
.serv_txt_area_info p{
    margin-block-start: 0.1em;
    margin-block-end: 0.1em;
}
.serv_button_area {
    padding: 0 6% 0 9%;
}
.serv_button_area a {
    display: inline-block;
}
.serv_button_area img {
    width: 25px;
}
.serv_button_area button {
    width: 160px;
    height: 35px;
    margin: 0 auto;
    text-align: center;
    border: solid 1px #231815;
    line-height: 33px;
    background-color: #FFF;
    font-size: 13px;
    display: block;
    letter-spacing: 0.13rem;
    margin-bottom: 1rem;
    transition: 0.3s;
    color: #231815;
}
.serv_button_area a button:hover {
    background-color: #231815;
    color: #FFF;
    transition: 0.3s;
}
.serv_button_area a button:visited {
    color: #231815;
}
.button_more {
    text-align: center!important;
}
.serv_txt_area_item {
    display: flex;
    flex-wrap: wrap;
    padding: 0 6% 0 9%;
}
.serv_txt_area_item div {
    background-color: #F3EFE7;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 8px 0 0;
    padding: 2px 8px;
    border-radius: 999px;
}
.fade-in-on-scroll {
    opacity: 0;
    visibility: hidden;
    transform: translateY(70px);
    transition: opacity 1.7s ease-out, transform 1.7s ease-out, visibility 1.7s;
    will-change: opacity, transform;
}
.fade-in-on-scroll.is-fadein-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 599px) {
    #service {
        display: block;
        padding-left: 0;
        padding-right: 0;
    }
    .service_title {
        width: 100%;
        margin-right: 0;
        margin-bottom: 56px;
        text-align: center;
    }
    .service_content ul li {
        width: 100%;
        border: none;
        padding: 0;
        margin-bottom: 64px;
    }
    .serv_txt_area {
        padding-right: 9%;
    }
    .serv_txt_area_info {
        margin-right: 6%;
    }
    .serv_button_area {
        padding-right: 9%;
    }
    .floor_badge {
        width: 58px;
        height: 58px;
        bottom: -28px;
        font-size: 15px;
        line-height: 59px;
    }
}

/*　　モーダル用CSS　　*/
/* モーダル本体 */
.modal__wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1100;
    width: 100%;
    height: 100%;
}

/* モーダルの背景 (レイヤー) */
.modal__layer {
    height: 100%;
    background: rgba(50, 50, 50, .85);
    cursor: pointer;
}

/* モーダルの中身 (コンテナ) */
.modal__container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(80%, 400px);
    max-height: calc(100% - 40px);
    padding: 3%;
    background: #fff;
    border-radius: 4px;
}

/* モーダル内のスクロールエリア */
.modal__inner {
    position: relative;
    overflow-y: scroll; /* コンテンツがはみ出したらスクロール可能に */
    height: 100%;
    padding: 0 0 30px 0;
}

/* モーダルを閉じるボタン */
.modal__close {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    cursor: pointer;
    transition: opacity .6s;
    border-radius: 50%;
}
.modal__close:hover {
    opacity: .6;
}

/* 閉じるボタンの「X」マーク */
.modal__close:before, .modal__close:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 1px;
    background: #231815;
    content: '';
}
.modal__close:before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* モーダル内のテキストスタイル */
.modal__title {
    font-size: 25px;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
}
span.modal__subtitle {
    font-size: 13px;
}
span.modal__subtitle::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 24px;
    background-color: #231815;
    margin-right: 16px;
    margin-left: 16px;
    vertical-align: middle;
}
.modal__text {
    margin-top: 20px;
    line-height: 1.8;
}
/* モーダル内のテーブルスタイル */
.modal_table {
    width: 100%;
    margin-top: 30px;
    border-collapse: collapse;
    border-bottom: 1px solid #231815;
}
.modal_table th,
.modal_table td {
    padding: 2px 15px;
    border-top: 1px solid #231815;
    text-align: left;
    font-size: 13px;
}
.modal_table th {
    width: 42%;
    background-color: #F3EFE7;
    font-weight: normal;
}

/* モーダル内ボタンのスタイル */
.modal_button_cont {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
    margin-top: 36px;
}
.modal_button_cont a {
    flex: 1;
    text-decoration: none;
    color: inherit;
}
.modal_button_cont a div {
    border: solid 1px #231815;
    padding: 10px;
    text-align: center;
    transition: 0.3s;
}
/* 1つのaタグの場合は幅100% */
.modal_button_cont a:only-child {
    flex: 1;
}
/* 2つのaタグの場合は2カラム */
.modal_button_cont a:not(:only-child) {
    flex: 1;
}
.modal_button_cont a div:hover {
    background-color: #231815;
    color: #FFF;
    transition: 0.3s;
}
.modal_title_small {
    margin-top: 4rem;
    margin-bottom: 1em;
    font-weight: 500;
    font-size: 1.2em;
}
ul.modal_hiroba_list {
    display: flex;
    flex-wrap: wrap;
}
ul.modal_hiroba_list li:after {
    margin-left: 10px;
    margin-right: 10px;
    content: "／";
}
ul.modal_hiroba_list li:last-child:after {
    content: "";
}

@media (max-width: 599px) {
    .modal__title {
        font-size: 21px;
    }
}


/* -------セクション　　floormap------- */
#floormap {
    background-color: #F3EFE7;
}
.floormap_content {
    display: flex;
    justify-content:space-between;
    flex-direction: row-reverse;
    margin: 10% 10%;
}
.floormap_content .floor {
    width: 40%;
    position: relative;
}
.floor-tag {
    background-color: #231815;
    color: #FFF;
    width: 102px;
    height: 38px;
    position: absolute;
    left: -70px;
    font-size: 21px;
    text-align: center;
    line-height: 38px;
}
@media (max-width: 1000px) {
    .floor-tag {
        width: 64px;
        height: 24px;
        font-size: 15px;
        line-height: 24px;
    }
}
@media (max-width: 599px) {
    #floormap {
        padding: 56px 0 56px 0;
    }
    .floormap_content { 
        display: block;
        margin: 0;
    }
    .floormap_content .floor {
        width: 100%;
    }
    .floor-tag {
        left: 0;
    }
    .floormap_content .floor img {
        margin: 15%;
        width: 70%;
    }
    .service_title {
        margin-top: 56px;
    }
}

/* -------セクション　　instagram------- */
#Instagram {
    padding-top: 150px;
    padding-bottom: 150px;
}
.insta_title {
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Sen', sans-serif;
    font-size: 16px;
}
.insta_title img {
    margin: 0 auto;
    display: block;
}
.insta_cont {
    display: flex;
    flex-wrap:nowrap;
    justify-content:space-between;
    align-items: center;
}
.insta_cont img {
    width: 15%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}
.center_ist{
    text-align: center;
    padding: 6em 0;
}
/* ===== Instagram グリッド調整 ===== */

#Instagram .insta_cont {
    display: block;
}

#Instagram .akari-instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
}

#Instagram .akari-instagram-item img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

@media (max-width: 999px) {
    #Instagram {
        padding-top: 76px;
        padding-bottom: 76px;
    }
    .insta_cont {
        flex-wrap:wrap;
    }
    .insta_cont img {
        width: 30%;
        margin-bottom: 5%;
    }
    #Instagram .akari-instagram-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        max-width: 420px;
    }

}


/* -------セクション　　Works------- */
#works {
    background-color: #231815;
    color: #fff;
    position: relative;
}
.works_title {
    position: absolute;
    top: 160px;
}
.work {
    width: 75%;
    margin: 8% 0;
    background-color: #FFF;
    color: #231815;
    display: flex;
}
.work:nth-child(odd) {
    margin-left: auto;
    margin-right: 0;
}
.work_head {
    width: 45%;
    padding-bottom: 2rem;
}
.works_logo {
    margin-left: auto;
    margin-right: auto;
}
.works_logo_01 {
    width: 130px;
    margin-top: -25px;
}
.works_logo_02 {
    width: 238px;
    margin-top: 16px;
}
.works_logo_03 {
    width: 146px;
    margin-top: -20px;
}
.work_txtarea {
    width: 43%;
    padding: 2rem 6% 120px 6%;
    position: relative;
}
.work_title, .work_subtitle {
    text-align: center;
}
.work_title {
    font-size: 26px;
    margin-top: 1.7em;
    margin-bottom: 0.7em;
}
.work_title span {
    font-size: 17px;
}
.work_subtitle {
    font-size: 18px;
    color: #88C769;
    margin: 0 auto 2.3em auto;
    width: fit-content;
    /*括弧*/
    position: relative;
    display: flex;
    justify-content: center;/*左右中央配置*/
    align-items: center;/*上下中央配置*/

}
.work_subtitle:before,
.work_subtitle::after {
    content: '';
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 2px solid #88C769;
    
}
.work_subtitle:before {
    left: -25px;
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-right-color: transparent;
}
.work_subtitle:after {
    right: -25px;
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.work_morebutton {
    position: absolute;
    bottom: -3%;
    right: -3%;
    background-color: #738C66;
    color: #FFF;
    text-align: center;
    width: 366px;
    height: 74px;
    display: flex;
    font-size: 14px;
    justify-content: center;/*左右中央配置*/
    align-items: center;/*上下中央配置*/
    transition: 0.3s;
}
.work_morebutton:hover {
    background-color: #aebfa5;
    transition: 0.3s;
}
.work_morebutton img {
    display: inline-block;
    margin-left: 1em;
}
@media (max-width: 849px) {
    .works_title {
        position: initial;
        top: 0;
        margin: 3rem 0;
        text-align: center;
    }
    .work {
        width: 100%;
    }
}
@media (max-width: 599px) {
    .work {
        display: block;
    }
    .work_head {
        width: 100%;
    }
    .work_txtarea {
        width: 100%;
        padding: 0;
    }
    .work_txtarea p {
        padding: 0 6%;
    }
    .work_morebutton {
        position:initial;
        width: 100%;
        margin-top: 60px;
    }
    .work_title {
        font-size: 21px;
        margin-top: 0;
    }
    .work_title span {
        font-size: 13px;
    }
    .work_subtitle {
        font-size: 14px;
    }
}


/* -------セクション　　Open------- */
#open {
    position: relative;
    padding: 90px 0 90px 4%;
    display: flex;
}
.open_title {
    position: absolute;
    top: 12%;
}
.open_txtarea {
    width: 50%;
    position: relative;
}
.open_imgarea {
    width: 50%;
}
.open_txt {
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 320px;
}
.open_time {
    font-family: 'Sen', sans-serif;
    font-size: 39px;
    letter-spacing: 0.06rem;
    margin: 0;
}
.open_day {
    font-size: 20px;
    margin: 0.3rem 0 2.5rem 0;
}
.open_attention {
    font-size: 14.5px;
    line-height: 24px;
}
span.open_under_line {
    border-bottom: solid 1px #231815;
}
span.open_under_line img {
    display: inline-block;
    margin: 0 0.5rem 0 0.25rem;
}
@media (max-width: 999px) {
    #open {
        position: initial;
        padding: 0;
        display: block;
    }
    .open_title {
        position: initial;
        text-align: center;
        padding: 4.5rem 0;
    }
    .open_txtarea {
        width: fit-content;
        position: initial;
        text-align: center;
        margin: 0 auto;
    }
    .open_txt {
        position: initial;
    }
    .open_imgarea {
        width: 100%;
    }
    .open_day {
        margin: 0.3rem 0 1.5rem 0;
    }
    .open_attention {
        margin-bottom: 4.5rem;
    }
}
@media (max-width: 599px) {
    .open_time {
        font-size: 26px;
    }
    .open_day {
        font-size: 13px;
    }
    .open_attention {
        font-size: 13px;
    }

}

/* -------セクション　　Access------- */
#access {
    background-color: #F3EFE7;
    position: relative;
    padding: 90px 0 90px 4%;
    display: flex;
}
.access_title {
    position: absolute;
    top: 12%;
}
.access_txtarea {
    width: 50%;
    position: relative;
}
.access_map {
    width: 50%;
    /*google map ボタン非表示*/
    position: relative;
    overflow-y: hidden;
    padding-top: 33%;
}
.access_map iframe {
    width: 100%;
    aspect-ratio: 3 / 2;
    /*google map モノクロ*/
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    /*google map ボタン非表示*/
    position: absolute;
    top: -150px;
    left: 0;
    width: 100%;
    height: calc(100% + (150px * 2));
}
.access_txt {
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 320px;
    font-size: 14.5px;
}
.access_small {
    font-size: 11px;
}
.access_p {
    display: flex;
    align-items: center;/*上下中央配置*/
}
.access_p img {
    display: inline-block;
    margin-right: 0.5rem;
    
}
@media (max-width: 999px) {
    #access {
        position: initial;
        padding: 0;
        display: block;
        background-color: #FFF;
    }
    .access_title {
        position: initial;
        text-align: center;
        padding: 4.5rem 0;
    }
    .access_txtarea {
        width: fit-content;
        position: initial;
        margin: 0 auto 4.5rem auto;
    }
    .access_txt {
        position: initial;
    }
    .access_map {
        width: 100%;
        padding-top: 50%;
    }
}
@media (max-width: 599px) {
    .access_txt {
        font-size: 13px;
    }
    .access_map {
        padding-top: 100%;
    }
}


/* -------セクション　　Operating company------- */
#company {
    position: relative;
    padding: 90px 0 90px 4%;
    display: flex;
    background-color: #FFF;
}
.company_title {
    position: absolute;
    top: 12%;
}
.company_txtarea {
    width: calc(45% + 320px);
    margin-top: 180px;
    padding-left: calc(45% - 320px);
    padding-right: 10%;
}
.company_txt {
    font-size: 14.5px;
}
.company-info-table {
    border-top: 1px solid #231815; 
}
.info-row {
    display: flex;
    align-items: flex-start;
    padding: 13px 0;
    border-bottom: 1px solid #231815;
}
.info-label {
    flex: 0 0 20%; 
    font-weight: 500;
    padding: 0 3%;
}
.info-value {
    flex-grow: 1;
    padding: 0 3%;
}
.kaigyo_onry_mb {
    display: none;
}


@media (max-width: 999px) {
    #company {
        position: initial;
        padding: 0;
        display: block;
        background-color: #FFF;
    }
    .company_title {
        position: initial;
        text-align: center;
        padding: 4.5rem 0;   
    }
    .company_txtarea {
        width: fit-content;
        position: initial;
        margin: 0 auto;
        padding: 0 0 60px 0;
    }
    .company_txt {
        position: initial;
    }
    .kaigyo_onry_mb {
        display: inline-block;
    }

}
@media (max-width: 599px) {
    .company_txtarea {
        min-width: 300px;
    }
    .company_txt {
        font-size: 13px;
    }
    .info-row {
        flex-direction: column; /* 画面が狭いときは縦並びにする */
        padding: 15px 0;
    }
    .info-label {
        flex: auto; /* 幅固定を解除 */
        margin-bottom: 5px; /* 縦並びにしたときの値との間隔 */
        padding-right: 0;
    }
    .company_title h2 {
        font-size: 27px;
        margin-bottom: 12px;
    }
}


/************
レイアウト　　コンタクトページ
************/
#contact {
    position: relative;
    padding: max(14vh,90px) 4% 30px 4%;
    display: flex;
}
.contact_title {
    position: absolute;
}
.contact_txtarea {
    width: 80%;
    margin-left: auto;
    margin-right: 0;
    position: relative;
}
.contact_txt {
    max-width: 630px;
    margin: 0 auto;
}
.contact_kugiri_br {
    display: none;
}
span.contact_kugiri::before {
    content: "|" ;
    margin: 0 2em;
}
@media (max-width: 1247px) {
    .contact_txt {
        max-width: 560px;
    }
}
@media (max-width: 999px) {
    #contact {
        position: initial;
        padding: 50px 0 0 0;
        display: block;
    }
    .contact_title {
        position: initial;
        text-align: center;
        padding: 4.5rem 0;
    }
    .contact_txtarea {
        width: fit-content;
        position: initial;
        text-align: center;
        margin: 0 auto;
    }
}
@media (max-width: 599px) {
    .contact_txt {
        margin: 0 4%;
    }
    .contact_kugiri_br {
        display: inline;
    }
    span.contact_kugiri::before {
        content: "" ;
        margin: 0;
    }
}

 .iframe-container {
    width: auto; 
    height: 1230px;
    overflow: hidden; 
    position: relative; 
  }
  .iframe-content {
    width: 100%; 
    height: calc(100% + 200px + 100px); 
    position: absolute;
    top: -200px;
    left: 0;
  }
  .iframe-content iframe {
    width: 100%;
    height: 100%;
  }

  @media (max-width: 1247px) {
    .iframe-container {
        height: 1200px;
    }
  }

  @media (max-width: 999px) {
    .iframe-container {
        height: 1200px;
    }
  }

/************
レイアウト　　コンタクトページ
************/
#notfound {
    position: relative;
    padding: max(14vh,90px) 4% 30px 4%;
    display: flex;
}
.notfound_txtarea {
    width: 80%;
    margin-left: auto;
    margin-right: 0;
    margin-top: 200px;
    position: relative;
}
.notfound_button_cont {
    display: flex;
    justify-content: space-between;
    margin: 5em 0;
}
.notfound_button_cont .modal_button_cont {
    margin: 0;
    width: 31%;
}
.notfound_txt {
    background-color: #F3EFE7;
    padding: 3%;
    margin-top: 5em;
}
.notfound_txt span {
    font-weight: 500;
}
.notfound_txt span::before {
    content: '〈';
    margin-right: 0.5em;
}
.notfound_txt span::after {
    content: '〉';
    margin-right: 1em;
    margin-left: 0.5em;
}
@media (max-width: 999px) {
    #notfound {
        position: initial;
        padding: 50px 0 0 0;
        display: block;
    }
    .notfound_txtarea {
        width: fit-content;
        position: initial;
        text-align: center;
        margin: 0 auto;
    }
    .notfound_button_cont {
        display: block;
    }
    .notfound_button_cont .modal_button_cont {
        width: 80%;
        margin: 1em auto;
    }
    .notfound_txt {
        margin: 5em 4% 0 4%;
    }
}