
@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font-style: normal;
	/*font: inherit;*/
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul, li {
	list-style: none;
	list-style-type: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input[type="text"],
input[type="password"],
textarea,
select,*:focus {
	outline: none;
}


/*====================================================
////id common
====================================================*/
:root {
	--mainColor: #e95504;
	--mainColor_rgb: 0, 104, 181;
	--red: #FF3936;
	--l_b_gray: #e8edf4;
	--gray: #ccc;
	--d_gray: #4c4948;
	--navy: #0b1f38;
	--black: #0b1f38;

	--font_family: 'Lato', 'Zen Kaku Gothic New', "Yu Gothic", "游ゴシック Medium", "YuGothic", "游ゴシック体", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

html{
	font-size: 10px;
	font-size: 62.5%;
	width: 100%;
	max-width: 100vw;
}
body, button, input, select, optgroup, textarea {
	color: var(--black);
	font-family: var(--font_family);
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.6;
	text-align: justify;
}
body {
}
@media screen and (max-width: 500px) {
	body, button, input, select, optgroup, textarea {
		font-size: 3.8vw;
	}
}

body {
	position: relative;
	width: 100%;
	max-width: 100vw;
	height: auto;
}
* {
	min-height: 0;
	min-width : 0;
}

body * {
	box-sizing: border-box;
}
section {
	position: relative;
	max-width: 100vw;
}
a {
	display: inline-block;
	transition: 0.2s ease-in-out;
	color: inherit;
	cursor: pointer;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	outline:none;
	text-decoration: none;
	/* vertical-align: middle; */
}
.tel_link a {
	text-decoration: none !important;
}
a img {
	transition: .1s ease-in-out;
}
.underline {
	color: inherit;
	-webkit-text-decoration: underline dotted 1px currentColor;
	text-decoration: underline dotted 1px currentColor;
	text-underline-position: under;
	text-underline-offset: 0.05em;
}
.under_marker {
	padding: 0 .2em .2em;
  line-height: 2;
  background: radial-gradient(circle at calc(100% - .1em) calc(100% - .1em), #ee2 .1em, transparent .1em) ,
              radial-gradient(circle at .1em calc(100% - .1em), #ee2 .1em, transparent .1em) ,
              linear-gradient(to bottom, #fff calc(100% - .2em), transparent calc(100% - .2em)) ,
              linear-gradient(to right, transparent .1em, #ee2 .1em, #ee2 calc(100% - .1em), transparent calc(100% - .1em));
  display:inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	display: block;
	/* margin: auto; */
}

body figure {
	margin: 0;
	position: relative;
}
figure img {
	position: relative;
}
figure.coverImg {
	overflow: hidden;
	padding-top: 75%;
	width: 100%;
}
figure.coverImg img {
	-o-object-fit: cover;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	max-width: none;
	height: 100%;
	max-height: none;
}
figure.coverImg.contain img {
	-o-object-fit: contain;
	object-fit: contain;
}

.scaleUpImg {
	overflow: hidden;
}
.scaleUpImg img {
	transition: .4s;
}
.scaleUpImg:hover img {
	transform: scale(1.05);
}


.round {
	border-radius: 14px;
	overflow: hidden;
}

hr {
	border-top: solid 1px #CECECE;
	margin: 0;
	width: 100%;
	height: 0;
}
hr.dot {
	border-style: dotted;
}


#contents {
	width: 100%;
	position: relative;
	transition: .2s ease-in-out;
	z-index: 1;
}
.innerBox {
	max-width: 1200px;
	margin: 0 auto;
	padding: 130px 0;
	position: relative;
	width: 94%;
	z-index: 1;
}
.innerBox.shortPadding {
	padding: 20px 0;
}
.block {display: block;}
.inb {display: inline-block;}
.relative { position: relative; z-index: 1;}
.flexBox {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
}
.flexCenter {
	align-items: center;
	justify-content: center;
}
.flexStart {
	justify-content: flex-start;
}
.flexEnd {
	justify-content: flex-end;
}
.flexWrap {
	flex-wrap: wrap;
}
.flexColumn {
	flex-direction: column;
	justify-content: flex-start;
}
.flex-1 {
	flex: 1;
}

.gridBox {
	display: grid;
}

.whiteBox {
	background: #fff;
	padding: 56px 72px;
	position: relative;
}
.roundBox {
	border-radius: 20px;
	overflow: hidden;
}
.roundBox-s {
	border-radius: 10px;
	overflow: hidden;
}
.shadowBox {
	box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}

/* p {margin: 0 0 1.4em;}
p:last-child, p:last-of-type {margin-bottom: 0;} */

.w100 {
	width: 100%;
}
.h100 {
	height: 100%;
}

.mw300 {max-width: 300px; margin: auto;}
.mw400 {max-width: 400px; margin: auto;}
.mw500 {max-width: 500px; margin: auto;}
.mw680 {max-width: 680px; margin: auto;}
.mw740 {max-width: 740px; margin: auto;}
.mw840 {max-width: 840px; margin: auto;}
.mw900 {max-width: 900px; margin: auto;}
.mw1040 {max-width: 1280px; margin: auto;}

.pa-0 {padding: 0;}
.pt-0 {padding-top: 0;}
.pb-0 {padding-bottom: 0;}

input[type="radio"], input[type="checkbox"] {
	display: none;
}

.blur {
	filter: blur(2px);
}

.decoBox {
	position: absolute;
	/* z-index: -1; */
}

.hidden {
	display: none;
}
.over_hidden {
	overflow: hidden;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
	#contents {
		min-height: calc(100vh - 30vw - 12vw - 18px)
	}
	.innerBox {
		padding: 80px 0;
		width: 90%;
	}
	.hidden-mob {
		display: none;
	}
	.flexColumn-mob ,
	.flexColumn-tab {
		flex-direction: column;
	}
	.whiteBox {
		padding: 2.5em 1.25em;
	}
	.roundBox {
		border-radius: 10px;
	}
}
@media screen and (max-width:500px) {
	.display-small {
		display: block;
	}
}
/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
	#contents {
		min-height: calc(100vh - 280px - (78px + 7vw))
	}
	a:hover {
		opacity: .7;
	}
	a.opacity-1:hover {
		opacity: 1;
	}
	.hidden-pc, .hidden-pc_d-tab {
		display: none;
	}
	.whiteBox {
		padding: 55px 45px;
	}
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:960px) {
	#contents {
		min-height: calc(100vh - (140px + 8vw) - (78px + 7vw));
	}
	.innerBox {
		padding: 100px 0;
	}
	.flexColumn-tab {
		flex-direction: column;
	}
	.hidden-tab {
		display: none;
	}
	.display-tab, .hidden-pc_d-tab {
		display: block;
	}
	.whiteBox {
		padding: 55px 30px;
	}
}

@media screen and (min-width:1280px) {
	.hidden-wide {
		display: none;
	}
	.whiteBox {
		padding: 56px 72px;
	}
}

/*====================================================
//NOTE 余白
====================================================*/
.ma-auto {margin: auto !important}
.ma-0 {margin: 0 !important}
.ma-05em {margin: .5em !important}
.ma-10em {margin: 1.0em !important}
.ma-15em {margin: 1.5em !important}
.ma-20em {margin: 2em !important}
.ma-30em {margin: 3em !important}
.mt-0 {margin-top: 0 !important}
.mt-03em {margin-top: .3em !important}
.mt-05em {margin-top: .5em !important}
.mt-08em {margin-top: .8em !important}
.mt-10em {margin-top: 1.0em !important}
.mt-15em {margin-top: 1.5em !important}
.mt-20em {margin-top: 2em !important}
.mt-30em {margin-top: 3em !important}
.ml-0 {margin-left: 0 !important}
.ml-05em {margin-left: .5em !important}
.ml-10em {margin-left: 1.0em !important}
.ml-15em {margin-left: 1.5em !important}
.ml-20em {margin-left: 2em !important}
.ml-30em {margin-left: 3em !important}
.mr-0 {margin-right: 0 !important}
.mr-02em {margin-right: .2em !important}
.mr-05em {margin-right: .5em !important}
.mr-10em {margin-right: 1.0em !important}
.mr-15em {margin-right: 1.5em !important}
.mr-20em {margin-right: 2em !important}
.mr-30em {margin-right: 3em !important}
.mb-0 {margin-bottom: 0 !important}
.mb-03em {margin-bottom: .3em !important}
.mb-05em {margin-bottom: .5em !important}
.mb-08em {margin-bottom: .8em !important}
.mb-10em {margin-bottom: 1.0em !important}
.mb-15em {margin-bottom: 1.5em !important}
.mb-20em {margin-bottom: 2em !important}
.mb-30em {margin-bottom: 3em !important}

.ma-10 {margin: 10px !important}
.ma-20 {margin: 20px !important}
.ma-30 {margin: 30px !important}
.ma-40 {margin: 40px !important}
.ma-50 {margin: 50px !important}
.mt-10 {margin-top: 10px !important}
.mt-20 {margin-top: 20px !important}
.mt-30 {margin-top: 30px !important}
.mt-40 {margin-top: 40px !important}
.mt-50 {margin-top: 50px !important}
.mt-60 {margin-top: 60px !important}
.mt-70 {margin-top: 70px !important}
.ml-10 {margin-left: 10px !important}
.ml-20 {margin-left: 20px !important}
.ml-30 {margin-left: 30px !important}
.ml-40 {margin-left: 40px !important}
.ml-50 {margin-left: 50px !important}
.mr-10 {margin-right: 10px !important}
.mr-20 {margin-right: 20px !important}
.mr-30 {margin-right: 30px !important}
.mr-40 {margin-right: 40px !important}
.mr-50 {margin-right: 50px !important}
.mb-10 {margin-bottom: 10px !important}
.mb-20 {margin-bottom: 20px !important}
.mb-30 {margin-bottom: 30px !important}
.mb-40 {margin-bottom: 40px !important}
.mb-50 {margin-bottom: 50px !important}
.mb-60 {margin-bottom: 60px !important}
.mb-70 {margin-bottom: 70px !important}

.pa-0 {padding: 0 !important}
.pa-05em {padding: .5em !important}
.pa-10em {padding: 1.0em !important}
.pa-15em {padding: 1.5em !important}
.pa-20em {padding: 2em !important}
.pt-0 {padding-top: 0 !important}
.pt-05em {padding-top: .5em !important}
.pt-10em {padding-top: 1.0em !important}
.pt-15em {padding-top: 1.5em !important}
.pt-20em {padding-top: 2em !important}
.pb-0 {padding-bottom: 0 !important}
.pb-05em {padding-bottom: .5em !important}
.pb-10em {padding-bottom: 1.0em !important}
.pb-15em {padding-bottom: 1.5em !important}
.pb-20em {padding-bottom: 2em !important}


/*====================================================
//NOTE テキスト
====================================================*/
small, .small {
	font-size: .8em;
}
big, .big {
	font-size: 1.2em;
}
strong {
	font-weight: bold;
}
sup {
	font-size: .5em;
	vertical-align: .5em;
}

.fw-normal {
	font-weight: 400;
}
.fw-medium {
	font-weight: 500;
}
.fw-bold {
	font-weight: 600;
}
.fw-black {
	font-weight: 900;
}

.txt-left {
	text-align: left;
}
.txt-justify {
	text-align: justify;
}
.txt-right {
	text-align: right;
}
.txt-center {
	text-align: center;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
}
/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
	.txt-center-pc {
		text-align: center;
	}
}

