@charset "utf-8";

@import url("all.min.css");

/*================================================
 *  CSSリセット
 ================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;font-weight:normal;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{/*border-collapse:collapse;*/border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}

a {text-decoration:none}

/*@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300&display=swap');*/
html {
	scroll-behavior: smooth;
}
/*================================================
 *  一般・共通設定
 ================================================*/
body {
	font-size:15px;
	color:#000000;
	/*font-family:"NotoSerifCJKjp",EB Garamond,Yu Mincho,YuMincho,Hiragino Mincho ProN,HGS明朝E,HG明朝E,serif;*/ /*日本語版明朝*/
	font-family:"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif; /*日本語版ゴシック*/
	/*font-family: Simhei,MS UI Gothic,Hei,sans-serif;*/ /*中国語版*/
	line-height:1.6;
	background:#fff;
	counter-reset: number 0; /* number のカウンタを 0 にセット */
}

p {line-height:1.6;}
/*================================================
 *  スクロールダウン
 ================================================*/
/*スクロールダウン全体の場所*/
.scrolldown1{
	/*描画位置※位置は適宜調整してください*/
	position:absolute;
	left:50%;
	bottom:10%;
	/*全体の高さ*/
	height:60px;
	z-index:99;
}
/*Scrollテキストの描写*/
.scrolldown1 span{
	/*描画位置*/
	position: absolute;
	left:-20px;
	top: -20px;
	/*テキストの形状*/
	color: #fff;
	font-size: 0.9rem;
	letter-spacing: 0.05em;
	font-weight:bold;
}
/* 線の描写 */
.scrolldown1::after{
	content: "";
	/*描画位置*/
	position: absolute;
	top: 0;
	/*線の形状*/
	width: 3px;
	height: 80px;
	background: #fff;
	/*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 1.4s ease-in-out infinite;
	opacity:0;
}
/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:40px;
		opacity: 1;
	}
	100%{
		height:0;
		top:80px;
		opacity: 0;
	}
}

/*=============================================
矢印付下線リンク
=============================================*/
.more_btn {
	text-align: right;
	margin: 1em 2em;
}
/* 下線矢印リンク */
.under_arrow {
	position: relative;
	display: inline-block;
	padding: 0 2em .2em .2em;
	text-decoration: none;
	font-weight: bold;
	color: #333;
}
/* 下線＋矢印 */
.under_arrow::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 10px;
	border-bottom: 1px solid currentColor;
	border-right: 1px solid currentColor;
	transform: skewX(50deg) translateX(0);
	transition: transform .3s ease;
}
/* ホバー・フォーカス */
.under_arrow:hover::before,
.under_arrow:focus-visible::before {
	transform: skewX(50deg) translateX(5%);
}

/*================================================
 *  ナビゲーションのためのCSS
 ================================================*/
/*main_viewの高さ分スクロールしたら追加されるclassList*/
.resize {background:#ffffff;}
.resize nav li a {color:#000000;}
.resize nav li a:hover {color:#00a5e6;}
.resize > .logo a {color:#000000;}
.resize > .logo a::before {
	content: "";
	display: inline-block;
	width: 26px;
	height: 26px;
	background: url(../images/logo.png) no-repeat;
	background-size: contain;
	margin-right: 10px;
	vertical-align: middle;
	margin-top:-6px;	
}
/*下層ページでスクロール前の設定*/
header.sub_page > #header {background:#ffffff;}
header.sub_page > #header > nav li a {color:#000000;}
header.sub_page > #header > nav li a:hover {color:#00a5e6;}
header.sub_page > #header > .logo a {color:#000000;}
header.sub_page > #header > .logo a::before {
	content: "";
	display: inline-block;
	width: 26px;
	height: 26px;
	background: url(../images/logo.png) no-repeat;
	background-size: contain;
	margin-right: 10px;
	vertical-align: middle;
	margin-top:-6px;	
}
header.sub_page > #header > nav li li a:hover {color:#ffffff;}
/*固定*/
header {
	position:fixed;
	z-index:10;
	width:100%;
}
#header{
	/*background:#1E262D;*/
	width:100%;
	position:relative;
}
#header:after{
	content:"";
	clear:both;
	display:block;
}
.search{
	float:right;
	padding:10px;
}
nav > input{
	border:none;
	padding:5px;
	border-radius:20px;
}
.logo{
	float:left;
	padding:14px 0 10px;
	width:25%;
}
.logo a{
	font-size:20px;
	display:block;
	padding:0 0 0 0;
	margin-left:5%;
	color:#ffffff;
	vertical-align: middle;
	font-weight:bold;
}
.logo a::before {
	content: "";
	display: inline-block;
	width: 26px;
	height: 26px;
	background: url(../images/logo02.png) no-repeat;
	background-size: contain;
	margin-right: 10px;
	vertical-align: middle;
	margin-top:-6px;
}
nav{
	float:right;
	margin-right:1.5%;
}
nav > ul{
	float:left;
	position:relative;
}
nav li{
	list-style:none;
	float:left;
}
nav .dropdown{
	position:relative;
}
nav li a{
	float:left;
	padding:22px 10px;
	color:#ffffff;
}
nav li a:hover{
	/*background:rgba(221,36,37,0.8);*/
	border-bottom:2px solid #00a5e6;
	color:#00a5e6;
}
nav li ul{
	display:none;
}
nav li:hover ul{
	display:inline;
}
nav li li{
	float:none;
}
nav li.dropdown ul{
	position:absolute;
	left:0%;
	/*left:-47%;*/
	top:100%;
	/*background:#fff;*/
	background:rgba(255,255,255,0.95);
	padding:0px 0;
	border-bottom:1px solid #00a5e6;
	border-top:1px solid #00a5e6;
}
nav li:last-child.dropdown ul {
	right:0%;
	left:-85%;
}
nav li.dropdown li{
	white-space:nowrap;
}
nav li.dropdown li a{
	padding:10px 10px;
	font-size:13px;
	min-width:170px;
}
nav .mega-dropdown{
	width:100%;
	position:absolute;
	top:100%;
	left:-25%;
	background:#fff;
	overflow:hidden;
	padding:10px 10px;
	border-bottom:3px solid #34495e;
	border-top:3px solid #34495e;
}
nav li li a{
	float:none;
	color:#555555;
	display:block;
	padding:8px 10px;
	/*border-radius:3px;*/
	background:#ffffff;
	font-size:14px;
}
nav li li a:hover, 
.resize nav li li a:hover{
	color:#fff;
	/*background:rgba(54,60,98,1);*/
	background:#00a5e6;
}
.mega-col{
	width:31%;
	float:left;
	margin:1% 1%;
}
#menu-icon{
	position:absolute;
	right:0;
	top:50%;
	margin-top:-25px;
	margin-right:30px;
	display:none;
}
#menu-icon span{
	border:2px solid #f5f5f5;
	width:30px;
	margin-bottom:5px;
	display:block;
	-webkit-transition:all .2s;
	transition:all .1s;
}
.resize > #menu-icon span {border-color:#000000;}
@media only screen and (max-width: 1170px) {
	nav li a {
		padding:10px 15px;
	}
}
@media only screen and (min-width: 960px) {
	nav{
		display:block;!important
	}
}
@media only screen and (max-width: 959px) {
	nav{
		display:none;
		width:100%;
		clear:both;
		float:none;
		max-height:100vh;
		overflow-y:scroll;
		background:rgba(247,247,247,0.7);
		color:#ffffff;
	}
	#menu-icon{
		display:inline;
		top:45px;
		cursor:pointer
	}
	#menu-icon.active .first{
		transform:rotate(45deg);
		-webkit-transform:rotate(45deg);
		margin-top:10px
	}
	#menu-icon.active .second{
		transform:rotate(135deg);
		-webkit-transform:rotate(135deg);
		position:relative;
		top:-9px;
	}
	#menu-icon.active .third{
		display:none
	}
	.search{float:none}
	.search input{width:100%}
	nav{padding:10px}
	nav ul{float:none}
	nav li{float:none}
	nav ul li a{
		float:none;
		padding:8px;
		display:block;
	}
	#header nav ul ul{
		display:block;
		position:static;
		background:none;
		border:none;
		padding:0;
	}
	#header nav a{
		color:#555555;
		padding:8px;
	}
	#header nav a:hover{
		background:#fff;
		color:#00a5e6;
		border-radius:3px;
	}
	#header nav ul li li a:before{
		content:"▶ ";
	}
	.mega-col{
		width:100%;
	}
	.logo a {font-size:18px;}
	.logo {width:70%;}
}
.ancr {
	/*padding-top: 80px;
	margin-top: -80px;*/
	scroll-margin-top: 80px;
}
/*================================================
 *  コンテンツレイアウトのためのCSS
 ================================================*/
#container{
	background:#fff;
	padding:30px 0px;
	text-align: center;
	/*clear:both;*/
}

#contents {
	overflow:hidden;
	width:100%;
	margin:0px auto;
	background:#fff;
}
/* スクロールバーを考慮して20px大きいサイズで切り替え */
@media screen and (max-width:1280px) {
	#contents {
		width:100%;
	}
}

