@charset "UTF-8";
/*---------------------------------
  setting
---------------------------------*/
.main {
    margin-bottom: 60px;
}

@media (min-width: 641px) {
    .main {
        min-width: 1200px;
        margin: 0 auto 60px;
    } 
}

.inner {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1560px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.wrap {
    max-width: 1080px;
    margin: 0 auto;
}

.block {
    max-width: 900px;
    margin: 0 auto;
}

.content {
    max-width: 800px;
    margin: 0 auto;
}

.sec {
    margin-top: 60px;
}

.sp {
    display: block;
}

.tab {
    display: none;
}

.textC{
	text-align: center;
}

@media (min-width: 641px) {
    .sec {
        margin-top: 80px;
    }

    .sp {
        display: none;
    }

    .tab {
        display: block;
    }
}

/*---------------------------------
  module
---------------------------------*/
/* bg
=================================*/
.bg {
    background-color: #F2EFE6;
    position: relative;
    padding: 60px 0;
}

.bg::before,
.bg::after {
    content: "";
    position: absolute;
    width: 344px;
    height: 344px;
}


@media (min-width: 641px) {
    .bg {
        padding: 80px 0;
    }
    
    .bg::before,
    .bg::after {
        /* width: 580px;
        height: 580px; */
        width: 480px;
        height: 480px;
    }

}


/* btn
=================================*/
.btn_01 {
    display: flex;
    background-color: #FE4D28;
    color: #fff !important;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    width: 100%;
    border: 1px solid transparent;
    transition: .2s;
}

.btn_01 > .text {
    position: relative;
    font-size: 1.3rem;
    font-weight: 500;
    padding-right: 20px;
}

.btn_01 > .text::after {
    content: "";
    width: 8px;
    height: 15px;
    background: url("../images/btn_arrow_down.png") no-repeat left top /cover;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: .2s;
}

.btn_01:hover {
    border: 1px solid #FE4D28;
    color: #FE4D28 !important;
    background-color: #fff;
    text-decoration: none;
    opacity: 1;
}

.btn_01:hover > .text::after{
    background: url("../images/btn_arrow_down_hover.png") no-repeat left top /cover;
    margin-top: 3px;
}

.btn_02 {
    background-color: #122B88;
    color: #fff !important;
    display: flex;
    justify-content: center;
    padding: 15px;
    border: 1px solid transparent;
    transition: .2s;
}

.btn_02 > .text {
    padding-bottom: 24px;
    position: relative;
}

.btn_02 > .text {
    font-size: 16px;
    font-weight: 500;
}

.btn_02 > .text::before  {
    display: inline-block;
    content: "\f019";
    font-family: "FontAwesome";
    color: #fff;
	margin-right: 10px;
}

.btn_02:hover {
    background-color: #fff;
    border: 1px solid #183B98;
    color: #183B98 !important;
    text-decoration: none;
}

.btn_02:hover > .text::before  {
    display: inline-block;
    content: "\f019";
    font-family: "FontAwesome";
    color: #183B98;
	margin-right: 10px;
}

.btn_03 {
    background-color: #AE72D1;
    color: #fff !important;
    display: flex;
    padding: 15px;
    border: 1px solid transparent;
    transition: .2s;
}

.btn_03 > .text {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
}

.btn_03 > .text::after {
    content: "";
    width: 16px;
    height: 9px;
    background: url("../images/btn_arrow_right.png") no-repeat left top /cover;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: .2s;
}

.btn_03:hover {
    background-color: #fff;
    border: 1px solid #AE72D1;
    color: #AE72D1 !important;
    text-decoration: none;
}

.btn_03:hover > .text::after {
    background: url("../images/btn_arrow_right_hover_purple.png") no-repeat left top /cover;
    right: -3px;
}

.btn_04 {
    color: #fff !important;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border: 1px solid transparent;
    transition: .2s;
}

.btn_04 > .text {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    padding: 70px 0 15px;
    text-align: center;
}

.btn_04 > .text::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
}

.btn_04 > .text::after {
    content: "";
    width: 16px;
    height: 9px;
    background: url("../images/btn_arrow_right.png") no-repeat left top /cover;
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: 0;
    transition: .2s;
}

