/*
Theme Name: GP
Author: Tada
Version: 1.0
*/



@charset "utf-8";

/* === @reset === */
* {
    margin: 0;
    padding: 0;
}

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

ol,
ul {
    list-style: none;
}

a {
    text-decoration: none;
    text-underline-offset: 0.15em;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    cursor: pointer;
    outline: none;
}

*:focus {
    outline: none;
}

html {
    -webkit-text-size-adjust: 100%;
}

button,
input,
select,
textarea {
    font-family: inherit;
}


/* @common */
html {
    font-size: 16px;
}

body {
    font-family: 'M PLUS 1', sans-serif;
}

.container {
    width: 100%;
    overflow: hidden;
}

.section {
    width: 66.67%;
    margin: 0 auto;
}

@media screen and (max-width:768px) {
    html {
        font-size: 14px;
    }

    .section {
        width: 90%;
    }
}


/* @header */
header {
    position: absolute;
    width: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    overflow: hidden;
}

.top-bar {
    display: flex;
    background-image: url(img/header.webp);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 11.25rem;
    box-sizing: border-box;
}

.header-h1 {
    width: 5.657%;
    margin-left: 6.25%;
    margin-top: 0.9375rem;
}

.company-name {
    box-sizing: border-box;
    padding-left: 1.273rem;
    line-height: 120%;
    font-size: 1.5rem;
    font-weight: 700;
    color: #374C00;
    margin-top: 2.0625rem;
}

.company-name span.big {
    font-size: 2.25rem;
}

.company-name p.small {
    font-size: 1.25rem;
    padding-top: 1rem;
}

.day {
    padding-top: 1rem;
    padding-left: 2.25rem;
}

.company-name-flex {
    display: flex;
    align-items: end;
}

.g-nav {
    margin-left: 10.4687%;
}

.g-nav ul {
    display: flex;
    margin-top: 3.375rem;
}

.g-nav ul li a {
    color: #374C00;
    font-size: 1.25rem;
    font-weight: 1000;
    line-height: 120%;
    margin-left: 1.875rem;
    transition: 0.3s;
}

.g-nav ul li a:hover {
    opacity: 0.7;
}

.g-nav ul li:first-child a {
    margin-left: 0;
}

.tel {
    box-sizing: border-box;
    display: flex;
    margin-top: 2.125rem;
    margin-left: 3.2291%;
    background-color: #6CA7F5;
    height: 4.375rem;
    width: 12.8645%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.tel:hover {
    opacity: 0.8;
}

.tel img {
    width: 1.4375rem;
    justify-content: center;
}

.tel p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 120%;
    color: #fff;
    margin-left: 0.6875rem;
}

main {
    height: 100dvh;
    position: relative;
}

.main-2 {
    background-image: url(img/hero_02.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    height: 560px;
    position: relative;
}

.hero h2 {
    font-weight: bold;
    font-size: 4.625rem;
    line-height: 160%;
    color: #fff;
    text-shadow: 6px 6px 10px #1d2702;
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    white-space: nowrap;
}

.sm-nav {
    display: none;
}

.burger-btn {
    display: none;
}

.drawer-menu {
    position: fixed;
    top: 0;
    right: -290px;
    width: 250px;
    height: 100vh;
    background: #374C00;
    transition: 0.3s;
    padding: 40px 20px;
    z-index: 999;
}

@media screen and (max-width:1440px) {
    .hero h2{
        font-size: 3.5rem;
    }
    .company-name {
        font-size: 1rem;
        padding-left: 1.273rem;
    }

    .company-name span.big {
        font-size: 1.5rem;
    }

    .company-name p.small {
        font-size: 0.9rem;
    }

    .day {
        padding-left: 1.3rem;
    }

    .g-nav {
        margin-left: 5%;
    }

    .tel img {
        width: 1rem;
    }

    .tel p {
        font-size: 0.9rem;
    }

    .tel {
        height: 3rem;
    }
}


@media screen and (max-width:768px) {
    .burger-btn {
        width: 13.9534%;
        height: 60px;
        background: #8EC216;
        border: none;
        cursor: pointer;
        position: absolute;
        top: 2rem;
        right: 4.6511%;
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 1000;
    }

    .burger-btn span {
        display: block;
        width: 35px;
        height: 5px;
        background: #fff;
        margin: 5px 0;
        transition: 0.3s;
        transform-origin: center;
    }


    .menu-label {
        margin-top: 6px;
        color: #fff;
        font-size: 0.8125rem;
        font-weight: bold;
    }

    .burger-btn.open span:nth-child(1) {
        transform: translateY(12px) rotate(45deg);
    }

    .burger-btn.open span:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.open span:nth-child(3) {
        transform: translateY(-12px) rotate(-45deg);
    }

    .drawer-menu.menu--open {
        right: 0;
    }

    .drawer-menu ul {
        list-style: none;
        margin-top: 100px;
    }

    .drawer-menu a {
        font-weight: 700;
        font-size: 1.25rem;
        display: block;
        padding-bottom: 25px;
        font-size: 18px;
        color: #fff;
        border-bottom: 1px dotted #fff;
        margin-bottom: 25px;
    }

    .overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        opacity: 0;
        pointer-events: none;
        transition: 0.3s;
        z-index: 900;
    }

    .overlay.open {
        opacity: 1;
        pointer-events: auto;
    }
}

