@charset "UTF-8";
	
/*
Theme Name: 株式会社白鳥
Author: 株式会社ヒューバート
Author URI: https://hubert.co.jp
Description: 
Version: 2025-07-14

*/



/*------------------------------------------------------------
	リセット
------------------------------------------------------------*/

* {
	box-sizing: border-box;
}

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, figure, font, 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 {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
	font-weight: 300;
    vertical-align: baseline;
    background: transparent;
}

html {
	font-size: 62.5%;
	height:100%;
	-webkit-text-size-adjust:100%; /*iPhone 文字サイズ調整*/
	overflow-x: hidden; /*横スクロール非表示*/
} 

body {
	width: 100%;
	height:100%;
	font:normal 1.4rem/2 "source-han-sans-japanese", sans-serif;;/*400,500,700,900*/
	color: #3D3D3D;
}

@media only screen and (min-width: 813px) {
	
	body {
		font-size: 1.5rem;
	}
	
}

/* remember to define focus styles! */
:focus {
    outline: 0;
}

i {
	font-style: normal;
}
 
/* remember to highlight inserts somehow! */
ins {
    text-decoration: none;
}

del {
    text-decoration: line-through;
}

address {
	font-style:normal;
}

/* 二乗等の上付き文字 */
sup {
    vertical-align: super;
    font-size: smaller;
}

main {
	display: block; /*IE11対応*/
}

/*------------------------------------------------------------
	LINK
------------------------------------------------------------*/

a:link {
	color: #3D2F29;
	text-decoration: none;
}

a:visited {
	color: #3D2F29;
	text-decoration: none;
}

a:hover {
	color: #1F84CA;
	text-decoration: underline;
}

a:active {
	color: #1F84CA;
}

a:focus { 
	outline:none;
}

/* タップで電話 */
a[href*="tel:"] {
	text-decoration: none;
}

@media only screen and (min-width: 813px) {

	/* タップで電話（PC無効） */
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
	
}

/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/

.cf::after {
	content: "";
	display: table;
	clear: both;
}

br.pc {
	display: none;
}

@media only screen and (min-width: 481px) {
	
	br.sp {
		display: none;
	}
	
	br.pc {
		display: block;
	}

}

/* リスト */
ol, ul {
    list-style: none;
}

/* 画像 */
img {
	max-width: 100%;
	height: auto;
	display:block;/*画像の下の余白を消す*/
}

/* 太字・注意書き */
.bold {
	font-weight:bold;
}

.bold-border {
	font-weight:bold;
	text-decoration:underline;
}

.red,.attention {
	color:#CE4B4B;
}

.redBold {
	font-weight:bold;
	color:#CE4B4B;
}

.red-border {
	color:#CE4B4B;
	text-decoration:underline;
}

.red-bold-border {
	font-weight:bold;
	color:#CE4B4B;
	text-decoration:underline;
}

/*------------------------------------------------------------
	フォント
------------------------------------------------------------*/


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

.fade-in {
  opacity : 0;
  transform: translateY(20px);
  transition: all 1s;
}

/*------------------------------------------------------------
	背景画像 Webp対応
------------------------------------------------------------*/

/* WebP未対応のブラウザ用のスタイル */
.no-webp .element {
  background-image: url("image.jpg");
}
/* WebP対応のブラウザ用のスタイル */
.webp .element {
  background-image: url("image.webp");
 }


/*------------------------------------------------------------
	テキストの寄せ
------------------------------------------------------------*/

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

/* float */
.floatL {float: left;}
.floatR {float: right;}

/* テーブル */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*------------------------------------------------------------
	フォームのデザイン
------------------------------------------------------------*/

/*iOS スタイル削除*/
input[type="button"],
input[type="text"],
input[type="submit"],
input[type="email"],
input[type="number"],
textarea  {
	max-width: 100%;
	background: #fff;
	border-radius: 0;
	padding: 7px 5px;
	border: 1px solid #ddd;
	-webkit-appearance: none;
	appearance: none;
}

/*項目のカラー（通常時）*/
input[type="text"],
input[type="tel"],
input[type="number"],
input[type="email"],
textarea {
  background: #fff;
  border: 1px solid #ddd; /*フォーカス時と同じ太さに*/
}

/*項目のカラー（選択時）*/
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
textarea:focus {
	background: #edf4ff;
	border: 1px solid #1F84CA;
}

textarea {
	padding: 10px;
}

/*プルダウンデザイン変更*/
.customSelect { 
	width: 70%;
	min-width: 200px;
	border: 1px solid #ddd;
	background: #fff url("img/common/angle-down-blk.svg") 95% 14px no-repeat;
	background-size: 10px 10px;
	padding: 5px 40px 5px 10px;
}

.customSelectInner {
	width: 100%!important;
}




/* 元々のチェックボックス（非表示） */
input[type="radio"],
input[type="checkbox"] {
    display: none;
}

/* チェックボックスの代わりを成すラベル */
input[type="radio"] + span,
input[type="checkbox"] + span {
    display: none;
    display: inline-block;
    font-size: 1.25rem;
    cursor: pointer;
    position: relative;
    padding: 0 10px 0 32px;
}

/* ラベルの左に表示させる正方形のボックス□ */
input[type="radio"] + span::before,
input[type="checkbox"] + span::before  {
    content: "";
    position: absolute;
    display: block;
    background-color: #FFF;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    left: 1px;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid #ddd;
}

