@charset "UTF-8";
/*
【補足１】 CSS設計について
PRECSSに準じて設計
https://precss.io/ja/
*/
/*
【補足2】ブレイクポイントについて
Bootstrap4参照に３段階ーのスマフォ対応のスポンシブ構築
PC（大型ディスプレイ）1230px以上（ly_cont_innerのmax-widthの値で調整）
タブレット・PC 768px以上
スマートフォン　767px以下／575以下／最小320px
@media ( max-width : 1229px ){}
@media ( max-width : 767px ){}
@media ( max-width : 575px ){}
@media (min-width: 576px) {}
@media (min-width: 768px) {}
@media (min-width: 1230px) {}

*/
/*
【補足3】ローマ字変換について
日本語をローマ字変換する際は、「外務省ヘボン式」を採用
https://tools.m-bsys.com/original_tooles/romaji.php
*/
/* ==========================================================================
  Base ベース
========================================================================== */
/* 変数  IEは使用不可*/
:root{
	--bgColor:#f9f6ea;
	--bgColor__rgba8:rgba(249, 246, 234, 0.8);
	--txtColor:#4b4b4b;
	--txtColor2:#5f5f5f;
	--accentColor:#f18c1a/*オレンジ*/;
	--accentColor2:#94c76b/*黄緑*/;
	--accentColor3:#fcd7ad/*薄いオレンジ*/;
	--windowsMaxW:1170px;
	--txtlineHeight:1.8;
	--txtlineHeightLarge:2.2;
	--listlineHeight:1.6;
	--borderR: 0.8em;
}
/* 要素*/
body{
	font-family: YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
	background-color: var(--bgColor);
	background-image: url(../img/bg_body.png);
	background-repeat: repeat;
	color:var(--txtColor);
}
a { transition:.3s; text-decoration: none;}
/* ==========================================================================
  Layout　レイアウト
========================================================================== */
/* ly_cont
========================================================================== */
.ly_cont_wrapper{
	padding-top: calc(80px + (15px * 3));
	margin-top: calc(-80px + (-15px * 3));
}
	@media ( max-width : 991px ){
		.ly_cont_wrapper{
			padding-top: calc(80px + (14px * 3));
			margin-top: calc(-80px + (-14px * 3));
		}
	}
	@media ( max-width : 767px ){
		.ly_cont_wrapper{
			padding-top: calc(58px + (12px * 3) );
			margin-top: calc(-58px + (-12px * 3) );
		}
	}
	@media ( max-width : 575px ){
		.ly_cont_wrapper{
			padding-top: calc(50px + (12px * 3));
			margin-top: calc(-50px + (-12px * 3));
		}
	}
	@media ( max-width : 512px ){
		.ly_cont_wrapper{
			padding-top: calc(50px + (12px * 4.5));
			margin-top: calc(-50px + (-12px * 4.5));
		}
	}
/*ly_cont,ly_cont_inner*/
.ly_cont{
	width: 100%;
	padding-top: 90px;
	padding-right: 30px;
	padding-bottom: 90px;
	padding-left: 30px;
}
.ly_cont_inner{
	width: 100%;
	max-width: var(--windowsMaxW);
	margin-right: auto;
	margin-left: auto;
	font-size: 1.6rem;
	line-height: 1.43;/*23px*/
}
.ly_cont_inner.ly_cont_inner__wLg{
	width: 88.034%;
	max-width: 1030px;
}
.ly_cont_inner.ly_cont_inner__wMd{
	width: 74.358%;
	max-width: 970px;
}
.ly_cont_inner.ly_cont_inner__wSm{
	width: 82.905%;
	max-width: 870px;
}
.ly_cont_inner p{
	margin-bottom: 2em;
}
.ly_cont_inner > *:last-child{
	margin-bottom: 0;
}
	@media ( max-width : 1229px ){
		.ly_cont{
			padding-top: 50px;
			padding-bottom: 50px;
		}
	}
	@media ( max-width : 991px ){
		.ly_cont_inner{
			font-size: 1.5rem;
		}
	}
	@media ( max-width : 767px ){
		.ly_cont{
			padding-top: 30px;
			padding-bottom: 30px;
		}
		.ly_cont_inner{
			font-size: 1.4rem;
		}
		.ly_cont_inner.ly_cont_inner__wLg,
		.ly_cont_inner.ly_cont_inner__wMd,
		.ly_cont_inner.ly_cont_inner__wSm{
			width: 100%;
		}
	}
	@media ( max-width : 575px ){
		.ly_cont{
			padding-right: 18px;
			padding-left: 18px;
		}
		.ly_cont_inner.ly_cont_inner__wLg,
		.ly_cont_inner.ly_cont_inner__wMd,
		.ly_cont_inner.ly_cont_inner__wSm{
			width: 100%;
		}
	}
