@charset "UTF-8";
/* CSS Document */

/*==================
base
====================*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: normal;
}
ul, ol,li {
    list-style: none;
}
a {
    text-decoration: none;
    color: #333333;
}
img {
    max-width: 100%;
    height: auto;
}
table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    text-align: left;
}
input,textarea,select {
    font-family: inherit;
    font-size: inherit;
    border: 1px solid #ccc;
    padding: 8px;
}

:root {
    --GR-color: #30870B;
    --BL-color: #49A0CA;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "Noto Sans JP", serif;
    font-size: 1.6rem;
    line-height: 1.7;
    background-color: #fff;
    color: #333333;
    letter-spacing: 1.2px;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}


/*==================
common
====================*/
.-w-wrapper {
/*    max-width: 1116px;*/
    max-width: 1240px;
    margin: 0 auto;
}

section:nth-of-type(n + 2) {
    margin-top: 80px;
}

.sp {
    display: none;
}

.-t-center {
    text-align: center;
}
.-t-left {
    text-align: left;
}

.max-width960 {
    max-width: 960px;
    margin:  0 auto;
}

.btn a {
    background: var(--BL-color);
    color: #FFFFFF;
    border-radius: 6px;
    text-align: center;
    transition: 0.3s;
}
.btn a:hover {
    opacity: 0.8;
}

@media (max-width: 1320px) {
    .-w-wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }
}
@media (max-width: 1060px) {
    .max-width960 {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 768px) {
    .-w-wrapper,.max-width960 {
        padding-left: 20px;
        padding-right: 20px;
    }
    section:nth-of-type(n + 2) {
        margin-top: 56px;
    }
    .sp {
        display: block;
    }
    .pc {
        display: none;
    }
}


/*==================
header
====================*/
#header {
    width: 100%;
    height: 90px;
    display: flex;
    background: #ECF2E7;
    border-bottom: 1px solid #CEDFBD;
    position: fixed;
    top: 0;
    z-index: 10;
    transition: all 0.3s ease-in-out;
}
#header .header_wrap {
    display: flex;
    width: 100%;
    align-items: center;
    box-shadow: 0 3px 10px rgba(108,108,108,.1);
}
#header .header_logo {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 1.6px;
    padding-left: 70px;
    padding-right: 32px;
    width: 37%;
}
#header .right.pc {
    display: flex;
    width: 63%;
    justify-content: end;
}
#header .right.pc nav {
    width: 100%;
    display: flex;
    column-gap: 40px;
    align-items: center;
    justify-content: flex-end;
    padding-right: 70px;
}
#header .right.pc ul {
    display: flex;
    height: 100%;
    align-items: center;
}
#header .right.pc ul.pc_mainnav > li {
    height: 100%;
    align-content: space-around;
}

#header .right.pc ul li {
    position: relative;
}
#header .right.pc ul li::after {
    content: '';
    width: 1px;
    height: 1em;
    background: var(--GR-color);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-40%);
}
#header .right.pc ul li:last-of-type::after {
    content: none;
}
#header .right.pc ul li a {
    color: #333333;
    font-size: 1.4rem;
    font-weight: 400;
    padding-left: 16px;
    padding-right: 16px;
}


