@charset "utf-8";
/* CSS Document */

/* base
-----------------------------------------------*/
/* ========== universal reset ========== */
/* ========== base style ========== */

/* common parts
-----------------------------------------------*/
/* ========== text ========== */
/* ========== border ========== */
/* ========== float ========== */
/* ========== display ========== */
/* ========== position ========== */
/* ========== overflow ========== */
/* ========== width ========== */
/* ========== margin ========== */
/* ========== device displaying ========== */
/* ========== animation for ScrollTrigger.min.js  ========== */

/* other style
-----------------------------------------------*/



/* base
-----------------------------------------------*/
/* ========== universal reset ========== */
/**
* html5doctor.com Reset Stylesheet v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/)
* Richard Clark (http://richclarkdesign.com)
* http://cssreset.com
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
button, input, select, textarea,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
margin:0;
padding:0;
border:0;
outline:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
}
body { line-height:1; }
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
display:block;
}
nav ul { list-style:none; }
blockquote, q {
quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content:'';
content:none;
}
a {
margin:0;
padding:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
}


/* ========== base style ========== */
* { box-sizing: border-box; }

html { height: 100%; }

body {
height: 100%;
min-height: 100%;
background: #e5e7e4;
color: #666;
font-size: 3.733333vw;
font-family: "Noto Sans JP", sans-serif;
font-optical-sizing: auto;
font-style: normal;
font-weight: 500;
font-feature-settings: "palt";
letter-spacing: 0.075em;
}
@media (min-width:375px){
	body {
	font-size: 14px;
	}
}

a:link,
a:visited {
color: #666;
text-decoration: none;
}

div,p,h1,h2,h3,h4,h5,h6,li,dt,dd,th,td {
line-height: 100%;
font-family: "Noto Sans JP", sans-serif;
font-style: normal;
font-optical-sizing: auto;
font-weight: 500;
font-feature-settings: "palt";
letter-spacing: 0.075em;
}

div, article { box-sizing: border-box; }

ol, ul { list-style:none; }

img, picture, video {
width: 100%;
height: auto;
display: block;
margin-left: auto;
margin-right: auto;
}



/* common parts
-----------------------------------------------*/
/* ========== text ========== */
/* align */
.al_left { text-align: left; }
.al_center { text-align: center; }
.al_right { text-align: right; }

/* size */
.fs8 { font-size: 2.133333vw; }
.fs9 { font-size: 2.4vw; }
.fs10 { font-size: 2.666666vw; }
.fs11 { font-size: 2.933333vw; }
.fs12 { font-size: 3.2vw; }
.fs13 { font-size: 3.466666vw; }
.fs14 { font-size: 3.733333vw; }
.fs15 { font-size: 4vw; }
.fs16 { font-size: 4.266666vw; }
.fs17 { font-size: 4.533333vw; }
.fs18 { font-size: 4.8vw; }
.fs20 { font-size: 5.3333333vw; }
@media (min-width:375px){
	.fs8 { font-size: 8px; }
	.fs9 { font-size: 9px; }
	.fs10 { font-size: 10px; }
	.fs11 { font-size: 11px; }
	.fs12 { font-size: 12px; }
	.fs13 { font-size: 13px; }
	.fs14 { font-size: 14px; }
	.fs15 { font-size: 15px; }
	.fs16 { font-size: 16px; }
	.fs17 { font-size: 17px; }
	.fs18 { font-size: 18px; }
	.fs20 { font-size: 20px; }
}

/* weight */
.fw200 { font-weight: 200 !important; }
.fw300 { font-weight: 300 !important; }
.fw400 { font-weight: 400 !important; }
.fw500 { font-weight: 500 !important; }
.fw600 { font-weight: 600 !important; }
.fw700 { font-weight: 700 !important; }
.fw800 { font-weight: 800 !important; }
.fw900 { font-weight: 900 !important; }

/* line height */
.lh100 { line-height: 100%; }
.lh120 { line-height: 120%; }
.lh130 { line-height: 130%; }
.lh140 { line-height: 140%; }
.lh150 { line-height: 150%; }
.lh160 { line-height: 160%; }
.lh170 { line-height: 170%; }
.lh180 { line-height: 180%; }
.lh190 { line-height: 190%; }
.lh200 { line-height: 200%; }
.lh210 { line-height: 210%; }
.lh225 { line-height: 225%; }

/* letter space */
.ltrspace0 { letter-spacing: 0; }
.ltrspace0025 { letter-spacing: 0.025em; }
.ltrspace005 { letter-spacing: 0.05em; }
.ltrspace0075 { letter-spacing: 0.075em; }
.ltrspace01 { letter-spacing: 0.1em; }
.ltrspace0125 { letter-spacing: 0.125em; }
.ltrspace015 { letter-spacing: 0.15em; }