@media screen and (max-width:768px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
    }

    .header-h1 {
        margin-top: 0;
    }

    .company-name {
        margin-top: 0;
    }

    .top-bar {
        width: 100%;
        height: 120px;
        display: flex;
        align-items: center;
    }

    .g-nav {
        display: none;
    }

    .tel {
        display: none;
    }

    .header-h1 {
        margin-left: 4.6511%;
        width: 9.444%;
    }

    .company-name {
        font-size: 1.125rem;
    }

    .company-name span.big {
        font-size: 1.375rem;
    }

    .day {
        padding: 0;
        margin-left: 1.9rem;
    }

    .company-name p.small {
        font-size: 0.875rem;
    }

    .hero h2 {
        font-size: 1.875rem;
        white-space: nowrap;
    }

    .sm-nav {
        width: 100%;
        display: flex;
        position: fixed;
        bottom: 0;
        right: 0;
        z-index: 999;
    }

    .tel-sm {
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #6CA7F5;
        color: #fff;
        box-sizing: border-box;
        padding: 1.4285rem 0;
        transition: 0.3s;
    }

    .tel-sm:hover {
        opacity: 0.8;
    }

    .tel-sm img {
        width: 1rem;
        margin-right: 0.5rem;
    }

    .tel-sm p {
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        font-size: 1rem;
    }

    .access-sm {
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #8EC216;
        padding: 1.4285rem 0;
        box-sizing: border-box;
        color: #fff;
        transition: 0.3s;
    }

    .access-sm:hover {
        opacity: 0.8;
    }

    .access-sm img {
        width: 1rem;
        margin-right: 0.5rem;
    }

    .access-sm p {
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 500;
        font-size: 1rem;
        line-height: 120%;
    }
}

/* intro */

#intro {
    display: flex;
    margin-bottom: 5rem;
}

.intro-text {
    margin-top: 6.25rem;
    width: 65%;
}

.h2-flex {
    display: flex;
    align-items: center;
    padding-bottom: 1.25rem;
    border-bottom: 5px solid #8EC216;
    margin-bottom: 2.5rem;
}

.intro-logo {
    width: 8.6612%;
    object-fit: contain;
}

.intro-h2 {
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 120%;
    margin-left: 0.87rem;
}

.intro-h3 {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 200%;
    color: #8EC216;
    margin-bottom: 2.5rem;
}

.intro-p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 200%;
}

.intro-img {
    width: 40.3906%;
    object-fit: contain;
}

.intro-h3-375 {
    display: none;
}

@media screen and (max-width:375px) {
    .intro-h3-375 {
        display: inline;
    }
}

@media screen and (max-width:768px) {
    #intro {
        width: 81.4%;
    }

    .intro-img {
        display: none;
    }

    .intro-text {
        width: 100%;
    }

    .intro-h2 {
        font-size: 1.3rem;
        margin-left: 0.6587rem;
    }

    .intro-logo {
        width: 1.9rem;
    }

    .intro-h3 {
        font-size: 1rem;
    }

    .intro-p {
        position: relative;
        font-size: 0.9rem;
    }

    .intro-p::before {
        content: "";
        width: 430px;
        height: 453px;
        position: absolute;
        top: 0%;
        right: 50%;
        transform: translateX(50%);
        background-image: url(img/plant.webp);
        background-size: contain;
        opacity: 0.4;
        z-index: -1;
    }
}