.lh-10 {line-height: 1.0;}
.lh-12 {line-height: 1.2;}
.lh-14 {line-height: 1.4;}
.lh-15 {line-height: 1.5;}
.lh-16 {line-height: 1.6;}
.lh-18 {line-height: 1.8;}

h1, h2, h3, h4, h5, h6 {
	line-height: 1.4;
}

h1 {font-size: 4.3rem;}
h2 {font-size: 4.0rem;}
h3 {font-size: 2.4rem;}
h4 {font-size: 2.2rem;}
h5 {font-size: 2.0rem;}

@media screen and (max-width: 769px) {
	h1 {font-size: 2.2em;}
	h2 {font-size: 1.8em;}
	h3 {font-size: 1.3em;}
	h4 {font-size: 1.2em;}
	h5 {font-size: 1.1em;}
}

/*====================================================
//NOTE 装飾系
====================================================*/

.linkBtn { /* class linkBtn */
	background: var(--mainColor);
	border: solid 4px var(--mainColor);
	border-radius: 3em;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
	color: #fff;
  cursor: pointer;
	display: inline-block;
	font-size: 1.2em;
	font-weight: 700;
	line-height: 1.4;
	margin: auto;
	/* overflow: hidden; */
	padding: .8em 2.5em;
	position: relative;
	text-align: center;
	transition: .2s ease-in-out;
  width: 100%;
		max-width: 390px;
	z-index: 1;
}

