/*--------------------------------------------------------------
Theme Name: taniplate HP
	Author: S.Tanio
	Author URI:
--------------------------------------------------------------*/
@charset "UTF-8";
/*--------------------------------------------------------------
必須項目
--------------------------------------------------------------*/
/* フォント */
@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap');

/* カスタムプロパティなど定義 */
@import url("./root.css");

/*--------------------------------------------------------------
オプションの読み込み
--------------------------------------------------------------*/
@import url("./hamburger-side.css");/* ハンバーガーメニュー */
/*@import url("./contact-form-7.css");*//* Contact Form 7カスタマイズ */
@import url("./contact-form-7.css");/* MW WP Form カスタマイズ */
/*--------------------------------------------------------------
メモ
<a>タグは個別に設定しない限り、全体設定にて"block"要素にしている。
フォントサイズはremで指定する。1rem=16rem
レスポンシブによる値の切り替えはroot.cssに記述する。
文字色は不透明で、背景色だけ透過(透明)させたい時もこれ

background-color: transparent;
または
background-color:rgba(0,0,0,0);
--------------------------------------------------------------*/

/*--------------------------------------------------------------
各デフォルト設定
--------------------------------------------------------------*/
/* htmlタグ(後で設定されたもので上書きされる)
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	font-size: 62.5%;
	/*scroll-behavior: smooth;*/
}
/* bodyタグ(後で設定されたもので上書きされる)
--------------------------------------------------------------*/
body {
	color: #000000;		/* 文字色 */
	font-family: "Noto Sans JP",'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
						/* フォントの種類 */
	background:#FFFFFF;	/* 背景色 */
	font-size:1.6rem;	/* 16px*/
	line-height: 2;		/* 行間 */
	font-weight: 400;	/* フォントの太さ */
	margin:0;
	padding:0;
}
/* hタグの設定(後で設定されたもので上書きされる)
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	margin-bottom: 1rem;
	letter-spacing: 0.1em; /* 水平方向字間スペース */
	font-weight: normal;
}

/* 文字サイズ、行間、水平方向字間スペース
rem:ルート要素のフォントサイズを基準とした相対的な値
--------------------------------------------------------------*/
h1 { font-size: 3.2rem; line-height: 1.2;  letter-spacing: -.1rem;}
h2 { font-size: 2.9rem;line-height: 1.25; letter-spacing: -.1rem; }
h3 { font-size: 2.8rem; line-height: 1.3;  letter-spacing: -.1rem; }
h4 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; }
h5 { font-size: 1.8rem; line-height: 1.5;  letter-spacing: -.05rem; }
h6 { font-size: 1.5rem; line-height: 1.6;  letter-spacing: 0; }

@media (min-width: 550px) {
	h1 { font-size: 3.0rem; }
	/*h2 { font-size: 2.8rem; }*/
	h3 { font-size: 2.5rem; }
	h4 { font-size: 2.0rem; }
	h5 { font-size: 1.8rem; }
	h6 { font-size: 1.5rem; }
}
h1 {
	font-size: 36px;/* IE8以下とAndroid4.3以下用フォールバック */
	font-size: calc(2.4rem + ((1vw - 0.64rem) * 2.1429));/* 24px~36pxで可変*/
	line-height: 1.3;
}
.h2 {
	font-size: 24px;/* IE8以下とAndroid4.3以下用フォールバック */
	font-size: calc(2rem + ((1vw - 0.64rem) * 0.7143));/* 20px~24pxで可変*/
	line-height: 1.3;
}
/* @media スタイルシートを適用する条件 */
@media (min-width: 1200px) {            /* 1200px以上*/
    h1 {
        font-size: 3.6rem;              /* 36px */
    }
    .h2 {
        font-size: 2.4rem;              /* 24px */
    }
}
@media screen and (max-width: 640px) {  /* 640px以下*/
	body{
		line-height: 2;
	}
	h1{
		font-size: 2.4rem;              /* 24px*/
	}
	.h2 {
		font-size: 2rem;                /* 20px*/
	}
}

/* 基本画像設定 */
img {
	max-width:100%;                     /* 最大幅 */
	height: auto;                       /* 高さ自動 */
	z-index: 2;
}
/* 線
--------------------------------------------------------------*/
hr {
	border-width: 0;
	border-top: 1px solid #E1E1E1; 
}
@media screen and (max-width: 960px){
	hr {
		margin-top: 0.5rem;
		margin-bottom: 0.8rem;
		border-width: 0;
		border-top: 1px solid #E1E1E1; 
	}
}
.dotted-line {
	border-bottom: 2px dotted #000000;
}
.dotted-line-w {
	border-bottom: 2px dotted #FFFFFF;
}
/*.line-black line-xx のクラスは削除しておく */

/* このクラスを設定するとアンダーライン表示 */
.under-line {
	border-bottom: 2px solid /*#0cb4af;*/ #191970;
}
/* このクラスを設定するとアンダーライン表示 */
.under-line-white {
	border-bottom: 2px solid white;
}

/* aタグ(基本設定)
--------------------------------------------------------------*/
a {
	color: #0080FF;
	text-decoration-line: none;
}
a:hover {
	color: #0FA0CE;
}
a,
a:visited,
a:hover,
a:active {
	color: inherit;
}

/*--------------------------------------------------------------
レスポンシブ設定
--------------------------------------------------------------*/
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
/*.pc { display: block !important; }*/      	/* PC表示 */
/*.pc-tablet { display: none !important; }*/	/* PC-タブレット表示 */
.tablet-sp { display: none !important; }
.sp { display: none !important; }				/* スマホ表示 */

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media screen and (max-width: 960px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}
@media screen and (max-width: 768px) {
	.pc-tablet { display: none !important; }
    .tablet-sp { display: block !important; }
}

@media screen and (max-width: 960px){
	.sp-hidden {
		display: none;
	}
}
@media screen and (min-width: 960px){
	.pc-hidden {
		display: none;
	}
}
@media screen and (min-width: 768px){
	.sp-only {
		display: none;
	}
}
@media screen and (max-width: 1080px){
	.access-hidden {
		display: none;
	}
}

/*--------------------------------------------------------------
ヘッダー用
--------------------------------------------------------------*/
header {
	/* 追従ヘッダーメニュー用 追従させない場合は全部無効にする */
	/* 基本変更しない ここから */
	position: fixed;
	width: 100%;
	top: 0;
	left:0;
	height: auto;
	z-index: 9999;
	/* 基本変更しない ここまで */
	/* 常時上に表示しない場合は全部無効にする ここまで */
	background-color: white;
}

/* ヘッダーの一番上のテキストエリア */
.header-text {
	position: absolute;
	display: none;
	background-color: transparent;
}
/* ヘッダーロゴエリア */
.header-logo {
	display: block;
	height: auto;/*90px;*/
	padding: 10px;
	/*margin-top: 30px;*/
	z-index: 1;
}
/* ヘッダーロゴ画像サイズ */
.header-logo img{
	max-width: initial;
	height: 50px;
	object-fit: cover;
}

/* スマホ表示 */
@media screen and (max-width: 768px ) {
	.header-logo {
		height: auto;
		margin-top: auto;
		z-index: 1;
	}
	.header-logo img{
		width: 150px;
		height: auto;
		padding-top: 10px;
	}
}

.header-logo-sp {
	display: none;
	height: auto;/*90px;*/
	padding: 10px;
	/*margin-top: 30px;*/
	z-index: 1;
}
/* ヘッダーロゴ画像サイズ */
.header-logo-sp img{
	max-width: initial;
	height: 50px;
	object-fit: cover;
}

/* スマホ表示 */
@media screen and (max-width: 768px ) {
	.header-logo-sp {
		display: block;
		height: auto;
		margin-top: auto;
		z-index: 1;
	}
	.header-logo-sp img{
		width: 150px;
		height: 40px;
		padding-top: 0px;
	}
}


/* ヘッダーロゴエリア */
/* ハンバーガーメニュー用 */
.header-logo-ham {
	display: block;
	height: auto;/*90px;*/
	padding: 10px;
	/*margin-top: 30px;*/
	z-index: 1;
}
/* ヘッダーロゴ画像サイズ */
.header-logo-ham img{
	max-width: initial;
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* スマホ表示 */
@media screen and (max-width: 768px ) {
	.header-logo-ham {
		height: auto;
		margin-top: auto;
		z-index: 1;
	}
	.header-logo-ham img{
		width: 100%;
		height: auto;
		padding-top: 10px;
	}
}





/*
ヘッダー構成について
	header
		id="header-wrapper"
			id="header-top"
			id="header-main"
				id="header-content"
					id="header-center"
					id="header-right"
					id="header-left"
	みたいな感じになっている
*/

/* ヘッダーサイズ設定 */
#header-wrapper {
	position: relative;
	/*display: var(--display-flex-block);*//* これをすると問い合わせボタンが左によってくる */
	max-width: var(--width-header-area);
	height: var(--height-header-area);
	margin: 0 auto;
	/*padding: 0px 0px 0px 20px;*//* 上右下左 */
	padding: 0px 0px 0px 0px;/* 上右下左 */
}
@media screen and (max-width: 768px ) {
	#header-wrapper {
		padding: 0;
	}
}
#header-top {
	display: none;
	width: 100%;
	height: var(--height-header-top-area);
	float: left;
	padding-right: 0px;
}
@media screen and (max-width: 1349px ) {
	#header-top {
		padding-right: 0px;
	}
}
.header-top-text {
	float: left;
	text-align: left;
}
/* ヘッダートップ電話番号 */
.header-top-tel {
	float: right;
	width: 175px;
	padding: 0 20px 0 45px;
	color: white;
	background-color: black;
}
.header-top-tel::before{
	position: absolute;
	content: url(../img/icon-iphone-white-small.png);/* iPhoneアイコン(白) */
	margin-left: -25px;
	margin-top: 2px;
	height: 30px;
}
#header-main {
	width: 100%;
	height: var(--height-header-main-area);
	display: flex;
	align-items: center;  /* ←縦中央配置 */
	justify-content: center; /* ←必要なら横中央も */
}

