@charset "utf-8";

/* 共通 */
body {
    margin: 0;
    padding: 0;
    background-color: #fff6ea;
    line-height: 1.7;
    color: #333333;
}

img {
    width: 100%;
    vertical-align: top;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

p {
    font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-size: 18px;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
}

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

.wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.section__img {
    margin-bottom: 155px;
}

@media (min-width:769px) {
    .sp-only {
        display: none;
    }
}

@media (max-width:768px) {
    .pc-only {
        display: none;
    }

    p {
        font-size: 16px;
    }

    .section__img {
        margin-bottom: 70px;
    }
}

/* header */
header {
    background-color: #fff;
    position: relative;
    padding: 0 15px;
}

header .header__img {
    position: absolute;
    max-width: 124px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 15px;
}

header .header__img:hover {
    opacity: 0.5;
}

header .header__img img {
    aspect-ratio: 1 / 1;
}

header .header__txt p {
    font-size: 20px;
    padding: 55px 0;
    text-align: center;
}

@media (max-width:1100px) and (min-width:769px) {
    header .header__txt p {
        margin-left: 124px;
    }
}

@media (max-width:768px) {
    header {
        display: flex;
        justify-content: flex-start;
        gap: 20px;
        align-items: center;
    }

    header .header__txt p {
        font-size: 14px;
        text-align: left;
        padding: 15px 0;
    }

    header .header__img {
        max-width: 72px;
        position: unset;
        transform: unset;
        padding-left: unset;
    }
}

.load-fade {
    opacity: 0;
    visibility: hidden;
    transition: all 1s;
}

.load-fade.is-show {
    opacity: 1;
    visibility: visible;
}

/* 申し込みボタン */
.fix__img {
    position: fixed;
    max-width: 200px;
    width: 8%;
    right: 3%;
    bottom: 3%;
    z-index: 10;
    /* transform-origin: 50% 50%; */
    transition: 0.6s ease;
}

.fix__img:hover {
    scale: 1.1;
    /* transform: rotate(360deg); */
}

.fix__img img {
    aspect-ratio: 49 / 50;
}

.box-01.displayed {
    animation: rotate-01 2s forwards;
}

@keyframes rotate-01 {
    0% {
        transform: rotate(300deg);
    }

    100% {
        transform: rotate(0);
    }
}

@media (max-width:768px) {
    .fix__img {
        width: 20%;
    }
}

/* MV */
h1 picture img {
    aspect-ratio: 2088 / 1022;
}

@media (max-width:480px) {
    h1 picture img {
        aspect-ratio: 400 / 702;
    }
}

/* intro */
.intro {
    margin-top: 155px;
    margin-bottom: 200px;
}

.intro h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 1em;
}

.intro__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: #fff;
    font-size: 18px;
    border-radius: 50px;
    max-width: 682px;
    height: 97px;
    border: 1px solid #00534e;
    position: relative;
    transition: 0.3s;
    margin: 0 auto;
    padding-right: 1em;
    margin-bottom: 25px;
}

.intro__btn::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    transform-origin: 100% 50%;
    height: 75px;
    width: 75px;
    background: url(../img/btn_arrow.svg) no-repeat;
    border-radius: 2px;
    will-change: transform;
    transition: .3s;
    transform: translateY(-50%);
}

.intro__btn:hover::after {
    transform: translate(5px, -50%);
}

/* intro__btn comingsoon対応 */
/* .intro__btn {
    pointer-events: none;
    position: relative;
    border-color: gray;
}

.intro__btn:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 97px;
    background-color: gray;
    opacity: 0.3;
    left: 0;
    border-radius: 50px;
}

.intro__btn::after {
    background: url(../img/btn_cs.svg) no-repeat;
    z-index: 2;
} */

/* intro__btn comingsoon対応end */

.intro__btn-yellow {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: #fff;
    font-size: 18px;
    border-radius: 50px;
    max-width: 682px;
    height: 97px;
    border: 1px solid #ffbe29;
    position: relative;
    transition: 0.3s;
    margin: 0 auto;
    padding-right: 1em;
}

.intro__btn-yellow::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    transform-origin: 100% 50%;
    height: 75px;
    width: 75px;
    background: url(../img/btn_arrow_yellow.svg) no-repeat;
    border-radius: 2px;
    will-change: transform;
    transition: .3s;
    transform: translateY(-50%);
}

.intro__btn-yellow:hover::after {
    transform: translate(5px, -50%);
}