.linkBtn.whiteBtn {
	background: #fff;
	border-color: #fff;
	color: var(--mainColor);
}

.linkBtn.shadow_none {
	box-shadow: none;
}

p .linkBtn {
	font-size: .8em;
	padding: .2em 3em .25em 2em;
	margin: 0 .7em;
	pointer-events: none;
	vertical-align: middle;
	width: auto !important;
	max-width: none;
	min-width: 0 !important;
}
p .linkBtn.reverseBtn {
	padding: .3em 2em .4em 3em;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
	.linkBtn {
		border-width: 2px;
		font-size: 1.25em;
		max-width: 420px;
	}
	p .linkBtn {
		margin: 0 .3em;
		vertical-align: .1em;
	}

}
/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
	.linkBtn:hover {
		filter: brightness(1.1);
		opacity: 1;
		transform: scale(1.02);
	}
	.linkBtn.whiteBtn:hover {
		background: #fff;
		border-color: var(--mainColor);
	}
}


dl.accordion dt ,
dl.menu-accordion dt {
	cursor: pointer;
	transition: .2s ease-in-out;
}
dl.accordion dd ,
dl.menu-accordion dd {
	overflow: hidden;
	transition: .2s ease-in-out;
}

ul.markList li {
	line-height: 1.6;
	position: relative;
	padding-left: 1.2em;
	margin: .3em 0;
}
ul.markList.dot li {
	padding-left: 1em;
}
ul.markList.dot li::before {
	background: currentColor;
	border-radius: 100%;
	content: '';
	margin: auto;
	position: absolute;
		left: .3em;
		top: .7em;
	width: .2em;
	height: .2em;
}
ul.markList > li:first-child {
	margin-top: 0;
}
ul.markList > li:last-child {
	margin-bottom: 0;
}
ul.markList li:before {
	position: absolute;
	display: block;
	left: 0;
	top: .05em;
}
ul.markList li:after {
	display: none !important;
}
ul.markList.attentionMark {
	line-height: 1.4;
}
ul.markList.attentionMark li:before {
	content: '\203B';
}
ol{
	counter-reset:number; /* 名前を付けたカウンターをリセット */
	list-style:none; /* olが数字を付けることをキャンセル */
	margin:0;
	padding:0;
}
ol > li{
	padding-left: 1.7em;
	margin: .5em 0;
	position: relative;
}
ol > li:first-child {
	margin-top: 0;
}
ol > li:last-child {
	margin-bottom: 0;
}
ol > li::before{
	counter-increment: number;
	content: counter(number)'.';
	position: absolute;
	top: .3em;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.7em;
	height: 1.2em;
	line-height: 1;
}

