@charset "utf-8";
/* CSS Document */

/*-----------------------------------------------------------------

	common　共通

-----------------------------------------------------------------*/
html{
	font-family: "Arial", "Helvetica Neue", "Helvetica", 'Noto Sans JP', "Yu Gothic UI", "Meiryo UI", sans-serif;
	color: #282828;
	font-size: 62.5%;
	word-break: break-all;
    letter-spacing: .06em;
	line-height: 1.3;
}
a,
a * {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease-out;
}

a:hover {
    opacity: 0.5;
}

html p {
    font-size: 14px;
	line-height: 1.8;
}

button, input, select, textarea {
  font-family : inherit;
}

mark { 
    background: linear-gradient(transparent 60%, #ffe0eb 60%, #ffe0eb 95%, transparent 95% );
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}
small { font-size: inherit; }

@media screen and (max-width: 810px) {
	html {
		font-size: 55%;
	}
}

@media screen and (max-width: 480px) {
	html {
        font-size: 52%;
	}
    
    html p {
        font-size: 13px;
    }
}


/* nomal */
@font-face {
    font-family: 'Noto Sans JP';
    src: url('../../../_share/font/Noto-Regular.woff') format('woff'),
	       url('../../../_share/font/Noto-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
	font-display: swap;
}
/* bold */
@font-face {
    font-family: 'Noto Sans JP';
    src: url('../../../_share/font/Noto-Bold.woff') format('woff'),
	       url('../../../_share/font/Noto-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
	font-display: swap;
}

:root {	
	--main-color: #0738a4;
	--main-width: 1200px;
    --transition: all 0.3s ease-out;
	--main-filter: invert(13%) sepia(92%) saturate(3534%) hue-rotate(206deg) brightness(92%) contrast(92%);
}

.center { text-align: center;}
.right  { text-align: right;}

.red 	{ color: #ff1414;}

.mb10 { margin-bottom: 1rem; }
.mb20 { margin-bottom: 2rem; }
.mb30 { margin-bottom: 3rem; }
.mb40 { margin-bottom: 4rem; }
.mb50 { margin-bottom: 5rem; }

.text-box{
	width: 970px;
	margin-right: auto;
	margin-left: auto;
}
.main-contents .text-box{
	width: 100%;
}

.flex {
    display:flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

.address {
	width: auto;
	height: 1em;
	display: inline;
	vertical-align: middle;
}

em, span { font-weight: inherit; }

::selection { background: #c9e8f9; }

/* for Firefox */
::-moz-selection { background: #c9e8f9; }


.container-top {
	margin: 0 auto;
}
.container {
	width: var(--main-width);
	margin: 0 auto 10rem;
	display:flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: flex-start;
}
.container .main-contents {
	width: 900px;
	order: 2;
}
.container .main-contents > section {
	margin-bottom: 8rem;
}
.container > aside {
	width: 250px;
	display: block;
    z-index: 5;
}
.width {
    width: var(--main-width);
    margin: 0 auto;
}

@media screen and ( min-width: 810px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
    
}
	

@media screen and ( max-width: 810px ){
	img {
		width: 100%;
		height: auto;
	}
    
	input, textarea, select{
		font-size: 16px;
	}
	
	.container-top,
	.container {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .container .main-contents {
        width: 100%;
		padding-top: 2rem;
    }
    
    .width,
    .text-box,
    .img-box {
        width: 100%;
    }
    
    .max {
        width: calc(100% + 40px);
        margin: 0 -20px;
        box-sizing: border-box;
    }
    
    .full {
        width: calc(100% + 40px);
        margin-right: -20px !important;
        margin-left: -20px !important;
        box-sizing: border-box;
    }

	.container > aside {
		display: none;
	}
	
	.scroll { 
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		margin: 0 auto;
		width: 100%;
		border-top: none;
	}

	:root {	
		--main-width: 100%;
	}

}

@media screen and (max-width: 480px) {
    
    .container {
        margin-bottom: 6rem;
    }
    
	.container .main-contents > section {
		margin-bottom: 7rem;
	}
    
    html p {
        font-size: 13px;
    }
}


/*------------------------------------------------------------------------------
  header ヘッダー
------------------------------------------------------------------------------*/
header{
	background: #fff;
	z-index: 9999;
}

header .h1Box{
	background: #f0f0f0;
	padding: 6px 0;
}
header .h1Box h1{
	width: var(--main-width);
	margin: auto;
	font-size: 11px;
	line-height: 1.0em;
}

header .headBox {
	width: var(--main-width);
	margin: auto;
	padding: 5px 0;
}

.headBox .left,
.headBox .right {
    display:flex;
	flex-flow: row wrap;
	justify-content: space-between;
    align-items: center;
}
.headBox .left {
    width: 550px;
}
.headBox .right {
    width: 520px;
}

/*head-info*/
.headBox .right .head-info p {
    font-size: 12px;
	line-height: 1.4;
	margin-top: 3px;
}

.headBox .right .head-contact {
	width: 210px;
}

.headBox .right .head-contact .button a {
    display: block;
	border: 4px solid var(--main-color);
	border-radius: 100px;
	text-align: center;
	padding: 10px 20px;
	box-sizing: border-box;
}

.headBox .right .head-contact .button a span {
	font-size: 16px;
	color: var(--main-color);
	font-weight: bold;
	padding-left: 25px;
	position: relative;
}
.headBox .right .head-contact .button a span::before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	-webkit-mask: url(../../_images/common/icon/mail.svg) no-repeat center / contain;
	mask: url(../../_images/common/icon/mail.svg) no-repeat center / contain;
	background-color: var(--main-color);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

/**/
.headBox .right .head-contact .button a:hover {
    background: var(--main-color);
	opacity: 1;
}
.headBox .right .head-contact .button a:hover span {
	color: #FFF;
}
.headBox .right .head-contact .button a:hover span::before {
	background-color: #FFF;
}


/*head-info*/
.headBox .right .head-contact dl {
	color: var(--main-color);
	display:flex;
	justify-content: center;
	font-size: 12px;
	gap: 0 5px;
	margin-top: 5px;
}

.headBox .right .head-contact dl dt {
	display: flex;
	align-items: center;
}

.headBox .right .head-contact dl dt:before {
	content: "";
	-webkit-mask: url(../../_images/common/icon/arrow.svg);
	mask: url(../../_images/common/icon/arrow.svg);
	width: 12px;
	height: 12px;
	display: inline-block;
	color: currentColor;
	background-color: var(--main-color);
	margin-right: 5px;
}

.headBox .right .head-contact dl a:hover {
	opacity: 1;
	text-decoration: underline;
}

@media screen and (max-width: 810px) {
	header .h1Box{
		display: none;
	}
}

@media screen and (max-width: 480px) {

}



/*--top-menu----------------------------*/
.top-menu {
	border-bottom: 5px solid var(--main-color);
	height: 60px;
	display: flex;
	align-items: center;
	background: #FFF;
}
.top-menu.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
}

.top-menu .inner {
	width: var(--main-width);
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.top-menu .inner .right {
	width: 600px;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
}

@media screen and (max-width: 810px) {

}

@media screen and (max-width: 480px) {

}

/*--search-cont----------------------------*/
:is(.top-menu, aside) .search-cont {
	position: relative;
	border: 1px solid #434343;
	border-radius: 5px;
	box-shadow: 0.643px 0.766px 2.91px 0.09px rgba(0, 0, 0, 0.16);
	overflow: hidden;
}
:is(.top-menu, aside) .search-cont input {
    width: 360px;
    height: 40px;
    padding: 5px 70px 5px 10px;
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    border-radius: 0;
    vertical-align: top;
	border: none;
}
:is(.top-menu, aside) .search-cont input:placeholder {
    color: #b4b3b3;
}

:is(.top-menu, aside) .search-cont .search-btn {
    position: absolute;
    right: 0;
    top: 0;
    background: #262626;
    border: none;
    padding: 5px;
	width: 60px;
	height: 100%;
	box-sizing: border-box;
	transition: var(--transition);
}
:is(.top-menu, aside) .search-cont .search-btn img {
	filter: invert(100%) sepia(84%) saturate(7%) hue-rotate(201deg) brightness(102%) contrast(99%);
}

:is(.top-menu, aside) .search-cont .search-btn:hover {
	opacity: .8;
	cursor: pointer;
}

@media screen and (max-width: 810px) {
	:is(.top-menu, aside) .search-cont {
		margin-bottom: 15px;
	}

	:is(.top-menu, aside) .search-cont input {
		width: 100%;
		padding: 5px 50px 5px 10px;
	}

	:is(.top-menu, aside) .search-cont .search-btn {
		width: 45px;
	}

	:is(.top-menu, aside) .search-cont .search-btn img {
		width: 20px;
   		height: 20px;
	}
}

@media screen and (max-width: 480px) {

}


/*--cart----------------------------*/
:is(.top-menu, aside) .cart {
	width: 220px;
}
:is(.top-menu, aside) .cart a {
	display:flex;
	justify-content: center;
	align-items: center;
	background-image: -moz-linear-gradient( 90deg, rgb(255,108,0) 50%, rgb(255,62,17) 50%, rgb(255,141,57) 100%);
	background-image: -webkit-linear-gradient( 90deg, rgb(255,108,0) 50%, rgb(255,62,17) 50%, rgb(255,141,57) 100%);
	background-image: -ms-linear-gradient( 90deg, rgb(255,108,0) 50%, rgb(255,62,17) 50%, rgb(255,141,57) 100%);
	height: 60px;
	padding: 10px 20px;
	box-sizing: border-box;
}

:is(.top-menu, aside) .cart a * {
	color: #FFF;
	font-weight: bold;
}

:is(.top-menu, aside) .cart a span {
	font-size: 14px;
}

:is(.top-menu, aside) .cart a em {
	font-size: 2.3rem;
	padding: 0 2px;
}

:is(.top-menu, aside) .cart a span:first-child {
	position: relative;
	padding-left: 35px;
}

:is(.top-menu, aside) .cart a span:first-child:before {
	content: "";
	-webkit-mask: url(../../_images/common/icon/cart.svg);
	mask: url(../../_images/common/icon/cart.svg);
	background-color: #FFF;
	width: 27px;
	height: 27px;
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

@media screen and (max-width: 810px) {
	:is(.top-menu, aside) .cart {
		width: 100%;
		border-radius: 5px;
		overflow: hidden;
		margin-bottom: 3rem;
	}

	:is(.top-menu, aside) .cart a {
		height: 50px;
	}

	aside .calendar-cont .date .nav-btn img {
		width: 10px;
		height: auto;		
	}
}

@media screen and (max-width: 480px) {

}




header .headBox .head-sp {
	display: none;
}



@media screen and ( max-width: 810px ){
	header .headBox .head-contact {
		display: none;
	}
	
	header .headBox{
		width: 100%;
		margin: auto;
		padding: 10px 0;
		position: relative;
		border-bottom: 1px solid #c4c4c4;
	}
	
	header .headBox .head-logo {
		width: 140px;
		height: 39px;
		margin: auto auto auto 60px;
	}


	.header-fixed .top-menu,
	.headBox .right,
	.headBox .head-point3 {
		display: none;
	}
	
	
	header .headBox .head-sp {
		display: block;
		position: absolute;
		top: 10px;
		right: 10px;
	}
    
    header .headBox .head-sp .flex {
		gap: 5px;
	}
	
	header .headBox .head-sp li {
		width: 45px;
		height: 40px;
	}
	header .headBox .head-sp li a {
		display: block;
		padding: 3px 5px;

		background-image: linear-gradient(
			0deg,
			var(--color1) 50%,
			var(--color2) 50%,
			var(--color3) 100%
		);
	}
	header .headBox .head-sp li.cart {
		--color1: #ff6c00;
		--color2: #ff3e11;
		--color3: #ff8d39;
	}
	header .headBox .head-sp li.mail a {
		--color1: #0b4fcc;
		--color2: #023faf;
		--color3: #1c5dd6;
	}
	header .headBox .head-sp li.tel a {
		--color1: #177f0c;
		--color2: #0e6904;
		--color3: #239916;
	}
	
}




/*-------------------------------------------------
  header ヘッダー / nav グローバルナビゲーション
-------------------------------------------------*/
.top-menu .inner .left {
	width: 520px;
}

.top-menu .inner .left .gnav-wrapper,
.top-menu .inner .left .gnav {
	height: 100%;
}

.top-menu .inner .left .gnav-wrapper{
	position: relative;
}

header nav > ul > li{
	width: calc(100% / 3);
	box-sizing: border-box;
}
header nav > ul > li > a{
	display:flex;
	justify-content: center;
	align-items: center;
	letter-spacing: .08em;
	padding: 12px 0;
    font-size: 16px;
	font-weight: bold;
	position: relative;
	transition: all 0.3s ease-out;
	cursor: pointer;
	text-align: center;
	height: 100%;
	box-sizing: border-box;
}

/*2個の時*/
.top-menu .inner .left {
	width: 400px;
}

header nav > ul > li:nth-child(1){ width: 55%; }
header nav > ul > li:nth-child(2){ width: 45%; }


header nav > ul > li:not(:last-child) > a:after{
	content: "";
	width: 1px;
	height: 15px;
	background: #d3d6dc;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	z-index: -2;
}
header nav > ul > li > a:hover{
	color: var(--main-color);
	opacity: 1;
}


@media screen and (max-width: 810px) {
	/*-------------------------------------------------
	  header ヘッダー / nav グローバルナビゲーション
	-------------------------------------------------*/
	header > nav{
		display: none;
	}
}


/*-----▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼メガメニュー-----------------------------------------------------------------------*/
 
.gnav {
	display: flex;
	justify-content: flex-start;
}

.megamenu {
	display: block;
	background: #FFF;
	border-radius: 5px;
	box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px,
	            rgba(0, 0, 0, 0.09) 0px 4px 2px,
	            rgba(0, 0, 0, 0.09) 0px 8px 4px,
	            rgba(0, 0, 0, 0.09) 0px 16px 8px,
	            rgba(0, 0, 0, 0.09) 0px 32px 16px;
	border: 1px solid #dfdfdf;

	padding: 25px 30px;
	width: 500px;
	position: absolute;
	top: 60px;
	left: 0;
	z-index: 999;

	opacity: 0;
	visibility: hidden;
	pointer-events: none;

	overflow-y: auto;
	max-height: calc(100vh - 260px);

	transition:
		opacity .3s ease-out,
		transform .3s ease-out,
		visibility 0s linear .5s;
}

/* hover時（最終位置） */
.gnav > li:hover .megamenu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;

	border-top: 5px solid #0738a4;

	transition:
		opacity .3s ease,
		transform .3s ease,
		visibility 0s;
}


/*hover時*/
.gnav-child:hover > a,
.gnav-child .megamenu:hover ~ a {
	color: var(--main-color);
}
.gnav-child > a {
	position: relative;
	z-index: 1;
	transition:
		opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1),
		transform 1.8s cubic-bezier(0.22, 1, 0.36, 1),
		visibility 0s linear 1.4s;
}
.gnav-child:hover > a::before,
.gnav-child .megamenu:hover ~ a::before {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	bottom: 5px;
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	border-radius: 7px;
	background: #d8e3fd;
	z-index: -1;
}



/* megamenu をホバーしても開いたままにする */
.gnav-child:hover .megamenu,
.gnav-child .megamenu:hover {
	opacity: 1;
	padding: 25px 30px;
	display: block;
	max-height: calc(100vh - 260px);
}

.megamenu dl:not(:first-of-type) {
    margin-top: 25px;
}

.megamenu dt {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 10px;
    letter-spacing: .1em;
}

.megamenu dd:not(:last-child) {
	margin-bottom: 20px;
}


/*btn-list*/
.megamenu dd .btn-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 1.5rem calc(10% / 4);
}

.megamenu dd .btn-list li {
	width: 18%;
}

.megamenu dd .btn-list li a {
	display: block;
	color: var(--main-color);
	font-weight: bold;
	font-size: 15px;
	background: #e9eef9;
	border-radius: 5px;
	padding: 10px 15px;
	text-align: center;
}

.megamenu dd .btn-list li a:hover {
	opacity: 1;
	background: #b5c9f4;
}

/*text-list*/
.megamenu dd .text-list {
	display:flex;
	flex-flow: column;
	row-gap: 8px;
	color: #686868;
}

.megamenu dd .text-list li {
	padding: 2px 0;
}
.megamenu dd .text-list li a {
	font-size: 13px;
}
.megamenu dd .text-list li a:hover {
	text-decoration: underline;
	opacity: 1;
}


/*----形状から探す----*/
.megamenu .menu-type {
    display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
    gap: 15px 16px;
}
.megamenu .menu-type li {
    width: 18%;
    text-align: center;
}

.megamenu .menu-type li a {
  display: block;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.megamenu .menu-type li span {
    display: block;
    font-weight: bold;
    color: #333333;
    font-size: 12px;
    margin-top: 10px;
}

.megamenu .menu-type li a:hover {
    opacity: 1;
}

.megamenu .menu-type li a:hover {
    opacity: 1;
}

.megamenu .menu-type li a:hover span {
    text-decoration: underline;
}


/*----素材から探す----*/
 .megamenu .menu-material {
    display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
    gap: 10px calc(8% / 3);
}

.megamenu .menu-material li {
    width: 23%;
}

.megamenu .menu-material li img {
    width: 100%;
    height: auto;
}


/*----menu-standard----*/
.megamenu .menu-standard {
    display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
    gap: 15px 2%;
}

.megamenu .menu-standard li {
    width: 32%;
}

.megamenu .menu-standard li a {
    border-radius: 5px;
    padding: 15px;
    box-sizing: border-box;
    display: flex;
	align-items: center;
    background: #eff2f3;
    color: #31323f;
    height: 100%;
}

.megamenu .menu-standard li span {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 13px;
    font-weight: bold;
}

.megamenu .menu-standard li:has(img) span {
    width: 140px;
}

.megamenu .menu-standard li a:hover {
    opacity: 1;
    background: #ccdce1;
}


/*----ご利用ガイド----*/
.megamenu .menu-list {
    display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
    gap: 15px 2%;
}

.megamenu .menu-list li {
    width: 32%;
}

.megamenu .menu-list li a {
    width: 100%;
    padding: 20px 25px;
    border-radius: 5px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    text-align: center;
    background: #fff1e9;
    color: #573F30;
    font-size: 14px;
    font-weight: bold;
    height: 100%;
}
.megamenu .menu-list li a:hover {
    opacity: 1;
    text-decoration: underline;
}


/*-----▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲メガメニュー-----------------------------------------------------------------------*/


@media screen and (max-width: 810px) {

}

@media screen and (max-width: 480px) {

}



/*------------------------------------------------------------------------------
  slider スマホ用メニュー
------------------------------------------------------------------------------*/

.slide-box{
	display: none;
}
@media screen and ( max-width: 810px ){
	/*ヘッダー追従*/
	.header-fixed{
		/* 追従 */
		position: -webkit-sticky;
		position: sticky;
		top: 0;
		
		z-index: 100000;
		background-color: #fefefe;
		box-sizing: border-box;
	}
	
	.header-fixed-in{
		position: relative;
	}
	
	.slide-box{
		display: block;
	}
	/* チェックボックスは非表示（ラベルで操作するため） */
	.slide-box #header-hamburger{
		display: none;
	}
	
	/* ハンバーガーアイコンの位置を指定（左） */
	.slide-box .header-hamburger-icon{
		position: absolute;
		top: 30px;
		left: 8px;
		padding: 10px;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	/* ハンバーガーアイコンの三本線をCSSで書く（上下の線） */
	.slide-box .header-hamburger-icon span{
		display: block;
		position: relative;
		width: 23px;
		height: 16px;
		border-top: solid 2px #00285a;
		border-bottom: solid 2px #00285a;
		box-sizing: border-box;
		cursor: pointer;
	}
	/* ハンバーガーアイコンの三本線をCSSで書く（中央の線） */
	.slide-box .header-hamburger-icon span:before{
		position: absolute;
		content: '';
		width: 100%;
		height: 2px;
		top: 5px;
		background-color: #00285a;
	}
	
	/* 背景を暗くする（デフォルトは非表示） */
	.slide-box #header-close{
		display: none;
		position: fixed;
		z-index: 150000;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #000;
		opacity: 0;
	}
	
	/*スライドで表示させるコンテンツ*/
	.slide-box #slide-content{
		z-index: 200000;
		overflow: auto;
		position: fixed;
		top: 0;
		left: 0;
		height: 100%;
		max-width: 270px;
		box-sizing: border-box;
		transition: .3s;
		background: #FFF;
		/* デフォルト非表示（左側の見えないところに位置させる） */
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
	
	/*チェックが入ったらコンテンツを表示*/
	.slide-box #header-hamburger:checked ~ #slide-content{
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	}
	
	/*チェックが入ったらコンテンツ外を暗くする*/
	.slide-box #header-hamburger:checked ~ #header-close{
		display: block;
		opacity: .7;
	}

	/*とじるボタン*/
	.slide-box #close-btn{
		display: none;
		z-index: 200001;
		position: fixed;
        top: 20px;
        left: 280px;
		cursor: pointer;
		opacity: 0;
		transition: all 0.3s ease-out;
	}
	.slide-box #header-hamburger:checked ~ #close-btn{
		display: block;
		opacity: 1;
	}
	.slide-box #close-btn span{
		display: block;
        width: 40px;
        height: 40px;
		border: 3px solid #FFF;
		box-sizing: border-box;
		border-radius: 50%;
		position:relative;
	}
	.slide-box #close-btn span:before,
	.slide-box #close-btn span:after{
		content: "";
		display: block;
		width: 17px;
		height: 2px;
		background-color: #fff;
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		margin: auto;
	}
	.slide-box #close-btn span:before{
		transform: rotate(45deg);
	}
	.slide-box #close-btn span:after{
		transform: rotate(-45deg);
	}


	/*----------メニュー----------*/
	.side-menu{
		width: 270px;
		background: #fff;
		overflow-y: scroll;
		z-index: 9000;
		padding: 20px;
		position: relative;
        box-sizing: border-box;
	}
    
    .side-menu img{
        max-width: 100%;
        width: auto;
    }

}




