@charset "UTF-8";


/* main_img
------------------------------------*/
#main_img {
    background: url("../img/main_bg_sp.jpg")no-repeat center center/cover;
    position: relative;
    width: 88%;
    margin: 0 auto 80px;
    padding: 20px 0 250px;
}
#main_img::before, #main_img::after {
    position: absolute;
    content: "";
}
#main_img::before {
    left: calc((100vw - 100%) / -2);
    top: -60px;
    background: url("../img/w_bg.jpg")center top;
    height: calc(100% + 140px);
    width: 100vw;
    z-index: -2;
}
#main_img::after {
    background: url("../img/main_img01_sp.png")no-repeat center top/cover;
    width: 307px;
    height: 201px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    transition: all 0.3s;
}
#main_img .btn {
    margin: 0;
    position: absolute;
    bottom: -30px;
    left: calc((100vw - 100%) / -2);
    width: 80%;
    max-width: none;
    z-index: 10;
}
#main_img .btn span {
    padding-left: 45px;
    margin-left: 10%;
}
#main_img .btn span::before {
    background-image: url("../img/main_btn_icon.png");
    width: 36px;
    height: 38px;
    left: 0;
}
#main_img .main_txt {
    width: 90%;
    margin: 0 auto;
    line-height: 1.8;
}
#main_img .main_txt .sub_ttl {
    font-size: 0.8rem;
    padding-bottom: 4px;
}
#main_img .main_txt .sub_ttl::after {
    background-color: #333;
}
#main_img .main_txt .sub_ttl, #main_img .main_txt .main_ttl {
    font-weight: bold;
}
#main_img .main_txt .main_ttl {
    font-size: 1.75rem;
    line-height: 1.5;
    margin: 10px 0;
}


        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
            #main_img {
                background-image: url("../img/main_bg.jpg");
                padding: 50px 0 80px;
                background-position: left 20% center;
            }
            #main_img::before {
                top: -70px;
                height: calc(100% + 150px);
            }
            #main_img .btn {
                width: 60%;
            }
            #main_img .btn span {
                margin-left: auto;
                max-width: 190px;
            }
            #main_img::after {
                background-image: url("../img/main_img01.png");
                width: 377px;
                height: 336px;
                right: -5%;
                left: auto;
                transform: none;
                bottom: 0;
            }
            #main_img .main_txt .sub_ttl {
                font-size: 1rem;
            }
            #main_img .main_txt .main_ttl {
                font-size: 2.2rem;
            }
            #main_img .main_txt .read {
                width: 48%;
            }
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 960px) {
            #main_img {
                padding: 100px 0 140px;
                background-position: left center;
                margin-bottom: 100px;
            }
            #main_img::before {
                height: calc(100% + 200px);
            }
            #main_img .btn {
                width: 40%;
                max-width: 600px;
                padding: 35px 0;
            }
            #main_img .main_txt .sub_ttl {
                font-size: 1.375rem;
            }
            #main_img .main_txt .main_ttl {
                font-size: 3.4rem;
            }
            #main_img .btn span {
                padding-left: 85px;
            }
            #main_img .btn span::before {
                width: 57px;
                height: 60px;
            }
        }
        @media screen and (min-width: 1200px) {
            #main_img::after {
                width: 517px;
                height: 456px;
            }
            #main_img::before {
                top: -100px;
            }
        }
        @media screen and (min-width: 1500px) {
            #main_img::after {
                right: auto;
                left: 60%;
                transform: translateX(-50%);
            }
        }