.squareMark {
	border-radius: 10px;
	display: inline-block;
	line-height: 1;
	padding: .4em 1em;
	vertical-align: .1em;
}
.circleMark {
	border-radius: 2em;
	display: inline-block;
	line-height: 1;
	padding: .2em .6em;
	vertical-align: .1em;
}

/*====================================================
////NOTE カラー
====================================================*/
.bg-white {
	background: #fff;
	color: var(--black);
}
.bg-mainColor {
	background: var(--mainColor);
	color: #fff;
}
.bg-red {
	background: var(--red);
	color: #fff;
}
.bg-l_b_gray {
	background: var(--l_b_gray);
}
.bg-gray {
	background: var(--gray);
}
.bg-navy {
	background: var(--navy);
	color: #fff;
}
.bg-black {
	background: var(--black);
	color: #fff;
}

.white {
	color: #fff;
}
.mainColor {
	color: var(--mainColor);
}
.red {
	color: var(--red);
}
.gray {
	color: var(--gray);
}
.black {
	color: var(--black);
}


@media print, screen and (min-width: 769px) {
}

/*====================================================
////id  loader
====================================================*/
.is-hide {
	display: none;
}
/* ローディング画面をフェードアウト */
.fadeout-bg {
	transition-property: opacity;
	transition-delay: .8s;
	transition-duration: 1.7s;
	opacity: 0;
	pointer-events: none;
}
/* ローダーをフェードアウト */
.fadeout-loader {
	transition-property: opacity;
	transition-delay: .8s;
	transition-duration: 1.7s;
	opacity: 0;
	pointer-events: none;
}
/* ローディング画面 */
#loader-bg {
	background: #fff;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 99999;
}
#loader {
	height: 120px;
	left: 50%;
	margin-left: -60px;
	margin-top: -60px;
	position: fixed;
	top: 50%;
	width: 120px;
}

/*====================================================
////id 【header】
====================================================*/
header .headerBox {
	position: fixed;
		top: 0;
		left: 0;
	width: 100%;
	z-index: 9999;
}
header .headerBox .innerBox {
	padding: 0;
	height: 100%;
}
header .logo a {
	align-items: center;
}
header .menuBox ul {
	grid-gap: 1em;
}