/*--------------------------------------------------------------
ヘッダー用お問い合わせボタン設定
--------------------------------------------------------------*/
.header-right-icon {
	padding: 0px 10px 0px 0px;
}
.header-right-icon img {
	display: flex;
}
.header-contact-btn {
	display: flex;
	width: 160px;
	height: 38px;
	font-size: 16px;
	line-height: 34px;
	/* 右寄せ */
	/*margin-left: auto;	margin-right: 0;*/
	padding-top: 0px;
	padding-left: 0px;
	/*vertical-align: middle;*/
	color: white;
	background-color: black;/*var(--contact-button-color);*//*#4169e1;*//*#EA9720;*/
	border-radius: 50px;
	z-index: 99;
}
.header-contact-btn:hover {
	opacity: 0.6;
}
.header-contact-btn::before{
	position: absolute;
	/*content: url(../img/icon-mail.png);*//* メール用アイコン */
	content: url(../img/mail-mini.png);/* iPhoneアイコン(白) */
	margin-left: 16px;
	margin-top: 3px;
	pointer-events: none;
	height: 24px;
}
.header-contact-btn-sp {
	display: none;
}
/* レスポンシブ設定 */
@media only screen and (max-width: 1100px) {
	.header-contact-btn {
		width: 24px;
		display: none;
	}
	.header-contact-btn-sp {
		display: block;
	}
}
@media only screen and (max-width: 768px) {
	.header-contact-btn {
		font-size: 20px;
		line-height: 30px;
		padding-left: 0px;
	}
	.header-contact-btn::before{
		position: absolute;
		content: url(../img/mail-mini.png);
		margin-left: -66px;
		margin-top: 32px;
	}
}
.header-contact-btn a {
	display: block;
	width: 100%;
	height: 100%;
	padding-top: 0px;
	padding-left: 42px;
}
/*--------------------------------------------------------------
スマホ用問い合わせボタン(ヘッダー用)
--------------------------------------------------------------*/
.top-contact-btn {
	position: fixed;
	width: 42px;/*72px;*/
	height: 35px;/*50px;*/
	top: 18px;
	right:60px;
	/*padding-top: 7px;*/
	z-index: 1000;
	align-items: center;/* 配置 */
	cursor: pointer;/* カーソル */
	position: fixed;/* 要素の配置 */
	background-color: var(--contact-button-color);/*#4169e1;*/
	border-radius: 5px;/* ボーダー設定ラウンド指定 */

}
.top-contact-btn img {
	margin-top: 3px;
}
/*--------------------------------------------------------------
スマホ用電話ボタン(ヘッダー用)
--------------------------------------------------------------*/
.top-tel-btn {
	position: fixed;
	width: 42px;/*72px;*/
	height: 35px;/*50px;*/
	top: 18px;
	right:109px;
	/*padding-top: 7px;*/
	z-index: 1000;
	align-items: center;/* 配置 */
	cursor: pointer;/* カーソル */
	position: fixed;/* 要素の配置 */
	background-color: var(--contact-button-color);/*#4169e1;*/
	border-radius: 5px;/* ボーダー設定ラウンド指定 */

}
.top-tel-btn img {
	margin-top: 3px;
}
/*--------------------------------------------------------------
スマホ用SNSボタン(ヘッダー用)
--------------------------------------------------------------*/
#top-sns-btn {
	position: fixed;
	width: 42px;/*72px;*/
	height: 35px;/*50px;*/
	top: 18px;
	/*right:159px;*/
	right: 109px;
	/*padding-top: 7px;*/
	z-index: 1000;
	align-items: center;/* 配置 */
	cursor: pointer;/* カーソル */
	position: fixed;/* 要素の配置 */
	color: var(--sns-button-font-color);
	background-color: var(--sns-button-color);
	border-radius: 5px;/* ボーダー設定ラウンド指定 */

}
#top-sns-btn img {
	margin-top: 3px;
}
/* ヘッダートップSNSメニュー中身 */
#top-sns-menu {
	position: absolute;
	top: 70px;
	right: 0;
	transform: translate(280px);
	transition: all .5s;
	width: 280px;
	height: auto;
	padding: 0 20px 20px 20px;
	text-align: center;
	border: 2px solid #4169e1;
	background-color: white;
}
#top-sns-menu.open {
	transform: translate(0);
}
.header-top-sns-menu {
	float: right;
    /*position: absolute;*/
	overflow: hidden;
    /*width: 680px;*/
    height: 35px;
    padding: 0 20px;
	white-space: nowrap; /* 改行禁止 */
	text-align: center;
	/*border-bottom: 1px solid #CCCCCC;*/
	background-color: transparent;
}
/* <ul>箇条書きリスト */
.header-top-sns-menu ul {
    display: flex;
	margin: 0 auto;
	padding: 0;
	width: 100%;
	height: 100%;
	text-align: center;
    justify-content: center;
    align-items: center;
}
/* <ul>の内容を<li>で記載 */
.header-top-sns-menu ul li {
	display: table-cell;/* 親の<ul>がtableなので、table-cellとして表示 */
	/*min-width: 100px;*//* メニュー1項目の最低サイズ */
	height: 100%;
    padding: 0px 10px;
	/*border-right: 1px solid #CCCCCC;*/
}
/* <ul><li>の中の<a>に適用 */
.header-top-sns-menu ul li a {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	text-decoration: none;
	color: #000000;
}
.header-top-sns-menu ul li a img{
	display: flex;
	height: 30px;
	align-items: center;
}
/*--------------------------------------------------------------
グローバルメニュー(主にヘッダー用)
--------------------------------------------------------------*/
/* 注意 */
/* WPのメニュー設定で名前をheadにすること */
/* またfunction.phpでglobal-menuをメニューに定義しておくこと */
/* レスポンシブ設定 */
/* ヘッダーメニュー */
@media screen and (max-width: 960px ) {
	.global-menu {
		display: none;/*指定幅以下では使用しない */
	}
}
.global-menu {
	/*position: absolute;*/
	width: 700px;
	height: 100%;
	padding: 0 10px;
/**/font-size: 14px;
	/*border-bottom: 1px solid #CCCCCC;*/
	white-space: nowrap; /* 改行禁止 */
	overflow: hidden;
}
.global-menu #menu-head {/* <ul>箇条書きリスト */
	display: table;
	width: auto;/*80%;*//* メニューの幅 */
	height: 70px;
	/*margin-left: auto;*//* 右寄せ */
	margin: 0 auto;/* 中央寄せ */
	padding: 0;
}
.global-menu #menu-head li {
	display: table-cell;/* 親の<ul>がtableなので、table-cellとして表示 */
	height: 100%;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
}
.global-menu #menu-head li a {
	position: relative;
	display: flex;
	width: 100%;
	height: var(--height-header-main-area);/*100%;*/
	padding: 0 20px;
	text-decoration: none;
	color: #000000;
	justify-content: center; /*左右中央揃え*/
	align-items: center;/*縦中央揃え*/
}
/* 下線のアニメーションを ::after で作る */
.global-menu #menu-head li a span{
	position: relative;
	display: inline-block;
}
.global-menu #menu-head li a span::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 100%;
	background-color: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}
/* ホバー時にアニメーション実行 */
.global-menu #menu-head li a:hover span::after {
	transform: scaleX(1);
}


.global-menu ul li.current {
	font-weight: bold;
}
.global-menu ul li.current a {
	/*border-bottom: 5px solid #FFCCCC;*/
	color: #000000;
}
/* メニュー項目の左右に線を引く */
.global-menu #menu-head li:first-child{
	/*line-height: 40px;*/
	border-left:0px solid #D5D5D5;
}
.global-menu #menu-head li{
	/*line-height: 40px;*/
	border-right: 0px solid #D5D5D5;
}

