.main {
    display: inline;
}

.fadein {
    opacity : 0;
    transform : translate(0, 30px);
    transition : all 0.7s;
}
.fadein.active{
    opacity : 1;
    transform : translate(0, 0);
}
.fadein_st {
    opacity : 0;
    transition : all 2.5s;
    transition-delay: 0.5s;
}
.fadein_st.active{
    opacity : 1;
}

.firstview_pc {
    display: none;
}
.firstview_mb {
    display: inline;
}
.wave_theme-2 {
    background-color: var(--color1);
}
@media screen and (min-width: 940px) {
    .firstview_pc {
        display: block;
        padding-top: 50px;
    }
    .firstview_mb {
        display: none;
    }
    .search_mb {
        display: none;
    }
    .wave_theme-2 {
        background-color: #024364;
    }
}
.main_visual_pc {
    height: 100vh;
    max-height: 1000px;
    padding-bottom: 20px;
}
.main_visual_pc_img{
    height: 100%;
    max-height: 1000px;
}

/*====== 9-1-1 縦線が動いてスクロールを促す =======*/

/*スクロールダウン全体の場所*/
.scrolldown{
    /*描画位置※位置は適宜調整してください*/
	position: absolute;
	top: 80%;
    right: 30px;
    /*全体の高さ*/
    width: 30px;
}

/*Scrollテキストの描写*/
.scrolldown span{
    /*描画位置*/
	position: absolute;
	top: 50px;
	right: 0px;
    transform: rotate(-90deg);
    /*テキストの形状*/
	color: white;
	font-size: 15px;
}

/* 線の描写 */
.scrolldown::after{
	content: "";
    /*描画位置*/
	position: absolute;
	top: 0;
    right: 0;
    /*線の形状*/
	width: 1px;
	height: 80px;
	background: white;
    /*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 1.4s ease-in-out infinite;
	opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height: 70px;
		opacity: 1;
	}
	100%{
		height:0;
		top: 100px;
		opacity: 0;
	}
}

.main_visual_mb {
    width: 100%;
    padding-bottom: 20px;
    background-color: #024364;
}
.main_visual_mb img{
    vertical-align: top;
    width: 100%;
}

.section_title {
    position: relative;
    width: 100%;
    height: auto;
}
.title_ja {
    width: 100%;
    height: auto;
    padding-top: 50px;
    text-align: center;
    font-size: 24px;
}
.title_en {
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
}
.section_content {
    position: relative;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 50px;
}
.text_wh {
    color: white;
}
.text_bl {
    color: #324cac;
}

.firstview_pc {
    display: relative;
    width: 100%;
}
.pc_fv_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
}
.pc_fv_bg img{
    width: 100%;
    filter: blur(10px);
}

.inner_firstview_pc {
    position: relative;
    left: 50%;
    transform : translate(-50%, 0);
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1150px;
    background: linear-gradient(#324cac, #024364);
    /*border-left: 3px solid white;
    border-right: 3px solid white;*/
}
.search_pc {
    position: relative;
    width: 100%;
    height: auto;
    /*padding: 30px;*/
}
.inner_search_pc {
    position: relative;
    top: 50%;
    transform : translate(0, -50%);
}
.fv_theme_img {
    text-align: center;
    width: 100%;
}
.fv_theme_img img{
    width: 90%;
}