/* ////////// mobile ////////// */
@media screen and (max-width: 1080px) {
	header {
		height: 0;
	}
	header .headerBox {
		font-size: 2.9vw;
		height: 60px;
	}
	header .itemBox {
		align-items: center;
	}
	header .logo a {
		height: 40px;
	}
	header .menuBtn {
		background: var(--mainColor);
		cursor: pointer;
		place-content: center;
		position: fixed;
			top: 0;
			right: 0;
		transition: .2s ease-in-out;
		width: 60px;
		height: 60px;
		z-index: 10;
	}
	header .menuBtn .humberger {
		padding-top: 60%;
		width: 28px;
		height: 0;
		position: relative;
		margin: 0;
	}
	header .menuBtn .humberger span {
		background: #fff;
		content: '';
		margin: auto;
		opacity: 1;
		position: absolute;
			left: 0;
		transition: .4s ease-in-out;
		width: 100%;
		height: 2px;
	}
	header .menuBtn .humberger span:nth-child(1) {
		top: 0;
	}
	header .menuBtn .humberger span:nth-child(2) {
		top: 0;
		bottom: 0;
	}
	header .menuBtn .humberger span:nth-child(3) {
		bottom: 0;
	}
	header .menuBox {
		background: rgba(255, 255, 255, .95);
		opacity: 0;
		overflow-y: auto;
		padding: 60px 5vw;
		pointer-events: none;
		position: fixed;
			bottom: 0;
			left: 0;
		transition: .5s ease-in-out;
		width: 100%;
		height: 100vh;
		height: 100dvh;
		z-index: 1;

		overflow-y: scroll;
		-ms-overflow-style: none;    /* IE, Edge 対応 */
		scrollbar-width: none;       /* Firefox 対応 */
	}
	header .menuBox::-webkit-scrollbar {  /* Chrome, Safari 対応 */
		display:none;
	}
	header .menu-outer.open .menuBtn {
		transition: .2s ease-in-out;
	}
	header .menu-outer.open .humberger span {
		background: #fff;
		right: 0;
		width: 80%;
	}
	header .menu-outer.open .humberger span:nth-child(2) {
		opacity: 0;
	}
	header .menu-outer.open .humberger span:nth-child(1) {
		top: calc(50% - 1px);
		right: 0;
		transform: rotate(-135deg);
	}
	header .menu-outer.open .humberger span:nth-child(3) {
		bottom: calc(50% - 0px);
		right: 0;
		transform: rotate(135deg);
	}
	header .menu-outer.open .humberger span:nth-child(2)::before,
	header .menu-outer.open .humberger span:nth-child(3)::before {
		display: none;
	}
	header .menu-outer.open .maskBox {
		opacity: 1;
		pointer-events: auto;
	}
	header .menu-outer.open .menuBox {
		pointer-events: auto;
		bottom: 0;
		opacity: 1;
	}

	header .menuBox .menu_content {
		align-items: center;
		flex-direction: column;
		grid-gap: 2em;
	}
	header .menuBox .menu_logo {
		margin: auto;
		width: 50%;
		max-width: 200px;
	}
	header .menuBox .menu {
		align-items: center;
		flex-direction: column;
		font-weight: bold;
		text-align: center;
	}
	header .menu-outer .menu-pc {
		display: none;
	}
	header .menuBox li {
		padding: 0;
		position: relative;
		width: 100%;
	}
	header .menuBox .menu > li > a::before {
	}

	header .menu .sub-menu-outer {
		overflow: hidden;
		transition: .4s ease-in-out;
	}
	header .menuBox li .sub-menu-btn {
		background: #fff;
		cursor: pointer;
		display: block;
		margin: auto;
		position: absolute;
			top: 0;
			right: -1em;
		width: 3em;
		height: 2.9em;
	}
	header .menuBox li .sub-menu-btn::before,
	header .menuBox li .sub-menu-btn::after {
		border-top: solid 1px var(--black);
		content: '';
		margin: auto;
		position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
		transition: .2s ease-in-out;
		width: .8em;
		height: 0;
	}
	header .menuBox li .sub-menu-btn::after {
		transform: rotate(90deg);
	}
	header .menuBox li.open .sub-menu-btn::before {
		transform: rotate(180deg);
	}
	header .menuBox li.open .sub-menu-btn::after {
		opacity: 0;
		transform: rotate(180deg);
	}
	header .menuBox .sub-menu li {
		font-size: .9em;
		font-weight: 500;
	}
	header .menuBox .sub-menu-outer ul a {
		padding-left: 1.2em;
	}
	header .menuBox .sub-menu-outer ul a::before {
		border-top: solid 1px;
		content: '';
		display: block;
		margin: auto;
		position: absolute;
			top: .8em;
			left: 0;
		transition: .1s ease-in-out;
		width: .8em;
		height: 0;
	}
}
/* ////////// PC ////////// */
@media print, screen and (min-width: 1080px) {
	header {
		height: 70px;
	}
	header .headerBox {
		background: rgba(255, 255, 255, 0.8);
		height: 70px;
	}
	header .itemBox {
		align-items: center;
	}
	header .logo a {
		height: 40px;
	}
	header .menu-outer {
		flex: 1;
	}
	header .menuBtn,
	header .maskBox {
		display: none;
	}
	header .menu_content {
		align-items: center;
		grid-gap: 1.5em;
	}
	header .menuBox .menu_logo {
		display: none;
	}
	header .menuBox ul {
		flex: 1;
		justify-content: flex-end;
	}
	header .btnBox a {
		font-size: 1.8rem;
		padding: .4em 1.2em;
		width: 230px;
	}
}
@media print, screen and (min-width: 1280px) {
}

