@charset "utf-8";

/*-------------------------------------------------------
1_ベースの設定（テキスト・画像・色）
-------------------------------------------------------*/

/* 1-1_html ---------------------------------- */
html {
	-webkit-text-size-adjust: 100%; /*文字サイズ自動調整機能キャンセル*/
	background: #F8F8F8; /*全体の背景色*/
}

/* 1-2_body ---------------------------------- */
body {
	font-family: "Noto Sans Japanese"/*webfont*/, Avenir, "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック" , "MS PGothic", sans-serif;
	font-weight: 400;
	width: 100%;
	margin: 0 auto;
	font-size: 18px; /*ベース本文の文字サイズ*/
	line-height: 1.8em;
	letter-spacing: 0.03em;
	text-align: justify;
	text-justify: auto;
	color: #2B2B2E;
	word-wrap: break-word;
}

/* 1-3_テキスト設定 ---------------------------------- */
h1,h2,h3,h4,h5,h6 {
	line-height: 1.4em;
	margin-bottom: 10px;
}
h1 {font-size: 38px;}
h2 {font-size: 34px;}
h3 {font-size: 30px;}
h4 {font-size: 24px;}
h5 {font-size: 20px;}
h6 {font-size: 16px;}
p {
	margin-bottom: 10px;
}
li {
	list-style: none;
}

::selection {background: rgba(139, 188, 255, 0.8)} /* 選択中ハイライト */
::-moz-selection {background: rgba(139, 188, 255, 0.8)}

/* 1-4_アンカーテキスト ---------------------------------- */
a {
	text-decoration: none;
	color: #2B2B2E;
}
a { /* ふわっと色が変わる */
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}

/* 1-5_画像全般 ---------------------------------- */
* {-webkit-touch-callout: none;} /*スマホの画像長押しタップでメニューを表示させない*/
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	border-radius: 10px;
}
.ie8 img{width: auto;}

/*-------------------------------------------------------
2_レイアウト
-------------------------------------------------------*/

/* 2-1_contentsArea（コンテンツ最大表示エリア） ---------- */
.header {
	background: #FFFEFE;
	opacity: 1;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 63px;
	z-index: 10;
}
.main {
	padding: 63px 0 0;
}
.contents {
	padding: 60px 0;
}
.contents:first-child {
	border-top: solid 1px #F8F8F8;
}
#contact {
	background: #E5E5E5;
	padding: 120px 0 60px;
}
.footer {
	background: #2B2B2E;
	padding: 60px 0 150px;
}

/* 2-2_contentBlock（コンテンツの囲みブロック） ---------- */
.contentBlock {
	max-width: 1040px;
	margin: 0 auto;
}
.capBox {
	margin: 50px 0 0;
}

/* 2-3_写真リスト ---------- */
.photoList05,
.photoList03 {
	overflow: hidden;
	margin-top: 20px;
}
/* 5列 */
.photoList05 li {
	float: left;
	width: 18.4%;
	margin: 0 0 10px 2%;
}
.photoList05 li:nth-child(5n+1) {
	margin-left: 0px;
}
/* 3列 */
.photoList03 li {
	float: left;
	width: 30%;
	margin: 0 0 0 5%;
}
.photoList03 li:nth-child(3n+1) {
	margin-left: 0px;
}



/*-------------------------------------------------------
3_エリア別指定
-------------------------------------------------------*/

/* 3-1_header ---------------------------------- */
#header {
	position: relative;
}
#headTxt {
	font-size: 18px;
	padding: 19px 0 19px;
	margin: 0;
	position: absolute;
	z-index: 10;
}
#headTxt a {
	color: #2B2B2E;
}

/* グローバルナビ */
#gNav {
	font-size: 13px;
	padding: 15px 0 15px;
	position: absolute;
	top: 0px;
	right: 0px;
}
#gNav li {
	display: inline;
	margin-left: 20px;
}
#gNav li>a {
	color: #2B2B2E;
	display: inline-block;
	line-height: 2em;
	border-bottom: solid 2px #FFFEFE;
}
#gNav li>a:hover,
#gNav .active a {
	border-bottom: solid 2px #4FBFD2;
}