.btn_04._purple {
    background-color: #AE72D1;
}
.btn_04._blue {
    background-color: #122B88;
}

.btn_04._purple > .text::before {
    width: 72px;
    height: 53px;
    background: url("../images/btn_icon_campaign.png") no-repeat left top /cover;

}

.btn_04._blue > .text::before {
    width: 41px;
    height: 52px;
    background: url("../images/btn_icon_detail.png") no-repeat left top /cover;
}

.btn_04:hover {
    background-color: #fff;
    text-decoration: none;
}

.btn_04._purple:hover {
    border: 1px solid #AE72D1;
    color: #AE72D1 !important;
}

.btn_04._blue:hover {
    border: 1px solid #122B88;
    color: #122B88 !important;
}

.btn_04:hover > .text::after {
    right: -3px;
}

.btn_04._purple:hover > .text::before {
    background: url("../images/btn_icon_campaign_hover.png") no-repeat left top /cover;
}

.btn_04._blue:hover > .text::before {
    background: url("../images/btn_icon_detail_hover.png") no-repeat left top /cover;
}

.btn_04._purple:hover > .text::after {
    background: url("../images/btn_arrow_right_hover_purple.png") no-repeat left top /cover;
}

.btn_04._blue:hover > .text::after {
    background: url("../images/btn_arrow_right_hover_blue.png") no-repeat left top /cover;
}

@media (min-width: 641px) {
    .btn_01 {
        height: 48px;
    }
    
    .btn_01 > .text {
        font-size: 1.6rem;
    }

    .btn_04 {
        padding: 30px;
        height: 100%;
    }
    
    .btn_04 > .text {
        font-size: 22px;
    }
}

/* hdg
=================================*/
.hdg_lv2_01 {
    text-align: center;
    position: relative;
    padding-bottom: 10px;
    padding-top: 40px;
}

.hdg_lv2_01::after {
    content: "";
    width: 230px;
    height: 1px;
    background-color: #3EA8DD;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
}

.hdg_lv2_01 > img {
    width: 80px;
    margin: 0 auto;
}

.hdg_lv2_01 > .hdg {
    font-size: 24px;
    line-height: 1.33;
    margin-top: 10px;
}

.hdg_lv3_01 {
    font-size: 20px;
    padding-left: 45px;
    position: relative;
    margin-bottom: 0;
}

.hdg_lv3_01::before,
.hdg_lv3_01::after {
    content: "";
    position: absolute;
}

.hdg_lv3_01::before {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 5px solid #3EA8DD;
    left: 0;
    top: 4px;
}

.hdg_lv3_01::after {
    width: 18px;
    height: 2px;
    background-color: #3EA8DD;
    left: 20px;
    top: 13px;
}

.hdg_lv4_01 {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 0 !important;
}

.hdg_lv4_01 > .hdg_main {
    font-size: 20px;
    margin-bottom: 0;
    font-weight: bold;
}

.hdg_lv4_01 > .hdg_sub > .tag {
    background-color: #3EA8DD;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 0 5px;
}

@media (min-width: 641px) {
    .hdg_lv2_01 {
        padding-bottom: 23px;
    }
    
    .hdg_lv2_01::after {
        height: 2px;
    }
    
    .hdg_lv2_01 > img {
        width: 102px;
    }
    
    .hdg_lv2_01 > .hdg {
        font-size: 30px;
    }

    .hdg_lv3_01 {
        font-size: 30px;
    }
    
    .hdg_lv3_01::before {
        top: 11px;
    }
    
    .hdg_lv3_01::after {
        top: 20px;
    }

    .hdg_lv4_01 {
        flex-direction: row;
        align-items: center;
    }
    
    .hdg_lv4_01 > .hdg_main {
        font-size: 24px;
        margin: 0;
    }
    
    .hdg_lv4_01 > .hdg_sub > .tag {
        font-size: 17px;
        padding: 0 10px;
    }
}

/* text
=================================*/
.sec_text {
    line-height: 2;
    margin-bottom: 0;
    margin-top: 20px;
}