/* features */

.features-flex {
    display: flex;
}

#features h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 120%;
    color: #374C00;
    text-align: center;
    margin-bottom: 2.54rem;
}

.big-text {
    font-size: 4rem;
}

.highlight {
    font-size: 4rem;
    color: #fff;
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-left: 1.5rem;
}

.highlight::after {
    content: "";
    position: absolute;
    top: -40%;
    left: -21%;
    width: 7.5rem;
    height: 6.25rem;
    border-radius: 50%;
    background-color: #6CA7F5;
    z-index: -1;
}

.highlight::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -21%;
    width: 7.5rem;
    height: 6.25rem;
    border-radius: 50%;
    background-color: #6CA7F5;
    z-index: -1;
}

.br-sm {
    display: none;
}

.features-box{
    width: 31.25%;
}

.features-box img {
    width: 100%;
    height: 15rem;
    object-fit: cover;
}

.features-box1 {
    margin-right: 2.5rem;
}

.features-box3 {
    margin-left: 2.5rem;
}

.features-box-h3 {
    margin-top: 1.25rem;
    margin-bottom: 1.75rem;
    border-left: 5px solid #8EC216;
    padding-left: 1.875rem;
    font-size: 2rem;
}

.features-box-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.25rem;
    padding: 2.5rem;
    box-sizing: border-box;
    height: 17.5rem;
    background-color: #E9F8C4;
    font-weight: 500;
    line-height: 200%;
}

.features-link {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 8.33rem;
    position: relative;
    margin-top: 13.75rem;
}

.features-link::before {
    content: "";
    position: absolute;
    top: -100px;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    background-color: #F5F5F1;
    z-index: -1;
}

.features-link-box {
    width: 31.25%;
    height: 260px;
    position: relative;
    box-sizing: border-box;
    transition: 0.3s;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.features-link-box1 {
    background-image: url(img/featureslink_01.webp);
    margin-right: 1.67rem;
    border-right: #8EC216 solid 5px;
    border-left: #8EC216 solid 5px;
}

.features-link-box2 {
    background-image: url(img/featureslink_02.webp);
}

.features-link-box3 {
    background-image: url(img/featureslink_03.webp);
    margin-left: 1.67rem;
}

.features-link-box:hover {
    opacity: 0.8;
}

.features-link-text {
    position: absolute;
    top: 9.0625rem;
    box-sizing: border-box;
    width: 100%;
    padding-left: 1.25rem;
    background-color: #ffffffdd;
}

.features-link-text p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    line-height: 120%;
    color: #374C00;
}

@media screen and (max-width:1440px){
    .features-box-h3{
        font-size: 1.5rem;
    }
}

@media screen and (max-width:768px) {
    .highlight {
        margin-top: 2rem;
        margin-bottom: 1rem;
        font-size: 3rem;
        display: block;
        height: 3rem;
        margin-top: 3rem;
    }

    .highlight::before {
        top: -70%;
        right: 43%;
    }

    .highlight::after {
        top: -70%;
        left: 43%;
    }

    #features h2 {
        font-size: 1.25rem;
    }

    .big-text {
        font-size: 2rem;
    }

    #features {
        width: 100%;
    }

    .features-flex {
        flex-direction: column;
        width: 90.7%;
        margin: 0 auto;
    }

    .features-box {
        width: 100%;
        margin-bottom: 1.88rem;
    }

    .features-box1 {
        margin-right: 0;
    }

    .features-box3 {
        margin-left: 0;
        margin-bottom: 5rem;
    }

    .features-link {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 9.9603rem;
    }

    .features-link-box {
        width: 90.69%;
        margin-bottom: 1.25rem;
        background-position: center;
        background-size: cover;
        border-left: 5px solid #8EC216;
        border-right: 5px solid #8EC216;
    }

    .features-link-box1 {
        margin-right: 0;
    }

    .features-link-box3 {
        margin-left: 0;
    }

    .features-box-text {
        height: auto;
    }
}

/* banner */

.banner-text {
    margin-top: 12.5rem;
    padding-top: 2.5rem;
    padding-left: 2.5rem;
    border: 11px solid #F09191;
    position: relative;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 70%),
        url(img/banner.webp);
    background-size: cover;
    background-position: center;
    margin-bottom: 7.5rem;
}