/* ly_cont2
========================================================================== */
.ly_cont2{
	padding: 2.5em 2.5em;
	margin-bottom: 3em;
	background-color: rgba(255, 255, 255, .4);
	border:2px solid var(--accentColor2);
	border-radius: var(--borderR);
}
.ly_cont2_inner > *:last-child{
	margin-bottom: 0;
}
	@media ( max-width : 991px ){
		.ly_cont2{
			padding: 2em;
		}
	}
	@media ( max-width : 575px ){
		.ly_cont2{
			padding: 2em 1.5em;
		}
	}
/* ly_header
========================================================================== */
.ly_header_wrapper{
	position: fixed;
	width: 100%;
	z-index: 998;
	transition: all 0.5s ease;
}
.ly_header{
	width: 100%;
	max-width: var(--windowsMaxW);
	margin-right: auto;
	margin-left: auto;
}
.ly_header_wrapper.js_fixedH{
	background-color: var(--bgColor__rgba8);
}
/* ly_main
========================================================================== */
.ly_main{
	padding-top: calc(150px + (19px * 3));
	margin-bottom: 5em;
}
	@media ( max-width : 991px ){
		.ly_main{
			padding-top: calc(150px + (18px * 3));
		}
	}
	@media ( max-width : 767px ){
		.ly_main{
			padding-top: calc(110px + (14px * 3));
		}
	}
	@media ( max-width : 575px ){
		.ly_main{
			padding-top: calc(90px + (14px * 3));
		}
	}
	@media ( max-width : 512px ){
		.ly_main{
			padding-top: calc(90px + (14px * 4.5));
		}
	}
/* ly_header
========================================================================== */
.ly_footer_wrapper{
	width: 100%;
	padding-top: 50px;
	padding-bottom: 50px;
	background-image: url(../img/bg_footer.png);
	background-repeat: repeat;
}
.ly_footer{
	width: 100%;
	max-width: var(--windowsMaxW);
	margin-right: auto;
	margin-left: auto;
}
	@media ( max-width : 991px ){
		.ly_footer_wrapper{
			padding-top: 40px;
			padding-bottom: 40px;
		}
	}
	@media ( max-width : 767px ){
		.ly_footer_wrapper{
			padding-top: 30px;
			padding-bottom: 30px;
		}
	}