.search_mb {
    position: relative;
    width: 100%;
    background-color: var(--color1);
}
.wave_search {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50px;
    border-radius: 50%;
    transform : translate(0, -50%);
    background-color: var(--color1);
}
.search_links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 900px;
    padding-top: 30px;
    padding-bottom: 50px;
    left: 50%;
    transform : translate(-50%, 0);
}
.search_links_pc {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 900px;
    padding-top: 20px;
    padding-bottom: 50px;
    left: 50%;
    transform : translate(-50%, 0);
}
.search_link_button_pc {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: white;
    transition: 0.5s;
    box-shadow: 0px 20px 10px -6px rgba(0, 0, 0, 0.2);
    margin: 15px;
}
.search_link_button_pc:hover {
    transform: scale(1.1, 1.1);
}
.search_link_button_pc a{
    text-decoration: none;
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.search_links_text_pc {
    position: absolute;
    width: 120px;
    top: 15%;
    left: 50%;
    transform : translate(-50%,-50%);
    text-align: center;
    font-size: 12px;
}
.search_links_img_pc {
    position: absolute;
    width: 60px;
    height: 60px;
    display: block;
    top: 60%;
    left: 50%;
    transform : translate(-50%,-50%);
}

.search_link_button {
    position: relative;
    width: 30vw;
    max-width: 140px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: white;
    transition: 0.5s;
    box-shadow: 0px 20px 10px -6px rgba(0, 0, 0, 0.2);
    margin: 20px;
}
.search_link_button:hover {
    transform: scale(1.1, 1.1);
}
.search_link_button a{
    text-decoration: none;
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.search_links_text {
    position: absolute;
    width: 100%;
    top: 15%;
    left: 50%;
    transform : translate(-50%,-50%);
    text-align: center;
    font-size: 12px;
}
.search_links_img {
    position: absolute;
    width: 50%;
    aspect-ratio: 1 / 1;
    top: 60%;
    left: 50%;
    transform : translate(-50%,-50%);
}

.information {
    position: relative;
    width: 100%;
    height: 650px;
    background-color: var(--color2);
}
.information_content {
    position: relative;
    width: 80%;
    left: 50%;
    transform : translate(-50%, 0);
    text-align: center;
    font-size: 18px;
    color: white;
}
.information_content p{
    margin-top: 10px;
    margin-bottom: 20px;
}
.info_tex_b {
    font-size: 20px;
    font-weight: 700;
}
.info_tex_s {
    margin-top: 10px;
    font-size: 14px;
}

.info_link {
    color: white;
    text-decoration: underline;
}

.wave_theme-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 30px;
    border-radius: 50%;
    transform : translate(0, -40%);
    background-color: var(--color2);
}
.wave_theme-2 {
    position: absolute;
    top: 0;
    left: 35%;
    width: 30%;
    height: 20px;
    border-radius: 50%;
    transform : translate(0, -55%);
}
.wave_theme-3 {
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 30px;
    border-radius: 50%;
    transform : translate(0, -40%);
    background-color: var(--color2);
}

.wave_theme-4 {
    position: absolute;
    top: 0;
    left: 0;
    width: 51%;
    height: 50px;
    border-radius: 50%;
    transform : translate(0, -40%);
    background-color: var(--color3);
}
.wave_theme-5 {
    position: absolute;
    top: 0;
    right: 0;
    width: 51%;
    height: 50px;
    border-radius: 50%;
    transform : translate(0, -60%);
    background-color: var(--color2);
}

.theme {
    position: relative;
    width: 100%; 
    background-color: var(--color3);
}
.logo_container {
    display: block;
    padding-top: 30px;
    padding-bottom: 50px;
}
.theme_logo {
    position: relative;
    width: 100%;
    height: auto;
    max-width: 300px;
    padding-bottom: 30px;
    left: 50%;
    transform : translate(-50%, 0);
}
.theme_logo img {
    position: relative;
    width: 80%;
    height: auto;
    left: 50%;
    transform : translate(-50%, 0);
}
.theme_discription {
    position: relative;
    width: 60%;
    font-size: 16px;
    left: 50%;
    transform : translate(-50%, 0);
}
@media screen and (min-width: 774px) {
    .logo_container {
        display: flex;
        width: 100%;
        justify-content: center;
    }
    .theme_logo {
        position: static;
        width: 300px;
        min-width: 300px;
        height: 300px;
        padding-bottom: 0;
        transform : translate(0, 0);
    }
    .theme_discription {
        position: static;
        width: auto;
        max-width: 600px;
        height: 500px;
        transform : translate(0, 0);
    }
}
.wave_theme-6 {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    border-radius: 50%;
    transform : translate(0, 50%);
    background-color: var(--color3);
}


.links {
    position: relative;
    width: 100%;
    padding-bottom: 50px;
    background-color: black;
}
.sns_links_container {
    display: flex;
    width: 100%;
    justify-content: center;
}
.sns_link_element {
    width: 30%;
    max-width: 180px;
    height: auto;
}
.sns_link_element img {
    position: relative;
    width: 40%;
    height: auto;
    top: 50%;
    left: 50%;
    transform : translate(-50%, -50%);
}
.sns_link_element p {
    text-align: center;
    color: white;
    font-size: 16px;
    margin: 0;
}

/*ポップアップウィンドウ*/
.open {
	cursor:pointer; 
}
#popup {
	display: none;
}
.overlay {
	display: none;
}
#popup:checked + .overlay {
	display: block;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}
.window {
	width: 90vw;
	max-width: 380px;
	height: 200px;
	background-color: #7fff7f;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.text {
	font-size: 25px;
	margin: 0;
	color: #fcfff9;
}
.close {
	cursor:pointer;
	position: absolute;
	top: 8px;
	right: 8px;
	font-size: 20px;
}

/*ポップアップウィンドウ*/
body.open_popup {
    overflow: hidden;
}

.bg_onetime_popup {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

body.open_popup .bg_onetime_popup {
    opacity: 1;
    visibility: visible;
}

.onetime_popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 50vw;
    min-width: 290px;
    background-color: #fff;
}

.onetime_popup_title {
    position: relative;
    padding: 1em 80px;
    margin: 0px;
    background-color: #3388dd;
    color: #fff;
    font-size: 32px;
    text-align: center;
    line-height: 1.5;
}

.onetime_popup_title_close {
    position: absolute;
    top: 50%;
    right: 30px;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
    cursor: pointer;
}
.onetime_popup_title_close::before,
.onetime_popup_title_close::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    height: 4px;
    background-color: #fff;
    content: "";
}
.onetime_popup_title_close::before {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.onetime_popup_title_close::after {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.onetime_popup_content {
    padding: 60px 30px;
    text-align: center;
}

.popup_text {
    font-size: 20px;
    font-weight: 900;
}
.popup_important {
    color: red;
}
.popup_link {
    font-size: 20px;
    font-weight: 900;
    text-decoration: underline;
    color: blue;
}
.popup_pay_fail {
    text-decoration: underline;
    font-size: 30px;
}