@charset "utf-8";
/* ----------------------------------------------------
  Google font　日本語
---------------------------------------------------- */
/* ゴシック */
.jp01{font-family: 'Noto Sans JP', sans-serif;}

/* 明朝 */
.jp02{font-family: 'Noto serif JP', sans-serif;}

/* ----------------------------------------------------
  Google font　英字
---------------------------------------------------- */
/* 縦長文字 */
.en01{font-family: "Oswald", sans-serif;}

/* 明朝 */
.en02{font-family: "Cormorant Garamond", serif;}

/* ----------------------------------------------------
  テキスト高さ
---------------------------------------------------- */
.text01{line-height: 37px; letter-spacing: 2px;}
@media print, screen and (min-width: 768px) {.text01{line-height: 40px;}}
@media print, screen and (min-width: 992px) {.text01{line-height: 40px;}}
@media print, screen and (min-width: 1200px) {.text01{line-height: 45px;}}
@media print, screen and (min-width: 1400px) {.text01{line-height: 45px;}}

.text02{line-height: 30px; letter-spacing: 2px;}
@media print, screen and (min-width: 768px) {.text02{line-height: 35px;}}
@media print, screen and (min-width: 1400px) {.text02{line-height: 40px;}}

/* ----------------------------------------------------
  文字寄せ
---------------------------------------------------- */
/*　スマホ左寄せ　ほか中央
---------------------------------------------------- */
.ctr-text01{text-align: left;}
@media print, screen and (min-width: 768px) {.ctr-text01{text-align: center;}}

/*　スマホ中央　ほか左寄せ
---------------------------------------------------- */
.ctr-text02{text-align: center;}
@media print, screen and (min-width: 768px) {.ctr-text02{text-align: left;}}