/* c01
------------------------------------*/
#c01 {
    position: relative;
}
#c01::after {
    position: absolute;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
    height: 60px;
    background-color: #333;
    transition: all 0.3s;
    aspect-ratio: 1/cos(30deg);
    clip-path: polygon(50% 100%,100% 0,0 0);
    width: 80%;
    max-width: 500px;
}
#c01 .title01 > span {
    margin: 0 auto;
}
#c01 .title02 {
    text-align: center;
}
#c01 .flex {
    gap: 0 4%;
}
#c01 .flex > div:not(:last-child) {
    border-bottom: 1px solid #333;
}
#c01 .flex > div {
    text-align: center;
    padding: 30px 0;
}
#c01 .flex > div .en {
    font-size: 0.8rem;
    margin: 20px 0 0;
    font-weight: bold;
}
#c01 .flex > div .en span {
    text-decoration: underline;
    font-size: 1rem;
}
#c01 .flex > div .ttl {
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.5;
}


        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
            #c01::after {
                bottom: -50px;
                height: 100px;
            }
            #c01 .flex {
                gap: 0 10%;
                position: relative;
            }
            #c01 .flex::before {
                position: absolute;
                content: "";
                width: 1px;
                height: 100%;
                top: 0;
                transform: translateX(-50%);
                left: 50%;
                background-color: #333;
            }
            #c01 .flex > div {
                width: calc(90% / 2 - 1px);
                padding: 30px 0;
            }
            #c01 .flex > div .en {
                margin: 20px 0 10px;
            }
            #c01 .flex > div:nth-last-child(2) {
                border-bottom: none;
            }
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 960px) {
            #c01 {
                padding-bottom: 150px;
            }
            #c01 .flex > div {
                width: calc(92% / 3 - 1px);
                padding: 20px 0;
            }
            #c01 .flex {
                gap: 60px 4%;
            }
            #c01 .flex::before {
                width: 100%;
                height: 1px;
                top: 49%;
                transform: translateY(-50%);
                left: 0;
            }
            #c01 .flex > div:not(:last-child) {
                border-bottom: none;
            }
            #c01 .flex > div:not(:nth-child(3n)) {
                border-right: 1px solid #333;
            }
        }




/* c02
------------------------------------*/
#c02 {
    background: url("../img/c02_bg01.jpg")no-repeat center center/cover;
    color: #fff;
}
#c02 .title01 {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
#c02 .title01 .jp {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
}
#c02 .title01 .jp::before {
    content: none;
}
#c02 .title01 .jp .black {
    color: #fff;
}
#c02 .title01 .jp .r {
    color: #ffb9bf;
}
#c02 .js_line::after {
    background-color: #ffb9bf;
}
#c02 .btn {
    max-width: 350px;
}
#c02 .btn span::before {
    background-image: url("../img/main_btn_icon.png");
    width: 36px;
    height: 38px;
    left: 0;
}
#c02 .btn span {
    width: 80%;
    max-width: 200px;
    margin: 0 auto;
}


        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
            
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 960px) {
            #c02 .btn {
                max-width: 400px;
                padding: 30px 0;
            }
            #c02 .btn span{
                padding-left: 85px;
            }
            #c02 .btn span::before {
                width: 57px;
                height: 60px;
            }
        }




/* c03
------------------------------------*/
#c03 {
    position: relative;
}
#c03::before, #c03::after {
    position: absolute;
    content: "";
}
#c03::before {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: linear-gradient( -180deg, rgb(255,255,255) 0%, rgb(233,238,243) 63%, rgb(210,221,231) 100%);
    z-index: -2;
}
#c03::after {
    z-index: -1;
    background: url("../img/c03_before01.png")no-repeat center top/cover;
    width: 100%;
    height: 260px;
    bottom: 0;
    left: 0;
}
#c03 .w_box, #c09 .w_box, #c10 .w_box {
    padding: 40px 0;
    background-color: rgba(255, 255, 255, 0.9);
    margin-top: 40px;
}
#c03 .w_box > div, #c09 .w_box > div, #c10 .w_box > div {
    width: 90%;
    margin: 0 auto;
    max-width: 960px;
}
#c03 .w_box h4 {
    color: #cc0000;
    position: relative;
    padding-left: 20px;
    margin-bottom: 30px;
}
#c03 .w_box h4::before {
    position: absolute;
    content: "▶︎";
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
#c03 .w_box .ttl {
    margin-bottom: 10px;
}
#c03 .w_box ul > li {
    margin-left: 0;
}
#c03 .w_box .kereki_li > li {
    display: flex;
}
#c03 .w_box .kereki_li .year {
    width: 6em; 
    flex-shrink: 0;
}
#c03 .w_box .flex {
    gap: 0;
}
#c03 .w_box .flex_box01:first-child {
    border-bottom: 1px solid #bcbbbc;
    margin-bottom: 5%;
    padding-bottom: 5%;
}


        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
            #c03 .w_box, #c09 .w_box, #c10 .w_box {
                padding: 60px 0;
                margin-top: 60px;
            }
            #c03 .flex {
                flex-direction: column;
            }
            #c03 .flex_box01 {
                width: auto;
            }
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 960px) {
            #c03::after {
                width: 100%;
                height: 430px;
                background-size: auto;
                background-repeat: repeat-x;
            }
            #c03 .flex {
                flex-direction: row;
            }
            #c03 .flex_box01 {
                width: calc(96% / 2);;
            }
            #c03 .w_box .flex_box01:first-child {
                border-bottom: none;
                margin-bottom: 0;
                padding-bottom: 0;
                border-right: 1px solid #bcbbbc;
                margin-right: 5%;
                padding-right: 5%;
            }
        }
        @media screen and (min-width: 2000px) {
        }