.sec_text._small {
    font-size: 12px;
    text-align: center;
}

.sec_note {
    margin-top: 20px;
    font-size: 14px;
}

@media (min-width: 641px) {
    .sec_text {
        margin-top: 40px;
    }
}

/* animation
=================================*/
.bg-wrap {
    overflow: hidden;
    opacity: 0;
}

.bg_wrap .in {
    opacity: 0;
    transform: matrix(1, 0, 0, 1, 0, 100);
    transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.is-animated .bg_wrap {
    opacity: 1;
}

.is-animated .bg_wrap .in {
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0);
}

/*---------------------------------
  header
---------------------------------*/
/* header
=================================*/
.fh_header {
    position: sticky;
    top: 0;
}


@media (min-width: 641px) {
    .fh_header {
        overflow: hidden;
    }

    .header_mainNav {
        height: 68px;
    }

    .fh_header .header_container {
        width: 1080px;
    }
}

.gnav {
    display: flex;
    flex-direction: column;
    background-color: #3EA8DD;
    padding-left: 0;
    position: relative;
}

.gnav._en {
    line-height: 1.2;
}

.gnav > li > a:link,
.gnav > li > a:visited {
    color: #fff;
}

.gnav > li > a {
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    font-weight: bold;

}

.gnav > li > a:hover {
    background-color: #fff;
    color: #3EA8DD;
    opacity: 1;
}



/* 英語サイトのみ */
.gnav._en > li:nth-of-type(6) > a {
    background-color: #122B88;
}

.gnav._en > li:nth-of-type(6) > a:hover {
    background-color: #fff;
    color: #122B88;
}

.gnav._en > li:nth-of-type(5) > a {
    background-color: #AE72D1;
}

.gnav._en > li:nth-of-type(5) > a:hover {
    background-color: #fff;
    color: #AE72D1;
}




@media (min-width: 641px) {
    .gnav {
        flex-direction: row;
        justify-content: center;
        height: 60px;
    }

    .gnav::before,
    .gnav::after {
        content: "";
        height: 100%;
        background-color: #3EA8DD;
        position: absolute;
        width: 100%;
    }

    .gnav::before {
        left: 100%;
    }

    .gnav::after {
        right: 100%;
    }

    .gnav > li > a {
        height: 60px;
        width: 150px;
    }
}

/*---------------------------------
  main
---------------------------------*/
/* mv
=================================*/
.mv {
    background: linear-gradient(to right, rgba(203,203,203,0.4) 0%,rgba(255,255,255,0.7) 50%,rgba(255,255,255,1) 100%);
    padding-bottom: 20px;
    position: relative;
}

.mv::before {
    content: "";
}

.mv_col2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mv_img {
    margin-right: -30px;
}

.mv_hdg {
    font-size: 26px;
    margin-bottom: 0;
}

.mv_hdg > .large {
    display: block;
    font-size: 45px;
    font-weight: bold;
}

.mv_hdg > .large > .trade {
    font-size: 30px;
    vertical-align: top;
}


.mv_text_area {
    margin-top: 8px;
    display: flex;
    gap: 7px;
}

.mv_text_icon {
    flex: 0 0 73px;
}

.mv_text {
    font-size: 14px;
    line-height: 2;
}

.btn-area{
	display: block;
	margin:20px auto 20px;
}

	.btn1{
		background: #AE72D1;
		width: 100%;
		display: flex;
		justify-content: center;
		padding: 2%;
		text-align: center;
		color:#fff!important;
		margin-bottom: 10px;
	}

	.btn1::before {
    display: inline-block;
    margin-right: 10px;
    content: "\f0e0";
    font-family: "FontAwesome";
    color: #fff!important;
}
	
	.btn2{
		background:#122B88;
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 2%;
		text-align: center;
		color:#fff!important;
	}


	.btn2::before {
    display: inline-block;
	margin-right: 20px;
    content: "\f019";
    font-family: "FontAwesome";
    color: #fff;
	}
	