/* サブメニュー(第2階層メニュー) */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5); /* 半透明の黒 */
	opacity: 0;
	pointer-events: none;
	transition: opacity 0s ease;
	z-index: 998; /* メニューより下、でも他の要素より上 */
}
#-header-main .sub-menu {
	position: relative;
	/*width: 100%!important;*/
	width: 960px!important;
	padding: 10px 25px 50px 25px!important;/*0!important;*/
	/*margin-left: 0px!important;*/
	margin: 0 auto!important;
	border: 1px solid black!important;
}
/* 矢印 */
#-header-main .sub-menu:before {
  content: "";
  position: absolute;
  top: -29px;
  left: 50%;
  margin-left: -310px;
  border: 15px solid transparent;
  border-bottom: 15px solid black;
  z-index: 0;
  pointer-events: none;
}
#-header-main .sub-menu li {
	/*width: 100%!important;*/
	/*max-width: 100%!important;*/
	height: 30px!important;
	font-size: 18px!important;
	line-height: 30px!important;
	text-align: left!important;
	color: black;
	/*background-color: black;*/
	border: 0px solid black!important;
}
#-header-main .sub-menu li a {
	width: auto!important;
	padding-top: 10px!important;
	padding-left: 10px!important;
	padding-bottom: 15px!important;
	color: black!important;
	height: 40px;/*100%;*/
}
#-header-main .sub-menu li a:hover {
	color: black!important;
	background-color: white;
	transition: 0.6s;/* 表示変更にかかる時間 */
}

/*--------------------------------------------------------------
!ニー設定
--------------------------------------------------------------*/
#knee ._title span {
	font-size: 35px;
	line-height: 35px;/* 高さ調節 */
	font-family: 'Josefin Sans', sans-serif;
	/*color: black;*//*#4169e1;*/
	/*background-color: white;*/
	/*background-position: center;*/
	overflow: hidden;
}
#knee ._subtitle {
/*	font-size: 20px;*/
/*	line-height: 30px;*/
	/*font-family: "Noto Serif JP", sans-serif;*/
	/*color: black;*//*#2f4f4f;*//*orange;*/
/*	padding-bottom: 40px;*/
	/*background-color: white;*/
	/*background-position: center;*/
/*	overflow: hidden;*/
	color: white!important;
}
#knee {
	width: 100%;
	height: auto;
	padding: 72px 15px 45px 15px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #f0f0f0;
	color: black;/*#333333;*/

	/*background-image : url(../img/bg-knee.jpg);*/
	/*background-position: top right;*/

	/* 背景画像を半透明にする場合は下記2つを有効に */
	/*background-color:rgba(55,55,55,0.8);*//* 最後の数字が透明度 1で見えなくなる */
	/*background-blend-mode:color;*/
}
@media screen and (max-width: 768px) {
	#knee {
		padding: 48px 15px 0px 15px;
	}
}
.knee {
	/*display: flex;*/
	display: block;
	max-width: 1040px;
	margin: 0 auto;

	/* フォント設定 */
	font-family: "Noto Sans JP", sans-serif;
	font-size: 18px;
	line-height: 30px;
	letter-spacing: 0.1rem;
	overflow: hidden;
	text-align: center;
}
/* レスポンシブ設定 */
@media screen and (max-width: 768px) {
	.knee ._text {
		text-align: left;
	}
}
.knee ._title {
	text-align: center;
	padding-bottom: 30px;
}
.knee_text_are {
	width: 75%;
}
.knee_btn_area {
	display: flex;
	margin: 0 auto;
	justify-content: center;
	justify-items: center;/*start;*/
	align-items: center;
}
/* レスポンシブ設定 */
@media screen and (max-width: 768px) {
	.knee_btn_area {
		display: block;
		padding: 40px 10px;
		text-align: center;
	}
}
.knee-btn {
	max-width: 400px;
	height: 80px;
	margin: 0 auto;
	margin-bottom: 80px;
	text-align: center;
}
@media screen and (max-width: 480px) {
	.knee-btn {
		max-width: 310px;
	}
}
.knee-btn a:hover {
	background-color: white;
	color: black;
}
.knee-btn-line a {
	display: flex;
	font-weight: bold;
	width: 100%;
	height: 100%;
	text-align: center;
	border: 1px solid rgb(16, 119, 10);
	border-radius: 55px;
	font-size: 16px;
	padding: 0 30px;
	background-color: /*#07645e;*/white;
	color: rgb(16, 119, 10);
	justify-content: center; /* 横中央配置 */
	justify-items: center;/*start;*/
	align-items: center;  /* 縦中央配置 */
}
.knee-btn-insta a {
	display: flex;
	font-weight: bold;
	width: 100%;
	height: 100%;
	text-align: center;
	border: 1px solid rgb(163, 32, 190);
	border-radius: 55px;
	font-size: 16px;
	padding: 0 30px;
	background-color: /*#07645e;*/white;
	color: rgb(163, 32, 190);
	justify-content: center; /* 横中央配置 */
	justify-items: center;/*start;*/
	align-items: center;  /* 縦中央配置 */
}
.knee-btn-mail a {
	display: flex;
	font-weight: bold;
	width: 100%;
	height: 100%;
	text-align: center;
	border: 1px solid black;
	border-radius: 55px;
	font-size: 16px;
	padding: 0 30px;
	background-color: /*#07645e;*/white;
	color: black;
	justify-content: center; /* 横中央配置 */
	justify-items: center;/*start;*/
	align-items: center;  /* 縦中央配置 */
}
.knee-btn span {
	font-size: 14px;
	padding-bottom: 5px;
}
/*--------------------------------------------------------------
!フッター設定
--------------------------------------------------------------*/
footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: var(--footer-main-height);/*350px;*/
	background-color: var(--footer-color);/*#f0f8ff;*/
}
.footerMenu ul li:before{
    content: "";
}
.footerMenu {
	font-size: 15px;
}
.footerFixed {
	min-height: 100vh; /* ←コンテンツの高さの最小値＝ブラウザの高さに指定 */
	position: relative;/* ←相対位置 */
	padding-bottom: var(--footer-main-height);/*350px;*/ /* ←フッターの高さを指定 */
	box-sizing: border-box;
	/* ↑ヘッダーやフッターを含むすべての要素の高さ＝min-height:100vhになるように指定 */
}
@media screen and (max-width: 960px ) {/* スマホ表示 */
	footer {
		height: 20px;/*280px;*//*370px;*/
		text-align: center;
	}
	.footerFixed {
		padding-bottom: 20px; /* ←フッターの高さを指定 */
	}
}
.footer-main-area {
	max-width: var(--width-1000-wrap);
	height: var(--footer-main-height);
	margin: 0 auto;/* 中央寄せ */
	padding-top: 20px;/* 上の空きサイズ */
	background-position: center;
	background-position: top;
	overflow: hidden;
}
@media screen and (max-width: 1200px) { 
	.footer-main-area {
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media screen and (max-width: 960px ) {/* スマホ表示 */
	.footer-main-area {
		padding-top: 0px;/* 上の空きサイズ */
	}
}

/* フッターメニュー */
.f_menu {
    /*position: absolute;*/
	overflow: hidden;
    /*width: 680px;*/
    /*height: var(--height-header-area);*/
	white-space: nowrap; /* 改行禁止 */
	text-align: center;
	/*border-bottom: 1px solid #CCCCCC;*/
	background-color: #FFFFFF;
}
/* <ul>箇条書きリスト */
.f_menu ul {
	/*display: table;*//* tableで表示 */
    display: flex;
	margin: 0 auto;
	padding: 0;
	width: 100%;
	text-align: center;
    justify-content: center;
    align-items: center;
}
/* <ul>の内容を<li>で記載 */
.f_menu ul li {
	display: table-cell;/* 親の<ul>がtableなので、table-cellとして表示 */
	/*min-width: 100px;*//* メニュー1項目の最低サイズ */
    padding: 5px 10px;
	/*border-right: 1px solid #CCCCCC;*/
}
/* <ul><li>の中の<a>に適用 */
.f_menu ul li a {
	display: flex;
	width: 100%;
	align-items: center;
	/*padding: 5px 10px;*/
	text-decoration: none;
	color: #000000;
}
.f_menu ul li img{
	display: flex;
	align-items: center;
}
/* フッターの対応エリア表示 */
.footer-support-area {
	margin-top: 10px;
	background-color: #F1F5F7;
	border: 1px solid black;
}
.footer-support-area p {
	width: 100%;
	padding: 0px 20px 0px 20px;
	color: black;
	background-color: var(--button-color);;
}
.footer-support-area div {
	padding: 10px 20px 10px 20px;
}
@media screen and (max-width: 1200px) { 
	.footer-support-area {
		font-size: 14px;
	}
}
@media screen and (max-width: 768px) { 
	.footer-support-area {
		text-align: left;
	}
}
/*--------------------------------------------------------------
コピーライト部分
--------------------------------------------------------------*/
.copyright{
	overflow: hidden;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
	text-align: center;
	padding: var(--default-padding);
	padding-bottom: 0px;
	color: var(--copyright-font-color);
	background-color: var(--copyright-color);
}

/*--------------------------------------------------------------
追従-TOPへ戻るボタン
--------------------------------------------------------------*/
#pagetop {
	position: fixed;
	bottom: 15px; /* 下からの位置 */
	right: 15px; /* 右からの位置 */
	z-index: 100; /* Zパラメータ */
}
#pagetop a {
	display: block;
	width: 75px;
	height: 75px;
	padding: 10px 5px;
	padding-top: 70px;
	text-align: center;/* 中央寄せ */
	/*border: solid 2px #000000;*/
	color: #000000;
	z-index: 100;
	/*background: #FFFFFF;*/
	background-image : url(../img/pagetop.png);
	background-repeat: no-repeat;
	background-position: center;
}
/* ホバー設定 */
#pagetop a:hover {
	/*background: #BC8F8F;/* 背景色 */
	z-index: 100;
}
#pagetop.close {
	display: none;
}
@media screen and (max-width: 960px) { 
	#pagetop a {
		width: 75px;/* 幅 */
		height: 75px;
		padding: 10px 5px;
		padding-top: 30px;
		background-image : url(../img/pagetop.png);
	}
}
/*--------------------------------------------------------------
!main(メインタグ)
--------------------------------------------------------------*/
/* 常時上にヘッダー表示する場合のマージン */
main {
	margin-top: var(--height-header-area);
}
/*--------------------------------------------------------------
フロントページ各セクション用
汎用性に欠けるので注意
display: flex; 親要素がflexだと子は横に並ぶ
--------------------------------------------------------------*/
/*--------------------------------------------------------------
!ボタン
--------------------------------------------------------------*/
.front-btn {
	display: table-cell;
    position: relative;
	width: var(--front-btn-width);/*328px;*/
	height: 60px;
	font-size: 1.5rem;/* 18px */
	text-align: center;
	vertical-align: middle;
	color: #FFFFFF;
	background-color: #1B97BB;
	border-radius: 0px;
	margin: auto;
	z-index: 10;
}
.front-btn::after {
	position: absolute;
	content: url(../img/link.png);
	left: 90%;
}
/* フロント用ボタン */
.front-btn-small {
	display: inline-block;
	overflow: hidden;
	width: 278px;
	height: 50px;
	font-size: 1.5rem;/* 18px */
	line-height: 44px;/* heightと同じにする→微調整する */
	text-align: center;
	color: var(--button-text-color);
	background-color: var(--button-color);
	border: solid 1px var(--button-text-color);
	border-radius: 50px;
}
.front-btn-small:hover {
	color: var(--button-color);
	background-color: var(--button-text-color);
}
/* フロント用ボタン(色反転) */
.front-btn-small-2pcolor {
	display: inline-block;
	overflow: hidden;
	width: 278px;
	height: 50px;
	font-size: 1.5rem;/* 18px */
	line-height: 44px;/* heightと同じにする→微調整する */
	text-align: center;
	color: var(--button-color);
	background-color: var(--button-text-color);
	border: solid 1px var(--button-color);
	border-radius: 0px;
}
.front-btn-small-2pcolor:hover {
	color: var(--button-text-color);
	background-color: var(--button-color);
	border: solid 1px var(--button-text-color);
}
/* 1カラムで使用するボタン(基本ボタン) */
.wrap-1column-btn {
	display: inline-block;
	overflow: hidden;
	width: var(--width-1column-btn);
	height: 60px;
	font-size: 1.5rem;/* 18px */
	line-height: 58px;/* heightと同じにする→微調整する */
	text-align: center;
	color: var(--button-text-color);
	background-color: var(--button-color);
	border: solid 1px var(--button-text-color);
	border-radius: 50px;
	letter-spacing: 0;
}
.wrap-1column-btn:hover {
	color: var(--button-color);
	background-color: var(--button-text-color);
}
.wrap-1column-btn a {
	display: block;
}
/* ホームへ戻るボタンの上下のスペース用 */
.return-home-top-space {
	height: 60px;
}
.return-home-bottom-space {
	height: 60px;
}
.btn-around2 {
	width: auto;
	height: auto;
	padding: 50px 0px 50px 0px;/* 上右下左 */
}
.btn-center {
	transform:translate(-50%,0);
}
/* リンク用の枠 */
.another-btn {
	max-width: 350px;
	height: 48px;
	border: solid 2px #000000;
	border-radius: 5px;
	padding: 5px 10px;
	margin: 0;
	background-color: white;
}
/* ページ最下部のボタンとkneeエリアまでのマージン */
.page-under-btn {
	margin-bottom: 90px;
}

