p .note {
    display: block;
    margin-top: 5px;
    font-size: 10px;
}

.fixed_page_gnav {
    translate: 0 -100%;
    width: 100%;
    position: fixed;
    z-index: 100;
    top: 0;
    background-color: #fff;
    border-bottom: 1px solid #bdc4d9;
    padding: 19px 0 8px;
    transition: 0.2s all ease-in-out;
}

.fixed_page_gnav.active {
    translate: 0 0;
}

.fixed_page_gnav ul {
    max-width: 992px;
    width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.fixed_page_gnav ul li {
    font-weight: bold;
    text-align: center;
    font-size: 15px;
    line-height: 1;
}

.fixed_page_gnav ul li a {
    display: block;
    position: relative;
    color: #596ba1;
    font-weight: 600;
    text-align: center;
    font-size: 14px;
}

.fixed_page_gnav ul li a::after {
    display: block;
    margin: 10px auto 0;
    content: '';
    background: linear-gradient(
        to bottom,
        transparent 0%,
        #596ba1 100%
    );
    width: 16px;
    height: 8px;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.fixed_page_gnav ul li a:hover {
    background: linear-gradient(to right,
        #ffaf52 0%,
        #ed588c 20%,
        #a44ddf 50%,
        #bf7eec 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fixed_page_gnav ul li a:hover::after {
    background: linear-gradient(to bottom,
            transparent 0%,
            #ed588c 100%);
}

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


    .fixed_page_gnav {
        display: none;
        height: 50px;
    }


    .sticky_nav {
        width: 100%;
        background-color: #fff;
        border-bottom: 1px solid #bdc4d9;
        translate: 0 -100%;
        position: fixed;
        top: 0;
        transition: 0.2s all ease-in-out;
        z-index: 100;
    }
    
    .sticky_nav.active {
        translate: 0 0;
    }
    

    .sticky_nav .inner {
        width: 100%;
        height: 50px;
        padding: 18px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
    }

    .sticky_nav .page_ttl {
        font-weight: 600;
        font-size: 14px;
        color: #152d4f;
    }

    .sticky_nav .menu_btn a {
        height: 50px;
        display: flex;
        align-items: center;
    }

    .sticky_nav .menu_btn a span {
        font-weight: bold;
        margin-right: 10px;
    }

    .sticky_nav .menu_btn a::after {
        content: '';
        display: inline-block;
        vertical-align: middle;
        color: #7584b1;
        line-height: 1;
        width: 10px;
        height: 10px;
        border: 0.15em solid currentColor;
        border-left: 0;
        border-bottom: 0;
        box-sizing: border-box;
        transform: translateY(-30%) rotate(135deg);
        transition: 0.2s all;
    }

    .sticky_nav .menu_btn a.active::after {
        transform: translateY(30%) rotate(-45deg);
    }

    .sticky_nav .menu {
        width: 100%;
        position: fixed;
        top: 50px;
        left: 0;
        display: none;
        border-bottom: 1px solid #bdc4d9;
    }

    .sticky_nav .menu_inner {
        position: relative;
        z-index: 1000;
        background-color: #fff;
        padding: 30px 40px 55px;
    }
    
    .sticky_nav .menu_close {
        z-index: 999;
        width: 100%;
        height: calc(100vh - 50px);
        position: fixed;
        top: 50px;
        left: 0;
    }

    .sticky_nav .menu ul {
        display: flex;
        flex-direction: column;
        gap: 40px 0;
    }
    
    .sticky_nav ul li {
        font-weight: bold;
        text-align: center;
        font-size: 14px;
        line-height: 1;
    }
    
    .sticky_nav ul li a {
        color: #596ba1;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .sticky_nav ul li a::after {
        display: block;
        content: '';
        background: linear-gradient(to bottom, transparent 0%, #596ba1 100%);
        width: 16px;
        height: 8px;
        clip-path: polygon(0 0, 50% 100%, 100% 0);
    }

    .sticky_nav .btn {
        width: 50%;
    }
}

.mv {
    max-width: 1440px;
    margin: 0 auto;
}

.page_gnav {
    border-top: 1px solid #bdc4d9;
    border-bottom: 1px solid #bdc4d9;
    padding: 30px 20px 20px;
}

.page_gnav ul {
    max-width: 955px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.page_gnav ul li a {
    color: #596ba1;
    font-weight: 600;
    text-align: center;
    font-size: 14px;
}

.page_gnav ul li a::after {
    display: block;
    margin: 15px auto 0;
    content: '';
    background: linear-gradient(
        to bottom,
        transparent 0%,
        #596ba1 100%
    );
    width: 16px;
    height: 8px;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.page_gnav ul li a:hover {
    background: linear-gradient(to right,
        #ffaf52 0%,
        #ed588c 20%,
        #a44ddf 50%,
        #bf7eec 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page_gnav ul li a:hover::after {
    background: linear-gradient(
        to bottom,
        transparent 0%,
        #ed588c 100%
    );
}

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


    .page_gnav {
        border-top: 1px solid #bdc4d9;
        border-bottom: 1px solid #bdc4d9;
        padding: 30px 40px;
    }

    .page_gnav ul {
        flex-direction: column;
        gap: 35px 0;
    }

    .page_gnav ul li a {
        display: block;
        position: relative;
        width: 100%;
        text-align: left;
    }

    .page_gnav ul li a::after {
        position: absolute;
        margin: 0;
        translate: 0 -50%;
        top: 50%;
        right: 0;
    }
}


.sec01 {
    background: linear-gradient(
        to bottom,
        #ced2d9 70%,
        transparent 100%
    );
    padding: 80px 0;
}

.sec01 .sec_ttl {
    font-weight: 600;
    text-align: center;
    font-size: 28px;
    margin-bottom: 28px;
}

.sec01 .img01 {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
}

.sec01 .sec_txt {
    font-size: 16px;
    line-height: 2;
    max-width: 1000px;
    width: 90%;
    margin: 30px auto 0;
    display: flex;
    justify-content: center;
    gap: 0 5%;
    position: relative;
    padding-bottom: 80px;
}

.sec01 .sec_txt::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #ced2d9;
    position: absolute;
    bottom: 0;
    left: 0;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.sec01 .sec_txt .image {
    width: 15%;
}

.sec01 .sec_txt span {
    position: relative;
    z-index: 1;
}

.sec01 .sec_txt span.txt {
    margin-top: 20px;
}

.sec01 .sec_txt .kome {
    font-size: 11px;
    vertical-align: super;
}

.sec01 .sec_txt .note {
    color: #7e8185;
}

.sec01 .sec_lead {
    font-weight: 600;
    text-align: center;
    font-size: 28px;
    margin-top: 8px;
}

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

    .sec01 {
    background: linear-gradient(
        to bottom,
        #ced2d9 75%,
        transparent 100%
    );
        padding: 41px 0 55px;
    }

    .sec01 .sec_ttl {
        font-size: 22px;
    }

    .sec01 .img01 {
        width: 100%;
    }

    .sec01 .sec_txt {
        display: block;
        font-size: 14px;
        line-height: 25px;
        padding-bottom: 65px;
    }

    .sec01 .sec_txt::after {
        height: 30%;
    }

    .sec01 .sec_txt .note {
        line-height: 15px;
    }

    .sec01 .sec_txt .image {
        width: 40%;
        float: right;
        margin: 0 0 20px 20px;
    }

    .sec01 .sec_lead {
        font-size: 22px;
        line-height: 35px;
        margin-top: 15px;
    }
}


.sec02 {
    background-image: url(../images/index/sec02_bg.jpg);
    background-size: cover;
    background-position: center;
}

.sec02 .sec_inner {
    max-width: 992px;
    margin: 0 auto;
    padding: 118px 0 96px;
}

.sec02 .sec_ttl {
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
}

.sec02 .sec_lead {
    font-weight: 600;
    font-size: 60px;
    line-height: 1;
    margin: 26px 0 47px;
}

.sec02 .sec_txt {
    font-weight: 500;
    opacity: 0.7;
    font-size: 20px;
    line-height: 32px;
}

.sec02 .con_ttl {
    font-weight: 600;
    padding: 40px 30px;
    font-size: 22px;
    line-height: 1;
}

.sec02 .box_wrap {
    display: flex;
    flex-direction: column;
    gap: 32px 0;
    margin-top: 32px;
}

.sec02 .box a {
    display: flex;
    justify-content: space-between;
    filter: drop-shadow(0 0 30px hsla(32, 100%, 66%, 0.4));
    border: 1px solid #fff;
}

.sec02 .box .txt_wrap {
    background-color: hsla(0, 0%, 100%, 0.8);
    padding: 64px;
    position: relative;
}

.sec02 .box .image {
    flex-shrink: 0;
    width: 436px;
    height: 436px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec02 .box .image img {
    max-width: 115px;
    width: 30%;
}

.sec02 .box .image img:nth-child(2) {
    display: none;
}

.sec02 .box:hover .image {
    filter: brightness(1.1);
}

.sec02 .box:hover .image img:nth-child(1) {
    display: none;
}

.sec02 .box:hover .image img:nth-child(2) {
    display: block;
}

.sec02 .box:nth-child(even) .txt_wrap {
    order: 1;
}

.sec02 .box_ttl {
    display: flex;
    align-items: center;
    gap: 0 1em;
    font-weight: 600;
    font-size: 20px;
}

.sec02 .box_ttl span {
    background: linear-gradient(to right,
        #ffaf52 0%,
        #ed588c 60%,
        #a44ddf 90%,
        #bf7eec 100%);-webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
}

.sec02 .box_ttl::before,
.sec02 .box_ttl::after {
    content: '';
    width: 8px;
    height: 30px;
    background-color: #f57378;
    border-radius: 3px 0 0 3px;
    clip-path: polygon(100% 5%, 15% 6%, 15% 95%, 100% 95%, 100% 100%, 0 100%, 0 0, 100% 0);
}

.sec02 .box_ttl::after {
    rotate: 180deg;
}

.sec02 .box_lead {
    font-weight: 600;
    font-size: 30px;
    line-height: 48px;
    margin: 34px 0;
    letter-spacing: 0;
    font-feature-settings: "palt";
}

.sec02 .box_txt {
    font-size: 16px;
    line-height: 32px;
}

.sec02 .box .note {
    position: absolute;
    font-size: 12px;
    bottom: 8px;
    right: 5px;
    color: #8c8a88;
}



.sec02 .container01 {
    margin-top: 62px;
}

.sec02 .container01 .con_ttl {
    background-color: #e3c197;
}

.sec02 .container01 .box01 .image {
    background-image: url(../images/index/sec02_img01.jpg);
}

.sec02 .container01 .box02 .image {
    background-image: url(../images/index/sec02_img02.jpg);
}


.sec02 .container02 {
    margin: 96px 0 117px;
}

.sec02 .container02 .con_ttl {
    background-color: #e1c761;
}


.sec02 .container02 .box01 .image {
    background-image: url(../images/index/sec02_img03.jpg);
}

.sec02 .container02 .box02 .image {
    background-image: url(../images/index/sec02_img04.jpg);
}

.sec02 .container02 .box03 .image {
    background-image: url(../images/index/sec02_img05.jpg);
}

.sec02 .container02 .box04 .image {
    background-image: url(../images/index/sec02_img06.jpg);
}


.sec02 .container03 {
    margin-top: 62px;
}

.sec02 .container03 ul {
    display: flex;
    justify-content: space-between;
    filter: drop-shadow(0 0 32px hsla(32, 100%, 66%, 0.4));
}

.sec02 .container03 ul li {
    background-color: #fff;
    width: calc(100%/3 - 16px*2/3);
}

.sec02 .container03 .ttl {
    display: inline-block;
    background: linear-gradient(
        to right,
        #ffaf52 0%,
        #ed588c 60%,
        #a44ddf 90%,
        #bf7eec 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 22px;
    font-weight: 600;
    padding: 30px 30px 15px;
}

.sec02 .container03 .txt {
    font-size: 16px;
    line-height: 32px;
    padding: 0 30px 40px;
}

.sec03 {
    padding: 102px 0 96px;
    background: linear-gradient(
        to right,
        hsla(32, 100%, 66%, 0.4) 0%,
        hsla(339, 81%, 64%, 0.4) 60%,
        hsla(276, 70%, 59%, 0.4) 90%,
        hsla(275, 74%, 71%, 0.4) 100%
    );
}


@media screen and (max-width: 1040px) {
    
    .sec02 {
        background-image: url(../images/index/sec02_bg_sp.jpg);
    }

    .sec02 .sec_inner {
        padding: 120px 0 50px;
    }

    .sec02 .sec_ttl {
        font-size: 14px;
        margin: 0 20px;
    }

    .sec02 .sec_lead {
        font-size: 40px;
        line-height: 50px;
        margin: 22px 20px 38px;
    }

    .sec02 .sec_txt {
        font-size: 16px;
        line-height: 25px;
        margin: 0 20px;
    }

    .sec02 .container01 {
        margin-top: 58px;
    }

    .sec02 .con_ttl {
        font-size: 20px;
        padding: 30px 20px;
    }

    .sec02 .box_wrap {
        width: 90%;
        margin: 25px auto 0;
    }

    .sec02 .box a {
        flex-direction: column;
    }

    .sec02 .box .image {
        width: 100%;
        height: 89.47vw;
        order: -1;
    }

    .sec02 .box .txt_wrap {
        width: 100%;
        padding: 28px 24px 50px;
    }

    .sec02 .box_ttl {
        font-size: 16px;
    }

    .sec02 .box_lead {
        letter-spacing: 0;
        font-size: 20px;
        line-height: 30px;
        margin: 15px 0 0;
    }

    .sec02 .box_txt {
        margin-top: 18px;
        font-size: 14px;
        line-height: 25px;
    }

    .sec02 .box .note {
        font-size: 10px;
    }

    .sec02 .container02 {
        margin: 50px 0 120px;
    }

    .sec02 .container02 .box01 .txt_wrap {
        width: 100%;
    }


    .sec02 .container03 {
        margin-top: 50px;
    }

    .sec02 .container03 ul {
        width: 90%;
        margin: 0 auto;
        flex-direction: column;
        gap: 25px 0;
    }

    .sec02 .container03 ul li {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 30%;
    }

    .sec02 .container03 ul li .image {
        grid-column: 2;
        grid-row: 1;
    }

    .sec02 .container03 .ttl {
        padding: 0 25px;
        font-size: 16px;
        align-self: center;
    }

    .sec02 .container03 .txt {
        grid-column: 1/3;
        padding: 20px 25px;
        border-top: 1px solid #eedcc9;
        font-size: 14px;
        line-height: 25px;
    }
}



.sec03 .sec_lead {
    text-align: center;
    font-weight: 600;
    font-size: 20px;
}

.sec03 .sec_ttl {
    text-align: center;
    font-weight: 600;
    font-size: 40px;
    margin-top: 15px;
}

.sec03 .comingsoon_txt {
    text-align: center;
    font-size: 24px;
    letter-spacing: 0.05em;
    margin-top: 45px;
}

.sec03 .box {
    background-color: #263363;
    max-width: 800px;
    margin: 70px auto 0;
    text-align: center;
    color: #fff;
    font-size: 30px;
    padding: 42px 0;
    letter-spacing: 0.05em;
}


@media screen and (max-width: 1040px) {
    .sec03 {
        padding: 69px 0 50px;
    }

    .sec03 .sec_lead {
        font-size: 14px;
    }

    .sec03 .sec_ttl {
        font-size: 26px;
    }

    .sec03 .comingsoon_txt {
        font-size: 18px;
        margin-top: 25px;
    }

    .sec03 .box {
        width: 90%;
        margin-top: 43px;
        font-size: 18px;
        padding: 27px 0;
    }
}



.sec04 .sec_inner {
    max-width: 992px;
    margin: 0 auto;
    padding: 118px 0 96px;
}

.sec04 .sec_ttl {
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
}

.sec04 .sec_lead {
    font-weight: 600;
    font-size: 60px;
    line-height: 70px;
    margin: 26px 0 47px;
}

.sec04 .sec_txt {
    font-weight: 500;
    opacity: 0.7;
    font-size: 20px;
    line-height: 32px;
}

.sec04 .img01 {
    margin-top: 35px;
}

.sec04 .container01 {
    background-color: #eef0f5;
    padding: 85px 64px;
    margin: 48px 0 0;
}

.sec04 .container01 .con_ttl {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
}

.sec04 .container01 ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px 64px;
    margin-top: 52px;
}

.sec04 .container01 ul li {
    width: calc(50% - 64px/2);
}

.sec04 .container01 ul li .flex {
    display: flex;
    align-items: center;
    gap: 0 1em;
    margin-top: 20px;
}

.sec04 .container01 ul li .icon {
    max-width: 48px;
    width: 15%;
}

.sec04 .container01 ul li .icon img:nth-child(2) {
    display: none;
}


.sec04 .container01 .movie_ttl {
    font-size: 18px;
    color: #263363;
    font-weight: 600;
}

.sec04 .container01 .movie_ttl_small {
    font-size: 14px;
    color: #4e5980;
    margin-bottom: 8px;
}


.sec04 .container01 ul li:hover .image {
    filter: brightness(1.15);
}

.sec04 .container01 ul li:hover .icon img:nth-child(1) {
    display: none;
}

.sec04 .container01 ul li:hover .icon img:nth-child(2) {
    display: block;
}

.sec04 .container01 ul li:hover .movie_ttl,
.sec04 .container01 ul li:hover .movie_ttl_small {
    color: #596ba1;
}




.sec04 .container02 {
	margin: 62px 0 117px;
}
.sec04 .container02 .mov_bg_1clm_wrap {
	display: flex;
	justify-content: center;
	padding: 100px 50px 0;
	width: 100%;
	background: #fcf5ea;
}

.sec04 .container02 .mov_bg_flex_wrap {
	display: flex;
	justify-content: space-between;
	gap: 80px;
	padding: 100px 50px 80px;
	width: 100%;
	background: #fcf5ea;
}

.sec04 .container02 .mov_bg_flex_box {
	flex: 1;
	width: 100%;
	max-width: 400px;	 /* 必要なら制限 */
	text-align: center; /* テキスト中央揃え */
	cursor: pointer;    /* ボックス全体をクリック可能に */
}

.video-wrapper {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #fff;
}

.video-wrapper iframe,
.video-thumbnail img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* サムネイル画像（通常時） */
.video-thumbnail img {
	transition: filter 0.3s ease;
}
/* マウスオーバー時だけ明るく */
.mov_bg_flex_box:hover img {
	filter: brightness(1.4);
	transition: filter 0.3s ease;
}


.video-wrapper iframe {
	border: 0;
}

.yt_cap_wrap {
	display: flex;
	justify-content: center;
}
.yt_cap {
	margin-top: 30px;
	transition: color 0.3s ease, transform 0.3s ease;
	color: #653700;
	font-size: 16px;
	line-height: 1.5;
	text-align: left;
	position: relative;
	padding-left: 70px; /* 矢印分の余白 */
}
.yt_cap:hover {
	color: #c19f76;
}
.yt_cap .title {
	display: block;
	font-size: 24px;
	font-weight: bold;
}

/* 丸付き矢印 */
.yt_cap::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	border: 2px solid #653700;
	border-radius: 50%;
	background: transparent;
}
.yt_cap::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translateY(-50%); 
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #653700;
}
/* --- マウスオーバー時 --- */
.mov_bg_flex_box:hover .yt_cap::before {
	background: #653700; /* 背景茶色ベタ */
}

.mov_bg_flex_box:hover .yt_cap::after {
	border-left-color: #fff; /* 三角を白に */
}




.sec04 .container02 ul {
    display: flex;
    justify-content: space-between;
}

.sec04 .container02 ul li {
    width: calc(100%/3 - 64px*2/3);
    display: flex;
    flex-direction: column;
}

.sec04 .container02 .ttl {
    font-weight: 500;
    font-size: 20px;
    margin: 30px 0 20px;
}

.sec04 .container02 .ttl .small {
    font-size: 16px;
}

.sec04 .container02 .txt {
    font-size: 16px;
    line-height: 32px;
}

.sec04 .container02 .btn {
    margin-top: auto;
}

.sec04 .container02 .btn a {
    display: block;
    margin-top: 20px;
    max-width: 192px;
    border: 1px solid #000;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    padding: 10px 0;
}

.sec04 .container02 .btn a:hover {
    border-color: #697aaa;
    background-color: #697aaa;
    color: #fff;
}


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

    .sec04 .sec_ttl {
        font-size: 14px;
        margin: 0 20px;
    }

    .sec04 .sec_lead {
        font-size: 40px;
        line-height: 50px;
        margin: 22px 20px 38px;
    }

    .sec04 .sec_txt {
        font-size: 16px;
        line-height: 25px;
        margin: 0 20px;
    }

    .sec04 .img01 {
        margin-top: 27px;
    }

    .sec04 .sec_inner {
        padding-bottom: 50px;
    }

    .sec04 .container01 {
        margin-top: 35px;
        padding: 70px 20px;
    }

    .sec04 .container01 .con_ttl {
        font-size: 20px;
    }

    .sec04 .container01 ul {
        margin-top: 35px;
        gap:30px 0;
    }

    .sec04 .container01 ul li {
        width: 100%;
    }

    .sec04 .container01 ul li a {
        display: flex;
        justify-content: space-between;
    }

    .sec04 .container01 ul li .image {
        order: 1;
        width: 38%;
        position: relative;
    }

    .sec04 .container01 ul li .image .sp_icon {
        position: absolute;
        translate: -50% -50%;
        top: 50%;
        left: 50%;
        width: 50%;
    }



    .sec04 .container01 ul li .flex {
        width: 58%;
        margin: 0;
    }

    .sec04 .container01 .movie_ttl_small {
        font-size: 10px;
    }

    .sec04 .container01 .movie_ttl {
        font-size: 16px;
    }

    .sec04 .container01 ul li .icon {
        display: none;
    }

    .sec04 .container02 {
        margin-top: 47px;
    }




	.sec04 .container02 .mov_bg_flex_wrap {
		flex-direction: column;
		justify-content: center;
		padding: 50px 35px;
		gap: 50px;
	}

	.sec04 .container02 .mov_bg_flex_box {
		max-width: 600px;
		margin: 0 auto;

	}

	.yt_cap_wrap {
		display: block;
	}

	.yt_cap {
		margin-top: 20px;
		padding-left:55px;
	}
	.yt_cap .title {
		font-size: 18px;
	}

	.yt_cap::before {
		width: 40px;
		height: 40px;
	}
	.yt_cap::after {
		left: 15px;
	}

	.sec04 .container02 div.mov_bg {
		width: 100%;
		background-color: #fcf5ea;
		
	}
	.sec04 .container02 ul {
        width: 90%;
        margin: 0 auto;
        flex-direction: column;
        gap: 35px 0;
    }

    .sec04 .container02 ul li {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 35%;
        gap: 0 20px;
    }

    .sec04 .container02 ul li .image {
        grid-column: 2;
        grid-row: 1/5;
    }

    .sec04 .container02 .txt {
        font-size: 14px;
        line-height: 25px;
    }

    .sec04 .container02 .ttl {
        font-size: 16px;
        margin: 0 0 10px;
    }

    .sec04 .container02 .ttl .small {
        font-size: 12px;
    }

    .sec04 .container02 .btn a {
        max-width: 150px;
        padding: 8px 0;
        margin-top: 10px;
        font-size: 12px;
    }
}


.sec05 {
    padding: 111px 0 96px;
    background: linear-gradient(
        to right,
        hsla(32, 100%, 66%, 0.4) 0%,
        hsla(339, 81%, 64%, 0.4) 60%,
        hsla(276, 70%, 59%, 0.4) 90%,
        hsla(275, 74%, 71%, 0.4) 100%
    );
}

.sec05 .sec_ttl {
    text-align: center;
    font-weight: 600;
    font-size: 40px;
}

.sec05 .box {
    background-color: #263363;
    max-width: 800px;
    margin: 48px auto 0;
    text-align: center;
    color: #fff;
    font-size: 30px;
    padding: 42px 0;
    letter-spacing: 0.05em;
}


@media screen and (max-width: 1040px) {
    .sec05 {
        padding: 77px 0 50px;
    }

    .sec05 .sec_ttl {
        font-size: 26px;
        line-height: 40px;
    }

    .sec05 .box {
        width: 90%;
        margin-top: 43px;
        font-size: 18px;
        padding: 27px 0;
    }
}





.video_contents {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 111;
}

.video_contents .bg {
    width: 100%;
    height: 100%;
    background-color: hsla(0, 0%, 0%, 0.7);
    position: absolute;
    cursor: pointer;
}

.video_contents .inner {
    max-width: 1000px;
    width: 100%;
    position: absolute;
    translate: -50% -50%;
    top: 50%;
    left: 50%;
}

.video_contents .video {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.video_contents iframe,
.video_contents video {
    width: 100%;
    height: 100%;
}


.video_contents .btn a {
    display: block;
    width: 60px;
    height: 60px;
    background-color: hsla(0, 2%, 26%, 0.8);
    border-radius: 100%;
    position: absolute;
    translate: -50% 0;
    left: 50%;
    bottom: -80px;
    cursor: pointer;
    border: 1px solid #fff;
}


.video_contents .btn a::before {
    position: absolute;
    rotate: -45deg;
    translate: -50% -50%;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 40%;
    height: 2px;
    background-color: #fff;
}

.video_contents .btn a::after {
    position: absolute;
    rotate: 45deg;
    translate: -50% -50%;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 40%;
    height: 2px;
    background-color: #fff;
}


.video_contents .btn a:hover {
    background-color: hsla(0, 0%, 100%, 0.8);
}

.video_contents .btn a:hover::before,
.video_contents .btn a:hover::after {
    background-color: #000;
}

@media screen and (max-width: 1040px) {
    .video_contents .btn a {
        width: 50px;
        height: 50px;
        bottom: -77px;
    }
}




.sec06 {
    background-color: #e8f5fa;
    padding: 103px 0 96px;
}

.sec06 .sec_ttl {
    text-align: center;
    font-weight: bold;
    color: #2a8dbb;
    font-size: 60px;
}

.sec06 .sec_ttl .small {
    display: block;
    font-size: 36px;
    margin-top: 10px;
}

.sec06 .sec_txt {
    text-align: center;
    font-size: 20px;
    margin-top: 40px;
}

.sec06 .container01 {
    max-width: 735px;
    margin: 64px auto 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.sec06 .container01::before,
.sec06 .container01::after {
    content: '';
    width: 30px;
    height: 130px;
    background-image: url(../images/index/sec06_deco.png);
    background-size: 100% 100%;
}

.sec06 .container01::after {
    rotate: 180deg;
}

.sec06 .container01 .lead {
    font-size: 24px;
    color: #2a8dbb;
    font-weight: bold;
}

.sec06 .container01 ul {
    display: flex;
    flex-direction: column;
    gap: 10px 0;
}

.sec06 .container01 ul li {
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap:  0 15px;
}

.sec06 .container01 ul li::before {
    display: inline-block;
    content: '';
    width: 10px;
    height: 10px;
    background-color: #62bddf;
    rotate: 45deg;
}


.sec06 .container02 {
    max-width: 950px;
    margin: 0 auto;
}

.sec06 .container02 ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.sec06 .container02 ul li {
    position: relative;
}

.sec06 .container02 ul li .btn {
    position: absolute;
    max-width: 224px;
    width: 90%;
    translate: -50% 0;
    bottom: 7%;
    left: 50%;
}

.sec06 .container02 ul li.list01 .btn {
    left: 53%;
}
.sec06 .container02 ul li.list03 .btn {
    left: 49%;
}


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

    .sec06 {
        padding: 83px 0 50px;
    }

    .sec06 .sec_ttl {
        font-size: 40px;
    }

    .sec06 .sec_ttl .small {
        font-size: 24px;
        line-height: 35px;
    }

    .sec06 .sec_txt {
        padding: 0 20px;
        text-align: left;
        font-size: 16px;
        line-height: 25px;
        margin-top: 30px;
    }

    .sec06 .container01 {
        margin: 51px 20px 35px;
        flex-direction: column;
        position: relative;
        padding: 5px 0 15px;
    }

    .sec06 .container01::before,
    .sec06 .container01::after {
        position: absolute;
        top: 0;
        width: 25px;
        height: 100%;
    }

    .sec06 .container01::before {
        left: 0;
    }

    .sec06 .container01::after {
        right: 0;
    }

    .sec06 .container01 .lead {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .sec06 .container01 ul li {
        font-size: 14px;
        gap: 0 11px;
    }

    .sec06 .container01 ul li::before {
        width: 8px;
        height: 8px;
    }

    .sec06 .container02 ul {
        flex-direction: column;
        gap: 10px 0;
        padding: 0 20px;
    }

    .sec06 .container02 ul li {
        width: 100%;
    }

    .sec06 .container02 ul li .btn,
    .sec06 .container02 ul li.list01 .btn,
    .sec06 .container02 ul li.list03 .btn {
        max-width: 135px;
        left: 61%;
        bottom: 10%;
    }
}