@charset "UTF-8";

/* CSS Document */

/*==================================================

container
=================================================*/

html {
	background: #FFF;
}
body {
    position: relative;
    left: 0;
}

/* sp menu setting */

.layer{
    display: none;
    width: 100%;
    height: 100%;
	position: fixed;
    top: 0;
	left: 0;
    background: rgba(0, 0, 0, 0.8);
	z-index: 1002!important;
}
body.open{
	width: 100%;
}

#wrapper {
	width: 100%;
	height: 100%;
	position: relative;
	margin: 0 auto;
}


/*==================================================

header
=================================================*/

header {
	width: 100%;
	position: -webkit-sticky;
    position: sticky;
	min-width: 100%;
	background-color: rgba(255, 255, 255, 1);
	top: 0;
	left: 0;
	z-index: 1003!important;
	
    border-top: 5px solid #e1142f;
	padding-top: 0;
	
	/* animation */
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

#header-inner {
	width: 100%;
	position: relative;
    
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}


.headerbg {
	background-color: rgba(255, 255, 255, 1);
}
.headerbg #header-inner {
    margin-top: 0;
}

/* header PC */

#header-logo {
	width: 25%;
	max-width: 427px;
	position: absolute;
    
    font-size: clamp(1rem, 1.3vw, 1.3rem);
	line-height: 0;
    
    top: 50%;
	left: 3%;
	-webkit-transform: translate(0, -50%); 
    transform: translate(0, -50%);
    
	z-index: 5!important;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

/* header img */

#header-logo img {
	width: 100%;
	max-width: 100%;
	height: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0;
}

/* header SP */

.header-spmenu {
	width: 160px;
	display: none;
    position: relative;
	text-align: center;
	cursor: pointer;
	margin: 0 0 0 auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    
    z-index: 3;
}
.header-spmenu img {
	width: 100%;
	max-width: 100%;
	height: auto;
}



/*==================================================

Navi
=================================================*/

/* header menu */

nav {
	width: 70%;
    max-width: 1100px;
	position: relative;
	margin: 0 0 0 auto;
}

nav > ul {
    width: 100%;
	position: relative;
    display: table;
}

nav > ul > li {
    display: table-cell;
    position: relative;
    vertical-align: middle;
}
nav > ul > li > a {
	width: 100%;
	display: block;
	color: #d1001c;
	font-size: clamp(1rem, 1vw, 1.4rem);
	text-align: center;
	line-height: 140%;
	text-decoration: none;
	padding: 3.5em 1.2em 3.5em;
}

nav > ul > li.entry {
    width: 8em;
    background-color: #e21631;
}
nav > ul > li.entry > a {
    color: #FFF;
}


@media (hover: hover) {
    nav > ul > li > a:hover {
        opacity: 1;
        color: #2c4ac1;
    }
    nav > ul > li:hover > a {
        color: #000;
    }
    nav > ul > li.entry > a:hover {
        color: #FFF;
        background-color: #e21631;
    }
}
nav > ul > li > a br {
	display: none;
}

nav > ul > li > ul {  
	width: 200%;
    height: 0;
    overflow: hidden;
    position: absolute;
    visibility: hidden;
    text-align: center;
    border-radius: 0 0 5px 5px;
    opacity: 0;
	background-color: rgba(255, 255, 255, 1);
    
    webkit-transition: all .2s ease;
	transition: all .2s ease;
    
	left: 0;
    padding: 0 5% 0;
    
    z-index: 1;
}
*::-ms-backdrop, nav > ul > li > ul {
    top: 125px;
}

/* サブメニュー表示設定 */

nav > ul > li:hover ul {
    height: initial;
    height: auto;
  	visibility: visible;
    padding: 10px 5% 10px;
	opacity: 1;
    z-index: 2;
}


/* サブメニュー詳細設定 */

