@charset "UTF-8";

/*
@import url( http://fonts.googleapis.com/earlyaccess/notosansjp.css );
@import url( 'https://fonts.googleapis.com/css2?family=M+PLUS+1p&display=swap' );
*/

/**************************************************
　Element
***************************************************/

* {
	margin: 0;
	padding: 0;
}
:root {
	--base-bg-yellow: #FCFAEE;
	--base-orange: #F08200;
	--base-orange-deep: #DA7B00;
	--base-water-blue: #3CA7BC;
	--base-black: #2F3030;
	--base-brown: #41362A;
	--base-gray: #999;
	--base-gray-text: #7F7F7F;
	--base-gray-bg: #d3d3d3;
	--base-white: #FFF;
	--bg-texture: url( './../image/common/bg.jpg' ) repeat;
}
.noise {
	background-color: rgba( 252, 250, 238, .8 );
	background-image: linear-gradient( rgba( 252, 250, 238, .8 ), rgba( 252, 250, 238, .8 ) ), url( './../image/common/noise.png' );
	background-repeat: repeat;
	background-size: 100px;
}
html {
	overflow-x: hidden;
}
body {
	background: var(--bg-texture);
	font-family: 'Noto Sans JP', sans-serif, 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', sans-serif;
	min-width: 100%;
	overflow-x: hidden;
	position: relative;
	width: 100%;
	-webkit-text-size-adjust: 100%;
}
a { text-decoration: none; }
li { list-style-type: none; }
img, a img { border-style: none; }


/* Original Class */
.contents {
	margin: 0 auto;
	position: relative;
}
.pageTop {
	cursor: pointer;
	display: block;
}
.smallText {
	font-size: 90%;
}
.gray {
	color: var(--base-gray-text);
}
.error {
	color: #F00;
	font-size: 90%;
}
.positionCenter { text-align: center; }
.floatLeft { float: left; }
.clearBoth { clear: both; }
.btn {
	border-radius: 5px;
	cursor: pointer;
	margin: 0 auto;
	text-align: center;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
}
.clearfix::after{
	clear: both;
	content: "";
	display: block;
}
.thumbnail.none {
	border-bottom: 1px solid #E5E5E5;
}


/**************************************************
　Header
***************************************************/

header {
	height: 100px;
	position: relative;
	width: 100%;
}
header h1 {
	position: absolute;
	top: 0;
}
header h1 img {
	margin-top: 10px;
	max-height: 80px;
}

/* ボタン */
header.pc .linkBox {
	display: flex;
	position: absolute;
}
header .linkBox .link {
	border-radius: 15px;
	font-size: 1.1rem;
}
header.pc .linkBox .link {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	height: 60px;
	line-height: 54px;
}
header .linkBox .link a {
	box-sizing: border-box;
	color: #fff;
	display: block;
	height: 100%;
	position: relative;
	width: 100%;
}
header .linkBox .link:nth-of-type( 1 ) {
	background-color: var( --base-black );
}
header .linkBox .link:nth-of-type( 2 ) {
	background-color: var( --base-orange );
}
header.pc .linkBox .link:nth-of-type( 2 ) {
	margin-left: 20px;
}
header .linkBox .link a::before {
	background: url( './../image/common/btn-icons.png' ) no-repeat 0 0;
	background-size: 35px 70px;
	bottom: 20px;
	content: '';
	display: block;
	height: 30px;
	position: absolute;
	width: 35px;
}
header .linkBox .link:nth-of-type( 2 ) a::before {
	background-position: 0 -35px;
}


/**************************************************
　SP|Tab Menu
***************************************************/

header.sp.opening,
header.tab.opening {
	background: var(--bg-texture);
	overflow-y: auto;
	position: fixed;
	right: 0;
	top: 0;
	width: 100vw;
	z-index: 10;
}
header.sp .contents,
header.tab .contents {
	display: none;
	height: auto;
	position: relative;
	width: 100vw;
}
header.opening .contents {
	display: block;
}
header.sp nav,
header.tab nav {
	left: 0;
	padding-top: 120px;
	position: relative;
	width: 100dvw;
}
header.sp li,
header.tab li {
	text-align: center;
	width: 100dvw;
}
header.sp li a,
header.tab li a {
	color: var(--base-black);
	font-size: 1.2rem;
}
header.sp .linkBox,
header.tab .linkBox {
	left: 0;
	position: relative;
	width: 100dvw;
}
header.sp .linkBox .link,
header.tab .linkBox .link {
	border-radius: 0;
	float: left;
	width: 50dvw;
}
header.sp .linkBox .link a::before,
header.tab .linkBox .link a::before {
	left: calc( 50% - 18px );
}