/*====================================================
//class .sa
====================================================*/
.sa {
	opacity: 0;
	transition: all .8s ease;
}
.sa.show {
	opacity: 1;
	transform: none;
}
.sa-lr {
	transform: translate(-50px, 0);
}
.sa-rl {
	transform: translate(50px, 0);
}
.sa-up {
	transform: translate(0, 50px);
}
.sa-down {
	transform: translate(0, -50px);
}
.sa-scaleUp {
	transform: scale(.8);
}
.sa-scaleDown {
	transform: scale(1.2);
}
.sa-rotateL {
	transform: rotate(180deg);
}
.sa-rotateR {
	transform: rotate(-180deg);
}

.sa.slideShow {
	opacity: 1;
	position: relative;
	z-index: 1;
}
.sa.slideShow:before {
	background: #f4f4f4;
	content: '';
	position: absolute;
		top: 0;
		left: 0;
		right: auto;
	transition: .5s ease-in-out;
	width: 0;
	height: 100%;
	z-index: 10;
}
.sa.slideShow.show:before {
	-webkit-animation: anim-slide 1.0s ease-in-out forwards;
	        animation: anim-slide 1.0s ease-in-out forwards;
	-webkit-animation-delay: .4s;
	        animation-delay: .4s;
}
@-webkit-keyframes anim-slide {
	0%   {}
	55%  { width: 100%; left: 0; right: 0;}
	65% { width: 100%; left: auto; right: 0; }
	100% { width: 0; left: auto; right: 0; }
}
@keyframes anim-slide {
	0%   {}
	47%  { width: 100%; left: 0; right: 0;}
	53% { width: 100%; left: auto; right: 0; }
	100% { width: 0; left: auto; right: 0; }
}

.sa.slideShow img,
.sa.slideShow > .box-inner {
	opacity: 0;
}
.sa.slideShow.show img ,
.sa.slideShow.show > .box-inner {
	opacity: 1;
	transition-delay: .9s;
}


.sa.slideShow.slide-rl {
	transform: rotate(180deg);
}
.sa.slideShow.slide-rl img {
	transform: rotate(180deg);
}

.sa.slideShow.slide-pink:before {
	background: #f1cfd4;
}
.sa.slideShow.slide-white:before {
	background: #fff;
}

/*====================================================
//// id 装飾
====================================================*/
#fixed_btn {
	position: absolute;
		left: 0;
		bottom: 0;
	transition: .8s ease-in-out;
	width: 100%;
	z-index: 8000;
}
#fixed_btn.fixed {
	position: fixed;
}
#fixed_btn.hide {
	bottom: -150px;
	pointer-events: none;
}

.deco_logo {
	background: url('../img/logo_icon.png') no-repeat top center;
	background-size: 1em;
	padding-top: 1.5em;
	position: relative;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
	#fixed_btn .innerBox {
		padding: 0 0 20px;
	}
	#fixed_btn .linkBtn {
		font-size: 1.4em;
	}
}