/* チェックが入った時のレ点 */
input[type="radio"]:checked + span::after,
input[type="checkbox"]:checked + span::after {
    content: "";
    position: absolute;
    display: block;
    box-sizing: border-box;
    width: 18px;
    height: 9px;
    margin-top: -7px;
    top: 50%;
    left: 3px;
    transform: rotate(-45deg);
    border-bottom: 3px solid;
    border-left: 3px solid;
    border-color:  #1F84CA;
}

@media only screen and (min-width: 813px) {
	
	input[type="radio"] + span,
	input[type="checkbox"] + span {
    	font-size: 1.4rem;
    	line-height: 1;
		padding: 0 10px 0 32px;
	}
	
	input[type="radio"] + span::before,
	input[type="checkbox"] + span::before {
	    width: 18px;
	    height: 18px;
	}

}

@media only screen and (max-width: 812px) {
	
	/* スマホは縦並び */
	.mw_wp_form .horizontal-item,
	.mw_wp_form .horizontal-item + .horizontal-item {
		display: block;
		margin: 0 0 10px!important;
	}
	
}


/*  公開設定：パスワード設定時 */
.post_password input[type="password"] {
	background: #f1f1f1;
    border: 1px solid #ccc;
	height: 34px;
	padding: 5px 10px;
	margin: 0 0 20px;
		border-right: none;
}

.post_password input[type="Submit"] {
	background: #AD3335;
	color: #fff;
	height: 34px;
	padding: 5px 15px;
	border: none;
}

@media only screen and (min-width: 813px) {

	.post_password input[type="password"] {
		padding: 5px 10px;
		height: 44px;
		margin: 0 0 0 0;
	}
	
	.post_password input[type="Submit"] {
		height: 44px;
	}
	
	.post_password input[type="Submit"]:hover {
		background: #6c0707;
		cursor: pointer;
	}

}


/*------------------------------------------------------------
	マージン
------------------------------------------------------------*/

.mb5 { margin-bottom:5px;}
.mb10 {	margin-bottom:10px;}
.mb15 {	margin-bottom:15px;}
.mb20 {	margin-bottom:20px;}
.mb25 {	margin-bottom:25px;}
.mb30 {	margin-bottom:30px;}
.mb35 {	margin-bottom:35px;}
.mb40 {	margin-bottom:40px;}
.mb45 {	margin-bottom:45px;}
.mb50 {	margin-bottom:50px;}
.mb55 {	margin-bottom:50px;}
.mb60 {	margin-bottom:60px;}
.mb70 {	margin-bottom:70px;}
.mb80 {	margin-bottom:80px;}
.mb90 {	margin-bottom:90px;}
.mb100 {margin-bottom:100px;}
.mb110 {margin-bottom:110px;}
.mb120 {margin-bottom:120px;}


/*------------------------------------------------------------
	ベースライン
------------------------------------------------------------*/


/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/

header {
	background: #fff;
	width:100%;
	height:60px;
	position:fixed; /*またはabsoluteで非固定*/
	top:0;
	z-index:100;
	transition: .3s;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}

header.is-scrolled {
}

header.fixed {
	top: 0!important;
}

@media only screen and (min-width: 813px) {
	
	header {
		min-width: 1280px;
		height: 120px;
	}
	
}


/* ヘッダーロゴ */
header #site-ID {
	display: block;
	background: url(img/common/logo-blue.svg) center center / contain no-repeat;
    width: 160px;
    height: 34px;
	text-indent: -9999px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 3vw;
	z-index: 10;
} 

header #site-ID a {
	display: block;
    width: 160px;
    height: 34px;
}

@media only screen and (min-width: 813px) {
	
	header #site-ID {
		width: 280px;
		height: 58px;
		left: 40px;
	} 
	
	header #site-ID a {
		width: 280px;
		height: 58px;
	}
	
}


/* 電話番号 */

@media only screen and (max-width: 812px) {
	
	#phone-number {
		display: none;
	}

}

@media only screen and (min-width: 813px) {
	
	#phone-number {
		line-height: 1.5;
		color: #165078;
		position: absolute;
		top: 18px;
		right: 230px;
	}
	
	#phone-number dt {
		font-size: 1rem;
		font-weight: 700;
		text-align: right;
		margin-right: 5px;
	}
	
	#phone-number dd {
		font: 700 3rem/1 'roboto-condensed';
	}

}

/*------------------------------------------------------------
	メニューボタン（ハンバーガー）
------------------------------------------------------------*/

.menu-btn {
    display: block;
    width: 35px;
    height: 35px;
    cursor: pointer;
	position: absolute;
    top: 15px;
    right: 15px;
    z-index: 100;
}

.menu-btn span {
    display: block;
    position: absolute;
    width: 70%;
    border-bottom: solid 1px #1F84CA;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    padding-top: 5px;
    right: 7px;
}
.menu-btn span:nth-child(1) {
    top: 3px;
}
.menu-btn span:nth-child(2) {
    top: 11px;
}
.menu-btn span:nth-child(3) {
    top: 19px;
}

.menu-btn.active span {
	border-color: #1F84CA;
    border-bottom: solid 1px #1F84CA;
}