/* ハンバーガー */
input[type="checkbox"] {display: none;}
#dNav {
	position: absolute;
	top: 0;
	width :100%;
	padding :16px 0;
	opacity: 1;
}
#dNavBtn {
	display: block;
	position: relative;
	width: 30px;
	height: 30px;
	cursor: pointer;
	float: right;
	z-index: 2;
}
#dNavBtn::before {
	box-shadow: #2B2B2E 0 13px 0;
	-webkit-box-shadow: #2B2B2E 0 13px 0;
}
#dNavBtn::after {
	bottom: 0;
}
#dNavBtn::before,
#dNavBtn::after {
	position: absolute;
	display: block;
	content: '';
	width: 30px;
	height: 3px;
	background: #2B2B2E;
	-webkit-transition:
		-webkit-box-shadow 0.1s linear,
		-webkit-transform 0.1s 0.1s;
	transition:
		box-shadow 0.1s linear,
		transform 0.1s 0.1s;
}
.open #dNavBtn {
    visibility: visible;
    opacity: 1;
}
/* ハンバーガーのエフェクト */
.check:checked {
	opacity: 1;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}
.check:checked ~ #dNavBtn::before {
	-webkit-box-shadow: transparent 0 0 0;
	box-shadow: transparent 0 0 0;
	-webkit-transform: rotate(45deg) translate3d(6px, 13px, 0);
	transform: rotate(45deg) translate3d(6px, 13px, 0);
}
.check:checked ~ #dNavBtn::after {
	-webkit-transform: rotate(-45deg) translate3d(6px, -13px, 0);
	transform: rotate(-45deg) translate3d(6px, -13px, 0);
}
/* ドロワーの位置 */
.check:checked ~ .drawerBox {
	right: 0px;
}
/* ドロワー */
.drawerBox {
	position: absolute;
	font-size: 20px;
	text-align: center;
	right: -1000px;
	top: 63px;
	width: 100%;
	height: 1500px;
	background: #FFFEFE;
	-webkit-transition: right 0.4s;
	transition: right 0.4s;
}
.drawerBox li a {
	position: relative;
	color: #2B2B2E;
	display: block;
	padding: 20px 20px;
	z-index: 1;
}
/* マウスオーバー時のエフェクト */
.drawerBox li a::before {
	background: #4FBFD2;
	position: absolute;
	content: '';
	top: 0;
	right: 0;
	bottom: 100%;
	left: 0;
	-webkit-transition: bottom 0.4s;
	transition: bottom 0.4s;
	z-index: -1;
}
.drawerBox li a:hover::before {
	bottom: 0;
}
.drawerBox li a:hover::after {
	opacity: 0.5;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

/* 3-2_main ---------------------------------- */


/* 3-3_content ---------------------------------- */

/* テキスト設定 */
.areaTtl {
	text-align: center;
	border-top: solid 1px #6C6C6D;
	padding: 60px 0 10px;
}
.capTtl {
	border-left: solid 8px #4FBFD2;
	padding-left: 16px;
}
.caption {
	font-size: 16px;
	line-height: 1.9em;
	margin-bottom: 16px;
}
.capBox ol li {
	font-size: 16px;
	line-height: 1.9em;
	list-style: decimal outside;
	margin: 0 0 16px 2em;
}
.contactBox {
	text-align: center;
	padding-top: 30px;
}
.contactBox a {
	color: #4FBFD2;
}
/* 表組設定 */
table {
  font-size: 14px;
  line-height: 1.5em;
  width: 100%;
  margin-bottom: 60px;
	table-layout: fixed;
}
tbody {
  display: table-row-group;
  vertical-align: middle;
  border-color: inherit;
}
tr {
  display: table-row;
  vertical-align: inherit;
  border-color: inherit;
}
th {
	width: 30%;
  border-right: solid 2px #F8F8F8;
}
th, td {
  background: #FFFEFE;
  padding: 15px 20px;
  border-bottom: solid 5px #F8F8F8;
}

/* 画像の設定 */
#content04 img {
	display: block;
	margin: auto;
	margin-top: 20px;
}