nav > ul > li > ul li {
	width: 100%;
}
nav > ul > li > ul li a {
	width: 100%;
	display: block;
	font-size: clamp(1rem, 1.4vw, 1.4rem);
	color: #000;
	text-align: left;
    line-height: 140%;
    background-image: url("../images/arrow_g.png");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 8px;
	text-decoration: none;
    border-bottom: 1px solid #EEE;
	padding: 10px 0 10px 1em;
}
nav > ul > li > ul li:nth-last-of-type(1) a {
    border-bottom: none;
}
nav > ul > li > ul li p {
    width: 100%;
	display: block;
	font-size: clamp(1rem, 1.4vw, 1.4rem);
	color: #000;
	text-align: left;
    line-height: 140%;
	text-decoration: none;
    background-color: #EEE;
	padding: 10px 0 10px 1em;
}

@media (hover: hover) {
    nav > ul > li > ul li a:hover {
        opacity: 1;
        color: #09238d;
        background-color: #EFEFEF;
    }
    nav > ul > li > ul li a:hover img {
        opacity: .5;
    }
}

/*  Breadcrumb Navi  */

.p-navi {
    width: 100%;
    background-color: #EEE;
}
.p-navi ul {
    width: 90%;
    max-width: 1280px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    
    margin: 0 auto;
    padding: 12px 0;
}
.p-navi ul li {
    font-size: 1.3rem;
    line-height: 140%;
    background-image: url("../../images/p_navi_arrow.png");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: auto;
    padding: 0 2em 0 1em;
}
.p-navi ul li:nth-last-of-type(1) {
    color: #666;
    background-image: none;
}

.close-button {
    width: 220px;
    cursor: pointer;
    font-size: 1.4rem;
    color: #FFF;
    text-align: center;
    background-color: #666;
    border-radius: 24px;
    margin: 20px auto 20px;
    padding: 10px 1em;

    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}


.pc-only {
	display: block;
}
.sp-only {
	display: none;
}


/*==================================================

contents
=================================================*/

#contents {
	width: 100%;
	position: relative;
    overflow: hidden;
	margin: 80px auto 120px;
	z-index: 5!important;
}
#contents-page {
    width: 100%;
	position: relative;
    overflow: hidden;
	margin: 0 auto 180px;
	z-index: 5!important;
}
.youtube {
	width: 100%;
    max-width: 680px;
	position: relative;
    margin: 80px auto 0;
}
.youtube::before {
    content:'';
    display: block;
    padding-top: 56.25%;
}
.youtube iframe {
    width: 100% !important;
	height: 100% !important;
	position: absolute;
	top: 0;
	right: 0;
}

.fl-box {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
    
}
.fl-box .txt {
    width: 48%;
}
.fl-box .photo {
    width: 48%;
    max-width: 480px;
}
.fl-box figure {
    width: 48%!important;
    max-width: 45%!important;
    margin: 5% 0 0;
}
.fl-box figure figcaption {
    font-size: 1.4rem!important;
    text-align: center!important;
    margin-top: 3%;
}
.fl-box figure img {
    width: 100%!important;
	max-width: 100%!important;
	height: auto!important;
}

.dot-item {
	width: 100%;
	height: 100%;
	position: absolute;
	background: url('../images/dot.png') repeat;
	background-size: auto;
	top: 0;
	left: 0;
	z-index: 1;
}
.anchor-wrap {
	position: relative;
}
.anchor-item {
	width: 1px;
	height: 1px;
	position: absolute;
	top: -160px;
	left: 0;
}

/* cover */

.cover-l {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #222;
    top: 0;
    left: 0;
    z-index: 1;
    
    /* animation */
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}
.cover-r {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #222;
    top: 0;
    right: 0;
    z-index: 1;
    
    /* animation */
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

[data-aos="etc-anima"].aos-animate .cover-l {
    width: 0;
}
[data-aos="etc-anima"].aos-animate .cover-r {
    width: 0;
}

/* cf */
#contents:after,.contents-inner:after {
    content:" ";
    display:block;
    clear:both;
}

/* 印刷時 */

@media print {
	header {
		position: absolute;
	}
}


/*==================================================

button
=================================================*/

/* ボタン */