@media (max-width: 1160px) {
    #header .header_logo {
        font-size: 1.8rem;
        padding-left: 40px;
    }
    #header .right.pc nav {
        padding-right: 40px;
    }
}
@media screen and (max-width: 1080px) {
    html {
        scroll-padding-top: 85px;
    }
    #header {
        position: fixed;
        top: 0;
        left: 0;
        background: #ECF2E7;
        height: 60px;
        border-bottom: 0;
        z-index: 999;
    }
    #header .header_logo {
        width: 70%;
        padding-left: 20px;
    }
    #header .right.pc {
        display: none;
    }
    #header .sp {
        display: block;
    }
     #header .pc {
        display: none;
    }
    
    .openbtn {
        cursor: pointer;
        border-radius: 100%;
        position: fixed;
        top: 18px;
        right: 20px;
        width: 32px;
        height: 28px;
        z-index: 9999;
        transition: all ease-in-out 0.6s;
    }
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        height: 3px;
        background-color: var(--GR-color);
        width: 100%;
    }
    .openbtn span:nth-of-type(2) {
        top: 10px;
    }
    .openbtn span:nth-of-type(3) {
        top: 20px;
    }
    .openbtn-down {
        background: #1a1a1a;
        border-color: #1a1a1a;
    }
    
    .openbtn.active span {
        background: #FFFFFF;
    }
    .openbtn.active span:nth-of-type(1) {
        transform: rotate(-45deg) translateX(-50%);
        top: 0;
    }
    .openbtn.active span:nth-of-type(2) {
        display: none;
    }
    .openbtn.active span:nth-of-type(3) {
        transform: rotate(45deg) translateX(-50%);
        top: 24px;
    }

    #g-nav {
        position: fixed;
        z-index: -1;
        opacity: 0;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(50,72,40,.95);
        transition: all 0.5s;
    }
    #g-nav ul#g-nav_main {
        display: none;
        position: absolute;
        z-index: 999;
        left: 0;
        width: 100%;
        padding-left: 8%;
        padding-right: 8%;
        padding-top: 80px;
        padding-bottom: 80px;
        text-align: center;
    }
    #g-nav ul#g-nav_main::before {
        content: '';
        height: 16px;
        width: 100%;
        background: var(--LB-color);
    }
    #g-nav ul#g-nav_main > li {
        padding: 16px 0;
        border-top: 1px solid #E0E0E0;
        text-align: left;
    }
    #g-nav ul#g-nav_main > li:first-of-type {
        border-top: none;
    }
    #g-nav ul#g-nav_main > li:last-of-type {
        border-bottom: 1px solid #E0E0E0;
    }
    #g-nav li a {
        color: #FFFFFF;
        text-decoration: none;
        display: block;
    }
    #g-nav.panelactive ul#g-nav_main {
        display: flex;
        flex-direction: column;
    }
    #g-nav.panelactive{
        opacity: 1;
        z-index:999;
        right: 0;
        overflow: auto;
    }
}

@media (max-width: 768px) {
    #header .header_logo {
        width: 80%;
        font-size: 1.6rem;
        letter-spacing: 1.2px;
    }
    #header .right.pc nav {
        padding-right: 20px;
    }
}

@media (max-width: 480px) {
    #header .header_logo {
        width: 84%;
    }
}

@media screen and (max-width: 360px) {
    #g-nav li a {
      width: 70%;
    }
}



/*==================
footer
====================*/
footer {
    background:  var(--GR-color);
    color: #FFFFFF;
    padding-top: 20px;
    padding-bottom: 21px;
    text-align: center;
}
footer .-w-wrapper {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 1.6px;
}

@media (max-width: 768px) {
    footer {
        padding: 12px 0;
    }
    footer .-w-wrapper {
        font-size: 1.3rem;
        font-weight: 300;
        letter-spacing: 1.2px;
    }
}



/*==================
FV
====================*/
#FV {
    margin-top: 90px;
    background: url("../img/FV.webp") no-repeat;
    background-size: cover;
    padding-top: 75px;
    padding-bottom: 85px;
    width: 100%;
    min-height: 400px;
    position: relative;
}
#FV .catch {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    text-align: center;
}
#FV .catch .year {
    background: #2C7A0A;
    color: #FFFFFF;
    font-size: 2rem;
    font-weifght: 500;
    letter-spacing: 1.4px;
    padding: 3px 18px;
    display: inline-block;
    margin-bottom: 24px;
}
#FV .catch .small {
    color: #FFFFFF;
    font-size: 3rem;
    letter-spacing: 1.6px;
    text-shadow: 1px 3px 4px rgba(16,25,15,.3);
}
#FV .catch .large {
    color: #FFFFFF;
    font-size: 3.6rem;
    letter-spacing: 1.8px;
    text-shadow: 1px 3px 4px rgba(16,25,15,.3);
}

@media (max-width: 768px) {
    #FV {
        margin-top: 60px;
        padding-top: 40px;
        padding-bottom: 55px;
        min-height: 350px;
    }
    #FV .catch .year {
        font-size: 1.8rem;
        padding: 3px 14px;
        margin-bottom: 20px;
    }
    #FV .catch .small {
        font-size: 2.2rem;
    }
    #FV .catch .large {
        font-size: 2.8rem;
        letter-spacing: 1.4px;
    }

}