.banner-text h3 {
    font-weight: 700;
    font-size: 3.625rem;
    line-height: 120%;
    border-bottom: 2.1875rem solid #AAD150;
    display: inline-block;
}

.banner-text h3 span {
    font-size: 3rem;
    line-height: 120%;
    margin-left: 1.25rem;
}

.banner-text h4 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1.875rem 0;
    line-height: 120%;
}

.banner-text p {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 3.3125rem;
}

.read-more {
    position: absolute;
    top: 18.8125rem;
    right: 2.5rem;
    box-sizing: border-box;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 120%;
    color: #fff;
    background-color: #F09191;
    padding: 1.25rem 2.5rem;
    border-radius: 2rem;
    transition: 0.5s;
}

.read-more:hover {
    opacity: 0.8;
}

@media screen and (max-width:768px) {
    .banner-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 1.88rem 1.69rem 5.25rem;
        display: block;
background-image:
    linear-gradient(
        to bottom,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 1) 40%,
        rgba(255, 255, 255, 0) 80%
    ),
    url(img/banner.webp);
            text-align: center;
    }

    .banner-text h3 {
        font-size: 1.5rem;
        border-bottom: 1.5rem solid #AAD150;
    }

    .banner-text h3 span {
        font-size: 1rem;
    }

    .banner-text h4 {
        font-size: 1.5rem;
    }

    .banner-text p {
        line-height: 160%;
    }

    .read-more {
        top: 80%;
        right: 50%;
        transform: translateX(50%);
        width: 221px;
        height: 49px;
        font-size: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* access */

#access {
    margin-bottom: 7.5rem;
}

.access-logo {
    width: 5.3929%;
    margin-right: 1rem;
}

.title {
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 120%;
    border-bottom: 5px solid #8EC216;
    padding-bottom: 1rem;
    margin-bottom: 1.875rem;
}

.access-h3-flex img {
    width: 108.63px;
    margin-right: 0.85rem;
}

.access-flex {
    display: flex;
    align-items: center;
}

.access-text {
    width: 47%;
}

.right {
    width: 50%;
}

.map {
    height: 631px;
}

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

.access-h3-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    display: flex;
    width: 100%;
    gap: 1.67rem;
    margin-bottom: 2.8125rem;
}

.access-h3-flex h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 150%;
    color: #374C00;
}

.access-text-big {
    font-size: 2.25rem;
    margin-left: 0.71rem;
}

.access-text-blank {
    margin-left: 1.5rem
}

.access-info-list {
    display: flex;
    align-items: start;
    margin-top: 0.625rem;
    padding-bottom: 0.625rem;
    border-bottom: 1px #9d9d9d dotted;
}

.access-info-list dt {
    color: #fff;
    background-color: #8EC216;
    font-size: 1.25rem;
    text-align: center;
    height: 3rem;
    width: 11.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.access-info-list dd {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 200%;
    margin-left: 1.5rem;
}

.mail {
    box-sizing: border-box;
    background-color: #6CA7F5;
    margin-top: 40px;
    padding: 1.25rem 4.375rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 120%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 2.5rem auto 0;
    transition: 0.3s;
}

.mail:hover {
    opacity: 0.8;
}

.mail img {
    width: 2.11rem;
    margin-right: 0.83rem;
}

.access-flex {
    display: flex;
    width: 100%;
    gap: 1.67rem;
}


.map {
    flex: 1;
    min-width: 300px;
}

@media screen and (max-width:1440px){
    .access-h3-flex h3{
        font-size: 1.2rem;
    }
    .access-text-big{
        font-size: 2rem;
    }
    .access-text-blank{
        margin-left: 1.2rem;
    }
}


@media screen and (max-width:768px) {
    #access {
        width: 90.7%;
    }

    .access-logo {
        width: 1.90rem;
    }

    #access h2 {
        font-size: 1.38rem;
    }

    .access-text-big {
        font-size: 1.8rem;
        margin-left: 0.71rem;
    }

    .access-text-blank {
        margin-left: 1.5rem
    }

    .access-flex {
        flex-direction: column;
        justify-content: center;
    }

    .access-text img {
        width: 2.54rem;
    }

    .access-text {
        width: 100%;
    }

    .access-h3-flex {
        margin: 0 auto;
    }

    .access-info-list dt {
        font-size: 1rem;
        width: 7.5rem;
        height: 2.44rem;
        padding: 0.625rem;
    }

    .access-info-list dd {
        font-size: 1rem;
    }

    .mail {
        margin-top: 1.88rem;
        margin-bottom: 2.5rem;
        width: 20.48rem;
        padding: 20px 10px;
        font-size: 1.2rem;
    }

    .map {
        width: 100%;
        height: 385px;
        margin: 0 auto;
    }

    .title {
        font-size: 1.7rem;
    }
}

