@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;
	
	padding-top: 0;
	
	transition: all 0.3s;
}

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

.headerbg {
	background-color: rgba(255, 255, 255, 1);
}
.headerbg nav > ul > li > a {
    
}

/* cf */

#header-inner:after,#header-logo-wrapper:after {
    content:" ";
    display:block;
    clear:both;
}

/* header PC */

#header-logo {
	width: 24%;
	max-width: 370px;
	position: absolute;
    
    font-size: clamp(1rem, 1.3vw, 1.3rem);
    
	line-height: 0;
    
    top: 50%;
	left: 3%;
	-webkit-transform: translate(0, -55%); 
    transform: translate(0, -55%);
    
	z-index: 5!important;
    
    transition: all 0.3s;
}
#header-logo a span {
    display: inline-block;
    color: #FFF;
    font-weight: 500;
    text-decoration: none;
    vertical-align: middle;
}
.headerbg #header-logo {
	
}

/* header img */

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

/* header SP */

.header-spmenu {
	width: 65px;
    height: 60px;
    display: none;
    position: relative;
    overflow: hidden;
	text-align: center;
	cursor: pointer;
    background-color: #30a9ac;
	margin: 0 0 0 auto;
    z-index: 1006;
}
.header-spmenu span {
    width: 60%;
    height: 4px;
    display: block;
    position: absolute;
    background-color: #fff;
    transform-origin: center center;
    transition: all .3s;
    top: 28%;
    left: 20%;
    transform: translate(0, -50%);
    
}
.header-spmenu span:nth-of-type(2) {
    top: 50%;
    transform: translate(0, -50%);
}
.header-spmenu span:nth-of-type(3) {
    top: 72%;
    transform: translate(0, -50%);
}
.open .header-spmenu span:nth-of-type(1) {
    top: 50%;
    left: 20%;
	transform: translate(0, -50%) rotate(-45deg);
}
.open .header-spmenu span:nth-of-type(2) {
    opacity: 0;
}
.open .header-spmenu span:nth-of-type(3) {
    top: 50%;
    left: 20%;
	transform: translate(0, -50%) rotate(45deg);
}


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

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

/* side menu */

.side-item {
	width: 50px;
	height: 165px;
	position: fixed;
	top: 220px;
	right: 0;
	z-index: 10!important;
}
.side-navi {
    width: 50px;
    height: 165px;
    position: absolute;
    top: 100px;
    right: 0;
    z-index: 2;
}

/* header menu */

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

