/*
Theme Name: 東京ガーデンテラス紀尾井町
*/

/* ========================================
   基本設定
======================================== */

:root {
    --color-base: #55555a;
    --color-bg: #f1f2ed;
    --color-red: #ff1d25;
    --font-en: "Jost", sans-serif;
    --font-display: "Jost", "Zen Kaku Gothic New", sans-serif;
    --height-header: 80px;
    --space-x: 34px;
    --space-x-neg: calc(var(--space-x) * -1);
    --width-max: 460px;
}

body {
    color: var(--color-base);
    font-family: YakuhanJP, "Zen Kaku Gothic New", sans-serif;
    font-optical-sizing: auto;
    font-size: 14px;
    font-weight: 500;
    overflow-x: hidden;
    width: 100%;
}

img {
    height: auto;
    width: 100%;
    max-width: 100%;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
}

dt {
    font-weight: 700;
}

article p,
section p {
    line-height: 1.85;
}

/* ========================================
   ヘッダー
======================================== */

.header {
    background-color: #ffffff;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: var(--width-max);
    z-index: 99;
}

.home .header {
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.header.visible {
    opacity: 1;
    transform: translateY(0);
}

.header-container {
    align-items: center;
    display: flex;
    height: var(--height-header);
    justify-content: space-between;
    margin: 0 auto;
    padding: 20px var(--space-x) 18px;
}

/* logo */
.header-logo {
    position: relative;
    top: 0;
    left: 0;
}

.header-logo img {
    height: 42px;
    width: auto;
}

/* menu */
.button-menu {
    background-color: #ffffff;
    border: none;
    cursor: pointer;
    display: block;
    height: var(--height-header);
    position: fixed;
    top: 0;
    right: calc(var(--space-x) - 10px);
    width: 60px;
    z-index: 100;
}

.button-bar {
    background-color: var(--color-base);
    display: block;
    height: 1px;
    position: absolute;
    top: calc(var(--height-header) / 2);
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
}

.button-bar::before,
.button-bar::after {
    background-color: var(--color-base);
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    transition: 0.3s ease;
    width: 100%;
}

.button-bar::before {
    top: 12px;
}

.button-bar::after {
    bottom: 12px;
}

.menu-open .button-menu .button-bar {
    height: 0;
}

.menu-open .button-menu .button-bar::before {
    opacity: 1;
    top: 50%;
    transform: rotate(32deg) translateY(-50%);
}

.menu-open .button-menu .button-bar::after {
    opacity: 1;
    top: 50%;
    transform: rotate(-32deg) translateY(-50%);
}

/* ========================================
   グローバルメニュー
======================================== */

.menu {
    background-color: var(--color-base);
    display: flex;
    flex-direction: column;
    height: calc(100svh - var(--height-header));
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    position: fixed;
    top: var(--height-header);
    right: 0;
    transition: opacity 0.5s ease;
    width: 100%;
    max-width: var(--width-max);
    z-index: 99;
}

.menu.open {
    border-top: 1px solid #ffffff;
    opacity: 1;
    pointer-events: auto;
}

.menu-list a {
    color: #ffffff;
    display: block;
    padding-inline: var(--space-x);
    transition: all 0.3s;
    width: 100%;
}

.menu-item {
    border-bottom: 1px solid #ffffff;
    transition: all 0.3s;
}

.menu-item:hover {
    background-color: #6f6f76;
}

.menu-item > a {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    justify-content: center;
    min-height: 70px;
    position: relative;
}

.menu-item > a[data-en] {
    font-size: 12px;
}

.menu-item > a[data-en]::before {
    font-size: 26px;
    margin-bottom: 1px;
}

.menu-item a .plus-icon {
    display: inline-block;
    height: 18px;
    position: absolute;
    top: 50%;
    right: var(--space-x);
    transform: translateY(-50%);
    width: 18px;
}

.menu-item a .plus-icon::before,
.menu-item a .plus-icon::after {
    background-color: #ffffff;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.2s;
}

.menu-item a .plus-icon::before {
    height: 100%;
    width: 2px;
}

.menu-item a .plus-icon::after {
    height: 2px;
    width: 100%;
}

.menu-item.open a .plus-icon::before {
    content: none;
}

.has-submenu .submenu {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.has-submenu.open .submenu {
    height: auto; /* JSで動的に設定 */
    margin-bottom: 20px;
}

.submenu-item > a {
    padding-block: 12px;
}

.submenu-item > a:hover {
    opacity: 0.8;
}

/* menu-list-sub */
.menu-list-sub {
    display: flex;
    flex-direction: column;
    gap: 14px 0;
    padding: 24px var(--space-x);
}

.menu-list-sub a {
    color: #ffffff;
    display: block;
    font-size: 13px;
    line-height: 1.7;
    padding: 0 0 0 1em;
    position: relative;
}

.menu-list-sub a::before {
    content: "●";
    position: absolute;
    top: 0;
    left: 0;
}

.menu-list-sub a:hover {
    opacity: 0.8;
}

/* body固定用 */
body.menu-open {
    overflow: hidden;
    height: 100vh;
}

/* ========================================
   フッター
======================================== */

.footer {
    background-color: #ffffff;
    position: relative;
}

/* footer-logo */
.footer-logo {
    margin: 0 auto;
    width: 88px;
}

/* footer-sns */
.footer-sns {
    display: flex;
    gap: 0 16px;
    justify-content: center;
    margin: 40px var(--space-x);
}

.footer-sns li {
    width: 32px;
}

/* footer-link */
.footer-link {
    display: flex;
    justify-content: center;
    margin: 40px var(--space-x);
}

.footer-link a {
    font-size: 11px;
    padding: 0 0.5em;
}

.footer-link li:nth-child(2)::before,
.footer-link li:nth-child(2)::after {
    content: "│";
    vertical-align: -0.1em;
}

/* footer-sdgs */
.footer-sdgs {
    display: block;
    margin: 0 var(--space-x);
}

/* copyright */
.copyright {
    background-color: var(--color-base);
    color: #ffffff;
    font-family: var(--font-en);
    font-size: 12px;
    margin: 30px 0 0;
    padding: 25px 0;
    text-align: center;
}

/* footer-extra */
.footer-extra {
    background-color: var(--color-bg);
    margin: 0 0 70px;
    padding: 50px var(--space-x) 60px;
}

.footer-section:not(:first-of-type) {
    border-top: 1px solid;
    margin-top: 40px;
    padding: 50px 0 0 0;
}

.footer-section h3 {
    font-weight: 500;
}

/* footer-access */
.footer-access h3 {
    font-size: 15px;
    margin: 0 0 25px;
}

.footer-access h3[data-en]::before {
    font-size: 30px;
}

.footer-access p,
.footer-access dl {
    font-size: 15px;
    letter-spacing: 0.025em;
    line-height: 2;
}

.footer-access dt {
    font-weight: inherit;
}

/* footer-facility */
.footer-facility h3 {
    font-size: 20px;
    margin: 0 0 20px;
}

.facility-link a {
    display: block;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 35px 14px 0;
}

/* ========================================
   共通要素：ボタン・見出し・レイアウトなど
======================================== */

#content {
    margin-left: auto;
    width: var(--width-max);
}

.content-wrapper {
    background-color: #ffffff;
    padding: 80px var(--space-x);
}

.section-bg {
    background-color: var(--color-bg);
    margin-inline: var(--space-x-neg);
    padding-inline: var(--space-x);
}

/* en */
[data-en]::before {
    content: attr(data-en);
    display: block;
    font-family: var(--font-en);
    font-weight: 300;
    letter-spacing: 0;
    text-transform: uppercase;
}

[data-en="Instagram"]::before {
    text-transform: none;
}

/* link */
a,
a img {
    transition: all 0.15s ease-out;
}

a:hover img {
    opacity: 0.8;
}

.link-color {
    color: #29abe2;
}

.link-color:hover {
    opacity: 0.9;
}

.link-arrow {
    background-image: url(./images/arrow_link.svg);
    background-position: right 2px center;
    background-repeat: no-repeat;
    background-size: 30px;
    display: block;
    transition: all 0.15s ease-out;
}

.link-arrow-white {
    background-image: url(./images/arrow_link_white.svg);
}

.link-arrow:hover {
    background-position: right center;
}

/* mark */
.mark-square::before {
    content: "■";
}

/* table */
.table div {
    border-top: 1px solid;
    line-height: 1.5;
    padding: 18px 0 14px;
}

.table div:last-of-type {
    border-bottom: 1px solid;
}

.table dt {
    font-size: 12px;
    margin: 0 0 16px;
}

.table dt span::before {
    content: "■";
}

.table dd {
    position: relative;
}

.table .button-map {
    border-radius: 0;
    margin: 0;
    padding: 2px 0;
    position: absolute;
    right: 0;
    bottom: 5px;
    width: 80px;
}

/* button */
.button {
    border: 1px solid;
    border-radius: 23px;
    display: block;
    font-size: 13px;
    letter-spacing: 0.025em;
    margin: 30px 0 0;
    padding: 14px 0;
    text-align: center;
    transition: all 0.15s ease-out;
    width: 140px;
}

.button-outline {
    color: var(--color-base);
}

.button-filled {
    background-color: var(--color-base);
    color: #ffffff;
}

.button:hover {
    transform: translateY(1px);
    box-shadow: 0 4px 5px rgba(85, 85, 90, 0.1);
}

/* breadcrumb */
.breadcrumb,
.aioseo-breadcrumbs {
    margin: 18px 0 48px;
}

.breadcrumb-list {
    display: flex;
    font-size: 12px;
    flex-wrap: wrap;
    line-height: 1.4;
}

.breadcrumb-list li:not(:last-of-type)::after {
    content: "＞";
    margin: 0 0.35em;
}

/* heading */
.page-heading {
    margin: 0 0 40px;
    text-align: center;
}

.page-heading span {
    display: block;
}

.page-heading-en {
    font-family: var(--font-en);
    font-size: 30px;
    font-weight: 300;
}

.page-heading-jp {
    font-size: 15px;
    margin: 18px 0 0 0;
}

.page-heading-jp-large {
    font-size: 22px;
}

/* link-list */
.link-list:not(:last-of-type) {
    margin-bottom: 50px;
}

.link-list dt {
    letter-spacing: 0.05em;
    margin: 0 0 20px;
}

/* button-group */
.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.button-group li {
    width: calc((100% - 20px) / 2);
}

.button-nav {
    background-color: var(--color-bg);
    border: 1px solid;
    border-radius: 5px;
    display: block;
    font-size: 12px;
    padding: 12px 0;
    text-align: center;
    transition: all 0.15s ease-out;
    width: 100%;
}

.button-nav:hover {
    transform: translateY(1px);
    box-shadow: 0 4px 5px rgba(85, 85, 90, 0.1);
}

/* slider */
.swiper {
    padding: 0 0 20px;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0;
}

.swiper-pagination-bullet {
    background: #ffffff;
    border: 1px solid;
    height: 9px;
    opacity: 1;
    width: 9px;
}

.swiper-pagination-bullet-active {
    background: var(--color-base);
}

/* modal */
.modal {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    inset: 0;
    justify-content: center;
    opacity: 0;
    position: fixed;
    padding: 20px;
    transition: 0.3s;
    visibility: hidden;
    z-index: 100;
}

.modal.is-active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background-color: #ffffff;
    position: relative;
    max-width: 590px;
    width: 100%;
}