/*==================
Message
====================*/
#message {
    background: #F2F5EF;
    padding-top: 70px;
    padding-bottom: 70px;
}
#message h2 {
    font-size: 3.2rem;
    font-weight: 500;
    letter-spacing: 1.8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
}
#message h2 .sub {
    color: var(--GR-color);
    font-size: 1.8rem;
    display: inline-block;
    position: relative;
    padding: 0 26px;
    width: fit-content;
}
#message h2 .sub::before {
    content: '';
    background: var(--GR-color);
    width: 14px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
#message h2 .sub::after {
    content: '';
    background: var(--GR-color);
    width: 14px;
    height: 2px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

#message .content p {
    text-indent: 1em;
}
#message .content p:nth-of-type(n + 2) {
    margin-top: 16px;
}
#message .content .name {
    margin-top: 24px;
    text-align: right;
}

@media (max-width: 768px) {
    #message h2 {
        font-size: 2.8rem;
    }
    #message h2 .sub {
        padding: 0;
        text-align: center;
        line-height: 1.55;
    }
    #message h2 .sub::before {
        content: none;
    }
    #message h2 .sub::after {
        content: none;
    }
}


/*==================
overview
====================*/
#overview {
}
#overview h2 {
    font-size: 3.2rem;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-align: center;
    margin-bottom: 40px;
}
#overview .flex_wrap {
    display: flex;
    gap: 16px;
    align-items: flex-end;
}
#overview dl {
    width: 62%;
}
#overview dl > div:nth-of-type(n + 2) {
    margin-top: 30px;
}
#overview dl dt {
    color: var(--GR-color);
    font-size: 2rem;
    font-weight: 500;
}

#overview dl .theme dd {
    font-size: 1.8rem;
    font-weight: 500;
}
#overview dl .host dd {
    font-size: 1.6rem;
}

#overview .image {
    width: 38%;
}

#overview .btn {
    margin-top: 70px;
}
#overview .btn a {
    display: block;
    width: 65%;
    margin: 0 auto;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 1.8px;
}
#overview .btn a .pdf {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
}
#overview .btn a .pdf::before {
    content: '';
    background: url("../img/icon_pdf.svg") no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0.36em;
    left: -15px;
}

@media (max-width: 768px) {
    #overview h2 {
        font-size: 2.8rem;
    }
    #overview .flex_wrap {
        flex-direction: column;
    }
    #overview dl {
        width: 100%;
    }
    #overview .image {
        width: 70%;
        margin: 0 auto;
    }
    
    #overview .btn a {
        width: 320px;
    }
}


/*==================
pre-order
====================*/
#pre-order {
    background: #F2F5EF;
}
#pre-order .-w-wrapper {
    text-align: center;
    padding: 60px 0;
}
#pre-order h2 {
    color: var(--GR-color);
    font-size: 3.4rem;
    font-weight: 500;
    letter-spacing: 1.6px;
    margin-bottom: 40px;
}
#pre-order h2 + p {
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 1.8px;
}
#pre-order .btn a {
    display: block;
/*    width: 360px;*/
    width: 65%;
    margin: 30px auto 0;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 1.8px;
}

@media (max-width: 768px) {
    #pre-order h2 {
        font-size: 2.8rem;
        letter-spacing: 1.2px;
    }
    #pre-order h2 + p {
        font-size: 2.2rem;
        letter-spacing: 1.2px;
        font-feature-settings: 'palt';
    }
    #pre-order .btn a {
        width: 320px;
    }
    #pre-order .-w-wrapper {
        padding-left: 5%;
        padding-right: 5%;
    }
}

/*事前申込*/
#pre-order .pre_text {
    margin: 30px auto 0;
    max-width: 65%;
    text-align: left;
}
#pre-order .pre_text p:first-of-type {
    /* background: linear-gradient(transparent 70%, #ffcdcd 10%);
    display: inline; */
    line-height: 1.9;
}
#pre-order .pre_text a {
    color: var(--GR-color);
    border-bottom: 1px solid var(--GR-color);
    font-feature-settings: 'palt';
}
#pre-order .pre_text:last-of-type {
    margin: 30px auto 0;
}

@media (max-width: 768px) {
    #pre-order .pre_text {
        max-width: 100%;
    }
}