.menu-btn.active span:nth-child(1) {
    top: 10px;
    left: 1px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.menu-btn.active span:nth-child(2),
.menu-btn.active span:nth-child(3) {
    top: 10px;
    right: 6px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media only screen and (min-width: 813px) {
	
	.menu-btn {
		display: none;
	}

}

/*------------------------------------------------------------
	ヘッダー：グランドメニュー
------------------------------------------------------------*/

#gNavi {
	display: none;
}

@media only screen and (min-width: 813px) {
		
	#gNavi {
		display: block;
		width: 100%;
		position: absolute;
		bottom: 0;
		left: 0;
	}
	
	#gNavi ul {
		font-size: 0;
		text-align: right;
		margin-right: 220px;
	}
	
	#gNavi ul li {
		display: inline-block;
	}
	
	#gNavi ul li a {
		display: block;
		height: 55px;
		font-size: 1.4rem;
		font-weight: 500;
		text-decoration: none;
		color: #0C0C0C;
		padding: 0 15px;
		position: relative;
	}
	
	#gNavi > ul li > a:after {
		content: '';
		width: 100%;
		height: 3px;
		background: #1F84CA;
		transform: scale(0, 1);
		transform-origin: center top;
		transition: transform .2s;
		position: absolute;
		bottom: 0;
		left: 0;
	}
	
	#gNavi > ul li:hover a {
		color: #1F84CA;
	}
	
	#gNavi > ul li:hover > a:after {
		transform: scale(1, 1);
	}
	
	
	
	
	/*メガメニュー 共通設定*/
	nav#gNavi .mega-menu-inner {
	    visibility: hidden;
	    opacity: 0;
	}
	
	#gNavi ul li .mega-menu-inner {
	    background: #1F84CA;
	    background: #f1f2f3;
	    width: 100%;
	    position: absolute;
	    top: 55px; /*ドロップダウンの表示開始位置*/
	    left: 0;
	}
	
	#gNavi ul li:hover .mega-menu-inner {
	    visibility: visible;
	    opacity: 1;
	    -webkit-transition: all .2s;
	    transition: all .2s;
	}
	
	#gNavi ul li .mega-menu-inner .mega-menu-conts {
		width: 1280px;
		height: 100%;
	    padding: 40px 0;
		margin: 0 auto;
		position: relative;
		z-index: 1;
		text-align: left;
	}
	
	#gNavi ul li .mega-menu-inner .mega-menu-conts .one-seventh {
		width: calc(90% / 6);
		margin-right: 2%;
	}
	
	#gNavi ul li .mega-menu-inner .mega-menu-conts .one-seventh:nth-child(n+6) {
		margin-bottom: 0;
	}
	
	#gNavi ul li .mega-menu-inner .mega-menu-conts .one-seventh:nth-child(6n) {
		margin-right: 0;
	}
	
	#gNavi ul li .mega-menu-inner .mega-menu-conts .one-seventh .cat-ttl a {
		height: auto;
		font-size: 1.5rem;
		font-weight: 600;
		line-height: 19px;
		color: #1F84CA;
		padding: 0 0 17px 0;
		margin-bottom: 20px;
		border-bottom: 3px solid #1F84CA;
		position: relative;
	}
	
	#gNavi ul li .mega-menu-inner .mega-menu-conts .one-seventh .cat-ttl a:hover {
		color: #165078;
		text-decoration: underline;
	}
	
	#gNavi ul li .mega-menu-inner .mega-menu-conts .one-seventh .cat-ttl a:after {
		content: '\f105';
		font-size: 1.5rem;
		font-family: 'font awesome 6 pro';
		font-weight: 500;
		position: absolute;
		top: 2px;
		right: 5px;
	}

	#gNavi ul li .mega-menu-inner .mega-menu-conts .one-seventh .flex-box a {
		display: inline-block;
		height: 30px;
		font-size: 1.5rem;
		font-weight: 500;
		line-height: 30px;
		padding: 0 0 0 5px;
		color: #000;
		position: relative;
	}
	
	#gNavi ul li .mega-menu-inner .mega-menu-conts .one-seventh  .flex-box a:hover {
		color: #1F84CA;
		text-decoration: underline;
	}
	
	#gNavi ul li .mega-menu-inner .mega-menu-conts .one-seventh .flex-box {
		margin-bottom: 15px;
	}
	
	#gNavi ul li .mega-menu-inner .mega-menu-conts .one-seventh .flex-box img {
		width: 45px;
	}

	
}


/*------------------------------------------------------------
	ヘッダー：お問い合わせボタン
------------------------------------------------------------*/

.contact-btn {
	display: none;
}

@media only screen and (min-width: 813px) {
	
	.contact-btn {
		display: block;
		background-image: linear-gradient(-48deg, #42BAE7 0%, #1F84CA 100%);
		width: 180px;
		height: 160px;
		text-align: center;
		position: absolute;
		top: 0;
		right: 0;
	}
	
	.contact-btn a {
		display: block;
		font-size: 1.5rem;
		font-weight: 500;
		line-height: 160px;
		color: #fff;
		text-decoration: none;
		-webkit-transition: ease .3s;
		transition: ease .3s;
	}

	.contact-btn a:hover {
		background: #0389E6;
	}
	
	header.is-scrolled .contact-btn {
		height: 120px;
	}
	
	header.is-scrolled .contact-btn a {
		line-height: 120px;
	}
		
}


/*------------------------------------------------------------
	ヘッダー：ドロワーメニュー
------------------------------------------------------------*/

#wrapper {
	background: #fff;
	position: relative;
	overflow: hidden;
	width: 100%;
}


.drawer {
	background: #f1f2f3;
	width: 100%;
	height: 100%;
	padding: 80px 5vw 0;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
	-webkit-transition: ease .3s;
	transition: ease .3s;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 100;
}