.modal-close {
    background-color: var(--color-base);
    cursor: pointer;
    display: block;
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
}

.modal-close::before,
.modal-close::after {
    background-color: #ffffff;
    content: "";
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
}

.modal-close::before {
    transform: translate(-50%, -50%) rotate(60deg);
}

.modal-close::after {
    transform: translate(-50%, -50%) rotate(-60deg);
}

/* 背景固定用 */
body.is-fixed {
    overflow: hidden;
}

/* ----------------------------------------
   サイド
---------------------------------------- */

#side {
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - var(--width-max));
}

.side-image {
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

.side-content {
    padding: 60px 0 0 50px;
    position: relative;
}

.side-logo {
    margin: 0 0 13.88vw;
    width: 120px;
}

.side-text {
    margin: 0 0 3.47vw;
}

.side-text > span {
    display: inline-block;
    position: relative;
}

.side-text > span:first-child {
    margin-bottom: 34px;
}

.side-text span span {
    color: #ffffff;
    display: block;
    font-size: 34px;
    font-weight: 400;
    letter-spacing: 0.3em;
    line-height: 1.7;
    padding: 0 6px;
    position: relative;
    z-index: 2;
}

.side-nav {
    display: flex;
    flex-direction: column;
    gap: 2.43vw 0;
}

.side-nav li a {
    display: inline-block;
    transition: .3s;
}

.side-nav li a:hover {
    opacity: 0.8;
}

.side-nav span {
    color: #ffffff;
    display: block;
    font-family: var(--font-en);
    font-size: 16px;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 2;
}

/* ========================================
   一覧・アーカイブ
======================================== */

/* ----------------------------------------
   共通
---------------------------------------- */

/* post-list */
.post-list {
    display: flex;
    flex-wrap: wrap;
    gap: 48px 20px;
}

.post-pickup {
    margin-bottom: 48px;
}

.post-item {
    width: calc((100% - 20px) / 2);
}

.post-pickup .post-item {
    width: 100%;
}

.post-thumbnail {
    position: relative;
}

.post-pickup .post-item .post-thumbnail {
    margin-inline: var(--space-x-neg);
}

.post-thumbnail img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.post-title {
    font-weight: 500;
    line-height: 1.5;
}

.post-date {
    font-family: var(--font-en);
    font-size: 12px;
    letter-spacing: 0.025em;
    line-height: 1.5;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.post-category,
.post-new {
    border: 1px solid var(--color-red);
    display: inline-block;
    font-family: var(--font-en);
    font-size: 9px;
    font-weight: 600;
    padding: 2px 4px 0;
}

.post-category {
    background-color: #ffffff;
    color: var(--color-red);
}

.post-new {
    background-color: var(--color-red);
    color: #ffffff;
}

/* ----------------------------------------
   イベント
---------------------------------------- */

.post-event-thumbnail {
    /* aspect-ratio: 38 / 27; */
    margin-bottom: 15px;
}

.post-event-meta {
    margin-bottom: 8px;
}

.post-event-title {
    font-family: var(--font-display);
    font-size: 17px;
}

.post-pickup .post-event-title {
    font-size: 24px;
}

/* ----------------------------------------
   ショップニュース
---------------------------------------- */

.post-shop-thumbnail {
    aspect-ratio: 1;
    margin-bottom: 16px;
}

.post-shop-new {
    position: absolute;
    top: 0;
    left: 0;
}

.post-shop-title {
    font-size: 18px;
    margin-bottom: 9px;
}

.post-shop-excerpt {
    font-size: 12px;
    line-height: 1.75;
}

/* ----------------------------------------
   イベントアーカイブ
---------------------------------------- */

.select-archive {
    align-items: center;
    display: flex;
    margin: 0 0 65px;
}

.select-archive p {
    font-size: 15px;
    font-weight: 700;
    width: 85px;
}

.custom-archive-dropdown {
    flex: 1;
    position: relative;
}

.archive-dropdown-button {
    align-items: center;
    background-color: var(--color-base);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    font-size: 16px;
    justify-content: space-between;
    padding: 20px 20px 20px 30px;
    transition: all 0.3s;
    width: 100%;
}

.dropdown-arrow {
    color: #ffffff;
    font-size: 12px;
    transition: transform 0.3s;
}

.archive-dropdown-button.active .dropdown-arrow {
    transform: rotate(180deg);
}

.archive-dropdown-menu {
    background-color: var(--color-bg);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transition: max-height 0.3s ease-out, opacity 0.3s;
    z-index: 1000;
}

.archive-dropdown-menu.active {
    max-height: 400px;
    opacity: 1;
    overflow-y: auto;
}

.archive-dropdown-menu::-webkit-scrollbar {
    width: 4px;
}

.archive-dropdown-menu::-webkit-scrollbar-track {
    background: var(--color-base);
    border-radius: 4px;
}

.archive-dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--color-base);
    border-radius: 4px;
}

