@charset "UTF-8";
:root {
  --color-primary: #004a89;
  --color-primary-light: #eff4f9;
  --color-bg-base: #fff;
  --color-bg-muted: #f9f9f9;
  --color-text: #333;
  --color-border: #004a89;
  --fontsize-base: 1rem;
  --fontsize-s: calc(var(--fontsize-base) * 0.8);
  --fontsize-m: var(--fontsize-base);
  --fontsize-l: calc(var(--fontsize-m) * 1.375);
  --fontsize-xl: calc(var(--fontsize-l) * 1.454545);
  --fontsize-xxl: calc(var(--fontsize-xl) * 1.1875);
  --font-gothic: "Noto Sans Japanese", "YuGothic", "游ゴシック","Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  --font-mincho: "EB Garamond", "Zen Old Mincho", "YuMincho", "Yu Mincho",serif;
  --font-marugothic: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  --font-base: var(--font-gothic);
  --radius-sm: 0;
  --radius-md: 2px;
  --radius-lg: 4px;
  --global-navi-position:flex-end;
  --slide-index: 1;
  --menu-index: 2;
  --hamburger-index:3;
}
* {
    word-break: break-all;
}
body {
    color: var(--color-text);
    background-color:var(--color-bg-base);
    font-family: var(--font-base);
    letter-spacing: 0.05em;
    font-size: var(--fontsize-m);
    line-height: 1.875;
    overflow-wrap: break-word;
    word-break: normal; /
}
body.is-active {
    overflow: hidden;
}
a {
    color: var(--color-primary);
    text-decoration: underline;
}
a:hover {
    text-decoration: none;
}
.article-area a[target="_blank"]::after,
.blog ul a[target="_blank"]::after,
.news ul a[target="_blank"]::after,
.editorArea a[target="_blank"]::after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 13px;
    margin: 0 4px 4px 4px;
    background-image: url("https://assets.toriaez.jp/thp2/pc/images/259/icon-external-link.svg");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}
