@charset "UTF-8";

/*----------------------------------------------------
	☆PC
----------------------------------------------------*/

/* --------------------------------------------------------- MODAL */

.modal {
    visibility: hidden;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    margin: auto;
    z-index: 1500;
	transition: all 450ms cubic-bezier(0.32, 0.08, 0.24, 1);
    clip-path: circle(0%);
    overflow-y: scroll;
	background: rgba(0,0,0,0.9);
	backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal::before{
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    pointer-events: none;
}

.modal.active {
    visibility: visible;
    clip-path: circle(100%);
	transition: all 600ms cubic-bezier(0.32, 0.08, 0.24, 1);
}

.modal .modalInner {
	overflow-y: scroll;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
	min-height: 100%;
    padding: 0 10%;
	overflow: auto;
    margin: 0 auto;
}

.modal .modalInner .image {
    line-height: 0;
    overflow: hidden;
    width: 40%;
    max-width: none;
    position: relative;
}
.modal .modalInner .info,
.modal .modalInner.twoColumn .modalInner02-inner{    
    width: 60%;
    max-width: none;
    padding: 0;
    margin-top: 0;
    margin-left: 60px;
}

.modal .modalInner .modalInner02{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.modal .modalInner .info .title {
    color: #fff;
    line-height: 1.12;    
    font-size: 36px;
    padding-left: 30px;
    margin-bottom: 30px;
    position: relative;
}

.modal .modalInner .info .title::after {
    content: "";
    display: block;
    width: 4px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #e21b13;
}

.modal .modalInner .info .text {
    color: #fff;
    text-align: justify;
}


.modal .modalInner .button {
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
}


.modal .modalInner .button .btn + .btn {
	margin-top: 20px;
}

.modal .modalInner .button .btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    box-shadow: 0 10px 16px rgb(0 62 145 / .4);
	position: relative;
    margin: 0 auto;
    width: 254px;
    height: 80px;
	overflow: hidden;
    border-radius: 40px;
	transition: background 500ms cubic-bezier(0.32, 0.08, 0.24, 1);
}

.modal .modalInner .button .btn a:before {
    content: "";
    display: block;
    width: 1080px;
    height: 1080px;
    position: absolute;
    top: -540px;
    left: -540px;
    opacity: 0;
    animation: rotate 6000ms linear infinite;
    transition: opacity 600ms cubic-bezier(0.32, 0.08, 0.24, 1);
}

.modal .modalInner .button .btn a span {
	display: inline-block;
    font-weight: 700;
    color: #003e91;
    line-height: 1.36;
	position: relative;
	z-index: 5;
	transition: color 500ms cubic-bezier(0.32, 0.08, 0.24, 1);
}


.modal .modal-close {
	display: block;
    background: transparent;
    border-radius: 50%;
    position: fixed;
	cursor: pointer;
    z-index: 2500;
	overflow: hidden;
	width: 80px;
	height: 80px;
	top: 40px;
    right: 40px;
	transition: all 300ms cubic-bezier(0.32, 0.08, 0.24, 1);
}

.modal .modal-close:before {
    content: "";
    display: block;
    width: 480px;
    height: 480px;
    position: absolute;
    top: -200px;
    left: -120px;
    transition: all 600ms cubic-bezier(0.32, 0.08, 0.24, 1);
    background: #fff;
    border-radius: 100%;
}

@keyframes rotate {
	from { transform: rotate(0);}
	to { transform: rotate(360deg);}
}

.modal .modal-close span {
    display: block;
    width: 36%;
    height: 2px;
    background-color: #e21b13;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
	border-radius: 1px;
    
	transition: all 500ms cubic-bezier(0.32, 0.08, 0.24, 1);
}

.modal .modal-close span:nth-child(1) {
	transform: rotate(45deg);
}

.modal .modal-close span:nth-child(2) {
	transform: rotate(135deg);
}

.modal .modalInner.twoColumn .modalInner02-inner {
 	width: calc((100% - 65px) / 2);
	margin-left: 0;
}
.modal .modalInner.twoColumn .modalInner02-inner .info{
	width: 100%;
	padding: 2vw 0;
	margin-left: 0;
}
.modal .modalInner.twoColumn .modalInner02-inner .image{
	width: 100%;
}


.modal .modalInner .relatedLink{
    margin-top: 60px;
}
.modal .modalInner .relatedLink dt{
    line-height: 1;
    font-size: 16px;
    padding: 10px 20px;
    display: table;
    margin-bottom: 20px;
    font-weight: bold;
    background: #ffda00;
}
.modal .modalInner .relatedLink dd a{
    color: #fff;
    position: relative;
    line-height: 1.2;
    padding-left: 1.5em;
    display: block;
}
.modal .modalInner .relatedLink dd a .linkArrow01{
    position: absolute;
    left: 0;
    top: 2px;
}
.modal .modalInner .relatedLink dd + dd{
    margin-top: 20px;
}

/*----------------------------------------------------
	☆HOVER
----------------------------------------------------*/

@media screen and (min-width:901px) {

    .modal .modal-close:hover {
        transform: scale(1.1);
        transition: all 500ms cubic-bezier(0.32, 0.08, 0.24, 1);
    }

    .modal .modal-close:hover span {
        background: #fff;
    }

    .modal .modal-close:hover span:nth-child(1) { transform: rotate(-135deg);}
    .modal .modal-close:hover span:nth-child(2) { transform: rotate(-45deg);}

    .modal .modalInner .button .btn a:hover {
        background: rgb(0 62 145 / 0);
    }
    .modal .modalInner .button .btn a:hover span {
        color: #fff;
    }
    .modal .modalInner .button .btn a:hover:before {
        opacity: 1;
    }
    
    .relatedLink dd a:hover::before{
        background: #000;
    }

    
}


/*----------------------------------------------------
	☆UNDER 900
----------------------------------------------------*/

@media screen and (max-width:900px) {
    
    
    .modal::before {
        background-size: 100% no-repeat;
    }
    
    .modal .modalInner {
        flex-direction: column;
        padding: 10vw 7.5%;
    }

    .modal .modalInner .image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    .modal .modalInner .info,
    .modal .modalInner.twoColumn .modalInner02-inner{    
        width:  100%;
        padding: 60px 0;
        margin: 0;
    }


}




/*----------------------------------------------------
	☆UNDER 600
----------------------------------------------------*/

@media screen and (max-width:600px) {
    
    .modal .modalInner .info,
    .modal .modalInner.twoColumn .modalInner02-inner {
        padding: 30px 0;
    }
    .modal .modalInner .info .title {
        font-size: 28px;
        padding-left: 15px;
        margin-bottom: 20px;
    }
    .modal .modal-close {
        width: 50px;
        height: 50px;
        top: 10px;
        right: 10px;
    }
    .modal .modalInner .relatedLink {
        margin-top: 40px;
    }
    
    .modal .modalInner .info .title::after{
        width: 3px;
    }
    
    .relatedLink{
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .relatedLink dt{
        display: table;
        width: auto;
        margin-bottom: 10px;
        padding: 8px 18px;
        position: relative;
    }
    .relatedLink dd{
        position: relative;
        margin-left: 0;
        width: 100%;
    }
    .relatedLink dd a{
        padding-right: 40px;
    }
    .relatedLink dd a::before {
        width: 30px;
        height: 30px;
    }
    .relatedLink dd a::after {
        right: 11px;
    }

}