/* シングルページ途中用お問い合わせボタン */
.contact-btn-sub a {
	display: flex;
	width: 250px;
	height: 60px;
	margin: 0 auto;
	align-items: center;
	justify-content: center;
	gap: 8px; /* アイコンと文字の間隔 */
	padding: 10px 20px;
	background-color: green; /* 任意の色 */
	color: white;
	text-decoration: none;
	border-radius: 5px;
	font-size: 16px;
	margin-top: 40px;
	margin-bottom: 60px;
}
.contact-btn-sub-icon {
	padding-top: 2px;
	font-size: 20px; /* 任意のサイズに変更 */
}
/*--------------------------------------------------------------
テキスト用
--------------------------------------------------------------*/
/* 16px=1rem */
/* 62.5%なので 1rem=10px */
.text-center-left {
	text-align: center;
}
@media screen and (max-width: 768px) {
	.text-center-left {
		text-align: left;
	}
}
.text-left-center {
	text-align: left;
}
@media screen and (max-width: 768px) {
	.text-left-center {
		text-align: center;
	}
}
.text-center-left-tablet {
	text-align: center;
}
@media screen and (max-width: 960px) {
	.text-center-left-tablet {
		text-align: left;
	}
}
.text-center-left-center-left {
	text-align: left;
}
@media screen and (max-width: 960px) {
	.text-center-left-center-left {
		text-align: center;
	}
}
@media screen and (max-width: 768px) {
	.text-center-left-center-left {
		text-align: left;
	}
}
.text-right-center-tablet {
	text-align: right;
}
@media screen and (max-width: 960px) {
	.text-right-center-tablet {
		text-align: center;
	}
}
.text-left-center-tablet {
	text-align: left;
}
@media screen and (max-width: 960px) {
	.text-left-center-tablet {
		text-align: center;
	}
}
.orange-text{
	color: orange;
}
/* -------------------------------------------------------------
パンくずリスト
------------------------------------------------------------- */
.pankuzu-list {
	display: block;
	max-width: var(--pankuzu-list-width);
	height: 40px;
	overflow: hidden;
	font-size: 15px;/*0.9375rem;*/
	line-height: 29px;
	font-weight: 700;
	margin: 0 auto;
	color: black;
	/*background-color: var(--button-color);*/
}
/* レスポンシブ設定 */
@media screen and (max-width: 768px) {
	.pankuzu-list {
		height: auto;
	}
}
/* テキスト設定用 */
.text-pankuzu {
	font-size: 15px;/*0.9375rem;*/
	line-height: 29px;
	font-weight: 700;
}
/* -------------------------------------------------------------
各ページの上部メインタイトル
------------------------------------------------------------- */
.main-title {
	position: relative;
	display: flex;
	width: 100%;
	/*max-width: var(--width-max-wrap);*/
	height: 300px;
	overflow: hidden;
	padding-top: 118px;
	/*font-family: "Noto Serif JP", sans-serif;*//* フォント指定 */
	font-family: "Noto Sans JP",'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
						/* フォントの種類 */
	text-align: center;
	justify-content: center;/*start; 開始位置 */
	color: white;/*#EA7620;*//*#005BAC;*/
	/*background-color: var(--page-title-color);*/
	background-image : url(../img/page_title.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100%;
	/* 背景画像を半透明にする場合は下記2つを有効に */
	background-color:rgba(0,0,0,0.5);/* 最後の数字が透明度 1で見えなくなる */
	background-blend-mode:color;
}
/* 背景画像を半透明にする場合は有効に */
/*
.main-title::after {
	content: '';
	background-color: rgba(29,124,240,0.9);//不透明度と色設定
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}
*/
.main-title h1,
.main-title span{
	/*position: relative;*/
	z-index: 1;
	text-align: center;
	margin-bottom: 0;
}
.main-title h1 {
	height: 40px;
	font-size: 32px;
}
.main-title span{
	position: absolute;
	top: 58%;
}
/* アイコン用 */
.main-title img {
	height: 36px;
	margin-left: -36px;
	padding-right: 10px;
}
/* レスポンシブ設定 */
@media screen and (max-width: 768px) {
	.main-title {
		height: 100px;
		padding-top: 25px;
	}
	.main-title h1 {
		font-size: 20px;
	}
	.main-title span {
		font-size: 14px;
	}
	.main-title img {
		height: 28px;
		margin-left: -36px;
		padding-right: 10px;
	}
}
.main-title p {
	position: absolute;
	top: 50%;
	left: 50%;
	color: #FFFFFF;
	font-weight: bold;
	font-size: 3em;
	transform: translate(-50%,-50%);
	margin:0;
	padding:0;
	white-space: nowrap;
	letter-spacing: 12px;
}

/* -------------------------------------------------------------
セクション基本設定
------------------------------------------------------------- */
/* フロントTOPセクション用設定 */
.front-top-section {
	position: relative;
	width: 100%;
	height: auto;
	margin-top: 0px;
	padding: 48px 0px 80px 0px;/* 上右下左 */
}
@media screen and (max-width: 768px) {
	.front-top-section {
		padding: 10px 0px 20px 0px;/* 上右下左 */
	}
}
/* フロントセクション用基本クラス各設定 */
.front-basic-section {
	position: relative;
	width: 100%;
	height: auto;
	margin-top: 0px;
	padding: 56px 0px 80px 0px;/* 上右下左 */
}
@media screen and (max-width: 768px) {
	.front-basic-section {
		padding: 28px 0px 40px 0px;/* 上右下左 */
	}
}
.front-basic-section ._title {
	margin-bottom: 30px;
}
.front-basic-section ._text {
	margin-bottom: 0px;
}
.front-basic-section ._button {
	margin-top: 0px;
}
/* 各ページ用基本クラス各設定 */

/* アーカイブ用基本クラス各設定 */
.archive-basic-section {
	position: relative;
	width: 100%;
	height: auto;
	margin-top: 0px;
	padding: 24px 0px 80px 0px;/* 上右下左 */
}
.archive-basic-section ._title {
	margin-bottom: 30px;
}
.archive-basic-section ._text {
	margin-bottom: 0px;
}
.archive-basic-section ._button {
	margin-top: 90px;
	height: 60px;
}
.single-top-image {
	width: 50%;
	max-width: 960px;
	height: auto;
	margin: 0 auto;
}
/* -------------------------------------------------------------
フロントページ基本設定
------------------------------------------------------------- */
/* フロントページに表示する各ページ名、コンテンツ名などに使用 */
.front-page-title {
	overflow: hidden;
	max-width: var(--width-main-wrap);
	height: 63px;
	font-size: 38px;
	font-weight: normal;
	line-height: 60px;
	/*font-family: "Noto Serif JP", sans-serif;*/
	font-family: "Noto Sans JP",'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
						/* フォントの種類 */
	color: #272B48;
	background-image : url(../img/moyou.png);
	background-position: center;
	margin: 0 auto;
	padding: 0;
}
/* レスポンシブ設定 */
@media screen and (max-width: 768px) {
	.front-page-title {
	    font-size: 24px;
	}
}

.front-title {
	display: flex;
	align-items: center;
}
/* レスポンシブ設定 */
@media screen and (max-width: 768px) {
	.front-title {
		align-items: center;
		justify-content: center   
	}
	.front-title img {
		width: 48px;
		height: 48px;
	}
}

.front-page-subtitle {
	overflow: hidden;
	max-width: var(--width-main-wrap);
	height: 20px;
	font-size: 17px;
	line-height: 17px;
	/*font-family: "Noto Serif JP", sans-serif;*/
	font-family: "Noto Sans JP",'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
						/* フォントの種類 */
	color: #EA7620;
	margin: 0 auto;
	padding: 0;
}
/* フロントページのタイトルのアイコンサイズ */
.front-title-icon {
	width:48px;
	height:48px;
}
/* 以下ユニーク設定 */
.front-page-title-contact {
	position: relative;
	overflow: hidden;
	max-width: var(--width-main-wrap);
	height: 106px;
	margin: 0 auto;
    padding: 0;
    padding-top: 40px;
	font-size: 38px;
	/*line-height: 38px;*/
	/*font-family: "Noto Serif JP", sans-serif;*/
	font-family: "Noto Sans JP",'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
						/* フォントの種類 */
	color: #272B48;
	background-image : url(../img/contact.png);
	background-position: center;
    overflow: hidden;
}
@media screen and (max-width: 1100px) {
	.front-page-title-contact {
	    font-size: 30px;
	}
}
@media screen and (max-width: 768px) {
	.front-page-title-contact {
	    font-size: 22px;
	}
}
.front-page-title-contact p {
	position:absolute;
	width: auto;
	bottom: 0; /*下寄せの指定*/
	left: 50%;
	transform:translate(-50%,-50%);
	top: 60px;
}
/* フロントページに表示する各コンテンツのタイトル用 */
.front-basic-section ._title span,
#front-access ._title span,
#front-news-2column ._title span {
	/*width: 300px;*/
	height: 40px;
	font-size: 36px;
	line-height: 50px;
	/*font-family: "Noto Serif JP", sans-serif;*/
	font-family: "Noto Sans JP",'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
						/* フォントの種類 */
	color: var(--front-title-color);
	/*background-color: white;*/
	/*background-position: center;*/
	overflow: hidden;
}
@media screen and (max-width: 768px) {
	.front-basic-section ._title span,
	#front-access ._title span,
	#front-news-2column ._title span {
		font-size: 24px;
	}
}
/* フロントページに表示する各コンテンツのサブタイトル用 */
#knee ._subtitle,
.front-basic-section ._subtitle,
#front-access ._subtitle,
#front-news-2column ._subtitle {
	font-size: 17px;
	line-height: 30px;
	/*font-family: "Noto Serif JP", sans-serif;*/
	font-family: "Noto Sans JP",'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
						/* フォントの種類 */
	color: black;/*#2f4f4f*/;/*orange;*/
	/*background-color: white;*/
	/*background-position: center;*/
	overflow: hidden;
}
.front-overview {
	color:#2f4f4f;
	font-size: 18px;
	line-height: 36px;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.front-overview h2{
	    font-size: 17px;
	}
}