img,
iframe {
    max-width: 100%;
}
table {
    border-collapse: collapse;
}
.editorArea th,
.profile-info th,
.access-info th,
.contact-info th,
.editorArea td,
.profile-info td,
.access-info td,
.contact-info td {
    border: 1px var(--color-border) solid;
}
.editorArea table,
.profile-info table,
.access-info table,
.contact-info table {
    margin: 2em 0;
}
.editorArea th,
.profile-info th,
.access-info th,
.contact-info th,
.editorArea td,
.profile-info td,
.access-info td,
.contact-info td {
    padding: 0.8em;
}
.editorArea th,
.profile-info th,
.access-info th,
.contact-info th {
    color: var(--color-primary);
    background-color: var(--color-primary-light);
}
header {
    padding: 0 20px;
}
.head-navi__wrapper {
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}
.site-title {
    font-size: var(--fontsize-l);
    font-family: var(--font-mincho);
    line-height: 1.3;
    flex: 1;
}
.site-title a {
    color: var(--color-primary);
    text-decoration: none;
}
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 8px;
    z-index: var(--hamburger-index);
    position: inherit;
    padding-top: 3px;
}
.hamburger-menu__line,
.hamburger-menu::before,
.hamburger-menu::after {
    content: "";
    width: 30px;
    height: 2px;
    background-color: var(--color-primary);
    transition: transform 0.3s, opacity 0.3s;
}
.hamburger-menu__line.is-active {
    opacity: 0;
}
.hamburger-menu.is-active::before {
    background-color: #fff;
    transform: translateY(10px) rotate(45deg);
}
.hamburger-menu.is-active::after {
    background-color: #fff;
    transform: translateY(-10px) rotate(-45deg);
}
.head-navi {
    display: none;
}
.global-navi__wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    z-index: var(--menu-index);
    padding: 80px 40px 30px;
    transition: right 0.3s ease;
    box-sizing: border-box;
    height: 100dvh;
    overflow-y: auto;
}
.global-navi ul.global-navi__parent:nth-child(2),
.global-navi div.global-navi__parent {
  display: none;
}
.global-navi__parent {
    list-style: none;
    margin: 0;
    padding: 0;
}
.global-navi__parent--bottom {
    margin-top: 30px;
    border-top: 1px solid #fff;
    padding-top: 10px;
    padding-bottom: 10px;
}
.global-navi__child {
    list-style: none;
    padding: 0 0 0 20px;
}
.global-navi__link,
.global-navi__blog,
.global-navi__reservation,
.global-navi__sales {
    color: #fff;
    text-decoration: none;
    font-size: var(--fontsize-m);
    padding: 6px 0;
    display: inline-block;
}
.global-navi__link--child {
    font-size: var(--fontsize-s);
    padding: 4px 0;
    display: inline-block;
    z-index: var(--menu-index);
    color: #fff;
    text-decoration: none;
}
.global-navi-sns {
    list-style: none;
    padding: 20px 20px 0;
    margin: 10px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.global-navi-qrcode {
    text-align: center;
    padding-top: 20px;
}
.global-navi-qrcode img {
    background-color: #fff;
    padding: 10px;
}
.slide-image {
    position: relative;
}
.slide-image.has-slide-text {
    margin-bottom: 80px;
}
.slide-image__visual {
    line-height: 0;
}
.slide-image__visual-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.slide-image__visual-list li {
    position: relative;
    height: calc(100vw * 5 / 12);
}
.slide-image__visual img {
    margin: 0;
    width: 100%;
    position: absolute;
}
.slide-image__text {
    position: absolute;
    bottom: -50px;
    z-index: var(--slide-index);
}
.slide-image__text p {
    font-family: var(--font-base);
    font-size: var(--fontsize-m);
    line-height: 1.3;
    background-color: var(--color-primary);
    color: #fff;
    display: table;
    padding: 0.5em 1em;
    margin: 0 0 1px 0;
}
.bx-viewport {
    height: calc(100vw * 5 / 12) !important;
}
.bx-wrapper {
    margin-bottom: 0 !important;
}
.bx-wrapper .bx-pager.bx-default-pager {
    display: none;
    text-align: end;
    position: absolute;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    max-width: 300px;
    width: inherit !important;
}
.bx-wrapper .bx-pager.bx-default-pager a {
    background: var(--color-primary-light);
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    margin-right: 5px;
    width: 30px;
    height: 3px;
    cursor: pointer;
    z-index: 2;
}
.bx-wrapper .bx-pager.bx-default-pager a.active {
    background-color: var(--color-primary);
}
.main-image {
    margin: 0;
}
.main-image img {
    vertical-align: bottom;
    width: 100%;
    height: calc(100vw * 5 / 12);
    object-fit: cover;
}
.site-description {
    padding: 1em 20px;
    color: var(--color-text);
    text-align: center;
}
.page-title {
    margin: 0;
    padding: 4em 20px;
    color: #fff;
    font-family: var(--font-mincho);
    background: linear-gradient(90deg, rgba(4, 51, 110, 1) 19%, rgba(9, 65, 122, 1) 34%, rgba(21, 104, 166, 1) 82%);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center top;
}
h1.page-title__text {
    text-align: center;
    font-size: var(--fontsize-l);
    font-weight: normal;
    line-height: 1.3;
}
.bread-crumbs {
    display: none;
}
.article-area {
    padding: 36px 20px 0 20px;
}
.article-area > section {
    position: relative;
    isolation: isolate;
}
.article-area > section::after {
    content: "";
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background-color: var(--color-primary);
}
.article-area > section:nth-of-type(odd) {
    padding-top: 80px;
    padding-bottom: 80px;
}
.article-area > section:nth-of-type(odd)::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--color-primary-light);
    box-shadow: 0 0 0 100vmax var(--color-primary-light);
    clip-path: inset(0 -100vmax);
    z-index: -1;
}
.article-area > section:nth-of-type(even) {
	padding-top: 80px;
	margin-top: -80px;
    background-color: transparent;
}
.article-area h3 {
    font-size: 1.4em;
}
.article-area h4 {
    font-size: 1.3em;
}
.article-area h5 {
    font-size: 1.2em;
}
.article-area h6 {
    font-size: 1.1em;
}
#contents .article-area.empty-articles,
#eid .article-area.empty-articles {
    padding-bottom: 0;
}
#contents .empty-articles .bread-crumbs,
#eid .empty-articles .bread-crumbs {
    margin-bottom: 0;
}
.article-box {
    margin: 0 0 50px 0;
}
.article-box__title {
    display: block;
    text-align: center;
    position: relative;
    font-family: var(--font-mincho);
    font-weight: normal;
    font-size: var(font-size-l);
    line-height: 1.3;
    margin: 0 0 24px 0;
    color:var(--color-primary);
}
.article-box__text {
    margin: 0 0 20px 0;
}
.article-box__images {
    margin: 0 0 20px 0;
}
.article-box__images figure {
    display: block;
    margin: 0;
    padding: 0;
}
.article-box__images figure img {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius:var(--radius-md);
}
.article-box__images figcaption {
    display: block;
    text-align: center;
    font-size: var(--fontsize-s);
    font-weight: lighter;
    margin: 10px 0 0 0;
    padding: 0;
}
.box-type--2row {
    margin: 0 0 50px 0;
}
.box-type__title--learge {
    display: block;
    text-align: center;
    position: relative;
    font-family: var(--font-mincho);
    color: var(--color-primary);
    font-weight: normal;
    line-height: 1.3;
    margin: 0 0 32px 0;
}
.box-type__entry {
    margin: 0 0 60px 0;
}
.box-type__title--small {
    font-size: var(--fontsize-m);
    font-weight: normal;
    color: var(--color-primary);
    margin: 0 0 10px 0;
    text-align: center;
}
.box-type__images {
    margin: 0 0 10px 0;
    width: 100%;
}
.box-type__images figure {
    display: block;
    margin: 0;
    padding: 0;
}
.box-type__images figure img {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: var(--radius-md);
}
.box-type__button-area {
    text-align: center;
    margin: 16px 0 0 0;
}
.box-type__button-link {
    display: inline-block;
    padding: 0.6em 3em;
    background: var(--color-primary);
    color: #ffffff;
    text-decoration: none;
    font-size: var(--fontsize-s);
    transition: opacity 0.3s ease;
    border-radius:var(--radius-md);
}
.box-type__button-link:hover {
    opacity: 0.8;
}
.box-type--3row {
    margin: 0 0 50px 0;
}
.box-type--3row .box-type__content-wrap {
    width: 100%;
}
.box-type--3row .box-type__entry {
    border: 1px #ddd solid;
    padding: 10px 16px;
    margin: 0 0 10px 0;
}
.box-type--3row .box-type__title--small {
    text-align: center;
}
.box-type--3row .box-type__button-area {
    margin: 16px 0;
    text-align: center;
}
.box-type--button {
    margin: 0 0 50px 0;
}
.news,
.blog {
    margin: 0;
    padding: 20px 20px;
    border-top:1px var(--color-border) solid;
}
.news__title,
.blog__title {
    text-align: left;
    color: var(--color-primary);
    font-size: var(--fontsize-l);
    font-family: var(--font-mincho);
    font-weight: bold;
    margin: 0 0 20px 0;
    padding: 0;
}
.news__button-area,
.blog__button-area {
    text-align: center;
    margin: 16px 0 0 0;
}
.news__button-link,
.blog__button-link {
    display: inline-block;
    border: 1px var(--color-primary) solid;
    padding: 0.6em 3em;
    color: var(--color-primary);
    text-decoration: none;
    font-size: var(--fontsize-s);
    transition: opacity 0.3s ease;
    border-radius:var(--radius-md);
}
.news__button-link:hover,
.blog__button-link:hover {
    opacity: 0.8;
    cursor: pointer;
}
.news__list,
.blog__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.news__item,
.blog__item {
    display: flex;
    padding: 6px 0;
    align-items: baseline;
}
.news__date,
.blog__date {
    width: 100px;
    flex-shrink: 0;
}
.news__text,
.blog__text {
    flex: 1;
    line-height: 1.5;
}
.greeting {
    margin-bottom: 30px;
}
.access-container {
    max-width: calc(1320px + (20px * 2)); 
    margin: 0 auto;
    width: 100%;
    padding: 40px 20px;
    box-sizing: border-box;
}
.profile-info,
.access-info,
.contact-info {
    width: 100%;
    margin-bottom: 60px;
}
.profile-info tr,
.access-info tr,
.contact-info tr {
    display: flex;
    flex-direction: column;
}
.profile-info th,
.access-info th,
.contact-info th,
.profile-info td,
.access-info td,
.contact-info td {
    margin-top: -1px;
}
.access iframe {
    width: calc(1320px + (20px * 2)); 
    max-width: 100%;
    max-height: 740px;
    height: calc((100% / 16) * 9);
    aspect-ratio: 16 / 9;
    border: 0;
}
.contact-info input[type="text"],
.contact-info textarea {
    padding: 0.5em;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    box-sizing: border-box;
    outline: none;
}
.contact-info input[type="radio"],
.contact-info .label_inline {
    cursor: pointer;
}
.contact-info .input-text,
.contact-info textarea {
    width: 100%;
}
.contact-info .input-age {
    width: 40%;
    margin-right: 20px;
}
.button {
    display: inline-block;
    padding: 1em 3em;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-size: var(--fontsize-l);
    border: none;
    min-width: 264px;
}
.button:hover {
    opacity: 0.8;
    cursor: pointer;
}
.button--primary {
    background: var(--color-primary);
    color: #ffffff;
}
.button--reset {
    background: #bbb;
    color: #ffffff;
}
.btn-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}
#contact .captcha {
    box-sizing: border-box;
    padding: 30px 20px;
    border: 1px solid var(--color-border);
}
#contact #captchaInput {
    padding: 8px 15px;
    border: 2px solid #ddd;
    outline: none;
}
.free-space {
    padding: 30px 20px;
}
.free-space a {
    color: var(--color-text);
}
.snsBtn {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
.snsBtn li {
    margin-right: 20px;
}
.snsBtn li:hover {
    opacity: 0.7;
}
.snsBtn li:last-child {
    margin-right: 0;
}
.main {
    padding: 30px 20px 20px;
    box-sizing: border-box;
}
.footer {
    padding: 20px;
}
.footer .snsBtn {
    margin: 0 0 24px 0;
}
.footer .snsBtn li {
    margin-right: 25px;
}
.footer .snsBtn li:last-child {
    margin-right: 0;
}
.footer .snsBtn a {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 1px solid #666;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer .qr-code {
    text-align: center;
}
.footer .copyright {
    text-align: center;
    font-style: normal;
    font-size: var(--fontsize-s);
    padding: 24px 0;
}
@media (max-width: 779px) {
    
    .box-type--3row .box-type__content-wrap {
        display: flex;
        gap: 16px;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .box-type--3row .box-type__images {
        flex: 1;
        max-width: calc(100% / 2.8); 
        margin: 0;
    }
    .box-type--3row .box-type__text {
        flex: 1.8;
        max-width: 100%; 
        margin: 0;
    }
    .box-type__images:has(img[src=""]) {
        display: none;
    }
    .box-type__images figure img {
    	border-radius: var(--radius-sm);
	}
	.profile-info th, .access-info th, .contact-info th {
		text-align: left;
	}
	.global-navi ul.global-navi__parent:nth-child(2),
	.global-navi div.global-navi__parent {
	  display: block;
	}
	.global-navi__wrapper.is-active {
    right: 0;
    background: var(--color-primary);
	}
	.global-navi__wrapper.is-active a {
		color: #fff;
	}
}
@media (min-width: 860px) {
    body {
        font-size: var(--fontsize-m);
    }
    header {
        position: relative;
        z-index: 10;
        padding: 0 0;
    }
    .site-title {
        padding: 16px 0;
        display: inline-block;
    }
    .site-title img {
        vertical-align: middle;
    }
    .head-navi__wrapper {
        min-height: 70px;
        padding: 10px 30px 0 30px;
        align-items: center;
    }
    .site-title {
        font-size: var(--fontsize-xl);
        max-width: 50%;
    }
    .head-navi {
        display: block;
        max-width: 600px;
        flex: 1;
    }
    .head-navi ul {
        display: flex;
        justify-content: end;
        gap: 0 30px;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .head-navi__link a {
        text-decoration: none;
        color: var(--color-text);
        font-size: var(--fontsize-m);
    }
    .head-navi__link a:hover {
        color: var(--color-primary);
    }
    .head-navi__link {
        display: flex;
        align-items: center;
        min-height: 70px;
    }
    a.head-navi__contact {
        display: flex;
        align-items: center;
        padding: 0.5em 2em;
        background: linear-gradient(90deg, rgba(4, 51, 110, 1) 19%, rgba(9, 65, 122, 1) 34%, rgba(21, 104, 166, 1) 82%);
        color: #fff;
        text-decoration: none;
        transition: opacity 0.3s ease;
        box-sizing: border-box;
        margin-right: -10px;
        border-radius:var(--radius-sm);
    }
    a.head-navi__contact:hover {
        color: #ffffff;
        opacity: 0.8;
    }
    a.head-navi__profile,
    a.head-navi__access {
        display: inline-block;
        text-decoration: none;
        color: var(--color-primary);
    }
    .hamburger-menu {
        display: none;
    }
    
    .global-navi__wrapper {
        position: relative;
        height: inherit;
        right: inherit;
        padding: 0;
        overflow-y: inherit;
    }
    .global-navi {
        position: relative;
        max-width: 100%;
        z-index: 0;
    }
    
    .global-navi__parent {
        display: flex;
        justify-content: var(--global-navi-position);
        flex-wrap: wrap;
        gap: 0 30px;
        list-style: none;
        margin: 0;
        padding: 0 30px;
    }
    .global-navi__parent li {
        position: relative;
    }
    .global-navi__link,
    .global-navi__blog,
    .global-navi__reservation,
    .global-navi__sales {
        display: flex;
        align-items: center;
        height: 70px;
        padding: 0;
        text-decoration: none;
        color: var(--color-primary);
        font-size: var(--fontsize-m);
        box-sizing: border-box;
    }
    .global-navi__link:hover,
    .global-navi__blog:hover,
    .global-navi__reservation:hover,
    .global-navi__sales:hover {
        color: var(--color-primary);
    }
    
    .global-navi__child {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        border: 1px solid #ddd;
        padding: 0;
        margin: 0;
        list-style: none;
        min-width: 200px;
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease;
        z-index: 9999; 
    }
    .global-navi__parent > li:hover .global-navi__child {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    .global-navi__child li a {
        display: block;
        padding: 10px 16px;
        background: #fff;
        color: var(--color-primary);
        text-decoration: none;
        border-bottom: 1px solid #ddd;
        transition: background-color 0.3s ease, color 0.3s ease;
        height: auto;
    }
    .global-navi__child li a:hover {
        background: var(--color-primary);
        color: #fff;
    }
    
    .slide-image {
        --slide-scroll-margin: 60px;
        position: relative;
        margin: 0;
        padding: 0 var(--slide-scroll-margin) 0 0;
        background-color: #fff;
    }
    .slide-image .slide-image__visual-list li {
        height: calc((100vw - var(--slide-scroll-margin)) * 5 / 12);
    }
    .slide-image .bx-viewport {
        height: calc((100vw - var(--slide-scroll-margin)) * 5 / 12) !important;
    }
    .slide-image::before {
        content: "SCROLL";
        position: absolute;
        right: calc(var(--slide-scroll-margin) / 2 - 0.5em);
        bottom: 115px;
        writing-mode: vertical-rl;
        letter-spacing: 0.3em;
        font-size: var(--fontsize-s);
        color: var(--color-text);
        line-height: 1;
        z-index: 1;
    }
    .slide-image::after {
        content: "";
        position: absolute;
        right: calc(var(--slide-scroll-margin) / 2 - 0.5px);
        bottom: 20px;
        width: 1px;
        height: 80px;
        background-color: var(--color-text);
        animation: slideScrollLine 1.8s ease-in-out infinite;
        z-index: 1;
    }
    @keyframes slideScrollLine {
        0% { transform: scaleY(0); transform-origin: top; }
        50% { transform: scaleY(1); transform-origin: top; }
        50.001% { transform: scaleY(1); transform-origin: bottom; }
        100% { transform: scaleY(0); transform-origin: bottom; }
    }
    .bx-wrapper .bx-pager.bx-default-pager {
        display: block;
    }
    
    .site-description__text {
        margin: 0 auto;
        padding: 30px 0;
    }
    
    .page-title {
        padding: 4em 20px;
    }
    h1.page-title__text {
        font-size: var(--fontsize-xxl);
    }
    
    .bread-crumbs {
        display: block;
        padding: 15px 40px;
    }
    #contents .bread-crumbs,
    #eid .bread-crumbs {
        margin: -80px -40px 80px 0;
    }
    .bread-crumbs__list {
        text-align: right;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .bread-crumbs__list li {
        display: inline;
        font-size: var(--fontsize-s);
    }
    .bread-crumbs__list li::after {
        content: "｜";
        padding: 0 0.4em;
    }
    .bread-crumbs__list li:last-child::after {
        content: "";
        padding: 0 0;
    }
    
    .article-area {
        position: relative;
        z-index: 0;
        padding: 80px 40px 0 40px;
    }
    
    .article-box {
        width: 780px;
        margin: 0 auto 80px auto;
    }
    .article-box__title {
        font-size: var(--fontsize-xl);
        margin: 0 0 40px 0;
    }
    .article-box__title::after {
        bottom: -20px;
        width: 86px;
        height: 3px;
    }
    .article-box__text {
        margin: 0 0 36px 0;
    }
    .article-box__images {
        margin: 0 0 36px 0;
    }
    .article-box__images figcaption {
        margin: 12px 0 0 0;
    }
    
    .box-type--2row {
        width: 100%;
        max-width: 1320px;
        margin: 0 auto 80px auto;
    }
    .box-type--2row .box-type__wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 40px; 
        justify-content: space-between;
    }
    .box-type--2row .box-type__entry {
        width: calc(50% - 20px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .box-type__title--learge {
        font-size: var(--fontsize-xl);
        margin: 0 0 60px 0;
    }
    .box-type__title--learge::after {
        bottom: -20px;
        width: 86px;
        height: 3px;
    }
    .box-type__title--small {
        text-align: center;
        font-size: var(--fontsize-l);
        margin: 0 auto 16px auto;
    }
    .box-type__button-area {
        margin: 36px 0 0 0;
        align-self: center;
    }
    .box-type__button-link {
        font-size: var(--fontsize-m);
    }
    
    .box-type--3row {
        width: 100%;
        max-width: 1320px;
        margin: 0 auto 80px auto;
    }
    .box-type--3row .box-type__wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: flex-start;
    }
    .box-type--3row .box-type__entry {
        flex: 1 1 calc((100% - 40px) / 3);
		max-width: calc((100% - 40px) / 3);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        border: none;
        box-sizing: border-box; 
        overflow: hidden; 
    }
    .box-type--3row .box-type__button-area {
        margin: 36px 0 0 0;
    }
    .box-type--3row .box-type__title--small {
        font-size: var(--fontsize-l);
    }
    
    .box-type--button {
        width: 780px;
        margin: 0 auto 80px auto;
    }
    
    
    .news {
        padding: 36px 36px 56px 36px;
    }
    .blog {
        padding: 36px 36px 56px 36px;
    }
    .news__title,
    .blog__title {
        font-size: var(--fontsize-l);
        margin: 0 0 36px 0;
        padding: 0;
    }
    .news__button-area,
    .blog__button-area {
        text-align: center;
        margin: 36px 0 0 0;
    }
    .news__button-link,
    .blog__button-link {
        font-size: var(--fontsize-m);
    }
    .news__list,
    .blog__list {
        width: 780px;
        margin: 0 auto;
    }
    .news__item,
    .blog__item {
        display: flex;
        padding: 12px 0;
        align-items: baseline;
    }
    .news__date,
    .blog__date {
        width: 110px;
        flex-shrink: 0;
    }
    .news__text,
    .blog__text {
        flex: 1;
        line-height: 1.5;
    }
    .greeting {
        margin-bottom: 50px;
    }
    .main {
        max-width: calc(780px + (24px * 2)); 
        margin: 0 auto;
        width: 100%;
        padding: 80px 24px 40px;
    }
    .footer {
        padding: 50px 20px;
    }
    .profile-info,
    .access-info,
    .contact-info {
        margin-bottom: 100px;
    }
    .access-info {
        max-width: calc(780px + (24px * 2)); 
        margin-left: auto;
        margin-right: auto;
    }
    .profile-info tr,
    .access-info tr,
    .contact-info tr {
        flex-direction: row;
    }
    .profile-info tr th,
    .access-info tr th {
        flex: 0 0 120px;
    }
    .contact-info tr th {
        flex: 0 0 250px;
    }
    .profile-info tr td,
    .access-info tr td,
    .contact-info tr td {
        flex: 1;
    }
    .profile-info th,
    .access-info th,
    .contact-info th,
    .profile-info td,
    .access-info td,
    .contact-info td {
        margin-left: -1px;
    }
    .btn-container {
        flex-direction: row;
    }
    
    .free-space {
        padding: 56px 0px;
        border-top:1px solid var(--color-border);
    }
    .free-space__wrapper {
        width: 780px;
        margin: 0 auto;
    }
    
    .page-top {
        display: block;
        width: 64px;
        height: 64px;
        border: 1px solid var(--color-primary);
        position: fixed;
        bottom: 20px;
        right: 20px;
        box-sizing: border-box;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
    }
    .page-top.show {
        opacity: 1;
        visibility: visible;
    }
    .page-top::before {
        content: "";
        position: absolute;
        top: 17px;
        left: 50%;
        transform: translateX(-0.5px);
        width: 1px;
        height: 30px;
        background-color: var(--color-primary);
    }
    .page-top::after {
        content: "";
        position: absolute;
        top: 30px;
        left: 50%;
        width: 20px;
        height: 20px;
        transform: translate(-50%, -50%) rotate(45deg);
        border-top: 1px solid var(--color-primary);
        border-left: 1px solid var(--color-primary);
        background: transparent;
    }
    
    .fade-in,
    .fade-in-left,
    .fade-in-right {
        opacity: 0;
        transition: all 0.6s ease-out;
        transition-delay: 0.3s; 
    }
    
    .fade-in {
        transform: translateY(30px);
    }
    .fade-in.show {
        opacity: 1;
        transform: translateY(0);
    }
    
    .fade-in-left {
        transform: translateX(-30px);
    }
    .fade-in-left.show {
        opacity: 1;
        transform: translateX(0);
    }
    
    .fade-in-right {
        transform: translateX(30px);
    }
    .fade-in-right.show {
        opacity: 1;
        transform: translateX(0);
    }
}
.bottom-contact {
    background: linear-gradient(90deg, rgba(4, 51, 110, 1) 19%, rgba(9, 65, 122, 1) 34%, rgba(21, 104, 166, 1) 82%);
    background-size: cover;
    padding: 80px 30px 80px 30px;
    color: #fff;
}
.bottom-contact::before {
    content: "ご相談はお気軽に";
    font-family: var(--font-base);
    text-align: center;
    font-size: var(--fontsize-m);
    display: block;
    width: 100%;
    margin-bottom: 0.5em;
}
.bottom-contact a {
    margin-top: 30px;
    margin-bottom: 40px;
    background-color: #fff;
    color: var(--color-primary);
    text-decoration: none;
    font-size: 20px;
    display: block;
    text-align: center;
    padding: 33px 50px 33px 30px;
    position: relative;
    cursor: pointer;
    letter-spacing: 0.05em;
    line-height: 1.2;
    max-width: 480px;
    font-family: var(--font-base);
    font-weight: 400;
    margin: 0 auto;
    border-radius:var(--radius-lg);
}
.bottom-contact a::after {
    content: "";
    position: absolute;
    top: 40%;
    right: 8%;
    margin: auto;
    transform: rotate(225deg);
    border-bottom: 2px solid var(--color-primary);
    border-left: 2px solid var(--color-primary);
    width: 20px;
    height: 20px;
    transition: all 0.2s ease-in-out;
}
.bottom-contact a:hover {
    opacity: 0.8;
}
.bottom-menu {
    padding: 0 20px;
}
ul.highlight-link {
    max-width: 780px;
    width: 100%;
    margin: 0px auto 140px auto;
    padding-left: 0;
}
@media (max-width: 859px) {
    ul.highlight-link {
        margin: 0px auto 70px;
    }
}
ul.highlight-link li {
  border-bottom: 1px solid var(--color-border);
  list-style:none;
  margin-left: 0;
  padding-left: 0;
}
.highlight-link li a {
  display:block;
  text-decoration:none;
  text-align:center;
  padding:1em 0;
}
.highlight-link li a:hover {
  opacity:0.7;
}

/* =========================================================
   creator coach inc. TOP PAGE v1.0
   Scope: #cc-top only
   Color guideline:
   Primary #004E30 / Gold #C8952F / Off White #FAFAF7
   Mist #E8F2EC / Charcoal #1F2A25 / Gray #6D746E
   ========================================================= */

#cc-top {
  --cc-green: #004E30;
  --cc-gold: #C8952F;
  --cc-off: #FAFAF7;
  --cc-mist: #E8F2EC;
  --cc-charcoal: #1F2A25;
  --cc-gray: #6D746E;
  --cc-white: #FFFFFF;
  --cc-border: rgba(0, 78, 48, 0.16);

  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  color: var(--cc-charcoal);
  background: var(--cc-off);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.035em;
  -webkit-font-smoothing: antialiased;
}

#cc-top,
#cc-top *,
#cc-top *::before,
#cc-top *::after {
  box-sizing: border-box;
}

#cc-top h1,
#cc-top h2,
#cc-top h3,
#cc-top p,
#cc-top blockquote,
#cc-top ul {
  margin: 0;
  padding: 0;
}

#cc-top h1,
#cc-top h2,
#cc-top h3,
#cc-top strong {
  font-family: inherit;
  color: inherit;
}