.drawer.active {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.drawer dl.normal-menu dt a,
.drawer dl.accordion-menu dt {
	font-weight: 600;
	padding: 10px 5px 9px;
	color: #1F84CA;
	border-bottom: 2px solid #1F84CA;
	position: relative;
}

.drawer dl.normal-menu dt a {
	display: block;
	text-decoration: none;
}


/*アロー*/
.drawer dl.accordion-menu dt:after {
	content: '\f107';
	font-size: 1.6rem;
	font-family: 'font awesome 6 Pro';
	color: #1F84CA;
	position: absolute;
	top: 50%;
	right: 5px;
	transform: translateY(-50%);
	transition: all, 0.25s, linear; 
 }
  
.drawer dl.accordion-menu dt.active:after {
	content: '\f106';
}

.drawer dl.accordion-menu dd.child {
    display: none; /*閉じておくアコーディオンにのみ設置*/
}

.drawer dl.accordion-menu dd.child ul {
	padding-bottom: 20px;
}

.drawer dl.accordion-menu dd.child ul li {
	width: 48.5%;
	margin-right: 3%;
    border-bottom: 1px solid #1F84CA;
}

.drawer dl.accordion-menu dd.child ul li:nth-child(2n) {
	margin-right: 0;
}

.drawer dl.accordion-menu dd.child ul li a {
	display: block;
	font-size: 1.2rem;
	font-weight: 600;
	color: #1F84CA;
	padding: 13px 5px 12px 5px;
	position: relative;
	text-decoration: none;
}

.drawer dl.normal-menu dt a:after,
.drawer dl.accordion-menu dd.child ul li a:before {
	display: block;
	position: absolute;
	content: '\f105';
	font-size: 1.6rem;
	font-family: 'font awesome 6 Pro';
	color: #1F84CA;
	top: 50%;
	right: 7px;
	transform: translateY(-50%);
	z-index: 1;
}

.drawer dl.accordion-menu dd.child ul li a:before {
	font-size: 1.2rem;
	top: calc(50% + 2px);
}


/*------------------------------------------------------------
	コンテンツ（BODY）：レイアウト
------------------------------------------------------------*/

#wrapper {
	padding-top: 60px;
}

.container {
	width:100%;
}

.container .contents {
	width:100%;
	margin:0 auto;
	padding: 50px 5% 0;
	position:relative;
}

.container .contents p:not(:last-child) {
	margin-bottom: 5px;
}

@media only screen and (min-width: 813px) {
	
	#wrapper {
		padding-top: 120px;
	}
	
	.container .contents {
		width:1280px;
		padding: 90px 0 0;
	}
	
	.container .contents.narrow {
		width: 780px;
	}
	
	.container .contents p:not(:last-child) {
		margin-bottom: 10px;
	}
	
}


/*------------------------------------------------------------
	RESPONSIVE GRID（flex-box）
------------------------------------------------------------*/

.flex-box {
	display:flex;
	flex-wrap:wrap;
	display: -webkit-flex; /*古いブラウザ用*/
	-webkit-flex-wrap: wrap;/*古いブラウザ用*/
}

/*テンプレ用 仮設定*/
.grid {
	margin-bottom:10px;
	/*↓2行 テンプレ判別用 実際には不要*/
	background:#f1f1f1;
	min-height:100px;
}

.fullwidth,
.one-half,
.one-third,
.one-third-left,
.one-third-right,
.two-third-left,
.two-third-right,
.two-fifth-left,
.two-fifth-right,
.three-fifth-left,
.three-fifth-right {
	width:100%;
}

.one-fourth,
.one-fifth {
	width:48%;
	margin-right:4%;
}

.one-sixth {
	width:32%;
	margin-right:2%;
}

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

	.one-fourth:nth-child(2n),
	.one-fifth:nth-child(2n),
	.one-sixth:nth-child(3n) {
		margin-right:0;
	}

}

@media only screen and (min-width: 813px) {
	
	.grid {
		margin-bottom:20px;
	}
	
	.one-half {
		width:48%;
		margin-right:4%;
	}
	
	.one-third,
	.one-third-left,
	.one-third-right {
		width:30%;
	}
	
	.one-fourth {
		width:23.5%;
		margin-right:2%;
	}
	
	.one-fifth {
		width:18.4%;
		margin-right:2%;
	}
	
	.one-sixth {
		width:15%;
	}
	
	.two-third-left,
	.two-third-right {
		width:65%;
	}
	
	.two-fifth-left,
	.two-fifth-right{
		width:38.8%;
	}
	
	.three-fifth-left,
	.three-fifth-right {
		width:59.2%;
	}
	
	.one-third,
	.one-third-left {
		margin-right: 5%;
	}
	
	.two-third-left {
		margin-right: 5%;
	}
	
	.two-fifth-left,
	.three-fifth-left {
		margin-right:2%;
	}
	
	.one-half:nth-child(2n),
	.one-third:nth-child(3n),
	.one-fourth:nth-child(4n),
	.one-fifth:nth-child(5n),
	.one-sixth:nth-child(6n) {
		margin-right:0;
	}
	
}
/*------------------------------------------------------------
	2カラム（サイドナビ有り）
------------------------------------------------------------*/

#side-left,
#side-right {
	display:none;
	/*↓2行 テンプレ判別用 実際には不要*/
	background:#3BC9B4;
}