.wide_inner {
	/*position:relative;*/
	width:100%;
	margin:0 auto;
	padding:0 1%;
}

.inner {
	/*position:relative;*/
	width:1400px;
	margin:0 auto;
	padding:50px 0px;
}
@media screen and (max-width:1399px) {
	.inner {
		width:100%;
	}
}

h1 {
	position:fixed;
	color:#008889;
	/*font-weight:bold;*/
	padding:0px 0px 0px .5%;
	/*background:rgba(0,0,0,0.5);*/
	/*font-family: 'Bungee Outline', cursive;*/
	font-family: 'Bungee Hairline', cursive;
}
h2 {
	position: relative;
	/*padding-top: 45px;*/
	/*border-bottom: 1px solid rgba(5,62,98,1);*/
	display:inline-block;
	margin:0 auto 30px;
	text-align:center;
}
h2 > span {
	margin:0;
	font-size:15px;
	position:absolute;
	top:28px;
	left: 50%;
	transform: translateX(-50%);
	white-space:nowrap;
}
h2::before {
	content: "";
	position: absolute;
	top:80px;
	/*left:-35px;*/
	z-index:0;
	width: 60px;
	height: 15px;
	left:50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color:#00a5e6;
	border-radius: 2px;
}
.bg_logo_red div.inner > h2::before {
	border-color:#ffffff;
}

/*#service > h2::before {
	white-space: pre;
	content: "our  Service \a content";
	position: absolute;
	top: 0%;
	left: 80%;
	color: rgba(150,150,150,0.2);
	font-size: 35px;
	transform: rotate( 9deg );
	font-family: 'Homemade Apple', cursive;
	z-index: 0;
}
#achieve > h2::before {
	white-space: pre;
	content: "Examples of \a Eevents";
	position: absolute;
	top: 0%;
	left: 0%;
	color: rgba(150,150,150,0.2);
	font-size: 35px;
	transform: rotate( -9deg );
	font-family: 'Homemade Apple', cursive;
	z-index: 0;
}
#info > h2::before {
	white-space: pre;
	content: "Notice from \a our company";
	position: absolute;
	top: 0%;
	left: 80%;
	color: rgba(150,150,150,0.2);
	font-size: 35px;
	transform: rotate( 9deg );
	font-family: 'Homemade Apple', cursive;
	z-index: 0;
}*/

h3 {
	position: relative;
	display: block;
	margin-bottom: 1em;
}
h3:before {
	content: '';
	position: absolute;
	bottom: -15px;
	display: inline-block;
	width: 60px;
	height: 5px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: black;
	border-radius: 2px;
}

@media screen and (max-width:768px) {
	h1 {
		font-size:1.5em;
			padding:5px 0px 0px 2%;
	}
}

table.ta1 {
	width:100%;
	text-align:left;
	border-collapse:collapse;
}
table.ta1 th {
	width:20%;
	padding:5px;
	border:solid 1px #bbbbbb;
	vertical-align:middle;
}
table.ta1 td {
	/*width:80%;*/
	padding:5px;
	border:solid 1px #bbbbbb;
	vertical-align:middle;
}

/*角丸テーブル*/
.tbl_rad {
	border-radius: 5px;
	border-spacing: 0;
	border: none;
	border-left: 1px solid #999;
	border-top: 1px solid #999;
}
.tbl_rad tr th {
	background:#dddddd;
	text-align:center;
	vertical-align:middle;
	width:10%;
	padding:5px;
}
.tbl_rad tr td {
	text-align:left;
	padding:5px;
	background:#ffffff;
}
.tbl_rad tr > * {
	padding: 5px 5px;
	border: none;
	border-right: 1px solid #999;
	border-bottom: 1px solid #999;
}
.tbl_rad tr:first-child > *:first-child {
	border-radius: 5px 0 0 0;
}
.tbl_rad tr:first-child > *:last-child {
	border-radius: 0 5px 0 0;
}
.tbl_rad tr:last-child > *:first-child {
	border-radius: 0 0 0 5px;
}
.tbl_rad tr:last-child > *:last-child {
	border-radius: 0 0 5px 0;
}

/* table 横線のみ */
.tbl_h_line {
	border-spacing:0;
}
.tbl_h_line tr {
	/*border-bottom:1px solid #555555;*/
}
.tbl_h_line tr:nth-child(1) th {
	border-top:1px #555555 solid;
} 
.tbl_h_line tr:nth-child(1) td {
	border-top:1px #555555 solid;
}
.tbl_h_line th, 
.tbl_h_line td {
	padding: 7px 0 7px 5px;
	/*border:none;*/
	border-bottom:1px #555555 solid;
}
.tbl_h_line th {
	background:#f5f5f5;
}
.tbl_h_line th {
	width: 25%;
}
/* sp */
@media only screen and (max-width: 480px) {
	.tbl_h_line th, 
	.tbl_h_line td {
		width: 100%;
		display: block;
	}
	.tbl_h_line th {
		width: 100%;
	}
	.tbl_h_line td {
		padding-top: 0;
	}
}

/*画像表示：縦画像も枠内に収める*/
.img_box {
	position: relative;
	/*float:left;
	width: calc((100% - 50px) / 5);
	margin: 0 5px;
	border: solid 1px #ccc;*/
	width:100%;
	text-align:center;
}
.img_box:before {
	content:"";
	display: block;
	padding-top: 31.515151515151%; /*縦横比を4:3の場合は75%を設定（3÷4＝75%）16:9の場合は56.25%*/
}
.img_box_inner {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
.img_box_cate {
	position:absolute;
	top:0;
	right:0;
	background:rgba(0,153,153,0.7);
	/*padding:5px;*/
	text-align:center;
}
.img_box_cate .cateicon {
	color:#ffffff;
	padding:5px;
}
.img_box_new {
	position:absolute;
	top:0;
	left:0;
	background:rgba(243,152,29,0.7);
	text-align:center;
}
.img_box_new .newicon{
	color:#ffffff;
	padding:5px;
}
/*単体newアイコン*/
.new_icon {
	background:rgba(243,152,29,0.7);
	text-align:center;
	color:#ffffff;
	padding:1px 4px 0;
}

.img_box .img_box_inner a img {
	max-width:100%;
	max-height:100%;
	width:auto;
	height:auto;
}
.img_box .img_box_inner img {
	max-width:100%;
	max-height:100%;
	width:auto;
	height:auto;
}


/*タブ切り替え全体のスタイル
---------------------------------------------------------------------------*/
/*路線で探すタブ切り替え用*/
#panels section main {
	/*max-height: 0;*/
	display: none;
	/*以下省略*/
}

#panel-1-ctrl:checked ~ #panels #panel-1 main,
#panel-2-ctrl:checked ~ #panels #panel-2 main,
#panel-3-ctrl:checked ~ #panels #panel-3 main,
#panel-4-ctrl:checked ~ #panels #panel-4 main,
#panel-5-ctrl:checked ~ #panels #panel-5 main,
#panel-6-ctrl:checked ~ #panels #panel-6 main,
#panel-7-ctrl:checked ~ #panels #panel-7 main,
#panel-8-ctrl:checked ~ #panels #panel-8 main,
#panel-9-ctrl:checked ~ #panels #panel-9 main,
#panel-10-ctrl:checked ~ #panels #panel-10 main,
#panel-11-ctrl:checked ~ #panels #panel-11 main,
#panel-12-ctrl:checked ~ #panels #panel-12 main {
	/*max-height: initial;*/
	display: block;
	opacity: 1;
	padding: 0px 24px;
}

.panel-radios {
	display: none;
}

#panel-1-ctrl:checked ~ #tabs-list label.panel-label-1,
#panel-2-ctrl:checked ~ #tabs-list label.panel-label-2,
#panel-3-ctrl:checked ~ #tabs-list label.panel-label-3,
#panel-4-ctrl:checked ~ #tabs-list label.panel-label-4,
#panel-5-ctrl:checked ~ #tabs-list label.panel-label-5,
#panel-6-ctrl:checked ~ #tabs-list label.panel-label-6,
#panel-7-ctrl:checked ~ #tabs-list label.panel-label-7,
#panel-8-ctrl:checked ~ #tabs-list label.panel-label-8,
#panel-9-ctrl:checked ~ #tabs-list label.panel-label-9,
#panel-10-ctrl:checked ~ #tabs-list label.panel-label-10,
#panel-11-ctrl:checked ~ #tabs-list label.panel-label-11,
#panel-12-ctrl:checked ~ #tabs-list label.panel-label-12 {
	background: #de6426;/* マウス選択時の背景色を指定する */
	color: #ffffff; /* マウス選択時のフォント色を指定する */
}

/*その他タブ切り替え用*/
.tabs {
  margin-top: 10px;
  padding-bottom: 10px;
  background-color: #fff;
  box-shadow: 0 0 0px rgba(0, 0, 0, 0.2);
  width: 100%;
  margin: 0 auto;
}