/* ----------------------------------------------------
  背景色と文字色
---------------------------------------------------- */
/* 背景色
---------------------------------------------------- */
/* 単色 */
.bg-white{background: #fff;}
.bg-black{background: #111;}
.bg-gray{background: #eee;}
.bg-blue{background: #246fb8;}
.bg-bluegreen{background: #99e7e2;}
.bg-lightblue{background: #f5f8f8;}

/* 文字色
-------------------------- */
.white{color:#fff}
.red{color:#f00}
.blue{color:#1d388d}
.green{color:#00cc66}


/* ----------------------------------------------------
  テキストリンク
---------------------------------------------------- */
.text01 a:link, .text01 a:visited,
.text01 a:hover, .text01 a:active{
  text-decoration:underline;
  color: #1d388d;/* 任意 */
}


/* ----------------------------------------------------
  見出し
---------------------------------------------------- */
/* 見出し01
---------------------------------------------------- */
.midasi01{
	font-size: 15px;
	line-height: 25px;
	letter-spacing: 3px;
  margin-bottom: 20px;
	}
.midasi01 span{
	font-size: 37px;
	letter-spacing: 2px;
}
@media print, screen and (min-width: 768px) {
.midasi01{
	font-size: 15px;
	line-height: 33px;
	letter-spacing: 3px;
  margin-bottom: 30px;
	}
.midasi01 span{
	font-size: 43px;
	letter-spacing: 5px;
	}
}
@media print, screen and (min-width: 1200px) {
.midasi01 span{
	font-size: 50px;
	}
}
@media print, screen and (min-width: 1400px) {
.midasi01 span{
	font-size: 60px;
	}
}

.midasi01 i{
  color: #99e7e2;
  font-size: 9px;
  vertical-align: 20%;
  margin-right: 5px;
}

/* 見出し02
---------------------------------------------------- */
.midasi02{
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 15px;
	letter-spacing: 2px;
	}
@media print, screen and (min-width: 768px) {
.midasi02{
	font-size: 20px;
	line-height: 40px;
	margin-bottom: 20px;
	}
}
@media print, screen and (min-width: 992px) {
.midasi02{
	font-size: 25px;
	line-height: 45px;
	margin-bottom: 30px;
	}
}

/* 見出し03
---------------------------------------------------- */
.midasi03{
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 20px;
	letter-spacing: 2px;
	}
@media print, screen and (min-width: 768px) {
.midasi03{
	font-size: 19px;
	line-height: 35px;
	margin-bottom: 15px;
	}
}
@media print, screen and (min-width: 992px) {
.midasi03{
	font-size: 20px;
	line-height: 36px;
	letter-spacing: 4px;
  margin-bottom: 20px;
	}
}

/* 見出し04
---------------------------------------------------- */
/* 見出し04 小さな下線つき
---------------------------------------------------- */
.midasi04 {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 2px;
    position: relative;
    margin-bottom: 35px;
    color: #0cc8b8;
}

@media print, screen and (min-width: 768px) {
    .midasi04 {
        font-size: 19px;
        line-height: 35px;
        margin-bottom: 40px;
    }
}

@media print, screen and (min-width: 992px) {
    .midasi04 {
        font-size: 20px;
        line-height: 36px;
        margin-bottom: 40px;
    }
}

.midasi04::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 70px;
    height: 2px;
    background-color: #0cc8b8;
}

@media print, screen and (min-width: 768px) {
.midasi04::after {
    bottom: -25px;
  }
}

/* ----------------------------------------------------
  お知らせ
---------------------------------------------------- */
/* お知らせ 02
---------------------------------------------------- */
#information-area_02 {
  height: 300px;
  overflow: scroll; /* 常にスクロールバーを表示 */
  overflow-x: hidden;
  background: #fff;
  padding-right: 20px; /* 右側に余白を追加してスクロールバーがかぶらないようにする */
}

/*スクロールバー表示させる*/
#information-area_02::-webkit-scrollbar{ 
   width: 10px;
   border-radius: 5px;  
}
#information-area_02::-webkit-scrollbar-thumb{ 
   background: #99e7e2;
   border-radius: 5px;
}
#information-area_02::-webkit-scrollbar-track-piece:start{
   background: #eee;
   border-radius: 5px;   
}
#information-area_02::-webkit-scrollbar-track-piece:end{
   background: #eee;
   border-radius: 5px;   
}


.news_table_02 .new{
	color: #5bdad0;
	font-weight: lighter;
	font-size: 13px;
	margin-left: 10px;
}
.news_table_02{
	width:98%;
	border-collapse: collapse;
	position: relative;
}
.news_table_02 th{
	padding:10px 0 3px 0;
	display: block;
	font-weight: normal;
	text-align: left;
	letter-spacing: 0.1em;
}

.news_table_02 td{
	padding:0 0 12px 0;
	display: block;
	text-align: left;
}

@media print, screen and (min-width: 768px) {
.news_table_02 th{
	width: 200px;
	padding:10px 0;
	vertical-align:top;
	display:table-cell;
	}
.news_table_02 td{
	padding:10px 0;
	vertical-align:top;
	display:table-cell;
	}
}
@media print, screen and (min-width: 1200px) {
.news_table_02 th{
	width: 220px;
	}
}

.news_table_02 .news_btn{text-align: right;}
@media print, screen and (min-width: 1200px) {.news_table_02 .news_btn{text-align: center;}}

.news_table_02 a:link {
  margin-top: 5px;
  display: inline-block;
  width: 200px;
  font-size: 13px;
  padding:1px 3px 0 1px;
  text-align: center;
  letter-spacing: 2px;
  color: #333 !important;
  background: #fff;
  border: 1px solid #333;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 100px;
}

@media print, screen and (min-width: 992px) {
.news_table_02 a:link {
  margin-top: 0px;
  display: block;
  width: 100%;
  }
}

.news_table_02 a:visited {
  color: #333 !important;
}

.news_table_02 a:hover,
.news_table_02 a:active {
  background: #99e7e2;
  letter-spacing: 3px;
  color: #333 !important;
  text-decoration: none !important;
}

.news_table_02 a i {
  font-size: 16px;
  margin: 0 10px;
}

/* ----------------------------------------------------
  h2
---------------------------------------------------- */
/* 左寄せ　背景画像あり　文字アニメーション
---------------------------------------------------- */
.h2_02{background: url("../images/h2_02.jpg") no-repeat scroll 50% 0% / cover;}
.h2_03{background: url("../images/h2_03.jpg") no-repeat scroll 50% 0% / cover;}
.h2_04{background: url("../images/h2_04.jpg") no-repeat scroll 50% 0% / cover;}
.h2_05{background: url("../images/h2_05.jpg") no-repeat scroll 50% 0% / cover;}

.h2_midasi_01_bgimg {
  position: relative;
  color: white; /* 白文字にする */
  z-index: 0;
  overflow: hidden;
}

.h2_midasi_01_bgimg::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* ここで暗さを調整 */
  z-index: -1; /* 背景の後ろに来ないように注意 */
}

.h2_midasi_01{
	padding:30px 0 45px 0;
	text-align: center;
	color: #fff;
}
@media print, screen and (min-width: 768px) {.h2_midasi_01{padding:60px 0 90px 0;}}
@media print, screen and (min-width: 992px) {.h2_midasi_01{padding:90px 0 120px 0;}}
@media print, screen and (min-width:1200px) {.h2_midasi_01{padding:110px 0 120px 0;}}

.h2_midasi_01 p{
	font-size: 40px;
	line-height:50px;
	letter-spacing:2px;
	}
.h2_midasi_01 h2{
	font-size: 18px;
	letter-spacing:2px;
}
@media print, screen and (min-width: 768px) {
.h2_midasi_01 p{
	font-size: 55px;
	line-height:75px;
	}
.h2_midasi_01 h2{
	font-size: 20px;
	letter-spacing:5px;
	}
}
@media print, screen and (min-width: 992px) {
.h2_midasi_01 p{
	font-size: 65px;
	line-height:85px;
	}
.h2_midasi_01 h2{
	font-size: 20px;
	letter-spacing:5px;
	}
}


/* h2アニメ
---------------------------------------------------- */
.eachTextAnime span{opacity: 0;}
.eachTextAnime.appeartext span{ animation:text_anime_on 1s ease-out forwards; }
@keyframes text_anime_on {
	0% {opacity:0;}
	100% {opacity:1;}
}	

/* ----------------------------------------------------
  ボタン
---------------------------------------------------- */
/* ----------------------------------------------------
  inline-block
---------------------------------------------------- */
/* btn01_in　白背景色＋黒文字　
---------------------------------------------------- */
.btn01_in {
  display: inline-block;
  width: 270px;
  padding: 20px 2px;
  text-align: center;
  letter-spacing: 2px;
  color: #333 !important;
  background: #fff;
  border: 1px solid #333;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.btn01_in:visited {
  color: #333 !important;
}

.btn01_in:hover,
.btn01_in:active {
  background: #eee;
  letter-spacing: 3px;
  color: #333 !important;
  text-decoration: none !important;
}

.btn01_in i {
  font-size: 16px;
  margin: 0 0 0 5px;
}

/* btn02_in　黒背景色＋白文字　inline-block
---------------------------------------------------- */
.btn02_in {
  display: inline-block;
  width: 270px;
  padding: 20px 2px;
  text-align: center;
  letter-spacing: 2px;
  color: #fff !important;
  background: #333;
  border: 0px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn02_in:visited {
  color: #fff !important;
}

.btn02_in:hover,
.btn02_in:active {
  color: #fff !important;  
  background: #000;
  letter-spacing: 3px;
  text-decoration: none !important;
}

.btn02_in i {
  font-size: 16px;
  margin: 0 0 0 5px;
}

/* btn03_in　メイン背景色＋黒文字　inline-block
---------------------------------------------------- */
.btn03_in {
  display: inline-block;
  width: 270px;
  padding: 20px 2px;
  text-align: center;
  letter-spacing: 2px;
  color: #222 !important;
  background: #99e7e2;
  border: 0px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn03_in:visited {
  color: #fff !important;
}

.btn03_in:hover,
.btn03_in:active {
  color: #fff !important;  
  background: #2dc2b8;
  letter-spacing: 3px;
  text-decoration: none !important;
}

.btn03_in i {
  font-size: 16px;
  margin: 0 0 0 5px;
}

/* btn04_in　白背景色＋黒文字　
---------------------------------------------------- */
.btn04_in {
  display: inline-block;
  width: 270px;
  padding: 20px 2px;
  text-align: center;
  letter-spacing: 2px;
  color: #222 !important;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;  
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn04_in:visited {
  color: #222 !important;
}

.btn04_in:hover,
.btn04_in:active {
  color: #999 !important;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;   
  text-decoration: none !important;
  letter-spacing: 3px;  
}

.btn04_in i {
  font-size: 16px;
  margin: 0 0 0 5px;
}


/* ----------------------------------------------------
  block
---------------------------------------------------- */
/* btn01　白背景色＋黒文字　block
---------------------------------------------------- */
.btn01 {
  display: block;
  width: 100%;
  padding: 20px 2px;
  text-align: center;
  letter-spacing: 2px;
  color: #333 !important;
  background: #fff;
  border: 1px solid #333;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.btn01:visited {
  color: #333 !important;
}

.btn01:hover,
.btn01:active {
  background: #eee;
  letter-spacing: 3px;
  color: #333 !important;
  text-decoration: none !important;
}

.btn01 i {
  font-size: 16px;
  margin: 0 0 0 5px;
}

/* btn05　黒背景色＋黒文字　block
---------------------------------------------------- */
.btn02 {
  display: block;
  width: 100%;
  padding: 20px 2px;
  text-align: center;
  letter-spacing: 2px;
  color: #fff !important;
  background: #333;
  border: 0px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn02:visited {
  color: #fff !important;
}

.btn02:hover,
.btn02:active {
  color: #fff !important;  
  background: #000;
  letter-spacing: 3px;
  text-decoration: none !important;
}

.btn02 i {
  font-size: 16px;
  margin: 0 0 0 5px;
}

/* btn03　メイン背景色＋黒文字　block
---------------------------------------------------- */
.btn03 {
  display: block;
  width: 100%;
  padding: 20px 2px;
  text-align: center;
  letter-spacing: 2px;
  color: #222 !important;
  background: #99e7e2;
  border: 0px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn03:visited {
  color: #fff !important;
}

.btn03:hover,
.btn03:active {
  color: #fff !important;  
  background: #2dc2b8;
  letter-spacing: 3px;
  text-decoration: none !important;
}

.btn03 i {
  font-size: 16px;
  margin: 0 0 0 5px;
}


/* btna
---------------------------------------------------- */
.btna::before,
.btna::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
	}
.btna,
.btna::before,
.btna::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .5s;
	transition: all .5s;
	}

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

/* シンプル　棒
---------------------------------------------------- */
.table1{width:100%; border-collapse:collapse; border-bottom:1px solid #ccc;}
.table1 th{
	padding:10px;
	vertical-align:top;
	display: block;
	border-top:1px solid #ccc;
	border-left:0px solid #ccc;
	border-right:0px solid #ccc;
	font-size: 100%;
	text-align: left;
	font-weight: normal;
  background: #ddeeee;
	}
.table1 td{
	padding:10px;
	display: block;
	text-align: left;
	border-top:1px solid #ccc;
	border-left:0px solid #ccc;
	border-right:0px solid #ccc;
  background: #fff;
  word-break: break-word;
	}
@media print, screen and (min-width: 768px) {
.table1{ border-top:0px; border-bottom:0px;}
.table1 th{
	padding:25px 0;
	border-top:1px solid #333;
	border-left:0px solid #ccc;
	border-right:0px solid #ccc;
	border-bottom:1px solid #333;
	vertical-align:top;
	display:table-cell;
	width: 25%;
  background: transparent;
  text-align: center;
	}
.table1 td{
	padding:25px 0 25px 30px;
	border-top:1px solid #ccc;
	border-right:0px solid #ddd;
	border-left:0px solid #ddd;
	border-bottom:1px solid #ccc;
	text-align: left !important;
	display:table-cell;
  background: transparent;
	}
}

@media only screen and (max-width: 767px) {
.table1 span{
	text-decoration:underline;
	color:#333;
	}
}

/* テーブル内のリンク
------------------------ */
.table1 a:link,
.table1 a:visited{text-decoration:underline; color:#999;}
.table1 a:hover,
.table1 a:active{text-decoration:none; color:#999;}

/* テーブル内の見出し
------------------------ */
.title_table_01{
  font-size: 18px;
  margin-bottom: 10px;
  border-left: 3px solid #333;
  padding: 5px 0 5px 10px;  
}

/* 上が太線　表
---------------------------------------------------- */
@media only screen and (max-width: 767px) {
.table2 .thead{display: none}
}

.table2{
	width: 100%;
	border-collapse: collapse;
	border-top: 2px solid #222;
	background: #fff;
}
.table2 th{
	padding:10px;
	border-top:1px solid #222;
	border-left:0px;
	border-right:0px;
	border-bottom:1px solid #222;
	vertical-align:middle;
	display:table-cell;
	text-align: center;
	width: 38%;
	font-weight: normal;
	background-color: #eee;	
	}
.table2 td{
	padding:10px;
	border-top:1px solid #b3ccd8;
	border-right:0px;
	border-left:0px;
	border-bottom:1px solid #b3ccd8;
	text-align: left;
	display:table-cell;
  word-break: break-word;
	}

@media print, screen and (min-width: 768px) {
.table2{width:100%; background: #fff;}
.table2 th{
	width: 25%;
	text-align: center;
	padding: 15px;
	display: table-cell;
	font-weight: normal;
	background-color: #cee9f5;	
	border-top: 0px;
	border-right: 1px solid #b3ccd8;
	border-left: 1px solid #b3ccd8;
	border-bottom: 1px solid #b3ccd8;	
}
.table2 td{
	padding: 15px;
	display: table-cell;
	vertical-align: middle;
	border: 1px solid #b3ccd8;
	}
}

.table2 a:link,
.table2 a:visited{text-decoration:underline !important;}
.table2 a:hover,
.table2 a:active{text-decoration:none !important;}


/* table3 thが上で並んでる
---------------------------------------------------- */
.table3 {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #ccc;
	border-bottom: none;
	background: #fff;
}

.table3 th,
.table3 td {
	display: block;
	padding: 15px 10px;
	border-bottom: 1px solid #ccc;
	vertical-align: middle;
	text-align: left;
  word-break: break-word;
}

.table3 thead {
	display: none;
}

.table3 .thbg01 {
	background: #eee;
}

.table3 .tbox01-l {
	font-weight: 900;
}

.table3 .tbox01-r,
.table3 .tbox01-r2 {
	padding: 0 3% 0 0;
	text-align: center;
}

.table3 tbody td::before {
	content: attr(title);
	float: left;
	clear: both;
	font-weight: bold;
}

/* 768px以上
---------------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.table3 {
		border-bottom: 0 !important;
	}

	.table3 thead {
		display: table-header-group;
	}

	.table3 th,
	.table3 td {
		display: table-cell;
		padding: 15px 10px;
		text-align: left;
		border-bottom: 1px solid #ccc;
		vertical-align: middle;
	}

	.table3 thead th {
		text-align: center;
		background: #eee;
		border-left: 1px solid #ccc;
	}

	.table3 tbody th {
		text-align: center;
	}

	.table3 tbody td {
		border-left: 1px solid #ccc;
	}

	.table3 tbody tr:last-child th {
		border-bottom: 1px solid #ccc;
	}

	.table3 tbody td::before {
		content: none;
	}

	.table3 .tbox01-r,
	.table3 .tbox01-r2 {
		padding: 0 5%;
	}
}

/* テーブルの中のテーブル（枠線なし）
---------------------------------------------------- */
@media only screen and (max-width: 767px) {
.table4{
  font-size: 13px;
  line-height: 25px; 
  }
}
.table4{
	width: 100%;
	border-collapse: collapse;
  background: transparent;  
}
.table4 th{
	width: 110px;  
	padding:2px 0;
  border: none;
	border-bottom:1px solid #eee;
	text-align: left;
	display:table-cell;
	vertical-align:top;
	font-weight: normal;
  background: transparent;
	}
.table4 td{
	padding:2px 0;
  border: none;
	border-bottom:1px solid #eee;
	text-align: left;
	display:table-cell;
	vertical-align:top;
  background: transparent;
  word-break: break-word;
	}

@media print, screen and (min-width: 768px) {
.table4{
  font-size: inherit !important;
  }
.table4 th{
	width: 130px;
	padding:6px 0;
	}
.table4 td{
	padding:6px 0;
	}  
}

@media print, screen and (min-width: 1200px) {
.table4{
  font-size: inherit !important;
  }
.table4 th{
  border: none;
	width: 120px;
	padding:6px 0;
	}
.table4 td{
  border: none;  
	padding:6px 0;
	}  
}

/* ----------------------------------------------------
   お問い合わせ（ページ下部） .contact_bottom_01
---------------------------------------------------- */
@media only screen and (max-width: 767px) {
  .contact_bottom_box_01 {
    width: 100%;
    justify-content: flex-start; /* 中央寄せ解除 */
    align-items: stretch; /* 子を親の幅いっぱいに */
  }

  /* 電話とメールのボックスも幅100%に */
  .contact_bottom_l_box,
  .contact_bottom_r_box {
    width: 100%;
  }

  /* ボタンと電話番号のspanも幅いっぱい */
  .contact_bottom_tel,
  .contact_bottom_mail {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

.contact_bottom_01 {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px 0;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  align-items: stretch; /* 高さ揃える */
}

@media print, screen and (min-width: 768px) {
.contact_bottom_01 {
  padding: 50px 0;
  }
}

@media print, screen and (min-width: 768px) {
  .contact_bottom_01 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

@media print, screen and (min-width: 992px) {
  .contact_bottom_01 {
    gap: 20px;
  }
}

@media print, screen and (min-width: 1400px) {
  .contact_bottom_01 {
    grid-template-columns: 4fr 3fr 3fr;  
    gap: 30px;
  }
}

.contact_bottom_box_01 {
  display: flex;
  justify-content: center;    /* 左右中央 */
  align-items: center;        /* 上下中央 */
  flex-direction: column;     /* 縦に積む */
  text-align: center;
}

/*　見出しのエリア
---------------------------------------------------- */
.contact_bottom_title_box {
  margin: 0;
  padding: 0;
}
.contact_bottom_title_box h3 {
  margin: 0;
}

/* モバイル 棒線 */
.contact_bottom_box_01:nth-child(1) {
  position: relative;
  padding-right: 0;
  padding-bottom: 20px;
}
.contact_bottom_box_01:nth-child(1)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  background-color: #222;
  top: auto;
  right: auto;
}

/* 768px以上 棒線 */
@media print, screen and (min-width: 768px) {
  .contact_bottom_box_01:nth-child(1) {
    padding-right: 20px;
    padding-bottom: 0;
  }
  .contact_bottom_box_01:nth-child(1)::after {
    top: 10%;
    right: 0;
    width: 1px;
    height: 80%;
    background-color: #222;
    bottom: auto;
    left: auto;
  }
}


/*　電話番号のエリア
---------------------------------------------------- */
@media only screen and (max-width: 767px) {
  .contact_bottom_l_text {
    font-size: 14px;
    margin-bottom: 25px;
  }
}
@media print, screen and (min-width: 768px) {
  .contact_bottom_l_text {
    font-size: 14px;
  }
}

/*　電話ボタン 基本
---------------------------------------------------- */
.contact_bottom_tel {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  font-weight: normal;
  border-radius: 100px;
}

@media only screen and (max-width: 767px) {
  .contact_bottom_tel {
    font-size: 17px;
    padding: 15px 5px;
    color: #fff;
    background-color: #222;
    margin-bottom: 8px;
  }
}

@media print, screen and (min-width: 768px) {
  .contact_bottom_tel {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

@media print, screen and (min-width: 1200px) {
  .contact_bottom_tel {
    font-size: 28px;
    margin-bottom: 15px;
  }
}

/*　メールフォームタイトル
---------------------------------------------------- */
.contact_bottom_title01 {
  text-align: center;
  font-size: 30px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

/*　メールボタン
---------------------------------------------------- */
.contact_bottom_mail {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-size: 14px;
  padding: 15px 5px;
  text-align: center;
  letter-spacing: 2px;
  transition: all 0.5s;
  position: relative;
  border-radius: 100px;
  border:0;
}

@media print, screen and (min-width: 768px) {
  .contact_bottom_mail {
    width: 200px;
    padding: 7px 5px;
    display: inline-block;
  }
}
@media print, screen and (min-width: 1400px) {
  .contact_bottom_mail {
    width: 250px;
  }
}

.contact_bottom_mail:link,
.contact_bottom_mail:visited {
  color: #222;
  background: #99e7e2;
  text-decoration: none;
}
.contact_bottom_mail:hover,
.contact_bottom_mail:active {
  color: #fff;
  background: #0cc8b8;
  text-decoration: none;
}

/*　メール アイコン
---------------------------------------------------- */
.contact_bottom_mail i {
  font-size: 15px;
  margin-right: 5px;
}


/* ----------------------------------------------------
   お問い合わせ
---------------------------------------------------- */
.mail-box{
	padding: 15px 10px;
	background: #fff;
	text-align: center;
	border:1px solid #333;
	}
.mail-box h3{
	color:#333;
	font-size: 20px;
	margin-bottom: 20px;
	}
.mail-box h3 span{
	padding-bottom: 5px;
	border-bottom: 1px solid #333;
	}

@media print, screen and (min-width: 768px){
.mail-box{
	padding: 30px 10px;
	}
.mail-box h3{
	font-size: 30px;
	margin-bottom: 30px;
	}
}


/* 電話ボタン　電話の見た目
---------------------------------------------------- */
.contact_btn_tel{
	display:block;
	color:#222;	
	background-color: #99e7e2;
	font-size:120%;	
	padding:15px 5px;
	text-align:center;
	font-weight: normal;
	margin-bottom: 8px;
  border-radius: 100px;
	}
	
.contact_btn_tel a:link,
.contact_btn_tel a:visited,
.contact_btn_tel a:hover,
.contact_btn_tel a:active{color:#222}
.contact_btn_tel i{font-size:80%; margin:0 5px 0 0; color:#222; vertical-align: middle;}

@media print, screen and (min-width: 768px) {
.contact_btn_tel{
	display:inline;
	background-color:transparent;
	padding:0;
	text-align:left;
	color: #222;
	font-size:24px;
	margin-bottom: 0;
	}
.contact_btn_tel i{margin:0 5px 0 0; color:#222;}
}

@media print, screen and (min-width: 992px) {
.contact_btn_tel{font-size:35px;}
.contact_btn_tel i{margin:0 8px 5px 0; font-size: 25px;}
}

/* FAXの見た目
---------------------------------------------------- */
.contact_btn_fax{
	font-weight:lighter;		
	display:block;
	font-size:120%;	
	text-align:center;
	}

.contact_btn_fax a:link,
.contact_btn_fax a:visited,
.contact_btn_fax a:hover,
.contact_btn_fax a:active{color:#fff}
.contact_btn_fax i{font-size:90%; margin:0 5px 5px 0; vertical-align: middle;}

@media print, screen and (min-width: 768px) {
.contact_btn_fax{
	display:inline;
	background-color:transparent;
	padding:0;
	text-align:left;
	font-size:24px;
	margin-bottom: 0;
	}
.contact_btn_fax i{margin:0 5px 0 0; color:#333;} /* アイコンの色変更 */
}

@media print, screen and (min-width: 992px) {
.contact_btn_fax{font-size:35px;}
.contact_btn_fax i{margin:0 8px 5px 0; font-size: 25px;}
}

/* ----------------------------------------------------
   余白（左右）
---------------------------------------------------- */
@media print, screen and (min-width: 768px) {.wide01{ padding:0 3%;}}
@media print, screen and (min-width: 1200px) {.wide01{ padding:0 5%;}}

@media print, screen and (min-width: 768px) {.wide02{ padding:0 3%;}}
@media print, screen and (min-width: 1200px) {.wide02{ padding:0 10%;}}

@media print, screen and (min-width: 1200px) {.wide03{ padding:0 15%;}}

/* ----------------------------------------------------
   余白（上下）
---------------------------------------------------- */
.pp00 {padding: 0 !important;}
@media print, screen and (min-width: 768px) {.pp00-2 {padding: 0 !important;}}

.part30{padding:30px 0;}
@media print, screen and (min-width: 576px) {.part30{padding:30px 0}}
@media print, screen and (min-width: 768px) {.part30{padding:30px 0}}

.part60{padding:30px 0;}
@media print, screen and (min-width: 576px) {.part60{padding:30px 0}}
@media print, screen and (min-width: 768px) {.part60{padding:30px 0}}
@media print, screen and (min-width: 992px) {.part60{padding:60px 0}}

.part80{padding:30px 0;}
@media print, screen and (min-width: 576px) {.part80{padding:30px 0}}
@media print, screen and (min-width: 768px) {.part80{padding:60px 0}}
@media print, screen and (min-width: 992px) {.part80{padding:80px 0}}

.part100{padding:30px 0;}
@media print, screen and (min-width: 576px) { .part100{padding:30px 0}}
@media print, screen and (min-width: 768px) { .part100{padding:60px 0}}
@media print, screen and (min-width: 992px) { .part100{padding:80px 0}}
@media print, screen and (min-width: 1200px) {.part100{padding:100px 0}}

.part120{padding:30px 0;}
@media print, screen and (min-width: 576px) { .part120{padding:30px 0}}
@media print, screen and (min-width: 768px) { .part120{padding:60px 0}}
@media print, screen and (min-width: 992px) { .part120{padding:100px 0}}
@media print, screen and (min-width: 1200px) {.part120{padding:120px 0}}

.part150{padding:30px 0;}
@media print, screen and (min-width: 576px) { .part150{padding:30px 0}}
@media print, screen and (min-width: 768px) { .part150{padding:60px 0}}
@media print, screen and (min-width: 992px) { .part150{padding:100px 0}}
@media print, screen and (min-width: 1200px) {.part150{padding:150px 0}}

.part170{padding:30px 0;}
@media print, screen and (min-width: 576px) { .part170{padding:30px 0}}
@media print, screen and (min-width: 768px) { .part170{padding:60px 0}}
@media print, screen and (min-width: 992px) { .part170{padding:100px 0}}
@media print, screen and (min-width: 1200px) {.part170{padding:170px 0}}

.part200{padding:30px 0;}
@media print, screen and (min-width: 576px) { .part200{padding:30px 0}}
@media print, screen and (min-width: 768px) { .part200{padding:60px 0}}
@media print, screen and (min-width: 992px) { .part200{padding:100px 0}}
@media print, screen and (min-width: 1200px) {.part200{padding:170px 0}}
@media print, screen and (min-width: 1400px) {.part200{padding:200px 0}}

.part_side100{padding:0 0 30px 0;}
@media print, screen and (min-width: 576px) { .part_side100{ padding:0 0 30px 0}}
@media print, screen and (min-width: 768px) { .part_side100{ padding:0 0 80px 0}}
@media print, screen and (min-width: 992px) { .part_side100{ padding:0 0 100px 0}}

.part_side150{padding:0 0 30px 0;}
@media print, screen and (min-width: 576px) { .part_side150{ padding:0 0 30px 0}}
@media print, screen and (min-width: 768px) { .part_side150{ padding:0 0 80px 0}}
@media print, screen and (min-width: 992px) { .part_side150{ padding:0 0 100px 0}}
@media print, screen and (min-width: 1200px) {.part_side150{padding:0 0 150px 0}}

.part_side170{padding:0 0 30px 0;}
@media print, screen and (min-width: 576px) { .part_side0170{ padding:0 0 30px 0}}
@media print, screen and (min-width: 768px) { .part_side170{ padding:0 0 80px 0}}
@media print, screen and (min-width: 992px) { .part_side170{ padding:0 0 100px 0}}
@media print, screen and (min-width: 1200px) {.part_side170{padding:0 0 170px 0}}

.part_side200{padding:0 0 30px 0;}
@media print, screen and (min-width: 576px) { .part_side200{ padding:0 0 30px 0}}
@media print, screen and (min-width: 768px) { .part_side200{ padding:0 0 80px 0}}
@media print, screen and (min-width: 992px) { .part_side200{ padding:0 0 100px 0}}
@media print, screen and (min-width: 1200px) {.part_side200{padding:0 0 170px 0}}
@media print, screen and (min-width: 1400px) {.part_side200{padding:0 0 200px 0}}



.part_side100{padding:0 0 30px 0;}
@media print, screen and (min-width: 576px) { .part_side100{ padding:0 0 30px 0}}
@media print, screen and (min-width: 768px) { .part_side100{ padding:0 0 80px 0}}
@media print, screen and (min-width: 992px) { .part_side100{ padding:0 0 100px 0}}

.part_side120{padding:0 0 30px 0;}
@media print, screen and (min-width: 576px) { .part_side120{ padding:0 0 30px 0}}
@media print, screen and (min-width: 768px) { .part_side120{ padding:0 0 80px 0}}
@media print, screen and (min-width: 992px) { .part_side120{ padding:0 0 100px 0}}
@media print, screen and (min-width: 1200px) {.part_side120{padding:0 0 120px 0}}

.part_side150{padding:0 0 30px 0;}
@media print, screen and (min-width: 576px) { .part_side150{ padding:0 0 30px 0}}
@media print, screen and (min-width: 768px) { .part_side150{ padding:0 0 80px 0}}
@media print, screen and (min-width: 992px) { .part_side150{ padding:0 0 100px 0}}
@media print, screen and (min-width: 1200px) {.part_side150{padding:0 0 150px 0}}

.part_side170{padding:0 0 30px 0;}
@media print, screen and (min-width: 576px) { .part_side170{ padding:0 0 30px 0}}
@media print, screen and (min-width: 768px) { .part_side170{ padding:0 0 80px 0}}
@media print, screen and (min-width: 992px) { .part_side170{ padding:0 0 100px 0}}
@media print, screen and (min-width: 1200px) {.part_side170{padding:0 0 170px 0}}

.part_side200{padding:0 0 30px 0;}
@media print, screen and (min-width: 576px) { .part_side200{ padding:0 0 30px 0}}
@media print, screen and (min-width: 768px) { .part_side200{ padding:0 0 80px 0}}
@media print, screen and (min-width: 992px) { .part_side200{ padding:0 0 100px 0}}
@media print, screen and (min-width: 1200px) {.part_side200{padding:0 0 170px 0}}
@media print, screen and (min-width: 1400px) {.part_side200{padding:0 0 200px 0}}

/* ----------------------------------------------------
   アコーディオンメニュー（カタログなど）
---------------------------------------------------- */
.accordion dt {
    display: inline-block;
    padding: 15px;
    width: 100%;
    font-weight: normal;
    color: #fff;
    background: #222;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
}

.accordion dd {
    display: none;
}

.accordion dd ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.accordion dd li {
    border-bottom: 1px solid #ccc;
    background-color: #fff;
}

.accordion dd li a {
    display: block;
    padding: 15px;
    text-align: center;
}

.accordion dd li a:link,
.accordion dd li a:visited,
.accordion dd li a:hover,
.accordion dd li a:active {
    color: #333;
}

.accordion dd li a:hover {
    background: #eee !important;
    color: #333 !important;
}

.accordionIcon,
.accordionIcon span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}

.accordionIcon {
    position: relative;
    width: 24px;
    height: 24px;
    float: right;
    display: block;
}

.accordionIcon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
}

.accordionIcon span:nth-of-type(1) {
    top: 0;
}

.accordionIcon span:nth-of-type(2) {
    top: 11px;
}

.accordionIcon span:nth-of-type(3) {
    bottom: 0;
}

.active .accordionIcon span:nth-of-type(1) {
    -webkit-transform: translateY(11px) rotate(-315deg);
    transform: translateY(11px) rotate(-315deg);
}

.active .accordionIcon span:nth-of-type(2) {
    opacity: 0;
}

.active .accordionIcon span:nth-of-type(3) {
    -webkit-transform: translateY(-11px) rotate(315deg);
    transform: translateY(-11px) rotate(315deg);
}


@media print, screen and (min-width: 768px) {
    .accordion dt {
        background-image: none;
        cursor: default;
    }

    .accordion dt.active {
        background-image: none;
    }

    .accordion dd {
        display: block;
    }

    .accordionIcon {
        display: none;
    }

    .accordion dd li a {
        padding: 10px 5px;
    }

    .accordion dd li a:hover {
        background: #999 !important;
        color: #fff !important;
    }

    .accordion dd ul {
        border: 0;
    }

    .accordion dd li {
        background-color: #fff;
        float: left;
        border: 0;
        width: 46%;
        margin: 0 10px 15px 10px;
    }
}

@media print, screen and (min-width: 992px) {
    .accordion dd li {
        width: 22%;
    }
}

@media print, screen and (min-width: 1200px) {
    .accordion dd li {
        width: 22.5%;
    }
}

@media print, screen and (min-width: 1400px) {
    .accordion dd li {
        width: 23%;
    }
}

@media only screen and (max-width: 767px) {
    .accordion .navon {
        background: #999 !important;
        color: #fff !important;
    }
}

@media print, screen and (min-width: 768px) {
    .accordion .navon {
        background: #999 !important;
        color: #fff !important;
    }
}


/* ----------------------------------------------------
   レイアウトボックス
---------------------------------------------------- */
/* 通常ボックス（左右余白） bootstrap
------------------------------------ */
@media print, screen and (min-width: 1200px) {
  .box_r_yohaku_01 {
    padding-right: 60px;
  }
}

@media print, screen and (min-width: 1200px) {
  .box_l_yohaku_01 {
    padding-left: 60px;
  }
}

/* サイト固有のボックス（左右上下　余白） bootstrap
------------------------------------ */
@media print, screen and (min-width: 768px) {
  .box_original_01 {
    padding: 0 10%;
  }
}

@media print, screen and (min-width: 1400px) {
  .box_original_01 {
    padding: 5% 13%;
  }
}

/* ボックス3つ並び（間に棒線） bootstrap
------------------------------------ */
.box_border_01{
	padding:20px 20px 0 20px;
}
  @media print, screen and (min-width: 768px) {
  .box_border_01{
  	padding:2% 10%;
  	border-right: 1px solid #333;
  	}
  }
  @media print, screen and (min-width: 1200px) {
  .box_border_01{
  	padding:2% 15%;
  	border-right: 1px solid #333;
  	}
  }

.box_border_02{
	padding:20px 20px 0 20px;
}
  @media print, screen and (min-width: 768px) {
  .box_border_02{
  	padding:2% 10%;
	}
}
  @media print, screen and (min-width: 1200px) {
  .box_border_02{
  	padding:2% 15%;
	}
}

/* ボックス3つ並び（白ボックス） bootstrap
------------------------------------ */
.box_yohakubox_01{
  padding:40px 20px 20px 20px;
  background-color: #fff;
  border-radius: 10px;
  position:relative;
  margin:0 0 40px 0;
}
@media print, screen and (min-width: 768px) {
  .box_yohakubox_01{
    padding:60px 15px 15px 15px;
  }
}
@media print, screen and (min-width: 1200px) {
  .box_yohakubox_01{
    padding:70px 30px 30px 30px;
    margin:0 10px 70px 10px;
  }
}
@media print, screen and (min-width: 1400px) {
  .box_yohakubox_01{
    padding:80px 40px 30px 40px;
    margin:0 20px 70px 20px;
  }
}

.box_yohakubox_01 .midasi_number{
  padding:7px 10px;
  color: #fff;
  font-size: 18px;
  display: inline-block;
  border-radius: 10px;
  background: #99e7e2;
  position:absolute;
  top:-20px;
  left:20px;
}

@media print, screen and (min-width: 768px) {
  .box_yohakubox_01 .midasi_number{
    padding:12px 15px;
    font-size: 19px;
    top:-10px;
    left:-10px;
  }
}
@media print, screen and (min-width: 992px) {
  .box_yohakubox_01 .midasi_number{
    padding:20px 23px;
    font-size: 20px;
    top:-20px;
    left:-20px;
  }
}

.box_yohakubox_01 h4 {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 15px;
}
@media print, screen and (min-width: 992px) {
  .box_yohakubox_01 h4 {
    font-size: 20px;
  }
}

.box_yohakubox_01 p {
  font-size: 15px;
  margin-bottom: 15px;
}
@media print, screen and (min-width: 768px) {
  .box_yohakubox_01 p {
    margin-bottom: 20px;
  }
}

/* 左右配置　グリッドレイアウト（１：２）
------------------------------------ */
.box_arrangement_01 {
  width: 100%;
  margin: 0 auto;
  display: grid;/* グリッドレイアウトを指定  親要素・子要素両方にdisplay:gridを命令 */   
  grid-template-columns: 1fr;/* グリッドの列の幅を指定 */
  gap: 20px ;/* グリッドの列・行両方の間の余白を指定 */
}

@media print, screen and (min-width: 768px) {
  .box_arrangement_01 {
    gap: 40px ;
  }
}

@media print, screen and (min-width: 992px) {
  .box_arrangement_01 {
    gap: 40px ;
  }
}

@media print, screen and (min-width: 1200px) {
  .box_arrangement_01 {
    grid-template-columns: 1fr 2fr; 
    gap: 80px ;
  }
}

/* 左右配置　グリッドレイアウト（１：２）
------------------------------------ */
.box_sayu_01 {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px ;
}

@media print, screen and (min-width: 768px) {
  .box_sayu_01 {
    grid-template-columns: 1fr 2fr;    
    gap: 40px ;
  }
}

@media print, screen and (min-width: 992px) {
  .box_sayu_01 {
    grid-template-columns: 1fr 2fr;   
    gap: 40px ;
  }
}

@media print, screen and (min-width: 1200px) {
  .box_sayu_01 {
    grid-template-columns: 4fr 5fr;      
    gap: 60px ;
  }
}

@media print, screen and (min-width: 1400px) {
  .box_sayu_01 {
    grid-template-columns: 2fr 3fr;   
    gap: 120px ;
  }
}

.box_sayu_01_box { 
  display: grid;
  grid-template-rows: subgrid;
}

/* 左右配置　グリッドレイアウト（１：２）
------------------------------------ */
.box_sayu_02 {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px ;
}

@media print, screen and (min-width: 768px) {
  .box_sayu_02 {
    grid-template-columns: 2fr 1fr;
    gap: 40px ;
  }
}

@media print, screen and (min-width: 992px) {
  .box_sayu_02 {
    grid-template-columns: 2fr 1fr;   
    gap: 40px ;
  }
}

@media print, screen and (min-width: 1200px) {
  .box_sayu_02 {
    grid-template-columns: 5fr 4fr;      
    gap: 60px ;
  }
}

@media print, screen and (min-width: 1400px) {
  .box_sayu_02 {
    grid-template-columns: 3fr 2fr;   
    gap: 120px ;
  }
}

.box_sayu_02_box { 
  display: grid;
  grid-template-rows: subgrid;
}


/* 左右配置した際の画像縦長にしたりする
------------------------------------ */
/* 768px〜991px：細長い */
@media screen and (min-width: 768px) and (max-width: 991.98px) {
  .tatenaga_chosei_img {
    aspect-ratio: 1 / 3.1;
    overflow: hidden;
  }

  .tatenaga_chosei_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }
}

/* 992px〜1399px：やや縦長 */
@media screen and (min-width: 992px) and (max-width: 1399.98px) {
  .tatenaga_chosei_img {
    aspect-ratio: 2 / 3.7;
    overflow: hidden;
  }

  .tatenaga_chosei_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }
}

/* 1400px以上：元のアスペクト比に戻す */
@media print, screen and (min-width: 1400px) {
  .tatenaga_chosei_img {
    aspect-ratio: auto;
    overflow: visible;
  }

  .tatenaga_chosei_img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
    display: block;
  }
}

/* ボックス3つ並び　グリッドレイアウト
------------------------------------ */
.grid_container_01 {
  width: 100%;
  margin: 0 auto;
  display: grid;/* グリッドレイアウトを指定  親要素・子要素両方にdisplay:gridを命令 */   
  grid-template-columns: 1fr;/* グリッドの列の幅を指定 */
  gap: 30px 40px ;/* グリッドの列・行両方の間の余白を指定 */
}

@media print, screen and (min-width: 768px) {
  .grid_container_01 {
    grid-template-columns: 1fr 1fr 1fr;/* グリッドの列の幅を指定 */
    gap: 10px ;/* グリッドの列・行両方の間の余白を指定 */
  }
}

@media print, screen and (min-width: 992px) {
  .grid_container_01 {
    gap: 40px ;
  }
}

@media print, screen and (min-width: 1200px) {
  .grid_container_01 {
    gap: 80px ;
  }
}

.grid_container_01_box { 
  display: grid;/* グリッドレイアウトを指定 */
  grid-template-rows: subgrid;/* グリッドの行の高さを指定  親要素・子要素両方にdisplay:gridを命令 */    
  grid-row: span 2;/* グリッドの縦方向の位置を指定 */
  gap: 5px;/* グリッドの列・行両方の間の余白を指定　box内の要素同士の余白*/
}


/* 背景あり　左右文字配置　カプセル型
------------------------------------ */
.box_capsule{
  background: url("../images/bg_capsule.jpg") no-repeat scroll 50% 0% / cover;
  border-radius: 15px;
  }
.box_capsule_l{
  padding:23px 20px;
	background: rgba(153,231,226,0.9);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
}

@media print, screen and (min-width: 768px) {
.box_capsule_l{
  padding: 10%;
  font-size: 110%;
  border-radius: 15px 0 0 15px;
  }
}
@media print, screen and (min-width: 1200px) {
.box_capsule_l{
  padding: 15%;
  font-size: 110%;
  border-radius: 15px 0 0 15px;
  }
}

/* ----------------------------------------------------
    背景固定画像
---------------------------------------------------- */
/* ----------------------------------------------------
    中央　画像固定
---------------------------------------------------- */
.bg-haikei-c{
	background: url("../images/bg-haikei-c.jpg") no-repeat center top;
	height: auto;
	background-position: 50% 50%;
	background-attachment: fixed;
	}

.part-h{padding:80px 0;}
@media print, screen and (min-width: 768px) {.part-h{padding:100px 0}}
@media print, screen and (min-width: 992px) {.part-h{padding:150px 0}}
@media print, screen and (min-width: 1400px) {.part-h{padding:200px 0}}


/* ----------------------------------------------------
    画像並び替え
---------------------------------------------------- */
/* モバイル時 */
@media only screen and (max-width: 767px) {
.area-first{order:1;}
.area-last{order:2;}
}

/* タブレット時 */
.area-first02{order:1;}
.area-last02{order:2;}

@media print, screen and (min-width: 992px) {
.area-first02{order:2;}
.area-last02{order:1;}
}

/* ----------------------------------------------------
    順序ボックス
---------------------------------------------------- */
/* フロー　
---------------------------------------------------- */
.flow_box_01{
	position:relative;
	background: #fff;
	padding:20px;
	text-align: center;
  border-radius: 8px 0;
  border:1px solid #333;
}
.flow_box_01 p{
  font-size: 120%;
}  

@media print, screen and (min-width: 768px) {
  .flow_box_01{
    padding:60px 10px 20px 10px;
  }
}
@media print, screen and (min-width: 1400px) {
  .flow_box_01{
    padding:40px;
  }
}

.flow_box_01 span{
	position:absolute;
	top:0;
	left:0;
	width: 50px;
	height: 50px;
	font-size: 20px;
	display:block;
	color:#fff !important;
	background: #333; /* 背景色 */
	padding:10px;
	text-align:center;
  border-radius: 5px 0 5px 0;  
	}
@media print, screen and (min-width: 768px) {
  .flow_box_01 span{
  	top:0;
  	left:0;
  	width: 50px;
  	height: 50px;
  	font-size: 20px;
  	padding:10px 20px 20px 13px;
	}
}
@media print, screen and (min-width: 1200px) {
  .flow_box_01 span{
  	top:0;
  	left:0;
  	width: 60px;
  	height: 60px;
  	font-size: 30px;
  	padding:15px 20px 20px 13px;
	}
}


/* 沿革　ヒストリー　
---------------------------------------------------- */
.box_workflow {
  list-style: none;
  padding: 0;
  margin: 0;
}

@media print, screen and (min-width: 992px) {
.box_workflow {
  margin-bottom: 40px;
  }
}

.box_workflow li {
  display: flex;
  flex-direction: column; /* 縦並び */
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
}

.box_workflow .box_workflow_number {
  width: auto;
  font-weight: none;
  padding-left: 24px; /* ●分のスペース */
  margin-right: 0;
  margin-bottom: 8px;
  position: relative;
  font-size: 18px;
  font-family: "EB Garamond", serif; 
  color: #222
}

.box_workflow .box_workflow_number:before {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: -6px;
  top: 0.2em;
  font-size: 14px;
  color: #99e7e2;
  z-index: 1;
}

.box_workflow li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0px; /* ●の中心 */
  top: 22px;  /* ●の下から */
  bottom: -30px;
  width: 2px;
  background-color: #99e7e2;
  z-index: 0;
}

@media print, screen and (min-width: 768px) {
  .box_workflow li:not(:last-child)::after {
    bottom: -70px;
  }
}

.box_workflow .box_workflow_cont {
  flex: none;
  padding-left: 22px;
}

/* 768以上
---------------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .box_workflow li {
    flex-direction: row; /* 横並び */
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .box_workflow .box_workflow_number {
    width: 180px;
    padding-left: 30px;
    margin-right: 20px;
    margin-bottom: 0;
    font-size: 16px;
    letter-spacing:2px;
  }

  .box_workflow .box_workflow_number:before {
    font-size: 14px;
    top: 1px;
    left: 150px;
  }

  .box_workflow li:not(:last-child)::after {
    left: 156px;
    top: 14px;
    bottom: -30px;
    width: 2px;
  }

  .box_workflow .box_workflow_cont {
    flex: 1;
  }
}


/*　共通　内容の中にリストがある場合
------------------------------ */
/* 不要な ::after を完全無効化 */
.box_workflow_cont .inner_list li::after {
  content: none !important;
}

@media only screen and (max-width: 767px) {
  .box_workflow li {
    flex-direction: column !important; /* 縦並びに戻す */
    align-items: stretch !important;   /* 子要素を横いっぱいに伸ばす */
  }

  .box_workflow_cont {
    width: 100% !important;
    min-width: 0 !important; /* flex子の幅制限回避 */
  }

  .box_workflow_cont .inner_list {
    width: 100% !important;
    padding-left: 1.5em; /* ディスク分の余白 */
    margin-left: 3px;
    list-style: disc;
    box-sizing: border-box;
    flex: 1 1 100%;
  }

  .box_workflow_cont .inner_list li {
    display: list-item !important; /* flex無効化 */
    width: 100% !important;
    position: static !important;
    border-bottom: 1px solid #eee !important;
    padding: 5px 0 !important;
    margin-bottom: 0;
    box-sizing: border-box !important;
  }
}

@media print, screen and (min-width: 768px) {
  .box_workflow_cont .inner_list {
    padding-left: 1em;
    margin-left: 5px;
    list-style: disc;
  }

  .box_workflow_cont .inner_list li {
    display: list-item !important;
    position: static !important;
    border: none;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
  }
}


/* 見出し
------------------------------ */
.box_workflow .box_workflow_cont h4{
  font-size: 16px;
  line-height: 26px;
}

/* ----------------------------------------------------
    タブ切り替え
---------------------------------------------------- */
.js-tab{margin-bottom: 8px;}
.nav-tabs {border-bottom: 0px}

.nav-tabs > li{margin-right: 8px;}
.nav-tabs > li > a,
.nav-tabs > li > a:focus {
	display: block;
	color: #222;
	text-align: center;
  background-color: #ddeeee;
  font-size: 12px;
  padding: 10px 20px;
  border-radius: 5px;  
	}

.nav-tabs > li > a:hover,
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
	display: block;
	color: #222;
	text-align: center;
  background-color: #99e7e2;
  font-size: 12px;
  padding: 10px 20px;
  border-radius: 5px;  
}

.nav-tabs i{margin-left: 5px;}


@media print, screen and (min-width: 768px)  {
.js-tab{margin-bottom: 10px;} 
.nav-tabs > li{margin-right: 10px;}
  
.nav-tabs > li{margin-right: 3px;}
.nav-tabs > li > a,
.nav-tabs > li > a:focus {
	font-size: 14px;
  padding: 15px 20px;
	}
.nav-tabs > li > a:hover,
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
	font-size: 14px;
  padding: 15px 20px;
	}
.nav-tabs > li{margin-right: 10px;}
.p-news .nav-tabs {border: 0;}
.p-news .nav-tabs::before, .p-news .nav-tabs::after {display: none;}
}


@media print, screen and (min-width: 992px)  {
.nav-tabs > li > a,
.nav-tabs > li > a:focus {
	font-size: 15px;
  padding: 15px 20px;
	}
.nav-tabs > li > a:hover,
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
	font-size: 15px;
  padding: 15px 20px;
	}
}

/* 記事エリア */
.p-news__inner{
  background: #fff;
  padding: 20px 15px 5px 15px;
  margin-top: 0;
  border-radius: 5px;
}
@media print, screen and (min-width: 768px) {
  .p-news__inner{
    padding: 30px 40px 15px 40px;
  }
}
@media print, screen and (min-width: 992px) {
  .p-news__inner{
    padding: 50px 60px 20px 60px;
  }  
}

@media print, screen and (min-width: 768px) {
.w30p{width: 31%; margin-left: 5px;}
}
@media print, screen and (min-width: 1200px) {
.w30p{width: 31.5%; margin-left: 6px;}
}
@media print, screen and (min-width: 1400px) {
.w30p{width: 32%; margin-left: 4px;}
}
@media print, screen and (min-width: 1600px) {
.w30p{width: 32%; margin-left: 6px;}
}
@media print, screen and (min-width: 1800px) {
.w30p{width: 32%; margin-left: 8px;}
}