#main-left,
#main-right {
	width:100%;
	/*↓2行 テンプレ判別用 実際には不要*/
	background:#DBD2F0;
}

@media only screen and (min-width: 813px) {
	
	#main-right,
	#main-left  {
		width:75%;
	}
	
	#side-left,
	#side-right {
		display:block;
		width:23.5%;
	}
	
	#side-left #side-conts,
	#side-left #side-conts {
		background: #900;
		position: sticky;
		top: 160px;
		left: 0;
	}

}




/*------------------------------------------------------------
	レイアウト：1カラム
------------------------------------------------------------*/

.conts-box-center {
	width: 90vw;
	text-align: center;
	margin: 0 auto 50px;
}

@media only screen and (min-width: 813px) {
	
	.conts-box-center {
		width: 1280px;
		margin: 0 auto 120px;
	}
	
}

.conts-box-center img {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 20px;
}

.conts-box-center .txt-box {
	width: 100%;
	margin: 0 auto;
}

@media only screen and (min-width: 813px) {
	
	.conts-box-center {
		width: auto;
		max-width: 1400px;
		margin: 0 auto 120px;
	}
	
	.conts-box-center img {
		margin: 0 auto 30px;
	}
	
	.conts-box-center .txt-box {
		width: 580px;
	}
	
}

.conts-box-center .txt-box h2,
.conts-box-center .txt-box h3 {
	font: 500 6vw/1.8 'heisei-mincho-std';
	color: #000;
	text-align: center;
	margin-bottom: 20px;
}

@media only screen and (min-width: 813px) {
	
	.conts-box-center .txt-box h2,
	.conts-box-center .txt-box h3 {
		font-size: 3.6rem;
		margin-bottom: 30px;
	}
	
}

.conts-box-center .txt-box p {
	line-height: 2;
	text-align: justify;
}

.conts-box-center .txt-box p:not(:last-child) {
	margin-bottom: 15px;
}

.conts-box-center .txt-box p.align-center {
	text-align: center;
	margin-top: -15px;
}

@media only screen and (min-width: 813px) {
	
	.conts-box-center .txt-box p {
		line-height: 2.2;
	}
	
	.conts-box-center .txt-box p:not(:last-child) {
		margin-bottom: 10px;
	}
	
	.conts-box-center .txt-box p.align-center {
		margin-top: -20px;
	}
	
}

/*ボタン*/
.conts-box-center .txt-box .button {
	margin: 40px auto 0;
}

@media only screen and (min-width: 813px) {
	
	.conts-box-center .txt-box .button {
		margin: 50px auto 0;
	}
	
}



/*------------------------------------------------------------
	レスポンシブ動画（YouTube埋め込み）
------------------------------------------------------------*/

.embed-container { 
	position: relative;
	padding-bottom: 56.25%; 
	height: 0; 
	overflow: hidden; 
	max-width: 100%; 
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*------------------------------------------------------------
	カルーセル
------------------------------------------------------------*/

#carousel-area {
	overflow-x: hidden;
}

@media only screen and (min-width: 813px) {
	
	#carousel-area {
		margin-bottom: 30px;
	}

}

.carousel .slick-slide {
	padding: 0 5px;
}

@media only screen and (min-width: 831px) {
	
	.carousel {
/* 		width: 2340px; */
	}
	
	.carousel .slick-slide {
/* 		height: 18.6vw; */
		padding: 0 10px;
	}
	
}

/*------------------------------------------------------------
	ページ回遊リンク（共通）
------------------------------------------------------------*/

#link-area {
	background: #f9f9f9;
	padding: 5vw 0 40px;
	margin-top: 60px;
}

#link-area .link-area-inner {
	width: 90vw;
	margin: 0 auto;
}

@media only screen and (min-width: 813px) {
	
	#link-area {
		padding: 80px 0;
		margin-top: 90px;
	}
	
	#link-area .link-area-inner {
		width: 1280px;
	}
	
}



#link-area .link-area-inner .link-box {
	background: url(img/common/link_01.jpg) center center / cover no-repeat;
	width: 100%;
	height: 45vw;
	position: relative;
	margin-bottom: 15px;
}

#link-area .link-area-inner .link-box:nth-child(2) {
	background-image: url(img/common/link_02.jpg) ;
}

#link-area .link-area-inner .link-box:nth-child(3) {
	background-image: url(img/common/link_03.jpg) ;
}

#link-area .link-area-inner .link-box:nth-child(4) {
	background-image: url(img/common/link_04.jpg) ;
}

#link-area .link-area-inner .link-box:last-child {
	margin-bottom: 0;
}

@media only screen and (min-width: 813px) {
	
	#link-area .link-area-inner .link-box {
		width: calc(50% - 20px);
		height: 270px;
		margin-bottom: 0;
	}
	
	#link-area .link-area-inner .link-box:nth-child(2n) {
		margin-left: 40px;
	}

	
	#link-area .link-area-inner .link-box:nth-child(n+3) {
		margin-top: 40px;
	}
	
}


#link-area .link-area-inner .link-box:before {
	content: '';
	display: block;
	background: rgba(22,22,29,0.35);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.2s ease-in-out;
}

#link-area .link-area-inner .link-box:hover:before {
	background: rgba(22,22,29,0.70);
}

/*リンク先ページ名*/
#link-area .link-area-inner .link-box p {
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 1px;
	text-align: center;
	color: #fff;
	text-shadow: 0 0 20px rgba(0,0,0,0.50);
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}