.archive-dropdown-item {
    cursor: pointer;
    display: block;
    padding: 20px 30px;
    position: relative;
    transition: all 0.2s;
}

.archive-dropdown-item:not(:first-child) {
    border-top: 1px solid;
}

.checkmark {
    color: var(--color-base);
    font-size: 16px;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    transition: opacity 0.2s;
}

.archive-dropdown-item.active .checkmark {
    opacity: 1;
}

/* ----------------------------------------
   ショップ&レストラン情報
---------------------------------------- */

/* 検索 */
.shop-search {
    padding-bottom: 70px;
}

.shop-search .link-list dt {
    background: url(./images/icon_search.svg) no-repeat left center;
    background-size: 16px;
    padding: 0 0 2px 30px;
}

.search-form {
    display: flex;
    gap: 0 10px;
    font-size: 12px;
}

.search-field-wrap {
    flex: 1;
}

.search-field {
    background-color: #ffffff;
    border: 1px solid;
    border-radius: 5px;
    padding: 12px 8px;
    width: 100%;
}

.search-field ::placeholder {
    color: #aaaaac;
}

.search-submit {
    background-color: var(--color-base);
    border: 1px solid;
    border-radius: 5px;
    color: #ffffff;
    padding: 12px 0;
    text-align: center;
    width: 55px;
}

/* ボタン */
.button-shop-list {
    background-color: var(--color-base);
    border-radius: 5px;
    color: #ffffff;
    display: block;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 50px 0 0;
    padding: 12px 0;
    text-align: center;
    width: 100%;
}

/* 一覧 */
.section-shop-list {
    border-top: 1px solid;
    padding-top: 20px;
    padding-bottom: 70px;
    position: relative;
}

.section-shop-list:last-of-type {
    padding-bottom: 0;
}

.shop-list-heading {
    letter-spacing: 0.02em;
    text-align: center;
}

.shop-list-heading[data-en]::before {
    font-size: 22px;
    font-weight: 500;
}

.shop-list-sub-heading {
    background-color: var(--color-bg);
    border: 1px solid;
    border-radius: 5px;
    margin: 30px 0 0 0;
    padding: 6px 0;
    text-align: center;
}

.shop-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 20px;
    margin: 30px 0 0 0;
}

.shop-item {
    width: calc((100% - 20px) / 2);
}

.shop-thumbnail {
    aspect-ratio: 1;
    margin: 0 0 20px;
}

.shop-thumbnail img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.shop-floor {
    background-color: var(--color-base);
    color: #ffffff;
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 8px;
    padding: 5px 0;
    text-align: center;
    min-width: 40px;
}

.shop-title {
    line-height: 1.5;
    margin: 0 0 4px;
}

.shop-category {
    font-size: 10px;
}

/* ========================================
   投稿詳細
======================================== */

/* ----------------------------------------
   共通
---------------------------------------- */

.post-content-thumbnail {
    margin: 0 var(--space-x-neg) 10px;
}

.post-content-heading {
    border-bottom: 1px dashed;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
    padding: 12px 0;
}

.post-content-meta {
    border-bottom: 1px dashed;
    margin: 0 0 24px;
    padding: 16px 0 20px;
}

.post-content-meta .post-shop-title {
    font-weight: 700;
}

.post-content-meta .shop-floor {
    margin-bottom: 0;
}

.post-shopnews-content-main {
    border-bottom: 1px solid;
    padding: 0 0 35px;
}

.post-content-event-info {
    display: flex;
    flex-wrap: wrap;
    line-height: 1.85;
}

.post-content-event-info dt {
    font-weight: 500;
    width: 4em;
}

.post-content-event-info dt::after {
    content: "：";
}

.post-content-event-info dd {
    width: calc(100% - 4em);
}

.post-content-main-heading {
    font-size: 16px;
    letter-spacing: 0.25em;
    line-height: 1.6;
}

.post-content-main p:not(:last-child) {
    margin-bottom: 20px;
}

.post-content-text-bold {
    font-weight: 700;
}

.post-content-main-box-list {
    display: flex;
    flex-direction: column;
    gap: 10px 0;
}

.post-content-main-box-item {
    background: var(--color-bg);
    padding: 20px 20px 15px;
}

.post-content-main-box-heading {
    background-color: #ffffff;
    line-height: 1.6;
    margin: 0 0 17px;
    padding: 10px;
    text-align: center;
}

/* ----------------------------------------
   ショップ&レストラン情報
---------------------------------------- */

.shop-content .shop-floor {
    font-size: 11px;
    letter-spacing: 0.025em;
    margin-bottom: 24px;
    padding-block: 7px;
    min-width: 130px;
}

.shop-heading {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 1px;
}

.shop-content .shop-category {
    font-size: 12px;
    margin-bottom: 35px;
}

.shop-video {
    aspect-ratio: 16 / 9;
    margin-bottom: 38px;
}

.shop-video iframe {
    height: 100%;
    width: 100%;
}

.shop-gallery {
    margin-bottom: 50px;
}

.shop-features {
    font-size: 12px;
    margin: 0 0 33px;
}

.shop-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.shop-features-list li {
    border: 1px solid;
    padding: 7px 0;
    text-align: center;
    min-width: 130px;
}

.shop-features-notes {
    margin: 10px 0 0 0;
}

.shop-description {
    margin: 0 0 60px;
}

.shop-description-heading {
    font-size: 18px;
    line-height: 1.8;
    margin: 0 0 7px;
}

.shop-news {
    margin: 0 0 55px;
}

.shop-news-heading {
    font-size: 16px;
    margin: 0 0 18px;
}

.shop-news-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
}

.shop-news-item {
    font-size: 12px;
    line-height: 1.75;
    width: calc(50% - (20px / 2));
}

.shop-recommended {
    margin: 0 0 35px;
}

.shop-recommended-heading {
    font-size: 16px;
    margin: 0 0 18px;
}

.shop-recommended-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
}

.shop-recommended-item {
    font-size: 12px;
    line-height: 1.75;
    width: calc(50% - (20px / 2));
}

.shop-recommended-image {
    margin: 0 0 10px;
}

.shop-recommended-item p {
    line-height: 1.75;
    margin: 5px 0 0 0;
}

.button-shop-reservation {
    margin-bottom: 55px;
}

.shop-details dt {
    margin-bottom: 15px;
}