/* c04
------------------------------------*/
#c04 .title01 > span {
    margin-left: auto;
    margin-right: auto;
}
#c04 .flex .en {
    display: table;
    margin-left: auto;
    font-weight: 800;
    font-style: italic;
    color: #cc0000;
    text-decoration: underline;
    font-size: 1.1rem;
}
#c04 .flex h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
#c04 .flex .circle_li > li::before {
    color: #d87f87;
}
#c04 .flex .circle_li {
    display: flex;
    flex-wrap: wrap;
    gap: 0 4%;
}
#c04 .flex .circle_li > li {
    width: calc(96% / 2 - 30px);
}



        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
            #c04 .flex {
                align-items: flex-end;
            }
            #c04 .flex .circle_li > li {
                width: calc(100% - 30px);
            }
            #c04 .flex_box02:nth-child(2) {
                padding-bottom: 40px;
            }
            #c04 .flex_box02:nth-child(3) {
                padding-bottom: 80px;
            }
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 960px) {
            #c04 .flex h3, #c04 .flex .en {
                font-size: 1.375rem;
            }
        }




/* c05
------------------------------------*/
#c05 {
    background-color: #dae1e8;
}
#c05 .title01 > span {
    margin-left: auto;
    margin-right: auto;
}
#c05 .flex {
    counter-reset: number;
}
#c05 .flex .flex_box03 {
  counter-increment: number;
}
#c05 .flex .flex_box03 h3 {
    padding-left: 50px;
    position: relative;
    line-height: 1.5;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 10px;
}
#c05 .flex .flex_box03 h3::before, #c05 .flex .flex_box03 h3::after {
    position: absolute;
}
#c05 .flex .flex_box03 h3::before {
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #333;
    left: 0;
    top: 2px;
}
#c05 .flex .flex_box03 h3::after {
    content: counter(number, decimal-leading-zero);
    font-family: "Josefin Sans", sans-serif;
    font-style: italic;
    font-size: 0.875rem;
    color: #fff;
    top: 8px;
    left: 5px;
}
#c05 .flex .flex_box03:nth-child(1) h3::after {
    left: 7px;
}
#c05 .flex .flex_box03 p {
    margin-top: 10px;
}



        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
            #c05 .flex .flex_box03 {
                width: calc(96% / 2);
            }
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 960px) {
            #c05 .flex .flex_box03 h3 {
                min-height: 50px;
            }
            #c05 .flex .flex_box03 {
                width: calc(88% / 4);
            }
        }




/* c06
------------------------------------*/
#c06 {
    background-color: #ebedef;
    background-image: linear-gradient(90deg, #dde1eb 1px, transparent 1px), linear-gradient(#dde1eb 1px, transparent 1px);
    background-position: 10px 10px;
    background-size: 16px 16px;
}
#c06 .title01 {
    margin-bottom: 10px;
}
#c06 .btn {
    margin-left: 0;
}
#c06 .btn span::before {
    background-image: url("../common/img/pdf_icon.png");
    width: 19px;
    height: 20px;
}



        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
            #c06 .flex {
                flex-direction: column;
            }
            #c06 .flex_box01 {
                width: auto;
            }
            #c06 .title01 {
                margin-bottom: 20px;
            }
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 960px) {
            #c06 .flex {
                flex-direction: row;
            }
            #c06 .flex_box01:first-child {
                width: 60%;
            }
            #c06 .flex_box01:last-child {
                width: 36%;
            }
        }




