@charset "UTF-8";

html {
    font-size: 16px;
}

body {
    font-family: "Noto Sans JP", serif;
}

a[href^="tel:"] {
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    a[href^="tel:"] {
        pointer-events: auto;
    }
}

a {
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7;
}

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

/* Remove default padding */
ul,
ol {
    padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

/* Set core root defaults */
html {
    scroll-behavior: smooth;
}

/* Set core body defaults */
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
    list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
}

a {
    text-decoration: none;
}

/* Make images easier to work with */
img {
    max-width: 100%;
    display: block;
    width: 100%;
}

/* Natural flow and rhythm in articles by default */
article>*+* {
    margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
    filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    font: inherit;
    outline: none;
}

textarea {
    resize: vertical;
}

input[type=checkbox],
input[type=radio] {
    display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
    cursor: pointer;
}

select::-ms-expand {
    display: none;
}

/* ====================================================================
# header
==================================================================== */
.header {
    height: 80px;
    background-color: #fff;
    width: 100%;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
    .header {
        height: 60px;
    }
}

.header__inner {
    height: inherit;
    display: flex;
    align-items: center;
    padding-right: 60px;
    padding-left: 60px;
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
    .header__inner {
        padding-right: 52px;
        padding-left: 15px;
    }
}

.header__logo {
    max-width: 167px;
    max-height: 48px;
}

@media screen and (max-width: 768px) {
    .header__logo {
        width: 104px;
        height: 30px;
    }
}

.header__nav {
    margin-left: auto;
    margin-right: 10px;
    height: inherit;
}

@media screen and (max-width: 1200px) {
    .header__nav {
        display: none;
    }
}

.header__items {
    display: flex;
    align-items: center;
    height: inherit;
}

.header__item {
    height: inherit;
    display: flex;
    align-items: center;
}

.header__link {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #171717;
    font-size: 16px;
    font-weight: 400;
    padding: 0 8px;
    margin: 0 8px;
    position: relative;
}

a.header__link::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: #13402B;
    bottom: -1px;
    /*アンダーラインがaタグの下端から現れる*/
    transform: scale(0, 1);
    /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
    transform-origin: left top;
    /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
    transition: transform 0.3s;
    /*変形の時間*/
}

a.header__link:hover::after {
    transform: scale(1, 1);
    /*ホバー後、x軸方向に1（相対値）伸長*/
}

@media screen and (max-width: 1160px) {
    .header__link {
        font-size: 1.2vw;
        padding: 0 12px;
    }
}

.header__actions {
    display: flex;
    justify-content: center;
}

.header__action-button {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
    border-radius: 50px;
    padding: 12px 34px;
}

@media screen and (max-width: 768px) {
    .header__action-button {
        padding: 10px 24px;
    }
}

.header__action-button.header__action-button--contact {
    background-color: #00B900;
    margin-right: 12px;
}

@media screen and (max-width: 768px) {
    .header__action-button.header__action-button--contact {
        margin-right: 0px;
        display: none;
    }
}