/*------------------------------------------------------------------------------
  パンくず
------------------------------------------------------------------------------*/
.bread-box {
	width: var(--main-width);
	margin: 0 auto 2rem;
	padding: 15px 0 10px;
	font-size: 13px;
}
.bread-box ol li {
	display: inline-block;
	position: relative;
	padding-right: 40px;
}
.bread-box ol li:after {
	content: "";
	-webkit-mask: url(../../_images/common/icon/arrow.svg);
	mask: url(../../_images/common/icon/arrow.svg);
	width: 11px;
	height: 11px;
	display: inline-block;
	color: currentColor;
	background-color: var(--main-color);
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	position: absolute;
}

.bread-box ol li:last-child:after { display: none; }

@media screen and (max-width: 810px) {
	.bread-box {
		width: 100%;
		padding: 10px;
		font-size: 11px;
		box-sizing: border-box;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		-overflow-scrolling: touch;
		overflow: auto;
		white-space: nowrap;
		background: #f3f3f3;
		border-bottom: 1px solid #e4e4e4;
        margin-bottom: 0;
	}
	.bread-box ol li {
		display: inline-block;
		position: relative;
		padding-right: 25px;
	}
	.bread-box ol li:after {
		border-color: transparent transparent transparent #f3f3f3;
		right: 5px;
	}
}