/* c07
------------------------------------*/
#c07 .flow_li {
    max-width: 280px;
    margin: 0 auto;
}
#c07 .flow_li > div {
    background-image: linear-gradient( 0deg, rgb(211,80,73) 0%, rgb(221,106,85) 100%);
    position: relative;
    color: #fff;
    text-align: center;
    padding: 30px 0 20px;
    line-height: 1.5;
    font-weight: bold;
}
#c07 .flow_li > div:not(:first-child) {
    padding-top: 60px;
}
#c07 .flow_li > div::after {
    position: absolute;
    content: "";
    aspect-ratio: 1/cos(30deg);
    clip-path: polygon(50% 100%,100% 0,0 0);
    width: 100%;
    height: 30px;
    bottom: -29px;
    left: 0;
    background-color: #d35049;
    z-index: 1;
}
#c07 .flow_li .en {
    color: #ffc6bc;
    font-style: italic;
    text-decoration: underline;
    font-size: 1.25rem;
    padding-top: 10px;
}
#c07 .flow_li .img {
    margin: 15px 0;
}




        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
            
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 960px) {
            #c07 .flow_li {
                display: flex;
                justify-content: space-between;
                width: calc(100% - 30px);
                max-width: none;
            }
            #c07 .flow_li > div {
                background-image: linear-gradient( -90deg, rgb(211,80,73) 0%, rgb(221,106,85) 100%);
                width: calc(100% / 5);
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                padding: 30px 0;
            }
            #c07 .flow_li > div:not(:first-child) {
                padding-top: 20px;
            }
            #c07 .flow_li > div:not(:first-child) {
                padding-left: 30px;
            }
            #c07 .flow_li > div::after {
                aspect-ratio: cos(30deg);
                clip-path: polygon(0 0,100% 50%,0 100%);
                height: 100%;
                width: 30px;
                left: auto;
                right: -30px;
                top: 0;
                bottom: auto;
            }
            #c07 .flow_li .img {
                min-height: 60px;
                display: flex;
                justify-content: center;
                align-items: center;
            }
            #c07 .flow_li .ttl {
                min-height: 50px
            }
        }





/* c08
------------------------------------*/
#c08 {
    width: 90%;
    margin: 0 auto;
    max-width: 2000px;
    background-color: #fff;
    position: relative;
    z-index: 1;
}
#c08::before {
    position: absolute;
    content: "";
    width: 100vw;
    height: 30%;
    bottom: 0;
    left: calc((100vw - 100%) / -2);
    background-color: #fff;
    z-index: -1;
}
#c08 .title01 > span {
    margin-left: auto;
    margin-right: auto;
}
#c08 .inner > p {
    text-align: center;
    margin-bottom: 80px;
}
#c08 .flex_box02 {
    padding: 60px 20px 40px;
    background-color: #f4f5f5;
    position: relative;
    margin-top: 30px;
}
#c08 .flex_box02::before {
    position: absolute;
    content: "";
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    top: -40px;
}
#c08 .flex_box02:nth-child(1)::before {
    background-image: url("../img/c08_icon01.png");
}
#c08 .flex_box02:nth-child(2)::before {
    background-image: url("../img/c08_icon02.png");
}
#c08 .flex_box02:nth-child(3)::before {
    background-image: url("../img/c08_icon03.png");
}
#c08 h3 {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 3px solid #333;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.2;
}
#c08 .gallery {
    margin: 20px auto 0;
    width: 60%;
    position: relative;
    display: table;
    box-shadow: 0px 5px 10px 0px rgba(184, 184, 184, 0.7);
}
#c08 .gallery::before, #c08 .gallery::after {
    position: absolute;
}
#c08 .gallery::before {
    content: "";
    background-color: #cc0000;
    width: 20px;
    height: 20px;
    bottom: 0;
    right: 0;
}
#c08 .gallery::after {
    content: "+";
    color: #fff;
    bottom: 1px;
  right: 3px;
  line-height: 1;
  font-size: 1.2rem;
}


        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
            #c08 .flex_box02 {
                padding: 100px 40px 40px;
            }
            #c08 .flex_box02::before {
                width: 120px;
                height: 120px;
                top: -60px;
            }
            #c08 .gallery {
                margin-top: 40px;
                width: auto;
            }
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 960px) {
        }