#cc-top a {
  color: inherit;
  text-decoration: none;
}

#cc-top ul {
  list-style: none;
}

#cc-top .cc-container {
  width: min(100% - 64px, 1180px);
  margin-inline: auto;
}

#cc-top .cc-section {
  padding: 128px 0;
  position: relative;
}

#cc-top .cc-label,
#cc-top .cc-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--cc-green);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

#cc-top .cc-label::before {
  content: "";
  width: 28px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--cc-gold);
}

#cc-top .cc-label--light {
  color: var(--cc-white);
}

#cc-top .cc-label--light::before {
  background: var(--cc-gold);
}

#cc-top h2 {
  color: var(--cc-green);
  font-size: clamp(31px, 4.2vw, 55px);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0.025em;
}

#cc-top h3 {
  color: var(--cc-green);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.025em;
}

#cc-top p {
  font-size: 16px;
}

/* HERO */
#cc-top .cc-hero {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  padding: 120px 0 110px;
  background: var(--cc-off);
}

#cc-top .cc-hero::before {
  content: "";
  position: absolute;
  top: -170px;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(0, 78, 48, 0.08);
  border-radius: 50%;
}

#cc-top .cc-hero::after {
  content: "";
  position: absolute;
  left: -110px;
  bottom: -170px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(200, 149, 47, 0.18);
  border-radius: 50%;
}