/*タブのスタイル*/
.tabs .tab_item {
  /*width: calc(100%/3);*/
  width: calc(100%/2);
  height: 50px;
  border-bottom: 2px solid #00a5e6;
  background-color: #ffffff;
  line-height: 50px;
  font-size: 20px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}
.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 10px 0;
  clear: both;
  overflow: hidden;
}
.sentakushi {
  padding: 10px 0;
  clear: both;
  overflow: hidden;
  margin: 0 auto;
}
.tab_content input[type=checkbox],
.sentakushi input[type=checkbox],
.sentakushi input[type=radio] {
	display: none; /* チェックボックスを非表示にする */
}

.tab_content input[type="checkbox"]:checked + label,
.sentakushi input[type="checkbox"]:checked + label,
.sentakushi label + input[type="checkbox"]:checked,
.sentakushi input[type="radio"]:checked + label {
	background: #de6426;/* マウス選択時の背景色を指定する */
	color: #ffffff; /* マウス選択時のフォント色を指定する */
}
.tab_content .label:hover,
.sentakushi .label:hover {
	background-color: #E2EDF9; /* マウスオーバー時の背景色を指定する */
}
.tab_content .label,
.sentakushi .label {
	display: inline-block; /* ブロックレベル要素化する */
	float: left; /* 要素の左寄せ・回り込を指定する */
	margin: 2px 2px; /* ラベル外側の余白を指定する */
	width: 15.575757575757%; /* ラベルの横幅を指定する */
	height: 25px; /* ラベルの高さを指定する */
	text-align: center; /* テキストのセンタリングを指定する */
	line-height: 25px; /* 行の高さを指定する */
	padding-left: 0px; /* ラベル内左側の余白を指定する */
	padding-right: 0px; /* ラベル内右側の余白を指定する */
	cursor: pointer; /* マウスカーソルの形（リンクカーソル）を指定する */
	color: #b20000; /* フォントの色を指定 */
	border: 1px dotted #555555;/* ラベルの境界線を実線で指定する */
	border-radius: 3px; /* 角丸を指定する */
}
.tab_content .label_jirei,
.sentakushi .label_jirei,
.sentakushi .label_kodawari {
	display: inline-block; /* ブロックレベル要素化する */
	float: left; /* 要素の左寄せ・回り込を指定する */
	/*margin: 2px 3px;*/ /* ラベル外側の余白を指定する */
	margin:0.2% 1%;
	width: 17.8511904761%; /*1400px✕96%（col_oneのwidth）＝1344px　1344px－(1344✕10%(margin1%の5列))-10px(border1px✕左右2✕5列)＝1199.6px　1199.6px÷5列＝239.92px÷1344px＝17.8511904761%*/
	height: 25px; /* ラベルの高さを指定する */
	text-align: center; /* テキストのセンタリングを指定する */
	line-height: 25px; /* 行の高さを指定する */
	padding-left: 0px; /* ラベル内左側の余白を指定する */
	padding-right: 0px; /* ラベル内右側の余白を指定する */
	cursor: pointer; /* マウスカーソルの形（リンクカーソル）を指定する */
	color: #b20000; /* フォントの色を指定 */
	border: 1px dotted #555555;/* ラベルの境界線を実線で指定する */
	border-radius: 3px; /* 角丸を指定する */
}
.sentakushi .label_madori {
	display: inline-block; /* ブロックレベル要素化する */
	float: left; /* 要素の左寄せ・回り込を指定する */
	/*margin: 2px 3px;*/ /* ラベル外側の余白を指定する */
	margin:0.2% 1%;
	width: 12.130904761%; /*1400px✕96%（col_oneのwidth）＝1344px　1344px－(1344✕14%(margin1%の7列))-14px(border1px✕左右2✕7列)＝1141.84px　1141.84px÷7列＝163.13px÷1344px＝12.136904761%*/
	height: 25px; /* ラベルの高さを指定する */
	text-align: center; /* テキストのセンタリングを指定する */
	line-height: 25px; /* 行の高さを指定する */
	padding-left: 0px; /* ラベル内左側の余白を指定する */
	padding-right: 0px; /* ラベル内右側の余白を指定する */
	cursor: pointer; /* マウスカーソルの形（リンクカーソル）を指定する */
	color: #b20000; /* フォントの色を指定 */
	border: 1px dotted #555555;/* ラベルの境界線を実線で指定する */
	border-radius: 3px; /* 角丸を指定する */
}
.tab_content .label_jirei:hover,
.sentakushi .label_jirei:hover,
.sentakushi .label_kodawari:hover {
	background-color: #E2EDF9; /* マウスオーバー時の背景色を指定する */ 
}

/*.tab_content label input[name="info3X[]"] {

}
.tab_content label{
	width:19%;
	text-align:left;
	font-size:13px;
}*/
#main .tabs .tab_content p {
	border-bottom:1px #00a5e6 dotted;
	padding:0;
	margin:0;
}

/*選択されているタブのコンテンツのみを表示*/
#all:checked ~ #all_content,
#programming:checked ~ #programming_content,
#design:checked ~ #design_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #00a5e6;
  color: #fff;
}
@media screen and (max-width:1280px) {
	#contents .tabs .tab_content .label,
	#contents #areainfo .sentakushi .label {
		width:31.42424242424242%;
	}
	#contents .tabs .tab_content .label_jirei,
	#contents #areainfo .sentakushi .label_jirei,
	#contents #areainfo .sentakushi .label_kodawari,
	.sentakushi .label_madori {
		/*width:31.42424242424242%;*/
		width:17%;
	}
}
@media screen and (max-width:825px) {
	#contents .tabs .tab_content .label,
	#contents #areainfo .sentakushi .label {
		width:29.909090909%;
		font-size:11px;
		margin:2px 4px;
		height:20px;
		line-height:20px;
	}
	#contents .tabs .tab_content .label_jirei,
	#contents #areainfo .sentakushi .label_jirei,
	#contents #areainfo .sentakushi .label_kodawari,
	.sentakushi .label_madori {
		width:45.909090909%;
	}
}

/*================================================
 *  コンテンツ開閉-openclose.js関連
 ================================================*/
/*お知らせ*/
.srh_cond div::after {
		/*float: right;*/	/*右に回り込み*/
		margin-top: 0px;
		margin-left:1rem;
		/*font-size: 10px;*/	/*文字サイズ*/
		/*background: #00a651;*/	/*背景色*/
		/*border-radius: 50%;*/	/*角丸のサイズ*/
		/*width: 15px;*/		/*幅*/
		/*line-height: 15px;*/	/*高さ*/
		text-align: center;	/*文字をセンタリング*/
		/*border: 1px solid #dcdcdc;*/	/*枠線の幅、線種、色*/
		/*box-shadow: 1px 1px 6px rgba(0,0,0,0.1) inset;*/	/*内側への影*/
}
/*プラスアイコンの文字*/
.srh_cond div.close::after {
		content: "▼";
		color:#f26722;
}
/*マイナスアイコンの文字*/
.srh_cond div.open::after {
		content: "▲";
		color:#f26722;
}

/*================================================
 *  フォーム部品
 ================================================*/
input[type="button"],
input[type="submit"] {
	/* input要素のうちtype属性値がbuttonのものに対して装飾 */
	/*background-image: linear-gradient(0deg, #a7d9f5, #eaf6fd);*/ /* グラデーション */
	border: 1px solid #3c7fb1; /* 枠線 */
	border-radius: 0.3em;      /* 角丸 */
	padding:1px 10px 1px;
	margin-left:1rem;
	font-size:120%;
	cursor: pointer;
}
input[type="number"], 
input[type="text"], 
/*input[type="number"], */
textarea {
	/*width:100%;*/
	box-sizing:border-box;
	resize: vertical;
	padding:5px;
	border:1px #000000 solid;
	border-radius:3px;
}
input[type="checkbox"] {
	transform: scale(1.1);
}
/*input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	opacity: 1;
}*/

/*input type="number"スマホ対応用*/
.number-input {
	display: flex;
	align-items: center;
	gap: 5px;
}
.number-input button {
	font-size: 18px;
	width: 32px;
	height: 32px;
	border: 1px solid #ccc;
	border-radius: 50%;
	background: #f5f5f5;
	cursor: pointer;
}
.number-input input {
	width: 80px;
	text-align: right;
}

label {
	white-space:nowrap;
	display: inline-block;
}
select {
	padding:3px;
	border:1px #000000 solid;
	border-radius:3px;
}
.btn {
	/*background:#c2e4d2;*/
	padding:2px 15px;
	/*border-radius:3px;*/
	color:#555555;
	border-top:1px #555555 dotted;
	border-bottom: 1px #555555 dotted;
	font-size:16px;
}
/*================================================
 *  FLEXによるリスト表示
 ================================================*/