#link-area .link-area-inner .link-box p span {
	display: block;
	font: 500 1.4rem/1 'roboto-condensed';
	letter-spacing: 0;
	margin-top: 20px;
}

/*リンク先URL*/
#link-area .link-area-inner .link-box a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 20;
}


/*------------------------------------------------------------
	お問い合わせ（共通）
------------------------------------------------------------*/

#contact-area {
	background: url(img/common/bg_contact.jpg) center center / cover no-repeat;
	padding: 40px 0;
}

#contact-area .contact-area-inner {
	width: 90vw;
	margin: 0 auto;
}

@media only screen and (min-width: 813px) {
	
	#contact-area {
		padding: 60px 0;
	}
	
	#contact-area .contact-area-inner {
		width: 880px;
	}

}


#contact-area .contact-area-inner .contact-box {
	width: 100%;
	padding: 0 0 20px;
}

#contact-area .contact-area-inner .contact-box:first-child {
	border-bottom: 1px solid #fff;
}

#contact-area .contact-area-inner .contact-box:last-child {
	padding-top: 25px;
}

@media only screen and (min-width: 813px) {
	
	#contact-area .contact-area-inner .contact-box {
		width: 50%;
		padding: 20px 0;
	}
	
	#contact-area .contact-area-inner .contact-box:first-child {
		border-bottom: none;
		border-right: 1px solid #fff;
	}
	
	#contact-area .contact-area-inner .contact-box:last-child {
		padding: 0;
		padding-left: calc(50% - 340px);
	}
	
}


#contact-area .contact-area-inner .contact-box hgroup span {
	font: 600 5rem/1 'roboto-condensed';
	color: #A9CDE6;
	margin-bottom: 10px;
}

#contact-area .contact-area-inner .contact-box hgroup h6 {
	font-size: 2rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 20px;
}

#contact-area .contact-area-inner .contact-box p {
	line-height: 2.2;
	color: #fff;
}

/* お問い合わせボタン */
#contact-area .contact-area-inner .contact-box a {
	background: #fff;
	width: 100%;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 80px;
	color: #2478B2;
	margin-bottom: 20px;
	border: 2px solid #1F84CA;
}

#contact-area .contact-area-inner .contact-box a:hover {
	background: #0389E6;
	border: 2px solid #0389E6;
	color: #fff;
}

#contact-area .contact-area-inner .contact-box a.button:before,
#contact-area .contact-area-inner .contact-box a.button:after {
	content: none;
}

@media only screen and (min-width: 813px) {
	
	#contact-area .contact-area-inner .contact-box a {
		margin-bottom: 30px;
	}
	
}

/* お電話でのお問い合わせ */
#contact-area .contact-area-inner .contact-box dl {
	color: #fff;
}

#contact-area .contact-area-inner .contact-box dl dt {
	font-size: 1.4rem;
	font-weight: 600;
}

#contact-area .contact-area-inner .contact-box dl dd {
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1;
}

#contact-area .contact-area-inner .contact-box dl dd span {
	font: 600 3.8rem/1 'roboto-condensed';	
}



/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/

footer {
	background:#1c1c1c;
	width:100%;
}

footer #foot-inner {
	width:80%;
	margin:0 auto;
	padding: 40px 0;
	position: relative;
}

@media only screen and (min-width: 813px) {

	footer #foot-inner {
		width:1280px;
		padding: 60px 0;
		justify-content: flex-end;
	}
	
}


#foot-inner div {
	width: 100%;
}

@media only screen and (min-width: 813px) {
	
	#foot-inner div {
        width: 27%;
        padding-right: 5%;
	}
	
	#foot-inner div:first-child {
		width: 30%;
		position: absolute;
		padding: 0;
		left: 0;
	}
	
	#foot-inner div:last-child {
		width: 20%;
		padding: 0;
	}
	
}

/*Footer ロゴ*/
#foot-inner .foot-ID {
	margin-bottom: 40px;
}

#foot-inner .foot-ID img {
	width: 210px;
	margin: 0 auto 20px;
}

#foot-inner .foot-ID dl {
	text-align: center;
	margin-bottom: 10px;
}

#foot-inner .foot-ID dl dt {
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.6;
	color: #fff;
	margin-bottom: 0;
}

#foot-inner .foot-ID dl dd {
	font-size: 1.1rem;
	color: #fff;
}

@media only screen and (min-width: 813px) {
	
	/*Footer ロゴ*/
	#foot-inner .foot-ID {
		margin: 0;
	}
	
	#foot-inner .foot-ID img {
		width: 240px;
		margin: 0 0 40px;
	}
	
	#foot-inner .foot-ID dl {
		text-align: left;
	}
	
	#foot-inner .foot-ID dl dt {
		font-size: 1.4rem;
		line-height: 1.8;
	}
	
	#foot-inner .foot-ID dl dd {
		font-size: 1.3rem;
	}
	
}


/*Footer リンク*/
#foot-inner div.menu dt {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1;
	color: #fff;
	margin-bottom: 12px;
	position: relative;
}

@media only screen and (max-width: 812px) {
	
	#foot-inner div.menu dt {
		padding-bottom: 15px;
		border-bottom: 1px solid #333;
	}
		
	#foot-inner div.menu dt:after {
		content: '\f105';
		font-size: 1.6rem;
		font-family: 'font awesome 6 pro';
		font-weight: 300;
		color: #fff;
		position: absolute;
		top: 0;
		right: 10px;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		-webkit-transition: all, 0.25s, linear;
		transition: all, 0.25s, linear; 
	 }
	  
	#foot-inner div.menu dt.active:after {
		-webkit-transform: translate(0, 50%);
		transform: translate(0, 50%);
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg); 
		top: 5px;
		right: 10px;
	}
	
	#foot-inner div.menu dd {
		display: none;
	}

}