#cc-top .cc-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}

#cc-top .cc-eyebrow {
  margin-bottom: 30px;
}

#cc-top .cc-eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cc-gold);
}

#cc-top .cc-hero h1 {
  max-width: 760px;
  color: var(--cc-green);
  font-size: clamp(43px, 6vw, 79px);
  font-weight: 700;
  line-height: 1.27;
  letter-spacing: 0.025em;
}

#cc-top .cc-hero__lead {
  max-width: 690px;
  margin-top: 34px;
  color: var(--cc-charcoal);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 2;
}

#cc-top .cc-hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 42px;
}

#cc-top .cc-button {
  min-height: 58px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 14px 28px 14px 32px;
  border: 1px solid var(--cc-green);
  border-radius: 999px;
  background: var(--cc-green);
  color: var(--cc-white) !important;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

#cc-top .cc-button:hover,
#cc-top .cc-button:focus-visible {
  transform: translateY(-2px);
  background: transparent;
  color: var(--cc-green) !important;
}

#cc-top .cc-button span {
  font-size: 18px;
  line-height: 1;
}

#cc-top .cc-hero__note {
  max-width: 230px;
  color: var(--cc-gray);
  font-size: 12px;
  line-height: 1.7;
}

#cc-top .cc-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 470px;
}

#cc-top .cc-orbit {
  position: relative;
  width: 430px;
  height: 430px;
}