.flex {
	display: flex;
	/*justify-content: space-around;*/
	justify-content:center;
	align-items:stretch;
	flex-direction:row;
	flex-wrap: wrap;
	width:100%;
	/*margin:0 auto;*/
	/*margin:1% auto;*/
	gap:20px;
}
.flex_item_1 {
	display: flex;
	flex-direction: column;
	width:100%;
	/*margin:10px 5px;*/
	/*border:1px solid #000000;*/
}
@media screen and (max-width:768px) {
	.flex_item_1 {
		width:100%;
	}
}

.flex_item_2 {
	display: flex;
	flex-direction: column;
	width: calc((100% - 20px) /2);
	/*margin:10px 5px;*/
	/*border:1px solid #000000;*/
}
#info > .flex_item_2_1 {
		display: flex;
	flex-direction: column;
	width: calc(100% - 140px - 20px);
}
#info > .flex_item_2_2 {
		display: flex;
	flex-direction: column;
	width: 140px;
}
.flex_item_2_1 {
	display: flex;
	flex-direction: column;
	width: calc(65% - 20px);
}
.flex_item_2_2 {
	display: flex;
	flex-direction: column;
	width: 35%;
}
@media screen and (max-width:768px) {
	.flex_item_2 {
		width: 100%;
	}
	#info > .flex_item_2_1,
	.flex_item_2_1 {
	width:100%;
	}
	#info > .flex_item_2_2,
	.flex_item_2_2 {
		width:100%;
	}
}

.flex_item_3 {
	display: flex;
	flex-direction: column;
	width: calc((100% - 20px * 2) / 3);
	/*margin:10px 5px;*/
	/*border:1px solid #000000;*/
}
@media screen and (max-width:768px) {
	.flex_item_3 {
		width: 100%;
	}
}

.flex_item_4 {
	display: flex;
	flex-direction: column;
	width: calc((100% - 20px * 3) / 4);
	/*margin:10px 5px;*/
	/*border:1px solid #000000;*/
}
@media screen and (max-width:768px) {
	.flex_item_4 {
		/*width: calc((100% / 2) - 10px);*/
		width: 100%;
	}
}
.flex_item_4_2 {
	display: flex;
	flex-direction: column;
	width: calc((100% - 20px * 3) / 4);
	/*margin:10px 5px;*/
	/*border:1px solid #000000;*/
}
@media screen and (max-width:768px) {
	.flex_item_4_2 {
		width: calc((100% - 20px) / 2);
		/*width: 100%;*/
	}
}
.flex_item_5 {
	display: flex;
	flex-direction: column;
	width: calc((100% - 20px * 4) / 5);
	/*margin:10px 5px;*/
	/*border:1px solid #000000;*/
}
@media screen and (max-width:768px) {
	.flex_item_5 {
		width: calc((100% - 20px) / 2);
	}
}

.flex_item_6 {
	display: flex;
	flex-direction: column;
	width: calc((100% - 20px * 5) / 6);
	/*margin:10px 5px;*/
	/*border:1px solid #000000;*/
}

/*スタッフ写真*/
.flex_item_6 .flex_item_img_circle,
.flex_item_img_circle {
	width: 180px;	/*写真の幅*/
	height:180px;	/*写真の高さ*/
	border-radius: 50%;	/*円形にする*/
	overflow: hidden;
	border: 3px solid var(--light-color);	/*枠線。色はtheme.cssのlight-colorを読み込みます。柔らかい印象に。*/
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);	/*ボックスの影。右へ、下へ、ぼかす量。0,0,0は黒のことで0.08は色が8%出た状態。ふんわりした影。*/
	margin:10px auto;
}
.flex_item_6 .flex_item_img_circle img,
.flex_item_img_circle img {
	width: 100%;
	height: 100%;
	object-fit: cover;		/*コンテナいっぱいにカバー、余分な部分はカット*/
	object-position: center;	/*中央部分を表示*/
}

@media screen and (max-width:834px) {
	.flex_item_6 {
		width: calc((100% - 20px) / 2);
	}
	.flex_item_6 .flex_item_img_circle,
	.flex_item_img_circle {
		width: 120px;	/*写真の幅*/
		height:120px;	/*写真の高さ*/
	}
	.flex_item_6 .ttl_box .box-title {
		font-size:14px;
	}
}
.flex_item_7 {
	display: flex;
	flex-direction: column;
	width: calc((100% - 20px * 6) / 7);
	/*margin:10px 5px;*/
	/*border:1px solid #000000;*/
}

@media screen and (max-width:768px) {
	.flex_item_7 {
		width: calc((100% - 20px) / 2);
	}
}

.flex_item_8 {
	display: flex;
	flex-direction: column;
	width: calc((100% - 20px * 7) / 8);
	/*margin:10px 5px;*/
	/*border:1px solid #000000;*/
}
@media screen and (max-width:768px) {
	.flex_item_8 {
		width: calc((100% - 20px) / 2);
	}
}
.flex_item_img,
.flex_item_img_fit {
	/*margin-bottom:10px;*/
	/*width:100%;*/
	/*background:rgba(200,200,200,0.6);*/
	/*height:56.25%;*/
	/*height:auto;*/
	/*height:100%;*/
	position: relative;
	overflow: hidden;
	padding-top:56.25%;
}
.img_onlabel_tp_lt { /*イメージ画像に表示 tp:上 lt:左*/
	position:absolute;
	top:0;
	left:0;
}
.img_onlabel_tp_rt { /*イメージ画像に表示 tp:上 rt:右*/
	position:absolute;
	top:0;
	right:0;
}
.img_onlabel_bt_lt { /*イメージ画像に表示 bt:下 lt:左*/
	position:absolute;
	bottom:0;
	left:0;
}
.img_onlabel_bt_rt { /*イメージ画像に表示 bt:下 rt:右*/
	position:absolute;
	bottom:0;
	right:0;
}
.img_onlabel_bt_100 { /*イメージ画像のbottomに幅いっぱい表示*/
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
}
.img_onlabel_bt_100 > a {
	display:block;
}
.img_onlabel_half { /*イメージ画像の端に余白をとって左半分のみ表示*/
	position:absolute;
	top:10px;
	left:10px;
	width:calc(50% - 20px);
	height:calc(100% - 20px);
}
.img_onlabel_w70 { /*イメージ画像の端に余白をとって左70%幅のみ表示*/
	position:absolute;
	top:10px;
	left:10px;
	width:calc(70% - 20px);
	height:calc(100% - 20px);
}
@media screen and (max-width:768px) {
	.img_onlabel_half, 
	.img_onlabel_w70 {
		width:calc(100% - 20px);
	}
}

.flex_item_img43 {
	position: relative;
	overflow: hidden;
	padding-top:75%;
	/*width:100%;
	height:100%;*/
}
.flex_item_banner {
	position: relative;
	overflow: hidden;
	padding-top:40%;
	/*width:100%;
	height:100%;*/
}
.flex_item_img > img, 
.flex_item_img43 > img, 
.flex_item_banner > img, 
.flex_item_img > a img, 
.flex_item_img43 > a img,
.flex_item_banner > a img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit:cover;
}
.flex_item_img_fit > img,
.flex_item_img_fit > a img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit:scale-down;
}
.flex_item_title {
	width:100%;
	text-align:center;
	font-weight:bold;
	padding:5px 0 0;
}
.flex_item_text {
	margin:0px 0px 0px;
	padding:0 5px;
}
.flex_item_btn {
	display: block;
	text-align: center;
	/*width: 100%;
	max-width: 200px;*/
	margin-right: auto;
	margin-left: auto;
	padding: 5px 20px;
	color: #fff;
	background-color: #00a5e6;
	border-radius: 25px;
	transition: opacity 0.3s ease;
	margin-top: auto;
	margin-bottom:10px;
}
.flex_item_btn:hover {
	text-decoration: none;
	background:rgba(157,142,135,0.3);
	color:#272e69;
}

/*====================================
	FLEX_2列_交互に重ねる
	=====================================*/
ul.overlap {
	padding: 0px;
	width:100%;
	margin:50px auto 0;
}
/*li行にflex設定*/
ul.overlap li {
	display: flex;
	/*align-items:center;*/
	margin-bottom:2%;
}

/*偶数行は表示順リバース*/
ul.overlap li:nth-child(even) {
	flex-direction: row-reverse;
	list-style-type: none;
	/*background:rgba(0,77,179,1);*/
}
/*奇数行*/
ul.overlap li:nth-child(odd) {
	list-style-type: none;
	/*background:rgba(0,77,179,1);*/
}
/*画像*/
ul.overlap li figure {
	margin: 0px;
	width:51%;
}
ul.overlap li figure > img {
	vertical-align: bottom;
	width:100%;
}
/*テキストボックス*/
ul.overlap li .txt {
	padding: 20px 50px;
	margin:0px -200px; /*重ね幅*/
	z-index:1;
	/*clip-path:polygon(0% 0%, 90% 0, 100% 15%, 100% 100%, 10% 100%, 0% 85%);*/ /*右上・左下欠け*/
	/*clip-path:polygon(0% 50%, 3% 0%, 100% 0%, 100% 100%, 3% 100%, 0% 50%);*/ /*矢印*/
	clip-path:polygon(5% 0%, 100% 0%, 100% 100%, 0% 100%); /*斜め*/
	/*background:rgba(247,247,247,1);*/
	color:#000000;
	font-size:16px;
	width:calc( 49% + 201px ); /*重ね幅分をプラスすることでul幅いっぱいに表示*/
	text-align:right;
}
ul.overlap li .txt > table th {
	background:#ffffff;
	border-bottom:1px #0000cd solod;
	color:#000000;
	text-align:center;
	padding:0 1em 0 1em;
}
ul.overlap li .txt > table td {
	border-bottom:1px #000000 solod;
	padding:0 0 0 2em;
	text-align:left;
}
ul.overlap li .txt > h4 {
	font-size: 26px;
	font-weight:bold;
	text-align:right;
	/*border-bottom:1px #000000 solid;*/
}