/* -------------------------------------------------------------
トップ画像(スライダーエリア)
------------------------------------------------------------- */
.top-img {
	position: relative;
}

/* 隙間対策 */
.top-img img {
	vertical-align:top;
}

/* -------------------------------------------------------------
以下、各セクション・項目の設定
------------------------------------------------------------- */
/* -------------------------------------------------------------
コンテンツエリア基本設定
------------------------------------------------------------- */
.contents-area{
	max-width: 1100px;
	height: auto;
	display: block;
	margin: 0 auto;
	padding-top: 40px;
	overflow: hidden;
}
/* -------------------------------------------------------------
!ABOUT(企業情報)-フロントページ
------------------------------------------------------------- */
/* フロントページのABOUTセクション(ユニーク設定) */
/* 外枠 */
.front-about-section {
	background-color: white;
}
/* 内枠 */
.front-about {
	display: block;
	max-width: var(--width-main-wrap);
	height: auto;
	margin: 0 auto;
	background-position: center;
	overflow: hidden;
	
	/* フォント設定 */
	font-size: 1.5rem;/* 18px */
	line-height: 24px;
	letter-spacing: 0.1rem;
}
/* タイトル */
.front-about ._title {
	text-align: center;
	align-items: center;
}
.front-about ._subtitle {
	color: #0cb4af;
}
/* テキスト(内容・説明文) */
.front-about ._text {
	padding: 0px 0px 0px 0px;
	font-size: 2.0rem;
	text-align: center;
	align-items: center;
}
@media screen and (max-width: 768px) {
	.front-about ._text {
	    text-align: left;
	}
}

/* ボタン */
.front-about ._button {
	text-align: center;
	align-items: center;
}
.bg_skew_border{
    background-color: #fdfdfd!important;
    background-image:
   repeating-linear-gradient(-90deg,
   #fff, #fff 7px,
   transparent 0, transparent 14px);
}

/* -------------------------------------------------------------
!FAMILY(家族で写真)-フロントページ
------------------------------------------------------------- */
/* フロントページのFAMILYセクション */
/* 基本中身は投稿型の取得になる */
.front-section {
	position: relative;
	width: 100%;
	height: auto;
	margin-bottom: 90px;
	background-position: top right;
	z-index: 0;
}
.front-section-margin-top {
	position: relative;
	width: 100%;
	height: auto;
	margin-top: 90px;
	margin-bottom: 90px;
	background-position: top right;
	z-index: 0;
}
.front-family {
	display: block;
	max-width: var(--width-main-wrap);
	height: auto;
	margin: 0 auto;
	background-position: center;
	overflow: hidden;
	
	/* フォント設定 */
	font-size: 1.5rem;/* 18px */
	line-height: 24px;
	letter-spacing: 0.1rem;
}
@media screen and (max-width: 1080px) {
	.front-family {
		display: block;
		max-width: 100%;
	}
}

/* グリッドレイアウト */
.grid-area-front-family {
	display: grid;
	gap: 10px;/*40px 40px;*//* 上下 左右 */
	grid-template-columns: repeat(auto-fit, 200px);
	grid-template-rows: 1fr;
	grid-auto-rows: 200px;/*425px;*/
	margin: 0 auto;
	justify-content: start;/*start; 開始位置 */
	justify-items: center;/*start;*/
	align-items: center;
	padding-bottom: 0px;
}
@media screen and (max-width: 1080px) {
	.grid-area-front-family {
		justify-content: center;/*start; 開始位置 */
	}
}
@media screen and (max-width: 480px) {
	.grid-area-front-family {
		grid-template-columns: repeat(2, 1fr); /* 横2分割 */
		padding: 10px;
	}
}