.button {
	width: 90%;
	max-width: 260px;
	display: block;
	position: relative;
	cursor: pointer;
    text-align: left;
    font-size: clamp(1.4rem, 1.8vw, 1.8rem);
    color: #FFF;
    background-color: #333;
    border: 2px solid #333;
    text-decoration: none;
    border-radius: 36px;
    padding: .6em 2em;
    
    overflow: hidden;
    
    /* animation */
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 3;
}
.button span {
    display: block;
    position: relative;
    z-index: 2;
}
.button::before {
    content: "";
    display: block;
    width: 13px;
    height: 14px;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(-120%, -50%); 
    transform: translate(-120%, -50%);
    background-image: url("../../images/arrow.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto;
    z-index: 1;
    
    /* animation */
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media (hover: hover) {
    .button:hover::before {
         background-image: url("../../images/arrow_b.png");
        -webkit-transform: translate(-80%, -50%); 
        transform: translate(-80%, -50%);
    }
    .button:hover {
        opacity: 1;
        color: #333;
        background-color: #FFF;
    }
}


[class^="button"] {
	
	/* animation */
	
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

/*==================================================

map
=================================================*/

.map {
	width: 100%;
	height: 400px;
	position: relative;
	overflow: hidden;
	margin: 0;
}
.map iframe,
.map object,
.map embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*==================================================

table
=================================================*/

.data-t-style {
    width: 100%;
    font-size: clamp(1.4rem, 1.6vw, 1.6rem);
    line-height: 140%;
	border-top: solid 1px #CCC;
	border-left: solid 1px #CCC;
}
.data-t-style tr:nth-of-type(even) {
    background-color: #e3e6f1;
}
.data-t-style th {
    width: 25%;
    color: #FFF;
	border-bottom: solid 1px #677ed8;
	border-right: solid 1px #677ed8;
	text-align: center;
	font-weight: normal;
	background: #2c4ac1;
	padding: .8em .5em;
}
.data-t-style td {
	border-bottom: solid 1px #CCC;
	border-right: solid 1px #CCC;
	text-align: left;
	padding: .8em 1em;
}



.paging {
	display: table;
	border-top: 1px solid #FFF;
	border-right: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	margin: 60px auto 0;
}
.paging li {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	border-left: 1px solid #FFF;
    background-color: #EEE;
}
.paging li:nth-of-type(1) {
    background-color: #999;
}
.paging li:nth-last-of-type(1) {
    background-color: #999;
}
.paging li a {
	display: block;
	color: #999;
	text-decoration: none;
	padding: .5em 1em;
}
.paging li:nth-of-type(1) a {
    color: #FFF;
}
.paging li:nth-last-of-type(1) a {
    color: #FFF;
}
.paging li a.active {
	color: #FFF;
	background-color: #2864c2;
}

@media (hover: hover) {
    .paging li a:hover {
        color: #FFF;
        background-color: #2864c2;
    }
}


/*==================================================

footer
=================================================*/

.pagetop {
	width: 150px;
	height: 45px;
	position: fixed;
	right: -150px;
	bottom: 50px;
	z-index: 1001!important;
	
	/* animation */
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.pagetop-visible {
	right: 0;
}
#footer-pagetop {
	width: 100%;
	max-width: 49px;
	text-align: center;
	margin: 5% auto 0;
}

footer {
	width: 100%;
    position: relative;
	background-color: #FFF;
    z-index: 6!important;
}
footer .footer-top {
	width: 100%;
    position: relative;
    background-image: url("../../images/index_12.png");
    background-position: left center;
    background-repeat: repeat-x;
    background-size: 833px 8px;
}
footer .footer-top::after {
    content: " ";
	display: block;
    position: absolute;
    width: 100%;
    height: 30%;
    background-color: #e9eef6;
    left: 0;
    bottom: 0;
    z-index: 1;
}
footer .footer-top .inner {
    width: 100%;
    max-width: 1400px;
    position: relative;
    margin: 0 auto;
}
footer .footer-top .button {
    max-width: 600px;
    font-size: clamp(1.8rem, 3vw, 3rem);
    text-align: center;
    background-color: #e21631;
    border: 4px solid #e21631;
    border-radius: 60px;
    margin: 0 auto;
    padding: 1em 1em;
    z-index: 4;
}

@media (hover: hover) {
    footer .footer-top .button:hover {
        color: #e21631;
    }
}
footer .footer-top .icon-l {
    width: 180px;
    height: 260px;
    position: absolute;
    background-image: url("../../images/index_07.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto;
    top: 50%;
    left: 5%;
	-webkit-transform: translate(0, -50%); 
	transform: translate(0, -50%);
    z-index: 3;
}
footer .footer-top .icon-r {
    width: 180px;
    height: 260px;
    position: absolute;
    background-image: url("../../images/index_09.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto;
    top: 50%;
    right: 5%;
	-webkit-transform: translate(0, -50%); 
	transform: translate(0, -50%);
    z-index: 3;
}

@media (hover: hover) {
    footer .footer-top .button:hover {
        background-color: #FFF;
    }
}
footer .footer-bottom {
    width: 100%;
    position: relative;
    background-color: #e9eef6;
    padding: 60px 0 100px;
}
footer .footer-bottom .inner {
    width: 90%;
    max-width: 1200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 auto;
}
footer .footer-bottom .inner .footer-logo {
    width: 30%;
    max-width: 340px;
    padding-top: 15px;
}
footer .footer-bottom .inner .footer-logo h1 {
    line-height: 60%;
}
footer .footer-bottom .inner .footer-logo h1 span {
    display: inline-block;
    font-size: clamp(1rem, 1.3vw, 1.3rem);
    vertical-align: middle;
}
footer .footer-bottom .inner .footer-logo h1 img {
    width: 100%;
	max-width: 100%;
	height: auto;
}
footer .footer-bottom .inner .footer-logo .link-b {
    width: 100%;
    max-width: 280px;
    display: block;
    color: #000;
    font-size: clamp(1.2rem, 1.6vw, 1.6rem);
    text-align: left;
    text-decoration: none;
    background-color: #FFF;
    background-image: url("../../images/arrow_b.png");
    background-position: right 15px center;
    background-repeat: no-repeat;
    background-size: auto;
    border-radius: 40px;
    margin-top: 40px;
    padding: .8em 2em;
}

@media (hover: hover) {
    footer .footer-bottom .inner .footer-logo .link-b:hover {
        opacity: 1;
        color: #FFF;
        background-color: #333;
    }
}
footer .footer-bottom .inner .footer-logo img {
    width: 100%;
	max-width: 100%;
	height: auto;
}
footer .footer-bottom .inner .footer-menu {
    width: 65%;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
}
footer .footer-bottom .inner .footer-menu > li.full {
    width: 100%;
    padding-left: 20%;
}
footer .footer-bottom .inner .footer-menu > li {
    font-size: clamp(1.2rem, 1.4vw, 1.4rem);
    line-height: 140%;
}
footer .footer-bottom .inner .footer-menu li a {
    display: block;
    color: #000;
    text-decoration: none;
    margin: 15px 0 0 1.5em;
}
footer .footer-bottom .inner .footer-menu li ul li a {
    font-size: clamp(1rem, 1.2vw, 1.4rem);
    color: #FFF;
    line-height: 140%;
}
footer .footer-bottom .inner .footer-menu li ul li a::before {
    content: "- ";
	display: inline;
}
footer .footer-bottom .copyright {
    width: 90%;
    max-width: 1200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;

    -webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
    margin: 60px auto 0;
}
footer .footer-bottom .copyright p,footer .footer-bottom .copyright a {
    width: 50%;
    font-size: clamp(1rem, 1.2vw, 1.4rem);
    line-height: 160%;
    color: #000;
}
footer .footer-bottom .copyright p span {
    display: block;
    margin-bottom: 10px;
}
footer .footer-bottom .copyright p:nth-last-of-type(1) {
    text-align: right;
    padding-top: 1em;
}


/*==================================================

size m
=================================================*/

@media only screen and (min-width:1px) and (max-width: 1180px) {
    
    nav > ul > li > a br {
        display: block;
    }
    
}

@media only screen and (min-width:1px) and (max-width: 768px) {
	
	#wrapper {
		width: 100%;
		min-width: 100%;
        overflow: hidden;
	}
	
	/*==================================================
	
	header
	=================================================*/
	
	header {
		width: 100%;
		min-width: 100%;
		position: fixed;
		background-color: rgba(255, 255, 255, 1);
		top: 0;
		
		padding-top: 0;
	}
    .side-item {
        display: none;
    }
    .side-navi {
        display: none;
    }
	#header-inner {
		width: 100%;
		position: relative;
		margin: 0 auto;
        padding: 0;
	}
    .headerbg #header-inner {
        padding: 0;
    }
    
	#header-logo {
        width: 50%;
        position: absolute;
        max-width: 320px;
        text-align: left;
        line-height: 100%;
        top: 50%;
        left: 3%;
        -webkit-transform: translate(0, -50%); 
        transform: translate(0, -50%);
    }
    
	.headerbg {
		background-color: rgba(255, 255, 255, 1);
	}
    .headerbg #header-logo {
        width: 50%;
        max-width: 280px;
        position: absolute;
    }
    #header-logo img {
        width: 100%;
        max-width: 100%;
        height: auto;
        vertical-align: middle;
    }
	
    .header-spmenu {
        display: block;
        position: relative;
        text-align: center;
        cursor: pointer;
        margin: 0 -87px 0 auto;
    }
    .open .header-spmenu {
        margin: 0 0 0 auto;
    }
    .open .header-spmenu::after {
        content: " ";
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: url("../images/sp_menu_bar_close.png");
        background-position: left top;
        background-repeat: no-repeat;
        background-size: cover;
        top: 0;
        left: 0;
        z-index: 1;
    }
    
    .nav-white #header-logo {
        background-image: url("../../images/logo_b.png");
    }
    .nav-white nav > ul > li > a {
        color: #000;
    }

    .headerbg nav > ul > li > a {
        color: #000;
    }
    nav {
        /* モバイルメニュー幅 */
        width: 100%;
        height: 100vh;
        position: absolute;
        top: 60px;
        right: -110%;
        background-color: #FFF;
        margin: 0;
        padding: 0;
        z-index: 1003!important;

        /* animation */
        -webkit-transition: all 0.3s;
        transition: all 0.3s;

    }
    .open nav {
        right: 0;
    }
    .open nav > ul {
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
    }
    .open nav > ul::-webkit-scrollbar {
        width: 5px;
    }

    .open nav > ul::-webkit-scrollbar-track {
        border-radius: 0;
        background-color: #999;
    }

    .open nav > ul::-webkit-scrollbar-thumb {
        background-color: #666;
        border-radius: 0;
    }
    nav > ul {
        width: 100%;
        max-width: 100%;
        height: 100%;
        position: relative;
        display: block;
        margin: 0 auto;
        padding: 20px 5% 160px;
    }
    nav > ul > li {
        width: 100%;
        display: block;
        background-image: none;
        text-align: center;
        margin: 0;
    }
    nav > ul > li:hover ul {
        height: initial;
        height: auto;
        visibility: visible;
        padding: 0;
        opacity: 1;
        z-index: 2;
    }
    nav > ul > li > a {
        width: 100%;
        max-width: 480px;
        display: inline-block;
        font-size: 1.6rem;
        line-height: 180%;
        text-align: left;
        color: #000;
        text-decoration: none;
        border-top: 1px solid #CCC;
        background-image: url("../../images/arrow_b.png");
        background-position: right 10px center;
        background-repeat: no-repeat;
        background-size: auto;
        margin: 0;
        padding: 1em 1em;
    }
    nav > ul > li:nth-of-type(1) > a {
        border-top: none;
    }
    nav > ul > li.entry {
        width: 100%;
        display: block;
        text-align: center;
        background-color: transparent;
        margin: 0;
    }
    nav > ul > li.entry > a {
        width: 100%;
        max-width: 480px;
        display: inline-block;
        color: #FFF;
        border: none;
        background-color: #e21631;
        background-image: url("../../images/arrow.png");
        background-position: right 10px center;
        background-repeat: no-repeat;
        background-size: auto;
        margin: 0;
        padding: 1em 1em;
    }
    nav > ul > li > a span {
        display: inline-block;
    }
    nav > ul > li > a br {
        display: none;
    }

    nav > ul > li > ul {
        width: 100%;
        max-width: 480px;
        height: initial;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;

        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        
        position: relative;
        visibility: visible;
	    opacity: 1;
        border-top: 1px solid #CCC;
        background-color: transparent;
        background-image: none;
        border-radius: 0;
        margin: 0 auto;
        padding: .5em 0;
    }

    /* サブメニュー詳細設定 */
    
    nav > ul > li:hover ul {
        height: initial;
        height: auto;
        visibility: visible;
        padding: .5em 0;
        opacity: 1;
        z-index: 2;
    }
    
    nav > ul > li > ul li {
        width: initial;
        width: auto;
        width: 100%;
        display: block;
        margin: 0;
        padding: 0;
    }
    nav > ul > li > ul li.full {
        width: 100%;
    }
    nav > ul > li > ul li a {
        width: 100%;
        display: block;
        font-size: 1.4rem;
        color: #000;
        text-align: left;
        text-decoration: none;
        background-position: left 1.3em center;
        border: none;
        padding: .3em 2.3em;
    }
    nav > ul > li > ul li p {
        width: 100%;
        display: block;
        font-size: 1.4rem;
        color: #000;
        text-align: left;
        padding: .3em 2.3em;
    }
    nav > ul > li > ul li a br {
        display: none;
    }
    nav > ul > li > ul li a:hover {
        background-color: transparent;
    }
    
    /*  img */

    
    nav > ul > li > ul li a img {
        display: none;
    }
    .header-option {
        display: none;
    }
    .p-navi ul {
        width: 100%;
    }
    .p-navi ul li {
        font-size: 1.1rem;
        padding: 0 1.5em 0 .5em;
    }
    
	.sp-only {
		display: block;
	}
	.pc-only {
		display: none;
	}
	
	/*==================================================
	
	contents
	==================================================*/
	
    .fl-box {
        width: 100%;
        display: block;
    }
    .fl-box .txt {
        width: 100%;
    }
    .fl-box .photo {
        width: 100%;
        margin: 5% auto 0;
    }
    .fl-box figure {
        width: 100%!important;
        max-width: 100%!important;
        margin: 5% 0 0;
    }
    
	#contents {
		margin: 8% auto 12%;
	}
    #contents-page {
        margin: 0 auto 16%;
    }
    
	.anchor-item {
		top: -80px;
	}
	.button {
        text-align: center;
        padding: .6em 1em;
    }
    .button::before {
        width: 10px;
        height: 12px;
    }
    .paging {
        margin: 8% auto 0;
    }
    .paging li a {
        padding: .4em .8em;
    }
    
	/*==================================================
	
	map
	==================================================*/
	
	.map {
		width: 100%;
		height: 350px;
	}
	
	/*==================================================
	
	table
	==================================================*/
	
	.data-t-style {
        width: 100%;
        border: none;
    }
    .data-t-style th {
        width: 100%;
        display: block;
        color: #2c4ac1;
        border: none;

        background-color: #e3e6f1;
        padding: 1em 1em;
    }
    .data-t-style td {
        width: 100%;
        display: block;
        padding: 1em 0;
        border: none;
    }
    .data-t-style td span {
        color: #F00;
    }
    .data-t-style tr:nth-of-type(even) {
        background-color: transparent;
    }
    
	
	/*==================================================
	
	footer
	=================================================*/
	
    .pagetop {
        bottom: 100px;
    }
	.pagetop-visible {
		right: -100px;
	}
    
	footer {
        width: 100%;
        position: relative;
        background-color: #FFF;
        z-index: 6!important;
    }
    footer .footer-top {
        width: 100%;
        position: relative;
        background-image: url("../../images/index_12.png");
        background-position: left center;
        background-repeat: repeat-x;
        background-size: 833px 4px;
    }
    footer .footer-top::after {
        content: " ";
        display: block;
        position: absolute;
        width: 100%;
        height: 30%;
        background-color: #e9eef6;
        left: 0;
        bottom: 0;
        z-index: 1;
    }
    footer .footer-top .inner {
        width: 100%;
        max-width: 1400px;
        position: relative;
        margin: 0 auto;
    }
    footer .footer-top .button {
        width: 65%;
        text-align: center;
        background-color: #e21631;
        border: 4px solid #e21631;
        border-radius: 60px;
        margin: 0 auto;
        padding: .6em 1em;
        z-index: 4;
    }
    footer .footer-top .icon-l {
        width: 120px;
        height: 120px;
        position: absolute;
        background-image: url("../../images/index_07.png");
        background-position: center top;
        background-repeat: no-repeat;
        background-size: contain;
        top: 50%;
        left: -5%;
        -webkit-transform: translate(0, -50%); 
        transform: translate(0, -50%);
        z-index: 3;
    }
    footer .footer-top .icon-r {
        width: 120px;
        height: 120px;
        position: absolute;
        background-image: url("../../images/index_09.png");
        background-position: center top;
        background-repeat: no-repeat;
        background-size: contain;
        top: 50%;
        right: -5%;
        -webkit-transform: translate(0, -50%); 
        transform: translate(0, -50%);
        z-index: 3;
    }
    
    footer .footer-bottom {
        padding: 8% 0 100px;
    }
    footer .footer-bottom .inner {
        width: 90%;
        max-width: 1200px;
        display: block;
        margin: 0 auto;
    }
    footer .footer-bottom .inner .footer-logo {
        width: 100%;
        max-width: 300px;
        text-align: center;
        margin: 0 auto;
    }
    footer .footer-bottom .inner .footer-logo h1 img {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        vertical-align: middle;
        margin: 0 auto;
    }
    footer .footer-bottom .inner .footer-logo .link-b {
        width: 100%;
        display: block;
        text-align: center;
        text-decoration: none;
        margin: 30px auto 0;
        padding: 1.2em 1em;
    }
    footer .footer-bottom .inner .footer-menu {
        width: 100%;
        display: block;
        margin-top: 30px;
    }
    footer .footer-bottom .inner .footer-menu > li {
        width: 100%;
        max-width: 400px;
        text-align: left;
        font-size: clamp(1.4rem, 1.4vw, 1.6rem);
        border-bottom: 1px solid #CCC;
        margin: 0 auto;
    }
    footer .footer-bottom .inner .footer-menu > li.full {
        padding: 0 0 30px 0;
    }
    footer .footer-bottom .inner .footer-menu > li > a {
        display: block;
        text-align: left;
        text-decoration: none;
        background-image: url("../../images/arrow_b.png");
        background-position: right 10px center;
        background-repeat: no-repeat;
        background-size: 10px;
        margin: 0;
        padding: 20px .5em;
        
    }
    footer .footer-bottom .inner .footer-menu li ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;

        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }
    footer .footer-bottom .inner .footer-menu li ul li {
        width: 33.33%;
    }
    footer .footer-bottom .inner .footer-menu li ul li a {
        font-size: clamp(1.2rem, 1.2vw, 1.4rem);
        text-align: left;
    }
    footer .footer-bottom .copyright {
        width: 95%;
        max-width: 1200px;
        display: block;
        margin: 6% auto 0;
    }
    footer .footer-bottom .copyright p {
        width: 100%;
        font-size: 1.2rem;
        text-align: center;
    }
    footer .footer-bottom .copyright p:nth-last-of-type(1) {
        text-align: center;
    }
}

/*==================================================

size s
==================================================*/

@media only screen and (min-width:1px) and (max-width: 568px) {
	
	
	/*==================================================
	
	header
	==================================================*/

		
	/*==================================================
	
	Navi
	==================================================*/
	
	
	/*==================================================
	
	contents
	==================================================*/
	
	
	/*==================================================
	
	footer
	==================================================*/
	

}

@media only screen and (min-width:1px) and (max-width: 480px) {
	
	
	/*==================================================
	
	header
	==================================================*/

	
	/*==================================================
	
	Navi
	==================================================*/
	
	
	/*==================================================
	
	contents
	==================================================*/
	
	
	/*==================================================
	
	table
	==================================================*/
	
	
	/*==================================================
	
	footer
	==================================================*/
	
	
}