#cc-top .cc-orbit__ring {
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

#cc-top .cc-orbit__ring--outer {
  width: 408px;
  height: 408px;
  border: 1px solid rgba(0, 78, 48, 0.22);
}

#cc-top .cc-orbit__ring--inner {
  width: 255px;
  height: 255px;
  border: 1px solid rgba(200, 149, 47, 0.38);
}

#cc-top .cc-orbit__core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--cc-green);
}

#cc-top .cc-orbit__core span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--cc-gold);
}

#cc-top .cc-orbit__card {
  position: absolute;
  min-width: 174px;
  padding: 17px 20px 16px;
  border: 1px solid var(--cc-border);
  background: rgba(255, 255, 255, 0.94);
}

#cc-top .cc-orbit__card small {
  display: block;
  margin-bottom: 6px;
  color: var(--cc-gold);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.15em;
}

#cc-top .cc-orbit__card strong {
  color: var(--cc-green);
  font-size: 14px;
  line-height: 1.5;
}

#cc-top .cc-orbit__card--one {
  left: -5px;
  top: 72px;
}

#cc-top .cc-orbit__card--two {
  right: -10px;
  top: 174px;
}

#cc-top .cc-orbit__card--three {
  left: 70px;
  bottom: 17px;
}

#cc-top .cc-scroll {
  position: absolute;
  left: 34px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cc-gray);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