.intro p {
    text-align: center;
    margin-bottom: 2em;
}



@media (max-width:768px) {
    .intro {
        margin-top: 70px;
        margin-bottom: 100px;
    }

    .intro h2 {
        font-size: 21px;
        text-align: left;
    }

    .intro p {
        text-align: left;
        margin-bottom: 1em;
    }

    .intro__btn {
        font-size: 16px;
        padding: 10px 95px 10px 25px;
        border-radius: 70px;
        font-size: clamp(14px, 4vw, 16px);
    }

    .intro__btn:before {
        border-radius: 70px;
        padding: 10px 0;
    }

    .intro__btn-yellow {
        padding: 10px 95px 10px 25px;
        font-size: clamp(14px, 4vw, 16px);
        border-radius: 70px;
    }
}

/* guidelines */
.guidelines {
    margin-bottom: 155px;
}

.guidelines__ttl {
    background-color: #00534e;
    padding: 60px 0 80px;
    border-radius: 20px 20px 0 0;
}

.ttl__area {
    color: #fff;
    font-size: 35px;
    text-align: center;
    line-height: 1.2;
}

.ttl__area h3 {
    display: inline;
}

.ttl__area span {
    font-size: 26px;
}

.guidelines__ttl .ttl__area h3 span {
    position: relative;
}

.guidelines__ttl .ttl__area h3 span::after {
    position: absolute;
    content: "";
    display: inline-block;
    width: 100%;
    height: 0.5px;
    background-color: #fff;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.summary {
    background-color: #fff;
    padding: 60px;
    gap: 60px;
}

.summary .ttl__area {
    color: #00534e;
    width: 9em;
}

.summary__desc p {
    margin-bottom: 1em;
}

.summary__desc ul {
    padding: 15px;
    border: 1px solid #000;
    max-width: 400px;
}

.summary__desc li {
    position: relative;
    padding-left: 2em;
}

.summary__desc li::before {
    position: absolute;
    content: "\025a0";
    display: inline-block;
    font-size: 18px;
    left: 0;
    top: -2px;
}