nav > ul {
	position: relative;
	display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

nav > ul > li {
    position: relative;
}
nav > ul > li > a {
	width: 100%;
	display: block;
	color: #000;
	font-size: clamp(1rem, 1.1vw, 1.6rem);
	text-align: center;
	line-height: 140%;
	text-decoration: none;
	padding: 3vw 0;
    
}
nav > ul > li > a:hover {
    opacity: 1;
	color: #009081;
}
nav > ul > li:hover > a {
    color: #009081;
}

nav > ul > li.entry-link > a {
	width: 100%;
	display: block;
	color: #FFF;
    padding: 1.8vw 0;
}
nav > ul > li.entry-link > a span {
	width: 100%;
	display: block;
	color: #FFF;
    border: 2px solid #30a9ac;
	background-color: #30a9ac;
    padding: 1.2vw 3em;

    transition: all 0.3s;
}
nav > ul > li.entry-link > a:hover span {
    color: #30a9ac;
	background-color: #FFF;
}


@media only screen and (min-width:1400px) {
    
    nav > ul > li > a {
        padding: 40px 0;
    }
    nav > ul > li.entry-link > a {
        padding: 26px 0;
    }
    nav > ul > li.entry-link > a span {
        padding: 14px 3em;
    }
}

nav > ul > li > ul {  
	width: 18vw;
    max-width: 200px;
    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: 50%;
	transform: translate(-50%, 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: 0 5% 10px;
	opacity: 1;
    z-index: 2;
}
nav > ul > li.ud:hover::before {
    content: " ";
	display: block;
    position: absolute;
    width: 12px;
    height: 12px;
    background-image: url("../../images/arrow_bu.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 2%;
	left: 50%;
	-webkit-transform: translate(-50%, -100%); 
	transform: translate(-50%, -100%);
}

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

nav > ul > li > ul li {
	width: 100%;
}
nav > ul > li > ul li a {
	width: 100%;
	display: block;
	font-size: clamp(1rem, 1.2vw, 1.4rem);
	color: #000;
	text-align: center;
    line-height: 140%;
	text-decoration: none;
    
    /*background-image: url("../../images/arrow_b2.png");
    background-position: right 5px center;
    background-repeat: no-repeat;
    background-size: .4em;*/
    
    padding: 1.2em .8em 1.2em;
    
    border-bottom: 1px solid #EEE;
    
    transition: all 0.3s;
    /*padding: 12px .5em 12px;*/
}
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.2vw, 1.4rem);
	color: #000;
	text-align: center;
    line-height: 140%;
	text-decoration: none;
    background-color: #EEE;
	padding: 1.2em .8em 1.2em;
}
nav > ul > li > ul li a:hover {
    opacity: 1;
	color: #009081;
    background-color: #EFEFEF;
}
nav > ul > li > ul li a:hover img {
    opacity: .5;
}

.close-button {
    width: 220px;
    cursor: pointer;
    font-size: 1.4rem;
    color: #666;
    text-align: center;
    background-color: #FFF;
    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!important;
}


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

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

#contents {
	width: 100%;
	position: relative;
	margin: 0 auto 100px;
	z-index: 5!important;
}
#contents-inner {
    width: 100%;
	position: relative;
	margin: 80px auto 100px;
	z-index: 5!important;
}
.youtube {
	width: 100%;
	position: relative;
}
.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 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: -120px;
	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: 300px;
	display: block;
	position: relative;
	cursor: pointer;
    text-align: center;
    font-size: clamp(1.4rem, 1.6vw, 1.6rem);
    
    color: #FFF;
    background-color: #000;
    text-decoration: none;
    border-radius: 36px;
    padding: .8em 1em;
    
    overflow: hidden;
    
    /* animation */
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 1;
}
.button span {
    display: block;
    position: relative;
    z-index: 2;
}
.button.gr {
    color: #FFF;
    background-color: #666;
}
.button::before {
    content: "";
    display: block;
    width: 10px;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(-220%, -50%); 
    transform: translate(-220%, -50%);
    background-image: url("../../images/arrow.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    
    /* animation */
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.button:hover::before {
    -webkit-transform: translate(-180%, -50%); 
    transform: translate(-180%, -50%);
}
.button::after {
    content: "";
    display: block;
    width: 0;
    background-color: #FFF;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%); 
    transform: translate(-50%, -50%);
    
    border-radius: 50%;
    padding: 0;
    
    /* animation */
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    z-index: 1;
}
.button:hover::after {
    width: 100%;
    padding: 50%;
}
.button:hover {
    opacity: 1;
    color: #000;
}

.button-g {
    width: 100%;
    max-width: 600px;
    display: block;
    position: relative;
    overflow: hidden;
    color: #FFF;
    font-size: clamp(1.4rem, 1.8vw, 1.8rem);
    text-align: center;
    text-decoration: none;
    background: linear-gradient(90deg, #00ff6c, #009fbc);
    border-radius: 80px;
    margin: 0 auto;
    padding: 1.2em 1em;
    transition: all 0.3s;
    z-index: 2;
}
.button-g::before {
    content: " ";
	display: block;
    position: absolute;
    width: 15px;
    height: 1.5em;
    background-image: url("../../images/arrow.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    top: 50%;
	right: 5%;
	-webkit-transform: translate(0, -50%); 
	transform: translate(0, -50%);
    z-index: 1;
}
.button-g::after {
    content: " ";
	display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
    transform: skewX(-30deg);
    top: 0;
    left: -110%;
    transition: all 0.3s;
}
.button-g:hover::after {
    left: 85%;
}
.button-g:hover {
    opacity: 1;
}
.button-g span {
    width: 90%;
    position: relative;
    display: block;
    margin: 0 auto;
    z-index: 3;
}

[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: 160%;
}
.data-t-style tr:nth-of-type(odd) {
    background-color: #e1edf2;
}
.data-t-style th {
    width: 25%;
    color: #FFF;
	text-align: center;
	font-weight: normal;
    border-left: 3px solid #006a7d;
	background: #3bbfc2;
	padding: 1em 1em;
}
.data-t-style tr:nth-of-type(odd) th {
    background-color: #30a9ac;
}
.data-t-style td {
	text-align: left;
	padding: 1em 1em;
}

.list-tstyle {
	width: 100%;
    font-size: clamp(1.4rem, 1.6vw, 1.6rem);
	background-color: #FFF;
}
.list-tstyle th {
	width: 9em;
	text-align: left;
	font-weight: normal;
	border-bottom: 1px solid #ededed;
	padding: 1em 1.2em;
}
.list-tstyle td {
	text-align: left;
	border-bottom: 1px solid #ededed;
	padding: 1em 1.2em;
}
.list-tstyle tr:nth-of-type(odd) {
	background-color: #f1f1f1;
}

.paging {
	display: table;
	border-top: 1px solid #FFF;
	border-right: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
    font-size: 1.6rem;
	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;
}
.paging li a:hover {
	color: #FFF;
	background-color: #2864c2;
}


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

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

.pagetop {
	width: 150px;
	height: 45px;
	position: fixed;
	right: -150px;
	bottom: 200px;
	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;
    padding: 20px 0;
}
footer .footer-top::before {
    content: " ";
	display: block;
    position: absolute;
    width: 100%;
    height: 49%;
    background-color: #30a9ac;
    left: 0;
    bottom: 0;
    z-index: 1;
}
footer .footer-top a {
    width: 100%;
    max-width: 600px;
    display: block;
    position: relative;
    overflow: hidden;
    color: #FFF;
    font-size: clamp(1.8rem, 2.4vw, 2.4rem);
    text-align: center;
    text-decoration: none;
    border: 3px solid #FFF;
    background: linear-gradient(90deg, #00ff6c, #009fbc);
    border-radius: 80px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    margin: 0 auto;
    padding: 40px 1em;
    transition: all 0.3s;
    z-index: 2;
}
footer .footer-top a::before {
    content: " ";
	display: block;
    position: absolute;
    width: 25px;
    height: 37px;
    background-image: url("../../images/arrow.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    top: 50%;
	right: 5%;
	-webkit-transform: translate(0, -50%); 
	transform: translate(0, -50%);
    z-index: 1;
}
footer .footer-top a::after {
    content: " ";
	display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
    transform: skewX(-30deg);
    top: 0;
    left: -110%;
    transition: all 0.3s;
}
footer .footer-top a:hover::after {
    left: 85%;
}
footer .footer-top a:hover {
    opacity: 1;
}
footer .footer-top a span {
    width: 90%;
	max-width: 100px;
    position: relative;
    display: block;
    margin: 0 auto;
    z-index: 3;
}
footer .footer-top img {
    width: 100%;
	max-width: 100%;
	height: auto;
}

footer .footer-bottom {
    width: 100%;
    position: relative;
    background-color: #30a9ac;
    padding: 40px 0 60px;
}
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: 240px;
    color: #FFF;
}
footer .footer-bottom .inner .footer-logo h1 {
    max-width: 200px;
    line-height: 60%;
    text-align: center;
    margin: 0 auto;
}
footer .footer-bottom .inner .footer-logo h1 span {
    display: block;
    font-size: clamp(1rem, 1.4vw, 1.4rem);
    margin-top: 10px;
}
footer .footer-bottom .inner .footer-logo .link-b {
    width: 100%;
    max-width: 240px;
    display: block;
    color: #30a9ac;
    font-size: clamp(1rem, 1.4vw, 1.4rem);
    text-align: center;
    text-decoration: none;
    background-color: #FFF;
    background-image: url("../images/blank_icon.png");
    background-position: right 15px center;
    background-repeat: no-repeat;
    background-size: auto;
    border-radius: 40px;
    margin: 20px auto 0;
    padding: .8em 1em;
}
footer .footer-bottom .inner .footer-logo .link-t {
    display: block;
    color: #FFF;
    font-size: clamp(1rem, 1.4vw, 1.4rem);
    text-align: center;
    text-decoration: none;
    margin: 20px auto 0;
}
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: space-around;
}
footer .footer-bottom .inner .footer-menu > li {
    width: 30%;
    font-size: clamp(1.4rem, 1.8vw, 1.8rem);
    text-align: left;
    line-height: 140%;
    margin-bottom: 1em;
}
footer .footer-bottom .inner .footer-menu li a,footer .footer-bottom .inner .footer-menu li p {
    display: block;
    color: #FFF;
    text-decoration: none;
    margin-bottom: .5em;
}
footer .footer-bottom .inner .footer-menu li p {
    color: #666;
}
footer .footer-bottom .inner .footer-menu li ul {
    margin-top: .8em;
}
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;
    margin: 60px auto 0;
}
footer .footer-bottom .copyright p {
    font-size: clamp(1rem, 1.2vw, 1.4rem);
    line-height: 200%;
    color: #FFF;
    text-align: left;
}
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: 1080px) {


    
}

@media only screen and (min-width:1px) and (max-width: 768px) {
	
	#wrapper {
		width: 100%;
		min-width: 100%;
        overflow-x: clip;
	}
	
	/*==================================================
	
	header
	=================================================*/
	
	header {
		width: 100%;
		min-width: 100%;
		background-color: rgba(255, 255, 255, 1);
		top: 0;
		
		padding-top: 0;
	}
	#header-inner {
		width: 100%;
		position: relative;
		margin: 0 auto;
        padding: 0;
	}
    .headerbg #header-inner {
        padding: 0;
    }
    
	#header-logo {
        width: 50%;
        max-width: 280px;
        min-width: 180px;
        position: absolute;
        
        text-align: left;
        line-height: 100%;
        top: 50%;
        left: 5%;
        -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;
    }
    
    /* side menu */

    .side-item {
        display: none;
    }
    .side-navi {
        display: none;
    }
	
    .header-spmenu {
        display: block;
    }
    
    .headerbg nav > ul > li > a {
        color: #000;
        padding: 1em 0;
    }
    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%;
        max-width: 480px;
        display: block;
        background-image: none;
        text-align: center;
        margin: 0 auto;
    }
    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: 100%;
        display: inline-block;
        font-size: clamp(1.4rem, 1.6vw, 1.6rem);
        line-height: 180%;
        text-align: left;
        color: #000;
        text-decoration: none;
        /*background-image: url("../../images/arrow_b.png");
        background-position: right center;
        background-repeat: no-repeat;
        background-size: 10px;*/
        border-top: 1px solid #DDD;
        margin: 0;
        padding: 1em 0;
    }
    nav > ul > li > a:hover {
        color: #000;
        opacity: 1;
    }
    nav > ul > li > a br {
        display: none;
    }

    nav > ul > li > ul {
        width: 100%;
        max-width: 100%;
        height: initial;
        height: auto;
        
        position: relative;
        visibility: visible;
	    opacity: 1;
        border-top: 1px solid #DDD;
        background-color: #f4fafd;
        background-image: none;
        border-radius: 0;
        
        left: 0;
	    transform: translate(0, 0);
        
        margin: 0 auto;
        padding: 0;
    }

    /* サブメニュー詳細設定 */
    
    nav > ul > li:hover ul {
        height: initial;
        height: auto;
        visibility: visible;
        opacity: 1;
        z-index: 2;
    }
    nav > ul > li.ud:hover::before {
        content: " ";
        display: none;
    }
    nav > ul > li > ul li {
        width: initial;
        width: auto;
        width: 100%;
        display: block;
        margin: 0;
        padding: 0;
    }
    nav > ul > li > ul li a,nav > ul > li > ul li p  {
        width: 100%;
        display: block;
        font-size: 1.4rem;
        color: #000;
        text-align: left;
        border-bottom: 1px solid #FFF;
        padding: .6em 2em;
    }
    nav > ul > li > ul li p  {
        color: #999;
    }
    
    nav > ul > li.entry-link {
        margin: 0 auto;
    }
    nav > ul > li.entry-link > a {
        width: 100%;
        max-width: 100%;
        display: inline-block;
        color: #FFF;
        padding: 0;
    }
    nav > ul > li.entry-link > a span {
        width: 100%;
        display: block;
        color: #FFF;
        font-size: 2rem;
        text-align: center;
        border: 2px solid #30a9ac;
        background-color: #30a9ac;
        padding: 1em 0;

        transition: all 0.3s;
    }
    nav > ul > li.entry-link > a:hover span {
        color: #30a9ac;
        background-color: #FFF;
    }
    
    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;
    }
    
    .head-option {
        display: none;
    }
    
	.sp-only {
		display: block!important;
	}
	.pc-only {
		display: none;
	}
	
	/*==================================================
	
	contents
	==================================================*/
	
    .fl-box {
        width: 100%;
        display: block;
    }

    .fl-box figure {
        width: 100%!important;
        max-width: 100%!important;
        margin: 5% 0 0;
    }
    
	#contents {
		margin: 0 auto 10%;
	}
    #contents-inner {
		margin: 8% auto 10%;
	}
    
	.anchor-item {
		top: -80px;
	}
	.button {
        padding: .6em 1em;
    }
    .l-button {
        background-position: right 20px center;
        padding: 20px 1em;
    }
    .paging {
        margin: 8% auto 0;
    }
    .paging li a {
        padding: .4em .8em;
    }
    
	/*==================================================
	
	map
	==================================================*/
	
	.map {
		width: 100%;
		height: 350px;
	}
	
	/*==================================================
	
	table
	==================================================*/
	
	.data-t-style {
        width: 100%;
    }
    .data-t-style th {
        width: 100%;
        display: block;
        padding: 1.2em 1.2em;
    }
    .data-t-style tr:nth-of-type(odd) th {
        background-color: #3bbfc2;
    }
    .data-t-style td {
        width: 100%;
        display: block;
        padding: 1.2em 0 1.5em;
        border-left: none;
    }
    .data-t-style tr:nth-of-type(odd) {
        background-color: transparent;
    }
    
	
	/*==================================================
	
	footer
	=================================================*/
	
    .pagetop {
        bottom: 100px;
    }
	.pagetop-visible {
		right: -100px;
	}
    
	footer {
        width: 100%;
        position: relative;
        z-index: 6!important;
    }
    footer .footer-top {
        width: 100%;
        display: block;
        padding: 5% 5%;
    }
    footer .footer-top a {
        margin: 0 auto;
        padding: 1.2em 1em;
    }
    footer .footer-top a span {
        width: 90%;
        max-width: 70px;
    }
    footer .footer-bottom {
        padding: 4% 0 80px;
    }
    footer .footer-bottom .inner {
        width: 90%;
        max-width: 1200px;
        display: block;
        margin: 0 auto;
    }
    footer .footer-bottom .inner .footer-logo {
        width: 60%;
        max-width: 258px;
        text-align: center;
        margin: 0 auto 20px;
    }
    footer .footer-bottom .inner .footer-logo .link-b {
        width: 100%;
        display: block;
        font-size: clamp(1.4rem, 2vw, 2rem);
        text-decoration: none;
        margin: 20px auto 0;
        padding: 1em 1em;
    }
    footer .footer-top a::before {
        background-size: 15px;
    }
    footer .footer-bottom .inner .footer-menu {
        width: 100%;
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
    }
    footer .footer-bottom .inner .footer-menu > li {
        width: 48%;
        font-size: clamp(1.2rem, 1.4vw, 1.6rem);
        padding: 0;
    }
    footer .footer-bottom .inner .footer-menu > li > a,footer .footer-bottom .inner .footer-menu > li > p {
        display: block;
        text-align: left;
        text-decoration: none;
        margin-top: 10px;
    }
    footer .footer-bottom .inner .footer-menu li ul li a {
        font-size: clamp(1.2rem, 1.2vw, 1.4rem);
        color: #FFF;
        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.1rem;
        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
	==================================================*/
	
	
}