@media (min-width: 641px) {
    .mv {
        padding-bottom: 0;
        padding: 90px 0 30px;
        display: flex;
        align-items: center;
    }
    
    .mv::before {
        width: 55.37%;
        width: 52%;
        height: 100%;
        background: url("../images/mv_img.png") no-repeat left top /cover;
        position: absolute;
        right: 0;
        top: 0;
        max-width: 886px;
    }

    .mv._en::before {
        background: url("../images/mv_img_en.png") no-repeat left top /cover;
    }

    .mv > .inner {
        position: relative;
        z-index: 1;
    }

    .mv_img {
        display: none;
    }
    
    .mv_content {
        width: 50%;
        max-width: 585px;
    }
    .mv_hdg {
        font-size: 48px;
        font-size: 3.2vw;
        font-size: min(3.2vw, 48px);
    }
    
    .mv_hdg > .large {
        font-size: 76px;
        font-size: 5.066666666666666vw;
        font-size: min(5.066666666666666vw, 76px);
    }

    .mv_hdg > .large > .trade {
        font-size: inherit;
    }

    .mv_text_area {
        gap: 20px;
        align-items: center;
    }

    .mv_text_icon {
        flex: 0 0 121px;
    }
    
    .mv_text {
        font-size: 17px;
    }
	
	
	.btn-area{
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin:50px 0;
	}
	
	.btn-area a{
		display: flex;
		align-items: center;
		justify-content: center;
		width: 45%;
		padding: 0 5%;
		height: 100px;
		text-align: center;
	    color:#fff;
		text-decoration: none;
		font-size: 1.2em;
	}
	
	.btn1{
		margin-bottom: 0;
	}
	

}

/* @media (min-width: 980px) {
    .mv_hdg > .large {
        font-size: 92px;
    }
} */

/* top_bnr
=================================*/
.top_bnr {
    margin-top: 40px;
}

.top_bnr_img {
    text-align: center;
}

.top_bnr_text {
    text-align: center;
    color: 1.8rem;
    letter-spacing: .2em;
    color: #122B88;
    margin-bottom: 10px;
    font-weight: 500;
}
.top_bnr_main {
    background-color: #122B88;
    border-radius: 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.top_bnr_main::before,
.top_bnr_main::after {
    content: "";
    position: absolute;
}

.top_bnr_main::before {
    width: 120px;
    height: 198px;
    top: -65px;
    left: 0;
    background: url("../images/mv_bnr_left_sp.png") no-repeat left top /cover;
}

.top_bnr_main::after {
    width: 116px;
    height: 135px;
    bottom: -35px;
    right: 0;
    background: url("../images/mv_bnr_right_sp.png") no-repeat left top /cover;
}

.top_bnr_main_inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 10px 15px;
}

.top_bnr_main_text {
    text-align: center;
    line-height: 1.3;
    margin-bottom: 0;
}

.top_bnr_main_text > img {
    width: 150px;
    display: block;
    margin: 0 auto;
}

.top_bnr_main_text > span {
    font-weight: 900;
}

.top_bnr_main_text > .mid {
    font-size: 17px;
}

.top_bnr_main_text > .large {
    font-size: 22px;
}

.top_bnr_main_text > .small {
    font-size: 13px;
    margin-left: -22px;
}

.top_bnr_main_text > .border_text {
    border: 1px solid #fff;
    margin-left: 4px;
    font-size: 17px;
    padding: 2px 15px;
    display: inline-block;
}

.top_bnr_main_text > .large2 {
    text-align: center;
    font-size: 28px;
    display: block;
    line-height: 1;
}

.top_bnr_main_text > .large3 {
    text-align: center;
    font-size: 102px;
    display: block;
    line-height: 1;
}

.top_bnr_main_text > .mid2 {
    text-align: center;
    font-size: 26px;
    display: block;
}

.top_bnr_main_btn {
    width: 180px;
}