/**************************************************
　Menu Btn
***************************************************/

.menuBtn::before {
	display: none;
}
.menuBtn.opening {
	background-color: initial;
}
.menuBtn.opening span:nth-of-type( 1 ),
.menuBtn.opening span:nth-of-type( 2 ) {
	left: 35px;
}

/* MenuBtn */
.menuBtn {
	border-radius: 0;
	box-sizing: border-box;
	color: #fff;
	cursor: pointer;
	height: 80px;
	position: fixed;
	right: 0;
	text-align: center;
	top: 0;
	transition: all .4s;
	width: 90px;
	z-index: 35;
}
/*
.menuBtn::before {
	color: var(--base-orange-deep);
	content: 'MENU';
	font-size: .8rem;
	font-weight: bold;
	left: 6px;
	padding-top: 50px;
	position: absolute;
	text-align: center;
	top: -40px;
	transition: .3s;
	width: 80px;
}
.menuBtn.opening::before {
	content: 'CLOSE';
}
*/
.menuBtn::after {
	content: '';
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	opacity: 0;
	transition: .3s;
	width: 100%;
	z-index: -1;
}
.menuBtn:hover::after {
	opacity: 1;
}
.menuBtn span {
	background-color: var(--base-orange);
	display: inline-block;
	height: 3px;
	right: 25px;
	transition: all .4s;
	position: absolute;
	width: 40px;
}
.menuBtn span:nth-of-type( 1 ) {
	top: 38px;
}
.menuBtn span:nth-of-type( 2 ) {
	top: 49px;
}
.menuBtn span:nth-of-type( 3 ) {
	top: 60px;
}
.menuBtn.opening span:nth-of-type( 1 ) {
	top: 42px;
	transform: translateY( 6px ) rotate( -45deg );
	width: 24px;
}
.menuBtn.opening span:nth-of-type( 2 ) {
	top: 55px;
	transform: translateY( -6px ) rotate( 45deg );
	width: 24px;
}
.menuBtn.opening span:nth-of-type( 3 ) {
	opacity: 0;
}


/**************************************************
　EyeCatch
***************************************************/

.eyeCatch {
	background: #999 no-repeat center top;
	background-size: cover;
	box-sizing: border-box;
	position: relative;
	text-align: center;
}
.eyeCatch .titleBox {
	background: #fff;
	background: var(--bg-texture);
	bottom: 0;
	box-sizing: border-box;
	position: absolute;
	right: 0;
	z-index: 2;
}

/**************************************************
　ページタイトル
***************************************************/

.common .titleBox .en {
	text-align: center;
}
.titleBox h2 {
	margin-bottom: 15px !important;
}
.titleBox .en {
	color: var(--base-orange-deep);
	font-weight: bold;
}

/**************************************************
　共通
***************************************************/

.eachBlock {
	position: relative;
}
.eachBlock::before,
.eachBlock::after {
	content: '';
	display: block;
	position: absolute;
	z-index: 3;
}
.eachBlock::before {
	left: 0;
	transform:scale( -1, -1 );
}
.eachBlock::after {
	bottom: 0;
	right: 0;
}
.eachBlock h2 {
	color: var(--base-black);
	font-weight: 900;
	text-align: center;
}
.eachBlock h1,
.eachBlock h3,
.eachBlock h4 {
	font-weight: normal;
}
.eachBlock h3 a,
.eachBlock h4 a {
	color: #000;
}

/* もっと見る｜各ページ リンクBtn */
.common .more {
	border-radius: 60px;
	font-size: 1.1rem;
	height: 60px;
	line-height: 61px;
	margin: 0 auto;
	position: relative;
	text-align: center;
	width: 260px;
}
.common .more::after {
	content: '>';
	display: inline-block;
	position: absolute;
	right: 22px;
	top: 0px;
	transform: scale( 0.7, 1.3 );
}
.common .more.gray {
	border: 1px solid var(--base-gray);
}
.common .more.gray a {
	color: var(--base-gray-text);
	font-weight: normal;
}
.common .more a {
	display: block;
	width: 100%;
}

/* パンくず */
.pan ul {
	display: block;
	margin: 0 auto;
}
.pan li {
	float: left;
	position: relative;
}
.pan li a::before {
	content: '＞';
	margin-right: 5px;
}
.pan li:first-of-type {
	margin-left: 0;
}
.pan li a {
	color: var(--base-gray);
}