/* footer */

.footer-nav {
    margin-top: 7.5rem;
}

.footer-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-nav ul li a {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 120%;
    color: #374C00;
    margin-left: 5rem;
    transition: 0.3s;
}

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

.footer-nav ul li:first-child a {
    margin-left: 0;
}

.copyright {
    text-align: center;
    margin-top: 2.8125rem;
    font-weight: 500;
    font-size: 1rem;
    line-height: 120%;
}

.figure {
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: space-between;
    margin-top: 2.5rem;
    background-color: #8EC216;
}

.figure img {
    width: 20.83%;
}

.figure img:first-child {
    margin-left: 4.375rem;
}

.figure img:last-child {
    margin-right: 4.375rem;
}

@media screen and (max-width:768px) {
    .footer-nav {
        display: none;
    }

    .copyright {
        margin-top: 2.5rem;
        margin-bottom: 1.88rem;
        font-size: 0.7142rem;
    }

    .figure {
        flex-wrap: wrap;
        justify-content: center;
    }

    .figure img {
        width: 41.67%;
        margin: 0;
        box-sizing: border-box;
    }

    .figure img:nth-child(1) {
        order: 3;
        margin-left: 0;
        margin-bottom: 1.3rem;
    }

    .figure img:nth-child(2) {
        order: 4;
        margin-bottom: 1.3rem;
    }

    .figure img:nth-child(3) {
        order: 1;
        margin-top: 1.3rem;
    }

    .figure img:nth-child(4) {
        order: 2;
        margin-right: 0;
        margin-top: 1.3rem;
    }
}




/* facility css */

.main-2 h2 {
    font-weight: 900;
    font-size: 4.625rem;
    line-height: 160%;
    color: #fff;
    text-shadow: 6px 6px 10px #1d2702;
    position: absolute;
    top: 20rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    white-space: nowrap
}

#facility {
    margin-top: 2.5rem;
}

.facility-h2 {
    margin-top: 3.33rem;
    width: 100%;
    background-color: #374C00;
    color: #fff;
    font-family: "M PLUS 1", sans-serif;
    font-weight: 700;
    font-size: 1.33rem;
    line-height: 120%;
    padding-left: 0.83rem;
    padding-top: 1.08rem;
    padding-bottom: 1.08rem;
    box-sizing: border-box;
}

.facility-h2::before {
    content: "";
    width: 100%;
    height: 100%;
    border-left: 5px solid #fff;
    margin-right: 1.67rem;
}

@media screen and (max-width:768px) {
    .main-2 h2 {
        font-size: 3rem;
    }

    .right {
        width: 100%;
    }
}

.facility-dd {
    width: 24rem;
}

.floorplan {
    display: block;
    width: 75%;
    margin: 1.67rem auto;
}

/* gallery */

#gallery {
    margin-top: 5rem;
}

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

.gallery-flex::after {
    content: "";
    width: 31.25%;
}

.gallery-box {
    width: 31.25%;
}

.gallery-box h3 {
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 120%;
    color: #fff;
    display: block;
    background-color: #8EC216;
    margin-top: 0.83rem;
    margin-bottom: 2.46rem;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
}

@media screen and (max-width:768px) {
    .gallery-flex {
        flex-direction: column;
    }

    .gallery-box {
        width: 100%;
    }
}

/* wakaba */

#wakaba {
    margin-top: 5.17rem;
}

.wakaba-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 200%;
    margin-bottom: 2.625rem;
}


.facility-info-list {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.facility-info-item {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding: 0
}

.facility-info-item dt {
    width: 39.0625%;
    height: auto;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    color: #565656;
    text-align: center;
    background-color: #F1F1F1;
    padding: 1.875rem 0;
    position: relative;
}

.facility-info-item dd {
    margin: 0;
    padding: 1.875rem 0;
    padding-left: 3.33rem;
    flex: 1;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    color: #565656;
    position: relative;
}


.facility-info-item:first-child dt,
.facility-info-item:first-child dd {
    padding-top: 1.25rem;
}

.facility-info-item:first-child dt::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: #9C9C9C;
}