.shop-details dd {
    font-size: 14px;
}

.shop-details-attention {
    color: var(--color-red);
    display: block;
    font-size: 12px;
}

/* ----------------------------------------
   IN KIOI
---------------------------------------- */

[class*="-inkioiweb"] .content-wrapper {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: 500;
    padding-inline: 24px;
}

.in-kioi-content {
    padding-bottom: 115px;
}

.in-kioi-item {
    padding: 0 0 54px;
}

.in-kioi-heading {
    margin: 0 -24px;
}

.in-kioi-thumbnail {
    margin: 0 -24px 15px;
}

.in-kioi-category {
    color: #aaaaac;
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.025em;
    margin: 0 0 9px;
}

.in-kioi-title {
    font-family: "Jost", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",
        sans-serif;
    font-weight: 600;
    font-size: 19px;
    letter-spacing: 0.025em;
    line-height: 1.6;
}

.in-kioi-content-main {
    margin: 30px 0 0;
}

.in-kioi-content-main .wp-block-heading {
    font-size: 17px;
    line-height: 1.6;
    margin: 0 0 16px;
}

.in-kioi-content-main p {
    line-height: 1.8;
    margin: 0 0 29px;
}

.in-kioi-content-main p.line-s {
    margin-bottom: 12px;
}

.in-kioi-content-main figure {
    margin: 17px 0 34px;
}

.in-kioi-content-main p+figure {
    margin-top: 49px;
}

.in-kioi-content-main .wp-block-image :where(figcaption) {
    font-size: 12px;
    line-height: 1.5;
}

/* profile */
.in-kioi-profile {
    border-top: 1px solid;
    margin: 76px 0 0 0;
    padding: 60px 0 0 0;
}

.in-kioi-profile-image {
    aspect-ratio: 1;
    border-radius: 100%;
    margin: 0 auto 16px;
    overflow: hidden;
    width: 120px;
}

.in-kioi-profile-image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.in-kioi-profile-name {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.025em;
    line-height: 1.5;
    margin: 0 0 19px;
    text-align: center;
}

.in-kioi-profile-text {
    font-size: 13px;
    line-height: 1.8;
}

/* nav */
.in-kioi-nav {
    background-color: #c3e0d3;
    margin: 0 -24px;
    padding: 0 24px;
    position: relative;
}

.in-kioi-nav a {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.025em;
    transition: .3s;
}

.in-kioi-nav a:hover {
    opacity: 0.8;
}

.in-kioi-nav-list {
    display: flex;
    justify-content: space-between;
    padding: 22px 0;
}

.in-kioi-nav-item a[rel="prev"]::before,
.in-kioi-nav-item a[rel="next"]::after {
    background-color: var(--color-base);
    content: "";
    display: inline-block;
    height: 0.9em;
    vertical-align: -0.1em;
    width: 0.9em;
}

.in-kioi-nav-item a[rel="prev"]::before {
    clip-path: polygon(100% 100%, 0 50%, 100% 0, 100% 100%);
    margin-right: 0.2em;
}

.in-kioi-nav-item a[rel="next"]::after {
    clip-path: polygon(0 0, 100% 50%, 0 100%, 0 50%);
    margin-left: 0.2em;
}