/* 3-4_footer ---------------------------------- */

#footer {
	text-align: center;
	color: #F8F8F8;
}
#copyright a {
	color: #F8F8F8;
	font-size: 12px;
	display: block;
	margin-top: 60px;
}
#footerMenu {
	width: 300px;
	font-size: 14px;
	text-align: left;
	margin: 0 auto;
}
#footerMenu li {
	display: block;
	line-height: 1.5em;
	margin-bottom: 5px;
}
#footerMenu ol li {
	list-style: decimal outside;
	margin-left: 70px;
}

/* ページトップに戻る */
.toTop {
	opacity: 0.8;
	position: fixed;
	right: 30px;
	bottom: 50px;
}
.toTop:hover,
.toTop .active a { /* ふわっと半透明 */
	opacity: 1;
	filter: alpha(opacity=60);
	transition: all 0.3s ease-in-out;-webkit-transition: all 0.3s ease-in-out;-moz-transition: all 0.3s ease-in-out;
}

/*-------------------------------------------------------
4_SNS
-------------------------------------------------------*/

.sns {
	text-align: center;
}
.sns li {
	max-width: 40px;
	display: inline-block;
	margin: 30px 20px 0;
}

/*-------------------------------------------------------
5_note-RSS
-------------------------------------------------------*/

/* 1記事のスタイル */
#rss {
	text-align: left;
}
#rss li a:first-child {  /* 記事タイトル */
	font-size: 18px;
	color: #4FBFD2;
}
#rss p:nth-of-type(1){ /* 1行目の<p>のスタイル */
	font-size: 14px;
	line-height: 1.8em;
	display: block !important;
}
#rss p { /* 2行目以降の<p>を非表示 */
	display: none;
}
#rss li a:last-child { /* 続きをみる */
	font-size: 14px;
	color: #4FBFD2;
}

/* 記事のエリア囲み */
#rss li {
	background: #FFFEFE;
	padding: 30px 5% 30px;
	border-radius: 20px;
	border: solid 1px #E2E0E1;
	position: relative;
	margin-top: 20px;
}
#rss li:after {
	content: "";
	display: block;
	clear: both;
}
#rss li:first-child {
	margin-top: 0;
}

/*-------------------------------------------------------
	デスクトップのスタイル
-------------------------------------------------------*/
.contentBlock {
	width: 88%;
}
#dNav {display: none;}

/*-------------------------------------------------------
	タブレットのスタイル
-------------------------------------------------------*/
@media all and (max-width: 768px) {

#gNav {display: none;}
#dNav {display: block;}

}

/*-------------------------------------------------------
	モバイルのスタイル
-------------------------------------------------------*/
@media all and (max-width: 480px) {

.toTop {
	width: 50px;
	height: 50px;
	right: 20px;
}
.photoList03 li {
	float: none;
	width: auto;
	margin: 20px 0 20px;
}
.photoList03 li:first-child {
	margin-top: 0;
}
.photoList03 li:last-child {
	margin-bottom: 0;
}

	.column {
	column-count: 2 !important;
}
	
}

/* END */