.facility-info-item:first-child dd::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: #DC3D8B;
}

@media screen and (max-width:768px) {
    .facility-info-item {
        flex-direction: column;
        display: flex;
    }

    .facility-info-item:first-child dd::before {
        display: none;
    }

    .facility-info-item dt {
        box-sizing: border-box;
        width: 100%;
        padding: 1rem 0;
        margin-bottom: 1rem;
        flex: 0 0 39.0625%;
    }

    .facility-info-item dd {
        width: 100%;
        text-align: left;
        padding-left: 0;
        flex: 1;
    }
}


/* corporation */

#corporation {
    margin-top: 5rem;
}

#corporation {
    margin-bottom: 5rem;
}


/* price css */
#price {
    margin-top: 3.33rem
}

.price-h2 {
    margin-top: 1.66rem;
}

.admission {
    border: 2px solid #374C00;
    margin-top: 1.66rem;
    background-color: #F7FAEE;
}

.admission li {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 120%;
    border-bottom: 1px dotted #9d9d9d;
    padding-bottom: 0.833rem;
    padding-top: 1.25rem;
    margin-left: 4.375rem;
    margin-right: 4.375rem;
}


.admission li:first-child {
    padding-top: 1.66rem;
}

.admission li:last-child {
    margin-bottom: 1.66rem;
}

@media screen and (max-width:768px) {
    .admission li {
        font-size: 1.2rem;
    }
}

/* price-list */

.price-list {
    margin-top: 1.66rem;
}

.price-info-item dd {
    text-align: right;
    padding-right: 5rem;
}

.price-info-item:last-child dt::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: #9C9C9C;
}

.price-info-item:last-child dd::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: #374C00;
}

.price-p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 200%;
    margin-top: 1.66rem;
}

@media screen and (max-width:768px) {
    .price-info-item dt {
        font-size: 0.9rem;
        height: 1.5rem;
    }

    .price-info-item dd {
        font-size: 0.9rem;
        white-space: nowrap;
        justify-content: center;
        width: 100%;
    }

    .price-p {
        font-size: 1rem;
    }

    .price-info-item:last-child dd::before {
        display: none;
    }
}

/* daily-flow */

#daily-flow {
    margin-top: 4.16rem;
}

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

.hour {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 120%;
    margin-top: 2.25rem;
    width: 6rem;
}

.timeline-hour .hour:first-child {
    margin-top: 29px;
}

.timeline-hour .hour:nth-child(4) {
    margin-top: 7.2rem;
}

.timeline-hour .hour:nth-child(6) {
    margin-top: 5.4rem;
}

.timeline {
    position: relative;
    margin-left: 66px;
    border-left: 8px solid #C1C1C1;
    padding-left: 1rem;
    height: 43rem;
}

.timeline-flex {
    display: flex;
}

.timeline-item {
    position: relative;
    margin-block: 2rem;
}

.timeline-contents {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 120%;
    margin-left: 3.6875rem;
    white-space: nowrap;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.2rem;
    top: -0.1rem;
    width: 30px;
    height: 30px;
    background: #374C00;
    border-radius: 50%;
}

.timeline-photo {
    width: 50%;
}

.sp-only {
    display: none;
}

@media screen and (max-width:1800px) {
    .timeline-photo {
        display: none;
    }

    .daily-flow-flex {
        flex-direction: column;
        width: 100%;
    }
}

@media screen and (max-width:768px) {

    .timeline-flex {
        width: 100%;
    }

    .timeline-flex {
        width: 100%;
    }

    .timeline {
        margin-left: 0;
        border-left: 4px solid #C1C1C1;
        padding-left: 1rem;
        height: auto;
    }

    .timeline-hour {
        display: flex;
        flex-direction: column;
        margin-bottom: 1rem;
    }

    .hour {
        font-size: 1rem;
        margin-top: 2.1rem;
    }

    .timeline-hour .hour:nth-child(4) {
        margin-top: 6.4rem;
    }

    .timeline-hour .hour:nth-child(6) {
        margin-top: 5.12rem;
    }

    .timeline-item::before {
        left: -1.9rem;
        width: 20px;
        height: 20px;
    }

    .timeline-contents {
        font-size: 0.9rem;
        margin-left: 1rem;
        font-weight: 600;
    }

    .sp-only {
        display: inline;
    }
}