.in-kioi-nav-back {
    margin-top: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ========================================
   ホーム
======================================== */

.home .content-wrapper {
    padding-top: 0;
}

.section-home {
    padding-block: 60px;
}

.section-home:last-of-type {
    padding-bottom: 0;
}

/* heading */
.home-heading {
    font-size: 15px;
    margin: 0 0 38px;
}

.home-heading[data-en]::before {
    font-size: 43px;
}

/* link */
.section-home-instagram .link-arrow {
    background-position: right 2px top 8px;
    background-size: 32px;
}

.section-home-instagram .link-arrow:hover {
    background-position: right top 8px;
}

/* floating-nav */
.floating-nav {
    position: fixed;
    bottom: 90px;
    transition: 0.2s;
    width: 110px;
    z-index: 5;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.floating-nav.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-nav.close {
    display: none;
}

.floating-nav a {
    background-color: var(--color-base);
    color: #ffffff;
    display: block;
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 400;
    padding: 10px 0;
    text-align: center;
}

.floating-nav img {
    display: block;
    margin: 0 auto 8px;
    width: 35px;
}

.floating-nav-close {
    background-color: #bdccd4;
    border-radius: 50%;
    height: 20px;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(8px, -8px);
    width: 20px;
}

.floating-nav-close span {
    background-color: var(--color-base);
    border-radius: 2px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
}

.floating-nav-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.floating-nav-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* mainvisual */
.mainvisual {
    position: relative;
    height: 100vh;
}

.mainvisual-bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
    max-width: var(--width-max);
    z-index: -1;
}

.mainvisual-intro {
    align-items: center;
    background: #ddf6f4;
    display: flex;
    flex-direction: column;
    gap: 35px 0;
    height: 100vh;
    justify-content: center;
    padding: 40px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.mainvisual-title,
.mainvisual-text {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.mainvisual-title.visible,
.mainvisual-text.visible {
    opacity: 1;
    transform: translateY(0);
}

/* shop */
.section-home-shop {
    border-top: 1px solid;
}

/* about */
.section-home-about {
    padding-block: 0;
}

/* ========================================
   東京ガーデンテラス紀尾井町について
======================================== */

.about-image {
    margin: 0 var(--space-x-neg) 50px;
    position: relative;
}

.home .about-image {
    margin-bottom: 0;
}

.about-heading {
    margin: 0 0 23px;
    width: 206px;
}

.about-home-heading {
    background-position: right calc(var(--space-x) + 2px) top 10px;
    color: #ffffff;
    display: block;
    position: absolute;
    top: 50%;
    left: var(--space-x);
    transform: translateY(-50%);
    width: calc(100% - var(--space-x));
}

.about-home-heading:hover {
    background-position: right var(--space-x) top 10px;
}

.about-description {
    line-height: 2;
}

.about-description:not(:last-of-type) {
    margin-bottom: 16px;
}

.about-gallery {
    margin: 50px 0 70px;
}

.about-section {
    margin: 0 0 60px;
}

.about-section-heading {
    background-color: var(--color-base);
    color: #ffffff;
    letter-spacing: 0.1em;
    margin: 0 0 14px;
    padding: 12px 0;
    text-align: center;
}

.about-section-heading:has(+ .table) {
    margin-bottom: 30px;
}

.about-features {
    margin: 0 0 45px;
}

.about-features li {
    padding: 32px 0;
}

.about-features li:not(:first-of-type) {
    border-top: 1px solid;
    padding-bottom: 0;
}

.about-features h4 {
    font-family: var(--font-en);
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 13px;
}

.about-features p {
    font-size: 15px;
    line-height: 1.6;
}

.about-banner {
    display: flex;
    flex-direction: column;
    gap: 50px 0;
    padding: 60px 0;
}

/* ----------------------------------------
   受賞・認証
---------------------------------------- */

.authentication-image {
    margin: 0 var(--space-x-neg) 25px;
}

.authentication-description {
    margin: 0 0 -20px;
}

.authentication-section {
    margin-top: 60px;
}

.authentication-section-date {
    font-family: var(--font-en);
    font-size: 36px;
    font-weight: 300;
    margin: 0 0 -8px;
}

.authentication-section-heading {
    font-size: 18px;
    line-height: 1.8;
    margin: 0 0 13px;
}

.authentication-section-image {
    margin: 0 0 15px;
}

.authentication-image-outline {
    border: 1px solid;
}

.authentication-section-notes {
    background-color: var(--color-bg);
    border: 1px dashed;
    font-size: 12px;
    letter-spacing: 0.025em;
    line-height: 1.8;
    margin: 15px 0 0 0;
    padding: 15px 20px;
}

.authentication-notes-heading:not(:first-child) {
    margin-top: 10px;
}

/* ----------------------------------------
   ビオトープ
---------------------------------------- */

.biotope-lead {
    margin: 25px 0 0 0;
}

.biotope-section {
    padding: 35px 0 30px;
}

.biotope-section-heading-bg {
    background: url(./images/bg_biotope_heading_01.jpg) no-repeat center;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 96px;
    margin-inline: var(--space-x-neg);
    padding-inline: var(--space-x);
}

.biotope-section-heading {
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 2.1;
}

.biotope-section-heading + p {
    font-weight: 700;
    margin-top: -5px;
}

.biotope-section-image {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
    margin: 25px 0;
}

.biotope-section-image:last-child {
    margin-bottom: 0;
}

.biotope-section-image-full {
    margin-inline: var(--space-x-neg);
    max-width: var(--width-max);
}

.biotope-section-image-full > *:not(img) {
    padding-inline: var(--space-x);
}

.biotope-section-image figcaption {
    font-size: 12px;
    line-height: 1.8;
}

/* child */
.about-child-mv {
    margin-inline: var(--space-x-neg);
    position: relative;
}

.about-child-mv .page-heading {
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

/* ----------------------------------------
   ガーデン
---------------------------------------- */

.garden-top .page-heading-jp {
    line-height: 1.7;
    margin-top: 13px;
}

.garden-intro {
    background: url(./images/bg_garden_top_01.jpg) no-repeat center bottom;
    background-size: 100%;
    margin: 0 var(--space-x-neg);
    padding: 50px var(--space-x);
}

.garden-intro-heading {
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 1.8;
    margin: 0 0 18px;
}

.garden-map {
    margin: 0 var(--space-x-neg) 25px;
}

.garden-nav {
    margin: 0 0 80px;
}

.garden-nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
}

.garden-nav-item {
    width: calc(50% - (30px / 2));
}

.garden-nav-item a {
    background-color: #f7931e;
    border-radius: 23px;
    color: #ffffff;
    display: block;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 16px 0;
    text-align: center;
    transition: all 0.15s ease-out;
}

.garden-nav-item:nth-last-child(-n + 2) a {
    background-color: var(--color-base);
}

.garden-nav-item a:hover {
    transform: translateY(1px);
    box-shadow: 0 4px 5px rgba(85, 85, 90, 0.1);
}

.garden-section {
    margin: 0 0 55px;
}

.garden-section-image {
    margin: 0 0 30px;
    position: relative;
}

.garden-section:nth-of-type(even) .garden-section-image {
    margin-right: var(--space-x-neg);
}

.garden-section:nth-of-type(odd) .garden-section-image {
    margin-left: var(--space-x-neg);
}

.garden-section-image::after {
    background-color: #bde4ff;
    content: "";
    display: block;
    height: 40px;
    mix-blend-mode: multiply;
    position: absolute;
    bottom: -20px;
    width: 40px;
}

.garden-section:nth-of-type(even) .garden-section-image::after {
    left: -20px;
}

.garden-section:nth-of-type(odd) .garden-section-image::after {
    right: -20px;
}

.garden-section-subimage {
    margin: 15px 0;
}

.garden-section-heading {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: 500;
    font-size: 26px;
    letter-spacing: 0.1em;
    margin: 0 0 12px;
}

.garden-column {
    background-repeat: no-repeat;
    background-size: 100%;
    margin: 0 var(--space-x-neg);
    padding: 50px var(--space-x);
}

.garden-column#column01 {
    background-color: #f5e7be;
    background-image: url(./images/bg_garden_column_01.jpg);
    background-position: center top;
}

.garden-column#column02 {
    background-color: #bcd4e8;
    background-image: url(./images/bg_garden_column_02.jpg),
        url(./images/bg_garden_column_03.jpg);
    background-position: center top, center bottom;
}

.garden-column-header {
    color: transparent;
    font-family: var(--font-en);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0 0 15px;
    text-stroke: 1px black;
    -webkit-text-stroke: 1px black;
    text-align: center;
}

.garden-column-wrap {
    display: flex;
    gap: 0 40px;
    padding: 0 0 0 10px;
}

.garden-column-heading {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 20px;
    letter-spacing: 0.1em;
    text-indent: 0.4em;
    writing-mode: vertical-rl;
}

.garden-column-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 15px 0;
}

.garden-column-image {
    display: flex;
    flex-direction: column;
    gap: 10px 0;
}

.garden-column#column02 .garden-column-image {
    margin-top: -20px;
}

/* ========================================
   アクセス
======================================== */

.section-access {
    border-top: 1px solid;
    font-size: 12px;
    font-weight: 300;
    padding-top: 20px;
    padding-bottom: 70px;
    position: relative;
}

.section-access:last-of-type {
    padding-bottom: 0;
}

/* paragraph */
.section-access p {
    line-height: 1.8;
}

.section-access .access-notes {
    font-size: 11px;
    font-weight: 300;
    line-height: 1.6;
    margin: 10px 0 0 1em;
    text-indent: -1em;
}

.section-access .access-notes + .access-notes {
    margin-top: 0;
}

.section-access ul + .access-notes:first-of-type {
    margin-top: 15px;
}

/* nav */
.access-nav {
    margin: 0 0 70px;
}

/* haeding */
.access-heading {
    font-size: 16px;
    margin: 0 0 25px;
}

.access-subheading {
    background-color: #cccccd;
    font-size: 14px;
    margin: 0 0 20px;
    padding: 8px 0;
    text-align: center;
}

.access-sub-subheading {
    font-size: 13px;
    margin: 0 0 12px;
}

/* roogmap */
.access-rootmap {
    margin: 25px 0 20px;
}

.button + .access-rootmap {
    margin-top: 30px;
}

.access-rootmap figcaption {
    margin: 15px 0 0 0;
}

/* duration */
.access-duration {
    margin: 0 0 15px;
}

/* details */
.access-details {
    background-color: var(--color-bg);
    border-radius: 5px;
    margin: 30px 0 0 0;
    padding: 30px 20px;
}

.access-details-bg-none {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
}

.access-details + .access-details {
    margin-top: 20px;
}

/* list */
.access-item {
    border-bottom: 1px dashed;
    padding: 0 0 15px;
}

.access-item:not(:last-child) {
    margin-bottom: 15px;
}

.access-list-line .access-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.access-item-heading {
    font-weight: 300;
    margin: 0 0 5px;
}

.access-item-content + .access-item-heading {
    margin-top: 10px;
}

.access-item-content {
    font-weight: 700;
    line-height: 1.8;
}

/* fee */
.access-fee {
    display: flex;
    flex-wrap: wrap;
}

.access-fee dt {
    width: 4.5em;
}

.access-fee dt::after {
    content: "：";
}

.access-fee dd {
    width: calc(100% - 4.5em);
}

/* discount */
.access-discount {
    border: 1px solid;
    letter-spacing: 0.025em;
    margin: 15px 0 0 0;
    text-align: center;
}

.access-discount + .access-discount {
    margin-top: 20px;
}

.access-discount dt {
    background-color: #ffffff;
    font-size: 13px;
    font-weight: 300;
    padding: 9px 0;
}

.access-discount dd {
    background-color: var(--color-base);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 9px 0;
}

/* images */
.access-images {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
    margin: 20px 0 0 0;
}