/**************************************************
　leadBlock
***************************************************/

.leadBlock strong {
	font-weight: 900;
	display: block;
}

/**************************************************
　お知らせ
***************************************************/

.topicsBlock .eachBox .imageBox .thumbnail {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
}
.topicsBlock .eachBox .textBox {
	background: #fff;
	box-sizing: border-box;
}
.topicsBlock .eachBox .textBox p {
	font-size: 1.1rem;
	line-height: 2.0rem;
}
.topicsBlock .eachBox .textBox .labelBox span {
	background: var(--base-black);
	border-radius: 5px;
	color: #fff;
	display: inline-block;
	font-size: .9rem;
	margin-right: 10px;
	padding: 4px 10px 5px;
	text-align: center;
}
.topicsBlock .eachBox .textBox .labelBox span.activity {
	background: var(--base-orange);
}
.topicsBlock .eachBox .textBox .labelBox span.event {
	background: var(--base-water-blue);
}
.topicsBlock .eachBox .textBox .labelBox span.others {
	background: #E8AF2C;
}
.topicsBlock .eachBox a {
	color: #000;
}
.topicsBlock .eachBox a .date {
	color: var(--base-gray-text);
}
.topicsBlock .more {
	background: var(--base-black);
}
.topicsBlock .more a,
.topicsBlock .more::after {
	color: #fff;
}


/**************************************************
　お問い合わせBclok
***************************************************/

.contactBlock {
	background: var(--base-white);
}
.contactBlock .contents .numberBox {
	text-align: center;
}

/* 連絡先 */
.contactBlock .contents .numberBox a .number {
	color: var(--base-black);
}
.contactBlock .contents .numberBox b {
	display: block;
	margin-bottom: 10px;
}
.contactBlock .contents .numberBox .number {
	font-weight: bold;
}
.contactBlock .contents .numberBox .smallText {
	color: #888;
	font-size: 1.0rem;
	margin-top: 10px;
}

/* お問い合わせフォームBtn */
.contactBlock .numberBox .contactBtn {
	background-color: var(--base-orange);border-radius: 50px;
	font-size: 1.1rem;
	height: 60px;
	line-height: 60px;
	margin-top: 50px;
	position: relative;
}
.contactBlock .numberBox .contactBtn::after {
	color: #fff;
	content: '>';
	display: inline-block;
	position: absolute;
	right: 22px;
	right: 17px;
	top: 0px;
	transform: scale( 0.7, 1.3 );
}
.contactBlock .numberBox .contactBtn a {
	color: #fff;
	display: block;
	width: 100%;
}


/**************************************************
　Footer
***************************************************/