/*------------------------------------------------------------------------------
  サイドナビ
------------------------------------------------------------------------------*/
aside > dl {
	margin-bottom: 4rem;
}

aside .select-cont dt {
	color: var(--main-color);
	font-weight: bold;
	padding: 1rem 0 1rem 55px;
	position: relative;
	margin: -1rem 0 2rem;
	border-bottom: 2px solid var(--main-color);
}
aside .select-cont dt:before {
	content: "";
	-webkit-mask: url(../../_images/common/icon/search.svg);
	mask: url(../../_images/common/icon/search.svg);
	width: 32px;
	height: 32px;
	display: block;
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	background-color: var(--main-color);
}
aside .select-cont dt span {
	font-size: 1.4rem;
	display: block;
	margin-bottom: 3px;
}
aside .select-cont dt em {
	font-size: 1.8rem;
}


/*size*/
aside .select-cont .size ul {
	display:flex;
	flex-flow: row wrap;
	justify-content: space-between;
	gap: 10px;
}

aside .select-cont .size ul:not(:last-child) {
	margin-bottom: 2rem;
}

aside .select-cont .size ul li {
	width: calc(50% - 5px);
}

aside .select-cont .size ul li a {
	text-align: center;
	font-size: 1.8rem;
	border: 1px solid #191919;
	display: block;
	padding: 1.2rem;
	border-radius: 7px;
}
aside .select-cont .size ul li a:hover {
	opacity: 1;
	color: var(--main-color);
	background: #e9eef9;
	border-color: var(--main-color);
}