@media screen and (max-width:600px) {
	#fixed_btn .innerBox {
		padding: 0;
		width: 100%;
	}
	#fixed_btn .linkBtn {
		border-radius: 0;
		box-shadow: none;
		width: 100%;
			max-width: none;
	}
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
	#fixed_btn .innerBox {
		padding: 0 0 70px;
		transition: .6s ease-in-out;
	}
	#fixed_btn.fixed .innerBox {
		padding: 0 0 30px;
	}
	#fixed_btn .linkBtn {
		font-size: 3rem;
		max-width: 600px;
	}
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:960px) {
	#fixed_btn .linkBtn {
		font-size: 2.4rem;
		max-width: 400px;
	}
}

@media screen and (min-width:1280px) {
}

/*====================================================
//id form
====================================================*/
input, button, select {
	margin: 0;
	padding: 0;
	background: none;
	background-image: none;
	background-position-x: initial;
	background-position-y: initial;
	background-size: initial;
	background-repeat-x: initial;
	background-repeat-y: initial;
	background-attachment: initial;
	background-origin: initial;
	background-clip: initial;
	background-color: initial;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	color: inherit;
	cursor: pointer;
}
input[type="text"],input[type="email"],input[type="tel"],input[type="no"],input[type="search"],input[type="password"],input[type="url"],input[type="number"], select, textarea {
	-webkit-appearance: none;
	background: #fff;
	border: none;
	border-radius: .5em;
	color: var(--black);
	display: block;
	font-family: var(--font_family);
	line-height: 1.6;
	padding: .6em .8em .7em;
	transition: .2s ease-in-out;
	width: 100%;
		max-width: 800px;
}
input:required ,
select:required {
}
input.error, select.error, textarea.error {
	background: var(--red);
	border-color: var(--red);
}
::-moz-placeholder {
	color: var(--gray);
}
:-ms-input-placeholder {
	color: var(--gray);
}
::placeholder {
	color: var(--gray);
}
textarea {
	resize: vertical;
	min-height: 130px;
	width: 100%;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, select:focus, textarea:focus {
	border-color: var(--gray);
}
input[type="file"],
label {
	cursor: pointer;
	display: grid;
}
label {
	cursor: pointer;
}
form label {
	position: relative;
	line-height: 1.4;
	display: inline-block;
}

input[type="checkbox"] + span ,
input[type="checkbox"] + label {
	position: relative;
	padding-left: 1.4em;
	display: inline-block;
}
input[type="checkbox"] + span:before ,
input[type="checkbox"] + label:before {
	position: absolute;
	content: '';
	width: .9em;
	height: .9em;
	border: solid 1px;
	border-radius: 3px;
	border-color: inherit;
	top: .25em;
	left: 0px;
	transition: .2s ease-in-out;
}
input[type="checkbox"] + label:before {
}
input[type="checkbox"] + span:after ,
input[type="checkbox"] + label:after {
	position: absolute;
	content: '';
	width: .7em;
	height: .4em;
	border: solid;
	border-width: 0 0 3px 3px;
	border-color: transparent transparent var(--mainColor) var(--mainColor);
	transform: rotate(-45deg);
	top: .2em;
	left: .2em;
	opacity: 0;
	transition: .2s ease-in-out;
}
input[type="checkbox"] + label:after {
}
input[type="checkbox"]:checked + span:after ,
input[type="checkbox"]:checked + label:after {
	opacity: 1;
}
input[type="radio"] + span ,
input[type="radio"] + label {
	margin: 0 1em .4em 0;
	position: relative;
	padding-left: 1.5em;
}
input[type="radio"] + span:before,
input[type="radio"] + label:before {
	position: absolute;
	content: '';
	width: 1em;
	height: 1em;
	border: solid 1px;
	border-radius: 100%;
	border-color: inherit;
	top: .23em;
	left: 0px;
	transition: .2s ease-in-out;
}
input[type="radio"] + span:after,
input[type="radio"] + label:after {
	position: absolute;
	content: '';
	width: .6em;
	height: .6em;
	top: .48em;
	left: .26em;
	border-radius: 100%;
	opacity: 0;
	transition: .2s ease-in-out;
}
input[type="radio"]:checked + span:after,
input[type="radio"]:checked + label:after {
	opacity: 1;
	background: var(--mainColor);
}


.select {
	position: relative;
	max-width: 800px;
}
.select:before {
	position: absolute;
	content: '';
	width: 0;
	height: 0;
	border: solid 4px transparent;
	border-top-color: currentColor;
	border-top-width: 6px;
	border-bottom-width: 0;
	right: 20px;
	top: 0;
	bottom: 0;
	margin: auto;
	pointer-events: none;
	z-index: 100;
}
.select select {
	width: 100%;
}
#confirm .select:before {
	display: none;
}
select {
	cursor: pointer;
	padding-right: 2em;
}
label img {
	display: inline-block;
	margin-right: .4em;
	transition: .2s ease-in-out;
	vertical-align: text-bottom;
	width: 1.3em;
}
input:checked + label img {
	filter: brightness(0) invert(1);
}
button:disabled {
	cursor: default;
	filter: grayscale(.7);
	opacity: .5;
	pointer-events: none;
}