@media (min-width: 641px) {
    .top_bnr {
        margin-top: 80px;
    }

    .top_bnr_main::before {
        width: 488px;
        height: 260px;
        top: -47px;
        background: url("../images/mv_bnr_left_pc.png") no-repeat left top /cover;
    }
    
    .top_bnr_main::after {
        width: 455px;
        height: 260px;
        bottom: -46px;
        background: url("../images/mv_bnr_right_pc.png") no-repeat left top /cover;
    }
    
    .top_bnr_main_inner {
        flex-direction: row;
        padding: 10px 10px 15px;
        height: 170px;
    }
    
    .top_bnr_main_text {
        text-align: left;
    }
    
    .top_bnr_main_text._en {
        line-height: 1.2;
    }

    .top_bnr_main_text._pc-flex {
        display: flex;
    }

    .top_bnr_main_text > img {
        width: 198px;
    }
    
    .top_bnr_main_text > .mid {
        font-size: 20px;
    }
    
    .top_bnr_main_text > .large {
        font-size: 33px;
    }
    
    .top_bnr_main_text > .small {
        font-size: 15px;
        margin-left: 0;
    }
    
    .top_bnr_main_text > .large2 {
        font-size: 32px;
    }

    .top_bnr_main_text > .large3 {
        font-size: 139px;
    }

    .top_bnr_main_text > .mid2 {
        font-size: 32px;
        align-self: flex-end;
        text-align: left;
    }

    .top_bnr_main_btn {
        width: 206px;
    }    
}

/* top_bnr
=================================*/
.top_bnr {
    margin-top: 40px;
}

.top_bnr_img {
    text-align: center;
}

.top_bnr_text {
    text-align: center;
    color: 1.8rem;
    letter-spacing: .2em;
    color: #122B88;
    margin-bottom: 10px;
    font-weight: 500;
}
.top_bnr_main {
    background-color: #122B88;
    border-radius: 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.top_bnr_main::before,
.top_bnr_main::after {
    content: "";
    position: absolute;
}

.top_bnr_main::before {
    width: 120px;
    height: 198px;
    top: -65px;
    left: 0;
    background: url(../images/mv_bnr_left_sp.png) no-repeat left top /cover;
}

.top_bnr_main::after {
    width: 116px;
    height: 135px;
    bottom: -35px;
    right: 0;
    background: url(../images/mv_bnr_right_sp.png) no-repeat left top /cover;
}

.top_bnr_main_inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 10px 15px;
}

.top_bnr_main_text {
    text-align: center;
    line-height: 1.3;
    margin-bottom: 0;
}

.top_bnr_main_text > img {
    width: 150px;
    display: block;
    margin: 0 auto;
}

.top_bnr_main_text > span {
    font-weight: 900;
}

.top_bnr_main_text > .mid {
    font-size: 17px;
}

.top_bnr_main_text > .large {
    font-size: 22px;
}

.top_bnr_main_text > .small {
    font-size: 13px;
    margin-left: -22px;
}

.top_bnr_main_text > .border_text {
    border: 1px solid #fff;
    margin-left: 4px;
    font-size: 17px;
    padding: 2px 15px;
    display: inline-block;
}

.top_bnr_main_text > .large2 {
    text-align: center;
    font-size: 28px;
    display: block;
    line-height: 1;
}

.top_bnr_main_text > .large3 {
    text-align: center;
    font-size: 102px;
    display: block;
    line-height: 1;
}

.top_bnr_main_text > .mid2 {
    text-align: center;
    font-size: 26px;
    display: block;
}

.top_bnr_main_btn {
    width: 180px;
}

@media (min-width: 641px) {
    .top_bnr {
        margin-top: 80px;
    }

    .top_bnr_main::before {
        width: 488px;
        height: 260px;
        top: -47px;
        background: url(../images/mv_bnr_left_pc.png) no-repeat left top /cover;
    }
    
    .top_bnr_main::after {
        width: 455px;
        height: 260px;
        bottom: -46px;
        background: url(../images/mv_bnr_right_pc.png) no-repeat left top /cover;
    }
    
    .top_bnr_main_inner {
        flex-direction: row;
        padding: 10px 10px 15px;
        height: 170px;
    }
    
    .top_bnr_main_text {
        text-align: left;
    }
    
    .top_bnr_main_text._en {
        line-height: 1.2;
    }

    .top_bnr_main_text._pc-flex {
        display: flex;
    }

    .top_bnr_main_text > img {
        width: 198px;
    }
    
    .top_bnr_main_text > .mid {
        font-size: 20px;
    }
    
    .top_bnr_main_text > .large {
        font-size: 33px;
    }
    
    .top_bnr_main_text > .small {
        font-size: 15px;
        margin-left: 0;
    }
    
    .top_bnr_main_text > .large2 {
        font-size: 32px;
    }

    .top_bnr_main_text > .large3 {
        font-size: 139px;
    }

    .top_bnr_main_text > .mid2 {
        font-size: 32px;
        align-self: flex-end;
        text-align: left;
    }

    .top_bnr_main_btn {
        width: 206px;
    }    
}