.grid-item-front-family {
	width: 200px;
	height: 200px;
	display: flex;
	flex-direction: column;
	border: 1px solid #ccc;
	overflow: hidden;
	font-size: 15px;
	color: black;
	background-color: white;
	border: solid 1px black;
}
@media screen and (min-width: 480px) {
	.grid-item-front-family {
		aspect-ratio: 8 /3;
	}
}
@media screen and (max-width: 480px) {
	.grid-item-front-family {
		width: 170px;
	}
}

/* タイトル */
.grid-item-front-family ._title {
	/*width: 200px;*/
	height: 50px;
	display: flex;
	align-items: center;/* 縦中央配置 */
	justify-content: center;/* 必要なら横中央も */
	font-size: 16px;
	background-color: white;
}
.grid-item-front-family a{
	display: block;
	height: auto;
}
.grid-item-front-family img {
	width: 100%;
	height: 150px;
	display: block;
	object-fit: cover;/* アス比維持 */
}

/*--------------------------------------------------------------
!シングルページ用汎用
--------------------------------------------------------------*/
/* 基本 */
/* シングル用基本クラス各設定 */
/* 背景色の設定は各ページで行う */
.single-basic-section {
	position: relative;
	width: 100%;
	height: auto;
	margin-top: 0px;
	padding: 0px 0px 0px 0px;/* 上右下左 */
}
.single-basic-section-color2 {
	position: relative;
	width: 100%;
	height: auto;
	margin-top: 0px;
	padding: 0px 0px 0px 0px;/* 上右下左 */
}
.single-page {
	display: block;
	max-width: var(--width-main-wrap);
	height: auto;
	margin: 0 auto;
	background-position: center;
	overflow: hidden;
	
	/* フォント設定 */
	font-size: 1.5rem;/* 18px */
	line-height: 24px;
	letter-spacing: 0.1rem;
}
.single-basic-section ._button {
	margin-top: 80px;
	height: 60px;
}
/* 背景指定用クラス */
.single-bg-area {
	width: 100%;
	height: auto;
}
.single-bg-area2 {
	width: 100%;
	height: auto;
	background-color:var(--main-color);
}
.single-bg-area3 {
	width: 100%;
	height: auto;
/**/background-position: top right;
/**/background: linear-gradient(	175deg,
									var(--main-color) 0%,
									var(--main-color) 20%,
									#FFFFFF 20%,
									#FFFFFF 100%
								);

	/* 背景画像を半透明にする場合は下記2つを有効に */
	/*background-color:rgba(255,255,255,0.2);*//* 最後の数字が透明度 1で見えなくなる */
	/*background-blend-mode:color;*/

}
.single-bg-area-white {
	width: 100%;
	height: auto;
	background-color: white;
}
.pankuzu-area {
	width: 100%;
	height: auto;
	background-color: var(--button-color);
}
.single-bg-area-clear {
	width: 100%;
	height: auto;
	background-color: rgba(255,255,255,0.9);
}

.green-link a{
	color: green;
	text-decoration: underline;
}


/*--------------------------------------------------------------
!ABOUT(企業情報)-シングルページ
--------------------------------------------------------------*/
/* ABOUTセクション */
#single-about {
	position: relative;
	width: 100%;
	height: auto;
/**/margin-top: 0px;/* 上コンテンツとの距離 */
/**/background-color: white;
/**//*background-image : url(../img/bg-front-about.jpg);*/
/**/background-position: top right;

	/* 背景画像を半透明にする場合は下記2つを有効に */
	/*
	background-color:rgba(255,255,255,0.2);
	background-blend-mode:color;
	*/

}
#single-about  ._title h2 {
	position: relative;
	font-size: 36px;
}
/* タイトルの前に■を付けるCSS
#single-about  ._title h2:before {
	position: absolute;
	width: 18px;
	height: 42px;
	top: 3px;
	left: 3px;
	background: var(--button-color);
	content: "";
}
*/
@media screen and (max-width: 768px) {/* ブレークポイント指定 */
	#single-about  ._title h2 {
		font-size: 24px;
	}
	#single-about  ._title h2:before {
		height: 25px;
	}
}
.single-about {
	display: block;
	max-width: var(--width-single-wrap);
	height: auto;
	text-align: center;
	margin: 0 auto;/* 中央配置 */
/**/padding: 36px 0px 0px 0px;/* 上右下左 */
/**//*background-color: white;*/
	/*
	background: linear-gradient(
		to right,
		rgba(255,255,255,1) calc(100% / 2),
		rgba(255,255,255,0) calc(100% / 2)
	);
	*/
/**//*background-image : url(../img/bg-section1.png);*/
/**/background-position: center;
	overflow: hidden;
	
	/* フォント設定 */
	font-size: 1.6rem;/*18px;*/
	line-height: 24px;
	letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
	.single-about {
		padding: 40px 0px 0px 0px;/* 上右下左 */
	}
}

/* 会社について */
.about-company-section {
	display: flex;
	flex-wrap: wrap;/* 折り返し許可 */
	gap: 0;
	align-items: stretch;/* ストレッチ表示 */
	margin-bottom: 90px;
}
.about-company-image {
	display: flex;
	flex: 1 1 40%;
	box-sizing: border-box;
	padding: 40px 30px;
	align-items: center;
}
.about-company-text {
	flex: 1 1 60%;
	box-sizing: border-box;
	padding: 40px 50px;
	font-size: 16px;
	line-height: 32px;
	text-align: left;
}


/* 画像スタイル */
.about-company-image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
	.about-company-text,
	.about-company-image {
		flex: 1 1 100%;
		padding: 15px;
	}
}

/* 会社概要テーブル */
.company-profile-table {
    width: var(--width-tbl-r02);
    margin-left: auto;
	margin-right: auto;
	margin-bottom: 40px;
}
.company-profile-table th {
    width: 250px;
    border: solid 1px #CCCCCC;
    color: black;
    padding: 10px;
    background: var(--button-color);
}
.company-profile-table td {
    padding: 10px;
    border: solid 1px #CCCCCC;
    background: #FFFFFF;
	text-align: left;
}
   
@media screen and (max-width: 640px) {
    .company-profile-table {
		width: var(--width-tbl-r02);
		min-width: 320px;
	}
	.company-profile-table th,
	.company-profile-table td {
		display: block;
		width: 100%;
		border-bottom: none;
		padding: 10px 15px;
		border: solid 1px #CCCCCC;
		/*border: none;*/
	}
}

/*--------------------------------------------------------------
!CONTACT(お問い合わせ)-シングルページ
--------------------------------------------------------------*/
#single-contact {
	position: relative;
	width: 100%;
	height: auto;
	margin-top: 0px;
	background-color: white;
	/*
	background-image : url(../img/bg-front-about.jpg);
	*/
	background-position: top right;

	/* 背景画像を半透明にする場合は下記2つを有効に */
	/*
	background-color:rgba(255,255,255,0.2);
	background-blend-mode:color;
	*/

}

.single-contact {
	display: block;
	max-width: var(--width-single-wrap);
	height: auto;
	text-align: center;
	margin: 0 auto;
	padding: 36px 0px 7px 0px;/* 上右下左 */
	/*background-color: white;*/
	/*
	background: linear-gradient(
		to right,
		rgba(255,255,255,1) calc(100% / 2),
		rgba(255,255,255,0) calc(100% / 2)
	);
	*/
/**//*background-image : url(../img/bg-section1.png);*/
/**/background-position: center;
	overflow: hidden;
	
	/* フォント設定 */
	font-size: 1.5rem;/*18px;*/
	line-height: 24px;
	letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
	.single-contact {
		padding: 10px 0px 0px 0px;/* 上右下左 */
	}
}

/* コンタクトフォーム説明文 */
.contact-form-text {
	font-size: 1.7rem;
	text-align: left;
}
.contact-form-main {
	padding-bottom: 72px;
}
/*--------------------------------------------------------------
!POST 投稿系設定
--------------------------------------------------------------*/
/*--------------------------------------------------------------
!BLOG - フロントページ用
--------------------------------------------------------------*/
.front-blog-section {
	display: block;
	overflow: hidden;
	margin-top: 0px;
	background-color: #f8f8f8;
}
.front-blog-section ._button {
	margin-bottom: 0;
}
.front-blog {
	display: block;
	max-width: var(--width-main-wrap);
	height:auto;
	margin: 0 auto;
	text-align: center;
	background-position: center;
	overflow: hidden;
	/* フォント設定 */
	font-size: 1.5rem;/* 18px */
	line-height: 24px;
	letter-spacing: 0.1rem;
}
@media screen and (max-width: 1080px) {
	.front-blog {
		display: block;
		max-width: 100%;
	}
}
.front-blog ._subtitle {
	color: #0cb4af;
}
/* グリッドレイアウト */
/*.front-blog-grid-area ~ .front-blog-text-area {*/
.front-blog-grid-area .front-blog-text-area {
	border-right: solid 1px #dddddd;
}
.front-blog-grid-area {
	display: grid;
	gap: 20px;/*40px 20px;*//* 上下 左右 */
	grid-template-columns: repeat(3, 1fr); /* 横3分割 */
	grid-auto-rows: auto;
	margin: 0 auto;
	justify-content: center;/*start; 開始位置 */
	align-items: stretch;
	padding: 36px 10px 45px 10px;
}
@media screen and (max-width: 960px) {
	.front-blog-grid-area {
		grid-template-columns: 1fr 1fr ;
	}
}
@media screen and (max-width: 768px) {
	.front-blog-grid-area {
		grid-template-columns: 1fr;
		padding: 36px 0px 45px 0px;
	}
}