#foot-inner div.menu dd {
	margin-bottom: 25px;
}

#foot-inner div.menu dd a {
	display: block;
	font-size: 1.2rem;
	color: #CFCFCF;
}

@media only screen and (min-width: 813px) {
	
	#foot-inner div.menu dd {
		margin-bottom: 0;
	}

	#foot-inner div.menu dd a {
		width: 50%;
		font-size: 1.3rem;
		float: left;
	}
	
}

#foot-inner div ul li {
	line-height: 1;
	border-bottom: 1px solid #333;
	margin-bottom: 15px;
	padding-bottom: 15px;
	position: relative;
}

#foot-inner div ul li:last-child {
	margin-bottom: 30px;
}

#foot-inner div ul li:after {
	content: '\f105';
	font-size: 1.6rem;
	font-family: 'font awesome 6 pro';
	font-weight: 300;
	color: #fff;
	position: absolute;
	top: 0;
	right: 10px;
 }
 
#foot-inner div ul li a {
	font-size: 1.5rem;
	font-weight: 500;
	color: #fff;
}

@media only screen and (min-width: 813px) {
	
	#foot-inner div ul li {
		line-height: 1;
		border-bottom: none;
		margin-bottom: 20px;
		padding-bottom: 0;
	}
	
	#foot-inner div ul li:last-child {
		margin-bottom: 40px;
	}
	
	#foot-inner div ul li:after {
		content: none;
	}
	
	#foot-inner div ul li a {
		font-size: 1.5rem;
		font-weight: 500;
		color: #fff;
	}

}

#foot-inner div a.button {
	width: 100%;
}


/* コピーライト */
footer #foot-bottom {
	background: #fff;
	width: 100%;
	padding: 20px 0;
}

footer #foot-bottom .copyright {
	font: 400 1.2rem/40px 'roboto-condensed';
	text-align: center;
	color: #1C1C1C;
}

@media only screen and (min-width: 813px) {
	
	footer #foot-bottom {
		background: #fff;
		width: 100%;
		padding: 10px 0;
	}
	
	footer #foot-bottom .copyright {
		font: 400 1.3rem/40px 'roboto-condensed';
		text-align: center;
		color: #1C1C1C;
	}
	
}


/*------------------------------------------------------------
	フッターフロート
------------------------------------------------------------*/

#footer-menu {
  width: 100%;
  height: 0px;
  z-index: 300;
  overflow: none;
  position: fixed;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

#footer-menu.show {
  height: 46px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

#footer-menu div {
	width: 25%;
	background: rgba(0,0,0,0.8);
	height: 46px;
	text-align: center;
}

#footer-menu div a {
	display: block;
	font-size: 1rem;
	color: #fff;
	line-height: 46px;
	text-decoration: none;
}

@media only screen and (min-width: 813px) {
	
	#footer-menu {
		display: none;
	}
	
}



/*------------------------------------------------------------
	バナー（フロート）
------------------------------------------------------------*/

.layer_board {
	display: none;
    background: #fff;
    padding: 8px;
    width: 92vw;
    height: auto;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 35px;
    margin: auto;
    z-index: 80;
	box-shadow: 0 5px 10px rgba(0,0,0,.3);
	box-sizing: border-box;
}

@media only screen and (min-width: 813px) {

	.layer_board { 
		width: 408px;
		bottom: 40px;
		left: 40px;
		right: auto;
	}

}

.layer_board img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

.layer_board a.btn_close {
	background: #000;
	width: 30px;
	height: 30px;
    font-weight: 500;
	line-height: 30px;
	text-align: center;
    text-decoration: none;
    color: #fff;
    border-radius: 30px;
    position: absolute;
    top: -10px;
    right: -10px;
    cursor: pointer;
}

@media only screen and (min-width: 813px) {
	
	.layer_board img {
		margin: 0 auto;
		transition:0.3s ease-in-out;
	}
	
	.layer_board img:hover {
		opacity: 0.85;
	}
	
	.layer_board a.btn_close {   
		transition:0.2s ease-in-out;
		top: -13px;
		right: -15px;
	}
	
	.layer_board a.btn_close:hover { 
		background: #222;
	}
	
}



/*------------------------------------------------------------
	横スクロールコンテンツ
------------------------------------------------------------*/

.scroll-area {
	  overflow-x: scroll;
	  overflow-y: hidden;
	  -webkit-overflow-scrolling: touch;
}

/*横スクロールするラップ全体の設定*/
.scroll-area .scroll-wrap {
	width: 3000px;/*読み込み時に崩れないように。最終的にJSで上書きしてる。*/
	height:190px; 
	padding-right: 5vw;　
}

/*横スクロールするアイテム単体の設定*/
.scroll-area .scroll-wrap .scroll-item {
	width: 230px;
	height: auto;
	margin-left: 5vw;
	float: left;
}