/*20220912*/
ul.movielist {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 30px 0;
}
.movielist li {
	width: 50%;
	box-sizing: border-box;
	padding: 10px;
}
.movielist li .youtube {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.movielist li iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media all and (max-width: 480px) {
	.movielist li {
		width: 100%;
	}
}
/*20221003ADD*/
ul.list_style01 {
	margin-left: 20px;
	margin-bottom: 20px;
	list-style-position: inside;
}
ul.list_style01 li {
	list-style: disc;
	margin-left: 15px;
	padding: 5px 0;
}
ol.list_style02 {
	margin-left: 20px;
	margin-bottom: 20px;
	list-style-position: inside;
}
ol.list_style02 li {
	list-style: decimal;
	margin-left: 15px;
	padding: 5px 0;
}
.post_row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 30px 0;
}
.post_row .col-2 {
	width: 50%;
	box-sizing: border-box;
	padding: 10px;
}
.post_row .col-3 {
	width: 33.3%;
	box-sizing: border-box;
	padding: 10px;
}
.post_row .col-2 *:first-child {
	margin-top: 0;
}
@media all and (max-width: 480px) {
	.post_row .col-2, .post_row .col-3 {
		width: 100%;
	}
}
h4.sub_catch {
	padding: 12px;
	margin: 20px auto;
	font-size: 20px;
	text-align: center;
	/*border: 2px solid #4FBFD2;*/
	border-radius: 6px;
	background: #fff;
}
h4.sub_catch span {

}
.profile_box h4 {
	border-bottom: 2px solid #4FBFD2;
	padding: 6px 0;
	margin-bottom: 6px;
	font-size: 20px;
}
.catch_box {
	font-weight: bold;
	margin: 30px auto;
	text-align: center;
}
.txt_c {
	text-align: center;
}
.box_wrap {
	background: #E0F1FF;
	padding: 12px;
	border-radius: 6px;
	margin: 0 auto 20px;
}
.box_wrap h5 {
	background: #fff;
	padding: 3px 12px;
	font-size: 18px;
}
.box_wrap p {
	font-size: 16px;
	line-height: 1.4;
}
/*FLOW*/
.box_arrow {
	position: relative;
	display: block;
	text-decoration: none;
	text-align: center;
	text-align: center;
	margin-bottom: 60px;
}
.box_arrow:before {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 30px 50px 0 50px;
	border-color: #2097D1 transparent transparent transparent;
	position: absolute;
	top: 50%;
	left: calc(50% - 50px);
	margin-top: 30px;
}
.flow_box {
	padding: 20px 0;
}
.flow_box ul {
	list-style-type:none;
	margin: 30px auto;
	padding:0;
	display: flex;
}
.flow_box ul li {
	background: #fff;
	box-sizing: border-box;
	display: block;
	margin: 0 1% 0 0;
	position:relative;
	padding: 12px;
	border-radius: 6px;
	vertical-align: top;
	width: calc(100% / 6 - 1%);
}
.flow_box ul li:last-child {
	margin: 0;
}
.flow_box ul li h6 {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.4;
	margin: 0 auto 10px;
	padding: 0;
	text-align: center;
	height: 50px;
	border-bottom: 1px solid #eee;
	width: 100%;
	display: table;
	vertical-align: bottom;
}
.flow_box ul li h6 span {
	vertical-align: middle;
	display: table-cell;
}
.flow_box ul li span.step {
	position: absolute;
	top: -25px;
	left: 0;
	background: #2097D1;
	display: inline-block;
	color: #fff;
	font-size: 18px;
	width: 20px;
	height: 20px;
	font-weight: bold;
	line-height: 1;
	padding: 10px;
	border-radius: 30px;
	text-align: center;
}
.flow_box ul li p {
	font-size: 16px;
	line-height: 1.4;
}
.marker {
	background: linear-gradient(transparent 60%, #c0f2f2 0%);
	font-size: 18px;
	font-weight: bold;
}
h5.h5_style {
	border-bottom: 2px solid #4FBFD2;
	padding: 6px 0;
	margin: 12px auto;
	font-size: 20px;
}
h6.h6_style {
	padding: 12px 0;
}
h6.h6_style .waku {
	border: 1px solid #4FBFD2;
	background: #fff;
	border-radius: 6px;
	padding: 4px 12px;
	margin: 0;
	font-size: 18px;
	line-height: 2.2;
}
.sub_contents {
	padding: 30px 0;
}
img.not_radius {
	border-radius: 0;
}
dl.icon_list {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	align-items: stretch;
	justify-content: center;
}
dl.icon_list dt {
	width: 12%;
	padding: 10px;
	margin-bottom: 10px;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}
dl.icon_list dd {
	width: 88%;
	padding: 10px;
	background-color: #fff;
	margin-bottom: 10px;
	box-sizing: border-box;
}
@media (max-width: 480px) {
	.box_arrow {
		margin-bottom: 50px;
	}
	.box_arrow:before {
		margin-top: 40px;
	}
	.flow_box ul {
		display: block;
	}
	.flow_box ul li {
		margin: 0 0 40px;
		width: 100%;
	}
	dl.icon_list dt, dl.icon_list dd {
		width: 100%;
	}
	dl.icon_list dt {
		margin-bottom: 0;
	}
	dl.icon_list span.marker {
		display: block;
		text-align: center;
		margin: auto;
		max-width: 80%;
	}
}
/*20221108ADD*/
h3.sub_ttl {
	font-size: 24px;
	margin-bottom: 30px;
}
.img_box {
	position: relative;
}
.img_box ul.btn_box {
	position: absolute;
	width: 100%;
	margin: 0;
	padding: 0;
	bottom: 15%;
	left: 0;
	display: flex;
}
.img_box ul.btn_box li {
	width: 50%;
}
.img_box ul.btn_box li a {
	display: block;
	width: 60%;
	margin: 0 auto;
	padding: 15px 0;
	border-radius: 6px;
	background: rgba(79,191,210,.8);
	color: #fff;
	font-size: 120%;
	transition: 1.0s ;
	box-sizing: border-box;
    text-align: center;
}
.img_box ul.btn_box li a:hover {
	background: #2097D1;
}
.list_style_border {
	list-style: demical;
}
.list_style_border li{
	border-bottom: 1px dashed #ccc;
	margin-bottom: 10px;
	padding-bottom: 10px;
}
.list_style_border li p {
	margin-bottom: 0;
}
.list_style_border li h5 {
	color: #2097D1;
}
/*20221122*/
#header #headTxt {
	padding: 10px 0;
}
#headTxt a img {
	height: 40px;
	width: auto;
}
img.logo {
	height: 60px;
	width: auto;
}
/*20230622*/
.main.add {
	padding-top: 0;
}

