@charset "utf-8";

/*ここでは
	ページのエリア分け
	などを記述します
*/

:root {
	--col_orange: #F59139;
	--col_navy: #034878;
	--col_blue: #04689D;
	--col_cream: #FFFAE9;
	--col_green: #339238;
	--f-shippori: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", serif;
}
.c-orange{
	color: var(--col_orange);
}
.c-navy{
	color: var(--col_navy);
}
.c-blue{
	color: var(--col_blue);
}
.c-cream{
	color: var(--col_cream);
}
.c-green{
	color: var(--col_green);
}
.f-shippori{
	font-family: var(--f-shippori);
}

/*---★---font-size設定---★---*/

html {
	font-size: 62.5%;
	font-feature-settings: "palt";
}

body {
	font-size: 1.8rem; /*18px*/
	font-weight: 500;
	line-height: 1.65;
	overflow-x: hidden;
}





body{
	font-family: "Zen Kaku Gothic New", "Hiragino Sans", "ヒラギノ角ゴシック", "Yu Gothic UI", "YuGothic", "游ゴシック体", "Meiryo", sans-serif;
	}
p {
	margin-bottom: 1em;
	line-height: inherit;
	font-size: inherit;
}
a {
	text-decoration: none;
	color: inherit;
}
p a {
  text-decoration: underline;
  color: #0b3190;
}
img{
	max-width: 100%;
	width: auto;
	}
img[src$=".svg"] {
	width: 100%;
	max-width: 100%;
	height: auto;
}
/*---h系---*/


.h2-title{
	font-size: 3.3rem;
	font-weight: 600;
	font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", serif;
	text-align: center;
	letter-spacing: 2px;
	margin-bottom: 3.5em;
}
/*.h2-title  > span{
	display: inline-block;
	border-bottom: 3px solid var(--col_blue);
	padding-bottom: 0.35em;
}*/

.h2-title  > span {
  position: relative;
  display: inline-block;
  padding-bottom: 0.2em;
}

.h2-title  > span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px; /* 下線の太さ */
  background: var(--col_blue); /* 色 */
  clip-path: polygon(
	  6px 0,              /* 左上を 8px 右へ */
	  100% 0,             /* 右上はそのまま */
	  calc(100% - 6px) 100%, /* 右下を 8px 左へ */
	  0 100%              /* 左下はそのまま */
	);
  z-index: 0;
}



h3{ font-size: 18px;}

h4{ font-size: 16px;}

h5{ font-size: 14px;}

.read-b{
	font-size: 2.3rem;
	font-weight: bold;
	margin-bottom: 3em;
	line-height: 2.1;
}

.comment{
	padding: 0 0 0 1em !important;
	text-indent: -1em;
	}
.comment13{
	padding: 0 0 0 1.3em !important;
	text-indent: -1.3em;
	display: inline-block;
	}
.comment15{
	padding: 0 0 0 1.5em !important;
	text-indent: -1.5em;
	}
.comment2{
	padding: 0 0 0 2em !important;
	text-indent: -2em;
	}
.comment3{
	padding: 0 0 0 3em !important;
	text-indent: -3em;
	}
.comment35{
	padding: 0 0 0 3.5em !important;
	text-indent: -3.5em;
	}
.comment4{
	padding: 0 0 0 4em !important;
	text-indent: -4em;
	}
/*.mincho{ font-family: "Sawarabi Mincho","游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN","HG明朝E","ＭＳ Ｐ明朝","ＭＳ 明朝",serif !important;}*/
.wf-sawarabimincho { font-family: "Sawarabi Mincho"; }
.noto-sans-jp{
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.ibm-plex-sans {
  font-family: "IBM Plex Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings:
    "width" 100;
}
.shippori-mincho-regular {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
.shoppori{
	font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", serif;
}
.radius-btn{
	font-family: "IBM Plex Sans", sans-serif;
	text-align: center;
	display: inline-flex;
	border-radius: 500px;
	font-weight: 500;
	padding: 0.2em 1.5em;/*不変*/
    line-height: 1;
    letter-spacing: 4px;
    min-height: 1.8em;
    justify-content: center;
    align-items: center;
}
.btn-orange{
	background: var(--col_orange);
	color: #FFF;
}

/* 画像の縮小率
----------------------------*/
span.img{
	display: block;
	position: relative;
	overflow: hidden;
	z-index: 0;
	}
span.img {
	position: relative;
	}
span.img img.cover{
	/*position: static;*/
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	-o-object-fit: cover;
	object-fit: cover;
	top: 0;
	-ms-transform: none;
	-moz-transform: none;
	-webkit-transform: none;
	transform: none;
	
	min-height: 100%;
	min-width: 100%;
	z-index: -1;
	}



/*---/h系---*/
/*---スマホ用h系---*/
@media screen and (max-width: 751px) {

/*---下記に記述---*/
}
/*---/スマホ用h系---*/

.t_right{
	text-align: right;
	}
.t_left{
	text-align: left;
	}
.t_center{
	text-align: center;
	}

.left {
	float: left;
	}
.right {
	float: right;
	}

.pcnone{
	display: none;
	}
.clearfix::after {
	clear: both; 
	content: " "; 
	display: block;
	}

header{
	width: 100%;
	min-height: 6rem;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	padding: 0 4rem;
	/*position: fixed;
	top: 0;*/
	z-index: 5;
	background: rgba(255, 255, 255, 0.9);
	justify-content: space-between;
	align-items: center;
}
header .logo{
	width: 8rem;
	display: flex;
	align-items: center;
}
#common-header{
	position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
}
#common-header .radius-btn {
	letter-spacing: 3px;
	}
@media screen and (max-width: 751px) {
	#common-header .entry-btn {
		font-size: clamp(1.4rem, calc(10px + 1.0666vw), 1.8rem);
	}
}

footer{
	width: 100%;
	min-height: 6rem;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	padding: 0 4rem;
	/*position: fixed;
	top: 0;*/
	z-index: 5;
	background: #f3ece3;
}
footer .logo{
	width: 8rem;
}



#contents{
	width: 100%;
	overflow: hidden;
	margin-top: 6rem;
	}
#contents::after { clear: both; content: " "; display: block;}


.cont{
	margin: 0 auto;
}


footer{
	}
footer .copyright{
	}

#page-top{ }
#page-top a{ }



@media screen and (max-width: 990px) {

img{ height: auto; max-width: 100%;}
.tabnone{ display: none;}

#contents{ width: 100%;}
header, footer{ width: 100%;}

}
@media screen and (max-width: 751px) {
p{}
.pcnone{ display: block;}
.spnone{ display: none; }

/*---h系---*/

.h2-title{
	font-size: 2.6em;
	font-size: clamp(2.4rem, calc(0.8px + 6.1333vw), 4.6rem);
	margin-bottom: 2em;
}
	
.h2-title  > span::after {
  height: 4px;
}
	
/*---/h系---*/

header,
footer{
	padding: 0 1em;
	}



}


@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 990px) {
}
@media screen and (max-width: 751px) {
}

@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 990px) {
}
@media screen and (max-width: 751px) {
}




@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 990px) {
}
@media screen and (max-width: 751px) {
}

@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 990px) {
}
@media screen and (max-width: 751px) {
}