/* share-cicyle */
.access-share-cicyle + .access-share-cicyle {
    margin-top: 40px;
}

.access-share-cicyle img {
    margin: 15px 0 0 0;
}

.access-loop {
    border-top: 1px dashed;
    margin: 15px 0 0;
    padding: 15px 0 0;
}

/* timetable */
.access-timetable {
    display: flex;
    gap: 0 25px;
    margin: 15px 0 0 0;
}

.access-timetable a {
    background-color: #ffffff;
    border-radius: 0;
    font-size: 11px;
    font-weight: 700;
    margin: 0;
    padding-block: 8px;
    width: calc(100% - (25px / 2));
}

/* map */
.access-map {
    aspect-ratio: 13 / 10;
}

.access-map iframe {
    height: 100%;
    width: 100%;
}

/* address */
.access-address-name {
    font-size: 18px;
    letter-spacing: 0.025em;
    margin: 0 0 8px;
}

.access-address {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.025em;
    line-height: 1.7;
}
.access-address + p.access-notes {
    margin-top: 0;
}

.access-address-other {
    background-color: var(--color-bg);
    display: flex;
    flex-direction: column;
    gap: 5px 0;
    margin: 25px 0 40px;
    padding: 15px 20px;
}

.access-address-other h4 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.7;
}

.access-address-other p {
    font-size: 13px;
    font-weight: 300;
}

/* ========================================
   施設について
======================================== */

/* facility */
.facility-heading {
    font-size: 24px;
    line-height: 1.6;
    margin: 0 0 33px;
}

.facility-image {
    margin: 0 var(--space-x-neg) 40px;
}

.facility-video {
    aspect-ratio: 16 / 9;
    margin-bottom: 38px;
}

.facility-video iframe {
    height: 100%;
    width: 100%;
}

.facility-description {
    margin: 0 0 24px;
}

.facility-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
    margin: 0 0 40px;
}

.facility-gallery img {
    width: calc((100% - 20px) / 2);
}

.facility-details {
    margin: 60px 0 0 0;
}

.facility-details-list li {
    line-height: 1.8;
    padding: 0 0 0 1em;
    position: relative;
}

.facility-details-list li::before {
    position: absolute;
    top: 0;
    left: 0;
}

.facility-details-list > li::before {
    content: "□";
}

.facility-details-sublist > li::before {
    content: "・";
    top: 0.1em;
}

/* ========================================
   サービス一覧
======================================== */

.service-content:not(:last-of-type) {
    margin-bottom: 65px;
}

.service-heading {
    margin: 0 0 15px;
}

.service-block {
    border-top: 1px solid var(--color-base);
    margin: 0 var(--space-x-neg);
    padding: 0 var(--space-x);
}

.service-block:last-child {
    border-bottom: 1px solid var(--color-base);
}

.service-block summary {
    list-style: none;
}

.service-block summary::-webkit-details-marker {
    display: none;
}

.service-block-heading {
    cursor: pointer;
    font-size: 15px;
    margin: 0 var(--space-x-neg);
    padding: 16px var(--space-x);
    position: relative;
}

.service-block-heading .plus-icon {
    display: inline-block;
    height: 15px;
    position: absolute;
    top: 50%;
    right: var(--space-x);
    transform: translateY(-50%);
    width: 15px;
}

.service-block-heading .plus-icon::before,
.service-block-heading .plus-icon::after {
    background-color: var(--color-base);
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service-block-heading .plus-icon::before {
    height: 100%;
    width: 2px;
}

.service-block-heading .plus-icon::after {
    height: 2px;
    width: 100%;
}

details[open] .service-block-heading {
    color: #c1272d;
}

details[open] .service-block-heading .plus-icon::after {
    background-color: #c1272d;
}

details[open] .service-block-heading .plus-icon::before {
    content: none;
}

.service-block-section {
    border-top: 1px solid;
    padding: 16px 0 0;
}

.service-block-section:not(:last-of-type) {
    margin-bottom: 60px;
}

.service-section {
    padding: 15px 0 56px;
}

.service-section-heading {
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 18px;
}

.service-image {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
    margin: 0 0 24px;
}

.service-image-column {
    display: flex;
    gap: 0 20px;
    margin: 0 0 20px;
}

.service-image-column figcaption {
    font-size: 12px;
    font-weight: 400;
    margin: 8px 0 0 0;
}

.service-image.service-image-full {
    margin: 0 var(--space-x-neg);
}

.service-text {
    margin: 0 0 24px;
}

.service-notes li {
    line-height: 1.85;
    padding: 0 0 0 1em;
    position: relative;
}

.service-notes li::before {
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
}

.service-item:not(:last-of-type) {
    margin-bottom: 34px;
}

.service-item-heading {
    font-weight: 500;
    line-height: 1.85;
}

.service-item p {
    margin: 0 0 14px;
}

.service-table dd {
    line-height: 1.8;
}

.service-table-list dt {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
}

.service-table-list dt:not(:first-of-type) {
    margin-top: 28px;
}

/* pet */
.service-pet-block {
    background-color: var(--color-bg);
    padding: 30px 20px 25px;
}

.service-pet-item:not(:last-of-type) {
    margin-bottom: 35px;
}

.service-pet-heading {
    border: 1px solid;
    margin: 0 0 18px;
    padding: 7px 0;
    text-align: center;
}

.service-pet-subheading {
    font-size: 13px;
    margin: 0 0 10px;
}

.service-pet-text {
    font-size: 12px;
    line-height: 1.8;
}

.pet-mep-legend {
    margin: 20px 0 0 0;
    width: 243px;
}

.pet-map-buttons {
    display: flex;
    gap: 0 15px;
    margin: 20px 0 0 0;
}

.pet-map-button {
    border: 1px solid;
    cursor: pointer;
    flex: 1;
    font-size: 16px;
    letter-spacing: 0.1em;
    padding: 12px 0;
    text-align: center;
}

.pet-map-button.active {
    background-color: var(--color-bg);
}

/* wifi */
.service-wifi-heading {
    line-height: 1.85em;
}

.service-wifi-section:not(:first-of-type) {
    margin-top: 30px;
}

/* ----------------------------------------
   オフィス
---------------------------------------- */

.office-section {
    margin: 50px 0 0 0;
}

.office-section-heading {
    margin: 0 0 20px;
}

.office-access-heading {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    margin: 0 0 10px;
}

p + .office-access-heading {
    margin-top: 30px;
}

.office-section-image {
    margin: 0 0 25px;
}

.office-floor-list li {
    font-size: 12px;
    line-height: 1.8;
}

.office-floor-list li:before {
    content: "・";
}

.office-disaster {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 20px;
}

.office-disaster li {
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 1.8;
    width: calc(50% - (20px / 2));
}

.office-disaster h4 {
    color: #000000;
    margin: 15px 0 5px;
}

.office-attraction li:not(:last-child) {
    margin-bottom: 25px;
}

.office-attraction-header {
    margin: 0 0 15px;
    position: relative;
}

.office-attraction-header h4 {
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

/* ========================================
   アートサンポウォーク
======================================== */

.art .content-wrapper {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.art-map-wrap {
    margin: 0 var(--space-x-neg);
    padding: 50px 0;
}

.art-map {
    margin: 0 0 30px;
}

.art-nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    margin: 0 auto;
    justify-content: center;
    width: 280px;
}

.art-label {
    align-items: center;
    aspect-ratio: 1;
    background-color: #e64a61;
    border-radius: 100%;
    color: #ffffff;
    display: flex;
    font-family: var(--font-en);
    font-size: 15px;
    height: 46px;
    justify-content: center;
    line-height: 1;
    transition: all 0.15s ease-out;
    width: 46px;
}

.art-label:hover {
    transform: translateY(1px);
    box-shadow: 0 4px 5px rgba(85, 85, 90, 0.1);
}

.art-section {
    background-color: #a2d868;
    margin: 0 var(--space-x-neg);
    padding: 0 var(--space-x) 70px;
    position: relative;
}

.art-section.art-top {
    padding: 38px 0 55px;
}

.art-section-image {
    margin: 0 var(--space-x-neg);
}

.art-section-header {
    padding: 30px 0;
    position: relative;
}

.art-section-heading {
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 0.025em;
    margin: 22px 0 8px;
}

.art-section-creator {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.025em;
}

.art-section-content {
    background-color: #ffffff;
    border-radius: 30px;
    padding: 40px 50px 45px;
    position: relative;
}

.art-section-content::before {
    background-color: #ffffff;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    content: "";
    display: block;
    height: 42px;
    position: absolute;
    top: -22px;
    left: 26px;
    width: 36px;
}

.art-section-description {
    line-height: 2;
    text-align: justify;
}

.art-section-description:not(:last-of-type) {
    margin-bottom: 26px;
}

.art-section-data {
    background: url(./images/border_art_content.svg) no-repeat center top;
    background-size: 100%;
    font-size: 12px;
    line-height: 1.8;
    margin: 13px 0 0 0;
    padding: 15px 0 0 0;
    position: relative;
}

.art-banner {
    padding-top: 30px;
    padding-bottom: 60px;
}

.art-illust {
    position: absolute;
    width: auto;
    z-index: 1;
}

#artA .art-section-header .art-illust {
    top: -16px;
    right: -8px;
}

#artA .art-section-content .art-illust {
    bottom: -50px;
    left: -20px;
}

