@charset "utf-8";

/*======================================

	Component CSS
	Copyright (c) 2025-, PROACTIVE Inc. All rights reserved.

=======================================*/

:root {
	
    --main--width: 1200px; /* 75rem */
    --article--width: 944px; /* 55rem */
    
    /* color */
    --main--color: #503168;
    --sub--color: #F8D215;
	--text--color:#111;
    --red: #ff4500;
}

html {
	font-size: 100%;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
	background-color: #F6F8F9;
}

body {
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	line-height: 1.75;
	color: var(--text--color);
	min-height: 100vh;
    min-height: -webkit-fill-available;
	margin: 0 auto;
	background-image:url("../img/img_main.jpg");
	background-repeat: no-repeat;
	background-color: #fff;
}
@media screen and (min-width: 1025px) {
	body{
		width: var(--main--width);
	}
}
@media screen and (max-width: 1024px) {
	body{
		background-size: contain;
	}
}


/**--------------------------------------
	01. BASIC_STRUCTURE
---------------------------------------**/
main {
    flex: 1;
}

article {
	position: relative;
}

@media screen and (min-width: 1025px) {
    main {
        width: var(--main--width);
        margin: 0 auto;
    }
    aside {
        width: calc(var(--main--width) - var(--article--width));
		padding-bottom: 4rem;
		background-color: rgba(247, 243, 243, 0.98);
	}
	article {
		width: var(--article--width);
	}
    section {
	    margin: 2rem auto 5rem;
    }
}
@media screen and (max-width: 1024px) {
    article {
        width: 100%;
    }
	aside{
		position: absolute;
	}
    section {
	    margin: 2rem auto 4rem;
    }
    h2 + section {
        margin-top: 0;
    }
}


.br--all::before {
	content: "\A" ;
	white-space: pre ;
}

.bk {
	display: inline-block;
}

@media screen and (min-width: 1025px) {	
	.br--pc::before {
		content: "\A" ;
		white-space: pre ;
	}
}
@media screen and (max-width: 599px) {
	.br--sp::before {
		content: "\A" ;
		white-space: pre ;
	}
}


/*-- Link --*/
a {
	color: #00f;
	text-decoration: underline;
    word-break: break-all;
}

@media (any-hover: hover) {
    a:hover {
    	color: #f90;
    	transition: .4s;
    }
    a[href]:hover {
        cursor: pointer;
    }
    a:hover img {
    	opacity: .7;
    	transition: .4s;
    }
}


/*-- To top --*/
#pageTop {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
	z-index: 200;
}

#pageTop a {
    display: block;
    z-index: 999;
    width: 2.5rem;
    height: 2.5rem;
	background-color: var(--sub--color);
	border: var(--sub--color-dark) 1px solid;
	box-shadow: 0 0 5px var(--color--white);
    text-decoration: none;
	position: relative;
	border-radius: .5rem;
}

#pageTop a span {
	color: var(--text--color);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
	
@media (any-hover: hover) {
    #pageTop a:hover {
	    opacity: .7;
    }
}


/*----- 01-01. HEADER -----**/
header {
	line-height: 1;
}

header a,
header a:hover {
	text-decoration: none;
}

header .inner{
	display: flex;
	text-align: center;
	justify-content: center;
	background-color:rgba(255, 255, 255, 0.95);
}

header .logo{
	width: calc(var(--main--width) - var(--article--width));
	padding: .5rem 0;
}

header .title{
	padding: 0 6.5rem;
}

header .inner {
    padding: .5rem 0;
}

@media screen and (max-width: 1024px) {
	header .inner{
		padding: 13px 13px 1rem 13px;
	}
	
	header .logo{
		min-width: 35px;
		max-width: 80px; 
		width: 15vw;
		padding: 0;
	}
	
	header .title{
		min-width: 310px;
		padding: 0.3rem 2.8rem 0rem 0.56rem;
	}
}

@media screen and (max-width: 599px){	
	header .logo{
		width: 18vw;
	}
}

@media screen and (max-width: 400px){
	header .title{
		min-width: 280px;
		padding: 0.3rem 2.5rem 0rem 0.4rem ;
	}
	header .logo{
		min-width: 30px;
	}
}

/*----- 01-02. GLOVAL NAVI -----**/
nav ul li a {
	text-decoration: none;
    display: block;
}

.nav-bnr{
	text-align: center;
}

.nav-bnr div{
	margin-bottom: 1rem;
}

@media screen and (max-width: 1024px) {
	.nav-bnr{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		column-gap: 2rem;
		margin: 0 auto;
	}
}

/*-- Toggle Button --*/
#nav-toggle {
    display: none;
	position: fixed;
    top: 1.25rem;
	right: 1rem;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
}

#nav-toggle div {
    position: relative;
}

#nav-toggle span {
    display: block;
    position: absolute;
    left: .75rem;
    height: 3px;
    width: 1.75rem;
    background: #111;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}