/* グリッドアイテム */
.front-blog-grid-item {
	height: auto;
	display: block;
}
.front-blog-grid-item a {
	height: auto;
	height: 100%;           /* ←これが重要（枠のボーダー/ホバーも揃う） */
	display: flex;
	padding: 0px;
	/*aspect-ratio: 1 / 1;*//* アスペクト比 */
	flex-direction: column;/* flex縦方向 */
	border: 1px solid #ccc;
	overflow: hidden;
	color: black;
	background-color: white;
	border: solid 0px black;
	border-radius: 10px;
	/*
	box-shadow: 5px 5px 5px 0px #000000;*/
	/* X,Y,ぼかし,影の大きさ,色 */
}
@media screen and (max-width: 768px) {
	.front-blog-grid-item a {
		flex-direction: row;/* flex横方向 */
		padding: 0px;
		border: 1px #000 solid;
	}
}
/* ホバー設定 */
@media screen and (min-width: 768px) {
	.front-blog-grid-item:hover {
		box-shadow: 0 0 20px rgba(0,0,0,1.0);/* <length> | <length> | <length> | <length> | <color> */
		z-index: 1;
		transition: 0.5s;
	}
}
/* サムネイル設定 */
.front-blog-grid-item img {
	width: 100%;
	display: block;
	margin: 0 auto;
	aspect-ratio: 4 /3;/* 画像の表示用アスペクト比(画像のアスペクト比ではない) */
	object-fit:cover;/* 画像のアスペクト比維持 */
	/*border: solid 1px #dddddd;*/
	overflow: hidden;
}
@media screen and (max-width: 768px) {
	.front-blog-grid-item img {
		width: 50%;
		margin: 0;
		aspect-ratio: 1 /1;/* 画像の表示用アスペクト比(画像のアスペクト比ではない) */
	}
}
@media screen and (min-width: 768px) {
	.front-blog-grid-item:hover img {
		transform:scale(1.1);
		transition: 0.3s;
	}
}
/* テキストエリア */
.front-blog-text-area {
	flex: 1;
	/*flex: 1 1 auto;*/        /* 追加　余白を埋める */
	flex-direction: column;
	display: flex;
	/*align-items: center;*//* 横中央配置 */
	/*justify-content: center;*//* 必要なら縦中央も */
	/*height: 120px;*//* 任意の高さ */
	min-height: 120px; /* 追加 */
	padding: 10px;
	text-align: center;
	background-color: rgba(255,255,255,1);
	z-index: 1;
}

@media screen and (max-width: 768px) {
	.front-blog-text-area {
		height: 100%;
		aspect-ratio: 1 / 1;
		height: auto;          /* 自然に伸縮 */
		aspect-ratio: auto;
	}
}
.front-blog-post-days {
	font-size:15px;
	text-align: left;
	padding: 5px;
	color: #9e6e0f;
}
.front-blog-post-title {
	font-size:16px;
	text-align: left;
	padding: 5px;
}

/*--------------------------------------------------------------
!BLOG - アーカイブ用(表示数とページャー以外、基本的にフロントと同じにする、シングルにも使いまわし可)
--------------------------------------------------------------*/
#archive-blog {
	display: block;
	overflow: hidden;
	margin-top: 0px;
}
.archive-blog {
	display: block;
	width: 100%;
	max-width: var(--width-main-wrap);
	height:auto;
	margin: 0 auto;
	text-align: center;
	/*background-color: white;*/
	/*
	background: linear-gradient(
		to right,
		rgba(255,255,255,1) calc(100% / 2),
		rgba(255,255,255,0) calc(100% / 2)
	);
	*/
	/*background-image : url(../img/bg-section1.png);*/
	background-position: center;
	overflow: hidden;
	
	/* フォント設定 */
	font-size: 1.5rem;/* 18px */
	line-height: 24px;
	letter-spacing: 0.1rem;
}
@media screen and (max-width: 1080px) {
	.archive-blog {
		display: block;
		max-width: 100%;
	}
}

/* グリッドレイアウト */
.archive-blog-grid-area {
	display: grid;
	padding-top: 36px;
	gap: 5px;/*40px 20px;*//* 上下 左右 */
	grid-template-columns: 1fr 1fr 1fr;/*repeat(auto-fit, 700px);*/
	/*grid-template-columns: repeat(auto-fit, 339px);*/
	/*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
	grid-auto-rows: auto;/*425px;*/
	margin: 0 auto;
	justify-content: center;
	justify-items: center;/*start; 開始位置 */
	align-items: center;
}
@media screen and (max-width: 1400px) {
	.archive-blog-grid-area {
		grid-template-columns: 1fr 1fr 1fr ;
	}
}
@media screen and (max-width: 1080px) {
	.archive-blog-grid-area {
		max-width: 100%;
		grid-template-columns: 1fr 1fr 1fr ;
	}
}
@media screen and (max-width: 768px) {
	.archive-blog-grid-area {
		grid-template-columns: 1fr 1fr ;
		gap: 10px 1px;
		padding-left: 0px;
		padding-right: 0px;
	}
}
@media screen and (max-width: 480px) {
	.archive-blog-grid-area {
		grid-template-columns: 1fr;
		gap: 10px 1px;
		padding-left: 0px;
		padding-right: 0px;
	}
}

/* グリッドアイテム */
.archive-blog-grid-item {
	width: 100%;
	padding: 0px;
	line-height: 1.2;
	color: black;
	background-color: white;
	border: solid 1px black;
	/*border-radius: 10px;*/
	/*box-shadow: 2px 2px 2px 2px #000000;*/
	/* アスペクト比 */
	aspect-ratio: 1 / 1.1;
	overflow: hidden;
}
@media screen and (max-width: 768px) {
	.archive-blog-grid-item {
		padding: 0px;
		aspect-ratio: 1 / 1;
		border: 1px #000 solid;
	}
}
@media screen and (max-width: 580px) {
	.archive-blog-grid-item {
		padding: 0px;
		aspect-ratio: 1 / 1.05;
		border: 1px #000 solid;
	}
}
@media screen and (max-width: 480px) {
	.archive-blog-grid-item {
		padding: 0px;
		aspect-ratio: 1 / 0.95;
		border: 1px #000 solid;
	}
}

/* ホバー設定 */
.archive-blog-grid-item:hover {
	box-shadow: 0 0 20px rgba(0,0,0,1.0);/* <length> | <length> | <length> | <length> | <color> */
	z-index: 1;
	transition: 0.5s;
}
/* サムネイル設定 */
.archive-blog-grid-item img {
	width: 100%;
	margin: 0 auto;
	/* 画像の表示用アスペクト比(画像のアスペクト比ではない) */
	aspect-ratio: 4 /3;
	/* 画像のアスペクト比維持 */
	object-fit:cover;
	/*border: solid 1px #dddddd;*/
	overflow: hidden;
}
.archive-blog-grid-item:hover img {
	transform:scale(1.1);
	transition: 0.3s;
}

.archive-blog-text-area {
	position: relative;
	background-color: rgba(255,255,255,1);
	z-index: 1;
	/*
		border-left: solid 1px #dddddd;
	border-right: solid 1px #dddddd;
	border-bottom: solid 1px #dddddd;
	*/
}

.archive-blog-grid-area ~ .archive-blog-text-area {
	border-right: solid 1px #dddddd;
}
.archive-blog-post-days {
	padding: 2px 10px;
	font-size:12px;
	text-align: left;
	color: #9e6e0f;/*orange;*/
}
.archive-blog-post-title {
	text-align: left;
	padding: 8px 10px;
	font-size:14px;
	line-height: 20px;
}
@media screen and (max-width: 768px) {
	.archive-blog-post-title {
		font-size:14px;
		line-height: 20px;
	}
}
.archive-blog-title {
	display: flex;
	text-align: left;
	justify-content: center;/*start; 開始位置 */
	justify-items: center;
	align-items: center;
}
/*--------------------------------------------------------------
BLOG - シングル用
--------------------------------------------------------------*/