/*standard*/
aside .standard li:not(:last-child) {
	margin-bottom: 10px;
}

aside .standard a {
	font-size: 1.5rem;
}

aside .standard a:hover {
	text-decoration: underline;
	opacity: 1;
}


/*side-tit*/
aside .side-tit {
	color: var(--main-color);
	font-size: 1.8rem;
	font-weight: bold;
	padding-bottom: 1rem;
	margin-bottom: 2rem;
	border-bottom: 2px solid var(--main-color);
}


/*other-item*/
aside .other-item li {
	border-bottom: 1px solid #e0e0e0;
}

aside .other-item li a {
	display: block;
	position: relative;
	padding: 5px 10px 5px 65px;
	min-height: 55px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
}
aside .other-item li a:hover {
	opacity: 1;
	color: var(--main-color);
	background: #e9eef9;
}

aside .other-item li a img {
	width: 45px;
	height: 45px;
	position: absolute;
	left: 5px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

aside .other-item li a span {
	font-size: 15px;
	font-weight: bold;
}


/*side-contact*/
aside .side-contact {
	border: 2px solid #f719ab;
	border-top: 7px solid #f719ab;
	background: #fff6fc;
	text-align: center;
	padding: 20px 19px;
}

aside .side-contact dt {
	margin-bottom: 1rem;
}

aside .side-contact dd .contact-time {
	position: relative;
	padding: 1.2rem 0;
	margin: 1.5rem 0;
	font-size: 12px;
	line-height: 1.4;
}
aside .side-contact dd .contact-time:before,
aside .side-contact dd .contact-time:after {
	content: "";
	background-image: repeating-linear-gradient(90deg, #000000, #000000 2px, transparent 2px, transparent 4px);
	background-position: left top;
	background-repeat: repeat-x;
	background-size: 100% 1px;
	position: absolute;
	left: 0;
	display: block;
	width: 100%;
	height: 1px;
}
aside .side-contact dd .contact-time:before {
	top: 0;
}
aside .side-contact dd .contact-time:after {
	bottom: 0;
}

aside .side-contact dd .btn-contact a {
    display: block;
    font-weight: bold;
    color: #FFF;
    text-align: center;
    font-size: 14px;
    padding: 13px 20px;
    border-radius: 100px;
    background: linear-gradient(-10deg, #3651cc 50%, #0738a4 50%);
}

aside .side-contact dd .btn-contact a span {
	position: relative;
	padding-left: 25px;
}

aside .side-contact dd .btn-contact a span:before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	-webkit-mask: url(../../_images/common/icon/mail.svg) no-repeat center / contain;
	mask: url(../../_images/common/icon/mail.svg) no-repeat center / contain;
	background-color: #FFF;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}


@media screen and (max-width: 810px) {

}

@media screen and (max-width: 480px) {
	   
}


/*------------------------------------------------------------------------------
  calendar
------------------------------------------------------------------------------*/

aside .calendar-cont .calendar {
	display: none;
	position: relative;
	margin-bottom: 2rem;
}
aside .calendar-cont .calendar.active {
	display: block;
}

aside .calendar-cont .calendar p.date {
	text-align: center;
	color: var(--main-color);
	font-size: 1.6rem;
	font-weight: bold;
	margin-bottom: 5px;
	position: relative;
}

aside .calendar-cont .date .nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	background: none;
	border: none;
	font-size: 16px;
	cursor: pointer;
	border: 1px solid #555555;
	border-radius: 5px;
	width: 45px;
	padding: 7px;
	box-sizing: border-box;
	display:flex;
	justify-content: center;
	align-items: center;
	transition: var(--transition);
}
aside .calendar-cont .date .nav-prev { left: 0; }
aside .calendar-cont .date .nav-next { right: 0; }

aside .calendar-cont .date .nav-btn:hover {
	opacity: .5;
}

aside .calendar-cont .date .nav-btn img {
	filter: var(--main-filter);
}
aside .calendar-cont .date .nav-btn.nav-prev img {
	transform: scaleX(-1);
}



/*table*/
aside .calendar-cont .calendar table {
	width: 100%;
	text-align: center;
	border-collapse: collapse;
}
aside .calendar-cont .calendar table th {
	text-align: center;
	font-size: 11px;
	font-weight: bold;
	background: #f5f5f5;
	color: var(--main-color);
	padding: 8px;
	border: none;
}

aside .calendar-cont .calendar table td {
	font-size: 15px;
	padding: 7px 0;
	border: 1px solid #FFF;
}
aside .calendar-cont .calendar table td.today { border: 3px solid #ff9410; }
aside .calendar-cont .calendar table td.off-day { background-color: #fe95b9; }
aside .calendar-cont .calendar table td.short-day { background-color: #33abee; }

/*text*/
aside .calendar-cont .text {
	font-size: 13px;	
}
aside .calendar-cont .text li:before {
	content: "";
	display: inline-block;
	margin-right: 10px;
	width: 10px;
	height: 10px;
}
aside .calendar-cont .text li.short-day:before { background: #33abee; }
aside .calendar-cont .text li.off-day:before { background: #fe95b9; }

@media screen and (max-width: 810px) {

}

@media screen and (max-width: 480px) {
	
    
}



/*------------------------------------------------------------------------------
  ★
------------------------------------------------------------------------------*/


@media screen and (max-width: 810px) {

}

@media screen and (max-width: 480px) {
	
    
}


/*------------------------------------------------------------------------------
  ★
------------------------------------------------------------------------------*/


@media screen and (max-width: 810px) {

}

@media screen and (max-width: 480px) {
	
    
}


/*------------------------------------------------------------------------------
  contact-box
------------------------------------------------------------------------------*/
.main-contents .contact-box {
    margin-bottom: 12rem;
}

.main-contents .contact-box:last-child {
    margin-bottom: 0;
}

.main-contents .contact-box ul {
    display:flex;
	flex-flow: row wrap;
	justify-content: space-between;
    gap: 2rem 2%;
}

.main-contents .contact-box li {
    width: 49%;
    min-height: 20rem;
}

.main-contents .contact-box li a {
    text-align: center;
    color: #FFF;
    padding: 3rem;
    height: 100%;
    box-sizing: border-box;
    display:flex;
	justify-content: center;
	align-items: center;
    flex-direction: column;
}

.main-contents .contact-box li.tel-box a {
    background: #03ab4e;
}

.main-contents .contact-box li.mail-box a {
    background: #254771;
}


/**/
.main-contents .contact-box li.tel-box dt {
    font-weight: bold;
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
    letter-spacing: .08em;
}

.main-contents .contact-box li.tel-box dd div {
    margin-top: 1rem;
    font-size: 1.3rem;
    letter-spacing: .08em;
}


/**/
.main-contents .contact-box li.mail-box div {
    margin-top: 1rem;
    font-size: 2.3rem;
    font-weight: bold;
    letter-spacing: .08em;
}


/*hover*/
.main-contents .contact-box li a:hover {
    opacity: 1;
    background: #121212;
}


@media screen and (max-width: 810px) {
    .main-contents .contact-box li.tel-box img {
        max-width: 290px;
    }
    
    .main-contents .contact-box li.mail-box img {
        max-width: 80px;
        width: auto;
    }
}


@media screen and ( max-width: 480px ){
    .main-contents .contact-box li {
        width: 100%;
    }
    
    .main-contents .contact-box li.mail-box img {
        max-width: 50px;
    }
    
    .main-contents .contact-box li.mail-box div {
        font-size: 1.9rem;
    }
}


/*-------------------------------------------------
  footer
-------------------------------------------------*/

footer .page-list {
	width: var(--main-width);
	margin: 0 auto;
	border-left: 1px solid #cccccc;
	display:flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
footer .page-list dl {
	width: 25%;
	border-right: 1px solid #cccccc;
	padding: 30px;
	box-sizing: border-box;
    
}
footer .page-list dl dt {
	font-size: 15px;
	letter-spacing: .1em;
	color: #2a2a2a;
	border-left: 3px solid var(--main-color);
	padding: 3px 0px 3px 20px;
	margin-bottom: 12px;
	line-height: 1em;
    line-height: 1.4;
}
footer .page-list dd {
	font-size: 13px;
    line-height: 1.6;
}
footer .page-list dd:not(:last-child) {
    margin-bottom: 30px;
}

footer .page-list dd > ul > li {
	position: relative;
    padding-left: 28px;
}

footer .page-list dd > ul > li:not(:last-child) {
	margin-bottom: 5px;
}

footer .page-list dd > ul > li > a:before {
    content: "";
    width: 13px;
    height: 13px;
    display: block;
    background: #343244;
    border-radius: 3px;
    position: absolute;
    top: 5px;
    left: 0;
}

footer .page-list dd > ul > li > a:after {
    content: "";
    display: block;
    position: absolute;
    left: 2px;
    top: 9px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    width: 4px;
    height: 4px;
    border-top: 1.8px solid #FFF;
    border-right: 1.8px solid #FFF;
}

footer .page-list dd ul .under a:before {
	content: "-";
	margin: 0 5px 0 20px;
}
footer .page-list dd ul li a:hover {
	opacity: 1;
	text-decoration: underline;
}


footer .company-list {
	background: var(--main-color);
}
footer .company-list ul {
	width: var(--main-width);
	margin: 0 auto;
	display:flex;
	flex-flow: row wrap;
}
footer .company-list ul li {
	color: #FFF;
	font-size: 15px;
	width: 20%;
	font-weight: bold;
	letter-spacing: .1em;
}
footer .company-list ul li a {
	display: block;
	padding: 10px;
	text-align: center;
}
footer .company-list ul li a:hover {
	opacity: 1;
    background: #1748b3;
}


footer .company-data {
	width: var(--main-width);
	margin: 0 auto;
	padding: 25px 0;
}
footer .company-data .com-logo { padding-top: 10px; }
footer .company-data .com-data {
	width: 425px;
}
footer .company-data .com-data .com-name {
	font-size: 18px;
	font-weight: bold;
	border-bottom: 1px solid #000;
	padding: 0 10px 5px;
	margin-bottom: 10px;
	letter-spacing: .1em;
}
footer .company-data .com-data dl {
	font-size: 13px;
	line-height: 1.6em;
}
footer .company-data .com-data dl dt,
footer .company-data .com-data dl dd {
	display: inline-block;
	vertical-align: top;
}


footer .copy-box {
	font-size: 1.3rem;
	background: #131110;
	padding: 15px 0;
	color: #FFF;
	text-align: center;
}



@media screen and (max-width: 810px) {
	footer .page-list {
		width: 100%;
		border-left: none;
		display:block;
	}
	footer .page-list dl {
		width: 100%;
		border-right: none;
		padding: 0;
	}
	footer .page-list dl dt {
		font-size: 13px;
		letter-spacing: .1em;
		border-left: none;
		border-bottom: 1px solid #cccccc;
		padding: 15px 45px 15px 20px;
		margin-bottom: 0;
	}
    
    footer .page-list dd {
        font-size: 12px;
    }
    footer .page-list dd:not(:last-child) {
        margin-bottom: 0;
    }
	footer .page-list dd > ul > li {
		padding: 0;
	}
    footer .page-list dd > ul > li:not(:last-child) {
    	margin-bottom: 0;
    }
	footer .page-list dd > ul > li a {
		display: block;
		padding: 15px 20px 15px 45px;
		background: #f4f4f4;
		border-bottom: 1px solid #cccccc;
	}
	footer .page-list dd .under li a {
		background: #e1e1e1;
	}
    
    footer .page-list dd > ul > li > a:before {
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        top: 50%;
        left: 20px;
    }
    footer .page-list dd > ul > li > a:after {
        transform: translateY(-50%) rotate(45deg);
        -webkit-transform: translateY(-50%) rotate(45deg);
        top: 50%;
        left: 22px;
    }

	footer .company-list {
		width: 100%;
		padding: 25px 0 15px;
        background: #f9f9f9;
	}
	footer .company-list ul {
		width: 88%;
		margin: 0 auto;
		justify-content: space-between;
	}
	footer .company-list ul li {
		color: #2f2f2f;
		font-size: 12px;
		width: 48%;
		margin-bottom: 10px;
	}
    footer .company-list ul li:first-child {
        width: 100%;
    }
	footer .company-list ul li a {
		padding: 2rem;
		background: #FFF;
		line-height: 1.2em;
        height: 100%;
        box-sizing: border-box;
        display:flex;
        justify-content: center;
        align-items: center;
        border-radius: 5px;
        box-shadow: rgb(44 115 100 / 16%) 0px 1px 4px;
	}
	footer .company-list ul li a:hover {
		background: #FFF;
	}

	footer .company-data {
		width: 80%;
		padding: 40px 0;
	}
	footer .company-data .com-logo {
		padding-top: 0;
		margin: 0 auto 15px;
		width: 70%;
		max-width: 230px;
	}
	footer .company-data .com-data {
		width: 100%;
	}
	footer .company-data .com-data .com-name {
		font-size: 14px;
	}


	footer .company-data .com-data dl {
		font-size: 11px;
	}

	footer .copy-box {
		padding: 20px 70px 20px 20px;
		line-height: 1.2em;
	}

}


/*------------------------------------------------------------------------------
  link-btn
------------------------------------------------------------------------------*/
.link-btn a {
	max-width: 550px;
	display: block;
	font-weight: bold;
	color: #FFF;
	text-align: center;
	font-size: 2rem;
	padding: 1.8rem 2rem;
	border-radius: 100px;
	background: linear-gradient(-10deg, #3651cc 50%, #0738a4 50%);
	margin: 5rem auto;
}


/*------------------------------------------------------------------------------
	under-about
------------------------------------------------------------------------------*/
.under-about {
	background: #f0f4fd;
	padding: 3rem 0;
}

.under-about .inner {
	max-width: var(--main-width);
	margin: 0 auto;
	display:flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

.under-about .inner .box {
	width: calc(100% / 3);
	padding: 2rem 5rem;
	box-sizing: border-box;
}
.under-about .inner .box:not(:last-child) {
	border-right: 1px solid #cfd8ea;
}

.under-about .inner .box > dt {
	font-size: 1.7rem;
	font-weight: bold;
	margin-bottom: 1.5rem;
}

.under-about .inner .box > dd {
	font-size: 1.3rem;
	line-height: 1.5;
}

.under-about .inner .box .circle {
	padding-left: 2rem;
	position: relative;
	font-size: 1.4rem;
}
.under-about .inner .box .circle:before {
	content: "";
	width: 1.1rem;
	height: 1.1rem;
	border: .3rem solid var(--main-color);
	border-radius: 50%;
	box-sizing: border-box;
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	left: 0;
}


.under-about .inner .box dt.circle {
	margin-bottom: .5rem;
}
.under-about .inner .box dt.circle + dd {
	margin-bottom: 1.5rem;
}


.under-about .inner .box ul {
	margin-bottom: 2rem;
}

.under-about .inner .box ul li:not(:last-child) {
	margin-bottom: 5px;
}


.under-about .inner .caution {
	font-size: 1.3rem;
	text-indent: -1em;
	padding-left: 1em;
	line-height: 1.5;
}
.under-about .inner .caution:before {
	content: "※";
}

.under-about .inner .caution:not(:last-child) {
	margin-bottom: 1rem;
}


.under-about .inner .box .link {
	padding-left: 15px;
	position: relative;
}
.under-about .inner .box .link:before {
	content: "";
	-webkit-mask: url(../../_images/common/icon/arrow.svg);
	mask: url(../../_images/common/icon/arrow.svg);
	width: 10px;
	height: 10px;
	display: inline-block;
	color: currentColor;
	background-color: var(--main-color);
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	position: absolute;
}

.under-about .inner .box .link a {
	display: inline-block;
	text-decoration: underline;
}
.under-about .inner .box .link a:hover {
	opacity: 1;
	text-decoration: none;
}


@media screen and (max-width: 810px) {

}

@media screen and (max-width: 480px) {
	.under-about {
		padding: 0;
	}

	.under-about .inner .box {
		width: 100%;
		padding: 4rem 5rem;
	}
	.under-about .inner .box:not(:last-child) {
		border-right: none;
		border-bottom: 1px solid #dee7f9;
	}
}





/*----other-link----*/
footer .other-link {
    padding: 6rem 0;
}

footer .other-link dl {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}
footer .other-link dl:not(:last-child) {
    margin-bottom: 3rem;
}

footer .other-link dt {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    border-bottom: 1px solid #313131;
    padding: 0 30px 5px;
    margin: 0 auto 20px;
    width: fit-content;
    letter-spacing: .1em;
}

footer .other-link ul {
    display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
    gap: 12px calc(7% / 5);
}

footer .other-link ul li {
    width: 15.5%;
}
footer .other-link ul li img {
    width: 100%;
    height: auto;
}


@media screen and (max-width: 810px) {
    footer .other-link ul {
        gap: 12px calc(5% / 4);
    }

    footer .other-link ul li {
        width: 19%;
    }
}


@media screen and ( max-width: 480px ){
    footer .other-link {
        padding: 30px 0 40px;
    }
    
    footer .other-link dt {
        font-size: 15px;
        padding: 0 20px 5px;
        margin: 0 auto 15px;
    }
    
    footer .other-link ul {
        gap: 8px 4%;
    }

    footer .other-link ul li {
        width: 48%;
    }
}




/*トップへ戻るボタン*/
div#page-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
	z-index: 400;
}
div#page-top span{
    font-size: 0;
	display: block;
	width: 70px;
	height: 70px;
	background:rgba(0,0,0,0.8);
	color: #fff;
	border-radius: 50%;
	box-sizing: border-box;
	cursor: pointer;
    -moz-background-clip: padding;
    -webkit-background-clip: padding;
    background-clip: padding-box;
	border: 4px solid rgba(255,255,255,0.3);
	box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.35);
    letter-spacing: .1em;
    position: relative;
}
div#page-top a span:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 3px solid #FFF;
    border-right: 3px solid #FFF;
    position: absolute;
    margin: auto;
    top: 55%;
	left: 50%;
	transform: translate(-50%,-50%) rotate(-45deg);;
	-webkit-transform: translate(-50%,-50%) rotate(-45deg);;
}

div#page-top a:hover{
    opacity: 1;
}

div#page-top span:hover{
	background: #000;
	-moz-background-clip: padding;
	-webkit-background-clip: padding;
	background-clip: padding-box;
	transition: all 0.3s ease-out;
}

@media screen and (max-width: 810px) {
	/*トップへ戻るボタン*/
	div#page-top {
		bottom: 10px;
		right: 10px;
		z-index: 400;
	}
	div#page-top span{
		display: block;
		width: 50px;
		height: 50px;
		border: 3px solid rgba(255,255,255,0.5);
	}
    
    div#page-top a span:before{
        width: 8px;
        height: 8px;
        border-top: 2px solid #FFF;
        border-right: 2px solid #FFF;
	}
}





/*------------------------------------------------------------------------------
  h要素
------------------------------------------------------------------------------*/
.h-type1 {
	font-size: 3.1rem;
	font-weight: bold;
	padding-bottom: 2rem;
	margin-bottom: 4rem;
	border-bottom: .6rem solid var(--main-color);
	box-sizing: border-box;
}

@media screen and (max-width: 810px) {
	.h-type1 {
		width: calc(100% + 40px);
		margin: 0 -20px 2rem;
		padding: 0 20px 1.8rem;
	}
}

@media screen and (max-width: 480px) {
	.h-type1 {
		font-size: 2.7rem;
	}
}



/**/
.h-type2 {
	font-size: 2.8rem;
	font-weight: bold;
	margin-bottom: 3rem;
}


@media screen and (max-width: 810px) {

}

@media screen and (max-width: 480px) {

}

/**/
.h-type3 {
	font-size: 2.4rem;
	font-weight: bold;
	margin-bottom: 2rem;
	color: var(--main-color);
}


@media screen and (max-width: 810px) {

}

@media screen and (max-width: 480px) {

}

/**/
.h-type4 {
	font-size: 2.4rem;
	font-weight: bold;
	margin-bottom: 2rem;
	color: var(--main-color);
}


@media screen and (max-width: 810px) {

}

@media screen and (max-width: 480px) {

}



/*------------------------------------------------------------------------------
	★
------------------------------------------------------------------------------*/

@media screen and (max-width: 810px) {

}

@media screen and (max-width: 480px) {

}



/*------------------------------------------------------------------------------
	★
------------------------------------------------------------------------------*/

@media screen and (max-width: 810px) {

}

@media screen and (max-width: 480px) {

}



/*------------------------------------------------------------------------------
	★
------------------------------------------------------------------------------*/

@media screen and (max-width: 810px) {

}

@media screen and (max-width: 480px) {

}



/*------------------------------------------------------------------------------
	★
------------------------------------------------------------------------------*/

@media screen and (max-width: 810px) {

}

@media screen and (max-width: 480px) {

}