@charset "UTF-8";
/*
@bg: #fafafa;
@font: #333;
@lightgrey: #f5f4f1;
@green: #00a83b;
@yellow: #ffda01;
@fontSize: 16px;
@lineHeight: 1.8;
*/

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background: #fafafa;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.1em;
    text-align: justify;
    color: #333!important;
    font-family: "Noto Sans JP", 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
}

.wrapper {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}
img {
    max-width: 100%;
    width: auto;
    height: auto;
}

a:link,a:visited {
    color: inherit;
}

a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}    

a:hover {
    color: inherit;
    text-decoration: none;
    opacity: 1;
    transform: none;
    transition: all 0.3s ease;
}    

.header {
    position: sticky;
    z-index: 100;
    top: 0;
    background: #00a83b;
    color: #fff;
    padding: 20px 0;
}

.container {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
}    

.container.container--header {
    max-width: 1280px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-title {
    font-size: 1.84em;
    letter-spacing: 0.15em;
    line-height: 1;
}

.header-title > a {
    display: block;
    width: fit-content;
    white-space: nowrap;
}

.header-title > a:hover {
    color: inherit;
}

.gnav {
    display: block;
}

.gnav-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0 50px;
    width: fit-content;
    list-style: none;
    font-size: 0.94em;
    font-weight: bolder;
    margin: 0;
}

.gnav-list-item {
    line-height: 1;
}

.gnav-list-item:before {
    content: "●";
    font-size: 0.75em;
    color: #ffda01;
}    

.btn {
    display: inline-block;
    width: fit-content;
    min-width: 150px;
    background: #fff;
    color: #00a83b;
    text-align: center;
    border: solid 2px #fff;
    border-radius: 50px;
    line-height: 1;
    padding: 8px 16px;
}

.btn:hover {
    background: #00a83b;
    border-color: #00a83b;
    color: #fff;
}

.btn.btn--menu-access {
    color: #00a83b;
}

.btn.btn--menu-access:hover {
    opacity: 0.8;
    background: #fff;
    border-color: #fff;
    color: #00a83b;
}

.btn.btn--primary {
    color: #fff;
    background: #00a83b;
    border-color: #00a83b;
}

.btn.btn--primary:hover {
    background: #fff;
    color: #00a83b;
}

.btn.btn--large {
    padding: 18px 25px;
}

#section0 {
    background: #eee;
    margin-bottom: 100px;
}

#section1,
#section2,
#access {
    position: relative;
    padding-top: 100px;
    margin-top: -100px;
}

.top-main {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.top-main-image {
    width: 55%;
    display: block;
}

.top-main-text {
    width: 45%;
    padding: 30px 0 30px 50px;
}

.top-main-heading1 {
    margin: 0 auto 40px;
    padding: 0;
    font-size: 2.4em;
    line-height: 1.6;
    font-weight: bold;
}

.top-main-btns {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px 30px;
}

h2 {
    text-align: center;
    font-size: 2.1em;
    font-weight: bold;
    letter-spacing: 0.1em;
    padding: 0;
    margin: 50px auto;
    line-height: inherit;
    color: inherit;
    border: none;
}

p {
    margin-top: 0;
    margin-bottom: 0;
}

.color-primary {
    color: #00a83b;
}
.youtube-wrap {
    margin: 0 auto 50px;
    max-width: 560px;
}

.youtube {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    background: #ddd;
    position: relative;
}

.youtube > iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.sec1-content {
    max-width: 860px;
    margin: auto;
}

.flex-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px 30px;
}

.flex-content > img {
    width: 38%;
}

.flex-content > p {
    margin: 0;
    width: 54%;
}

.flex-content.flex-content--2 > img {
    order: 2;
}

.flex-content.flex-content--2 > p {
    order: 1;
}