/*==================================================
アコーディオンのためのcss
===================================*/

/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    margin:0 auto;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
  border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
}

.title img {
	vertical-align: middle;
	margin-right :0.5em;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
    
}
.title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
.title::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}

/*　closeというクラスがついたら形状変化　*/

.title.close::before{
  transform: rotate(45deg);
}

.title.close::after{
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    background: #f3f3f3;
  margin:0 3% 3% 3%;
    padding: 3%;
}


.box h3 {
	font-size: 1.3em;
	border-bottom: #4FBFD2 solid 1px;
	margin-top: 0.5em;
}

.box .post_p {
	    color: #b88387;
    font-weight: bold;
}

.box .etc {
	float: right;
	width:70px;
	padding: 5px;
}

.seisakujisseki{
	text-align:center;
	background-color: #4FBFD2;
	border-radius: 10px;
}

.seisakujisseki h3{
	color: #fff;
}

.seisakujisseki h4 {

    border-bottom: #4FBFD2 solid 1px;
    margin-top: 0.5em;
}

.kaisha_gaiyou {
	margin: 0 auto;
}

.column {
	column-count: 3;
	font-size: small;
	margin: 1em;
}

.column li {
	list-style: disc;
	padding-right: 2em;
	text-align: left;
}

.box {
	font-size: 0.8em;
}
.accordion-area .title{
padding: 2% 2% 2% 50px;
margin: 0;
}
.accordion-area p {
  line-height: 1.4;
  margin-top: 10px;
}
@media all and (max-width: 480px) {
    .pc_only {
	display: none;
	}
}