.entry {
    background-color: #ffbe29;
    font-size: 27px;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

@media (max-width:768px) {
    .guidelines {
        margin-bottom: 50px;
    }

    .ttl__area {
        font-size: 28px;
        line-height: 1.2;
    }

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

    .guidelines__ttl {
        padding: 30px 15px 45px;
    }

    .summary {
        flex-wrap: wrap;
        padding: 30px 15px 30px;
        gap: 30px;
    }

    .summary .ttl__area {
        width: 100%;
    }

    .entry {
        font-size: 16px;
    }
}

/* indonesia */
.indonesia {
    margin-bottom: 155px;
}

.indonesia .dfx {
    gap: 30px;
    align-items: start;
}

.indonesia__inner-left {
    width: 20%;
}

.indonesia__inner-right {
    width: calc(80% - 30px);
}

.indonesia .ttl__area {
    line-height: 0.8;
    margin-top: 10px;
}

.indonesia .ttl__area h3 {
    font-size: 22px;
    color: #000;
}

.indonesia .ttl__area h3 span {
    /* font-size: 14px; */
    font-size: 11.5px;
}

@media (max-width:768px) {
    .indonesia {
        margin-bottom: 50px;
        ;
    }

    .indonesia .dfx {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .indonesia__inner-left {
        /* width: 70%; */
        width: 100%;
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .indonesia .ttl__area {
        margin-top: unset;
    }

    .indonesia .ttl__area h3 {
        font-size: 20px;
    }

    .indonesia__img-flag {
        max-width: calc(100% - 210px);
    }

    .indonesia__inner-right {
        width: 100%;
    }
}

/* gallery */
.phgallery {
    margin-bottom: 100px;
}

.phgallery ul {
    gap: 5px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.phgallery ul li {
    width: calc((100% - 15px) / 4);
}

.phgallery p {
    font-size: 14px;
    text-align: right;
    padding-right: 15px;
}

.gallery__img {
    cursor: pointer;
    overflow: hidden;
    width: 100%;
}

.gallery__img img {
    height: auto;
    transition: transform .6s ease;
    width: 100%;
    aspect-ratio: 101 / 56;
}

.gallery__img:hover img {
    transform: scale(1.1);
}

@media (max-width:768px) {
    .phgallery {
        padding: 0 15px;
        margin-bottom: 50px;
    }

    .phgallery ul {
        gap: 10px;
    }

    .phgallery ul li {
        width: calc((100% - 10px) / 2);

    }
}

/* schedule */
.schedule .ttl__area,
.apply .ttl__area,
.program .ttl__area {
    background-color: #00534e;
    max-width: 420px;
    margin-right: auto;
    padding: 30px 0;
    border-radius: 0 20px 20px 0;
    margin-bottom: 70px;
}

.schedule {
    margin-bottom: 155px;
}

.schedule__area {
    font-size: 27px;
    text-align: center;
    margin-bottom: 70px;
}

.schedule__table {
    font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: 16px;
}

.schedule__table td {
    /* border: 1px solid #999; */
    padding: 10px;
    text-align: left;
    vertical-align: top;
    word-break: break-word;
}

.schedule__table .date {
    width: 150px;
    background-color: #00534e;
    color: #fff;
    border-bottom: 1px solid #fff;
    font-weight: bold;
    text-align: center;
}

/* .schedule__table .explain,
.schedule__table .inspection {
    position: relative;
}

.schedule__table .explain::before,
.schedule__table .inspection::before {
    position: absolute;
    display: inline-block;
    content: "";
    background: #fff;
    width: calc(100% - 30px);
    height: 40px;
    left: 50%;
    transform: translateX(-50%);
    top: 45px;
    border-radius: 5px;
}

.schedule__table .explain::after {
    position: absolute;
    display: inline-block;
    content: "説明・相談会開催日";
    color: #00534e;
    width: calc(100% - 30px);
    left: 50%;
    transform: translateX(-50%);
    top: 65px;
    transform: translate(-50%, -50%);
    font-size: 14px;
    text-align: center;
}

.schedule__table .inspection::after {
    position: absolute;
    display: inline-block;
    content: "視察日";
    color: #00534e;
    width: calc(100% - 30px);
    left: 50%;
    transform: translateX(-50%);
    top: 65px;
    transform: translate(-50%, -50%);
    font-size: 14px;
    text-align: center;
} */

.schedule__table .time {
    width: 150px;
    background-color: #f9f9f9;
    font-weight: bold;
    border-right: 1px dashed #00346175;
}

.schedule__table .last-tr {
    border-bottom: 1px dashed #97c1bd;
}

.schedule__table .detail {
    background-color: #f9f9f9;
}

.schedule__table tr:nth-child(odd) .time,
.schedule__table tr:nth-child(odd) .detail {
    background-color: #fff;
}

.schedule__table .flight {
    display: flex;
    justify-content: flex-start;
    gap: 1em;
}

.schedule__table .flight-first {
    width: 20em;
}

.schedule__table .flight p {
    font-size: 16px;
    font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;

}

.schedule .note {
    font-size: 14px;
    text-align: left;
}

@media (max-width: 768px) {
    .schedule__table {
        font-size: 14px;
    }

    .schedule__table tr {
        display: block;
    }

    .schedule__table td {
        display: block;
        border: none;
        padding: 10px;
        width: 100%;
        box-sizing: border-box;
    }

    .schedule__table td.date {
        font-weight: bold;
        border-bottom: 1px solid #ccc;
        width: 100%;
    }

    .schedule__table .time {
        width: 100%;
        padding-bottom: 0;
    }

    .schedule__table .explain,
    .schedule__table .inspection {
        height: 90px;
    }

    .schedule__table .explain::before,
    .schedule__table .inspection::before {
        top: 35px;
    }

    .schedule__table .explain::after,
    .schedule__table .inspection::after {
        top: 55px;
    }

    .schedule__table .last-tr {
        border-bottom: unset;
    }

    .schedule__table .time {
        border-right: unset;
    }

    .schedule__table .flight p {
        font-size: 14px;
    }

    .schedule__table .flight {
        flex-direction: column;
        gap: unset;
    }
}

.attend h4 {
    /* font-size: clamp(22px,2vw,35px); */
    font-size: 35px;
    text-align: center;
}

.attend .attend__ttl {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.attend .attend__ttl::before,
.attend .attend__ttl::after {
    content: "";
    height: 1px;
    /* width: 35%; */
    width: calc(50% - (330px / 2));
    background-color: #333333;
}

.attend .attend__ttl::before {
    margin-right: 20px;
}

.attend .attend__ttl::after {
    margin-left: 20px;
}

.attend h4 span {
    color: #00534e;
}

.attend ol h5 {
    color: #00534e;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.attend ol .h5-first::before {
    content: "\2776";
    font-size: 45px;
}

.attend ol .h5-second::before {
    content: "\2777";
    font-size: 45px;
}

.attend ol p {
    padding-left: 55px;
}

.attend ol li:nth-child(2) {
    margin-bottom: 30px;
}

.attend ol li p a {
    text-decoration: underline;
}

.attend ol ul {
    padding-left: 55px;
}

.attend ol ul li {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 14px;
}

.attend ol ul li::before {
    content: "\203B";
}

@media (max-width:768px) {
    .schedule {
        margin-bottom: 70px;
    }

    .schedule .ttl__area,
    .apply .ttl__area,
    .program .ttl__area {
        max-width: 325px;
        padding: 20px 0;
        margin-bottom: 45px;
    }

    .schedule__area {
        font-size: 20px;
        margin-bottom: 70px;
    }

    .attend h4 {
        font-size: 28px;
    }

    .attend .attend__ttl {
        margin-bottom: 20px;
    }

    .attend .attend__ttl::before,
    .attend .attend__ttl::after {
        width: calc(50% - (270px / 2));
    }

    .attend ol h5 {
        font-size: 21px;
        align-items: flex-start;
    }

    .attend ol .h5-first::before,
    .attend ol .h5-second::before {
        font-size: 33px;
        margin-top: -10px;
    }

    .attend ol p,
    .attend ol ul {
        padding-left: 44px;
    }
}

/* apply */
.apply {
    margin-bottom: 155px;
}

.step {
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 30px;
    justify-content: center;
}

/* ステップ４段階の場合 
 .step__item {
    width: calc((100% - 180px) / 4);
} */
.step__item {
    width: calc((100% - 180px) / 3);
}

.step__img {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.step__img::after {
    content: "\025b6";
    color: #827b3a;
    font-size: 35px;
    margin-left: 16px;
}

.step__img img {
    aspect-ratio: 1 / 1;
}

.step__txt {
    display: flex;
    align-items: flex-start;
}

/* ステップ４段階の場合 
.step__item:nth-of-type(4) .step__img::after {
    content: unset;
} */

/* ステップ３段階の場合 */
.step__item:nth-of-type(3) .step__img::after {
    content: unset;
}

.step__item:nth-of-type(1) .step__txt::before {
    content: "1.";
    margin-right: 10px;
}

.step__item:nth-of-type(2) .step__txt::before {
    content: "2.";
    margin-right: 10px;
}

.step__item:nth-of-type(3) .step__txt::before {
    content: "3.";
    margin-right: 10px;
}

/* ステップ４段階の場合 
.step__item:nth-of-type(4) .step__txt::before {
    content: "4.";
    margin-right: 10px;
} */

.inview.fadeup {
    opacity: 0;
    transition-duration: .5s;
    transform: translateY(10px);
}

.inview.fadeup.active {
    opacity: 1;
    transform: translateY(0px);
}

.delay01 {
    transition-delay: .3s;
}

.delay02 {
    transition-delay: .6s;
}

.delay03 {
    transition-delay: .9s;
}

.deadline {
    max-width: 830px;
    margin: 0 auto;
    padding: 0 15px;
}

.deadline p {
    text-align: center;
    font-size: 27px;
    font-weight: 600;
    color: #C1272D;
    margin-bottom: 20px;
}

.deadline__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: #C1272D;
    font-size: 20px;
    color: #fff;
    border-radius: 50px;
    max-width: 515px;
    height: 97px;
    border: 2px solid #C1272D;
    position: relative;
    transition: 0.3s;
    margin: 0 auto;
    padding-right: 1em;
    font-weight: 600;
    margin-bottom: 20px;
}

.deadline__btn::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    transform-origin: 100% 50%;
    height: 75px;
    width: 75px;
    background: url(../img/btn_tap.svg) no-repeat;
    border-radius: 2px;
    will-change: transform;
    transition: .3s;
    transform: translateY(-50%);
}

.deadline__btn:hover::after {
    transform: translate(5px, -50%);
}

.deadline__btn:hover {
    background-color: #fff;
    color: #C1272D;
    font-weight: 600;
}

/* del20250807 */
/* .deadline ul li {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 14px;
} 
    .deadline ul li::before {
    content: "\203B";
}*/
/* del20250807 end */
/* add20250807 */
.deadline ul li {
    font-size: 14px;
    position: relative;
    padding-left: 1em;
}

.deadline ul li::before {
    content: "\203B";
    position: absolute;
    left: 0;
}

/* add20250807 end */


@media (max-width:768px) {
    .apply {
        margin-bottom: 70px;
    }

    .step {
        flex-wrap: wrap;
        gap: 0;
    }

    .step__img {
        width: 70%;
    }

    .step__img::after {
        content: unset;
    }

    .step__item {
        width: 100%;
        margin-bottom: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .step__item::after {
        content: "\025bc";
        color: #827b3a;
        font-size: 35px;
        margin-left: 16px;
    }

    .step__item:nth-of-type(3)::after {
        content: unset;
    }

    .deadline p {
        font-size: 20px;
    }
}

/* participation */
.participation {
    gap: 40px;
    position: relative;
    margin-bottom: 155px;
}

.participation::after {
    display: inline-block;
    position: absolute;
    content: "";
    /* width: calc((((100% - 40px) * 0.4) / 2) + 40px + ((100% - 40px) * 0.6) + ((100% - 1100px) / 2)); */
    width: 65%;
    height: 115%;
    right: 0;
    top: -7.5%;
    background-color: #fff;
    z-index: -1;
}

.section__img:nth-of-type(3) {
    margin-bottom: 200px;
}

.participation__img {
    margin-top: -300px;
    width: calc((100% - 40px) * 0.4);
}

.participation__img img {
    aspect-ratio: 424 / 575;
}

.section__img img {
    aspect-ratio: 2038 / 808;
}

.participation__txt .ttl__area {
    background-color: #00534e;
    padding: 15px;
}

.participation__txt ul {
    margin: 20px;
}

.participation__txt {
    width: calc((100% - 40px) * 0.6);
}

.participation__txt ul li {
    display: flex;
    align-items: flex-start;
}

.participation__txt ul li::before {
    content: "\025cf";
}

@media (max-width:768px) {
    .participation {
        margin-bottom: 70px;
    }

    .participation .wrapper {
        padding: 0;
    }

    .section__img:nth-of-type(3) {
        margin-bottom: 70px;
    }

    .participation__inner {
        flex-direction: column;
    }

    .participation__img {
        margin-top: unset;
        width: 85%;
        margin-right: auto;
        margin-bottom: 30px;
    }

    .participation__txt {
        width: calc(100% - 30px);
        margin-left: auto;
    }

    .participation::after {
        top: 5%;
        width: calc(100% - 15px);
        height: calc(95% + 20px);
    }
}

/* program */
.program {
    margin-bottom: 155px;
}

.program p {
    margin-bottom: 1em;
}

.program__inner {
    gap: 40px;
    padding: 30px 30px 30px 60px;
    background-color: #fff;
}

.program-right {
    width: 52%;
}

.program__img:nth-of-type(1) {
    margin-bottom: 15px;
}

.program__img img {
    aspect-ratio: 254 / 137;
}

.time__schedule dl {
    /* del20250807 */
    /* display: flex;
    gap: 60px; */
    /* del 20250807end */
    margin-top: 0;
    margin-bottom: 30px;
    /* position: relative; */
}

.time__schedule dl:nth-of-type(8) {
    margin-bottom: unset;
}

.time__schedule {
    position: relative;
    /* add20250807 */
    padding-left: 50px;
    /* add20250807 end */
}

/* del20250807 */
/* .time__line {
    width: 3px;
    height: calc(100% - 30px);
    position: absolute;
    top: 0;
    left: calc(50px + 30px);
    z-index: 10;
    transform: translateX(-50%);
    padding-top: 15px;
}

.time__line span {
    display: block;
    width: 100%;
    height: 100%;
    background: #00534e;
}

.time__schedule dl dd {
    position: relative;
    display: flex;
    align-items: flex-start;
    font-weight: bold;
}

.time__schedule dl dd::after {
    content: "";
    display: inline-block;
    position: absolute;
    background-color: #00534e;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: 10px;
    transform: translate(-50%, -5px);
    left: calc(50px + 30px);
    z-index: 10;
}

.time__schedule dl dd::before {
    content: "";
    display: inline-block;
    position: absolute;
    background-color: #fff;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    top: 15px;
    transform: translate(-50%, -6px);
    left: calc(50px + 30px);
    z-index: 15;
} */
/* del20250807 end */
/* add20250807 */
.time__line {
    width: 3px;
    height: calc(100% - 30px);
    position: absolute;
    top: 0;
    left: calc(0px + 30px - 3px);
    z-index: 10;
    transform: translateX(-50%);
    padding-top: 15px;
}

.time__line span {
    display: block;
    width: 100%;
    height: 100%;
    background: #00534e;
}

.time__schedule dl dd {
    position: relative;
    /* del20250807 */
    /* display: flex;
    align-items: flex-start; */
    /* del20250807end */
    font-weight: bold;
}

.time__schedule dl dd ul li {
    display: flex;
    align-items: flex-start;
    font-weight: normal;
    font-size: 14px;
}

.time__schedule dl dd ul li::before {
    content: "\203B";
}

.time__schedule dl dd::after {
    content: "";
    display: inline-block;
    position: absolute;
    background-color: #00534e;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: 10px;
    transform: translate(-50%, -5px);
    left: -23px;
    z-index: 10;
}

.time__schedule dl dd::before {
    content: "";
    display: inline-block;
    position: absolute;
    background-color: #fff;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    top: 15px;
    transform: translate(-50%, -6px);
    left: -23px;
    z-index: 15;
}

/* add20250807 end */
@media (max-width:768px) {
    .program {
        margin-bottom: 70px;
    }

    .program__inner {
        flex-wrap: wrap;
        padding: 30px 15px;
    }

    .time__schedule,
    .program-right {
        width: 100%;
    }

    .program-right {
        display: flex;
        gap: 15px;
    }
}

/* information */
.information {
    margin-bottom: 155px;
}

.information h3 {
    color: #00534e;
}

.information .ttl__area {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.information .ttl__area::before,
.information .ttl__area::after {
    content: "";
    height: 1px;
    /* width: 35%; */
    width: calc(50% - (600px / 2));
    background-color: #333333;
}

.information .ttl__area::before {
    margin-right: 20px;
}

.information .ttl__area::after {
    margin-left: 20px;
}

.information .ttl__area h3 {
    display: flex;
    align-items: center;
}

.information .ttl__area h3::before {
    content: "【";
    margin-right: 15px;
    margin-left: -25px;
}

.information .ttl__area h3::after {
    content: "】";
    margin-left: 15px;
    margin-right: -25px;
}

.info__list {
    max-width: 695px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.info__list li {
    display: flex;
    align-items: flex-start;
}

.info__list li::before {
    content: "\025cf";
}

.info__list li:nth-of-type(5)::before,
.information ul li:nth-of-type(6)::before {
    content: "\203B";
}

.point__list li {
    display: flex;
    align-items: flex-start;
}

.point__list li::before {
    content: "・";
}

.point {
    max-width: 695px;
    margin: 0 auto;
    background-color: #00534e;
    color: #fff;
    flex-direction: column;
    padding: 30px 15px;
    position: relative;
    margin-bottom: 30px;
}

.point::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #fff;
    top: 120px;
    left: 0;
}

.point h4 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 40px;
}

.point h4 span {
    font-size: 18px;
    font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

@media (max-width:768px) {
    .information {
        margin-bottom: 70px;
    }

    .information .ttl__area::before,
    .information .ttl__area::after {
        width: calc(50% - (300px / 2));
    }

    .information .ttl__area h3::before,
    .information .ttl__area h3::after {
        font-size: 60px;
    }

    .information .ttl__area h3::before {
        margin-left: -45px;
    }

    .information .ttl__area h3::after {
        margin-right: -45px;
    }

    .point {
        padding: 15px;
    }

    .point::after {
        top: 95px;
    }

    .point h4 {
        /* font-size: 18px; */
        font-size: clamp(16px, 4.6vw, 21px);
        margin-bottom: 40px;
    }

    .point h4 span {
        /* font-size: 14px; */
        font-size: clamp(12px, 3.5vw, 16px);
    }
}

/* footer */
.footer-top {
    flex-direction: column;
    background: url(../img/footer.webp) no-repeat;
    background-size: cover;
    padding: 70px 15px;
}

.footer-top h2 {
    font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-size: 27px;
    font-weight: bold;
}

.footer__list p:nth-of-type(1) {
    font-size: 20px;
}

.footer__list {
    text-align: left;
}

.footer-bottom {
    background-color: #fff;
}

.footer-bottom .footer__img {
    display: block;
    max-width: 124px;
    margin: 0 auto;
}

.footer-bottom p {
    text-align: center;
}

.footer-bottom a:hover {
    opacity: 0.5;
}

@media (max-width:768px) {
    .footer-top h2 {
        font-size: 24px;
    }

    .footer__list p:nth-of-type(1) {
        font-size: 16px;
    }

    .footer-bottom .footer__img {
        max-width: 80px;
    }
}