#cc-top .cc-scroll span {
  width: 1px;
  height: 48px;
  background: var(--cc-gold);
}

/* ABOUT */
#cc-top .cc-about {
  background: var(--cc-white);
}

#cc-top .cc-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 96px;
  align-items: start;
}

#cc-top .cc-section__head h2 {
  max-width: 660px;
}

#cc-top .cc-prose {
  padding-top: 52px;
}

#cc-top .cc-prose p + p {
  margin-top: 24px;
}

#cc-top .cc-prose p {
  color: var(--cc-charcoal);
  line-height: 2.05;
}

/* TITLE ROW */
#cc-top .cc-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 68px;
}

#cc-top .cc-title-row__text {
  padding-bottom: 6px;
  color: var(--cc-gray);
  line-height: 2;
}

/* CYCLE */
#cc-top .cc-cycle {
  background: var(--cc-off);
}

#cc-top .cc-cycle__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--cc-border);
  border-bottom: 1px solid var(--cc-border);
}

#cc-top .cc-cycle__item {
  position: relative;
  min-height: 322px;
  padding: 38px 28px 34px;
  border-right: 1px solid var(--cc-border);
}

#cc-top .cc-cycle__item:last-child {
  border-right: 0;
}

#cc-top .cc-cycle__item::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 67px;
  width: 11px;
  height: 11px;
  z-index: 1;
  border-radius: 50%;
  background: var(--cc-gold);
}

#cc-top .cc-cycle__item:last-child::after {
  display: none;
}

#cc-top .cc-number {
  display: block;
  margin-bottom: 34px;
  color: var(--cc-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

#cc-top .cc-cycle__item h3 {
  margin-bottom: 18px;
}

#cc-top .cc-cycle__item p {
  color: var(--cc-gray);
  font-size: 14px;
  line-height: 1.9;
}

/* CENTER HEAD */
#cc-top .cc-center-head {
  max-width: 850px;
  margin: 0 auto 62px;
  text-align: center;
}

#cc-top .cc-center-head .cc-label {
  justify-content: center;
}

#cc-top .cc-center-head > p:last-child {
  max-width: 690px;
  margin: 24px auto 0;
  color: var(--cc-gray);
  line-height: 2;
}

/* NEEDS */
#cc-top .cc-needs {
  background: var(--cc-mist);
}

#cc-top .cc-needs__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

#cc-top .cc-need-card {
  min-height: 160px;
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 18px;
  align-items: start;
  padding: 34px 36px;
  border: 1px solid rgba(0, 78, 48, 0.11);
  background: rgba(255, 255, 255, 0.7);
}

#cc-top .cc-dot {
  width: 8px;
  height: 8px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--cc-gold);
}