.header__action-button.header__action-button--reservation {
    background: linear-gradient(to right, #FF7F00, #FF5500);
}

/* ====================================================================
# hamburger
==================================================================== */
.hamburger {
    position: fixed;
    z-index: 9999;
    top: 22px;
    right: 15px;
    width: 25px;
    height: 16px;
    cursor: pointer;
}

.hamburger.is-active {
    top: 45px;
    right: 15px;
}

.hamburger span {
    background-color: #171717;
    position: absolute;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 3px;
    transition: 0.3s transform, 0.3s background-color;
}

.hamburger-menu {
    font-size: 12px;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: 0.1em;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 130%;
}

.hamburger.is-active span {
    background-color: #fff;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 8px;
    transition: 0.3s opacity;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

.hamburger.is-active span:nth-child(1) {
    top: -15px;
    transform: rotate(-45deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    top: -15px;
    transform: rotate(45deg);
}

/* ====================================================================
# drawer-menu
==================================================================== */
.drawer-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5000;
    display: none;
    height: 100vh;
    width: 100%;
    background-color: #13402B;
    opacity: 0.95;
}

.drawer-menu__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: inherit;
}

.drawer-menu__items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.drawer-menu__item {
    display: inline-block;
}

.drawer-menu__item:not(:first-child) {
    margin-top: 25px;
}

.drawer-menu__link {
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1.875;
    font-weight: 500;
    width: 200px;
    display: inline-block;
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #fff;
}

.drawer__actions {
    margin-top: 32px;
    text-align: center;
}

.drawer__actions .header__action-button {
    padding: 12px 60px;
}

.drawer__actions .header__action-button.header__action-button--reservation {
    margin-top: 24px;
}

/* ====================================================================
# main contents
==================================================================== */
.main {
    margin-top: 80px;
}
@media screen and (max-width: 768px) {
    .main {
        margin-top: 60px;
    }
}

.hero {
    background-image: url(../images/hero-img.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    min-height: 643px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .hero {
        min-height: 540px;
        background-position: 62% center;
    }
}

.hero__image {
    width: 294px;
    margin: 0 auto;
}

.hero__text {
    margin-top: 14px;
    color: #fff;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.05em;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .hero__text {
        font-size: 40px;
    }
}

/* about
------------------------------------------------------------- */
.about {
    background: #E5EEEC;
}

.about__wrapper {
    background: linear-gradient(#EAEAEA 170px, #13402B 170px 100%);
    padding-bottom: 180px;
    padding-right: 20px;
    padding-left: 20px;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8vw), 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8vw), 0 100%);
}

@media screen and (max-width: 768px) {
    .about__wrapper {
        padding-bottom: 80px;
    }
}

.about__inner.inner {
    background-color: #fff;
    padding: 60px 100px 110px;
}

@media screen and (max-width: 768px) {
    .about__inner.inner {
        padding-right: 15px;
        padding-left: 15px;
        padding-top: 30px;
        padding-bottom: 40px;
    }
}

.about__title {
    max-width: 437px;
    margin: 0 auto;
}

.about__description {
    margin-top: 60px;
    max-width: 630px;
    margin-right: auto;
    margin-left: auto;
}

@media screen and (max-width: 768px) {
    .about__description {
        margin-top: 30px;
    }
}

.about__text {
    color: #171717;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.01em;
}

@media screen and (max-width: 768px) {
    .about__text {
        font-size: 18px;
    }
}

.about__text span {
    color: #2F5D32;
    font-weight: 700;
}

.about__images {
    margin-top: 80px;
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .about__images {
        display: block;
        margin-top: 40px;
    }
}

.about__image {
    max-width: 390px;
}

@media screen and (max-width: 768px) {
    .about__image {
        margin: 0 auto;
    }
}

.about__image:first-child {
    margin-right: 20px;
}

@media screen and (max-width: 768px) {
    .about__image:first-child {
        margin-right: auto;
        margin-bottom: 15px;
    }
}

/* recommendation
------------------------------------------------------------- */
.recommendation {
    background: #E5EEEC;
    padding-top: 12px;
    padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
    .recommendation {
        padding-bottom: 60px;
    }
}

.recommendation__inner.inner {
    max-width: 850px;
}

.recommendation__list {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    place-content: center;
}

.recommendation__item {
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 34px 0;
}

.recommendation__image {
    width: 148px;
}

.recommendation__text {
    margin-top: 14px;
    color: #171717;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.03em;
    text-align: center;
}

.recommendation__text span {
    color: #13402B;
    font-weight: 700;
}