/*==================
zoom
====================*/
#zoom .wrapper {
    border: 3px solid #83B05A;
    border-radius: 12px;
    padding: 30px 30px 40px 30px;
}
#zoom .wrapper .caution {
    display: block;
    width: 100%;
    background: #83B05A;
    color: #FFFFFF;
    font-size: 1.7rem;
    font-weight: 500;
    text-align: center;
    padding: 14px 0 16px 40px;
}
#zoom .wrapper .caution .icon_caution {
    display: inline-block;
    width: 24px;
    height: 24px;
    position: relative;
}
#zoom .wrapper .caution .icon_caution::before {
    content: '';
    background: url("../img/icon_caution.svg") no-repeat;
    width: 24px;
    height: 24px;
    background-size: contain;
    position: absolute;
    top: 0.35em;
    left: -14px;
}

#zoom .wrapper .text_wrap {
    margin-top: 30px;
    letter-spacing: 1px;
}

#zoom .wrapper .text_wrap a.nomal {
    color: #1A59B0;
    text-decoration: underline;
    transition: 0.2s;
}
#zoom .wrapper .text_wrap a.nomal:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    #zoom .wrapper {
        padding: 20px 12px;
    }
    #zoom .wrapper .caution {
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 1.55;
        text-align: left;
        padding: 8px 12px 10px 38px;
    }
    #zoom .wrapper .caution .icon_caution {
        width: 0;
    }
    #zoom .wrapper .caution .icon_caution::before {
        width: 20px;
        height: 20px;
        position: absolute;
        top: 0.5em;
        left: -26px;
    }
    #zoom .wrapper .text_wrap {
        margin-top: 12px;        
    }
}


/*==================
am
====================*/ 
.head {
    background: #4EA45A;
    color: #FFFFFF;
    text-align: center;
    padding: 40px 40px 46px 40px;
    margin-bottom: 78px;
    position: relative;
}
.head::after {
    content: '';
    border: 38px solid transparent;
    border-top: 38px solid #4EA45A; 
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
}
.head h2 {
    font-size: 3.6rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.head .sub_title {
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 1.6px;
}

@media (max-width: 768px) {
    .head {
        padding: 30px 30px 36px 30px;
        margin-bottom: 56px;
    }
    .head::after {
        border: 24px solid transparent;
        border-top: 24px solid #4EA45A; 
        position: absolute;
        bottom: -48px;
    }
    .head h2 {
        font-size: 3.2rem;
    }
    .head .sub_title {
        font-size: 2rem;
        font-feature-settings: "palt";
    }
}

#am .btn_wrap .btn a {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding-top: 24px;
    padding-bottom: 25px;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 2px;
    transition: 0.2s;
}
#am .max-width960 .btn {
    margin-bottom: 80px;
}


#am table tr {
    border-bottom: 1px solid #ACACAC;
}
#am table th {
    padding: 18px 26px;
    font-weight: 400;
}
#am table td {
    padding: 18px 26px;
}

#am table dl {
    display: flex;
    gap: 16px;
}
#am table dl dt {
    width: 4.5em;
}
#am table dl:nth-of-type(n + 2) {
    margin-top: 20px;
}

@media (max-width: 1060px) {
    #am .table_wrap {
        padding: 0;
    }
}
@media (max-width: 900px) {
    #am .btn_wrap .btn a {
        padding-top: 20px;
        padding-bottom: 20px;
        font-size: 2.2rem;
    }
    #am .max-width960 .btn {
        margin-bottom: 40px;
    }
    #am table tr {
        border: none;
    }
    #am table th {
        padding: 10px 20px;
        display: block;
        background: #F2F5EF;
    }
    #am table td {
        padding: 12px 20px;
        display: block;
    }

    #am table dl {
        display: flex;
        gap: 16px;
    }
    #am table dl:nth-of-type(n + 2) {
        margin-top: 20px;
    }
}
@media (max-width: 600px) {
    #am table dl dt {
        width: 8em;
    }
}
@media (max-width: 480px) {
    #am table td {
        padding: 12px 8px;
    }
     #am table dl dt {
        width: 9em;
    }
}

#am table dl.long {
    display: block;
    margin-top: 16px;
}
#am table dl.long dt {
    width: 100%;
}