.formBox {
	line-height: 1.6;
	margin: auto;
	max-width: 680px;
}
.formBox .itemBox {
	grid-gap: 1.5em 0;
}
.formBox dl {
	font-weight: 500;
	grid-gap: .6em 2em;
}
.formBox dt {
	padding-left: 1.2em;
	position: relative;
}
.formBox dt::before {
	background: var(--mainColor);
	content: '';
	display: block;
	margin: auto;
	position: absolute;
		top: .4em;
		left: 0;
	width: .8em;
	height: .8em;
}
.formBox dd + dd {
	margin-top: 1em;
}
.input-outer {
	padding: 19px 30px;
}
.formBox .consentBox {
	grid-gap: .3em 1.5em;
}
.formBox .consent_link {
	font-size: .7em;
	margin-top: -1em;
}
.btnBox .box-inner.flexBox {
	grid-gap: 30px;
	justify-content: space-evenly;
	margin: auto;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {

	.errorBox {
		border-width: 4px;
		padding: 1em 1em
	}
	.formBox .itemBox {
		grid-gap: 2.5em;
	}
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {

	.errorBox {
		padding: 1em 1.2em
	}
	.formBox dl {
		grid-template-columns: 10em 1fr;
	}
	.formBox dt {
		padding-top: .7em;
	}
	.formBox dt::before {
		top: 1.2em;
	}
	.formBox dd.radio {
		padding: .8em 0;
	}
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:960px) {
	.checkboxBox, .radioBox {
		grid-gap: 10px;
	}
	.btnBox .box-inner.flexBox {
		flex-direction: column;
	}
}

@media screen and (min-width:1280px) {
	input[type="checkbox"] + label ,
	input[type="radio"] + label {
	}
}


.delay-01 {
	transition-delay: .1s;
}
.delay-02 {
	transition-delay: .2s;
}
.delay-03 {
	transition-delay: .3s;
}
.delay-04 {
	transition-delay: .4s;
}


/*====================================================
////class .pagetop
====================================================*/
.pagetop {
	display: none;
	position: fixed;
		bottom: 30px;
		right: 20px;
	transform: none !important;
	transition: .6s ease-in-out;
	width: 3em;
	height: 3em;
	z-index: 1000;
	/*	border: solid 1px*/
}
.pagetop.stop {
	position: absolute;
	top: -70px;
	bottom: auto;
}
.pagetop a {
	background: var(--black);
	border: solid 1px #fff;
	color: #fff;
	border-radius: 100%;
	display: flex;
		align-items: center;
		justify-content: center;
	padding-top: .3em;
	position: relative;
	text-align: center;
	opacity: .8;
	width: 100%;
	height: 100%;
}
.pagetop .arrow {
	border: solid #fff;
	border-width: 2px 2px 0 0;
	transform: rotate(-45deg);
	width: .6em;
	height: .6em;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 600px) {
	.pagetop {
		right: 10px;
		bottom: 5em;
		width: 2.5em;
		height: 2.5em;
	}
	.pagetop.end {
		bottom: 10px;
	}
}

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

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
	.pagetop a:hover {
		opacity: 1;
	}
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:960px) {
}

@media screen and (min-width:1280px) {
}

/*====================================================
////id footer
====================================================*/
footer {
	position: relative;
	z-index: 1000;
}
footer .itemBox {
	grid-gap: 1.5em;
}
footer .menu {
	grid-gap: .6em 2em;
}
footer .copyright {
	font-size: 1.0rem;
	position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
	footer .innerBox {
		padding: 40px 0;
	}
	footer .logo img {
		height: 40px;
	}
	footer .menu {
		font-size: .8em;
	}
}

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

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
	footer .innerBox {
		padding: 30px 5em 30px 0;
	}
	footer .logo img {
		height: 40px;
	}
	footer .menu {
		justify-content: flex-end;
	}
}

@media screen and (min-width:1400px) {
	footer .innerBox {
		padding: 30px 0;
	}
}

/*====================================================
//// id xxx
====================================================*/
.anchorAdjust {
	display: block;


}