#artB .art-section-header .art-illust {
    top: 26px;
    right: 7px;
}

#artC .art-section-header .art-illust {
    top: 24px;
    right: -20px;
}

#artC .art-section-content .art-illust {
    bottom: -60px;
    right: 15px;
}

#artD .art-section-header .art-illust {
    top: 6px;
    right: -14px;
}

#artD .art-section-content .art-illust {
    bottom: -24px;
    right: 19px;
}

#artE .art-section-header .art-illust {
    top: 42px;
    left: 102px;
}

#artE .art-section-content .art-illust {
    bottom: -30px;
    right: 22px;
}

#artF .art-section-header .art-illust {
    top: 65px;
    right: 18px;
}

#artG .art-section-header .art-illust {
    top: 62px;
    right: 94px;
}

#artG .art-section-content .art-illust {
    bottom: -25px;
    right: 17px;
}

#artH .art-section-header .art-illust {
    top: 40px;
    right: 27px;
}

#artH .art-section-content .art-illust {
    bottom: -56px;
    right: -26px;
}

.art-illust-bottom-01 {
    top: -120px;
    right: 12px;
}

.art-illust-bottom-02 {
    bottom: 125px;
    left: 18px;
}

.art-illust-top-01 {
    bottom: 18px;
    left: 46px;
}

.art-illust-top-02 {
    bottom: -80px;
    right: 22px;
}

/* ----------------------------------------
   パブリックアート鑑賞入門
---------------------------------------- */

.art-introduction {
    color: #ffffff;
    display: flex;
    gap: 0 24px;
    padding: 18px 0 0 24px;
}

.art-introduction-heading {
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 1.85;
    padding: 6px 0 0 0;
    writing-mode: vertical-rl;
}

.art-introduction-content p {
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.9;
}

.art-introduction-content p:not(:last-of-type) {
    margin-bottom: 28px;
}

.art-introduction-section {
    margin: 0 var(--space-x-neg);
    padding: 20px var(--space-x) 70px;
}

/* dialogue */
.art-introduction-dialogue {
    background-color: #fff100;
    background-repeat: no-repeat;
    background-size: 100%;
    padding-top: 38px;
}

.art-introduction-top + .art-introduction-dialogue {
    background-image: url(./images/bg_art_introduction_section_01.png);
    background-position: center bottom;
}

.art-introduction-forces + .art-introduction-dialogue {
    background-image: url(./images/bg_art_introduction_section_02.png);
    background-position: center top;
}

.art-introduction-dialogue-heading {
    background: url(./images/border_art_introduction_dialogue.svg) no-repeat
        center bottom;
    background-size: auto;
    font-size: 18px;
    letter-spacing: 0.2em;
    padding: 0 0 15px;
    text-align: center;
}

.art-introduction-dialogue-item {
    align-items: flex-start;
    display: flex;
    gap: 0 29px;
    margin: 40px 0 0;
}

.art-introduction-dialogue-item.dialogue-answer {
    flex-direction: row-reverse;
}

.art-introduction-dialogue-avatar {
    aspect-ratio: 1;
    background-color: #ffffff;
    border-radius: 100%;
    position: relative;
    width: 56px;
}

.dialogue-question .art-introduction-dialogue-avatar img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-width: initial;
}

.art-introduction-dialogue-content {
    background-color: #ffffff;
    border-radius: 15px;
    flex: 1;
    padding: 15px 24px;
    position: relative;
}

.dialogue-answer .art-introduction-dialogue-content {
    background-color: #fbb03b;
    color: #ffffff;
}

.art-introduction-dialogue-content::before {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    content: "";
    display: block;
    height: 14px;
    position: absolute;
    top: 24px;
    width: 26px;
}

.dialogue-question .art-introduction-dialogue-content::before {
    background-image: url(./images/arrow_art_balloon_question.svg);
    left: -26px;
}

.dialogue-answer .art-introduction-dialogue-content::before {
    background-image: url(./images/arrow_art_balloon_answer.svg);
    right: -26px;
}

.art-introduction-dialogue-text {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.7;
}

.art-introduction-dialogue-notes {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.7;
    margin: 3px 0 0 0;
}

/* forces */
.art-introduction-forces {
    padding-top: 50px;
    padding-bottom: 50px;
}

.art-introduction-forces-heading {
    font-size: 18px;
    text-align: center;
}

.art-forces-item {
    align-items: flex-start;
    display: flex;
    gap: 0 10px;
    margin: 35px 0 0 0;
}

.art-forces-item-number {
    align-items: center;
    aspect-ratio: 1;
    background-color: #fbb03b;
    border-radius: 100%;
    color: #ffffff;
    display: flex;
    font-family: var(--font-en);
    font-weight: 700;
    justify-content: center;
    width: 40px;
}

.art-forces-item-content {
    flex: 1;
}

.art-forces-item-content h3 {
    line-height: 1.6;
}

.art-forces-item-content p {
    font-size: 13px;
    line-height: 1.7;
}

/* concept */
.art-introduction-concept {
    background-color: #e3e3e6;
    background-image: url(./images/bg_art_introduction_section_03.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100%;
    padding: 60px 25px;
}

.art-introduction-concept-wrap {
    background-color: #ffffff;
    padding: 24px 20px 34px;
}

.art-introduction-concept-heading {
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 24px;
}

.art-introduction-concept-text {
    letter-spacing: 0.025em;
    line-height: 1.9;
}

.art-introduction-concept-text + .art-introduction-concept-text {
    margin-top: 28px;
}

.art-introduction-concept-image {
    margin: 12px auto;
    width: 220px;
}

/* profile */
.art-introduction-profile {
    padding-top: 60px;
    position: relative;
}

.art-introduction-profile::after {
    border-bottom: 1px solid;
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - var(--space-x) * 2);
}