@media only screen and (min-width: 813px) {
	
	.scroll-area {
		overflow-x: hidden;
	}
	
	/*横スクロールするラップ全体の設定*/
	.scroll-area .scroll-wrap {
		width: 1180px!important; /*JSで自動取得する幅を強制リセット */
		margin: 0 auto;
		height:auto; 
	}
	
	/*横スクロールするアイテム単体の設定*/
	.scroll-area .scroll-wrap .scroll-item {
		width: 32%; /*個別に設定 or ここで一括設定 */
		margin: 0 0 20px;
	}
	
	.scroll-area .scroll-wrap .scroll-item:not(:nth-child(3n)) {
		margin-right: 2%;
	}
	
}

/*------------------------------------------------------------
	ページトップへ
------------------------------------------------------------*/

p#page-top a {
	background: #1d1d1d;
	width: 30px;
	height: 30px;
	font-size: 2rem;
	font-weight: bold;
	line-height: 30px;
	text-align: center;
	position: fixed;
	bottom: 70px;
	right: 5%;
	display: block;
	color: #fff;
	z-index: 10000;
}


/*------------------------------------------------------------
	ボタン
------------------------------------------------------------*/

a.button,
a.button::before,
a.button::after {
 	 box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}

a.button {
	display: block;
	width: 60vw;
	max-width: 100%;
	font-size: 1.5rem;
	line-height: 52px;
	letter-spacing: 1px;
	text-align: center;
	text-decoration: none!important;
	color: #fff;
	position: relative;
	z-index: 2;
	background-image: linear-gradient(-77deg, #42BAE7 0%, #1F84CA 100%);
	border-radius: 4px;
}

@media only screen and (min-width: 813px) {
	
	a.button {
		width: 280px;
		font-size: 1.6rem;
		line-height: 60px;
	}

}



a.button:hover {
	text-decoration: none;
	transition:0.1s ease-in-out;
	opacity: 0.9;
}

a.button::before {
	display: block;
	content: '';
	background: #165078;
	width: 60px;
	height: 1px;
	position: absolute;
	z-index: 1;
	top: 50%;
	right: -30px;
}

a.button:hover::before {
  right: -40px;
}

a.button::after {
	display: block;
	content: '';
	background: #0389E6;
	width: 100%;
	height: 100%;
	border-radius: 4px;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	opacity: 0;
}

a.button:hover::after {
	opacity: 1;
}

footer a.button:before {
	content: none;	
}

/*戻るボタン*/
/*
a.button.reverse:before {
    content: '\f104';
    right: auto;
    left: 20px;
}

a.button.reverse:hover:before {
    right: auto;
    left: 17px;
}

a.button.reverse::after {
	left: auto;
	right: -100%;
}

a.button.reverse:hover::after {
  right: 0;
}
*/


/*------------------------------------------------------------
	Ajax Pagination and Infinite Scroll
------------------------------------------------------------*/

a.malinky-load-more__button,
a.malinky-load-more__button:before,
a.malinky-load-more__button:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .2s;
  transition: all .2s;
}

a.malinky-load-more__button {
	display: block;
	background: #fff;
	width: 240px;
	max-width: 100%;
	line-height: 42px;
	text-align: center;
	text-decoration: none!important;
	color: #013577;
	position: relative;
	z-index: 2;
	border-bottom: 1px solid #013577;
	overflow: hidden;
}

a.malinky-load-more__button {
	width: 260px;
	margin: 20px auto 0;
}

a.malinky-load-more__button:hover {
  color: #fff!important;
  text-decoration: none;
}

a.malinky-load-more__button:before {
	content: '\f107';
	font-family: 'font awesome 6 Pro';
	position: absolute;
	top: 50%;
	right: 20px;
	margin-top: -25px;
}

a.malinky-load-more__button:hover:before {
	margin-top: -25px;
}

a.malinky-load-more__button:after {
	display: block;
	content: '';
	background: #013577;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
	bottom: -100%;
	left: 0;
}

a.malinky-load-more__button:hover:after {
  bottom: 0;
}

@media only screen and (min-width: 813px) {
	

	a.malinky-load-more__button {
		width: 320px;
		line-height: 56px;
		margin: 0 auto 60px;
	}
	
}

/*LOADING中のイメージを中央に配置*/
.malinky-ajax-pagination-loading img {
	margin: 0 auto;
}



/*------------------------------------------------------------
	WordPress パスワード設定時の表示
------------------------------------------------------------*/

div.centeringBox {
	font-size: 1.6rem;
	font-weight: 500;
	color: #000;
	text-align: center;
	padding: 30px 0;
	margin: 70px 0 50px;
}

div.centeringBox p {
	font-size: 1.4rem;
	margin-bottom: 20px!important;
}


@media only screen and (min-width: 813px) {
	
	div.centeringBox  {
		padding: 140px 0 200px;
		margin: 60px 0;
	}
	
	div.centeringBox p {
		margin-bottom: 40px!important;
	}

}


/*------------------------------------------------------------
	並び替え
------------------------------------------------------------*/

@media only screen and (max-width: 812px) {
	
	.order-01 {
		order: 1;
	}
	
	.order-02 {
		order: 2;
	}
	
	.order-03 {
		order: 3;
	}
	
	.order-04 {
		order: 4;
	}
	
	.order-05 {
		order: 5;
	}
	
	.order-06 {
		order: 6;
	}
	
	.order-07 {
		order: 7;
	}
	
	.order-08 {
		order: 8;
	}
	
	.order-09 {
		order: 9;
	}
	
	.order-10 {
		order: 10;
	}
	
	.order-11 {
		order: 11;
	}
	
	.order-12 {
		order: 12;
	}
		
}