/* c09
------------------------------------*/
#c09::before {
    height: 80%;
}
#c09 .title01 > span {
    margin-left: auto;
    margin-right: auto;
}
#c09 .title01 {
    margin-bottom: 0;
}
#c09 .flex {
    gap: 0 4%;
}
#c09 .w_box {
    box-shadow: 0px 5px 10px 0px rgba(184, 184, 184, 0.7);
    margin-bottom: 40px;
}
#c09 table {
    line-height: 1.5;
}
#c09 table th span {
    display: inline-block;
    padding-left: 20px;
    position: relative;
}
#c09 table th span::before {
    position: absolute;
    content: "▶︎";
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    color: #cc0000;
    font-size: 50%;
}
#c09 table td .circle_li span {
    display: inline-block;
    min-width: 120px;
}
#c09 h3 {
    padding-left: 25px;
    position: relative;
    font-size: 1.1rem;
    margin-bottom: 10px;
}
#c09 h3::before {
    position: absolute;
    content: "";
    background: url("../img/c09_title_icon.png")no-repeat center center/cover;
    width: 15px;
    height: 23px;
    top: 40%;
    transform: translateY(-50%);
    left: 0;
}
#c09 .map {
    border: 10px solid #fff;
    height: 450px;
}
#c09 .squ_li > li {
    margin-left: 0;
    padding-left: 20px;
    position: relative;
}
#c09 .squ_li > li::before {
    position: absolute;
    content: "■";
    left: 0;
    top: 2px;
    font-size: 80%;
}



        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
            #c09 .title01 {
                margin-bottom: 30px;
            }
            #c09 .w_box {
                margin-bottom: 80px;
            }
            #c09 h3 {
                font-size: 1.3rem;
            }
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 960px) {
            #c09 table th {
                width: 40%;
            }
            #c09 table td {
                width: 60%;
            }
        }






/* c10
------------------------------------*/
#c10 .title01 > span {
    margin-left: auto;
    margin-right: auto;
}
#c10 .title02 {
    text-align: center;
}
#c10 h4 {
    text-align: center;
    margin: 0 auto 30px;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    background-color: #f24e4e;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    max-width: 450px;
}
#c10 h5 {
    font-size: 1rem;
    margin-bottom: 10px;
}
#c10 table tr {
    border-bottom: none;
}
#c10 table th span {
    display: inline-block;
    line-height: 1;
    padding: 5px 10px;
    background-color: #aeaeae;
    border-radius: 50px;
    margin-right: 10px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
}
#c10 table th span.hissu {
    background-color: #d55c5c;
}
#c10 table td.flex {
    gap: 2px 4%;
}
#c10 table td input[type=text], #c10 table td input[type=email],
#c10 table td textarea {
    width: calc(100% - 22px);
    padding: 10px;
    border: 1px solid #cecece;
    font-size: 1rem;
}
#c10 table td .code {
    display: flex;
    align-items: center;
    gap: 10px 2%;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
#c10 table td .code input[type=text] {
    width: 40%;
}
#c10 table td .code .btn {
    margin: 0;
    padding: 13px 0;
    max-width: 160px;
    width: 40%;
}
#c10 .btn {
    background-color: #cc0000;
    border: none;
}
#c10 .form-check-input {
    display: inline-block;
    margin-right: 5px;
}
#c10 .privacy_box {
    overflow-y: scroll;
    height: 200px;
    border: 1px solid #bfbfbf;
    padding: 10px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}
#c10 .privacy_box > div:not(:last-child) {
    margin-bottom: 20px;
}
#c10 .col_sm9 {
    margin-top: 40px;
}
#c10 .col_sm9 input {
    margin: 0 auto;
    max-width: 350px;
    display: block;
    width: calc(100% - 22px);
    font-size: 1rem;
    padding: 10px;
    margin-top: 10px;
}
#c10 .col_sm9 .alert-danger {
    text-align: center;
}
#c10 .alert-danger {
    color: #cc0000;
    font-weight: bold;
}
#c10 #error_message {
    display: table;
    padding: 10px;
    border: 2px solid #cc0000;
    margin: 0 auto 10px;
    line-height: 1.5;
    width: 80%;
  text-align: center;
}


        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
            #c10 h4 {
                font-size: 1.375rem;
            }
            #c10 table th, #c10 table td {
                padding: 10px 20px;
            }
            #c10 table td.flex {
                justify-content: flex-start;
                flex-wrap: wrap;
            }
            #c10 table td .code input[type=text], c10 table td .code .btn {
                width: 30%;
            }
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 960px) {
        }






/* 
------------------------------------*/







        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 960px) {
        }






/* 
------------------------------------*/







        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 960px) {
        }