/* lineup
=================================*/
.sec_wrap {
    margin-top: 40px;
}

.sec_wrap_item {
    margin-top: 60px;
}

.sec_wrap_item:first-child {
    margin-top: 0;
}

.card_02 {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 0;
    margin-top: 30px !important;
}

.card_02 > li {
    width: calc(50% - 4px);
    padding: 12px;
    background-color: rgba(242, 239, 230, .5);
}

.card_02 > li.text {
    background: none;
    padding: 0;
    font-size: 20px;
    align-self: flex-end;
}

.card_02_item {
    background-color: #F2EFE6;
    padding: 7px;
    text-align: center;
    font-size: 13px;
}

.card_02_item_image {
    width: 59px;
    margin: 10px auto 0;
}

.lineup_col2 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 60px !important;
}

.lineup_col2:first-of-type {
    margin-top: 20px !important;
}

.lineup_image {
    width: 45.7%;
    margin: 0 auto;
}

.lineup_desc_01 {
    margin-bottom: 0;
    margin-top: 10px !important;
}

.lineup_desc_01 > div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lineup_desc_01 > div > dt {
    min-width: 60px;
    font-weight: 400;
    font-size: 12px;
    border: 1px solid #3E3D3D;
    padding: 0 4px;
    text-align: center;
    margin: 0;    
}

.lineup_desc_02 {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
}

.lineup_desc_02 > div > dt {
    position: relative;
    margin-bottom: 0;
    line-height: 2;
}

.lineup_desc_02 > div > dt::before {
    content: "⚫︎";
}

.lineup_desc_02 > div > dd {
    line-height: 2;
}

.lineup_list {
    padding: 0;
}

.lineup_list > li {
    position: relative;
    padding-left: 1em;
}

.lineup_list > li::before {
    content: "・";
    color: #3EA8DD;
    width: 1em;
    position: absolute;
    left: 0;
    top: 0;
}

table.blue{
	width: 700px;
	margin: 20px auto 50px;
	/*white-space: nowrap;*/
}

table.blue td{
	border:1px solid #aeb3d5;
	padding: 1%;
	font-size:1em;
	overflow-wrap: break-word;

}

table.blue th{
	background: #c0daef;
	border-bottom: 1px solid #fff;
	border-right: 1px solid #fff;
		padding: 1%;
}



table.blue td.blb {
    background: #e9f3fb;
}

.table-scroll {
  overflow-x: scroll;
}



.dl-btn{
	display: block;
	margin: 30px 0 50px!important;
}

.dl-btn a{
	width: 100%;
	margin-bottom: 10px;
}


@media (min-width: 641px) {        
    .sec_wrap {
        margin-top: 60px;
    }
        
    .card_02 {
        gap: 27px;
    
    }
    
    .card_02 > li {
        width: calc(25% - 21px);
        padding: 20px;
        display: flex;
    }
    
    .card_02_item {
        padding: 20px;
        font-size: 16px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex: 1;
    }
    
    .card_02_item_image {
        width: 100px;
    }

    .lineup_col2 {
        flex-direction:row;
        gap: 30px;
        margin-top: 30px !important;
    }
    
    .lineup_image {
        flex: 0 0 29.62%;
    }
    
    .lineup_content {
        flex: 1;
    }
    
    .lineup_desc_02 {
        margin-top: 20px;
    }
	
	.lineup_desc_02 p{
		margin: 80px 0;
	}
	
	.dl-btn{
	display: flex;
	justify-content: space-between;
	margin: 50px 0!important;
	}

.dl-btn a{
	display: block;
	width: 30%;
	text-align: center;
	line-height: 5;
	}
	
	.table-scroll {
	  overflow-x:hidden;
	}
	
	table.blue{
		width: 100%;
	}
	
	table.blue td{
	border:1px solid #aeb3d5;
	padding: 1%;
	font-size: 1em;
	word-break: keep-all;

	}
	
}