#cc-top .cc-need-card p {
  color: var(--cc-green);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.85;
}

/* SUPPORT */
#cc-top .cc-support {
  background: var(--cc-white);
}

#cc-top .cc-title-row--support {
  align-items: start;
}

#cc-top .cc-title-row--support .cc-title-row__text {
  padding-top: 48px;
}

#cc-top .cc-support__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

#cc-top .cc-support-card {
  position: relative;
  min-height: 525px;
  padding: 38px 32px 34px;
  border: 1px solid var(--cc-border);
  background: var(--cc-off);
}

#cc-top .cc-support-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 3px;
  background: var(--cc-gold);
}

#cc-top .cc-support-card__en {
  margin-bottom: 24px;
  color: var(--cc-gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

#cc-top .cc-support-card h3 {
  min-height: 72px;
  margin-bottom: 22px;
}

#cc-top .cc-support-card > p:not(.cc-support-card__en) {
  color: var(--cc-gray);
  font-size: 14px;
  line-height: 1.95;
}

#cc-top .cc-support-card ul {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--cc-border);
}

#cc-top .cc-support-card li {
  position: relative;
  padding-left: 17px;
  color: var(--cc-charcoal);
  font-size: 13px;
  line-height: 1.8;
}

#cc-top .cc-support-card li + li {
  margin-top: 10px;
}

#cc-top .cc-support-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 1px;
  background: var(--cc-gold);
}

/* APPROACH */
#cc-top .cc-approach {
  background: var(--cc-off);
}

#cc-top .cc-approach__grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.85fr) minmax(0, 1.15fr);
  gap: 100px;
  align-items: start;
}

#cc-top .cc-approach__intro {
  position: sticky;
  top: 40px;
}

#cc-top .cc-approach__intro h2 {
  font-size: clamp(31px, 3.8vw, 49px);
}

#cc-top .cc-approach__intro > p:last-child {
  margin-top: 28px;
  color: var(--cc-gray);
  line-height: 2;
}

#cc-top .cc-steps {
  border-top: 1px solid var(--cc-border);
}

#cc-top .cc-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 26px;
  padding: 34px 0 38px;
  border-bottom: 1px solid var(--cc-border);
}

#cc-top .cc-step > span {
  color: var(--cc-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

#cc-top .cc-step small {
  display: block;
  margin-bottom: 7px;
  color: var(--cc-gray);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

#cc-top .cc-step h3 {
  margin-bottom: 10px;
}

#cc-top .cc-step p {
  color: var(--cc-gray);
  font-size: 14px;
  line-height: 1.95;
}

/* VISION */
#cc-top .cc-vision {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background: var(--cc-green);
  color: var(--cc-white);
}

#cc-top .cc-vision::before {
  content: "“";
  position: absolute;
  right: 4vw;
  top: -80px;
  color: rgba(255, 255, 255, 0.055);
  font-size: 470px;
  font-weight: 700;
  line-height: 1;
}

#cc-top .cc-vision__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

#cc-top .cc-vision__inner .cc-label {
  justify-content: center;
}

#cc-top .cc-vision blockquote {
  margin: 42px auto 40px;
  color: var(--cc-white);
  font-size: clamp(30px, 4.7vw, 55px);
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.04em;
}

#cc-top .cc-vision__inner > p:last-child {
  max-width: 850px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  line-height: 2.1;
}

/* VALUES */
#cc-top .cc-values {
  background: var(--cc-white);
}

#cc-top .cc-values__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

#cc-top .cc-value-card {
  min-height: 350px;
  padding: 38px 32px;
  border-top: 3px solid var(--cc-green);
  background: var(--cc-off);
}

#cc-top .cc-value-card__en {
  margin-bottom: 24px;
  color: var(--cc-gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

#cc-top .cc-value-card h3 {
  margin-bottom: 13px;
  font-size: 30px;
}

#cc-top .cc-value-card strong {
  display: block;
  margin-bottom: 22px;
  color: var(--cc-green);
  font-size: 16px;
  line-height: 1.7;
}

#cc-top .cc-value-card > p:last-child {
  color: var(--cc-gray);
  font-size: 14px;
  line-height: 1.95;
}

/* MESSAGE */
#cc-top .cc-message {
  background: var(--cc-mist);
}

#cc-top .cc-message__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 100px;
  align-items: start;
}

#cc-top .cc-message__body {
  padding-left: 38px;
  border-left: 1px solid rgba(0, 78, 48, 0.26);
}

#cc-top .cc-message__body > p {
  line-height: 2.05;
}

#cc-top .cc-message__body > p + p {
  margin-top: 22px;
}

#cc-top .cc-signature {
  margin-top: 36px !important;
  color: var(--cc-green);
  font-weight: 700;
  text-align: right;
}

#cc-top .cc-signature span {
  display: block;
  margin-bottom: 2px;
  color: var(--cc-gray);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.09em;
}

/* FLOW */
#cc-top .cc-flow {
  background: var(--cc-off);
}

#cc-top .cc-flow__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--cc-border);
  border-bottom: 1px solid var(--cc-border);
}

#cc-top .cc-flow__item {
  min-height: 260px;
  padding: 34px 26px;
  border-right: 1px solid var(--cc-border);
}

#cc-top .cc-flow__item:last-child {
  border-right: 0;
}

#cc-top .cc-flow__item > span {
  display: block;
  margin-bottom: 30px;
  color: var(--cc-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

#cc-top .cc-flow__item h3 {
  margin-bottom: 13px;
  font-size: 19px;
}

#cc-top .cc-flow__item p {
  color: var(--cc-gray);
  font-size: 13px;
  line-height: 1.9;
}

/* FINAL CTA */
#cc-top .cc-final {
  padding: 130px 0;
  background: var(--cc-green);
  color: var(--cc-white);
}

#cc-top .cc-final__inner {
  text-align: center;
}

#cc-top .cc-final__inner .cc-label {
  justify-content: center;
}

#cc-top .cc-final h2 {
  color: var(--cc-white);
  font-size: clamp(32px, 4.4vw, 54px);
}

#cc-top .cc-final__inner > p:not(.cc-label) {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 2;
}

#cc-top .cc-button--light {
  margin-top: 42px;
  border-color: var(--cc-white);
  background: var(--cc-white);
  color: var(--cc-green) !important;
}