/*--------------------------------------------------------------
GALLERY - アーカイブ用
--------------------------------------------------------------*/
#archive-gallery {
	overflow: hidden;
	max-width: var(--width-main-wrap);
	height: auto;
	margin: 0 auto;
	padding: var(--padding-post-def);/* 上右下左 */
	background-color: #DDDDDD;
	/*background-image : url(../img/footer-top.png);*/
	/*background-position: center;*/
	/*background-position: top;*/
}
#archive-gallery .bottom-space {
	height: 60px;
}
/* グリッドレイアウト */
.grid-area-gallery {
	display: grid;
	/* max-width: 幅はこれの親divに依存; */
	gap: 10px;
	grid-template-columns: repeat(auto-fit, 240px);/* grid-itemのwidth */
	/*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
	grid-auto-rows: auto;
	margin: 0 auto;
	justify-content: center;/*start; 開始位置 */
	justify-items: center;/*start;*/
	align-items: center;
}
/* レスポンシブ設定 */
/*
@media screen and (max-width: 768px) {
	.grid-area-gallery {
	}
}
*/
/* グリッドアイテム */
.grid-item-gallery {
	width: 240px;
	height: 172px;
	padding: 5px;
	line-height: 1.2;
	background-color: #FFFFFF;
	border: solid 1px #000000;
	/*border-radius: 10px;*/
	box-shadow: 0px 0px 0px 0px #000000;
}
.grid-item-gallery img {
	width: 100%;
	height: 160px;
	margin: 0 auto;
	object-fit:cover;
}


/*--------------------------------------------------------------
汎用：1カラムレイアウト
--------------------------------------------------------------*/
/* 基本幅用 */
.wrap-1column {
	position: relative;
	overflow: hidden;
	max-width: var(--width-max-wrap);
	height: auto;
	margin: 0 auto;
    padding: var(--default-padding);
}
/* 幅1000px用 */
.wrap-1column-1000 {
	overflow: hidden;
	max-width: var(--width-1000-wrap);
	height: auto;
	margin: 0 auto;
    padding: var(--default-padding);
}
/* 幅800px用 */
.wrap-1column-800 {
	overflow: hidden;
	max-width: var(--width-800-wrap);
	height: auto;
	margin: 0 auto;
    padding: var(--default-padding);
}

.wrap-1column-pad0 {
	overflow: hidden;
	max-width: var(--width-main-wrap);
	height: auto;
	margin: 0 auto;
    padding: 0;
}

/*--------------------------------------------------------------
1カラムレイアウト サイトマップ用
--------------------------------------------------------------*/
.wrap-1column-sitemap {
	overflow: hidden;
	max-width: var(--width-600-wrap);
	height: auto;
	margin: 0 auto;
    padding: var(--default-padding);

}
@media screen and (min-width: 768px) {
	.wrap-1column-sitemap ul {
		padding-left: 200px;
	}
}
@media screen and (max-width: 768px) {
	.wrap-1column-sitemap ul {
		width: 100%;
		padding-left: 50px;
	}
}
/* サイトマップ用 */
.sitemap {
	width: 80%;
	margin: 0 auto;
	text-align: left;
	font-size: 1.8rem;
	line-height: 3rem;
}
@media screen and (min-width: 768px) {
.sitemap {
	display: flex;
	width: 80%;
	margin: 0 auto;
	text-align: left;
	font-size: 1.8rem;
	line-height: 3rem;
	flex-wrap: wrap;
	list-style-type: none;
}
.sitemap li {
	background-color: #008080;
	color: white;
	margin: 5px;
	width: calc(50% - 10px);
	padding: 0 10px;
}
.sitemap li a {
	display: block;
	width: 100%;
}
}
/*--------------------------------------------------------------
2カラムレイアウト
--------------------------------------------------------------*/
.wrap-2column {
	display: var(--display-2column);
	overflow: hidden;
	max-width: var(--width-max-wrap);
	padding: 0px;
	margin: 0 auto;
	justify-content: center;/*start; 開始位置 */
	/*justify-items: center;*//*start;*/
	/*align-items: center;*/
}

/* 2カラムを等分で使う時、左右のカラムに設定する */
.nitoubun-2column {
	width:		var(--width-nitoubun-2column);
	padding:	var(--default-padding);
	text-align:	center;
}

/*--------------------------------------------------------------
グリッドレイアウト
投稿タイプの一覧表示で、よく使用している 

--使い方--
<div class="grid-area">
	<div class="grid-item"></div>
	<div class="grid-item"></div>
	<div class="grid-item"></div>
</div>
パラメータは適宜調整すること
--------------------------------------------------------------*/
/*--------------------------------------------------------------
投稿記事(single.php関係)
--------------------------------------------------------------*/
.news a {
    display: inline-block;
}
.single_next {
    text-align: left;                   /* 文章を左寄せする(※) */
    float: left;                        /* 左端に寄せて、後続を右側へ回り込ませる */
}
.single_previous {
    text-align: right;                  /* 文章を右寄せする */
    margin-right: 2%;
}
.cat_title {
    list-style: none;
    color: #FFFFFF;
    background: #BC8F8F;
    padding: 0 4px;
    /*border-radius: 10px;*/ 
}

.news_title {
    font-size:1.4em;
}
@media only screen and (max-width: 960px) {
    .news_title {
        font-size:1.2em;
    }
}
/*--------------------------------------------------------------
プライバシーポリシー
--------------------------------------------------------------*/
.privacy-section {
	margin-top: 45px;
}
/*--------------------------------------------------------------
汎用
--------------------------------------------------------------*/
.text-align-left-center {/* PC時は左揃え、スマホ時は中央揃えにするclass */
    text-align: var(--text-align-left-center);
}
.text-align-center-left {/* PC時は中央揃え、スマホ時は左揃えにするclass */
    text-align: var(--text-align-center-left);
}



/*--------------------------------------------------------------
ページネーション用
--------------------------------------------------------------*/
/* page-numbersはカテゴリで使うページャー用 */
/*
.page-numbers {
	list-style: none;
}
*/
/*
.page-numbers li {
}
*/
.pager {
	margin-top: 24px;
	text-align: center;
}
.pager li {
	display: inline-block;
	color: black;
	padding: 4px 4px;
}
.pager a {
	color: #ffffff;
}
.pagination {
	clear: both;
	padding: 20px 0;
	position: relative;
	font-size: 14px;
	line-height: 14px;
	text-align: center;
	justify-content: center;
}
.pagination-box {
	display: inline-block;
}
.pagination span,
.pagination a {
	display: block;
	float: left;
	margin: 2px 2px 2px 0;
	padding: 10px 15px 10px 15px;
	text-decoration: none;
	width: auto;
	color: black;
	background: #ffffff;
	border: solid 1px  black;
}
.pagination a:hover{
	color: white;
	background: black;
}
.pagination .current{
	padding: 10px 15px 10px 15px;
	color: white;
	background: black;
}
@media only screen and (max-width: 413px) {
	.pagination {
		font-size: 12px;
		line-height: 12px;
	}
	.pagination span, .pagination a {
		padding: 8px 10px 8px 10px;
	}
	.pagination .current{
		padding: 8px 10px 8px 10px;
	}
}

#hideMe {
	-moz-animation: cssAnimation 0s ease-in 5s forwards;
	/* Firefox */
	-webkit-animation: cssAnimation 0s ease-in 5s forwards;
	/* Safari and Chrome */
	-o-animation: cssAnimation 0s ease-in 5s forwards;
	/* Opera */
	animation: cssAnimation 0s ease-in 5s forwards;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}
@keyframes cssAnimation {
	to {
		width:0;
		height:0;
		overflow:hidden;
	}
}
@-webkit-keyframes cssAnimation {
	to {
		width:0;
		height:0;
		visibility:hidden;
	}
}

/*--------------------------------------------------------------
横並び(Side by side)<ul><li>リスト
--------------------------------------------------------------*/
.yokonarabi-list {
	display: var(--display-flex-block);/*flex;*/
}
.yokonarabi-list img{
	vertical-align: middle
}
.yokonarabi-list li{
	display: block;
	list-style: none;
	width: 150px;
	padding: 2px;
	margin: 5px;
	background-color: rgba(0,0,0,0);
}

.table-list {
	display: table;
	border-spacing: 15px;
}
.table-list li {
	display: table-cell;
	list-style: none;
	padding: 2px;
	margin: 5px;
    vertical-align:center;
	background-color: rgba(0,0,0,0);
}
@media screen and (min-width: 960px) {
    .yokonarabi-list span{
	    display: none;
    }
}
@media screen and (max-width: 960px) {
    .yokonarabi-list span{
	    width: 150px;
        display: inline-block;
    }
}
@media screen and (max-width: 768px) {
	.table-list li {
		display: block;
		height: auto;
	}
}

/*==================================================
アニメーション表示用
===================================*/
/*--------------------------------------------------------------
ふわっ
--------------------------------------------------------------*/
/* fadeUp */
.fadeUp{
	animation-name:fadeUpAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
	opacity:0;
}

@keyframes fadeUpAnime{
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger{
    opacity: 0;
}