#nav-toggle span:nth-child(1) {
    top: 11px;
}
#nav-toggle span:nth-child(2) {
    top: 20px;
}
#nav-toggle span:nth-child(3) {
    top: 29px;
}
nav ul {
	margin-bottom: 2rem;
}
nav ul li a {
	border-bottom: 1px solid #333;
	padding: 1.5rem 1rem;
       line-height: 1.25rem;
}
nav ul li a,
nav ul li a:not([href]) {
	color: #111;
}

@media screen and (min-width: 1025px) and (any-hover: hover) {
    nav ul li a[href]:hover {
		background-color: #fff;
		color: var(--text--color);
	}
}
@media screen and (max-width: 1024px) {
    #g-nav {
        position: fixed;
        top: 0;
        left: 100vw;
        width: 100%;
        height: 100%;
        overflow-y: auto;
        transition: .7s;        
        background-color: rgba(247, 243, 243, 1);
        padding: 3.75rem 0 2.5rem;
        z-index: 5;
    }
	nav ul li a {
		padding: 1.5rem 1rem;
        font-size: 1.1rem;
        text-align: center;
	}
    nav ul li a:not([href]) {
        color: #ccc;
    }
	#nav-toggle {
        display: block;
        z-index: 100;
    }
    .open #nav-toggle span {
        background-color: var(text--color);
    }
    .open #nav-toggle span:nth-child(1) {
       top: 21px;
       -webkit-transform: rotate(135deg);
       -moz-transform: rotate(135deg);
       transform: rotate(135deg);
     }
    .open #nav-toggle span:nth-child(2) {
      width: 0;
      left: 50%;
    }
    .open #nav-toggle span:nth-child(3) {
		top: 21px;
		-webkit-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		transform: rotate(-135deg);
    }
    /* #nav スライドアニメーション */
    #g-nav.open {
		 -moz-transform: translateX(-100vw);
		 -webkit-transform: translateX(-100vw);
		 transform: translateX(-100vw);
	}
}

@media screen and (max-width: 599px) {
	#nav-toggle {
        top:0.75rem;
		width: 2.5rem;
    }
}

@media screen and (max-width: 375px){
	#nav-toggle {
		right: 0.75rem;
    }
}

/*----- 01-03. FOOTER -----**/
footer {
    background-color: #333;
    color: #fff;
}

footer a,
footer a:hover {
	color: #fff;
}

footer .inner {
	padding: 2.6rem 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 4.7rem;
	row-gap: 2rem;
}

footer .inner dt {
	display: inline-block;
	padding: .5rem 1rem;
	border: 1px solid #fff;
	margin-bottom: 1rem;
	line-height: 1.2;
}

footer .inner dd {
	margin: 0;
}

.copy {
    background-color: #333;
    padding-bottom: 1rem;
    text-align: center;
}

@media screen and (max-width: 1024px){
	footer .inner{
		justify-content: flex-start;
		padding: 3rem 1rem;
	}
}

/**--------------------------------------
	02. CONTENTS
---------------------------------------**/
.contents {
    padding: 2rem;
	background-color: #fff;
}

.main-img img {
    width: 100%;
}

@media screen and (max-width: 1024px) {
	.contents {
        padding: 2rem 1rem;
	}
}


/* Title */
.title--sec1,
.title--sec2,
.title--sec3,
.title--sec4 {
	line-height: 1.5;
}

.title--sec1 {
	font-size: 2rem;
    margin: 1rem 0 4rem;
	text-align: center;
	position: relative;
}

.title--sec1::after{
	content: "";
	background-color: var(--sub--color);
	width: 2rem;
	height: 5px;
	position: absolute;
	left: 48%;
	bottom: -.75rem;
	
}

.title--sec2 {
	font-size: 1.5rem;
	padding: 1rem 2rem;
	margin-bottom: 2rem;
    border: 2px solid var(--sub--color);
	position: relative;
	line-height: 1.15;
}

.title--sec2::before{
	position: absolute;
	content: "";
	width: 8px;
	height: 20px;
	left: 1rem;
	top: calc(50% - 0.6rem);
	background-color: var(--sub--color);
}

.title--sec3 {
    font-size: 1.25rem;
    padding: .5rem 0;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ccc;
	position: relative;
}

.title--sec3::after {
    position: absolute;
	bottom: -2px;
	left: 0;
	width: 20%;
	height: 2px;
	content: "";
    background: var(--main--color);
}

/*.title--sec4 {
	font-size: 1.15rem;
    margin-bottom: .5rem;
}*/

@media screen and (max-width: 1024px)  {
    .title--sec1 {
        font-size: 1.7rem;
    }
	
	.title--sec2{
		margin-bottom: 1.5rem;
	}
}

.title--sec1 > .en,
.title--sec2 > .en,
.title--sec3 > .en{
	font-size: 90%;
}