ul.overlap li .txt > p {
	padding:10px 0;
}
/*偶数行は矢印の向きが逆*/
ul.overlap li:nth-child(even) .txt {
	padding: 20px 50px;
	margin:0px -200px; /*重ね幅*/
	z-index:1;
	/*clip-path:polygon(0% 0%, 97% 0%, 100% 50%, 100% 50%, 97% 100%, 0% 100%);*/ /*矢印*/
	clip-path:polygon(0% 0%, 100% 0%, 95% 100%, 0% 100%); /*斜め*/
	text-align:left;
	/*background:rgba(247,247,247,1);*/
	color:#000000;
	font-size:16px;
	width:calc( 49% + 200px ); /*重ね幅分をプラスすることでul幅いっぱいに表示*/
}
ul.overlap li:nth-child(even) .txt > h4 {
	text-align:left;
}
@media screen and (max-width:1024px) {
	/*ul.overlap li .txt {
		padding:10px 40px;
		font-size:14px;
	}
	ul.overlap li .txt > h4 {
		font-size: 22px;
	}
}
@media screen and (max-width:768px) {*/
	ul.overlap li {
		flex-direction:column;
	}
	ul.overlap li:nth-child(even) {
		flex-direction: column;
	}
	ul.overlap li figure {
		width:100%;
	}
	ul.overlap li .txt,
	ul.overlap li:nth-child(even) .txt {
		clip-path:polygon(0% 10%, 50% 0%, 100% 10%, 100% 100%, 0% 100%); /*上三角*/
		width:100%;
		margin:-10% 0 0;
		text-align:left;
		padding:10% 10px 0;
	}
	ul.overlap li .txt > h4,
	ul.overlap li:nth-child(even) .txt > h4 {
		text-align:left;
		font-size:20px;
	}
}

/*================================================
 *  背景設定
 ================================================*/
/*色背景*/

/*ベース色*/
.bg_base {background:rgba(0,77,179,1);}

/*一部のみ背景*/
.bg_lt_half {
	background:linear-gradient(270deg, transparent 0%, transparent 60%, rgba(247,247,247,1) 60%, rgba(247,247,247,1) 100%);
}
.bg_rt_half {
	background:linear-gradient(90deg, transparent 0%, transparent 40%, rgba(247,247,247,1) 40%, rgba(247,247,247,1) 100%);
}
.bg_cross {
	background:linear-gradient(135deg, rgba(247,247,247,1) 0%, rgba(247,247,247,1) 50%, rgba(0,165,230,1) 50%, rgba(0,165,230,1) 100%);
}

/*工事種別－色分岐*/
.bg_kouji_syubetu01 {
	background:rgba(252,160,199,1);
	border-radius:3px;
}
.bg_kouji_syubetsu02 {
	background:rgba(0,165,230,1);
	border-radius:3px;
}
.bg_kouji_syubetsu03 {
	background:rgba(226,237,144,1);
	border-radius:3px;
}

/*選手・保護者の声*/
.bg_voice_01 {
	background: #e0edff;
}
.bg_voice_02 {
	background: #e0ed00;
}
/*背景画像ぼかし*/
.bg_kengaku {
	background:url("../images/banner.jpg") no-repeat center center/100%;
	background-color: rgba(255,255,255,0.1); /* 半透明必須 */
	backdrop-filter: blur(20px);
}
/*画像背景*/
.bg1 {
	/*background-image:url("../images/bg01.jpg");
	background-repeat: no-repeat;
	background-position:center center;*/
	background:url("../images/bg01.png");
}
.bg2 {
	background:	url("../images/bg2.jpg") no-repeat bottom center/100%;
	/*background:#ff8c00;*/
}
.bg3 {
	background: url("../images/bg03.png");
}
.bg4 {
	background: url("../images/bg04.png");
}
.bg5 {
	background: url("../images/family_run-03.png") no-repeat top center/100%;
}
.bg6 {
	background: url("../images/bg06.jpg") no-repeat top center/100%;
}
.bg_half {
	background:rgba(255,255,255,0.6);
}
.bg_white70 {
	background:rgba(255,255,255,0.75);
}
.bg_gray {
	background: rgba(247,247,247,1);
}
.bg_black70 {
	background:rgba(0,0,0,0.7);
}
.bg_black {
	background:rgba(0,0,0,1);
}
.bg_blue70 {
	background:rgba(54,60,98,0.7);
}
.bg_green70 {
	background:rgba(0,153,153,0.7);
}

.bg7 {
	background: url("../images/bg07.jpg");
}
.bg_pink {
	background:rgba(252,160,199,1);
}
.bg_dark_bluegreen {
	background:#aadddd;
}
.bg_yellow {
	/*background:rgba(247,238,198,0.7);*/
	/*background:rgba(242,242,176,0.8);*/
	background:rgba(226,237,144,1);
}
.bg_lightyellow {
	background:#ebe0bc;
}
.bg_dot {
	background: url("../images/bg_dot.jpg");
}
.bg_dot2 {
	background: url("../images/bg_dot.png");
}

.bg_loupe {
	background-image:url("../images/loupe.png");
	background-repeat:no-repeat;
	background-position: bottom 0px right 0px;
	background-size:8% auto;
	background-color: rgba(247,247,247,1);
}