/* ==========================================================================
  Javascript Modules jsモジュyール
========================================================================== */
/* js_splash
========================================================================== */
/*
js_splash
*/
#js_splash {
  /*fixedで全面に固定*/
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	background-color: var(--bgColor);
	background-image: url(../img/bg_body.png);
	background-repeat: repeat;
	text-align:center;
}
.js_splash_logo {
	position: absolute;
	max-width: 400px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
/*画面遷移の後現れるコンテンツ設定*/
.js_splash_container{
	opacity: 0;/*はじめは透過0に*/
  position: relative;
  z-index: 1;
}

/*bodyにappearクラスがついたら出現*/
body.appear .js_splash_container{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay:0.2s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}
/* 動き
========================================================================== */
/*
その場でふわっと
*/
.js_fadeIn{
	animation-name:fadeInAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
	animation-delay: 0.2s;
	opacity:0;
}
@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.js_fadeInTrigger{
	opacity: 0;
}
/*
アニメーションスタートの遅延時間
*/
.js_delayTime05{ animation-delay: 0.5s; }
.js_delayTime1{ animation-delay: 1s; }
.js_delayTime15{ animation-delay: 1.5s; }
.js_delayTime2{ animation-delay: 2s; }
.js_delayTime25{ animation-delay: 2.5s; }
.js_delayTime3{ animation-delay: 3s; }
.js_delayTime35{ animation-delay: 3.5s; }
.js_delayTime4{ animation-delay: 4s; }
.js_delayTime45{ animation-delay: 4.5s; }
.js_delayTime5{ animation-delay: 5s; }
.js_delayTime55{ animation-delay: 5.5s; }
/* 遅延なし　*/
	@media ( max-width : 767px ){
		.js_noneDelayTime_onlySm{
			animation-delay: 0.2s !important;
		}
	}
	@media ( max-width : 575px ){
		.js_noneDelayTime_onlyXS{
			animation-delay: 0.2s !important;
		}
	}
/* js_telLink
========================================================================== */
.js_telLink a{
	color: inherit;
}
/* js_objectFitImg
========================================================================== */
.js_objectFitImg_cover{
	object-fit: cover;
	font-family: 'object-fit: cover;'
}
.js_objectFitImg_coverLeftTop{
	object-fit: cover;
	object-position: left top;
	font-family: 'object-fit: cover; object-position: left top;'
}
.js_objectFitImg_coverCenterTop{
	object-fit: cover;
	object-position: center top;
	font-family: 'object-fit: cover; object-position: center top;'
}
/* js_picGallery（575px以下の時はスライドショー）
========================================================================== */
.js_picGallery li img{
	border-radius: var(--borderR);
}
/*ドットナビゲーションの設定*/
.js_picGallery{
	position: relative;
}
.js_picGallery .slick-dots {
	position: absolute;
	bottom:8px;
	width: 100%;
	padding: 0 10px;
	margin: 0;
  text-align:center;
}
.js_picGallery .slick-dots li {
  display:inline-block;
	margin:3px 5px;
}
.js_picGallery .slick-dots button {
	cursor: pointer;
  outline: none;
  width:9px;/*ドットボタンのサイズ*/
  height:9px;/*ドットボタンのサイズ*/
	padding: 0;
  display:block;
	border:none;
  border-radius:50%;
  background:#fff;/*ドットボタンの色*/
	color: transparent;
}
.js_picGallery .slick-dots .slick-active button{
  background:#000;/*ドットボタンの現在地表示の色*/
}
/*576px 以上の時の３カラム並び*/
@media (min-width: 576px) {
	.js_picGallery{
		display: flex;
		justify-content: space-around;
		width: 100%;
		margin-right: auto;
		margin-left: auto;
	}
	.js_picGallery li{
		width: 30%;
	}
	.js_picGallery li img{
		opacity: .9;
	}
}
/* ==========================================================================
  Element Modules エレメントモジュール
========================================================================== */
/* 見出し
========================================================================== */
/* el_lv1Heading */
/* el_lv2Heading */
.el_lv2Heading{
	display: table;
	position: relative;
	padding-left: 2em;
	padding-right: 1em;
	margin-right: auto;
	margin-bottom: 1.7em;
	margin-left: auto;
	font-size: 2.2em;
	letter-spacing: 0.1em;
}
.el_lv2Heading.el_lv2Heading__letterSp0{
	letter-spacing: 0em;
}
.el_lv2Heading::before{
	content: "";
	position: absolute;
	left:0;
	top:50%;
	transform: translateY(-50%);
	width: 1.5em;
	height: 2px;
	background-color: var(--accentColor);
}
	@media ( max-width : 991px ){
		.el_lv2Heading{
			font-size: 2em;
		}
	}
	@media ( max-width : 767px ) {
		.el_lv2Heading{
			font-size: 1.7em;
			margin-bottom: 1em;
		}
	}
/*
el_lv3Heading
*/
.el_lv3Heading{
	margin-bottom: 1em;
	font-size: 1.8em;
	text-align: center;
}
.el_lv3Heading::first-letter{
	color:var(--accentColor);
	font-size: 1.1em;
}
.el_lv3Heading_sub{
	display: block;
	padding-top: 0.5em;
	color:var(--accentColor2);
	font-size: 1.2rem;
	font-weight: bold;
	letter-spacing: 0.5em;
}
.el_lv3Heading_sub.el_lv3Heading_sub__ls02{
	letter-spacing: 0.2em;
}
	@media ( max-width : 991px ){
		.el_lv3Heading{
			font-size: 1.7em;
		}
	}
	@media ( max-width : 767px ){
		.el_lv3Heading{
			font-size: 1.5em;
		}
	}
/* ボタン
========================================================================== */
/*
el_roundedBtn
*/
.el_roundedBtn{
	display: inline-block;
	padding: 0.72em 2.3em 0.61em 2.3em;
	background-color: var(--accentColor2);
	border-radius: 1.444em;
	color:#fff;
	font-size: 1.125em;/*16px -> 18px*/
	font-weight: bold;
	font-family: YuGothic, "Yu Gothic", Verdana, Meiryo, sans-serif;
	text-align: center;
}
.el_roundedBtn:hover{
	background-color: var(--accentColor);
	color:#fff;
}
.el_roundedBtn.el_roundedBtn__active{
	background-color:  #69bde2;
	color:#fff;
}
.el_roundedBtn.el_roundedBtn__active::after{
	content: none;
}
	@media ( max-width : 575px ){
		.el_roundedBtn{
			padding: 0.72em 1.5em 0.61em 1.5em;
			font-size: 1em;
		}
	}
/* マーカー線
========================================================================== */
.el_markerLine{
	display: inline;
	padding-right: 3px;
	padding-bottom: 4px;
	padding-left: 3px;
	background: linear-gradient(transparent 60%, #fcd7ad 0%);
}
/* ==========================================================================
  Block Modules　ブロックモジュール
========================================================================== */
/* bl_header
========================================================================== */
/*
Logo
*/
.bl_headerLogo{
	display: flex;
	align-items: center;
	width: 300px;
	height: 150px;
	margin-right: auto;
	margin-left: auto;
	transition: all 0.5s ease;
}
.ly_header_wrapper.js_fixedH .bl_headerLogo{
	width: 200px;
	height: 80px;
}
	@media ( max-width : 767px ){
		.bl_headerLogo{
			width: 250px;
			height: 110px;
		}
		.ly_header_wrapper.js_fixedH .bl_headerLogo{
			width: 166px;
			height: 58px;
		}
	}
	@media ( max-width : 575px ){
		.bl_headerLogo{
			width: 200px;
			height: 90px;
		}
		.ly_header_wrapper.js_fixedH .bl_headerLogo{
			width: 133px;
			height: 50px;
		}
	}
/*
Nav
*/
.bl_headerNav{
	height:3em;
	font-size: 1.9rem;
	line-height: 1.0;
}
.bl_headerNav ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.bl_headerNav ul li{
	position: relative;
	padding-right: 0.5em;
	padding-left: 0.5em;
}
.bl_headerNav ul li::after{
	content: "";
	display: block;
	position: absolute;
	top:50%;
	transform: translateY(-50%);
	right:0;
	width: 1px;
	height: 0.7em;
	background-color: var(--txtColor2);
}
.bl_headerNav ul li:last-child::after{
	display: none;
}
.bl_headerNav ul li a{
	display: block;
	padding-top: 0.5em;
	padding-right: 1.5em;
	padding-bottom: 0.5em;
	padding-left: 1.5em;
	color:var(--txtColor2);
	transition: all 0.5s ease;
	/*font-weight: bold !important;
	font-family: YuGothic, "Yu Gothic", Verdana, Meiryo, sans-serif !important;*/
}
.ly_header_wrapper.js_fixedH .bl_headerNav{
	font-size: 1.5rem;
}
.bl_headerNav ul li a:hover{
	color:var(--accentColor);
}
.bl_headerNav ul li a.bl_headerNav_lsLarge{
	letter-spacing: 0.2em;
	transition: all 0.3s ease;
}
	@media ( max-width : 991px ){
		.bl_headerNav{
			font-size: 1.8rem;
		}
		.bl_headerNav ul li a{
			padding-right:0.6em;
			padding-left: 0.6em;
		}
		.ly_header_wrapper.js_fixedH .bl_headerNav{
			font-size: 1.4rem;
		}
	}
	@media ( max-width : 767px ){
		.bl_headerNav{
			font-size: 1.4rem;
		}
		.bl_headerNav ul li{
			padding-right: 0.21em;/*3px*/
			padding-left: 0.21em;/*3px*/
		}
		.bl_headerNav ul li:last-child{
			border-right: none;
		}
		.bl_headerNav ul li a{
			padding-top: 0.42em;/*6px*/
			padding-right: 0.42em;/*6px*/
			padding-bottom: 0.42em;/*6px*/
			padding-left: 0.42em;/*6px*/
		}
		.ly_header_wrapper.js_fixedH .bl_headerNav{
			font-size: 1.2rem;
		}
	}
	@media ( max-width : 575px ){
		.bl_headerNav ul li a.bl_headerNav_lsLarge{
			letter-spacing: 0;
		}
	}
	@media ( max-width : 512px ){
		.bl_headerNav{
			width: 300px;
			height: 4.5em;
			margin-right: auto;
			margin-left: auto;
		}
	}
/* bl_footer
========================================================================== */
/*
Logo
*/
.bl_footerLogo{
	display: flex;
	align-items: center;
	width: 200px;
	margin-bottom: 30px;
	margin-right: auto;
	margin-left: auto;
}
	@media ( max-width : 991px ){
		.bl_footerLogo{
			margin-bottom: 25px;
		}
	}
	@media ( max-width : 767px ){
		.bl_footerLogo{
			width: 166px;
			margin-bottom: 20px;
		}
	}
	@media ( max-width : 575px ){
		.bl_footerLogo{
			width: 133px;
			margin-bottom: 15px;
		}
	}
/*
Nav
*/
.bl_footerNav{
	margin-bottom: 40px;
	font-size: 1.8rem;
	line-height: 1.0;
}
.bl_footerNav ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.bl_footerNav ul li{
	position: relative;
	padding-right: 0.5em;
	padding-left: 0.5em;
}
.bl_footerNav ul li::after{
	content: "";
	display: block;
	position: absolute;
	top:50%;
	transform: translateY(-50%);
	right:0;
	width: 1px;
	height: 0.7em;
	background-color: var(--txtColor2);
}
.bl_footerNav ul li:last-child::after{
	display: none;
}
.bl_footerNav ul li a{
	display: block;
	padding-top: 0.5em;
	padding-right: 1.5em;
	padding-bottom: 0.5em;
	padding-left: 1.5em;
	color:var(--txtColor2);
	font-size: 1.5rem;
}
.bl_footerNav ul li a:hover{
	color:#fff;
	opacity: .5;
}
.bl_footerrNav ul li a.bl_footerNav_lsLarge{
	letter-spacing: 0.2em;
	transition: all 0.3s ease;
}
	@media ( max-width : 991px ){
		.bl_footerNav{
			margin-bottom: 30px;
			font-size: 1.7rem;
		}
		.bl_footerNav ul li a{
			font-size: 1.4rem;
		}
	}
	@media ( max-width : 767px ){
		.bl_footerNav{
			font-size: 1.4rem;
			margin-bottom: 20px;
		}
		.bl_footerNav ul li{
			padding-right: 0.21em;/*3px*/
			padding-left: 0.21em;/*3px*/
		}
		.bl_footerNav ul li:last-child{
			border-right: none;
		}
		.bl_footerNav ul li a{
			padding-top: 0.42em;/*6px*/
			padding-right: 0.42em;/*6px*/
			padding-bottom: 0.42em;/*6px*/
			padding-left: 0.42em;/*6px*/
		}
		.bl_footerNav ul li a{
			font-size: 1.2rem;
		}
	}
	@media ( max-width : 575px ){
		.bl_footerNav ul li a.bl_footerNav_lsLarge{
			letter-spacing: 0;
		}
	}
	@media ( max-width : 512px ){
		.bl_footerNav{
			width: 300px;
			margin-right: auto;
			margin-left: auto;
		}
	}
/*
Copy
*/
.bl_footerCopy{
	color:var(--txtColor2);
	font-size: 1.2rem;
	text-align: center;
}
	@media ( max-width : 991px ){
		.bl_footerCopy{
			font-size: 1.1rem;
		}
	}
	@media ( max-width : 767px ){
		.bl_footerCopy{
			font-size: 1.0rem;
		}
	}
/* bl_pic
========================================================================== */
.bl_pic{
	width: 100%;
	margin-right: auto;
	margin-left: auto;

}
.bl_pic img{
	border-radius: var(--borderR);
	opacity: .9;
}
/* bl_card
========================================================================== */
.bl_card_ttl{
	font-size: 1.1em;
}
.bl_card_ttl.bl_card_ttl__numList{
	position: relative;
	padding-top: 0.5em;
	padding-left: 2em;
	min-height: 6em;
}
.bl_card_ttl_num{
	position: absolute;
	top:0;
	left:0;
	font-size: 2em;
	color:var(--accentColor);
}
.bl_card_imgWrapper{
	margin-bottom: 1.5em;
}
.bl_card_imgWrapper img{
	border-radius: var(--borderR);
	opacity: .9;
}
.bl_card_body{
	padding-right: 0.5em;
	padding-left: 0.5em;
}
.bl_card_body p{
	line-height: var(--txtlineHeight);
}
	@media ( max-width : 880px ){
		.bl_card_ttl.bl_card_ttl__numList{
			position: relative;
			min-height: 3.5em;
			margin-bottom: 1em;
		}
	}
/*
Unit
*/
.bl_cardUnit{
	display: flex;
	justify-content: space-between;
}
.bl_cardUnit.bl_cardUnit__3col > .bl_card{
	width: 30%;
}
	@media ( max-width : 880px ){
		.bl_cardUnit{
			display: block;
		}
		.bl_cardUnit > *:last-child{
			margin-bottom: 0;
		}
		.bl_cardUnit.bl_cardUnit__3col > .bl_card{
			width: 100%;
			max-width: calc(var(--windowsMaxW) * 0.4);
			margin-right: auto;
			margin-bottom: 2em;
			margin-left: auto;
			padding-right: 0.3em;
			padding-left: 0.3em;
			padding-bottom: 1em;
			border-bottom: 2px solid var(--accentColor2);
		}
		.bl_cardUnit.bl_cardUnit__3col > .bl_card:last-of-type{
			border-bottom: 0;
			padding-bottom: 0;
			margin-bottom: 0;
		}
	}
/* bl_bulletList
========================================================================== */
.bl_bulletList > *:last-child {
  margin-bottom: 0;
}
.bl_bulletList > li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 1em;
	line-height: var(--txtlineHeight);
}
.bl_bulletList > li::before {
  content: '・';
  position: absolute;
  top: 0;
  left: 0;
}
/*
__green
*/
.bl_bulletList.bl_bulletList__green > li{
}
.bl_bulletList.bl_bulletList__green > li::before{
	content: "";
	display: block;
	top:0.45em;
	width: 0.5em;
	height: 0.5em;
	border-radius: 50%;
	background-color: var(--accentColor2);
}
/* ==========================================================================
  Unique　ユニーク
========================================================================== */
/* un_ichatch
========================================================================== */
.un_ichatchMovie{
	width: 100%;
}
.un_ichatchMovie.un_ichatchMovie__sm{
	display: none;
}
	@media ( max-width : 575px ){
		.un_ichatchMovie.un_ichatchMovie__pc{
			display: none;
		}
		.un_ichatchMovie.un_ichatchMovie__sm{
			display: block;
		}
	}
/* 設立趣旨　un_concept
========================================================================== */
/*
Body
*/
.un_conceptBody{
	width: 96%;
	margin-right: auto;
	margin-left: auto;
	padding-top: 4em;
	padding-bottom: 4em;
	line-height: var(--txtlineHeightLarge);
}
.un_conceptBody > *:last-child{
	margin-bottom: 0;
}
	@media ( max-width : 575px ){
		.un_conceptBody{
			padding-top: 2em;
			padding-bottom: 2em;
		}
	}
/*
conceptImgWrapper
*/
@media ( max-width : 575px ){
	.un_conceptImgWrapper{
		width: 80%;
		max-width: calc(var(--windowsMaxW) * 0.3);
		margin-right: auto;
		margin-left: auto;
	}
}
/*
Lv1Heading
*/
.un_conceptLv1Heading {
	margin-bottom: 1em;
	font-size: 1.3em;
	text-align: center;
}
/* 私たちについて un_about
========================================================================== */
/*
Team
*/
.un_aboutTeam{
	display: flex;
	justify-content: space-between;
}
.un_aboutTeam_imgWrapper{
	order:2;
	width: 30%;
}
.un_aboutTeam_imgWrapper img{
	border-radius: var(--borderR);
	opacity: .9;
	width: 100%;
	height: 100%;
}
.un_aboutTeam_body{
	order:1;
	width: calc(100% - 30% - 5%);
}
.un_aboutTeam_body  p{
	line-height: var(--txtlineHeight);
}
.un_aboutTeam_body > *:last-child{
	margin-bottom: 0;
}
	@media ( max-width : 575px ){
		.un_aboutTeam{
			display: block;
		}
		.un_aboutTeam_imgWrapper{
			position: relative;
			width: 100%;
			padding-top: 70%;
			margin-bottom: 1.5em;
		}
		.un_aboutTeam_imgWrapper img{
			position: absolute;
			top:0;
			left:0;
		}
		.un_aboutTeam_body{
			width: 100%;
		}
	}
/*
HistoryList
*/
.un_aboutHistoryList{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.un_aboutHistoryList dt,
.un_aboutHistoryList dd{
	line-height: var(--listlineHeight);
	margin-bottom: 1em;
}
.un_aboutHistoryList dt{
	width: 5em;
	color: var(--accentColor2);
}
.un_aboutHistoryList dt span{
	font-size: 1.3em;
}
.un_aboutHistoryList dd{
	width: calc(100% - 6em);
	padding-top: 0.3em;
}
	@media ( max-width : 575px ){
		.un_aboutHistoryList dt{
			width: 4.5em;
		}
		.un_aboutHistoryList dd{
			width: calc(100% - 5em);
		}
	}
/* 活動内容 un_service
========================================================================== */
/*
Cont
*/
.un_serviceCont p{
	line-height: var(--txtlineHeight);
}
.un_serviceCont p{
	display: table;
	margin-right: auto;
	margin-left: auto;
}
/*
Lv1Heading
*/
.un_serviceLv1Heading{
	display: table;
	margin-right: auto;
	margin-bottom: 1em;
	margin-left: auto;
	font-size: 1.8em;
}
	@media ( max-width : 991px ){
		.un_serviceLv1Heading{
			font-size: 1.7em;
		}
	}
	@media ( max-width : 757px ){
		.un_serviceLv1Heading{
			font-size: 1.4em;
		}
	}
/*
Lv2Heading
*/
.un_serviceLv2Heading{
	display: table;
	position: relative;
	padding: 0 1.2em;
	margin-right: auto;
	margin-bottom: 0.8em;
	margin-left: auto;
	color:var(--bgColor);
	font-size: 1.4em;
	font-weight: bold;
	letter-spacing: 0.1em;
}
.un_serviceLv2Heading::before,
.un_serviceLv2Heading::after{
	content:"";
	display: block;
	position: absolute;
	top:50%;
	transform: translateY(-50%);
	height: 2px;
	width: .8em;
	background-color: var(--bgColor);
}
.un_serviceLv2Heading::before{
	left:0;
}
.un_serviceLv2Heading::after{
	right:0;
}
/*
Box
*/
.un_serviceBox{
	max-width: 700px;
	padding: 2em;
	margin-right: auto;
	margin-bottom: 3em;
	margin-left: auto;
	background-color:var(--accentColor2);
	border-radius: var(--borderR);

}
/*
ImgWrapper
*/
.un_serviceImgWrapper{
	margin-bottom: 3em;
}
	@media ( max-width : 575px ){
		.un_serviceImgWrapper{
			width: 80%;
			max-width: calc(var(--windowsMaxW) * 0.3);
			margin-right: auto;
			margin-left: auto;
		}
	}
/*
ImgWrapper2
*/
.un_serviceImgWrapper2{
	margin-bottom: 3em;
}
.un_serviceImgWrapper2 img{
	border-radius: var(--borderR);
	opacity: .9;
}
@media ( max-width : 575px ){
	.un_serviceImgWrapper2{
		position: relative;
		width: 100%;
		padding-top: 65%;
	}
	.un_serviceImgWrapper2 img{
		position: absolute;
		top:0;
		left:0;
		height: 100%;
	}
}
/* お問い合わせ　un_contact
========================================================================== */
/*
Form
*/
.un_contactForm{
	width: 90%;
	max-width: 800px;
	margin-right: auto;
	margin-bottom: 4em;
	margin-left: auto;
}
.un_contactForm dl{
	display: flex;
	flex-wrap: wrap;
}
.un_contactForm dl dt{
	width: 230px;
	margin-bottom:2.5em;
	font-size: 1.125em;
	align-self: center;
}
.un_contactForm dl dt.un_contactForm_dtUnder{
	width: 180px;
}
.un_contactForm dl dt span.un_contactForm_list{
	position: relative;
	padding-left: 1em;
}
.un_contactForm dl dt span.un_contactForm_list:before{
	content: "";
	display: block;
	position: absolute;
	top:0.3em;
	width: 0.5em;
	height: 0.5em;
	border-radius: 50%;
	background-color: var(--accentColor2);
}
.un_contactForm dl dt.message{
	align-self: flex-start;
	padding-top: 0.5em;
}
.un_contactForm dl dd{
	width: calc(100% - 230px);
	padding-left: 1em;
	margin-bottom:2.5em;
}
.un_contactForm dl dd.un_contactForm_ddUnder{
	width: calc(100% - 180px);
}
.un_contactForm_must{
	position: relative;
	padding-right: 54px;
}
.un_contactForm_must::after{
	content:"必須";
	position: absolute;
	right:0;
	top:50%;
	transform: translateY(-50%);
	display: inline-block;
	width: 46px;
	height: 20px;
	background-color: var(--accentColor);
	border-radius: 10px;
	color:#fff;
	font-size: 1.1rem;
	line-height: 20px;
	letter-spacing: 0.2em;
	text-align: center;
}
.un_contactForm,
.un_contactForm input,
.un_contactForm option,
.un_contactForm textarea{
	font-size: 1em;
	line-height: 1.5;
	color:var(--txtColor);
	font-family: YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
	font-weight: normal;
}
.un_contactForm input,
.un_contactForm option,
.un_contactForm textarea{
	padding:1em 1.25em;
	background-color: #fff;
	border: none;
	border-radius: 0.62em;
}
.un_contactForm_text{
	width: 508px;
	max-width: 100%;
}
.un_contactForm_text2{
	width: 330px;
	max-width: 100%;
}
.un_contactForm_number{
	width: 130px;
	margin-right: 0.3em;
	margin-left: 0.3em;
}
.un_contactForm textarea{
	width: 700px;
	max-width: 100%;
}
.un_contactForm_birthdayblock{
	display: inline-block;
}
.un_contactForm_btnWrapper{
	display: table;
	margin-right: auto;
	padding-top: 1em;
	margin-left: auto;
}
.un_contactForm input.un_contactForm_btn{
	width: 10em;
	max-width: calc(42% - 0.5em);
	height: 2.3em;
	padding: 0;
	margin-right: 0.5em;
	background-color: #808080;
	color:#fff;
	font-size: 1.25em;
	line-height: 2.3em;
}
.un_contactForm input.un_contactForm_btn.un_contactForm_btn__submit{
	width: 13em;
	max-width: calc(56% - 0.5em);
	margin-right: 0em;
	background-color: var(--accentColor);
}
.un_contactForm input.un_contactForm_btn,
.un_contactForm input.un_contactForm_btn.un_contactForm_btn__submit{
	cursor:pointer;
}
.un_contactForm input.un_contactForm_btn:hover:hover,
.un_contactForm input.un_contactForm_btn.un_contactForm_btn__submit:hover{
	opacity:.7;
}
	@media ( max-width : 991px ){
		.un_contactForm dl dt{
			width: 210px;
		}
		.un_contactForm dl dt.un_contactForm_dtUnder{
			width: 180px;
		}
		.un_contactForm dl dd{
			width: calc(100% - 210px);
		}
		.un_contactForm dl dd.un_contactForm_ddUnder{
			width: calc(100% - 180px);
		}
	}
	@media ( max-width : 575px ){
		.un_contactForm{
			width: 100%;
		}
		.un_contactForm dl{
			display: block;
		}
		.un_contactForm dl dt{
			width: 100%;
			padding-right: 0.5em;
			padding-left: 0.5em;
			margin-bottom: 0.5em;
			font-size: 1.125em;
		}
		.un_contactForm dl dd{
			width: 100%;
			padding-right: 1em;
			margin-bottom: 1.5em;
		}
		.un_contactForm dl dt.un_contactForm_dtUnder,
		.un_contactForm dl dd.un_contactForm_ddUnder{
			width: 100%;
		}
		.un_contactForm_birthdayblock{
			padding-top: 0.5em;
		}
		.un_contactForm input.un_contactForm_btn{
			font-size: 1em;
		}
	}
/*
Privacy
*/
.un_contactPrivacy{
	width: 90%;
	max-width: 800px;
	margin-top: 1em;
	margin-right: auto;
	margin-bottom: 3em;
	margin-left: auto;
	padding:1em  1.5em;
	border:2px dotted var(--accentColor2);
	background-color: rgba(255, 255, 255, .4);
	border-radius: var(--borderR);
	line-height: var(--txtlineHeight);
}
.un_contactPrivacy > *:last-child{
	margin-bottom: 0;
}
.un_contactPrivacy h3{
	margin-bottom: 0.5em;
	color:var(--accentColor2);
	font-size: 1.1em;
	font-weight: bold;
	text-align: center;
}
	@media ( max-width : 575px ){
		.un_contactPrivacy{
			margin-top: 0;
			width: 100%;
		}
	}
/*
Message
*/
.un_contactMessage{
	width: 90%;
	max-width: 800px;
	margin-right: auto;
	margin-left: auto;
	padding: 1.5em;
	border-radius: var(--borderR);
	background-color: var(--accentColor2);
	color: var(--txtColor);
	line-height: var(--txtlineHeight);
}
.un_contactMessage > *:last-child{
	margin-bottom: 0;
}
	@media ( max-width : 575px ){
		.un_contactMessage{
			width: 100%;
		}
	}
/*
ThanksTxt
*/
.un_contactThanksTxt{
	text-align: center;
	font-size: 1.1em;
	line-height: var(--txtlineHeightLarge);
}
	@media ( max-width : 575px ){
		.un_contactThanksTxt{
			font-size: 1em;
			line-height: var(--txtlineHeight);
		}
	}
/*
el_googleForm
*/
.el_googleForm_wrapper{
	padding: 15px 10px;
	width: 100%;
	max-width: 670px;
	background-color: #fff;
	border-radius: 3px;
	margin-right: auto;
	margin-left: auto;
}
.el_googleForm{
	position: relative;
    width: 100%;
    overflow-y: scroll;
    padding-top: 150%;
}
.el_googleForm iframe{
	position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}
	@media (min-width: 768px){
		.el_googleForm_wrapper{
			padding: 20px;
		}
		.el_googleForm{
			padding-top: 170%;
		}
	}
/* ==========================================================================
  Helpers　ヘルパー
========================================================================== */
/* 色
========================================================================== */
.hp_accentColor{
	color:var(--accentColor);
}
.hp_accentColor2{
	color:var(--accentColor2);
}
/* display
========================================================================== */
.hp_dn { display: none !important; }
.hp_db { display: block !important; }
.hp_di { display: inline !important; }
.hp_dib { display: inline-block !important; }
.hp_dtb { display: table !important; }
.hp_ditb { display: inline-table !important; }
.hp_dtbc { display: table-cell !important; }
.hp_dtbr { display: table-row !important; }
/* width
========================================================================== */
.hp_wd100p { width: 100% !important; }
/* padding
========================================================================== */
.hp_p0 { padding: 0 !important; }
/*
-top
*/
.hp_pt0 { padding-top: 0 !important; }

/*
-right
*/
.hp_pr0 { padding-right: 0 !important;}

/*
-bottom
*/
.hp_pb0 { padding-bottom: 0 !important; }

/*
-left
*/
.hp_pl0 { padding-left: 0 !important; }

/* margin
========================================================================== */
.hp_m0 { margin: 0 !important; }
.hp_centering {
  display: table;
  margin-right: auto;
  margin-left: auto;
}
/*
-top
*/
.hp_MT5 { margin-top: -5px !important; }
.hp_mt0 { margin-top: 0 !important; }
/*
-right
*/
.hp_mr0 { margin-right: 0 !important; }
/*
-bttom
*/
.hp_mb0 { margin-bottom: 0 !important; }
/*
-left
*/
.hp_ml0 { margin-left: 0 !important; }
/*
space
*/
.hp_lgSpace { margin-bottom: 100px !important; }
.hp_mdSpace { margin-bottom: 60px !important; }
.hp_smSpace { margin-bottom: 30px !important; }
@media screen and (max-width: 767px) {
  .hp_lgSpace { margin-bottom: 80px !important; }
	.hp_mdSpace { margin-bottom: 40px !important; }
	.hp_smSpace { margin-bottom: 20px !important; }
}
/* font
========================================================================== */
.hp_fwb {
  font-weight: bold !important;
	font-family: YuGothic, "Yu Gothic", Verdana, Meiryo, sans-serif !important;
}
.hp_note{
	padding-left:1em !important;
	text-indent:-1em !important;
}
.hp_fEnglishUpper {text-transform: uppercase !important;}
/* text-align
========================================================================== */
.hp_tal { text-align: left !important; }
.hp_tac { text-align: center !important; }
.hp_tar { text-align: right !important; }
.hp_taj { text-align: justify !important; }
/* vertical-align
========================================================================== */
.hp_vam { vertical-align: middle !important; }
/* 表示
========================================================================== */
/*
PCのみ（992px以上表示）
*/
@media screen and (max-width: 991px) {
  .lg_only { display: none !important; }
}
/*
タブレットとPC（768px以上表示）
*/
@media screen and (max-width: 767px) {
  .mdLg_only { display: none !important; }
}
/*
タブレットとスマフォ（991以下表示）
*/
.smMd_only { display: none !important; }
@media screen and (max-width: 991px) {
  .smMd_only { display: block !important; }
}
/*
スマフォのみ
*/
.sm_only { display: none !important; }

@media screen and (max-width: 767px) {
  .sm_only { display: block !important; }
}
/*
575px以下のみ
*/
.xs_only { display: none !important; }
@media screen and (max-width: 575px) {
  .xs_only { display: block !important; }
}