/* news css */
#news {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.news-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.news-flex a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 31.25%;
    padding: 20px 40px;
    box-sizing: border-box;
    border: 1px solid #C6C6C6;
    margin-bottom: 2.5rem;
    transition: 0.3s;
}

.news-flex a:hover {
    opacity: 0.8;
}

.news-box img {
    width: 100%;
}

/* newはいらないとの指示あり、消す。 */
/* .news-h3-flex {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-top: 0.8rem;
}

.news-h3 {
    display: none;
    box-sizing: border-box;
    color: #fff;
    background-color: #6CA7F5;
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
} */

.news-h3 {
    display: none;
}

.date {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 120%;
    color: #000000;
    text-align: right;
    margin-top: 2.0625rem;
}

.news-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 120%;
    color: #000000;
    margin-top: 1.6875rem;
    margin-bottom: 2.5rem;
}

@media screen and (max-width:768px) {
    

    .news-flex a {
        width: 45%;
        justify-content: space-around;
    }

}

/* recruit css */
#recruit {
    margin-top: 5rem;
}

.recruit-banner {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.recruit-item {
    display: flex;
}

.recruit-item dt {
    width: 37.5%;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 120%;
    color: #565656;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    padding: 1.875rem 1.6rem;
    background-color: #f1f1f1;
    border-top: 2px solid #cecece;
}

.recruit-item:last-of-type dt {
    border-bottom: 2px solid #cecece;
}

.dd-wrapper {
    width: 62.5%;
    box-sizing: border-box;
    border-top: 2px solid #cecece;
}

.dd-wrapper dd {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 200%;
    color: #565656;
    padding: 1.875rem 3.75rem;
}

.dd-border {
    border-top: 2px solid #cecece;
}

.dd-border-bottom {
    border-bottom: 2px solid #cecece;
}

.indent {
    margin-left: 3em;
}

.indent-2 {
    margin-left: 4em;
}

.indent-3 {
    margin-left: 4em;
}

.indent-4 {
    margin-left: 1.6em;
}

@media screen and (max-width:768px) {
    .recruit-item {
        flex-direction: column;
    }

    .recruit-item dt {
        width: 100%;
    }

    .dd-wrapper {
        width: 100%;
    }

    .dd-wrapper dd {
        width: 100%;
        padding: 1.875rem 0;
    }

    .indent {
        margin-left: 1.5rem;
    }

    .indent-2 {
        margin-left: 1em;
    }

    .indent-3 {
        margin-left: 0em;
    }

    .indent-4 {
        margin-left: 1em;
    }

}

/* message */

#message {
    margin-top: 7.5rem;
    margin-bottom: 7.5rem;
}

.message-box {
    padding: 2.5rem 3.125rem;
    border: 3px solid #374C00;
    background-color: #F7FAEE;
}

.message-box ul li {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 120%;
    border-bottom: 1px dotted #9D9D9D;
    padding: 1.25rem 0;
}

.message-box ul li:first-child {
    padding-top: 0;
}

.message-box ul li:last-child {
    padding-bottom: 0;
}

@media screen and (max-width:768px) {
    .message-box ul li {
        font-weight: 200;
    }
}

/* contact */

#contact {
    margin-top: 5rem;
}