#cc-top .cc-button--light:hover,
#cc-top .cc-button--light:focus-visible {
  background: transparent;
  color: var(--cc-white) !important;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  #cc-top .cc-hero {
    min-height: auto;
    padding: 100px 0 80px;
  }

  #cc-top .cc-hero__grid,
  #cc-top .cc-split,
  #cc-top .cc-title-row,
  #cc-top .cc-approach__grid,
  #cc-top .cc-message__grid {
    grid-template-columns: 1fr;
  }

  #cc-top .cc-hero__grid {
    gap: 52px;
  }

  #cc-top .cc-hero__visual {
    min-height: 390px;
  }

  #cc-top .cc-orbit {
    transform: scale(0.87);
  }

  #cc-top .cc-prose,
  #cc-top .cc-title-row--support .cc-title-row__text {
    padding-top: 0;
  }

  #cc-top .cc-split,
  #cc-top .cc-title-row,
  #cc-top .cc-approach__grid,
  #cc-top .cc-message__grid {
    gap: 46px;
  }

  #cc-top .cc-title-row {
    align-items: start;
  }

  #cc-top .cc-title-row__text {
    max-width: 720px;
  }

  #cc-top .cc-cycle__grid,
  #cc-top .cc-flow__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #cc-top .cc-cycle__item:nth-child(2),
  #cc-top .cc-flow__item:nth-child(2) {
    border-right: 0;
  }

  #cc-top .cc-cycle__item:nth-child(-n + 2),
  #cc-top .cc-flow__item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--cc-border);
  }

  #cc-top .cc-cycle__item:nth-child(2)::after {
    display: none;
  }

  #cc-top .cc-cycle__item:nth-child(3)::after {
    display: block;
  }

  #cc-top .cc-support__grid,
  #cc-top .cc-values__grid {
    grid-template-columns: 1fr;
  }

  #cc-top .cc-support-card {
    min-height: auto;
  }

  #cc-top .cc-support-card h3 {
    min-height: auto;
  }

  #cc-top .cc-approach__intro {
    position: static;
  }
}

@media (max-width: 680px) {
  #cc-top {
    font-size: 15px;
    letter-spacing: 0.025em;
  }

  #cc-top .cc-container {
    width: min(100% - 40px, 1180px);
  }

  #cc-top .cc-section {
    padding: 84px 0;
  }

  #cc-top h2 {
    font-size: 31px;
    line-height: 1.5;
  }

  #cc-top h3 {
    font-size: 20px;
  }

  #cc-top .cc-pc {
    display: none;
  }

  #cc-top .cc-hero {
    padding: 82px 0 70px;
  }

  #cc-top .cc-hero::before {
    width: 300px;
    height: 300px;
    right: -170px;
  }

  #cc-top .cc-hero h1 {
    font-size: 43px;
    line-height: 1.35;
  }

  #cc-top .cc-hero__lead {
    margin-top: 27px;
    font-size: 16px;
    line-height: 1.95;
  }

  #cc-top .cc-hero__actions {
    display: block;
    margin-top: 34px;
  }

  #cc-top .cc-button {
    width: 100%;
  }

  #cc-top .cc-hero__note {
    max-width: none;
    margin-top: 14px;
    text-align: center;
  }

  #cc-top .cc-hero__visual {
    min-height: 305px;
    margin: -4px 0 -18px;
  }

  #cc-top .cc-orbit {
    width: 330px;
    height: 330px;
    transform: none;
  }

  #cc-top .cc-orbit__ring--outer {
    width: 310px;
    height: 310px;
  }

  #cc-top .cc-orbit__ring--inner {
    width: 190px;
    height: 190px;
  }

  #cc-top .cc-orbit__core {
    width: 70px;
    height: 70px;
  }

  #cc-top .cc-orbit__card {
    min-width: 144px;
    padding: 12px 14px;
  }

  #cc-top .cc-orbit__card strong {
    font-size: 12px;
  }

  #cc-top .cc-orbit__card--one {
    left: 0;
    top: 51px;
  }

  #cc-top .cc-orbit__card--two {
    right: -2px;
    top: 137px;
  }

  #cc-top .cc-orbit__card--three {
    left: 45px;
    bottom: 9px;
  }

  #cc-top .cc-scroll {
    display: none;
  }

  #cc-top .cc-title-row,
  #cc-top .cc-split,
  #cc-top .cc-approach__grid,
  #cc-top .cc-message__grid {
    gap: 32px;
  }

  #cc-top .cc-title-row,
  #cc-top .cc-center-head {
    margin-bottom: 44px;
  }

  #cc-top .cc-cycle__grid,
  #cc-top .cc-needs__grid,
  #cc-top .cc-flow__grid {
    grid-template-columns: 1fr;
  }

  #cc-top .cc-cycle__item,
  #cc-top .cc-cycle__item:nth-child(2),
  #cc-top .cc-flow__item,
  #cc-top .cc-flow__item:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--cc-border);
  }

  #cc-top .cc-cycle__item:last-child,
  #cc-top .cc-flow__item:last-child {
    border-bottom: 0;
  }

  #cc-top .cc-cycle__item::after,
  #cc-top .cc-cycle__item:nth-child(3)::after {
    display: none;
  }

  #cc-top .cc-need-card {
    min-height: auto;
    padding: 28px 24px;
  }

  #cc-top .cc-need-card p {
    font-size: 15px;
  }

  #cc-top .cc-support-card,
  #cc-top .cc-value-card {
    padding: 32px 25px;
  }

  #cc-top .cc-step {
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 28px 0 31px;
  }

  #cc-top .cc-vision,
  #cc-top .cc-final {
    padding: 92px 0;
  }

  #cc-top .cc-vision blockquote {
    margin: 34px auto 31px;
    font-size: 29px;
    line-height: 1.75;
  }

  #cc-top .cc-message__body {
    padding-left: 22px;
  }

  #cc-top .cc-signature {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  #cc-top .cc-button {
    transition: none;
  }
}

/*
  もし全幅表示でテンプレートが崩れる場合は、#cc-top の下記2行を変更してください。
  width: 100vw;                         → width: 100%;
  margin-left: calc(50% - 50vw);       → margin-left: 0;
*/