.bg_sapporo {
	background:url("../images/sapporo.jpg") no-repeat top center/cover;
	background-color: rgba(50,138,244,1);
}
.bg_saiyou {
	background:url("../images/saiyou.jpg") no-repeat center center/cover;
	background-color: rgba(247,247,247,.7);
}
.bg_new {
	background:rgba(247,247,247,0.7) url("../images/new.jpg") no-repeat center center;
	background-size:cover;
}
.bg_banner {
	background:rgba(247,247,247,0.7) url("../images/banner.jpg") no-repeat center center;
	background-size:cover;
}
.bg_corallogo {background:#fdb678}
.bg_white {background:#ffffff;}

.bg_logo_red {background:#dd2425;}
.bg_logo_red70 {background:rgba(189,36,37,0.7);}
.bg_logo_gray {background:#959595;}
.bg_logo_gray70 {background:rgba(149,149,149,0.7);}

.bg_skyblue {background:#00a5e6;}
.bg_skyblue70 {background:rgba(0,165,230,0.7);}

/*================================================
 *  位置設定
 ================================================*/
.cr {text-align:center;}
.lt {text-align:left;}
.rt {text-align:right;}
/*PC-スマホで位置替え*/
.cr-lt {text-align:center;}
.cr-rt {text-align:center;}
.lt-cr {text-align:left;}
.rt_cr {text-align:right;}
/*垂直方向*/
.ver_top {vertical-align:top;}
.ver_mid {vertical-align:middle;}
.ver_btm {vertical-align:bottom;}
@media screen and (max-width:768px) {
	.cr-lt {text-align:left;}
	.cr-rt {text-align:right;}
	.lt-cr {text-align:center;}
	.rt_cr {text-align:center;}
}


/*================================================
 *  罫線設定
 ================================================*/
.rd_sol {border:1px #000000 solid;}
.rd_sol_white {border:1px #ffffff solid;}
.rd_dot {border:1px #000000 dotted;}
.rd_dot_white {border:1px #ffffff dotted;}
.tp_sol {border-top:1px #000000 solid;}
.tp_sol_white {border-top:1px #ffffff solid;}
.tp_dot {border-top:1px #000000 dotted;}
.tp_dot_white {border-top:1px #ffffff dotted;}
.bt_sol {border-bottom:1px #000000 solid;}
.bt_sol_double {border-bottom:4px double #000000;}
.bt_sol_white {border-bottom:1px #ffffff solid;}
.bt_dot {border-bottom:1px #000000 dotted;}
.bt_dot_white {border-bottom:1px #ffffff dotted;}
.lt_sol {border-left:1px #000000 solid;}
.lt_sol_white {border-left:1px #ffffff solid;}
.lt_dot {border-left:1px #000000 dotted;}
.lt_dot_white {border-left:1px #ffffff dotted;}
.rt_sol {border-right:1px #000000 solid;}
.rt_sol_white {border-right:1px #ffffff solid;}
.rt_dot {border-right:1px #000000 dotted;}
.rt_dot_white {border-right:1px #ffffff dotted;}
.border_r_5 {border-radius:5px}
.border_r_10 {border-radius:10px}
.border_r_15 {border-radius:15px}
.border_r_20 {border-radius:20px}

/*================================================
 *  margin＆padding設定
 ================================================*/
.mg_rd_5 {margin:5px;}
.mg_rd_10 {margin:10px;}
.mg_rd_15 {margin:15px;}
.mg_rd_20 {margin:20px;}
.mg_rd_25 {margin:25px;}
.mg_rd_30 {margin:30px;}
.mg_rd_50 {margin:50px;}

.mg_tp_5 {margin-top:5px;}
.mg_tp_10 {margin-top:10px;}
.mg_tp_15 {margin-top:15px;}
.mg_tp_20 {margin-top:20px;}
.mg_tp_25 {margin-top:25px;}
.mg_tp_30 {margin-top:30px;}
.mg_tp_50 {margin-top:50px;}

.mg_bt_5 {margin-bottom:5px;}
.mg_bt_10 {margin-bottom:10px;}
.mg_bt_15 {margin-bottom:15px;}
.mg_bt_20 {margin-bottom:20px;}
.mg_bt_25 {margin-bottom:25px;}
.mg_bt_30 {margin-bottom:30px;}
.mg_bt_50 {margin-bottom:50px;}

.mg_lt_5 {margin-left:5px;}
.mg_lt_10 {margin-left:10px;}
.mg_lt_15 {margin-left:15px;}
.mg_lt_20 {margin-left:20px;}
.mg_lt_25 {margin-left:25px;}
.mg_lt_30 {margin-left:30px;}
.mg_lt_50 {margin-left:50px;}

.mg_rt_5 {margin-right:5px;}
.mg_rt_10 {margin-right:10px;}
.mg_rt_15 {margin-right:15px;}
.mg_rt_20 {margin-right:20px;}
.mg_rt_25 {margin-right:25px;}
.mg_rt_30 {margin-right:30px;}
.mg_rt_50 {margin-right:50px;}

.pd_rd_5 {padding:5px;}
.pd_rd_10 {padding:10px;}
.pd_rd_15 {padding:15px;}
.pd_rd_20 {padding:20px;}
.pd_rd_25 {padding:25px;}
.pd_rd_30 {padding:30px;}
.pd_rd_50 {padding:50px;}

.pd_tp_5 {padding-top:5px;}
.pd_tp_10 {padding-top:10px;}
.pd_tp_15 {padding-top:15px;}
.pd_tp_20 {padding-top:20px;}
.pd_tp_25 {padding-top:25px;}
.pd_tp_30 {padding-top:30px;}
.pd_tp_50 {padding-top:50px;}

.pd_bt_5 {padding-bottom:5px;}
.pd_bt_10 {padding-bottom:10px;}
.pd_bt_15 {padding-bottom:15px;}
.pd_bt_20 {padding-bottom:20px;}
.pd_bt_25 {padding-bottom:25px;}
.pd_bt_30 {padding-bottom:30px;}
.pd_bt_50 {padding-bottom:50px;}

.pd_lt_5 {padding-left:5px;}
.pd_lt_10 {padding-left:10px;}
.pd_lt_15 {padding-left:15px;}
.pd_lt_20 {padding-left:20px;}
.pd_lt_25 {padding-left:25px;}
.pd_lt_30 {padding-left:30px;}
.pd_lt_50 {padding-left:50px;}

.pd_rt_5 {padding-right:5px;}
.pd_rt_10 {padding-right:10px;}
.pd_rt_15 {padding-right:15px;}
.pd_rt_20 {padding-right:20px;}
.pd_rt_25 {padding-right:25px;}
.pd_rt_30 {padding-right:30px;}
.pd_rt_50 {padding-right:50px;}


/*================================================
 *  文字設定
 ================================================*/
/*文字サイズ*/
.big1 {
	font-size:40px;
	line-height:48px;
}
.mid1{
	font-size:25px;
	line-height:30px;
}
.mini1 {
	font-size:11px;
	display:inline-block;
	line-height:1.5;
}
@media screen and (max-width:768px) {
	.big1 {
		font-size:24px;
		line-height:28px;
	}
	.mid1 {
		font-size:18px;
		line-height:21px;
	}
	.mini1 {
		font-size:10px;
		display:inline-block;
		line-height:1.3;
	}
}
/*太さ*/
.f_bold {font-weight:bold;}
/*色*/
.txt_base_color {color:rgba(54,60,98,1);}
.txt_blue {color:rgba(54,60,98,1);}
.txt_green {color:#009999;}
.txt_orange {color:#ff9900}
.txt_green_gray {color:#7a9999;}
.txt_white {color:#ffffff;}
.txt_red {color:#ff0000;}
.txt_black {color:#000000;}
.txt_logo_red{color:#dd2425;}
.txt_skyblue{color:#00a5e6;}
/*字下げ*/
.ind_1 {
	padding-left:1em;
	text-indent:-1em;
}
/*================================================
 *  その他装飾設定
 ================================================*/
	a {color:#000000;}
	a:hover {color:#00a5e6;}

/*p要素をカギカッコで囲む*/
.kakko p {
	position: relative;
	line-height: 1.3;
	padding:1em 1em;
	display: inline-block;
}

.kakko p:before, .kakko p:after { 
	content:'';
	width: 50px;
	height: 30px;
	position: absolute;
	display: inline-block;
}

.kakko p:before {
	border-left: solid 2px #bdbdbd;
	border-top: solid 2px #bdbdbd;
	top:0;
	left: 0;
}

.kakko p:after {
	border-right: solid 2px #bdbdbd;
	border-bottom: solid 2px #bdbdbd;
	bottom:0;
	right: 0;
}

/*ノートのような罫線*/
.note {
	background-color: #fff; /* 背景色 */
	background-image: linear-gradient(180deg, #dfdfdf 1px, transparent 1px); /* 罫線の色と太さ */
	background-size: 100% 2.1em; /* 行の高さ */
	line-height: 2.1em; /* 文字の高さ */
	padding-bottom: 1px; /* 最終行の下にも罫線を引く */
	padding:5px;
}

/*蛍光ペンのような文字装飾*/
.keikou {
	background:linear-gradient(transparent 50%, #ff6 50%);
}

/*詳細を見るボタン*/
.more a {
	/*background:#de6426;*/
	/*background:#707ccc;*/
	background:#00a5e6;
	/*background:#9d8e87;*/
	/*background:#ffdb4f;*/
	padding:5px 20px;
	/*border-radius:3px;*/
	color:#ffffff;
	/*border:1px #009999 solid;*/
	border-radius:25px;
}
.more a:hover {
	/*background:rgba(230,230,230,0.6);*/
	background:rgba(157,142,135,0.3);
	/*background:rgba(255,187,221,0.4);*/
	color:#272e69;
}
.bg_skyblue > .more a {
	/*background:#de6426;*/
	/*background:#707ccc;*/
	background:#ffffff;
	/*background:#9d8e87;*/
	/*background:#ffdb4f;*/
	padding:5px 20px;
	/*border-radius:3px;*/
	color:#00a5e6;
	/*border:1px #009999 solid;*/
	border-radius:25px;
}
.bg_skyblue > .more a:hover {
	/*background:rgba(230,230,230,0.6);*/
	background:rgba(157,142,135,0.3);
	/*background:rgba(255,187,221,0.4);*/
	color:#272e69;
}
/*チェックマーク*/
span.check {
	position:relative;
	padding:0 0 0 1em;
}
span.check::after {
	content:'';
	display:block;
	position:absolute;
	top:0.5em;
	left:0em;
	width:10px;
	height:5px;
	border-left:2px solid #707ccc;
	border-bottom:2px solid #707ccc;
	transform: rotate(-45deg);
}
/*連番*/
p.num::before {
	counter-increment: number 1; /* number カウンタを増加 */
	/*content: "第" counter(number) "章 ";*/ /* 表示形式を指定 */
	content: counter(number) "."; /* 表示形式を指定 */
	/*font-size:0.9em;*/
}
p.num_follow {
	padding:0 0 0 1em;
	margin:0 0 0.1em 0;
	/*font-size:0.8em;*/
}
/*タイトル付きボックス枠*/
.ttl_box {
	position: relative;
	margin: .5em 0;
	padding: 1em 0.5em 0.5em;
	border: solid 1px #000000;
	border-radius: 4px;
	background:#ffffff;
}
.ttl_box .box-title {
	position: absolute;
	display: inline-block;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	padding: 5px 9px;
	line-height: 1;
	font-size: 20px;
	/*background: rgba(247,247,247,1);*/
	background:#ffffff;
	/*background:#dd2425;*/
	color: #000000;
	/*font-weight: bold;*/
	/*border:solid 1px #dd2425;*/
	border-radius:4px;
}
@media screen and (max-width:768px) {
	.ttl_box .box-title {
		font-size:14px;
	}
}
.ttl_box p {
	margin: 0;
	padding: 5px;
}

/*こだわり条件表示*/
.kodawari_box {
	display: flex;
	/*justify-content: center;*/
	align-items: center;
	flex-wrap: wrap;
}
.kodawari_box .kodawari_item {
	width: 32%;
	background: #eeeeee;
	margin: 0.5%;
	box-sizing: border-box;
	text-align:center;
	padding:1px 3px;
}
@media screen and (max-width: 770px) {
	.kodawari_box .kodawari_item {
		width:49%;
	}
}

/*================================================
 *  星形レーティング5段階
 ================================================*/
.rating_box > p {
 /* background: pink;
  width: 100%;*/
  font-size:14px;
}
.rating_box > p > span{
  display: inline-block;
  vertical-align: middle;
}
.rating_box > p.eki > span {
	margin:0 0 0 56px; /*14px×4文字＝56px*/
}
.rating_box > p.free > span {
	margin:0 0 0 14px; /*14px×1文字＝14px*/
}
.rating_box > p.setsubi > span {
	margin:0 0 0 28px; /*14px×2文字＝28px*/
}
.rating_box > p.kankyou > span {
	margin:0 0 0 42px; /*14px×3文字＝42px*/
}
.star5_rating{
	position: relative;
	z-index: 0;
	display: inline-block;
	white-space: nowrap;
	color: #CCCCCC; /* グレーカラー 自由に設定化 */
	font-size: 30px; フォントサイズ 自由に設定化 
}
.star5_rating:before, .star5_rating:after{
	content: '★★★★★';
}
.star5_rating:after{
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	overflow: hidden;
	white-space: nowrap;
	color: #ffcf32; /* イエローカラー 自由に設定化 */
}

.star5_rating[data-rate="5.0"]:after{ width: 100%; } /* 星5 */
.star5_rating[data-rate="4.5"]:after{ width: 90%; } /* 星4.5 */
.star5_rating[data-rate="4.0"]:after{ width: 80%; } /* 星4 */
.star5_rating[data-rate="3.5"]:after{ width: 70%; } /* 星3.5 */
.star5_rating[data-rate="3.0"]:after{ width: 60%; } /* 星3 */
.star5_rating[data-rate="2.5"]:after{ width: 50%; } /* 星2.5 */
.star5_rating[data-rate="2.0"]:after{ width: 40%; } /* 星2 */
.star5_rating[data-rate="1.5"]:after{ width: 30%; } /* 星1.5 */
.star5_rating[data-rate="1.0"]:after{ width: 20%; } /* 星1 */
.star5_rating[data-rate="0.5"]:after{ width: 10%; } /* 星0.5 */
.star5_rating[data-rate="0.0"]:after{ width: 0%; } /* 星0 */

/*リボン型アイコン表示*/
.ribbon_box {
	/*display: block;*/
	position: relative;
}
.ribbon {
	display: inline-block;
	position: absolute;
	top: -6px;
	right: 10px;
	margin: 0;
	padding: 10px 0 7px;
	z-index: 2;
	width: 60px;
	text-align: center;
	color: white;
	font-size: 13px;
	background: #fa8383;
	border-radius: 2px 0 0 0;
}
.ribbon:before {
	position: absolute;
	content: '';
	top: 0;
	right: -5px;
	border: none;
	border-bottom: solid 6px #d07676;
	border-right: solid 5px transparent;
}
.ribbon:after {
	content: '';
	position: absolute;
	left: 0;
	top: 100%;
	height: 0;
	width: 0;
	border-left: 30px solid transparent;
	border-right: 30px solid transparent;
	border-top: 5px solid #fa8383;
}

/*================================================
 *  デバイスによる表示設定
 ================================================*/
/*pc時表示*/
.pc {display:block;}
/*pc時非表示*/
.sp {display:none;}
@media screen and (max-width:768px) {
	/*スマホ時表示*/
	.pc {display:none;}
	/*スマホ時非表示*/
	.sp {display:block;}
}

/*===============================================
 *  フッタ設定
 ===============================================*/
footer {
	box-sizing:border-box;
	width:100%;
	margin:0 auto;
	color:#ffffff;
}
footer .fas,
footer ul li {
	color:#ffffff;
}
footer {
	clear:both;
}
.foot_logo {
	/*text-align:center;
	width:100%;*/
	/*margin:0 0 20px 0;*/
	
}

.footmenu {
	width:100%;
	padding:5px 0;
	overflow:hidden;
	/*background:#f3981d;*/
	/*height:800px;*/
	/*padding:0 0 50px;*/
}
.footmenu_inner {
	width:1400px;
	margin:0 auto;
}
@media screen and (max-width:1399px) {
	.footmenu_inner {width:100%;}
}
.footmenu ul {
	position:relative;
	float:left;
	left:50%;
	/*margin:50px 0 50px 0;*/
	padding:0;
}
.footmenu li {
	position:relative;
	left:-50%;
	float:left;
	list-style:none;
	margin:0;
	padding:0 15px;
	font-size:12px;
	text-align:center;
}
.footmenu a {
	color:#000000;
	text-decoration:none;
}
.footmenu a:hover {
	color:#FF9E4F;
	/*text-decoration:underline;*/
}
.copyright {
	clear:both;
	padding:20px 0;
	font-size:11px;
	text-align:center;
	color:#ffffff;
	/*background:#de6426;*/
	/*background:#009999;*/
	/*background:rgba(54,60,98,1);*/
}
.clear {clear:both;}
/*================================================
 *  ページトップへの戻り
 ================================================*/
#page-top {
	position:fixed;
	right:10px;
	bottom:30px;
	height: 50px;
	text-decoration: none;
	font-weight: bold;
	transform: rotate(90deg);
	font-size: 100%;
	line-height: 1.5rem;
	color: #737373;
	padding: 0 0 0 35px;
	border-top: solid 1px;
}
#page-top::before {
	content: "";
	display: block;
	position: absolute;
	top: -1px;
	left: 0px;
	width: 15px;
	border-top: solid 1px;
	transform: rotate(35deg);
	transform-origin: left top;
}

/*================================================
 *  ページャー
 ================================================*/
.pager {
	clear: both;
	text-align: center;
	line-height: 1;
	padding-bottom: 5px;
}
.pager li {
	display: inline-block;
	/*margin-bottom: 5px;*/
	margin:5px 1px;
}
.pager a {
	text-decoration: none;
	display: block;
}

.pager li.current,
.pager li a {
	padding: 14px 16px;
	box-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}
.pager li.current {
	border: 1px solid #bf0751;
	background: #bf0751;
	color: #fff;
	box-shadow: none;
}
.pager li a {
	border: 1px solid #ccc;
	background: #fff;
}
.pager li a:hover {
	border: 1px solid #bf0751;
}

/*================================================
コラムページ用
================================================*/
/*管理ページ入力の際に<span>タグ付加の場合の強調*/
.colum_cnt > span {
	font-size:1.2em;
	padding:0 10px 0 10px;
	font-weight:bold;
	border-bottom:6px dotted #dd2425;
	margin-bottom:10px;
	display:inline-block;
}
/*コンテンツ内画像回り込み*/
.colum_cnt > img.fr {
	float:right;
	margin-left:20px;
	width:35%;
}
.colum_cnt > img.fl {
	float:left;
	margin-right:20px;
	width:35%;
}
@media screen and (max-width:768px) {
	.colum_cnt > img.fr {
		margin-bottom:20px;
		width:100%;
	}
	.colum_cnt > img.fl {
		margin-bottom:20px;
		width:100%;
	}
}
/*吹出し*/
/* 全体の設定 */
.balloon {
	width: 100%;
	margin:1em auto;
	overflow: hidden;
}
/* アイコンの場所 */
.balloon .icon {
	float: left;
	margin-right: -90px;
	width: 90px; /*アイコンの大きさ*/
}
/* アイコン画像の作成 */
.balloon .icon img{
	width: 100%;
	height: auto;
	border-radius: 50%;
	/*border: solid 2px #959595;*/ /*アイコンの枠の太さ、カラーはここで変更*/
	/*background:#959595;*/
}
.balloon .chat {
	width: 100%;
}
/* 吹き出しの入力部分の作成 */
.talk {
	display: inline-block; /*この部分を外すと横幅いっぱいになります*/
	position: relative; 
	margin: 5px 0 0 105px;
	padding: 15px 15px;
	border-radius: 6px; /*吹き出しの丸み具合を変更*/
	background: rgba(255,255,255,1); /*吹き出しのカラーはここで変更*/
	color:#555555;
	border:1px #959595 solid;
}
/* 三角部分の枠線 */
.talk:before {
	content: '';
	position: absolute;
	display: inline-block;
	width: 0;
	height: 0;
	left: -12px;
	top: 24px;
  border-right: 12px solid #959595;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
/* 三角部分の枠線にするため上記:beforeのleftからずらして設定する */
.talk:after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 24px; /*三角の位置(高さ)を変更*/
	left: -11px;
	/*border: 12px solid transparent;
	border-right: 12px solid #ffffff;*/ /*三角部分のカラーはここで変更*/
	border-right: 12px solid #ffffff;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
}
.talk p {
	margin: 0;
	padding: 0;
}
/*吹き出し：矢印中央＆上向き*/
.fukidashi_top_01,
.fukidashi_top_02 {
	position: relative;
	display: inline-block;
	margin: .5em 0;
	padding: 7px 10px;
	min-width: 120px;
	max-width: 100%;
	color: #555;
	font-size: 16px;
	/*background: #e0edff;*/
}
.fukidashi_top_01 {
	background: #e0edff;
}
.fukidashi_top_02 {
	background: #e0ed00;
}
.fukidashi_top_01:before, 
.fukidashi_top_02:before {
	content: "";
	position: absolute;
	top: -30px;
	left: 50%;
	margin-left: -15px;
	border: 15px solid transparent;
	/*border-bottom: 15px solid #e0edff;*/
}
.fukidashi_top_01:before {
	border-bottom: 15px solid #e0edff;
}
.fukidashi_top_02:before {
	border-bottom: 15px solid #e0ed00;
}
.fukidashi_top_01 p, 
.fukidashi_top_02 p {
	margin: 0;
	padding: 0;
}

/*================================================
 よくある質問
================================================*/
.qa {
	max-width: 100%;
	margin-bottom: 5px;
	border-bottom: 1px solid #d6dde3;
}
.qa summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 1em 2em 1em 3em;
	color: #333333;
	font-weight: 600;
	cursor: pointer;
}
.qa summary::before,
.qa p::before {
	position: absolute;
	left: 1em;
	font-weight: 600;
	font-size: 1.3em;
}
.qa summary::before {
	color: #75bbff;
	content: "Q";
}
.qa summary::after {
	transform: translateY(-25%) rotate(45deg);
	width: 7px;
	height: 7px;
	margin-left: 10px;
	border-bottom: 3px solid #333333b3;
	border-right: 3px solid #333333b3;
	content: '';
	transition: transform .5s;
}
.qa[open] summary::after {
	transform: rotate(225deg);
}
.qa p {
	position: relative;
	transform: translateY(-10px);
	opacity: 0;
	margin: 0;
	padding: .3em 3em 1.5em;
	color: #333;
	transition: transform .5s, opacity .5s;
}
.qa[open] p {
	transform: none;
	opacity: 1;
}
.qa p::before {
	color: #ff8d8d;
	line-height: 1.2;
	content: "A";
}
.qa p > span {
	display:inline-block;
	margin:10px 0 10px 0;
	padding:5px;
}

/*================================================
 沿革
================================================*/
.flow_box {
	display: flex;
	/*lign-items: center;*/
	margin-left: 20px;
}
.flow_box ul {
	padding: 0;
}
.flow_box li {
	list-style-type: none;
}
.flow_box dd {
	margin-left: 0;
	margin-top:5px;
}
.flow {
	position: relative;
}
.flow::before {
	content: "";
	width: 15px;
	height: 100%;
	background: #eee;
	margin-left: -129px;
	display: block;
	position: absolute;
	top: 0;
	left: 120px;
	border-radius: 20px;
}
.flow > li {
	position: relative;
}
.flow > li:not(:last-child) {
	margin-bottom: 10px;
}
.flow > li .flow_icon {
	font-size: 0.8em;
	/*width: 2em;*/
	height: 2em;
	line-height: 2;
	text-align: center;
		/*font-weight: bold;*/
	/*border-radius: 100vh;*/
	padding:0 6px;
	/*color: #fff;*/
	/*background: #dd2425;*/
	display: inline-block;
	margin-right: 0.8em;
}
.flow > li dl {
	padding-left: 70px;
	position: relative;
}
.flow > li dl::before,
.flow > li dl::after {
	content: "";
	display: block;
	position: absolute;
	top: 12px;
}
.flow > li dl::before {
	width: 7px;
	height: 7px;
	margin-top: -3px;
	background: #dd2425;
	border-radius: 50%;
	left: -4px;
}
.flow > li dl::after {
	width: 50px;
	border-bottom: 1px dashed #999;
	position: absolute;
	left: 5px;
}
.flow > li dl dt {
	font-size: 1.1em;
	/*font-weight: 600;*/
	color: #555555;
	margin-bottom: 0em;
	display: flex;
	align-items: center;
}

/*================================================
 家づくりの流れフロー
================================================*/
.first_flow_box {
	display: flex;
	justify-content: center;
	align-items: center;
}
.first_flow {
	padding-left: 0;
	width:100%;
}
.first_flow > li {
	list-style-type: none;
	display: flex;
}
.first_flow > li:not(:last-child) {
	margin: 0 0 20px;
}
.first_flow > li .first_flow_icon {
	width: 60px;
	box-sizing: border-box;
	padding: 10px 5px 10px;
	font-weight: bold;
	color: #ffffff;
	text-align: center;
	background: #00a5e6;
	/*background:rgba(237,237,237,1);*/
	border-radius: 5px 5px 0 0;
	position: relative;
	line-height: 110%;
	margin: 0;
}
.first_flow > li .first_flow_icon::after {
	content: ' ';
	width: 0;
	height: 0;
	border-left: 30px solid transparent;
	border-right: 30px solid transparent;
	border-top: 10px solid #00a5e6;
	/*border-top:20px solid rgba(237,237,237,1);*/
	position: absolute;
	bottom: -10px;
	left: 0;
}
.first_flow > li.last_row .first_flow_icon {
	width: 60px;
	box-sizing: border-box;
	padding: 10px 5px 10px;
	font-weight: bold;
	color: #ffffff;
	text-align: center;
	background: #00a5e6;
	/*background:rgba(237,237,237,1);*/
	border-radius: 5px 5px 5px 5px;
	position: relative;
	line-height: 110%;
	margin: 0;
}
.first_flow > li.last_row > p.first_flow_icon::after {
	content: '';
	width: 0;
	height: 0;
	border-left: 0px solid transparent;
	border-right: 0px solid transparent;
	border-top: 0px solid #00a5e6;*/
	/*border-top:20px solid rgba(237,237,237,1);*/
	/*position: absolute;*/
	/*bottom: -20px;*/
	left: 0;
}
.first_flow > li dl {
	padding: 0 0 0 15px;
	flex: 1; 
	box-sizing: border-box;
	/*width: calc(100% - 0px);*/
}
.first_flow > li dl dt {
	padding: 0 0 5px;
	margin: 0 0 5px;
	font-size: 1em;
	font-weight: bold;
	border-bottom: 2px solid #CCCCCC;
	position: relative;
}
.first_flow > li dl dt::after {
	content: '';
	width: 15%;
	height: 2px;
	position: absolute;
	bottom: -2px;
	left: 0;
	background-color: #00a5e6;
}
.first_flow > li dl dd {
	margin: 0;
	font-size:0.9em;
}

/*================================================
 * 大きさの違う画像をタイル状に並べる：grid
 ================================================*/
.grid_box {
	display: grid;
	gap: 0px;
	grid-template-columns: 1fr 1fr 1fr 1fr; /*4列*/
	grid-template-rows: 33.333333% 33.333333% 33.333333%; /*3行の高さ*/
	width:100%; /*全体の幅*/
	height:600px; /*全体の高さ*/
	padding:2px;
}
.grid_box .grid_item {
	background: #ffffff; /*ボックス内の背景色*/
	padding: 1px;
	border-radius: 0px;
	/*border: 1px solid #ffffff;*/
}
.grid_box .grid_item img {
	object-fit:cover; /*ボックス内に表示する画像の表示方法*/
	width: 100%;
	height: 100%;
}
/*表示するボックスの大きさを変える*/
.grid_box .box_big1 {
	grid-column: 2 / 4; /*グリッドラインの始まりと終わりを指定：4列のうち2列目と3列目を使う場合→左端が1、右端が5になるので、2列目の始まりは2で3列目の終わりは4になる！*/
	grid-row: 1 / 3; /*3行のうち1行目と2行目を使う ※上記同様で、上端が1で下端が4になるので、1行目の始まりは1、2行目の終わりは3になる！*/
}
.grid_box .box_big2 {
	grid-column: 4 / 5;
	grid-row: 1 / 3;
}
.grid_box .box_big3 {
	grid-column: 1 / 3;
	grid-row: 3 / 4;
}

/*================================================
 * パノラマ
 ================================================*/
#panorama {
	width: 100%;
	height: 390px;
}
.thumbnails {
	margin-top: 10px;
	display: flex;
	gap: 10px;
	width:100%;
}
.thumbnails img {
	/*width: 120px;*/
	width:calc((100% - 40px) / 5);
	height: 80px;
	cursor: pointer;
	object-fit: cover;
	border: 3px solid transparent;
	transition: border 0.3s;
}
.thumbnails img:hover {
	border-color: #007bff;
}
.thumbnails img.active {
	border-color: #ff5722;
}
#thumbnails img.selected {
	border: 3px solid #007BFF; /* 青色の枠線 */
	box-sizing: border-box;
}