@charset "utf-8";
/* CSS Document */

/* ===========================================================================

base

=========================================================================== */
:root {
	--darkblue: #171D57;
	--blue: #2A338D;
    --white: #fff;
    --yellow: #D6A124;
    --grey: #A8A8A8;
    --border-black: #BAB8BA;
    --bg-grey: #EBEBEB;
	--rainbow-grad: linear-gradient(180deg, #95E8FF 0%, #FFAC7C 100%);
}

/*  Made by Elly Loel - https://ellyloel.com/  */
*{margin:0;padding:0;line-height:calc(.25rem + 1em + .25rem)}*,::after,::before{box-sizing:border-box}:where(:not(fieldset,progress,meter)){border-width:0;border-style:solid;background-origin:border-box;background-repeat:no-repeat}html{block-size:100%;-webkit-text-size-adjust:none}body{-webkit-font-smoothing:antialiased;text-rendering:optimizeSpeed;min-block-size:100%}:where(img,svg,video,canvas,audio,iframe,embed,object){display:block}:where(img,svg,video){block-size:auto;max-inline-size:100%}:where(svg){stroke:none;fill:currentColor}:where(svg):where(:not([fill])){stroke:currentColor;fill:none;stroke-linecap:round;stroke-linejoin:round}:where(svg):where(:not([width])){inline-size:5rem}:where(input,button,textarea,select),:where(input[type=file])::-webkit-file-upload-button{color:inherit;font:inherit;font-size:inherit;letter-spacing:inherit;word-spacing:inherit}:where(textarea){resize:vertical}@supports (resize:block){:where(textarea){resize:block}}:where(p,h1,h2,h3,h4,h5,h6){overflow-wrap:break-word}h1{font-size:2em}:where(ul,ol){list-style:none}a:not([class]){text-decoration-skip-ink:auto;text-decoration:none}:where(a[href],area,button,input,label[for],select,summary,textarea,[tabindex]:not([tabindex*="-"])){text-decoration:none;cursor:pointer;touch-action:manipulation}:where(input[type=file]){cursor:auto}:where(input[type=file])::-webkit-file-upload-button,:where(input[type=file])::file-selector-button{cursor:pointer}@media (prefers-reduced-motion:no-preference){html:focus-within{scroll-behavior:smooth}:focus-visible{transition:outline-offset 145ms cubic-bezier(.25, 0, .4, 1)}:where(:not(:active)):focus-visible{transition-duration:.25s}}:where(:not(:active)):focus-visible{outline-offset:5px}:where(button,button[type],input[type=button],input[type=submit],input[type=reset]),:where(input[type=file])::-webkit-file-upload-button,:where(input[type=file])::file-selector-button{-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;user-select:none;text-align:center}:where(button,button[type],input[type=button],input[type=submit],input[type=reset])[disabled]{cursor:not-allowed}

/* -----------------------------------------------------------
common
----------------------------------------------------------- */
html {
    font-size: 62.5%;
    font-size: 53.125%;
    height: 100%;
}

body {
	color: var(--darkblue);
	background: var(--white);
	font-size: 1.4rem;
    font-family: "Plus Jakarta Sans" , dnp-shuei-gothic-kin-std, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-style: normal;
	letter-spacing: 0;
    height: 100%;
    opacity: 0;
	transition: opacity .5s ease;
}
body.is_show {
    opacity: 1;
}
body.is_fixed {
    position: fixed;
    width: 100%;
}
body.is_fixed main{
    width: 100vw;
}
body:not(.is_fixed) main {
  width: auto;
    overflow-y: hidden;
}

a {
	color: var(--darkblue);
	transition: all .3s ease;
	cursor: pointer;
}

a:hover {
	color: var(--blue);
}

p,li {
	line-height: 1.5;
}

section {
	overflow: hidden;
}

ul,li {
	list-style: none;
}

.pc {
	display: block;
}

.sp {
	display: none;
}
.js_fade_in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.js_fade_in.is_visible {
    opacity: 1;
    transform: translateY(0);
}
.js_fade_in.deley1 { transition-delay: 0.5s; }
.js_fade_in.deley2 { transition-delay: 1s;   }
.js_fade_in.deley3 { transition-delay: 1.5s; }
.js_fade_in.deley4 { transition-delay: 2s;   }
.js_fade_in.deley5 { transition-delay: 2.5s; }
.js_fade_in.deley6 { transition-delay: 3s;   }

@media screen and (max-width: 1500px) and (min-width: 769px) {
	html {
		font-size: 0.85vw;
	}
    html.is_prevent_scroll {
        scroll-behavior: auto !important;
        overflow: hidden;
    }
}
@media only screen and (max-width: 768px) {
    html{
        font-size: 2.125vw;
        -webkit-overflow-scrolling: touch;
    }
	body {
		font-size: 1.65rem;
		overflow-x: hidden;
        width: 100%;
	}
	.pc {
		display: none !important;
	}

	.sp {
		display: block !important;
	}
}
/* -----------------------------------------------------------
haeder
----------------------------------------------------------- */
.ly_headerWrap{
    padding: 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}
.ly_header {
    width: 100%;
    border-radius: 0.6rem;
    display: flex;
    justify-content: space-between;
    align-content: center;
    padding: 1rem 2rem;
    min-height: 5rem;
    border: 1px solid rgba(255, 255, 255, 0);
    box-shadow: 0px 4px 24px 1px rgba(0, 0, 0, 0);
    background: radial-gradient(2490.74% 58.29% at 46.96% 20.79%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%);
    transition: all 0.5s ease-in;
}

.is_blur .ly_header {
    background: radial-gradient(2490.74% 58.29% at 46.96% 20.79%, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 4px 24px 1px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.ly_header_logoArea{
    flex-basis: 13rem;
    display: flex;
    align-items: center;
}
.ly_header_ttl{
    width: 100%;
}
.ly_header_ttl a{
    display: inline-block;
    width: 100%;
}
.ly_header_ttl a img{
    width: 100%;
}
.ly_header_navArea{
    display: flex;
    align-items: center;
}
.bl_header_nav{
    display: flex;
}
.bl_header_nav a{
    display: inline-block;
    font-weight: 600;
    font-size: 2.2rem;
    padding: 0.75rem 1.75rem;
}
.bl_header_nav a .en{
    display: none;
}
.ly_header_submenuArea{
    display: flex;
    align-items: center;
}
.bl_header_lang{
    display: flex;
    align-items: center;
    margin-right: 1.8rem;
}
.bl_header_lang a{
    display: inline-block;
    font-weight: 400;
    font-size: 1.6rem;
    padding: 0.5rem 1rem;
}
.bl_header_lang a.is_active{
    font-weight: 600;
}
.bl_contactBtn a{
    display: inline-block;
    font-size: 1.6rem;
    background: var(--blue);
    color: var(--white);
    position: relative;
    padding: 0.5833em 5.1667em 0.5833em 0.75em;
    border-radius: 1.5em;
}
.bl_contactBtn a:after{
    content: "";
    font-size: 2.6rem;
    background-image: url(/cmn/images/ico_arrow_r_white.svg);
    width: 1em;
    height: 1em;
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    right: 0.3em;
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
}
.bl_contactBtn a:hover{
    background: var(--darkblue);
}
.ly_header_spBtn{
    display: none;
}
.ly_spheader_submenu{
    display: none;
}

@media only screen and (max-width: 768px) {
    .ly_header {
        border-radius: 0;
    }
    .ly_headerWrap{
        padding: 0;
    }
    .ly_header_submenuArea{
        display: none;
    }
    .ly_spheader_submenu{
        display: block;
    }
    .ly_header_navArea{
        position: fixed;
        width: 100%;
        left: 0;
        top: 56px;
        background: var(--blue);
        height: calc(100vh - 56px);
        padding: 1.8rem;
        display: flex;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.6s ease;
        flex-direction: column;
        justify-content: space-around;
    }
    .ly_header_navArea.is_show{
        opacity: 1;
        visibility: visible;
    }
    .bl_header_nav{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .bl_header_nav li:not(:last-child) {
        margin-bottom: 2rem;
    }
    .bl_header_nav a {
        color: var(--white);
        font-size: 2rem;
        padding: 0.5rem 1rem;
        font-weight: 600;
    }
    .bl_header_nav a .en{
        color: var(--yellow);
        font-size: 1rem;
        display: block;
        text-align: center;
    }
    .ly_header_spBtn{
        display: flex;
        align-items: center;
    }
    .bl_menuBtn{
        display: inline-block;
        font-size: 1.2rem;
        background: var(--blue);
        color: var(--white);
        position: relative;
        padding: 0.5833em 5.1667em 0.5833em 0.75em;
        border-radius: 1.5em;
        min-width: 12rem;
        font-weight: 700;
    }
    .bl_menuBtn:after{
        content: "";
        font-size: 2rem;
        background-image: url(/cmn/images/ico_arrow_r_white.svg);
        width: 1em;
        height: 1em;
        background-size: contain;
        background-repeat: no-repeat;
        display: inline-block;
        right: 0.3em;
        top: 0;
        bottom: 0;
        margin: auto;
        position: absolute;
    }
    .el_header_desc{
        margin-top: 1.4rem;
        color: var(--yellow);
        font-size: 1rem;
        text-align: center;
    }
    .el_header_copy{
        margin-top: 1.6rem;
        color: var(--grey);
        font-size: 1rem;
        text-align: center;
    }
    .bl_spheader_lang{
        display: flex;
        justify-content: center;
        gap: 1rem;
    }
    .bl_spheader_lang a{
        display: inline-block;
        font-weight: 400;
        font-size: 1.4rem;
        box-shadow: 0px 0px 16px 1px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(5px);
        border-radius: 1.2rem;
        color: var(--white);
        min-width: 12rem;
        min-height: 2.4rem;
        text-align: center;
        border: 1px solid rgba(85, 92, 164, 0.5);
    }
    .bl_spheader_lang a.is_active{
        background: #555CA4;
        font-weight: 600;
    }
}
/* -----------------------------------------------------------
footer
----------------------------------------------------------- */
.blur{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.3);
    transition: backdrop-filter 0.3s ease-out;
    z-index: -1;
}
.overlay {
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 11;
    background: var(--white);
    transition: all .3s ease;
    opacity: 0;

}
.is_fixed .overlay {
	display: block;
	opacity: 0.5;
}
.is_fixed .blur{
	display: block;
}
.is_blur .blur{
	display: block;
}
.ly_footerWrap{
    padding: 33rem 2.2rem 0;
}
.ly_footer{
    width: 100%;
    background: var(--blue);
    border-radius: 2rem 2rem 0 0;
    padding: 0.8rem 2rem;
    text-align: center;
}
.ly_footer_logoArea{
    text-align: center;
    margin: 12.8rem 0 11rem;
}
.bl_footer_ttl a{
    display: inline-block;
    max-width: 15.3rem;
}
.el_footer_desc{
    margin-top: 1.4rem;
    color: var(--yellow);
    font-size: 1rem;
}
.ly_footer_copyArea{
    display: flex;
    justify-content: space-between;
}
.el_footer_copy{
    color: var(--grey);
    font-size: 1.6rem;
    font-weight: 400;
}
.ly_footer_copy_sp{
    display: none;
}
@media only screen and (max-width: 768px) {
    .ly_footerWrap{
        padding: 35rem 2rem 0;
    }
    .ly_footer{
        border-radius: 1.2rem 1.2rem 0 0;
        padding: 1.8rem 1.2rem;
    }
    .ly_footer_logoArea{
        margin: 10rem 0;
    }
    .bl_footer_ttl a{
        max-width: 12.7rem;
    }
    .el_footer_desc{
        margin-top: 1.4rem;
        font-size: 1rem;
    }
    .ly_footer_copyArea{
        justify-content: center;
    }
    .ly_footer_copy_l{
        display: none;
    }
    .ly_footer_copy_sp{
        display: block;
    }
    .el_footer_copy{
        color: var(--grey);
        font-size: 1.4rem;
    }
}

/* -----------------------------------------------------------
modal
----------------------------------------------------------- */
.modal_btn{
    display: inline-block;
    position: absolute;
    bottom: 4rem;
    right: 4rem;
    margin: auto;
    cursor: pointer;
    transition: opacity 0.3s ease-out;
    z-index: 2;
}
.modal_btn img{
    max-width: 7vw;
    margin: auto;
}
.modal_btn span{
    font-size: 1vw;
}
.modal_window{
    display: none;
    width: 60vw;
    aspect-ratio: 16 / 9;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 99;
}
.modal_window iframe{
    width: 100%;
    aspect-ratio: 16 / 9;
}
.movie_closebtn {
    display: block;
    position: absolute;
    top: -5rem;
    right: -5rem;
    margin: auto;
    width: 3rem;
    height: 3rem;
}
.movie_closebtn::before, .movie_closebtn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.15rem;
    height: 3rem;
    background: var(--blue);
}
.movie_closebtn::before {
    transform: translate(-50%,-50%) rotate(45deg);
}
.movie_closebtn::after {
    transform: translate(-50%,-50%) rotate(-45deg);
}
@media only screen and (max-width: 768px) {
    .modal_btn{
        left: 0;
        right: 0;
        bottom: 14rem;
        text-align: center;
        max-width: 50vw;
    }
    .modal_btn img{
        max-width: 25vw;
    }
    .modal_btn span{
        font-size: 4vw;
    }
    .modal_window{
        width: 90vw;
    }
    .movie_closebtn {
        right: 0;
    }
}

/* -----------------------------------------------------------
text
----------------------------------------------------------- */
.el_heading_section{
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
    text-align: center;
}
.el_heading_section .jp{
    color: var(--blue);
    font-size: 4rem;
    line-height: 1;
    font-family: dnp-shuei-gothic-kin-std, sans-serif;
    margin-bottom: 2rem;
}
.el_heading_section .en{
    color: var(--yellow);
    font-size: 2rem;
    line-height: 1;
}
.el_txt_section_desc{
    color: var(--darkblue);
    font-size: 2rem;
    line-height: 1.8;
    margin: auto;
    text-align: center;
}
.el_txt_section_desc_min{
    color: var(--darkblue);
    font-size: 1.8rem;
    line-height: 1.5;
    font-weight: 400;
    margin: auto;
    text-align: center;
}
.el_txt_section_desc_l{
    font-size: 2.4rem;
    max-width: 66rem;
    text-align: left;
}
.el_heading_3rd{
    color: var(--blue);
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1;
    font-family: dnp-shuei-gothic-kin-std, sans-serif;
    margin-bottom: 2rem;
    text-align: center;
}
.el_heading_3rd_sub{
    color: var(--darkblue);
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1;
    font-family: dnp-shuei-gothic-kin-std, sans-serif;
    text-align: center;
}
.el_heading_capabilitiers{
    position: relative;
    color: var(--yellow);
    font-size: 2.4rem;
    line-height: 1.1;
    display: flex;
    align-items: center;
}
.el_heading_capabilitiers:before{
    counter-increment: num_counter;
    content: counter(num_counter);
    color: var(--blue);
    font-family: "Plus Jakarta Sans";
    font-size: 5rem;
    line-height: 1;
    min-width: 0.8em;
}
.el_txt_capabilitiers{
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.5;
}
.el_heading_social{
    color: var(--white);
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 3rem;    
}
.el_txt_social{
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.4;
}
.el_txt_dep_prefecture{
    font-size: 2.4rem;
    color: var(--blue);
    margin-bottom: 0.3em;
}
.el_txt_dep_municipality{
    font-size: 1.6rem;
    color: var(--blue);
}
.el_txt_dep_num{
    font-size: 6.4rem;
    letter-spacing: -0.05em;
    color: var(--yellow);
    font-size: 700;
}
.el_txt_dep_ttl{
    font-size: 1.4rem;
    color: var(--blue);
}
.el_heading_utilization{
    color: var(--white);
    font-size: 1.4rem;
    line-height: 2;
}
.el_txt_utilization{
    color: var(--white);
    font-size: 1.4rem;
    line-height: 1.5;
}
.el_heading_aside{
    color: var(--blue);
    font-size: 2.35rem;
    line-height: 1.5;
}
@media only screen and (max-width: 768px) {
    .el_heading_section{
        margin-bottom: 4rem;
    }
    .el_heading_section .jp{
        font-size: 3.2rem;
        margin-bottom: 2rem;
    }
    .el_heading_section .en{
        font-size: 2rem;
    }
    .el_txt_section_desc{
        font-size: 1.8rem;
    }
    .el_txt_section_desc_min{
        font-size: 1.4rem;
    }
    .el_txt_section_desc_min.sp_l{
        text-align: left;
        max-width: 27rem;
    }
    .el_txt_section_desc_l{
        max-width: 100%;
        margin: 0 2rem;
    }
    .el_heading_3rd{
        font-size: 2.4rem;
    }
    .el_heading_3rd_sub{
        font-size: 1.6rem;
    }
    .el_heading_capabilitiers{
        font-size: 1.8rem;
        margin-bottom: 3rem;
    }
    .el_heading_capabilitiers:before{
        font-size: 4.6rem;
    }
    .el_txt_capabilitiers{
        font-size: 1.6rem;
    }
    .el_heading_social{
        font-size: 2rem;
    }
    .el_txt_social{
    }
    .el_txt_dep_prefecture{
        font-size: 2.4rem;
    }
    .el_txt_dep_municipality{
        font-size: 1.6rem;
    }
    .el_txt_dep_num{
        font-size: 3.6rem;
    }
    .el_txt_dep_ttl{
        font-size: 1.2rem;
    }
    .el_heading_utilization{
    }
    .el_txt_utilization{
    }
    .el_heading_aside{
        font-size: 1.6rem;
    }
}

/* -----------------------------------------------------------
section
----------------------------------------------------------- */
.video-container {
    position: fixed; /* 画面に固定 */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1; /* 他のコンテンツの背面に配置 */
    overflow: hidden;
    background: url(/cmn/images/bg_movie.webp);
}

/* 動画のサイズ調整 */
.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画面いっぱいにフィット */
}

.ly_mainVisualArea{
    min-height: 100vh;
    position: relative;
}
.ly_pcimageArea{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.ly_pcimageArea img{
    height: auto;
}
.ly_aboutArea{
    position: relative;
    z-index: 0;
    background: #EBEBEB;
    margin-top: 27vh;
    padding-top: 10rem;
    z-index: 1;
}
/*
.ly_aboutArea:before{
    position: absolute;
    content: "";
    top: -27vh;
    left: 0;
    right: 0;
    display: inline-block;
    width: 100%;
    height: 37vh;
    background-image: url(/cmn/images/bg_about_top.webp);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}
*/
.ly_about_ttlArea{
    position: relative;
    z-index: 0;
    margin-bottom: 16rem;
}
.ly_about_ttlArea:before{
    position: absolute;
    content: "";
    top: -10vh;
    left: 0;
    right: 0;
    display: inline-block;
    width: 100%;
    height: 30vh;
    background: linear-gradient(180deg, rgba(230, 228, 230, 0) 0%, var(--bg-grey) 43%);
    z-index: -1;
}
.ly_about_imgArea{
    width: 100%;
}
.ly_about_imgArea img{
    width: 100%;
}
.ly_about_lower{
    background: var(--bg-grey);
    max-width: 100rem;
    margin: auto;
    counter-reset: num_counter;
}
.ly_lower_ttlArea{
    margin-bottom: 8rem;
}
.bl_capabilities_box{
    display: flex;
    margin-bottom: 8rem;
    height: 28rem;
}
.bl_capabilities_box .bl_imgBox{
    flex: 1 1 50rem;
    border-radius: 2rem 0 0 2rem;
    overflow: hidden;
}
.bl_capabilities_box .bl_txtBox{
    flex: 1 1 46rem;
    margin-left: 4rem;
    border: 1px solid var(--border-black);
    border-radius: 0 2rem 2rem 0;
    position: relative;
    padding: 2rem 4rem 2rem 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.bl_capabilities_box .bl_txtBox:before{
    content: "";
    width: 2px;
    height: 100%;
    left: -1px;
    top: 0;
    position: absolute;
    background: var(--white);
    display: inline-block;
}
@media only screen and (max-width: 768px) {
    .ly_aboutArea {
        margin-top: 21vh;
    }
    .ly_aboutArea:before{
        top: -21vh;
        height: 31vh;
        background-size: contain;
    }
    .ly_lower_contArea{
        margin: 0 2rem;
    }
    .bl_capabilities_box{
        flex-direction: column;
        margin-bottom: 6rem;
        gap: 2rem;
        height: auto;
    }
    .bl_capabilities_box .bl_imgBox{
        flex: 1 1 auto;
        border-radius: 2rem 2rem 0 0;
    }
    .bl_capabilities_box .bl_txtBox{
        flex: 1 1 auto;
        margin-left: 0;
        border-radius: 0 0 2rem 2rem;
        position: relative;
        padding: 0 2rem 4rem;
    }
    .bl_capabilities_box .bl_txtBox:before{
        background-color: var(--bg-grey);
        width: 100%;
        height: 2px;
        left: 0;
        top: -1px;
    }    
}
.ly_movieArea{
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ly_future_movie{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    margin: auto;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.8s ease-out;
}
.ly_future_movie video{
    margin: auto;
}
.ly_futureArea{
    width: 100%;
    position: relative;
    z-index: 0;
    background: white;
    padding-bottom: 6rem;
    padding-top: 100vh;
    /*margin-top: 7vw;
    mask-image: url(/cmn/images/msk_future.svg);
    mask-repeat: no-repeat;
    mask-position: top center;
    mask-size: cover;
    mask-mode: alpha;

    -webkit-mask-image: url(/cmn/images/msk_future.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: top center;
    -webkit-mask-size: cover;
    -webkit-mask-mode: alpha;
    */
}
.ly_futureArea.is_fixed{
    position: fixed;
    bottom: 0;
    transform: translateY(100%);
}
.ly_future_ttlArea{
    max-width: 88rem;
    margin: auto;
    background: radial-gradient(2490.74% 58.29% at 46.96% 20.79%, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 4px 24px 1px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 1.2rem;
    padding: 8rem 11rem 64rem;
}
.ly_future_lower{
    display: flex;
    max-width: 100rem;
    justify-content: space-between;
    margin: auto;
    margin-top: -56rem;
    margin-bottom: 18rem;
    gap: 4rem;
}
.bl_social_box{
    background: #D9D9D9;
    border-radius: 2rem;
    filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.25));
    min-height: 49rem;
    height: 49rem;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
}
.bl_social_box:hover{
    opacity: 0.8;
}
.bl_social_box.uni_social_1{
    background-image: url("/cmn/images/bg_social_1.webp");
}
.bl_social_box.uni_social_2{
    background-image: url("/cmn/images/bg_social_2.webp");
}
.bl_social_box a{
}
.ly_social_mainArea{
    height: 100%;
    padding: 4rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.ly_social_mainArea:after{
    content: "";
    width: 100%;
    height: 70%;
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(360deg, rgba(42, 51, 141, 0.95) 0%, rgba(42, 51, 141, 0) 100%);
    z-index: -1;
}
.ly_social_moreArea{
    background: var(--blue);
    color: var(--white);
    padding: 0 4rem;
    display: flex;
    align-items: center;
    height: 6rem;
    position: relative;
    mask-image: linear-gradient(var(--blue), var(--blue)), url("/cmn/images/msk_link.svg");
    mask-repeat: no-repeat;
    -webkit-mask-position: center, calc(100% - 2rem) center;
    mask-position: center, calc(100% - 2rem) center;
    mask-size: 100% 100%, 12rem 2.5rem;
    mask-composite: exclude;
}
.ly_modal_social {
    display: none;
    position: fixed;
    top: 10rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: 120rem;
    height: auto;
    max-height: calc(100vh - 10rem - 2rem);
    background: white;
    z-index: 100;
    overflow: hidden;
    box-shadow: 0px 4px 24px 1px rgba(0, 0, 0, 0.1);
}
.ly_modal_social.is_show {
    display: flex;
    height: 80vh;
}
.ly_modal_social .bl_imgBox {
    flex: 0 0 50%;
    height: 100%;
    position: sticky;
    top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.ly_modal_social#modal_social_1 .bl_imgBox{
    background-image: url(/cmn/images/img_social_1.webp);
}
.ly_modal_social#modal_social_2 .bl_imgBox{
    background-image: url(/cmn/images/img_social_2.webp);
    background-size: contain;
}
.ly_modal_social .bl_txtBox {
    padding: 11rem 4rem;
}
.ly_modal_social .bl_txtBox .el_heading_3rd{
    margin-bottom: 11rem;
    line-height: 1.6;
    text-align: left;
}
.ly_modal_social .bl_txtBox .el_txt_section_desc{
    text-align: left;
    margin-bottom: 2rem;
}

@media only screen and (min-width: 767px) {
    .ly_modal_social .bl_txtBox {
        flex: 1;
        overflow-y: auto;
        max-height: 100%;
    }
    .ly_modal_social .bl_txtBox::-webkit-scrollbar {
        display: none;
    }
    .ly_modal_social .bl_txtBox {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

@media only screen and (max-width: 768px) {
    .ly_movieArea{
        min-height: 80vh;
    }
    .ly_future_movie{
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }
    .ly_future_movie img{
    }
    .ly_future_movie video{
        object-fit: cover;
        height: 100vh;
    }
    .ly_future_ttlArea{
        max-width: 100%;
        border-radius: 1.2rem;
        padding: 8rem 0;
        padding-bottom: calc(39rem + 39rem + 10rem + 8rem);
        margin: 0 2rem;
    }
    .ly_future_lower{
        flex-direction: column;
        max-width: 100%;
        margin-top: calc(-39rem - 39rem - 10rem);
    }
    .bl_social_box{
        min-height: 39rem;
        height: 39rem;
    }
    .bl_social_box a{
    }
    .ly_social_mainArea{
        padding: 4rem 2rem;
    }
    .ly_social_moreArea{
        padding: 0 2rem;
    }
    .ly_modal_social {
        flex-direction: column;
        overflow: auto;
    }
    .ly_modal_social .bl_ttlArea {
        padding: 10rem 2rem;
    }
    .ly_modal_social .bl_ttlArea .el_heading_3rd{
        margin-bottom: 0;
        line-height: 1.6;
    }
    .ly_modal_social .bl_txtBox {
        padding: 7rem 4rem;
    }
    .ly_modal_social .bl_imgBox {
        aspect-ratio: 1 / 1;
        width: 100%;
        min-height: auto;
        position: relative;
    }
    .ly_modal_social .bl_txtBox {
        height: auto;
    }
    .ly_modal_social .bl_txtBox .el_heading_3rd{
        margin-bottom: 11rem;
        line-height: 1.6;
        text-align: left;
    }
    .ly_modal_social .bl_txtBox .el_txt_section_desc{
        font-size: 1.4rem;
    }
}
.ly_deploymentArea{
    padding: 36rem 0;
    position: relative;
    z-index: 0;
    max-width: 100vw;
    overflow-x: hidden;
    background-image:url(/cmn/images/bg_deployment.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 1334 / 974;
}
@media screen and (max-width: 1500px) and (min-width: 769px) {
    .ly_deploymentArea{
        padding: 26rem 0;
        aspect-ratio: 1000 / 974;
        min-he  94vw;
    }
}
.ly_bg_deployment_inner{
    max-width: 77.6rem;
    width: 100%;
    height: auto;
    aspect-ratio: 776.22 / 875.61;
    position: relative;
}
.bg_deployment_box {
    position: absolute;
    width: 0.97rem;
    height: 0.97rem;
    background-color: white;
    opacity: 0;
    z-index: -1;
    animation: flash 1s infinite; /* 点滅のアニメーション */
}
@keyframes flash {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}
.bg_deployment svg{
    height: 100%;
    width: 77.6rem;
    stroke: none;
    margin: auto;
}
.bg_deployment_location {
    background-color: transparent;
    position: absolute;
    width: 5rem;
    height: 5rem;
    margin: auto;
}
.bg_deployment_location:before,
.bg_deployment_location:after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 50%;
}
.bg_deployment_location:before,.bg_deployment_location:after {
    content: "";
}
@keyframes ripples_blue {
    0% {
        width: 0;
        height: 0;
        border: 1px solid rgba(42, 51, 141, 0.8);
    }
    
    100% {
        width: 3.8rem;
        height: 3.8rem;
        border: 1px solid rgba(42, 51, 141, 0);
    }
}
@keyframes ripples_white {
    0% {
        width: 0;
        height: 0;
        background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0) 70.5%, #FFFFFF 100%);
    }
    
    100% {
        width: 5rem;
        height: 5rem;
        background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0) 70.5%, #FFFFFF 100%);
    }
}
.bg_deployment_location:before {
    animation: ripples_blue 2s infinite;
}
.bg_deployment_location:after {
    animation: ripples_white 2s infinite;
}
.bg_deployment_location:nth-child(1):before {
    animation-delay: 0.25s;
}
.bg_deployment_location:nth-child(1):after,
.bg_deployment_location:nth-child(2):before{
    animation-delay: 0.5s;
}
.bg_deployment_location:nth-child(2):after,
.bg_deployment_location:nth-child(3):before{
    animation-delay: 0.75s;
}
.bg_deployment_location:nth-child(3):after,
.bg_deployment_location:nth-child(4):before{
    animation-delay: 1s;
}
.bg_deployment_location:nth-child(4):after{
    animation-delay: 1.25s;
}
.loc_chiba{
    top: 10rem;
    right: 29rem;
    bottom: 0;
}
.loc_kanagwa{
    top: 12rem;
    right: 33rem;
    bottom: 0;
}
.loc_kumamoto{
    bottom: -36rem;
    left: -55rem;
    right: 0;
    top: 0;
}
.loc_fukui{
    bottom: -11rem;
    left: -18rem;
    right: 0;
    top: 0;
}
.loc_saitama{
    top: 4rem;
    right: 31rem;
    bottom: 0;
}
.ly_deployment_ttlArea{
    margin-bottom: 8rem;
}
.ly_deployment_ttlArea .el_txt_section_desc{
    text-align: center;
}
.ly_dep_list{
    margin-bottom: 8rem;
}
.bl_list_dep li{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
}
.bl_list_dep li:last-child{
    margin-bottom: 0;
}
.ly_dep_data{
    display: flex;
    justify-content: space-between;
    column-gap: 4rem;
    max-width: 116rem;
    margin: auto;
}
.bl_depdata_box{
    background: var(--white);
    box-shadow: 0px 0px 2rem rgba(42, 51, 141, 0.15);
    border-radius: 2rem;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc((100% - (4rem * 3)) / 4);
}
.bl_depdata_num{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 14rem;
}
.bl_depdata_ttl{
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #D9D9D9;
    min-height: 4rem;
}
.ly_utilizationArea{
    background: var(--white);
    padding-top: 30vh;
    position: relative;
    padding-bottom: 12rem;
    counter-reset: num_counter;
}
.ly_utilization_ttlArea{
    margin-bottom: 8rem;
}
.ly_utilization_lower{
    display: flex;
    border-radius: 2rem;
    overflow: hidden;
    gap: 2px;
    max-width: 116rem;
    margin: auto;
}
.bl_utilization_box{
    min-height: 50rem;
    background: var(--blue);
    padding: 3rem 4rem 8rem;
    flex: 1 1 33%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.ly_utilizationArea .ly_lower_contArea{
    max-width: 100rem;
    margin: auto;
}
.bl_ttlBox{
    text-align: center;
}
.bl_imgBox{
    min-height: 20rem;
}
.bl_txtBox{
    height: 100%;
}
.ly_contactArea{
    padding: 12rem 0 20rem;
    position: relative;
    z-index: 2;
}
.ly_contact_ttlArea{
    margin-bottom: 8rem;
}
.ly_contact_lower{
    margin: auto;
    text-align: center;
    max-width: 120rem;
}
@media only screen and (max-width: 768px) {
    .ly_deploymentArea{
        padding: 12rem 0;
        background-image:url(/cmn/images/bg_deployment_sp.webp);
        aspect-ratio: 390 / 918;
    }
    .ly_deployment_ttlArea{
    }
    .ly_deployment_ttlArea .el_txt_section_desc{
    }
    .ly_dep_list{
    }
    .bl_list_dep li{
    }
    .ly_dep_data{
        flex-wrap: wrap;
        gap: 1rem;
        max-width: 31rem;
        margin: auto;
    }
    .bl_depdata_box{
        min-width: 15rem;
        border-radius: 1rem;
    }
    .bl_depdata_num{
        min-height: 7rem;
    }
    .bl_depdata_ttl{
        min-height: 3rem;
    }
    .ly_utilizationArea{
        background: var(--bg-grey);
    }
    .ly_utilizationArea .ly_lower_contArea{
        margin: 0 2rem;
    }
    .ly_utilization_lower{
        flex-direction: column;
        border-radius: 1.2rem;
        gap: 1px;
        max-width: 100%;
        margin: 0 2rem;
    }
    .bl_utilization_box{
        min-height: 40rem;
        padding: 3rem 2rem 4rem;
        flex: 1 1 auto;
        flex-direction: column;
    }
    .bl_ttlBox{
    }
    .bl_imgBox{
    }
    .bl_txtBox{
    }
    .ly_contactArea{
    }
    .ly_contact_ttlArea{
        margin-bottom: 6rem;
    }
    .ly_contact_lower{
        margin: 0 2rem;
    }
}


.c-form {
	max-width: 40rem;
	margin: auto;
}
.c-form__item {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	margin-bottom: 1rem;
}
.c-form__label,
.c-form__input {
	padding: 1rem;
}
.c-form__input {
	width: 100%;
	font-size: 1.4rem;
	border-radius: 4px;
}
.c-form__input:focus-visible {
	outline: var(--yellow) auto 1px;
}
.c-form__input::placeholder {
    opacity: 0.3;
    color: #000;
}
.c-form__required {
	color: var(--white);
	background-color: var(--blue);
	border-radius: 4px;
	padding: 0.5rem 0.5rem;
	margin: 0 0 0 1.8rem;
}
textarea.c-form__input {
	height: 16rem;
}
.c-form__submit {
	text-align: center;
}
.c-form__submit button {
    width: 100%;
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--white);
	background-color: var(--blue);
	border: solid 1px var(--blue);
	border-radius: 4px;
	padding: 0.5rem 3.2rem;
	transition: 0.4s;
	cursor: pointer;
    min-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.c-form__submit button:hover {
	background-color: var(--darkblue);
}
.el_btn_sendmail{
    width: 100%;
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--white);
	background-color: var(--blue);
	border: solid 1px var(--blue);
	border-radius: 4px;
	padding: 0.5rem 3.2rem;
	transition: 0.4s;
	cursor: pointer;
    min-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 40rem;
    margin: auto;
    transition: all 0.2s;
}
.el_btn_sendmail:hover {
	background-color: var(--darkblue);
    color: var(--white);
}

.ly_asideArea{
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    max-width: 96rem;
    margin: auto;
}
.bl_aside_box{
    flex: 0 1 48rem;
    border-radius: 2rem;
    min-height: 30rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 4px 24px 1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.bl_aside_box a{
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}
.bl_aside_box a:hover{
    opacity: 0.8;
}
.ly_aside_mainArea{
    height: 100%;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
    backdrop-filter: blur(5px);
    background: radial-gradient(2490.74% 58.29% at 46.96% 20.79%, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.84) 100%);
}
.ly_aside_moreArea{
    background: radial-gradient(2490.74% 58.29% at 46.96% 20.79%, rgba(255, 255, 255, 0.8145) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(42, 51, 141, 0.1);
    color: var(--blue);
    font-size: 1.6rem;
    font-weight: 700;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    min-height: 8rem;
    position: relative;
    mask-image: linear-gradient(var(--blue), var(--blue)), url("/cmn/images/msk_link_2.svg");
    mask-repeat: no-repeat;
    -webkit-mask-position: center, calc(100% - 2rem) center;
    mask-position: center, calc(100% - 2rem) center;
    mask-size: 100% 100%, 4rem 4rem;
    mask-composite: exclude;
}
.bl_aside_box a:before{
    content: "";
    display: inline-block;
    width: 4rem;
    height: 4rem;
    background-image: url(/cmn/images/msk_link_2_arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    margin: auto;
    z-index: 1;
}
#archive .uni_aside_archive{
    display: none;
}
#top .uni_aside_top{
    display: none;
}
#news .uni_aside_news{
    display: none;
}

@media only screen and (max-width: 768px) {
    .c-form {
        max-width: 100%;
    }
    .c-form__item {
        margin-bottom: 1rem;
    }
    .el_btn_sendmail{
        max-width: 27rem;
    }

    .ly_asideArea{
        flex-direction: column;
        gap: 2rem;
        max-width: 100%;
        margin: 0 5rem;
    }
    .bl_aside_box{
        flex: 0 1 auto;
        border-radius: 1.2rem;
        min-height: 17.5rem;
        height: 17.5rem;
    }
    .bl_aside_box a:before {
        width: 2rem;
        height: 2rem;
        bottom: 1rem;
        right: 2rem;
    }
    .ly_aside_mainArea{
        padding: 2rem;
    }
    .ly_aside_moreArea{
        padding: 0 2rem;
        min-height: 4rem;
        -webkit-mask-position: center, calc(100% - 2rem) center;
        mask-position: center, calc(100% - 2rem) center;
        mask-size: 100% 100%, 2rem 2rem;
        mask-composite: exclude;
    }
}

/* ===========================================================================

secondary

=========================================================================== */
.ly_secondary{
    background: url(/cmn/images/bg_secondary.webp) no-repeat;
    background-size: cover;
}
.ly_secondary_outer{
    background: white;
    margin: 10rem 2rem;
}
.ly_secondary_inner{
    max-width: 104rem;
    margin: auto;
    padding: 10rem 2rem 5rem;
}
.ly_secondary_ttlArea{
    text-align: center;
    margin-bottom: 7rem;
}
.el_heading_secondary_main{
    font-size: 2.8rem;
    
}
.ly_secondary_contWrap{
    margin-bottom: 6rem;
}
.ly_secondary_cont_ttlArea{
    border-bottom: 1px solid var(--yellow);
    display: flex;
    justify-content: space-between;
    padding: 1.2rem 0;
}
.ly_secondary_cont_ttlArea > *{
    display: flex;
}
.ly_secondary_ttlArea_left > *:nth-child(n+2){
    margin-left: 1em;
}
.ly_secondary_ttlArea_right{
    margin-left: 2em;
}
.el_txt_date{
    color: var(--yellow);
    font-size: 1.2rem;
}
.el_txt_name{
    font-size: 1.1rem;
}
.ly_secondary_contArea{
    margin-top: 2.6rem;
}
.el_txt_secondary_normal{
    font-size: 1.4rem;
    line-height: 1.6;
}
.el_txt_secondary_note{
    color: #717385;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 0.5em;
}

@media only screen and (max-width: 768px) {
    .ly_secondary_ttlArea{
        margin-bottom: 8rem;
    }
    .ly_secondary_contWrap{
        margin-bottom: 8rem;
    }
    .el_heading_secondary_main {
        font-size: 2.4rem;
    }
    .ly_secondary_cont_ttlArea{
        padding: 0.8rem 0;
    }
    .ly_secondary_contArea{
        margin-top: 3.5rem;
    }
    .el_txt_secondary_normal{
        font-size: 1.4rem;
    }
    .el_txt_secondary_note{
        color: #717385;
        font-size: 1.1rem;
        line-height: 1.6;
        margin-top: 0.5em;
    }
}





