@charset "utf-8";

.c-fadein,
.c-fadeup,
.c-slideinleft {
    animation-delay: var(--delay, 0s);
}
.c-fadein {
    animation: fadein 1s ease-in-out forwards;
    opacity: 0;
}
@keyframes fadein {
    0% { opacity: 0 }
    100% { opacity: 1 }
}

.c-fadeup {
    animation-name: fadeup;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fadeup {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.c-slideinleft {
    animation: slideinleft .5s ease forwards;
}
@keyframes slideinleft {
    from { clip-path: inset(0 100% 0 0); }
    to   { clip-path: inset(0 0 0 0); }
}


.c-marker {
	background: -webkit-linear-gradient(left, rgb(000,000,000) 50%, transparent 50%);
	background: -moz-linear-gradient(left, rgb(000,000,000) 50%, transparent 50%);
	background: linear-gradient(left, rgb(000,000,000) 50%, transparent 50%);
	background-repeat: repeat;
	background-size: 200% .8em;
	background-position: 100% .5em;
	transition: .5s;
	color: #fff;
}
.c-marker.is-active{
	background-position: 0% .5em;
}

.c-line_anime{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.c-line_anime picture,
.c-line_anime img{
    display: block;
    width: 100%;
    object-fit: contain;
    position: absolute;
    bottom: 0;
}
.c-line_anime.line_02{
    position: absolute;
    bottom: 0;
    right: 0;
}
.c-line_anime{
    clip-path: inset(0 0 100% 0);
    opacity: 0;
    transform: translateY(-6px);
    --reveal-duration: 1.0s;
    --reveal-delay: 0s;

    /* 前半ゆっくり・後半加速だけど極端すぎないカーブ */
    --reveal-ease: cubic-bezier(.3, 0, .2, 1);

    transition:
    clip-path var(--reveal-duration) var(--reveal-ease) var(--reveal-delay),
    opacity .25s linear var(--reveal-delay),
    transform var(--reveal-duration) var(--reveal-ease) var(--reveal-delay);
    will-change: clip-path, transform, opacity;
}

.c-line_anime.slow{
    --reveal-duration: 6s;
    --reveal-distance: 1.5px;

    /* slow用も少しだけ後半寄りのやわらかいカーブに */
    --reveal-ease: cubic-bezier(.35, .05, .25, 1);
}

.c-line_anime.is-inview{
    clip-path: inset(0 0 0 0);
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce){
    .c-line_anime{ transition: none !important; clip-path: inset(0 0 0 0) !important; opacity:1 !important; transform:none !important; }
}

.c-line_page{
    position: relative;
}
.c-line_page::before{
    /* content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-width: 750px;
    background-image: url(/assets/images/common/page_line.png);
    background-size: contain;
    background-position: right top;
    background-repeat: no-repeat;
    z-index: -1; */
}



.c-mask_text{
    line-height: 1.4;
}
.c-mask_text span{
    background-color: #000;
    color: #fff;
    line-height: 1.8;
}

.c-white{
    color: #fff;
}
.c-black{
    color: #1A1A1A;
}
.c-right{
    text-align: right;
}

.c-h2{
    
}
.c-h2.no_lead{
    padding-bottom: 80px;
}
.c-h2 .en{
    font-size: 6rem;
    line-height: 1.2;
}
.c-h2 .jp,
.c-h2 .cn{
    font-size: 5rem;
}
.c-h3{
    padding-bottom: .5em;
    padding-top: 2em;
}
.c-h2.border,
.c-h3.border,
.c-h4.border{
    border-bottom: 1px solid #000;
    margin-bottom: 2em;
}
.c-h3 .en{
    line-height: 1.2;
    font-size: 5rem;
}
.c-h3 .jp,
.c-h3 .cn{
    font-size: 4.2rem;
}
.c-h3 .min{
    font-size: 2.4rem;
}
.c-h4{
    padding-bottom: 1.5em;
}
.c-h4 .jp,
.c-h4 .cn{
    font-size: 3.2rem;
}
.c-h4 .en{
    font-size: 3rem;
}
.c-h4 .min{
    font-size: 2.2rem;
}
.c-heading_dot{
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-weight: 700;
    font-size: 1.8rem;
}
.c-heading_dot .dot{
    /* display: inline-block; */
    display: none;
    width: 1em;
    height: 0.6em;
    background-color: #E60020;
    border-radius: 50%;
    transform: rotate(-15deg);
    margin-bottom: 5px;
}
a .c-arrow,
a .c-arrow_02,
a .c-arrow_03,
a .c-arrow_under{
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #164B7F;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    transition: .3s;
}
a .c-arrow_03{
    right: 1em;
}
a .c-arrow:before,
a .c-arrow_02:before,
a .c-arrow_03:before,
a .c-arrow_under::before{
	position: absolute;
	content: "";
	vertical-align: middle;
    top: 0;
    bottom: 0;
	right: .75em;
    margin: auto;
	width: 20px;
	height: 1.5px;
	background: #fff;
    transition: .2s;
}
a .c-arrow:after,
a .c-arrow_02:after,
a .c-arrow_03:after,
a .c-arrow_under:after{
	position: absolute;
	content: "";
	vertical-align: middle;
    top: 0;
    bottom: 0;
	right: .75em;
    margin: auto;
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
    transition: .2s;
}
a:hover .c-arrow{
    background-color: #1D1A1A;
}
a .c-arrow_02,
a .c-arrow_03,
a .c-arrow_under{
    background-color: transparent;
}
a .c-arrow_02:before,
a .c-arrow_03:before,
a .c-arrow_under:before{
	background: #1D1A1A;
    height: 2px;
}
a .c-arrow_02:after,
a .c-arrow_03:after,
a .c-arrow_under:after{
	border-top: 2px solid #1D1A1A;
	border-right: 2px solid #1D1A1A;
}
a:hover .c-arrow_02::before,
a:hover .c-arrow_03::before,
a:hover .c-arrow_under::before{
    background: #164B7F;
}
a:hover .c-arrow_02::after,
a:hover .c-arrow_under::after{
	border-top: 2px solid #164B7F;
	border-right: 2px solid #164B7F;
}
a:hover .c-arrow_03::after{
	border-bottom: 2px solid #164B7F;
	border-right: 2px solid #164B7F;
}
a .c-arrow_03:before{
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    width: 2px;
    height: 20px;
    background: #1D1A1A;
}
a .c-arrow_03:after{
    left: 0;
    right: 0;
    top: .5em;
    margin: auto;
    width: 8px;
    height: 8px;
    border-top: none;
    border-right: 2px solid #1D1A1A;
    border-bottom: 2px solid #1D1A1A;
    transform: rotate(45deg) translateY(0px);
    transform-origin: center;
}
a .c-arrow_under::before {
	background: #1D1A1A;
	height: 20px;
	width: 2px;
	right: 1em;
	bottom: 6px;
}
a .c-arrow_under::after {
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
.c-pdf{
    position: relative;
    padding-left: calc(1em + 22px);
    color: #1A1A1A;
    font-weight: normal;
    font-size: 1.2rem;
}
.c-pdf::before {
	content: "";
	background-image: url(/assets/images/common/pdf.svg);
	display: inline-block;
	width: 20px;
	height: 20px;
	background-size: contain;
	position: absolute;
	left: 0;
	bottom: 0px;
	margin: auto;
    margin-left: 1em;
}


.c-button_arrow .c-icon_left{
    padding-left: 2.5em;
}
.c-finance::before {
	content: "";
	background-image: url(/assets/images/common/finance.svg);
    filter: brightness(1) saturate(100%);
	display: inline-block;
	width: 20px;
	height: 14px;
	background-size: contain;
	position: absolute;
	left: .5em;
    top: 0;
	bottom: 0;
	margin: auto;
	background-repeat: no-repeat;
    transition: .3s;
}
.c-calendar::before {
	content: "";
	background-image: url(/assets/images/common/calendar.svg);
    filter: brightness(1) saturate(100%);
	display: inline-block;
	width: 20px;
	height: 20px;
	background-size: contain;
	position: absolute;
	left: .5em;
    top: 0;
	bottom: 0;
	margin: auto;
	background-repeat: no-repeat;
    transition: .3s;
}
.c-button_arrow a:hover .c-finance::before,
.c-button_arrow a:hover .c-calendar::before{
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.c-button_arrow{
    max-width: 260px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}
.c-button_arrow.center{
    margin: 0 auto;
}
.c-button_arrow a{
    color: #fff;
    background-color: #164B7F;
    font-size: 1.6rem;
    width: 100%;
    display: inline-block;
    padding: 10px 1em;
    padding-right: 40px;
    transition: .3s;
}
.c-button_arrow.gray a{
    color: #000;
    background-color: #c8c5c4;
    position: relative;
}
.c-button_arrow.gray a .gray_button{
    z-index: 2;
    position: relative;
}
.c-button_arrow a::before{
    position: absolute;
    left: 0;
    width: 0;
    top: 0;
    height: 100%;
    content: "";
    background-color: #fff;
    mix-blend-mode: difference;
    transition: 0.3s;
}

.c-button_arrow.gray a::before{
    background-color: #fff;
    mix-blend-mode: normal;
    transition: 0.3s;
}
.c-button_arrow a:hover:before{
    width: 100%;
}
.c-button_arrow.gray a:hover{
    color: #000;
}
.c-button_arrow a .arrow{
    position: absolute;
    width: 40px;
    height: 100%;
    background-color: #164B7F;
    z-index: 1;
    right: 0;
    top: 0;
    transition: .5s;
}
.c-button_arrow a .arrow::before{
	position: absolute;
	content: "";
	vertical-align: middle;
    top: 0;
    bottom: 0;
	right: .75em;
    margin: auto;
	width: 20px;
	height: 1.5px;
	background: #fff;
    transition: .2s;
}
.c-button_arrow a .arrow::after{
	position: absolute;
	content: "";
	vertical-align: middle;
    top: 0;
    bottom: 0;
	right: .75em;
    margin: auto;
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
    transition: .2s;
}
.c-button_arrow a:hover .arrow{
    background-color: #000;
}
.c-button_arrow.gray a .arrow{
    background-color: #000;
}
.c-button_arrow.gray a:hover .arrow{
    background-color: #DB0E1E;
}

.c-button_black a{
    background-color: #000;
    color: #fff;
    padding: .25em 1em;
    display: inline-block;
    transition: .3s;
    border: 1px solid #000;
}
.c-button_black a:hover{
    background-color: #fff;
    color: #000;
}

.c-img_link,
.c-img_link_02{
    position: relative;
    overflow: hidden;
}
.c-img_link .arrow,
.c-img_link_02 .arrow{
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #000;
    right: 0;
    bottom: 0;
    transition: .3s;
}
.c-img_link a .arrow::before,
.c-img_link_02 a .arrow::before{
	position: absolute;
	content: "";
	vertical-align: middle;
    top: 0;
    bottom: 0;
	right: .75em;
    margin: auto;
	width: 20px;
	height: 1.5px;
	background: #fff;
    transition: .2s;
}
.c-img_link a .arrow::after,
.c-img_link_02 a .arrow::after{
	position: absolute;
	content: "";
	vertical-align: middle;
    top: 0;
    bottom: 0;
	right: .75em;
    margin: auto;
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
    transition: .2s;
}
.c-img_link a picture,
.c-img_link_02 a picture{
    overflow: hidden;
}
.c-img_link a img,
.c-img_link_02 a img{
    transition: transform .3s ease;
}
.c-img_link a:hover img,
.c-img_link_02 a:hover img{
    transform: scale(1.1);
}
.c-img_link a:hover .arrow,
.c-img_link_02 a:hover .arrow{
    background-color: #164B7F;
}
.c-img_link a .text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    max-width: 300px;
    width: 100%;
}
.c-img_link a .text span{
    background-color: #000;
    color: #fff;
    font-size: 3.2rem;
    font-weight: bold;
    transition: .3s;
    line-height: 1.8;
}
.c-img_link a .text .small{
    font-size: 1.6rem;
    font-weight: normal;
}
.c-img_link a:hover .text span{
    background-color: #fff;
    color: #000;
}
.c-img_link_02 a .text{
    position: absolute;
    color: #fff;
    left: 40px;
    bottom: 20px;
}
.c-img_link_02 a .text .en{
    font-size: 6.4rem;
    font-weight: 600;
}
.c-img_link_02 a .text .jp,
.c-img_link_02 a .text .cn{
    font-size: 5.4rem;
    font-weight: 600;
    letter-spacing: normal;
}
.c-img_link_02 .arrow{
    position: absolute;
    right: 40px;
    bottom: 40px;
}


.c-button_arrow a::before{
    position: absolute;
    left: 0;
    width: 0;
    top: 0;
    height: 100%;
    content: "";
    background-color: #000;
    mix-blend-mode: overlay;
    transition: 0.3s;
}

.c-thumbnail_link{
    
}
.c-thumbnail_link a{
    display: flex;
    align-items: center;
    gap: 1em;
    position: relative;
    font-size: 1.6rem;
}
.c-thumbnail_link a .en{
    font-size: 3.2rem;
    line-height: 1.6;
}
.c-thumbnail_link .arrow{
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #000;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    transition: .3s;
}
.c-thumbnail_link .arrow::before{
	position: absolute;
	content: "";
	vertical-align: middle;
    top: 0;
    bottom: 0;
	right: .75em;
    margin: auto;
	width: 20px;
	height: 1.5px;
	background: #fff;
    transition: .2s;
}
.c-thumbnail_link .arrow::after{
	position: absolute;
	content: "";
	vertical-align: middle;
    top: 0;
    bottom: 0;
	right: .75em;
    margin: auto;
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
    transition: .2s;
}
.c-thumbnail_link a img{
	max-width: 135px;
}
.c-thumbnail_link a span{
    background-color: #1D1A1A;
    color: #fff;
    font-weight: 700;
    transition: .3s;
    padding: 0 5px;
}
.c-thumbnail_link a:hover span{
    background-color: #fff;
    color: #1D1A1A;
}
.c-thumbnail_link a:hover .arrow{
    background-color: #164B7F;
}
.c-pages{
    padding: 140px 0 100px;
}

.c-page_list{
    display: flex;
    flex-wrap: wrap;
    gap: .5em 1.5em;
    padding: 4em 0;
}
.c-page_list li{
    width: calc(100% / 3 - 1em);
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    border-bottom: 1px solid #C8C9CA;
}
.c-page_list li a{
    position: relative;
    display: block;
    padding: 1em 0;
    align-self: flex-start;
    width: 100%;
}
.c-page_list li a.no_border{
    border-bottom: none;
}

.c-page_list li .outline{
    display: block;
    padding-top: 0em;
    padding-bottom: 1em;
    font-size: 1.4rem;
    width: 100%;
    position: relative;
    align-self: flex-start;
}
.c-page_list li a .text {
	transition: .3s;
	font-size: 2rem;
	font-weight: 700;
	margin-top: 0px;
    padding: 0;
	display: inline-block;
    position: relative;
    width: 100%;
}
.c-page_list li a .c-arrow{
    top: auto;
    bottom: auto;
}
.c-page_list li a picture{
    padding-bottom: 1em;
}
.c-page_list li a:hover .text{
    color: #164B7F;
}

.c-indent{
    text-indent: -1em;
    padding-left: 1em;
}
ol.c-indent{
    text-indent: -1.3em;
}
.c-underline{
    text-decoration: underline;
}
/* モーダル */
.c-modal.js-modal{
}
.c-modal-container{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0,0,0,50%);
	padding: 20px ;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s ease, visibility .3s ease;
	box-sizing: border-box;
	z-index: 999;
}
.c-modal-container:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
.c-modal-container.active{
	opacity: 1;
	visibility: visible;
}
.c-modal-body{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 1200px;
	/* width: 90%; */
	/* max-height: 80vh; */
	/* overflow-y: scroll; */
	opacity: 0;
	transform: translateY(12px);
	transition: opacity .3s ease, transform .3s ease;
    width: min(90vw, 720px); 
    aspect-ratio: 1 / 1; 
    max-height: none;
    overflow: hidden;
}
.c-modal-container.active .c-modal-body{
	opacity: 1;
	transform: translateY(0);
}
.c-modal-close{
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 40px;
	right: 40px;
	width: 25px;
	height: 25px;
	font-size: 2.4rem;
	color: #000;
	cursor: pointer;
	z-index: 7;
}
.c-modal-content{
	background: #F3F0EE;
	text-align: left;
	padding: 2em 2em 6em;
	position: relative;
    max-height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.c-close_btn {
	display: block;
	width: 60px;
	height: 60px;
	background: #1A1A1A;
    right: 0;
    top: 0;
    transition: .3s;
}
.c-close_btn:hover {
	background-color: #164B7F;
}
.c-close_btn::before, .c-close_btn::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 3px;
	height: 25px;
	background: #fff;
}
.c-close_btn::before {
	transform: translate(-50%,-50%) rotate(45deg);
}
.c-close_btn::after {
	transform: translate(-50%,-50%) rotate(-45deg);
}

.c-bold{
    font-weight: bold;
}

.c-table{
	border: 1px solid #D9DAE7;
	border-collapse: collapse;
	width: 100%;
    background-color: transparent;
    margin-bottom: 1.5em;
}
.c-table tr + tr{
	border-top: 1px solid #D9DAE7;
}
.c-table td + td,
.c-table th + td,
.c-table th + th,
.c-table td + td,
.c-table td:nth-child(1){
	border-left: 1px solid #D9DAE7;
}
.c-table th{
	background-color: #c7cfcf;
}
.c-table td,
.c-table th{
	padding: 12px;
	font-size: 1.8rem;
	line-height: 1.8;
	font-weight: normal;
    vertical-align: middle;
}
.c-table td a,
.c-table th a{
	font-size: 1.8rem;
}

.c-table_02,
.c-table_03{
	border: 1px solid #D9DAE7;
	border-collapse: collapse;
	width: 100%;
    background-color: transparent;
    margin-bottom: 2em;
}
.c-table_02 p,
.c-table_03 p{
	padding-bottom: 0;
}
.c-table_02 tr + tr,
.c-table_03 tr + tr{
	border-top: 1px solid #D9DAE7;
}
.c-table_02 td + td,
.c-table_02 th + td,
.c-table_02 th + th,
.c-table_02 td + td,
.c-table_02 td:nth-child(1),
.c-table_03 td + td,
.c-table_03 th + td,
.c-table_03 th + th,
.c-table_03 td + td,
.c-table_03 td:nth-child(1){
	border-left: 1px solid #D9DAE7;
}
.c-table_02 th,
.c-table_03 th{
	background-color: #c7cfcf;
}
.c-table_02 td,
.c-table_02 th,
.c-table_03 td,
.c-table_03 th{
	padding: 12px;
	font-size: 1.6rem;
	line-height: 1.5;
	font-weight: normal;
    vertical-align: middle;
}
.c-table_02 td a,
.c-table_02 th a,
.c-table_03 td a,
.c-table_03 th a{
	font-size: 1.6rem;
}
.c-table_03 th{
	width: 200px;
}
.c-table_03 td{
	width: calc(100% - 200px);
}

.c-dl_list {
	padding-bottom: 2em;
}
.c-dl_list dl{
	border: 1px solid #D9DAE7;
	display: flex;
	flex-wrap: wrap;
	color: #1A1A1A;
	/*font-size: 1.8rem;*/
}
.c-dl_list dl dt{
	background-color: #FFF;
	width: 300px;
	padding: 10px 20px;
	border-bottom: 1px solid #D9DAE7;
	border-right: 1px solid #D9DAE7;
	display: flex;
	align-items: center;
}
.c-dl_list dl dd{
	width: calc(100% - 300px);
	padding: 10px 20px;
	border-bottom: 1px solid #D9DAE7;
}
.c-dl_list dl dt:last-of-type,
.c-dl_list dl dd:last-of-type{
	border-bottom: none;
}

.c-form-group {
	text-align: right;
	padding-bottom: 2em;
}
.c-form-group label{
	font-size: 1.8rem;
	padding-right: 1em;
}

/* セレクトボックス */
.c-select-box {
	position: relative;
	display: inline-block;
	font-size: 0;
}
.c-select-box::after{
	content: '';
	width: 8px;
	height: 8px;
	border: 0;
	border-bottom: solid 1px #333;
	border-right: solid 1px #333;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	right: 15px;
	bottom: 0;
	margin: auto;
}
.c-select-box select{
	padding: 10px 40px 10px 10px;
	width: 200px;
	font-size: 1.4rem;
	border: 1px solid #ccc;
	border-radius: 3px;
	background-color: #fff;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: #fff;
}

.c-news_list{
    padding: 1em 0;
}
.c-news_list li{
    border-bottom: 1px solid #C8C9CA;
    padding: 1em 0;
}
.c-news_list li a{
    position: relative;
    font-size: 1.6rem;
    font-weight: 700;
    padding-right: 2.5em;
    display: block;
}
.c-news_list li a.revision{
    margin-top: .5em;
    position: relative;
}
.c-news_list li a.revision::before{
    content: "└";
}

.c-news_list li a .link{
    text-decoration: underline;
    text-decoration-color: transparent;
    text-decoration-thickness: 1px;
    transition: text-decoration-color 0.3s ease;
}
.c-news_list li a:hover .link{
    text-decoration-color: #1D1A1A;
}
.c-news_list li .info{
    font-size: 1.2rem;
    padding-bottom: 1em;
}
.c-news_list li .info .date{
    padding-right: 1em;
}
.c-news_list li .info .category{
    border: 1px solid #DB0E1E;
    color: #DB0E1E;
    padding: 2px 6px;
}

/* ラジオボタン */
.c-radio input[type="radio"] {
	appearance: none;
	width: 20px;
	height: 20px;
	border: 2px solid #D9DAE7;
	border-radius: 50%;
	position: relative;
	background-color: #fff;
	cursor:pointer;
	margin: 0;
}

.c-radio input[type="radio"]:checked {
	border-color: #000;
	background-color: #000;
}

.c-radio input[type="radio"]:checked::before {
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	background-color: #000;
	border-radius: 50%;
	position: absolute;
	top: 2px;
	left: 2px;
}

/* タブ */
.c-tabs {
	display: flex;
	gap: 2em;
	margin-bottom: 2em;
	list-style: none;
	padding: 0;
}
.c-tabs li a {
	display: block;
	padding: .25em 0;
    text-align: center;
	text-decoration: none;
	color: #fff;
	background: #ccc;
    width: 120px;
}
.c-tabs li.active a {
	background: #000;
	color: #fff;
}
.c-tab-content{
    display: block;
    opacity: 0;
    transition: opacity .3s ease;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}
.c-tab-content.active{
    opacity: 1;
    height: auto;
    overflow: visible;
    pointer-events: auto;
}

.c-tab_menu{
    display: flex;
    margin-bottom: 1em;
    gap: 0;
}
.c-tab_menu li{
    border-right: 1px solid #C8C9CA;
}
.c-tab_menu li:last-child{
    border-right: none;
}
.c-tab_menu li a{
    width: 100%;
    background-color: #fff;
    display: block;
    padding: 1em 0;
    border-bottom: 2px solid #fff;
    text-align: center;
}
.c-tab_menu li a.active  {
    border-bottom: 2px solid #000;
}
.c-border_tab.c-tabs{
    display: flex;
    margin-bottom: 1em;
    gap: 0;
}
.c-border_tab.c-tabs li{
    width: 25%;
    border-right: 1px solid #C8C9CA;
}
.c-border_tab.c-tabs li:last-child{
    border-right: none;
}
.c-border_tab.c-tabs li a{
    width: 100%;
}
.c-border_tab.c-tabs li.active a {
    border-bottom: 2px solid #000;
    font-weight: 600;
}
.c-border_tab.c-tabs li a {
	color: #000;
	background: #fff;
    border-bottom: 2px solid #fff;
    padding: 1em 0;
}


/* チェックボックス */
.c-check_item {
	display: inline-flex;
	align-items: center;
	column-gap: 4px;
	line-height: 1;
	cursor: pointer;
}

.c-check_item:not(:last-of-type) {
	margin-right: 16px;
}

.c-check_box {
	appearance: none;
	position: relative;
	width: 20px;
	height: 20px;
	border: 1px solid #000000;
	border-radius: 2px;
	cursor: pointer;
}

.c-check_box:checked::after {
	content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	width: 12px;
	height: 6px;
	border-bottom: 2px solid #000000;
	border-left: 2px solid #000000;
	transform: rotate(-45deg);
}



.c-adobe{
    padding-bottom: 3em;
    display: flex;
    align-items: center;
    gap: 2em;
}
.c-adobe a{
    display: inline-block;
    width: 160px;
}
.c-adobe p{
    width: calc(100% - 160px);
    padding: 0;
}


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

}

/*****SP*****/
@media screen and (max-width: 767px) {
    .c-heading_dot {
        font-size: 1.6rem;
    }
    .c-heading_dot .dot + span{
        width: calc(100% - 1em);
    }
    .c-h2.no_lead {
        padding-bottom: 40px;
    }
    .c-h2 .jp ,
    .c-h2 .cn {
        font-size: 4rem;
    }
    .c-h2 .en{
        font-size: 4rem;
    }
    .c-h3 {
        padding-top: 1em;
    }
    .c-h3 .en{
        line-height: 1.2;
        font-size: 3.6rem;
    }
    .c-h3 .jp,
    .c-h3 .cn{
        font-size: 3.2rem;
    }
    .c-h3 .min{
        font-size: 2rem;
    }
    .c-h4 .jp,
    .c-h4 .cn{
        font-size: 2.6rem;
    }
    .c-h4 .en{
        font-size: 2.8rem;
    }
    .c-h4 .min{
        font-size: 2.2rem;
    }
    .c-button_arrow a {
        font-size: 1.5rem;
    }
    .c-img_link a .text span {
        font-size: 2.4rem;
    }
    .c-img_link a .text .small {
        font-size: 1.4rem;
    }
    
    a .c-arrow,
    .c-img_link .arrow,
    .c-thumbnail_link .arrow,
    .c-img_link_02 .arrow {
        width: 32px;
        height: 32px;
    }
    a .c-arrow::before,
    .c-img_link a .arrow::before, 
    .c-thumbnail_link .arrow::before,
    .c-img_link_02 a .arrow::before {
        right: .5em;
        width: 18px;
    }
    a .c-arrow::after,
    .c-img_link a .arrow::after,
    .c-thumbnail_link .arrow::after,
    .c-img_link_02 a .arrow::after {
        right: .5em;
    }
    .c-thumbnail_link a .en {
        font-size: 2rem;
    }
    .c-thumbnail_link a span {
        font-size: 1.4rem;
    }
    .c-pages {
        padding: 120px 0 40px;
    }
    .c-img_link_02 a .text {
        left: 20px;
        bottom: 10px;
    }
    .c-img_link_02 a .text .en {
        font-size: 4rem;
        line-height: 1;
    }
    .c-img_link_02 a .text .jp ,
    .c-img_link_02 a .text .cn {
        font-size: 3.8rem;
        line-height: 1;
        padding-right: 1em;
        display: inline-block;
    }
    .c-img_link_02 .arrow {
        right: 20px;
        bottom: 20px;
    }
    .c-page_list {
        padding: 2em 0;
    }
    .c-page_list li {
        width: 100%;
    }
    .c-page_list li a .text {
        font-size: 1.6rem;
    }

    .c-table_scroll{
        width: 100%;
        display: block;
        overflow: scroll;
    }
    .c-table_scroll table{
        width: 1000px;
    }
    .c-table_scroll .scroll_img{
        width: 1000px;
    }
	.c-dl_list dl{
		font-size: 1.6rem;
	}
	.c-dl_list dl dt{
		width: 100%;
	}
	.c-dl_list dl dd{
		width: 100%;
	}

    .c-adobe{
        gap: 1em;
    }
    .c-adobe a{
        width: 100px;
    }
    .c-adobe p{
        width: calc(100% - 100px);
        font-size: 1.4rem;
    }
    /* テーブル */
    .c-table_03 th,
    .c-table_03 td{
        width: 100%;
        display: block;
        text-align: left;
    }
    .c-table_03 td + td,
    .c-table_03 th + td,
    .c-table_03 th + th,
    .c-table_03 td + td,
    .c-table_03 td:nth-child(1) {
        border-left: none;
    }
    .c-table_scroll {
        margin-bottom: 2em;
    }
    /* タブ */
    .c-border_tab.c-tabs {
        flex-wrap: wrap;
    }
    .c-border_tab.c-tabs li {
        width: 50%;
        border-right: 1px solid #C8C9CA;
        border-bottom: 1px solid #C8C9CA;
    }
    .c-border_tab.c-tabs li:last-child {
        border-right: 1px solid #C8C9CA;
    }

    .c-img_scroll{
        overflow: scroll;
    }
    .c-img_scroll picture{
        width: 600px;
    }

    /* モーダル */
    .c-modal-body{
        width: 90%;
        max-height: 80vh;
        overflow-y: scroll;
        aspect-ratio: auto;
    }
    .c-modal-content{
        height: auto;
        overflow: visible;
        padding: 1em 1em 4em;
    }
    .c-close_btn {
        width: 40px;
        height: 40px;
    }
    /* タブ */
    .c-border_tab.c-tabs li a {
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