footer {
	background-color: var( --base-black );
	color: #fff;
	padding-bottom: 20px;
	position: relative;
}
footer nav a { color: #fff; }

/* pageTop */
footer .pageTop {
	position: absolute;
	text-align: center;
	transition: all 0.3s;
	width: 70px;
	width: 90px;
	z-index: 5;
}
footer .pageTop:hover {
	transition: all 0.3s;
}
footer .pageTop img {
	display: block;
	margin: 0 auto;
	max-width: 60px;
}
footer .pageTop span {
	color: var(--base-water-blue);
	display: block;
	font-size: .9rem;
	font-weight: bold;
}

footer .contentsBase {
	margin: 0 auto;
}
footer .companyInfo {
	line-height: 1.8rem;
}
footer .companyInfo img {
	max-width: 230px;
}
footer .companyInfo p {
	margin-top: 10px;
}
footer .companyInfo a {
	color: #fff;
}
footer .companyInfo p span a {
	border: 1px solid #fff;
	border-radius: 25px;
	display: inline-block;
	font-size: .75rem;
	height: 25px;
	line-height: 26px;
	margin-left: 20px;
	padding: 0 25px 0 20px;
	position: relative;
}
footer .companyInfo p span a::after {
	bottom: -1px;
	content: '>';
	color: #fff;
	font-weight: bold;
	display: block;
	position: absolute;
	right: 7px;
	transform: scale( .5, 1 );
}
footer .companyInfo .iconBox img {
	max-width: 35px;
}
footer .copyright {
	font-size: .85rem;
	line-height: 1.4rem;
}

/* 姉妹リンク */
footer nav dl:last-of-type a span {
	box-sizing: border-box;
	display: inline-block;
	height: 10px;
	margin: 0 0 3px 16px;
	position: relative;
	width: 10px;
}
footer nav dl:last-of-type a span::before,
footer nav dl:last-of-type a span::after {
	border-color: #fff;
	border-style: solid;
	box-sizing: border-box;
	content: "";
	height: 100%;
	position: absolute;
	width: 100%;
}
footer nav dl:last-of-type a span::before {
	border-width: 1px;
	left: 0;
	top: 0;
}
footer nav dl:last-of-type a span::after {
	border-width: 0 0 1px 1px;
	bottom: -5px;
	left: -5px;
}

/**************************************************
　Loading
***************************************************/

.loading {
	display: none;
}
.loading.show {
	background: linear-gradient( 140deg, rgba( 240, 131, 0, .85 ) 30%, rgba( 205, 81, 35, .9 ) 100% );
	bottom: 0;
	display: block;
    height: 100dvh;
	left: 0;
	position: fixed;
	width: 100dvw;
	z-index: 20;
}
.loading .animation {
    font-size: 14px;
    height: 100px;
	left: calc( 50dvw - 100px );
	position: fixed;
	top: calc( 50dvh - 100px );
    width: 100px;
}
.loading svg {
	overflow: visible;
}
.loading path {
	fill: none;
}
.loading text {
	fill: #fff;
}
.loading h1 {
	color: #fff;
	left: 30px;
	position: absolute;
	text-align: center;
	top: 23px;
	width: 140px;
}
.loading h1 b {
	display: block;
	font-size: 16px;
	font-weight: 500;
}
.loading h1 b:first-of-type {
	margin-bottom: 3px;
}
.loading h1 b {
	animation: showChar 1.0s ease forwards;
	opacity: 0;
}
.loading h1 strong {
	display: block;
	font-size: 38px;
	margin-top: 17px;
	padding: 1px 0 6px;
	position: relative;
}
.loading h1 strong span {
	animation: showChar 1.4s .8s ease forwards;
	opacity: 0;
}
.loading h1 strong::before,
.loading h1 strong::after {
	background: rgba( 255, 255, 255, .9 );
	content: '';
	display: block;
	height: 3px;
	left: 0;
	position: absolute;
}
.loading h1 strong::before {
	top: -2px;
}
.loading h1 strong::after {
	bottom: -4px;
}

/* アニメーション */
.loading .appeartext strong::before {
	animation: showLine 1.2s .2s ease forwards;
}
.loading .appeartext strong::after {
	animation: showLine 1.0s .5s ease forwards;
}
@keyframes showChar {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes showLine {
	0% {
		opacity: 0;
		width: 0;
	}
	100% {
		opacity: 1;
		width: 100%;
	}
}


/**************************************************
　アニメーション
***************************************************/

/* フェードイン */
.fadeInSlow {
	animation-name: fadeInAnime;
	animation-duration: 2.2s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeInAnime {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* 順番に表示 */
.fadeInUpAnimation {
	opacity: 0;
	transform: translate( 0, 20% );
	transition: 1s;
}
.fadeInUpAnimation.show {
	opacity: 1;
	transform: translate( 0, 0 );
}

/* マーカー */
@keyframes onMarker {
	0% {
		background-size: 0 40px;
	}
	100% {
		background-size: 100% 40px;
	}
}


/**************************************************
　デバイス振り分け設定
***************************************************/

/* ■■ SP ■■ */
@media (max-width: 767px) {

	/* header */
	header h1 {
		left: 8px;
		z-index: 3;
	}
	header a {
		display: block;
		height: 100%;
		width: 100%;
	}

	/* 共通 */
	.eachBlock::before,
	.eachBlock::after {
		height: 60px;
		width: 60px;
	}
	.eachBlock::before {
		bottom: -60px;
	}
	.eachBlock h2 {
		font-size: 1.6rem;
		margin-bottom: 60px;
	}
	.eachBlock .contents {
		width: 80dvw;
	}
		/* ページ名 */
	.eachBlock .titleBox {
		margin-bottom: 60px;
	}
		/* パンくず */
	.pan ul {
		width: 80dvw;
	}

	/* EyeCatch */
	.eyeCatch {
		border-top-right-radius: 60px;
		width: 90dvw;
	}
	.eyeCatch .titleBox {
		border-top-left-radius: 60px;
		height: 70px;
		padding: 20px 20px 20px 40px;
	}
	.eyeCatch .titleBox h1 {
		font-size: 1.3rem;
	}
	.eyeCatch .titleBox .en {
		font-size: .9rem;
		margin-top: 5px;
	}

	/* お知らせ */
	.topicsBlock .eachBox {
		margin-bottom: 50px;
	}
	.topicsBlock .eachBox:last-of-type {
		margin-bottom: 0;
	}
	.topicsBlock .eachBox .textBox {
		border-bottom-left-radius: 60px;
		padding: 15px 25px 40px;
	}
	.topicsBlock .eachBox .textBox .labelBox span {
		margin-top: 10px;
	}
	.topicsBlock .eachBox a .date {
		margin: 15px 0 10px;
	}
	.topicsBlock .eachBox .imageBox .thumbnail {
		border-top-right-radius: 60px;
		height: 220px;
		width: 80dvw;
	}
	.topicsBlock .more {
		margin-top: 50px;
	}

	/* お問い合わせBclok */
	.contactBlock {
		padding: 80px 0 100px;
	}
	.contactBlock .contents .textBox b {
		display: block;
		font-size: 1.5rem;
		line-height: 2.8rem;
	}
	.contactBlock .contents .textBox p {
		font-size: 1.1rem;
		line-height: 2.0rem;
		margin: 45px 0 50px;
	}
	.contactBlock .contents .textBox b br,
	.contactBlock .contents .textBox p br {
		display: none;
	}
	.contactBlock .contents .numberBox b {
		font-size: 1.1rem;
	}
	.contactBlock .contents .numberBox .number {
		font-size: 2.2rem;
	}
	.contactBlock .numberBox .contactBtn {
		width: 240px;
	}

	/* footer */
	footer .contentsBase {
		width: 80dvw;
	}
	footer .pageTop {
		display: none;
	}
	footer .companyInfo .iconBox {
		margin-top: 25px;
	}
	footer nav {
		display: none;
	}
	footer .copyright {
		padding-top: 40px;
	}

	/* (時間差) fadeInUp アニメーション */
	.fadeUpInOrder .eachBox {
		transition-delay: .2s;
	}

}
@media (max-width: 320px) {

	/* 幅狭スマホ */

	/* header */
	header h1 {
		top: 3px;
	}
	header h1 img {
		max-height: 70px;
	}

	/* SP Menu */
	header.sp li {
		height: 60px;
		line-height: 60px;
	}
	header.sp .linkBox {
		margin-top: 40px;
	}	
	header.sp .linkBox .link a {
		height: 100px;
		padding-top: 60px;
	}
	header.sp .linkBox .link a::before {
		top: 16px;
	}
	
	/* 共通 */
	.eachBlock {
		padding: 60px 0 80px;
	}

	/* もっと見る｜各ページ リンクBtn */
	.common .more {
		width: 240px;
	}

	/* EyeCatch */
	.eyeCatch {
		height: 240px;
	}
		/* ページ名 */
	.eyeCatch .titleBox {
		width: 200px;
	}

	/* footer */
	footer .contentsBase {
		padding-top: 45px;
	}

}
@media (min-width: 321px) and (max-width: 767px) {

	/* 幅広スマホ */

	/* SP Menu */
	header.sp li {
		height: 70px;
		line-height: 70px;
	}
	header.sp .linkBox {
		margin-top: 50px;
	}	
	header.sp .linkBox .link a {
		height: 120px;
		padding-top: 70px;
	}
	header.sp .linkBox .link a::before {
		top: 22px;
	}

	/* 共通 */
	.eachBlock {
		padding: 80px 0 100px;
	}

	/* EyeCatch */
	.eyeCatch {
		height: 280px;
	}
		/* ページ名 */
	.eyeCatch .titleBox {
		width: 220px;
	}

	/* footer */
	footer .contentsBase {
		padding-top: 50px;
	}

}


/* ■■ タブレット＆ブラウザ ■■ */
@media screen and (min-width: 768px) {

	/* Flex */
	.flex .container {
		display: flex;
		flex-wrap: wrap;
	}
	.flex .container .eachBox,
	.flex .container .eachBox > a {
		display: flex;
		flex-direction: column;
	}
	.flex .container .eachBox .textBox {
		flex: 1 1 auto;
		display: flex;
		flex-direction: column;
	}
	.flex .container .eachBox .textBox p {
		flex-grow: 1;
	}
	
	/* header */
	header h1 {
		left: 13px;
	}
		/* ボタン */
	header .linkBox .link {
		width: 200px;
	}

	/* 共通 */
	.eachBlock h2 {
		font-size: 1.4rem;
	}
		/* ページ名 */
	.eachBlock .titleBox {
		margin-bottom: 80px;
	}

	/* EyeCatch */
	.eyeCatch {
		width: 90dvw;
	}
	.eyeCatch .titleBox {
		height: 100px;
		padding: 40px 40px 40px 60px;
		width: 300px;
	}
	.eyeCatch .titleBox h1 {
		font-size: 1.4rem;
	}
	.eyeCatch .titleBox .en {
		font-size: 1.0rem;
		margin-top: 10px;
	}
	
	/* お知らせ */
	.topicsBlock .eachBox:nth-of-type( 1 ),
	.topicsBlock .eachBox:nth-of-type( 3n - 2 ) {
		margin-left: 0 !important;
	}
	.topicsBlock .eachBox .textBox .labelBox {
		float: left;
	}
	.topicsBlock .eachBox .textBox .date {
		float: right;
	}
	.topicsBlock .eachBox .textBox p {
		clear: both;
	}

	/* お問い合わせBclok */
	.contactBlock .contents {
		display: flex;
	}
	.contactBlock .contents .textBox b {
		line-height: 2.8rem;
	}
	.contactBlock .contents .textBox p {
		font-size: 1.1rem;
		line-height: 2.2rem;
		margin-top: 40px;
	}
	.contactBlock .contents .numberBox b {
		font-size: 1.1rem;
	}

	/* footer */
	footer .companyInfo {
		float: left;
	}
	footer .companyInfo p {
		margin-bottom: 20px;
	}
	footer nav {
		float: right;
	}
	footer nav dl {
		float: left;
	}
	footer nav dl:nth-of-type( 1 ) {
		margin-left: 0;
		width: 150px;
	}
	footer nav dl:nth-of-type( 2 ) {
		width: 170px;
	}
	footer nav dl:nth-of-type( 3 ) {
		border-top: 1px solid #fff;
		clear: both;
		margin: 30px 0 30px 0;
		padding-top: 30px;
		position: relative;
		width: 100%;
	}
	footer nav dd {
		margin-left: 20px;
	}
	footer nav dd {
		line-height: 2.4rem;
	}

	/* (時間差) fadeInUp アニメーション */
	.fadeUpInOrder .eachBox:nth-of-type( 4n + 1 ) {
		transition-delay: 0.6s;
	}
	.fadeUpInOrder .eachBox:nth-of-type( 4n + 2 ) {
		transition-delay: 1.0s;
	}
	.fadeUpInOrder .eachBox:nth-of-type( 4n + 3 ) {
		transition-delay: 1.4s;
	}
	.fadeUpInOrder .eachBox:nth-of-type( 4n ) {
		transition-delay: 1.8s;
	}


}


/* ■■ (狭いブラウザとタブレット向け) ■■ */
@media (max-width: 1100px) and (min-width: 768px) {

	/* header */
		/* Tab Menu */
	header.tab li {
		height: 80px;
		line-height: 80px;
	}
	header.tab .linkBox {
		margin-top: 50px;
	}	
	header.tab .linkBox .link a {
		height: 120px;
		padding-top: 70px;
	}
	header.tab .linkBox .link a::before {
		top: 25px;
	}
		/* ボタン */
/*
	header.tab .linkBox {
		right: 100px;
	}
*/

	/* 共通 */
	.eachBlock {
		padding: 100px 0 120px;
	}
	.eachBlock::before,
	.eachBlock::after {
		height: 80px;
		width: 80px;
	}
	.eachBlock::before {
		bottom: -80px;
	}
	.eachBlock h2 {
		font-size: 1.8rem;
		margin-bottom: 80px;
	}
	.eachBlock .contents {
		width: 700px;
	}
		/* ページ名 */
	.eyeCatch .titleBox {
		border-top-left-radius: 80px;
	}
		/* パンくず */
	.pan ul {
		width: 700px;
	}

	/* EyeCatch */
	.eyeCatch {
		border-top-right-radius: 80px;
		height: 400px;
	}

	/* お知らせ */
	.topicsBlock .contents {
		width: 700px;
	}
	.topicsBlock .eachBox {
		margin-left: 35px;
		width: 210px;
	}
	.topicsBlock .eachBox .imageBox .thumbnail {
		border-top-right-radius: 60px;
		height: 140px;
	}
	.topicsBlock .eachBox .textBox {
		border-bottom-left-radius: 60px;
		height: 200px;
		padding: 20px 20px 40px;
	}
	.topicsBlock .eachBox .textBox .labelBox {
		margin-bottom: 20px;
	}
	.topicsBlock .eachBox .textBox p {
		font-size: 1.1rem;
		line-height: 2.0rem;
	}
	.topicsBlock .more {
		margin-top: 80px;
	}

	/* お問い合わせBclok */
	.contactBlock {
		padding: 80px 0 140px;
	}
	.contactBlock .contents {
		width: 680px;
	}
	.contactBlock .contents .textBox {
		width: 380px;
	}
	.contactBlock .contents .textBox b {
		font-size: 1.4rem;
	}
	.contactBlock .contents .textBox p br {
		display: none;
	}
	.contactBlock .contents .numberBox {
		margin-left: 20px;
		width: 280px;
	}
	.contactBlock .contents .numberBox .number {
		font-size: 2.0rem;
	}
	.contactBlock .numberBox .contactBtn {
		width: 240px;
	}

	/* footer */
	footer .contentsBase {
		padding-top: 80px;
		width: 700px;
	}
	footer .pageTop {
		right: 35px;
		top: -110px;
	}
	footer .companyInfo {
		width: 300px;
	}
	footer nav {
		width: 360px;
	}
	footer nav dl {
		margin-left: 20px;
	}
	footer .copyright {
		padding-top: 50px;
	}

}


/* ■■ PC ■■ */
@media screen and (min-width: 1101px) {

	/* header */
	header .contents h1 {
		display: none;
	}
	header nav {
		line-height: 100px;
		position: absolute;
		right: 280px;
	}
	header nav li {
		float: left;
		font-size: 1.1rem;
		margin-left: 25px;
	}
	header nav li:nth-of-type( 1 ),
	header nav li:nth-of-type( 2 ) {
		display: none;
	}
	header nav li:nth-of-type( 3 ) {
		margin-left: 0;
	}
	header nav li a {
		color: #000;
		display: inline-block;
		overflow: hidden;
		position: relative;
	}
	header nav li a::after {
		background-color: var(--base-orange);
		bottom: 25px;
		content: '';
		height: 3px;
		left: 0;
		position: absolute;
		transform: translate( -100%, 0 );
		transition-duration: .4s;
		transition-property: all;
		transition-timing-function: cubic-bezier( 0.215, 0.61, 0.355, 1 );
		width: 100%;
	}
	header .linkBox .link:nth-of-type( 1 ) a {
		padding-left: 40px;
	}
	header .linkBox .link:nth-of-type( 2 ) a {
		padding-left: 30px;
	}
	header .linkBox .link a::before {
		left: 20px;
	}
	header nav li a:hover {
		color: var(--base-orange);
	}
	header nav li a:hover:after {
		transform: translate( 0, 0 );
	}
		/* menuBtn */
	.menuBtn {
		display: none;
	}
		/* ボタン */
	header .linkBox {
		right: 40px;
		width: 200px;
	}
	header .linkBox .link:first-of-type {
		display: none;
	}
	header .linkBox .link:nth-of-type(2) {
		margin-left: 0;
	}
	header .linkBox .link:nth-of-type(2)::before {
		left: 28px;
	}

	/* 共通 */
	.eachBlock {
		padding: 140px 0 160px;
	}
	.eachBlock::before,
	.eachBlock::after {
		height: 100px;
		width: 100px;
	}
	.eachBlock::before {
		bottom: -100px;
	}
	.eachBlock h2 {
		font-size: 2.2rem;
		margin-bottom: 100px;
	}
	.eachBlock .contents {
		width: 1000px;
	}
	.common .more {
		font-size: 1.2rem;
	}	
		/* ページ名 */
	.eyeCatch .titleBox {
		border-top-left-radius: 100px;
	}
		/* パンくず */
	.pan ul {
		width: 1000px;
	}

	/* EyeCatch */
	.eyeCatch {
		border-top-right-radius: 100px;
		height: 450px;
	}

	/* お知らせ */
	.topicsBlock .contents {
		width: 1020px;
	}
	.topicsBlock .eachBox {
		margin: 0 0 80px 60px;
		width: 300px;
	}
	.topicsBlock .eachBox .imageBox .thumbnail {
		border-top-right-radius: 80px;
		height: 220px;
	}
	.topicsBlock .eachBox .textBox {
		border-bottom-left-radius: 80px;
		height: 190px;
		padding: 25px 30px 40px;
	}
	.topicsBlock .eachBox .textBox .labelBox {
		margin-bottom: 25px;
	}
	.topicsBlock .eachBox .textBox p {
		font-size: 1.2rem;
		line-height: 2.2rem;
	}
	.topicsBlock .more {
		margin-top: 100px;
	}

	/* お問い合わせBclok */
	.contactBlock {
		padding: 120px 0 140px !important;
	}
	.contactBlock .contents {
		width: 880px;
	}
	.contactBlock .contents .textBox {
		width: 520px;
	}
	.contactBlock .contents .textBox b {
		font-size: 1.8rem;
		line-height: 3.2rem;
	}
	.contactBlock .contents .numberBox {
		margin-left: 40px;
		width: 320px;
	}
	.contactBlock .contents .numberBox .number {
		font-size: 2.6rem;
	}
	.contactBlock .numberBox .contactBtn {
		width: 280px;
	}
	
	/* footer */
	footer .contentsBase {
		padding-top: 75px;
		width: 840px;
	}
	footer .pageTop {
		right: 50px;
		top: -120px;
	}
	footer .pageTop:hover {
		top: -140px;
	}
	footer .companyInfo {
		width: 340px;
	}
	footer nav {
		width: 400px;
	}
	footer nav dl {
		margin-left: 30px;
	}
	footer .copyright {
		padding-top: 60px;
	}

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

	/* ワイドブラウザ */

	/* 共通 */
	.common .more {
		border-radius: 70px;
		height: 70px;
		line-height: 71px;
		width: 300px;
	}

	/* footer */
	footer .contentsBase {
		width: 1100px;
	}
	footer nav {
		width: 700px;
	}
	footer nav dl:nth-of-type( 3 ) {
		border-top: none;
		clear: initial;
		margin: 0 0 0 60px;
		padding-top: initial;
		width: 280px;
	}
	footer nav dl:nth-of-type( 3 )::before {
		background: #fff;
		content: '';
		height: 100%;
		left: -20px;
		position: absolute;
		top: 0;
		width: 1px;
	}

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

	/* ワイドブラウザ */

	/* header */
	header nav {
		right: 560px;
	}
	header nav li {
		font-size: 1.2rem;
		margin-left: 35px;
	}
		/* ボタン */
	header .linkBox {
		right: 40px;
		width: 460px;
	}
	header .linkBox .link:first-of-type {
		display: block;
	}
	header .linkBox .link {
		width: 220px;
	}
	header .linkBox .link a {
		padding-left: 50px;
	}
	header .linkBox .link a::before {
		left: 35px;
	}
	header .linkBox .link:nth-of-type(2) {
		margin-left: 20px;
	}
	header .linkBox .link:nth-of-type( 2 ) a {
		padding-left: 40px;
	}
	header .linkBox .link:nth-of-type(2)::before {
		left: 38px;
	}

	/* 共通 */
		/* パンくず */
	.pan ul {
		width: 1200px;
	}

	/* EyeCatch */
	.eyeCatch {
		height: 600px;
	}
	.eyeCatch .titleBox {
		border-top-left-radius: 120px;
		height: 120px;
		width: 320px;
	}
	.eyeCatch .titleBox h1 {
		font-size: 1.6rem;
	}
	.eyeCatch .titleBox .en {
		font-size: 1.2rem;
	}

	/* お知らせ */
	.topicsBlock .contents {
		width: 1140px;
	}
	.topicsBlock .eachBox {
		width: 340px;
	}
	.topicsBlock .eachBox .imageBox .thumbnail {
		height: 230px;
	}

	/* お問い合わせBclok */
	.contactBlock .contents {
		width: 940px;
	}
	.contactBlock .contents .textBox {
		width: 580px;
	}
	.contactBlock .contents .textBox p {
		font-size: 1.2rem;
		line-height: 2.6rem;
	}
	.contactBlock .contents .numberBox {
		margin-left: 40px;
	}
	.contactBlock .contents .numberBox b {
		font-size: 1.2rem;
	}
	.contactBlock .contents .numberBox .number {
		font-size: 2.8rem;
		font-size: 2.5rem;
	}

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

	/* ワイドブラウザ */

	/* EyeCatch */
	.eyeCatch {
		height: 650px;
	}

	/* お知らせ */
	.topicsBlock .contents {
		width: 1220px;
	}
	.topicsBlock .eachBox {
		margin-left: 70px;
		width: 360px;
	}
	.topicsBlock .eachBox .imageBox .thumbnail {
		height: 250px;
	}


}