/* about
=================================*/
.sec01_wrap {
    display: flex;
    flex-direction: column;
}

.sec01_content {
    background-color: rgba(255, 255, 255, 0.9);
    margin: -45px 10px 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
    padding: 30px 20px;
    position: relative;
    z-index: 1;
}

.hdg_item {
    text-align: center;
}

.hdg_item > .in > img {
    width: 222px;
}

.hdg_item > .in > .hdg {
    font-size: 20px;
    margin-top: 38px;
    line-height: 1.6;
}

.hdg_item + .sec_text {
    margin-top: 20px;
}

.complain {
    margin: 80px auto 0;
    max-width: 980px;
}

.complain_hdg {
    text-align: center;
    font-size: 24px;
    color: #3EA8DD;
}

.complain_hdg > .color {
    font-weight: bold;
    color: #3E3D3D;
}

.card_01 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 40px 0 0;
}

.card_01 > li {
    padding: 20px;
    background-color: rgba(242, 239, 230, .5);
}

.card_01_item {
    background-color: #F2EFE6;
    padding: 7px;
    text-align: center;
    font-size: 16px;
}

.ytb{
	margin:80px auto;
}

.ytb-box{
	margin-top: 30px!important;
	aspect-ratio: 16 / 9;
}

.ytb-box iframe{
	width: 100%;
  height: 100%;
}