.container.container--full {
    max-width: 100%;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.container.container--bg-lightgrey {
    background: #eee;
}

.container.container--mt {
    margin-top: 100px;
}

.container.container--mb {
    margin-bottom: 100px;
}

.flex-content.flex-content--3 {
    justify-content: flex-end;
    align-items: stretch;
}

.flex-content--3 .wide-image-right {
    order: 2;
}

.flex-content--3 .text {
    order: 1;
}

.flex-content.flex-content--5 {
    align-items: stretch;
}

.wide-image {
    width: 56%;
}

.wide-image img {
    display: block;
    height: 100%;
    object-fit: cover;
}

.flex-content .text {
    width: 55%;
    max-width: 480px;
    margin: 0 auto;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.flex-content .text :first-child {
    margin-top: 0;
}

h3 {
    border-left: solid 10px #ffda01;
    color: #00a83b;
    padding-left: 10px;
    font-size: 1.4em;
    line-height: 1.5;
    font-weight: bold;
    letter-spacing: 0;
    margin: 15px 0;
}

.container.container--short {
    max-width: 640px;
}

.flex-content-item {
    text-align: center;
    line-height: 1;
}

.flex-content-item > img {
    display: block;
    object-fit: cover;
    background: #fff;
    border-radius: 170px;
    margin-bottom: 20px;
}    

.flex-content.flex-content--4 {
    margin-top: 50px;
}

.container.container--section2-heading {
    max-width: 100%;
    background: url(./images/09_illust.png) no-repeat;
    background-size: 100%;
    background-position: top center;
    padding-top: 100px;
    padding-bottom: 10px;
    margin-bottom: 50px;
}

.flex-content .wide-image-left {
    order: 1;
}

.flex-content .text-right {
    order: 2;
    padding-right: 30px;
}

.flex-content .wide-image-right {
    order: 2;
}

.flex-content .text-left {
    order: 1;
    padding-left: 30px;
}

#access {
    background: #fff;
    padding-bottom: 100px;
}

.container.container--access {
    max-width: 1260px;
}

.flex-content .text ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 1em;
}

.flex-content .text ul li > img {
    max-width: 1.3em;
    max-height: 1em;
    margin-right: 5px;
}

.btn.btn--access {
    color: #00a83b;
    border-color: #00a83b;
    padding-right: 45px;
    position: relative;
}

.btn.btn--access img {
    position: absolute;
    top: 50%;
    right: 15px;
    translate: 0 -50%;
    height: 1.4em;
    font-size: 1em;
    line-height: inherit;
    opacity: 1;
}

.btn.btn--access:hover {
    color: #fff;
}

.btn.btn--access:hover img {
    filter: brightness(4) grayscale(1);
    opacity: 1;
}



@media all and (max-width: 1024px) {
    .top-main-image {
        width: 45%;
    }

    .top-main-text {
        width: 55%;
        padding-left: 2%;
    }

    .flex-content.flex-content--5 {
        align-items: stretch;
    }

    .flex-content.flex-content--3 {
        align-items: stretch;
    }

    .wide-image img {
        height: 100%;
        object-fit: cover;
    }

    .wide-image {
        width: 48%;
    }

    .flex-content .text {
        max-width: 100%;
        letter-spacing: 0;
    }

    p br {
        display: none;
    }

    p + p {
        margin-top: 0.75rem;
    }

}

@media all and (max-width: 820px){
    .gnav-list-item {
        display: none;
    }

    #section0 {
        margin-bottom: 0;
    }

    .top-main-heading1 {
        font-size: 4.4vw;
        margin-bottom: 20px;
    }

    .top-main-image {
        width: 50%;
    }

    .top-main-text {
        padding-left: 0;
    }

}

@media all and (max-width: 480px){
    .header {
        padding: 15px 0;
    }
    p {
        letter-spacing: 0;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .container.container--mb {
        margin-bottom: 70px;
    }

    .top-main {
        display: block;
    }

    .top-main-image {
        width: 100%;
    }

    .top-main-text {
        width: 100%;
        font-size: inherit;
        padding: 30px;
    }

    .top-main-heading1 {
        font-size: 1.84em;
        margin-bottom: 20px;
    }

    .btn.btn--large {
        width: 100%;
    }

    .top-main-btns {
        gap: 20px;
    }

    #section0 {
        padding-bottom: 50px;
        margin-bottom: 50px;
    }

    h2 {
        font-size: 1.28em;
        margin: 30px auto;
    }

    .youtube-wrap {
        margin-bottom: 20px;
    }

    .youtube {
        padding-bottom: 100%;
    }

    .flex-content {
        display: block;
        margin-bottom: 30px;
    }

    .flex-content > img {
        width: auto;
        height: 240px;
        margin: auto;
        display: block;
    }

    .flex-content > p {
        width: 100%;
    }

    .wide-image {
        width: 100%;
    }

    .flex-content .text {
        padding: 20px 20px 30px;
        width: 100%;
    }

    .flex-content.flex-content--4 {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 30px 20px;
    }

    .flex-content-item {
        width: calc(50% - 10px);
        font-size: 0.88em;
    }

    .flex-content-item > img {
        margin-bottom: 10px;
    }

    .container.container--section2-heading {
        padding-top: 20px;
        padding-bottom: 0;
        margin-bottom: 0px;
    }

    h3 {
        font-size: 1.28em;
        margin-top: 0;
    }

    #access {
        padding: 70px 0 30px;
        margin-top: -70px;
    }
}