.contact-form {
    margin: 0 auto;
    width: 81%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.form-item {
    display: flex;
    align-items: start;
    margin-bottom: 2.5rem;
    width: 100%;
}

label {
    display: flex;
    justify-content: space-around;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 1.875rem;
    margin-left: 1.25rem;
}

.required {
    display: inline-block;
    margin-right: 0.25rem;
    padding: 0.625rem;
    border: 3px solid #8EC216;
    color: #8EC216;
    font-size: 0.9em;
}

.contact-input {
    margin-left: auto;
    width: 50%;
    background-color: #EFEFEF;
    border: none;
}

.contact-textarea {
    margin-left: auto;
    width: 100%;
    background-color: #EFEFEF;
    border: none;
}


input,
textarea {
    margin-left: auto;
    width: 50%;
    background-color: #EFEFEF;
    border: none;
}

input {
    height: 60px;
}

textarea {
    height: 404px;
    align-self: flex-start;
}

.input-wrap {
    margin-left: auto;
    width: 50%;
}

.input-wrap input {
    width: 100%;
}

.form-item-2 {
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.contact-submit {
    margin: 0 auto;
    display: block;
    background-color: #8EC216;
    padding: 1.25rem 5rem;
    width: 360px;
    height: 70px;
    border: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 1.5625rem;
    color: #EBEBEB;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.contact-p-div {
    width: 81.25%;
    margin: 0 auto 7.5rem;
}

.contact-p {
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 200%;
}

@media screen and (max-width:768px) {
    .form-item {
        flex-direction: column;
        align-items: start;
    }

    label {
        margin-left: 0;
        margin-bottom: 0.5rem;
        font-size: 1.5rem;
    }

    .required {
        padding: 0.3rem;
    }

    .input-wrap {
        width: 100%;
    }

    .contact-input,
    .contact-textarea {
        margin-left: 0;
        width: 100%;
    }

    textarea {
        height: 5rem;
    }


    .contact-submit-box {
        width: 80%;
        /* 幅を調整 */
        margin: 0 auto;
        /* 左右中央寄せ */
        text-align: center;
        /* 中のボタンを中央に */
    }

    .contact-submit {
        width: auto;
        /* 幅を自動に */
        max-width: 100%;
        /* 親幅に収める */
        display: inline-block;
        /* 横幅固定解除して中央に */
        margin: 0 auto;
        /* 左右マージンで中央 */
        justify-content: center;
        /* flexの中も中央 */
    }

    .contact-submit {
        display: flex;
        /* 中の文字をフレックスで配置 */
        justify-content: center;
        /* 横方向中央 */
        align-items: center;
        /* 縦方向中央 */
        width: 100%;
        /* 親幅に合わせる場合 */
        max-width: 360px;
        /* 元の固定幅を残したい場合 */
        height: 70px;
        /* 高さ */
        background-color: #8EC216;
        color: #EBEBEB;
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 500;
        font-size: 1rem;
        padding: 0 0.5rem;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        margin: 0 auto;
        /* 親の中央寄せ */
        text-align: center;
        /* 万が一の保険 */
    }

    .contact-p {
        font-size: 0.9rem;
        text-align: left;
    }
}

.post-card-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2.0202%;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.post-card {
    width: 31.25%;
    border: 1px solid #ddd;
    padding: 0.8rem;
    background: #fff;
    box-sizing: border-box;
    transition: 0.3s;
    margin-bottom: 2rem;
}

.post-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.post-card a {
    color: inherit;
    text-decoration: none;
}

.post-thumb img {
    width: 100%;
    height: auto;
    margin-bottom: 0.8rem;
    display: block;
}

.post-date {
    font-size: 1.25rem;
    font-weight: bold;
    text-align: right;
    margin-right: 2rem;
    margin-bottom: 15px;
}

.post-text {
    font-size: 1.25rem;
    line-height: 1.6;
}

/* .news-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.news-flex a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 31.25%;
    padding: 20px 40px;
    box-sizing: border-box;
    border: 1px solid #C6C6C6;
    margin-bottom: 2.5rem;
    transition: 0.3s;
}

.news-flex a:hover{
    opacity: 0.8;
}

.news-box img {
    width: 100%;
}


.date {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 120%;
    color: #000000;
    text-align: right;
    margin-top: 2.0625rem;
}

.news-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 120%;
    color: #000000;
    margin-top: 1.6875rem;
    margin-bottom: 2.5rem;
}

@media screen and (max-width:768px) {
    .news-flex {
        flex-direction: column;
    }

    .news-flex a {
        width: 100%;
    }

} */

@media screen and (max-width:768px) {
    .post-card-list {
        flex-direction: column;
    }

    .post-card {
        width: 100%;
    }
}


.single-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.single-date {
    color: #666;
    margin-bottom: 2rem;
}

.single-content {
    line-height: 1.8;
}

@media(max-width: 768px) {
    .single-title {
        font-size: 1.25rem;
    }

}

/* 修正用 */

/* シングルページ本文 */

/* タイトル・日付 */
.single-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.single-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
}
.single-content {
    line-height: 1.8;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .single-title {
        font-size: 1.25rem;
    }
}

/* ヘッダーとフッターを横幅100%に */
header, footer {
    width: 100%;
    margin: 0;
    padding: 0;
}