/*-- File Link icon mini --*/
.pdf-icon::after {
	background: url(../img/icon_pdf.svg) no-repeat ;
}
.doc-icon::after {
	background: url(../img/icon_doc.svg) no-repeat ;
}
.xls-icon::after {
	background: url(../img/icon_xls.svg) no-repeat ;
}
.ppt-icon::after {
	background: url(../img/icon_ppt.svg) no-repeat ;
}
.link-icon::after {
	background: url(../img/icon_link.svg) no-repeat ;
}

.pdf-icon::after,
.doc-icon::after,
.xls-icon::after,
.ppt-icon::after,
.link-icon::after {
    content: "";
	display: inline-block;
	width: 1rem;
	height: 1rem;
    background-size: contain;
	vertical-align: middle;
	margin-left: .5rem;
    margin-right: .25rem;
}


/**--------------------------------------
	03. PARTS
---------------------------------------**/
/*.img-responsive {
	max-width: 100%;
	height: auto;
}*/

.box {
	padding: 1.5rem 2rem;
}

.box ul,
.box ol,
.box ul li:last-child,
.box ol li:last-child,
.box dl dd:last-child {
	margin-bottom: 0;
}

.box--R {
	border: 1px solid var(--red);
}

.box--Gry {
    border: 1px solid #ccc;
}

@media screen and (max-width: 1024px) {
    .box {
    	padding: 1rem 1.5rem;
    }
}


/*----- 03-01. LIST -----**/
/*日付用*/
@media screen and (min-width: 1025px) {
	.date-info {
        overflow: hidden;
	}
    .date-info dt,
    .date-info dd {
        float: left;
    }
	.date-info dt {
		width: 8em;
		margin: 0;
	}
	.date-info dd {
		width: calc(100% - 8em);
        margin: 0 0 1rem;
	}
}
@media screen and (max-width: 1024px) {
    .date-info dd {
        margin: 0 0 1em;
    }
}

.list--notes-remarks{
	margin-left: 3.25rem;
}

.list--notes-remarks > li {
	text-indent: -3.25em;
}

.list--notes-remarks >li:not(:last-child) {
	margin-bottom: .75em;
}

/*----- 03-02. TABLE -----**/
.nowrap {
	white-space: nowrap;
}

.tbl-v--mid tr th,
.tbl-v--mid tr td {
	vertical-align: middle;
}

.tbl-bdr tr th,
.tbl-bdr tr td {
	border: 1px solid #ccc;
}

.tbl-bdr tr th {
	background-color: #F4F4B7;
	/*text-align: center;*/
    border: 1px solid #aaa;
}

.tbl--list {
	border-collapse: separate;
	border-spacing: 0 .75rem;
}

.tbl--list tr th {
	background-color: #F3EEF5;
}

.area-center {
	margin: 0 auto;
}

.area-over {
	width: 100%;
	overflow-x: auto;
	padding: .5em 0;
}

.area-over::-webkit-scrollbar {
    height: 6px;
  }

.area-over::-webkit-scrollbar-thumb {
	background: #999;
	border-radius: 5px;
}

.area-over::-webkit-scrollbar-track-piece {
	background: #efefef;
}

@media screen and (min-width: 1025px) {
    .tbl--list tr th {
		padding: .25em 1em;
	}
	.tbl--list tr td {
		padding-left: 1em;
	}
	.tbl--en::before{
		content: "\A" ;
		white-space: pre ;
	}
	
}
@media only screen and (max-width: 1024px) {
    .tbl--list {
		width: 100%;
	}
	.tbl--list tr th,
	.tbl--list tr td {
		width: 100%;
		display: block;
	}
	.tbl--list tr td {
		padding: .5em;
	}
    .area-over > table tr th,
    .area-over > table tr td {
		white-space: nowrap;
	}
	.tbl--en{
		display: inline-block;
	}
}


/*----- 03-03. TEXT -----**/
.ft-s--S {
	font-size: .9rem;
}

.ft-s--SS {
	font-size: .85rem;
}

.ft-s--L {
	font-size: 1.1rem;
}

.ft-s--LL {
	font-size: 1.25rem;
}

/*Text-カラー*/
.ft-c--R {
	color: var(--red);
}


/*----- 03-04. BUTTON -----**/
.btn {
    display: inline-block;
	margin: .5rem auto;
	padding: 1.2rem 4rem;
	background-color: #2158AA;	
	border: 1px solid #2158AA;
	color: #fff;
	text-decoration: none;
    border-radius: 5px;
}

.btn[href] {
    box-shadow: 1px 2px 10px #888;
}

@media (any-hover: hover) {
    .btn[href]:hover {
	    background-color: var(--main--color);
	    box-shadow: 2px 4px 15px #888;
    }
    .btn:hover {
        color: #fff;
    }
}

.btn[href]:hover{
	background-color: #fff;
	color: var(--text--color);
}

/*nav .btn{
	background-color: #124296;
	padding: 1.5rem 2rem;
	border: 1px solid #124296;
	border-radius: 11px;
}
nav .btn[href],.btn[href]:hover{
	box-shadow: none;
}

@media screen and (max-width: 1024px){
	nav .btn {
		width: 70%;
	}
}*/