@media (min-width: 641px) {    
    .sec01_wrap {
		margin-top: 60px;
        flex-direction: row;
    }
    
    .sec01_image {
        flex: 0 0 55.4%;
        max-width: 820px;
    }
    .sec01_content {
        margin: 80px 0 0 -160px;
        box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
        padding: 40px 50px 50px;
        max-width: 820px;
    }
    
    .hdg_item > .in > img {
        width: 336px;
    }
    
    .hdg_item > .in > .hdg {
        font-size: 24px;
        margin-top: 50px;
        line-height: 1.6;
    }

    .card_01 {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .card_01 > li {
        width: calc(33.33% - 11px);
        display: flex;
    }

    .card_01_item {
        padding: 20px;
        font-size: 19px;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Characteristics
=================================*/

.sec02::before {
    background: url("../images/sec02_bg_01.png") no-repeat right top /cover;
    right: 0;
    top: 0;
}

.sec02::after {
    background: url("../images/sec02_bg_02.png") no-repeat right top /cover;
    left: 0;
    bottom: 0;
}

.sec_block_wrap {
    margin-top: 40px;
}

.sec_block_item {
    margin-top: 60px;
}

.sec_block_item:first-child {
    margin-top: 0;
}

.sec_block_hdg {
    text-align: center;
}

.sec_block_hdg_tags {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.sec_block_hdg_tags > .tag {
    background-color: #3EA8DD;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 0 15px;
}

.sec_block_hdg > .hdg {
    margin-top: 13px;
    font-size: 19px;
}

.sec_block_hdg + .sec_text {
    margin-top: 20px;
}

.sec_figure {
    margin-top: 20px;
}

.sec_btn {
    margin: 60px auto 0;
    max-width: 320px;
}

@media (min-width: 641px) {        
    .sec_block_wrap {
        margin-top: 60px;
    }
    
    .sec_block_hdg > .hdg {
        font-size: 24px;
    }
}

/* Strengths
=================================*/

.sec03::before {
    background: url("../images/sec03_bg_01.png") no-repeat right top /cover;
    right: 0;
    top: 0;
}

.sec03._en::before {
    background: url("../images/sec03_bg_01_en.png") no-repeat right top /cover;
    right: 0;
    top: 0;
}

.sec03.sec{
	margin-top:0!important;
}

/* contact
=================================*/
.btn_list {
    margin-top: 30px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}


@media (min-width: 641px) {
    .btn_list {
        margin-top: 40px;
        flex-direction: row;
        justify-content: center;
        gap: 40px;
    }

    .btn_list > li {
        width: 50%;
    }    
}



/* sec05
=================================*/
.sec05 {
    position: relative;
    padding: 60px 0;
}

.sec05::before,
.sec05::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 148px;
}

.sec05::before {
    background: url("../images/sec05_left_bg.png") no-repeat left top /cover;
    top: 0;
    left: 0;
}

.sec05::after {
    background: url("../images/sec05_right_bg.png") no-repeat left top /cover;
    bottom: 0;
    right: 0;
}

.campaign_wrap {
    max-width: 740px;
    margin: 0 auto;
}

.campaign_hdg_lv2 {
    margin: 0;
    text-align: center;
    line-height: 1.5;
}

.campaign_hdg_lv2 > .hdg_sub {
    background-color: #3EA8DD;
    color: #fff;
    font-size: 23px;
    padding: 5px 20px;
    font-weight: bold;
}

.campaign_hdg_lv2 > .hdg_main {
    display: block;
    font-size: 37px;
    font-weight: 900;
    color: #3EA8DD;
}

.campaign_text {
    margin: 20px auto 0 !important;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}

.campaign_image {
    width: 57.46%;
    margin: 20px auto 0;
    max-width: 354px;
}

.campaign_hdg_lv3 {
    margin: 20px auto 0;
    font-size: 20px;
    color: #122B88;
    position: relative;
    padding-left: 1em;
}

.campaign_hdg_lv3::before {
    content: "■";
    width: 1em;
    position: absolute;
    left: 0;
    top: 0;
}

.campaign_desc {
    margin-top: 20px !important;
}

.campaign_desc > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}

.campaign_desc > div:first-child {
    margin-top: 0;
}

.campaign_desc > div > dt {
    margin-bottom: 0;
    color: #122B88;
    border-bottom: 1px solid #122B88;
    padding-bottom: 10px;
    font-weight: 500;
}


@media (min-width: 641px) {
    .sec05::before,
    .sec05::after {
        width: 420px;
        height: 622px;
    }
    
    .campaign_hdg_lv2 > .hdg_main {
        font-size: 50px;
    }
    
    .campaign_text {
        font-size: 22px;
    }
    
    .campaign_desc > div {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        margin-top: 15px;
    }
    
    .campaign_desc > div > dt {
        margin-bottom: 0;
        flex: 0 0 100px;
        border-bottom: 0;
        padding-bottom: 0;
        border-right: 1px solid #122B88;
        padding-right: 15px;
        padding: 5px 0;
    }

    .campaign_desc > div > dd {
        padding: 5px 0;
    }
}


/* FAQ
=================================*/
.toggle_desc {
    margin-top: 40px;
}

.toggle_desc > div {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.toggle_desc > div:first-child {
    margin-top: 0;
}

.toggle_desc > div > dt {
    background-color: #EBEBEB;
    border-left: 10px solid #3EA8DD;
    margin-bottom: 0;
    padding: 20px 60px 20px 30px;
    position: relative;
    cursor: pointer;
}

.toggle_desc > div > dt::before,
.toggle_desc > div > dt::after {
    content: "";
    position: absolute;
    background-color: #3EA8DD;
    top: 50%;
    transform: translateY(-50%);
}

.toggle_desc > div > dt::before {
    width: 24px;
    height: 6px;
    right: 28px;
    transition: .2s;
}

.toggle_desc > div > dt::after {
    width: 6px;
    height: 26px;
    right: 37px;
}

.toggle_desc > div > dt.is-open::before {
    transform: rotate(180deg);
}

.toggle_desc > div > dt.is-open::after {
    content: none;
}


.toggle_desc > div > dd {
    display: none;
    border: 2px solid #E8E8E8;
    padding: 40px;
    line-height: 2;
}

.toggle_desc > div > dd > em {
    font-weight: bold;
    font-style: normal;
}


/*---------------------------------
  footer
---------------------------------*/
.page_top {
    z-index: 2;
}

.page_top a {
    background-color: #333D7F !important;
}