.art-introduction-profile-wrap {
    background: url(./images/bg_art_profile_01.svg) no-repeat right top,
        url(./images/bg_art_profile_02.svg) no-repeat left bottom;
    padding: 25px 0 14px;
}

.art-introduction-profile-name {
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 0.2em;
    margin: 0 0 14px;
}

.art-introduction-profile-title {
    font-size: 12px;
    line-height: 2;
    margin: 0 0 8px;
}

.art-introduction-profile-image {
    border-radius: 100%;
    height: 160px;
    margin: 0 auto 14px;
    overflow: hidden;
    width: 160px;
}

.art-introduction-profile-text {
    font-size: 12px;
    line-height: 2;
    margin: 0 0 0 30px;
}

/* top */
.art-introduction-top {
    background-color: #e3e3e6;
    background-image: url(./images/bg_art_introduction_top_01.svg),
        url(./images/bg_art_introduction_top_02.png);
    background-position: center bottom 65px, center bottom;
    background-repeat: no-repeat;
    background-size: auto, 100%;
    padding-bottom: 80px;
}

.art-introduction-text p {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 2.1;
    margin: 25px 0 0 0;
}

/* ========================================
   SDGs (KIOI SDGs HERMONY)
======================================== */

.sdgs-top {
    background: url(./images/bg_sdgs_top_01.jpg) no-repeat center top;
    background-size: cover;
    margin: 0 var(--space-x-neg);
    padding: 20px var(--space-x) 40px;
}

.sdgs-top-heading {
    line-height: 1.4;
    text-align: left;
}

.sdgs-top-heading .page-heading-en {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.sdgs-top-lead {
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 2;
    margin: 0 0 15px;
}

.sdgs-top-description {
    line-height: 2.1;
}

.sdgs-top-description:not(:first-of-type) {
    margin-bottom: 30px;
}

.sdgs-nav-nature,
.sdgs-nature {
    --sdgs-color-text: #98da77;
}

.sdgs-nav-education,
.sdgs-education {
    --sdgs-color-text: #fd91a7;
}

.sdgs-nav-environment,
.sdgs-environment {
    --sdgs-color-text: #fbb03b;
}

.sdgs-nav-oneteam,
.sdgs-oneteam {
    --sdgs-color-text: #62cbec;
}

.sdgs-nav {
    margin: 0 0 50px;
}

.sdgs-nav-item {
    border-top: 1px solid;
}

.sdgs-nav-item:last-child {
    border-bottom: 1px solid;
}

.sdgs-nav-item a {
    font-size: 12px;
    padding: 20px 0;
}

.sdgs-nav-item a[data-en]::before {
    color: var(--sdgs-color-text);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin: 0 0 5px;
}

.sdgs-section {
    padding: 50px 0;
}

.sdgs-section-image {
    margin: 0 var(--space-x-neg) -16px 0;
    padding: 0 0 0 60px;
}

.sdgs-section-heading {
    color: var(--sdgs-color-text);
    font-size: 22px;
    letter-spacing: 0.05em;
    margin: 0 0 25px;
}

.sdgs-section-heading[data-en]::before {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin: 0 0 12px;
}

.sdgs-section-lead {
    font-weight: 700;
    line-height: 2.1;
    margin: 0 0 34px;
}

.sdgs-block {
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 24px 30px;
}

.sdgs-block:not(:last-of-type) {
    margin-bottom: 30px;
}

.sdgs-nature .sdgs-block {
    background-image: url(./images/bg_sdgs_nature_block_01.jpg);
}

.sdgs-education .sdgs-block {
    background-image: url(./images/bg_sdgs_education_block_01.jpg);
}

.sdgs-environment .sdgs-block {
    background-image: url(./images/bg_sdgs_environment_block_01.jpg);
}

.sdgs-oneteam .sdgs-block {
    background-image: url(./images/bg_sdgs_oneteam_block_01.jpg);
}

.sdgs-block-category {
    color: var(--sdgs-color-text);
    font-family: var(--font-en);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin: 0 0 15px;
}

.sdgs-block-heading {
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 19px;
}

.sdgs-block-image {
    margin: 0 0 24px;
}

.sdgs-block-image-outline {
    border: 1px solid;
}

.sdgs-block-image-full {
    margin-inline: calc(var(--space-x-neg) - 24px);
    max-width: var(--width-max);
}

.sdgs-block-description {
    font-size: 12px;
    line-height: 2;
    text-align: justify;
}

.sdgs-block-notes {
    border-top: 1px dashed;
    font-size: 11px;
    line-height: 1.7;
    margin: 14px 0 0 0;
    padding: 16px 0 0 0;
}

.sdgs-cleanup {
    background-color: #ffffff;
    border: 1px solid;
    margin: 34px 0 0 0;
    padding: 22px 20px 0;
}

.sdgs-cleanup-text {
    font-size: 11px;
    margin: -18px 0 15px;
}

.sdgs-cleanup-list li {
    border-top: 1px dashed;
    padding: 15px 0;
}

/* ========================================
   春・夏・冬
======================================== */

.seasons-section:not(:first-of-type) {
    margin-top: 75px;
}

.seasons-image {
    margin: 0 0 32px;
    position: relative;
    padding: 85px 0 0 0;
}

.seasons-image-label {
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    display: flex;
    font-family: var(--font-en);
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.05em;
    height: 104px;
    mix-blend-mode: multiply;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 104px;
}

.season-spring .seasons-image-label {
    background-image: url(./images/bg_seasons_spring_title.png);
}

.season-summer .seasons-image-label {
    background-image: url(./images/bg_seasons_summer_title.png);
}

.season-winter .seasons-image-label {
    background-image: url(./images/bg_seasons_winter_title.png);
}

.seasons-heading {
    font-size: 30px;
    font-weight: 500;
    margin: 0 0 23px;
    text-align: center;
}

/* ========================================
   サイトマップ
======================================== */

.sitemap-list li {
    position: relative;
}

.sitemap-list a {
    display: block;
    transition: 0.2s;
}

.sitemap-list a:hover {
    opacity: 0.8;
}

.sitemap-list-column {
    display: flex;
    flex-wrap: wrap;
}

.sitemap-list-column > li {
    width: 50%;
}

.sitemap-list > li {
    padding: 0 0 0 1em;
}

.sitemap-list > li:not(:last-child) {
    margin-bottom: 60px;
}

.sitemap-list > li::before {
    content: "▶";
    position: absolute;
    top: 0;
    left: 0;
}

.sitemap-list > li > a {
    font-weight: 700;
    margin: 0 0 10px;
}

.sitemap-sub-list {
    font-size: 12px;
    margin: 0 0 0 10px;
}

.sitemap-sub-list > li > a {
    border-bottom: 1px solid;
    padding: 7px 0;
}

.sitemap-third-list {
    margin: 0 0 33px 20px;
}

.sitemap-third-list > li > a {
    padding: 10px 0;
}

.sitemap-link-none {
    pointer-events: none;
}

/* ========================================
   エラーページ
======================================== */

.error404-text {
    line-height: 1.85;
}

/* ========================================
   Media Queries
======================================== */

@media only screen and (max-width: 767px) {
    #content {
        width: 100%;
    }

    #side {
        display: none;
    }

    /* header */
    .header {
        max-width: initial;
    }

    /* mainvisual */
    .mainvisual {
        height: 200vh;
    }

    .mainvisual-bg {
        display: block;
    }

    .mainvisual-intro {
        top: 100vh;
    }
}