.deco_line { text-decoration: underline !important; }


/* ========== float ========== */
/* clearfix */
.clearfix:before,
.clearfix:after {
display: table;
content: " ";
}
.clearfix:after { clear: both; }

/* float */
.float_left { float: left; }
.float_right { float: right; }


/* ========== display ========== */
.disp_block { display: block !important;}
.disp_iblock { display: inline-block !important;}
.disp_inline { display: inline !important;}
.disp_none { display: none;}
.disp_flex { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; }


/* ========== position ========== */
.posi_relative { position: relative !important; }
.posi_absolute { position: absolute !important; }
.posi_fixed { position: fixed !important; }


/* ========== overflow ========== */
.overflow_hidden { overflow: hidden !important; }


/* ========== margin ========== */
/* margin-auto */
.mx_auto { margin-left: auto; margin-right: auto; }


/* ========== device displaying ========== */
.sp_none{ display: none; }
@media (min-width:768px){.sp_none{display: block;} .tab_none { display: none; }}
.sp_only{ display: block; }
@media (min-width:768px){.sp_only{display: none;}}
.spc_none{ display: block; }
@media (min-width:1199px){.pc_none{display: block;}}
.pc_only{ display: none; }
@media (min-width:1100px){.pc_none{display: none;}
.pc_only{display: block;}
.tab_none{ display: block; }
}


/* ========== animation for ScrollTrigger.min.js  ========== */
.invisible {
transition: opacity 1s ease;
opacity: 0.0;
}
.visible {
transition: opacity 1s ease;
opacity: 1.0;
}



/* other style
-----------------------------------------------*/
body {
background: url("../images/bg.jpg") center center / cover;
background-attachment: fixed;
}
body.limitedpage {
background: url("../images/bg-limited.jpg") center center / cover;
background-attachment: fixed;
}
body.limitedpage.forme {
background: #e1e1e1;
}
.allwrapper { /* Xscroll bar hidden */
position: relative;
width: 85%;
max-width: 350px;
padding-top: 50px;
padding-bottom: 50px;
overflow: hidden;
}

.profileimg {
width: 80px;
height: 80px;
margin-bottom: 20px;
border-radius: 40px;
overflow: hidden;
}

.intro {
background: rgb(255, 255, 255, 0.7);
margin-bottom: 50px;
padding: 30px;
border-radius: 10px;
}
.limitedpage .intro {
background: rgb(255, 255, 255, 0.8);
}

.notice {
margin-top: 30px;
}
.notice li {
margin-top: 7px;
line-height: 160%;
color: #da1b1b;
}
.notice li a {
text-decoration: underline;
}

.secbox {
border-top: 1px solid #fff;
}
.secbox:last-child {
border-bottom: 1px solid #fff;
}
.acordion_btn {
cursor: pointer;
}
.accordion01 {
padding: 15px 0;
color: #fff;
}
.accordion01 img {
width: 44px;
vertical-align: middle;
margin-right: 10px;
}
.secbox_inner01 {
padding-bottom: 20px;
}
.secbox_notice {
padding: 15px;
background: rgb(255, 255, 255, 0.5);
}
.limitedpage .secbox_notice {
background: rgb(255, 255, 255, 0.8);
}
.secbox_notice li {
color: #da1b1b;
}
.listwrapper {
margin-top: 20px
}
.listwrapper .acordion_btn {
margin-bottom: 15px;
color: #fff;
text-decoration: underline;
}
.listbox {
margin-top: 20px;
margin-bottom: 30px;
}
.listbox li + li {
margin-top: 15px;
}
.listbox li a {
align-items: center;
padding: 5px 15px;
background: rgba(255, 255, 255, 0.8);
border-radius: 10px;
}
.limitedpage .listbox li a {
background: rgba(255, 255, 255, 0.9);
}
.listicon {
width: 35px;
margin-right: 10px;
}
.listtext {
width: calc(100% - 45px);
padding: 7px 0;
}
.listbox li a .new {
color: #ff0000;
}


.chart_title {
margin-top: 50px;
color: #fff;
}
.chart {
justify-content: flex-start;
align-items: stretch;
margin-top: 15px;
}
.chart li {
width: 32%;
margin-right: 2%;
margin-top: 7px;
background: rgba(255, 255, 255, 0.8);
border-radius: 10px;
}
.chart li:nth-child(3n) {
margin-right: 0;
}
.chart li.columnlast {
margin-right: 34%;
}
.chart a {
padding: 13px 5px 8px;
}
.chart a img {
width: 86%;
margin-bottom: 8px;
}

.golimited {
width: 50px;
margin-top: 50px;
height: 5px;
background: #fff;
}