/* features
------------------------------------------------------------- */
.features {
    background: url(../images/features-bg.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
    padding-top: 96px;
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .features {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.features__title {
    max-width: 327px;
    margin: 0 auto;
}

.features__list {
    margin-top: 52px;
}

.features__item {
    position: relative;
    margin-top: 76px;
}

@media screen and (max-width: 768px) {
    .features__item {
        margin-top: 50px;
    }
}

.features__point-wrap {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media screen and (max-width: 768px) {
    .features__point-wrap {
        display: block;
    }
}

.features__point-wrap.features__point-wrap--reverse::before {
    content: "";
    flex-grow: 1;
    height: 1px;
    display: block;
    background-color: #1B8D9D;
    margin-right: 8px;
}

@media screen and (max-width: 768px) {
    .features__point-wrap.features__point-wrap--reverse::before {
        display: none;
    }
}

.features__point-wrap.features__point-wrap--reverse::after {
    display: none;
}

.features__point-wrap::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    display: block;
    background-color: #20784E;
}

.features__point {
    margin-right: 8px;
    max-width: 97px;
}

.features__item-title {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.03em;
    padding: 1px 14px;
    margin-right: 8px;
}

@media screen and (max-width: 768px) {
    .features__item-title {
        margin-top: 8px;
        margin-right: 0;
        padding: 6px 20px;
    }
}

.features__item-title.features__item-title--first {
    background-color: #20784E;
}

.features__item-title.features__item-title--second {
    background-color: #4F6113;
}

.features__item-title.features__item-title--third {
    background-color: #427E7F;
}

.features__text {
    background-color: #fff;
    box-shadow: 0 6px 30px rgba(13, 49, 89, 0.1);
    padding: 20px 12px 32px 30px;
    margin-top: 28px;
    max-width: 720px;
    position: relative;
    z-index: 110;
}

@media screen and (max-width: 768px) {
    .features__text {
        padding: 20px;
        margin-top: 0;
    }
}

.features__text.features__text--reverse {
    margin-left: auto;
}

.features__lead {
    font-size: 22px;
    font-weight: 700;
    line-height: 180%;
    letter-spacing: 0.1em;
    display: inline-block;
    background: linear-gradient(transparent 60%, #FFEC81 60% 90%, transparent 90%);
}

@media screen and (max-width: 768px) {
    .features__lead {
        font-size: 24px;
    }
}

.features__lead.features__lead--first {
    color: #20784E;
}

.features__lead.features__lead--second {
    color: #4F6113;
}

.features__lead.features__lead--third {
    color: #427E7F;
}

.features__description {
    font-size: 17px;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 0.03em;
}

@media screen and (max-width: 768px) {
    .features__description {
        font-size: 16px;
        line-height: 180%;
    }
}

.features__description span {
    color: #2F5D32;
    font-weight: 700;
}

.features__image {
    max-width: 400px;
    position: absolute;
    top: -16px;
    right: 0;
    z-index: 100;
}

@media screen and (max-width: 768px) {
    .features__image {
        position: static;
        max-width: 100%;
    }
}

.features__image.features__image--reverse {
    top: -16px;
    left: 0;
}

/* campaign banners
------------------------------------------------------------- */
.campaign {
    background-color: #FCFBF2;
    padding: 60px;
}

@media screen and (max-width: 768px) {
    .campaign {
        padding: 30px;
    }
}

.campaign__banners {
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .campaign__banners {
        display: block;
    }
}

.campaign__item {
    width: 600px;
    aspect-ratio: 2/1;
}

@media screen and (max-width: 768px) {
    .campaign__item {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .campaign__item:not(:first-child) {
        margin-top: 24px;
    }
}

.campaign__item:not(:last-child) {
    margin-right: 32px;
}

.campaign__cta {
    text-align: center;
}

.campaign__cta-button {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0;
    background-color: #E95E01;
    padding: 16px 18px 16px 50px;
    margin-top: 36px;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.campaign__cta-button::after {
    content: url(../images/cta-arrow.svg);
    padding-left: 30px;
}

/* facility
------------------------------------------------------------- */
.facility {
    padding: 96px 0 60px;
}

@media screen and (max-width: 768px) {
    .facility {
        padding: 60px 0;
    }
}

.facility__title {
    max-width: 590px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .facility__title {
        max-width: 360px;
    }
}

.facility__image-slider {
    margin-top: 48px;
}

.facility__coution {
	margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
	color: #6D6D6D;
	font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.03em;
}

.facility__coution-text {
	
}

/* floor-map
------------------------------------------------------------- */
.floor-map {
    background-color: #E5EEEC;
    -webkit-clip-path: polygon(0 calc(0% + 7vw), 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 calc(0% + 7vw), 100% 0, 100% 100%, 0 100%);
    padding-top: 137px;
    padding-bottom: 98px;
}

@media screen and (max-width: 768px) {
    .floor-map {
        padding-top: 80px;
        padding-bottom: 60px;
    }
}

.floor-map__title {
    max-width: 380px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .floor-map__title {
        max-width: 280px;
    }
}

.floor-map__content {
    margin-top: 48px;
    display: flex;
}

@media screen and (max-width: 768px) {
    .floor-map__content {
        display: block;
    }
}

.floor-map__seat {
    margin-right: 10px;
    flex: 1;
}

@media screen and (max-width: 768px) {
    .floor-map__seat {
        width: 100%;
    }
}

.floor-map__area-wrap {
    max-width: 496px;
}

@media screen and (max-width: 768px) {
    .floor-map__area-wrap {
        max-width: 100%;
        margin-top: 24px;
    }
}

.floor-map__legend {
    margin-top: 40px;
}

.floor-map__legend-item {
    margin-top: 24px;
    display: flex;
}

.floor-map__legend-color {
    width: 21px;
    height: 21px;
    display: inline-block;
    margin-right: 8px;
    border-radius: 3px;
}

.floor-map__legend-color--study-area {
    background-color: #F4AB3A;
}

.floor-map__legend-color--focus-room {
    background-color: #5081BC;
}

.floor-map__legend-color--lounge {
    background-color: #B34D75;
}

.floor-map__legend-color--refresh-zone {
    background-color: #67B97D;
}

.floor-map__legend-color--phone-booth {
    background-color: #7F7F7F;
}

.floor-map__legend-text {
    color: #6D6D6D;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.03em;
    flex: 1;
}

/* area
------------------------------------------------------------- */
.areas {
    padding-top: 60px;
    padding-bottom: 60px;
}

.areas__section-wrap {
    margin-top: 60px;
}

.areas__section:not(:first-child) {
    margin-top: 120px;
}

@media screen and (max-width: 768px) {
    .areas__section:not(:first-child) {
        margin-top: 80px;
    }
}

.areas__header {
    position: relative;
}

.areas__subtitle {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.1em;
    display: inline-block;
    padding: 3px 15px;
    position: absolute;
    left: 0;
    top: 0;
}

.areas__subtitle--study {
    background-color: #EB971D;
}

.areas__subtitle--focus {
    background-color: #5082BB;
}

.areas__subtitle--lounge {
    background-color: #B34D75;
}

.areas__subtitle--refresh {
    background-color: #66BA7E;
}

.areas__items {
    display: grid;
    grid-template-columns: repeat(auto-fit, 280px);
    gap: 16px;
    place-content: center;
    margin-top: -156px;
    position: relative;
    z-index: 100;
}

@media screen and (max-width: 768px) {
    .areas__items {
        margin-top: -220px;
    }
}

.areas__item {
    background-color: #fff;
    box-shadow: 2px 2px 40px rgba(0, 0, 0, 0.1);
    padding: 28px 10px 13px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.areas__item-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.03em;
    text-align: center;
    padding-bottom: 13px;
    position: relative;
}

.areas__item-title::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 1px;
    background-color: #EB971D;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.areas__item-title--study {
    color: #EB971D;
}

.areas__item-title--study::after {
    background-color: #EB971D;
}

.areas__item-title--focus {
    color: #5082BB;
}

.areas__item-title--focus::after {
    background-color: #5082BB;
}

.areas__item-title--lounge {
    color: #B34D75;
}

.areas__item-title--lounge::after {
    background-color: #B34D75;
}

.areas__item-title--refresh {
    color: #66BA7E;
}

.areas__item-title--refresh::after {
    background-color: #66BA7E;
}

.areas__item-description {
    margin-top: 17px;
    color: #171717;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.03em;
    text-align: center;
}

.areas__image {
    width: 259px;
    margin-top: 40px;
}

/* price
------------------------------------------------------------- */
.pricing {
    background-color: #E5EEEC;
    -webkit-clip-path: polygon(0 calc(0% + 7vw), 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 calc(0% + 7vw), 100% 0, 100% 100%, 0 100%);
    padding-top: 137px;
    padding-bottom: 120px;
}

@media screen and (max-width: 768px) {
    .pricing {
        padding-top: 80px;
        padding-bottom: 60px;
    }
}

.pricing__inner.inner {
    max-width: 850px;
}

.pricing__title {
    max-width: 430px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .pricing__title {
        max-width: 300px;
    }
}

.pricing__plans {
    margin-top: 60px;
}

@media screen and (max-width: 768px) {
    .pricing__plans {
        margin-top: 40px;
    }
}

.horizon {
    margin-top: 32px;
    height: 158px;
    display: flex;
    align-items: center;
    position: relative;
}

@media screen and (max-width: 768px) {
    .horizon {
        display: block;
        height: auto;
    }
}

.horizon__title,
.horizon__content {
    height: inherit;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.horizon__title {
    background-color: #367658;
    border: 1px solid #A6C2B7;
    border-radius: 8px 0 0 8px;
    color: #fff;
    position: relative;
}

@media screen and (max-width: 768px) {
    .horizon__title {
        border-radius: 8px 8px 0 0;
        padding: 9px 0;
    }
}

.pricing__badge {
    position: absolute;
    top: -32px;
    left: -39px;
}

@media screen and (max-width: 768px) {
    .pricing__badge {
        top: 50%;
        left: -8px;
        transform: translateY(-50%);
    }
}

.horizon__lead-wrap {
    display: flex;
    gap: 5px;
    align-items: end;

    color: #FFF001;
    font-size: 18px;
    font-weight: 600;
    line-height: 180%;
    letter-spacing: 0.03em;
}

.horizon__lead-date {
    font-size: 14px;
    font-weight: 500;
}

.horizon__lead-date span {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
}


.horizon__content {
    background-color: #fff;
    border: 1px solid #A6C2B7;
    border-radius: 0 8px 8px 0;
}

@media screen and (max-width: 768px) {
    .horizon__content {
        border-radius: 0 0 8px 8px;
        padding: 30px 0;
    }
}

.pricing__plan-description {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.03em;
}

.pricing__plan-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-align: center;
}

.pricing__plan-time {
    display: inline;
}

@media screen and (max-width: 768px) {
    .pricing__plan-time {
        display: block;
    }
}

.pricing__grid {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    place-content: center;
}

.vertical__title,
.vertical__content {
    border: 1px solid #A6C2B7;
    text-align: center;
}

.vertical__title {
    border-radius: 8px 8px 0 0;
    background-color: #367658;
    color: #fff;
    padding-top: 9px;
    padding-bottom: 9px;
}

.vertical__content {
    border-radius: 0 0 8px 8px;
    background-color: #fff;
    color: #171717;
    padding-top: 30px;
    padding-bottom: 30px;
}

.pricing__plan-title {
    margin-top: 4px;
}

.pricing__available-time {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

.pricing__plan-time {
    margin-top: 4px;
    font-family: "Open Sans", sans-serif;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

.pricing__plan-time:last-child {
    margin-left: 8px;
}

@media screen and (max-width: 768px) {
    .pricing__plan-time:last-child {
        margin-left: 0;
    }
}

.pricing__plan-time span {
    font-family: "Noto Sans JP", serif;
    font-size: 16px;
    color: #fff;
    border-radius: 3px;
    padding: 0 8px;
    margin-right: 5px;
}

.pricing__plan-time span.all-days {
    background-color: #66BA7E;
}

.pricing__plan-time span.weekday {
    background-color: #EB971D;
}

.pricing__plan-time span.holiday {
    background-color: #EB571D;
    padding: 0 3px;
}

.pricing__plan-price {
    color: #333;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.1em;
}

.pricing__plan-price span {
    font-family: "Open Sans", sans-serif;
    font-size: 40px;
    letter-spacing: 0.03em;
}

.pricing__note {
    margin-top: 24px;
    color: #6D6D6D;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.03em;
}

.pricing__note p {
    margin-top: 4px;
}

.additional-services {
    padding-top: 40px;
}

@media screen and (max-width: 768px) {
    .additional-services {
        padding-top: 0;
    }
}

#overtime {
	padding-top: 100px;
}

@media screen and (max-width: 768px) {
    #overtime {
        padding-top: 80px;
    }
}

.additional-services__title:not(:first-of-type) {
	margin-top: 60px
}

.additional-services__title {
    padding: 0 3px;
    color: #333;
    background: transparent;
    border-left: solid 8px #13402B;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.03em;
}

.additional-services__description {
    margin-top: 24px;
    margin-left: 12px;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.03em;
}

.additional-services__campaign {
    margin-top: 12px;
    margin-left: 12px;
    color: #333;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.03em;
}

.additional-services__note {
    margin-left: 12px;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.03em;
}

.additional-services__note span {
    font-size: 18px;
    color: red;
    font-weight: 700;
}

.additional-services__pricing {
    margin-top: 16px;
    margin-left: 12px;
    display: flex;
}

@media screen and (max-width: 768px) {
    .additional-services__pricing {
        display: block;
    }
}

.additional-services__option {
    display: flex;
}

@media screen and (max-width: 768px) {
    .additional-services__option.additional-services__option--option {
        display: block;
    }
}

.additional-services__option:not(:first-child) {
    margin-left: 24px;
}

@media screen and (max-width: 768px) {
    .additional-services__option:not(:first-child) {
        margin-left: 0;
        margin-top: 16px;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .additional-services__option:not(:first-child) .additional-services__time {
        width: 85px;
        text-align: center;
    }
}

.additional-services__time {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.03em;
    background-color: #367658;
    padding: 22px 16px;
    border-radius: 8px 0 0 8px;
    border: 1px solid #A6C2B7;
}

@media screen and (max-width: 768px) {
    .additional-services__time {
        font-size: 18px;
        padding: 20px 12px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .additional-services__time.additional-services__time--option {
        border-radius: 8px 8px 0 0;
        padding: 12px;
        text-align: center;
    }
}

.additional-services__price {
    color: #171717;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
    padding: 22px 16px;
    background-color: #fff;
    border-radius: 0 8px 8px 0;
    border: 1px solid #A6C2B7;
    width: 246px;
    text-align: center;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .additional-services__price.additional-services__price--option {
        border-radius: 0 0 8px 8px;
        width: 100%;
    }
}

.additional-services__price span {
    font-family: "Open Sans", sans-serif;
    font-size: 28px;
}

.additional-services__free-services {
    margin-top: 80px;
}

.additional-services__subtitle {
    text-align: center;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.03em;
    padding: 10px;
    background-color: #367658;
    border-radius: 8px 8px 0 0;
    border: 1px solid #A6C2B7;
}

.additional-services__items {
    display: grid;
    grid-template-columns: repeat(auto-fit, 174px);
    gap: 24px;
    place-content: center;
    background-color: #fff;
    border-radius: 0 0 8px 8px;
    border: 1px solid #A6C2B7;
    padding: 27px 0;
}

@media screen and (max-width: 768px) {
    .additional-services__items {
        grid-template-columns: 260px;
        gap: 32px;
    }
}

.additional-services__item-description {
    color: #333;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.03em;
    text-align: center;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .additional-services__item-description {
        font-size: 18px;
    }
}

.additional-services__image {
    margin-top: 7px;
}

/* access
------------------------------------------------------------- */
.access {
    background-color: #13402B;
    padding-top: 100px;
    padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
    .access {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.access__title {
    max-width: 480px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .access__title {
        max-width: 300px;
    }
}

.access__info-wrap {
    margin-top: 80px;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    align-items: center;
    max-width: 850px;
}

@media screen and (max-width: 768px) {
    .access__info-wrap {
        display: block;
        margin-top: 40px;
    }
}

.access__info {
    color: #fff;
    flex: 1;
}

.access__name {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.03em;
}

.access__name span {
    font-size: 16px;
}

.access__address {
    margin-top: 16px;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.03em;
}

.access__map-image {
    max-width: 400px;
}

@media screen and (max-width: 768px) {
    .access__map-image {
        margin-top: 20px;
    }
}

.access__google-map {
    margin-top: 80px;
}

@media screen and (max-width: 768px) {
    .access__google-map {
        margin-top: 60px;
    }
}

.access__directions {
    margin-top: 80px;
}

@media screen and (max-width: 768px) {
    .access__directions {
        margin-top: 60px;
    }
}

.access__direction {
    margin-top: 60px;
}

@media screen and (max-width: 768px) {
    .access__direction {
        margin-top: 40px;
    }
}

.access__direction-title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.03em;
    text-align: center;
    background-color: #367658;
    padding: 10px;
    border-radius: 8px 8px 0 0;
}

.access__steps {
    background-color: #fff;
    border-radius: 0 0 8px 8px;
    padding: 27px 92px;
    position: relative;
}

@media screen and (max-width: 768px) {
    .access__steps {
        padding: 27px 40px;
    }
}

.access__step {
    margin: 0 12px;
}

.access__step-description {
    color: #13402B;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.03em;
    text-align: center;
    margin-top: 16px;
}

.access__step-description span {
    color: #fff;
    background-color: #13402B;
    padding: 0 6px;
    margin-right: 6px;
}

.slide-arrow {
    cursor: pointer;
    width: 21px;
    height: 21px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.prev-arrow {
    transform: rotate(180deg);
    left: 63px;
    top: 46%;
}

@media screen and (max-width: 768px) {
    .prev-arrow {
        left: 20px;
    }
}

.next-arrow {
    right: 63px;
}

@media screen and (max-width: 768px) {
    .next-arrow {
        right: 20px;
    }
}

/* faq
------------------------------------------------------------- */
.faq {
    background-color: #F5F5F5;
    padding: 80px 0;
}

.faq__inner.inner {
    max-width: 850px;
}

.faq__title {
    margin: 0 auto;
    max-width: 430px;
}

@media screen and (max-width: 768px) {
    .faq__title {
        max-width: 300px;
    }
}

.faq__content {
    margin-top: 80px;
}

.faq__category {
    margin-top: 32px;
}

.faq__category-title {
    max-width: 362px;
}

.faq__item {
    margin-top: 24px;
    background-color: #fff;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
}

.faq__question {
    display: flex;
    align-items: center;
    color: #333;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.03em;
    padding: 22px 40px 22px 28px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

@media screen and (max-width: 768px) {
    .faq__question {
        font-size: 18px;
    }
}

.faq__question::after {
    position: absolute;
    width: 17px;
    height: 11px;
    right: 21px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    background: url(../images/faq-arrow.svg);
    transition: 0.3s transform, 0.3s opacity;
}

.faq__question.is-open {
    color: #94C673;
}

.faq__question.is-open::after {
    transform: rotate(180deg);
}

.faq__answer {
    display: none;
    padding: 0 28px 22px;
    border-radius: 0 0 8px 8px;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.03em;
}

.faq__answer a {
    color: #333;
    border-bottom: 1px solid;
    font-size: 16px;
}

.faq__answer.default {
    display: block;
}

/* mission
------------------------------------------------------------- */
.mission {
    background-image: url(../images/mission_bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 152px 0;
}

@media screen and (max-width: 768px) {
    .mission {
        padding: 60px 0;
    }
}

.mission__content {
    max-width: 850px;
    margin: 0 auto;
}

.mission__title {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.03em;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .mission__title {
        font-size: 30px;
    }
}

.mission__text {
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.03em;
    margin-top: 60px;
}

@media screen and (max-width: 768px) {
    .mission__text {
        margin-top: 30px;
    }
}

/* ====================================================================
# footer
==================================================================== */
.footer {
    background-color: #13402B;
    padding-top: 48px;
    padding-bottom: 4px;
    color: #fff;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
    .footer__inner {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .footer__logo {
        max-width: 290px;
    }
}

.footer__address {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.03em;
}

.footer__social {
    display: flex;
    margin-top: 24px;
}

@media screen and (max-width: 768px) {
    .footer__social {
        margin-top: 16px;
    }
}

.footer__social-link {
    margin-right: 16px;
}

@media screen and (max-width: 768px) {
    .footer__nav {
        margin-top: 40px;
    }
}

.footer__nav-list {
    display: flex;
}

@media screen and (max-width: 768px) {
    .footer__nav-list {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .footer__nav-item {
        margin-top: 16px;
    }
}

.footer__nav-item:not(:last-child) {
    margin-right: 32px;
}

@media screen and (max-width: 768px) {
    .footer__nav-item:not(:last-child) {
        margin-right: 0;
    }
}

.footer__nav-link {
    color: #fff;
}

.footer__nav-list--links {
    margin-top: 32px;
}

.footer__nav-list--links .footer__nav-link {
    border: none;
}

.footer__copyright {
    text-align: center;
    margin-top: 37px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.03em;
}


/* ====================================================================
# 固定ページ用
==================================================================== */
.page-content {
    padding: 40px 0 120px 0;
}

.page-content h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 40px;
    color: #2a5f2e;
}

.page-content h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 48px;
    color: #646464;
}

.page-content p {
    margin-top: 16px;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    color: #171717;
}
@media screen and (max-width: 768px) {
    .page-content p {
        font-size: 15px;
    }
}


/* ====================================================================
# users
==================================================================== */
.users {
    max-width: 480px;
    background-color: #fff;
    margin-top: 36px;
    margin-right: auto;
    margin-left: auto;
    border: 1px solid #A6C2B7;
    border-radius: 8px;
}

@media screen and (max-width: 768px) {
    .users {
        max-width: 300px;
    }
}

.users__inner {

}

.users__main {
    text-align: center;
    padding: 15px;
    color: #367658;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.03em;
}

.users__main-icon {
    width: 32px;
    margin: 0 auto;

}

.users__now-number {
    font-size: 40px;
}

.users__description {

}

.users__footer {
    padding: 11px;
    background-color: #367658;
    border-radius: 0 0 8px 8px;
}

.users__now-time {
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.03em;
}

.users-now-m {

}

.users-now-d {

}

.users-now-t {

}



/* ====================================================================
# 料金改定
==================================================================== */
.price-notice {
	margin-top: 40px;
}

.price-notice__heading,
.price-table__heading {
	color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0.03em;
	
	background-color: #367658;
	border: 1px solid #A6C2B7;
	border-radius: 8px 8px 0 0;
	padding: 10px 24px;
}

.price-notice__content {
	background-color: #fff;
	border: 1px solid #A6C2B7;
	border-radius: 0 0 8px 8px;
	padding: 15px 24px;
}

.price-notice__text {
	color: #333;
    font-size: 14px;
    font-weight: 500;
    line-height: 180%;
    letter-spacing: 0.03em;
}

.price-table {
	margin-top: 40px;
}

.price-table__list {
	background-color: #fff;
	border: 1px solid #A6C2B7;
	border-radius: 0 0 8px 8px;
	padding: 15px 24px;
	
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px 0;
}

@media screen and (max-width: 768px) {
	.price-table__list {
        grid-template-columns: 1fr;
		gap: 24px 0;
    }
}


.price-table__plan {
	color: #333;
    font-size: 16px;
    font-weight: 700;
    line-height: 180%;
    letter-spacing: 0.03em;
}

.price-table__price {
	color: #333;
    font-size: 14px;
    font-weight: 500;
    line-height: 180%;
    letter-spacing: 0.03em;
}






/* ====================================================================
# 共通パーツ
==================================================================== */
@media screen and (max-width: 768px) {
    .md-none {
        display: none !important;
    }
}

.md-show {
    display: none !important;
}

@media screen and (max-width: 768px) {
    .md-show {
        display: block !important;
    }
}

.inner {
    width: 100%;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 25px;
    padding-right: 25px;
}

@media screen and (max-width: 768px) {
    .inner {
        max-width: 600px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

.section-title {
    text-align: center;
}

.section-title__icon {
    width: 72px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .section-title__icon {
        width: 60px;
    }
}

.section-title__title {
    color: #13402B;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.03em;
    display: inline-block;
    margin-top: 9px;
    position: relative;
    padding: 0 24px;
}

@media screen and (max-width: 768px) {
    .section-title__title {
        font-size: 32px;
    }
}

.section-title__title:before,
.section-title__title:after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 123px;
    border-top: 4px double;
    content: "";
}

.section-title__title:before {
    left: -123px;
}

.section-title__title:after {
    right: -123px;
}

/* admission
------------------------------------------------------------- */
.admission {
    padding-bottom: 60px;
    text-align: center;
}

.admission__title {
    font-size: 20px;
    line-height: 160%;
    letter-spacing: 0.03em;
}

.admission__desc span {
    color: red;
}

.admission__desc {
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.03em;
}

.admission__link-wrap {
    margin-top: 20px;
}

.admission__link {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.03em;
    padding: 8px 30px;
    border-radius: 50px;
    background-color: #FF7F00;
}

@media screen and (max-width: 768px) {
    .admission__link {
        font-size: 16px;
    }
}

@media screen and (max-width: 375px) {
    .admission__title {
        font-size: 16px;
    }
}