/*後日案内*/
#am .pre_text {
    margin-top: 45px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 1.6px;
    color: var(--GR-color);
    font-feature-settings: 'palt';
}
@media (max-width: 768px) {
    #am .pre_text {
        font-size: 1.7rem;
    }
}


/*==================
pm
====================*/ 
#pm .contents {
    margin-top: 70px;
    margin-bottom: 110px;
} 
#pm .contents .text {
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 1.6px;
}
#pm .contents .text:first-of-type {
    margin-bottom: 80px;
}
#pm .contents .text:last-of-type {
    margin-top: 70px;
}

#pm .contents ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 36px;
}
#pm .contents ul li {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: space-between;
}
#pm .contents ul li .text_wrap {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
#pm .contents ul li .text_inner {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#pm .contents ul li h3 {
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-align: center;
    padding-bottom: 3px;
    border-bottom: 1px solid #4EA45A;
    margin-bottom: 10px;
}

#pm .contents ul li .post_wrap {
    padding: 8px 20px;
    background: #F2F5EF;
    margin-top: 12px;
}
#pm .contents ul li .post_wrap .post {
    font-size: 1.45rem;
    line-height: 1.45;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}
#pm .contents ul li .post_wrap .name {
    font-size: 1.6rem;
    font-weight: 500;
}

#pm .contents ul li .sub_title {
    text-align: center;
    color: var(--GR-color);
}
#pm .contents ul li .sub_title + p {
    line-height: 1.55;
}

#pm .contents ul li .btn {
    width: 100%;
    margin-top: 8px;
}
#pm .contents ul li .btn a {
    display: block;
    padding: 10px 0;
    border-radius: 2px;
    font-size: 2rem;
    letter-spacing: 2.5px;
}

@media (max-width: 1100px) {
    #pm .contents ul {
        gap: 50px 28px;
    }
}
@media (max-width: 768px) {
    #pm .contents ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
    #pm .contents ul li .btn {
        margin-top: 4px;
    }
    #pm .contents .text {
        font-size: 1.7rem;
    }
    #pm .contents .text:first-of-type {
        margin-bottom: 45px;
    }
    
}
@media (max-width: 480px) {
    #pm .contents ul {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }
}

/*事前申込*/
#pm .pre_text {
    margin-top: 45px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 1.6px;
    color: var(--GR-color);
    font-feature-settings: 'palt';
}
@media (max-width: 768px) {
    #pm .pre_text {
        font-size: 1.7rem;
    }
}


/*==================
info
====================*/ 
#info {
    background: #F0F0F0;
    padding-top: 80px;
    padding-bottom: 80px;
}
#info h2 {
    color: var(--GR-color);
    font-size: 2.8rem;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-align: center;
    margin-bottom: 30px;
}

#info .box_wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#info .box {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 4px 0 rgba(108,108,108,.1);
    padding: 28px 100px 30px;
    overflow-wrap: break-word;
}
#info .box h3 {
    color: var(--GR-color);
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 1.6px;
    margin-bottom: 10px;
}

#info .box ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#info .box ul li {
    position: relative;
    padding-left: 20px;
}
#info .box ul li::before {
    content: '';
    width: 12px;
    height: 12px;
    background: #5CCD6B;
    border-radius: 6px;
    position: absolute;
    top: 0.52em;
    left: 0;
}

#info .box ul li a {
    color: #1B59B0;
    text-decoration: underline;
    transition: 0.2s;
}
#info .box ul li a:hover {
    opacity: 0.7;
}

#info .contact_wrap {
    line-height: 1.5;
    margin-top: 8px;
    font-size: 1.5rem;
}
#info .contact_wrap .tel_wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
}
#info .contact_wrap .tel_wrap span:nth-of-type(n + 2) {
    text-indent: 3em;
}

@media (max-width: 768px) {
    #info {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    #info h2 {
        font-size: 2.4rem;
        letter-spacing: 1.6px;
        margin-bottom: 24px;
    }
    #info .box {
        padding: 18px 22px;
    }
    #info .box h3 {
        font-size: 1.8rem;
        letter-spacing: 1.4px;
    }
    #info .box ul {
        gap: 20px;
    }
    #info .box ul li {
        padding-left: 16px;
    }
    #info .box ul li::before {
        width: 9px;
        height: 9px;
        border-radius: 5px;
        top: 0.55em;
        left: 0;
    }
}














