@charset "utf-8";

/*======================================

	Component CSS
	Copyright (c) 2025, PROACTIVE Inc. All rights reserved.

=======================================*/

:root {	
    --wrap--width: 1200px;
    --main--width: 928px;
    --aside--width: 272px;
    
    /* color */
    --main--color: #B9E0DD;
    --sub--color: #F6E2D9;
	--sub--color-dark: #F19570;
	--yellow:#F8DA6A;
    --red: #ff4500;
	--text--color: #333;
}


html, body {
	display: flex;
	flex-direction: column;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
    min-width: var(--wrap--width);
	background: url("../img/bg.jpg") center / cover;
}

body {
	font-family: 'メイリオ', Meiryo, Helvetica, Arial, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif, '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic';
	line-height: 1.8;
	color: var(--text--color);
	min-height: 100vh;
    min-height: -webkit-fill-available;
}


/**--------------------------------------
	01. BASIC_STRUCTURE
---------------------------------------**/
main, .wrapper {
    flex: 1;
}

main {
	background-color: #fff;
}

aside {
    width: var(--aside--width);
	padding: 0 1rem 4rem;
}

article {
    width: var(--article--width);
}

section {
    margin: 2rem auto 5rem;
}

.wrapper {
	width: var(--wrap--width);
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.inner {
	margin: 0 auto;
}

.br--all::before {
	content: "\A" ;
	white-space: pre ;
}

.bk {
	display: inline-block;
}


/*-- 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;
    border-bottom: 5px double var(--main--color);
    box-shadow: 0 3px 6px #ccc;
    margin-bottom: 1.5rem;
}

header .inner {
    padding: 2rem 0;
    font-size: 2.25rem;
}

header a,
header a:hover {
	text-decoration: none;
}


/*----- 01-02. GLOVAL NAVI -----**/
nav ul li a {
	text-decoration: none;
    display: block;
}

nav ul {
	margin: 1rem 0 2rem;
}

nav ul li a {
	border: 1px solid var(--sub--color-dark);
    background-color: var(--sub--color);
	border-radius: 5px;
    margin-bottom: 1rem;
	padding: 1.5rem 1rem;
    line-height: 1.4rem;
}

nav ul li a,
nav ul li a:not([href]) {
    color: var(--text--color);
}

@media screen and (any-hover: hover) {
    nav ul li a[href]:hover {
		background-color: #fff;
		color: var(--text--color);
	}
}



/*----- 01-03. FOOTER -----**/
footer {
    background-color: var(--main--color);
}


footer a,
footer a:hover {
	color: var(--text--color);
}

footer a{
	text-decoration: none;
}

footer a:hover{
	text-decoration: underline;
}

footer .inner {
	margin: 3rem auto;
}

.copy {
    background-color: var(--main--color);
    margin-bottom: 1rem;
    text-align: center;
}

footer dd{
	margin: 0 0 0 1rem;
}
footer .inquiry dt{
	padding-top: .25rem;
}

footer .inquiry > dt{
	padding-right: 1.25rem;
	border-right: var(--text--color) 1px solid;
	margin-right: 1rem;
}

/**--------------------------------------
	02. CONTENTS
---------------------------------------**/
.contents {
	padding: 2rem 2rem 3rem;
}

.main-img + .contents {
	padding-top: 1rem;
}

.main-img img {
    width: 100%;
}

/* Title */
.title--sec1,
.title--sec2,
.title--sec3,
.title--sec4 {
	line-height: 1.5;
}

.title--sec1 {
	font-size: 2rem;
    margin: 1rem 0 2rem;
}

.title--sec2 {
	font-size: 1.5rem;	
	padding: 0.75rem 1rem 0.75rem 3rem;
	margin-bottom: 2rem;
    border-bottom: 2px solid var(--yellow);
	position: relative;
}

.title--sec2:before,
.title--sec2:after {
	position: absolute;
  	content: '';
  	width: 1rem;
  	height: 1rem;
  	top: 1.25rem;
	border-radius: 1rem;
}
.title--sec2:before {
  	border: 1px solid var(--yellow);
  	left: 12px;
}
.title--sec2:after {
  left: 18px;
  background: rgb(248, 218, 106, 0.5);
}

/*.title--sec3 {
    font-size: 1.25rem;
    padding: .5rem 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--main--color);
}

.title--sec4 {
	font-size: 1.15rem;
    margin-bottom: .5rem;
}*/



/*-- 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
---------------------------------------**/
.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;
}


/*----- 03-01. LIST -----**/
/*日付用*/
.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;
}


/*----- 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: var(--sub--color);
	text-align: center;
    border: 1px solid #aaa;
}

.tbl--list {
	border-collapse: separate;
	border-spacing: 0 .75rem;
}

.tbl--list tr th {
	background-color: var(--sub--color);
    padding: .25em 1em;
}

.tbl--list tr td {
	padding-left: 1em;
}

.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;
}



/*----- 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: #19448e;
	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;
    }
}