/** BASE RULE **/
body {
	/* font-family:
		"Yu Gothic",
		"Hiragino Sans",
		sans-serif; */
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	margin: 0px;
	color: #222;
	line-height: 1.7;
}

button:focus {
	outline: none;
}

ul li a {
	display: block;
}

/*
span{
	font-weight: 500;
}
*/
a {
	transition: all .3s;
	text-decoration: none;
}

img {
	image-rendering: -webkit-optimize-contrast;
	width: 100%;
}

section {
	padding-bottom: 2em;
	padding: 40px 0;
}

h2 {
	margin: 0px;
}

/* ヘッダー */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	transition: all .3s ease;
}

header.active {
	/* background: #ffffffc4; */
	background: #ffff;
	box-shadow: 0 3px 15px rgba(0, 0, 0, .1);
}

header.active .logo,
header.active .logo span {
	color: #222;
}
.logo_name{
	font-size: 18px !important;
    text-align: right;
    letter-spacing: 8px;
}
header.active .hamburger span {
	background: #222;
}

header .nav_list a {
	color: #222;
	white-space: nowrap;
}

.header_inner {
	display: flex;
	align-items: center;
	/* justify-content: space-between; */
}

.hamburger {
	display: none;
	width: 40px;
	height: 40px;
	border: none;
	background: none;
	cursor: pointer;
	position: relative;
	z-index: 1001;
	background: #1d4598;
}

.hamburger span {
	display: block;
	width: 30px;
	height: 3px;
	background: #ffff;
	margin: 6px auto;
	transition: .3s;
}

.header.active .hamburger span {
	/* background: #222; */
	background: #ffff;
}

.hamburger.active span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}
.nav {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 15px;
}
.header_sns {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-left: 15px;
}
.header_sns {
	display: none;
}
/* 
.logo {
	color: #333;
	font-weight: bold;
	line-height: 1.3;
}
 */
.logo {
	padding-right: 20px;
}

.logo a {
	color: #222;
	line-height: normal;
}

.logo span {
	font-size: 38px;
	display: block;
	white-space: nowrap;
}

.nav_list {
	display: flex;
	gap: 14px;
	list-style: none;
	background: #fff;
	padding: 14px 22px;
	border-radius: 50px;
	flex-wrap: nowrap;
	align-items: center;
	gap: 14px;
}

.nav a {
	font-weight: bold;
	padding: 10px 18px;
	border-radius: 999px;
	transition: .3s;
}

.nav a:hover {
	background: #eef4ff;
	color: #1d4598;
}

body.menu_open {
	overflow: hidden;
}

/* .contact_btn {
	background: #1d4598;
	color: #fff;
	border-radius: 999px;
}
 */
.header_sns_link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	transition: .3s;
}

.header_sns_link img {
	width: 40px;
	height: 40px;
	object-fit: contain;
	display: block;
}

.header_sns_link:hover {
	transform: translateY(-3px);
	opacity: .8;
}

@media (max-width: 1410px) {
	.logo {
		width: 100%;
	}

	.hamburger {
		display: block;
		position: relative;
		z-index: 1001;
	}

	.nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		background: #f5f8ff;
		transition: .4s ease;
		z-index: 1000;
		flex-direction: column;
		align-items: center;
	}

	.nav.active {
		right: 0;
	}

	.nav_list {
		/* height: 100%; */
		flex-direction: column;
		align-items: center;
		justify-content: center;
		border-radius: 0;
		background: none;
		gap: 30px;
		margin-bottom: 0px;
	}

	.nav_list a {
		color: #fff;
		font-size: 20px;
		padding: 15px;
		display: block;
	}

	.header_sns {
		justify-content: center;
		padding-bottom: 20px;
		display: flex;
		align-items: center;
		gap: 12px;
	}

	.header_sns_link img {
		width: 40px;
		height: 40px;
	}
	.header_sns_list{
		display: none;
	}
	.logo_name{
    	text-align: left;
		padding-left: 10%;
	}
}

@media (max-width: 768px) {
	.header_sns {
		display: flex;
		align-items: center;
		gap: 12px;
	}
	.logo_name{
		padding-left: 15%;
	}
}
@media (max-width: 600px) {
	.logo_name{
		padding-left: 30%;
	}
}
/* ヘッダーここまで */
/* フッター */
footer {
	background-image: url(../img/common/footer_img.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	color: #fff;
	padding: 70px;
}

.footer_box {
	display: flex;
	justify-content:space-between;
	align-items:flex-start;
	gap:40px;
	padding-bottom:50px;
}
.footer_box > div:first-child{
	flex:1;
}
.footer_nav a {
	color: #ffff;
}

.footer_inner {
	display: flex;
	justify-content: space-between;
	gap: 40px;
}

.footer_logo {
	font-size: 36px;
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 24px;
	 white-space: nowrap;
}

.footer_contact {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer_contact img {
	width: 30px;
	padding-right: 5px;
}
/* .footer_contact a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: #1d4598;
	padding: 10px 33px 10px 16px;
	border-radius: 999px;
	font-weight: bold;
	font-size: 22px;
} */
.footer_contact a {
	display: inline-flex;
	align-items: center;
	color: #fff;
	font-weight: bold;
	font-size: 22px;
}
.footer_nav ul {
	list-style: none;
}

.footer_nav li {
	margin-bottom: 10px;
}

.footer-nav_link {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #fff;
}
.footer-nav_circle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #fff;
	color: #23489b;
	font-size: 25px;
	font-weight: bold;
	flex-shrink: 0;
}
.footer-nav_circle::before{
	content:"›";
	color:#23489b;
	font-size:25px;
	font-weight:bold;
	transform:translateY(-3px);
}
.footer-nav_circle{
	font-size:0;
}
.footer_sns {
	display: flex;
	list-style: none;
	gap: 20px;
	margin: 0px;
}

.footer_sns img {
	width: 80%;
	padding: 7px;
}

.footer_sns li {
	width: 70px;
	height: 70px;
	background-color: #ffff;
	border-radius: 20px;
}

.copy {
	margin-top: 40px;
	text-align: right;
	font-size: 14px;
	opacity: .8;
}

.section_title {
	text-align: center;
	margin-bottom: 50px;
}

.section_title h2 {
	font-size: 42px;
	line-height: 1.2;
}

.section_title span {
	color: #294d9b;
	font-size: 18px;
	font-weight: bold;
}

/* --- 下層ページ --- */
.page_mv {
	padding-top: 100px;
	padding-bottom: 0px;
	background: #f5f8ff;
	/* background: #ecf5ff; */
	position: relative;
	overflow: hidden;
}

.page_mv_inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
	min-height: 420px;
}

.page_mv_content {
	width: 45%;
}

.page_mv_img {
	width: 50%;
}

.page_mv_img img {
	width: 100%;
	/* 
	height: 420px;
	 */
	object-fit: cover;

	clip-path: polygon(12% 0,
			100% 0,
			88% 100%,
			0 100%);
}
@media screen and (max-width: 1000px) {
	.footer_box {
		display: block;
		gap: 3%;
	}
	.footer_nav {
		display: none;
	}
	.footer_sns{
		padding-left: 0px;
		margin-top: 20px;
	}
}
@media screen and (max-width: 768px) {
	footer {
		padding: 30px;
	}
	.footer_contact a {
		margin-bottom: 20px;
	}

	.footer_sns {
		padding-left: 0px;
	}
}

/* =====================
パンくず
===================== */
.breadcrumb {
	margin-bottom: 30px;
}

.breadcrumb_list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding-left: 0px;
}

.breadcrumb_list li {
	display: flex;
	align-items: center;
	font-size: 14px;
	color: #666;
}

.breadcrumb_list li:not(:last-child)::after {
	content: ">";
	margin: 0 10px;
}

/* =====================
タイトル
===================== */

.page_title {
	font-size: 56px;
	font-weight: bold;
	line-height: 1.2;
	color: #1d4598;
}

.page_title span {
	display: block;
	font-size: 18px;
	font-weight: 600;
	color: #666;
	margin-top: 10px;
}

.page_contents {
	padding: 100px 0;
}

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

	.page_mv {
		padding-top: 150px;
	}

	.page_mv_inner {
		flex-direction: column;
		gap: 30px;
		min-height: auto;
	}

	.page_mv_content,
	.page_mv_img {
		width: 100%;
	}

	.page_mv_img img {
		height: 250px;

		clip-path: polygon(0 0,
				100% 0,
				100% 100%,
				0 100%);
	}

	.page_title {
		font-size: 36px;
	}

}

/* --- 下層ページここまで --- */
/* --- 行揃えの位置、均等割付 --- */
.t-align_left {
	text-align: left;
}

.t-align_right {
	text-align: right;
}

.t-align_center {
	text-align: center;
}

/*見出しリンク縦線*/
@media only screen and (max-width: 600px) {
	.top-link-border {
		display: block;
		border-right: 1px solid #2ea7f5;
		border-left: 1px solid #2ea7f5;
	}
}

@media (min-width: 768px) {
	#goToTop {
		bottom: 20px;
		right: 20px;
	}

	#goToTop>a>img {
		width: 100%;
	}
}


/** RAYOUT RULE **/
.white {
	color: #ffffff;
}

.orange {
	color: #dc7a32;
}

.container {
	width: min(1100px, 92%);
	margin: auto;
}

@media screen and (min-width: 356px) {
	.container {
		/*
		max-width: 375px;*/
		padding-right: 18px;
		padding-left: 18px;
		margin-right: 0;
		margin-left: 0;
	}
}

@media screen and (min-width: 768px) {
	.container {
		/*	max-width: 728px;*/
		margin-right: auto;
		margin-left: auto;
	}
}

@media screen and (min-width: 992px) {
	.container {
		max-width: 952px;
	}
}

@media screen and (min-width: 1200px) {
	.container {
		max-width: 1150px;
		/*		max-width: 1030px;*/
	}
}

/** STATE RULE **/

/** MODULE RULE **/

/** 見出し **/
h1 {
	font-size: 1rem;
	margin-bottom: 0;
}

h2 {
	font-size: 2.6em;
	letter-spacing: 3px;
	font-weight: bold;
}

.h2sub {
	margin-bottom: 10px;
	font-weight: 500;
	color: #b9080e;
	font-size: 1.3em;
}

.h2-under-red {
	position: relative;
	display: inline-block;
	margin-bottom: 1em;
}

.h2-under-white {
	position: relative;
	display: inline-block;
	margin-bottom: 1em;
}

.h2-under-red:before {
	content: '';
	position: absolute;
	bottom: -15px;
	display: inline-block;
	width: 60px;
	height: 5px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #b9080e;
	border-radius: 2px;
}

.h2-under-white:before {
	content: '';
	position: absolute;
	bottom: -15px;
	display: inline-block;
	width: 60px;
	height: 5px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #fff;
	border-radius: 2px;
}

.h2-ttl {
	margin-bottom: 15px;
	font-weight: 500;
	color: #b9080e;
	font-size: 1.3em;
}

.h2-ttl02 {
	font-size: 2em;
	margin-bottom: 10px;
	font-weight: bold;
	line-height: 1.2em;
}

@media screen and (max-width: 768px) {
	h2 {
		font-size: 2em;
	}
}

@media screen and (max-width: 600px) {
	h2 {
		font-size: 1.7em;
	}

	.h2-ttl02 {
		font-size: 1.7em;
	}
}

h3 {
	padding: 0rem 1rem;
	border-left: 4px solid #000;
	font-size: 20px;
	font-weight: bold;
	line-height: 32px;
}

@media screen and (max-width: 600px) {
	h3 {
		font-size: 1.2rem;
	}
}

.h4-ttl {
	padding: 0rem 1rem;
	background-color: #f4f4f4;
	border-radius: 10px;
	font-size: 1em;
	line-height: 32px;
	font-weight: bold;
}

@media screen and (max-width: 600px) {
	.h4-ttl {
		font-size: 1.2rem;
	}
}

.h2_title {
	text-align: center;
	font-weight: bold;
	margin-bottom: 0px;
}

.h2_title span {
	text-align: center;
	font-weight: bold;
	margin-bottom: 25px;
}

.h2_title-orange,
.h2_title-orange span {
	color: #ec8836;
}

.h2_title-itbucyo,
.h2_title-itbucyo span {
	color: #70ba36;
	text-align: left;
}

.h2_span01 {
	color: #9f7b63;
	font-size: 2.5em;
	margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
	.h2_span01 {
		font-size: 1.5em;
	}
}

.h2_span02 {
	color: #51aaa9;
	font-size: 18px;
	padding-top: 10px;
}

.h2_span03 {
	color: #6a81ae;
	font-size: 18px;
	padding-top: 10px;
}

.title_color01 {
	color: #81bb5e;
}

.title_color02 {
	color: #51aaa9;
}

.title_color03 {
	color: #6a81ae;
}

.text_center {
	text-align: center;
}

------------------------------------------------------------- 画像ズームアップ-ボタン --------------------------------------------------------------*/ .business-box02:after {
	content: "";
	display: block;
	width: calc(50% + 359px);
	height: calc(100% - 69px);
	background-color: #f4f4f4;
	position: absolute;
	top: 0px;
	left: 0;
	z-index: -1;
}

.c-set01 {
	margin-bottom: -50px;
}

.c-set01__item {
	margin-bottom: 50px;
}

.about-head-txt {
	font-weight: bold;
	font-size: 20px;
	padding: 10px 0;
}

.c-set01__link {
	position: relative;
}

.c-set01__img {
	width: 100%;
	height: 224px;
}

.c-set01__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.c-set01__link-txt {
	position: absolute;
	top: 50%;
	left: 30px;
	right: 20px;
	color: #fff;
	font-weight: 500;
	font-size: 2.2rem;
	line-height: 1.5;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 1;
}

.c-set01__link-txt::before {
	display: block;
	content: "";
	border-radius: 50%;
	width: 40px;
	height: 40px;
	background: #fff;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.c-set01__link-txt::after {
	display: inline-block;
	width: 17px;
	height: 11px;
	vertical-align: middle;
	background: no-repeat center/contain;
	background-image: url("../img/common/arrow-black.png");
	content: "";
	transition: all 0.3s ease;
	position: absolute;
	top: 50%;
	right: 11px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

a.u-zoom .u-zoom__img-wrap {
	display: block;
	overflow: hidden;
}

@media (min-width: 768px) {
	.c-set01 {
		margin: 0 -20px -80px;
		display: flex;
		flex-wrap: wrap;
	}

	.c-set01__item {
		flex-basis: calc(50% - 40px);
		max-width: calc(50% - 40px);
		margin: 0 20px 80px;
	}

	.c-set01__img {
		height: 354px;
	}

	a.u-zoom .u-zoom__img {
		transition: -webkit-transform 1s cubic-bezier(0.17, 0.84, 0.44, 1);
		transition: transform 1s cubic-bezier(0.17, 0.84, 0.44, 1);
		transition: transform 1s cubic-bezier(0.17, 0.84, 0.44, 1), -webkit-transform 1s cubic-bezier(0.17, 0.84, 0.44, 1);
	}

	a.u-zoom:hover .u-zoom__img {
		-webkit-transform: scale(1.1) rotate(0.01deg);
		transform: scale(1.1) rotate(0.01deg);
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
	}
}

@media (hover: hover) and (pointer: fine) {
	.c-set01__link-txt::before {
		transition: background 0.6s ease;
	}

	.c-set01__link:hover .c-set01__link-txt::before {
		background: #b9080e;
	}

	.c-set01__link:hover .c-set01__link-txt::after {
		display: inline-block;
		width: 17px;
		height: 11px;
		vertical-align: middle;
		background: no-repeat center/contain;
		background-image: url("../img/common/arrow-white.png");
		content: "";
		transition: all 0.3s ease;
		-webkit-animation: arrow01Dash 0.8s cubic-bezier(1, 0, 0, 1) 1;
		animation: arrow01Dash 0.8s cubic-bezier(1, 0, 0, 1) 1;
	}

	.c-set01-detail__list-item-link {
		transition: color 0.3s ease;
	}

	.c-set01-detail__list-item-link:hover {
		color: #b9080e;
	}

	.c-set01-detail__list-item-link:hover::after {
		display: inline-block;
		width: 17px;
		height: 11px;
		vertical-align: middle;
		background: no-repeat center/contain;
		background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2217%22%20height%3D%2210%22%3E%3Cpath%20fill%3D%22%23ec4e4e%22%20d%3D%22m11.3%209.3%203.8-3.8H0v-1h15.1L11.3.7%2012%200l4.3%204.3.7.7-.7.7L12%2010Z%22%2F%3E%3C%2Fsvg%3E");
		content: "";
		transition: all 0.3s ease;
		-webkit-animation: arrow01Dash 0.8s cubic-bezier(1, 0, 0, 1) 1;
		animation: arrow01Dash 0.8s cubic-bezier(1, 0, 0, 1) 1;
	}
}

@media (max-width: 600px) {
	.c-set01__link-txt {
		display: none;
	}
}

/**/
/*
dl{
	padding-top: 3em;
}
*/
dl div {
	padding: 1em 1.5em;
}

dl dt {
	margin-bottom: 5px;
}

dl dd {
	margin-bottom: 0;
}

@media screen and (min-width: 992px) {
	h2 {
		font-size: 2.3em;
	}
}

/* タイトル画像 */
/*トップページ用*/
/*
#title-image00{
	position: relative;
    width: 100%;
    height: 370px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 101%;
	background-image: url("../img/index/index_feature_01.png");
}
*/

#title-image01 {
	position: relative;
	width: 100%;
	height: 50vh;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: 101%;
	background-image: url("../img/common/common_title01.jpg");
}

#title-image02 {
	position: relative;
	width: 100%;
	height: 50vh;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: 101%;
	background-image: url("../img/common/common_title02.jpg");
}

#title-image03 {
	position: relative;
	width: 100%;
	height: 50vh;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: 101%;
	background-image: url("../img/common/common_title03.jpg");
}

#title-image04 {
	position: relative;
	width: 100%;
	height: 50vh;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: 101%;
	background-image: url("../img/common/common_title04.jpg");
}

#title-image05 {
	position: relative;
	width: 100%;
	height: 50vh;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: 101%;
	background-image: url("../img/common/common_title05.jpg");
}

#title-image06 {
	position: relative;
	width: 100%;
	height: 50vh;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: 101%;
	background-image: url("../img/common/common_title06.jpg");
}

#title-image07 {
	position: relative;
	width: 100%;
	height: 50vh;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: 101%;
	background-image: url("../img/common/common_title07.jpg");
}

@media screen and (max-width: 1024px) {
	#title-image01 {
		min-height: 460px;
		height: 35.9375vw;
	}

	#title-image02 {
		min-height: 460px;
		height: 35.9375vw;
	}

	#title-image03 {
		min-height: 460px;
		height: 35.9375vw;
	}

	#title-image04 {
		min-height: 460px;
		height: 35.9375vw;
	}

	#title-image05 {
		min-height: 460px;
		height: 35.9375vw;
	}

	#title-image06 {
		min-height: 460px;
		height: 35.9375vw;
	}

	#title-image07 {
		min-height: 460px;
		height: 35.9375vw;
	}
}

@media screen and (max-width: 768px) {
	#title-image01 {
		min-height: 260px;
	}

	#title-image02 {
		min-height: 260px;
	}

	#title-image03 {
		min-height: 260px;
	}

	#title-image04 {
		min-height: 260px;
	}

	#title-image05 {
		min-height: 260px;
	}

	#title-image06 {
		min-height: 260px;
	}

	#title-image07 {
		min-height: 260px;
	}
}

@media screen and (max-width: 600px) {
	#title-image01 {
		height: 195px;
		background-size: 154%;
	}

	#title-image02 {
		height: 195px;
		background-size: 154%;
	}

	#title-image03 {
		height: 195px;
		background-size: 154%;
	}

	#title-image04 {
		height: 195px;
		background-size: 154%;
	}

	#title-image05 {
		height: 195px;
		background-size: 154%;
	}

	#title-image06 {
		height: 195px;
		background-size: 154%;
	}

	#title-image07 {
		height: 195px;
		background-size: 154%;
	}
}

/* タイトル共通 */
.titlepic-box {
	position: absolute;
	top: 55%;
	width: 100%;
	text-align: center;
	line-height: 1.2;
	font-weight: 400;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.titlepic-box::before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 24px;
	display: inline-block;
	width: 60px;
	height: 3px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	border-radius: 2px;
	top: 72px;
}

.titlepic-title {
	font-size: 40px;
	font-weight: bold;
	line-height: 1.5;
	padding: 0 50px;
	text-align: center;
}

.c-underlayer--photo .c-underlayer__title {
	padding-top: 35px;
}

@media screen and (max-width: 600px) {
	.titlepic-title {
		font-size: 29px;
	}

	.titlepic-box {
		top: 52%;
	}

	.titlepic-box::before {
		top: 90px;
	}
}

.titlepic-description {
	color: white;
	text-align: center;
	font-size: 1.8em;
}

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

	#title_image01,
	#title_image02,
	#title_image03,
	#title_image04,
	#title_image05,
	#title_image06 {
		height: 31.25vw;
	}
}

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

	#title_image01,
	#title_image02,
	#title_image03,
	#title_image04,
	#title_image05,
	#title_image06 {
		height: 42vw;
	}
}

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

	#title_image01,
	#title_image02,
	#title_image03,
	#title_image04,
	#title_image05,
	#title_image06 {
		height: 49vw;
	}
}

@media screen and (max-width: 400px) {
	.titlepic-title01 {
		font-size: 29px;
	}

	.titlepic-description {
		font-size: 1em;
	}
}

/* タイトル背景 */

.ttl-box {}

.ttl-container {
	margin: 0 auto;
	max-width: 1080px;
	width: calc(100% - 48px - 48px);
}

.ttl-box-back {
	margin-top: -80px;
	padding: 40px 3.7037%;
	width: 81.48148%;
	position: relative;
	margin: 0 auto;
	background-color: #ffffff;
	padding-bottom: 80px;
}

/**/
.culture-page .culture-page__head {
	padding-bottom: 80px;
}

.c-underlayer__head {
	margin-top: -80px;
	padding: 40px 3.7037%;
	position: relative;
	background-color: #ffffff;
	border-radius: 25px;
}

.c-underlayer__head-inner {
	position: relative;
	box-sizing: border-box;
	margin: 0 auto;
	text-align: center;
}

.title-container {
	margin: 0 auto;
	max-width: 1080px;
	width: calc(100% - 48px - 48px);
}

.c-underlayer__title {
	text-align: center;
	padding-top: 35px;
}

/**/


/* フォントサイズ */
.ft15 {
	font-size: 15px;
}

.ft19 {
	font-size: 19px;
}

.ft20 {
	font-size: 20px;
}

.ftb {
	font-weight: bold;
}

.fw500 {
	font-weight: 500;
}

/*文字*/

/*太文字*/
.index-font {
	font-size: 23px;
	font-weight: bold;
	text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF,
		-1px 1px 0 #FFF, 1px -1px 0 #FFF,
		0px 1px 0 #FFF, 0 -1px 0 #FFF,
		-1px 0 0 #FFF, 1px 0 0 #FFF;
}

@media screen and (max-width: 1024px) {
	.index-font {
		font-size: 23px;
		font-weight: bold;
	}
}

/* 背景ドット */
.bg_dot {
	background-color: #fff;
	background-image:
		radial-gradient(rgb(228, 228, 228) 10%, transparent 10%);
	background-size: 10px 10px;
}

/* 格子背景 
.hoge{
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)),
                    linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
}
*/
.hoge {
	background-image: radial-gradient(rgb(228, 228, 228) 10%, transparent 10%);
	background-size: 10px 10px;
}

/*幾何学模様*/
@import url("https://fonts.googleapis.com/css?family=Merienda");

.background {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0.5;
}

/* Default Styling */
.particles-container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.particles-box {
	background: #fff;
	border-radius: 5px;
	padding: 20px;
	text-align: center;
	position: absolute;
	z-index: 1;
}


/* 背景色 */
.gray {
	background: #f4f4f4;
}

.light-blue {
	background: aliceblue;
}

/*余白*/
.h3-padding {
	padding: 50px 0 10px 0;
}

.pb5 {
	padding-bottom: 5%;
}

.pt10 {
	padding-top: 5%;
}

.mb0 {
	margin-bottom: 0;
}

.mb5 {
	margin-bottom: 5%;
}

.mt30 {
	margin-top: 30px;
}

/* パンくずリスト */
.List-Item {
	display: inline;
	font-size: 14px;
}

.List-Item::after {
	content: '＞';
	padding: 0 16px;
}

.List02 .List-Item::after {
	content: '/';
}

.List-Item:last-child::after {
	content: '';
}

.List-Item-Link {
	display: inline-block;
	text-decoration: none;
	color: inherit;
}

/*
.List02{
	margin-top: 2%;
}
*/
.List03 {
	padding-top: 2%;
	background-color: #f0f0f0;
}

@media screen and (max-width: 600px) {
	.List-Item {
		font-size: 11px;
	}
}

/* main */
section {
	/*
	padding: 100px 0 0 0;
	*/
	position: relative;
}

/*
@media screen and (max-width: 768px) {
	section{
		padding: 50px 0 0 0;
	}
}
*/
/** スクロール　アニメーション **/
.contents-fadein {
	opacity: 0;
	/* 初期値は透明にしておく */
	transition: .5s;
	/* 動くスピードを0.5秒に指定 */
	position: relative;
	/* 相対位置の設定 */
	top: 50px;
	/* 事前に下に50pxずらしておく */
}

.contents-scroll {
	opacity: 1;
	/* 透明度を元に戻す */
	top: 0;
	/* ずらしていた位置を戻すことで上に上がっているようにみえる */
}

.btn_space {
	padding-bottom: 2%;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 220px;
  height: 58px;

  background: #23489b;
  color: #fff;

  border-radius: 999px;

  font-weight: bold;

  transition: .3s;

  &:hover {
    opacity: .8;
  }
}

.center {
  text-align: center;
}
/* その場で */
.fadeIn {
	animation-name: fadeLeftAnime;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeLeftAnime {
	from {
		opacity: 0;
		transform: translateX(-100px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* 下からフェードイン*/

.fadeUp {
	opacity: 0;
	transform:
		translateY(40px);
	transition:
		opacity .8s ease,
		transform .8s ease;
}

.fadeUp.active {
	opacity: 1;
	transform:
		translateY(0);
}

/*下から文章が出てくるアニメーション*/
.slide-in {
	overflow: hidden;
	display: inline-block;
}

.slide-in_inner {
	display: inline-block;

}

/* 上下のアニメーション*/
.downAnime {
	opacity: 0;
	/* 事前に透過0 にして消しておく*/
}

.slideAnimeDownUp {
	animation-name: slideTextY100;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes slideTextY100 {
	from {
		transform: translateY(100%);
		/* 要素を上の枠外に移動*/
		opacity: 0;
	}

	to {
		transform: translateY(0);
		/* 要素を元の位置に移動*/
		opacity: 1;
	}
}

.slideAnimeUpDown {
	animation-name: slideTextY-100;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes slideTextY-100 {
	from {
		transform: translateY(-100%);
		/* 要素を下の枠外に移動*/
		opacity: 0;
	}

	to {
		transform: translateY(0);
		/* 要素を元の位置に移動*/
		opacity: 1;
	}
}

/*--------------------------------------------------------------
流れるテキスト
--------------------------------------------------------------*/
.slide-in {
	overflow: hidden;
	display: inline-block;
}

.slide-in_inner {
	display: inline-block;

}

/*左右のアニメーション*/
.leftAnime {
	opacity: 0;
	/*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
	animation-name: slideTextX100;
	animation-duration: 1.2s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes slideTextX100 {
	from {
		transform: translateX(-100%);
		/*要素を左の枠外に移動*/
		opacity: 0;
	}

	to {
		transform: translateX(0);
		/*要素を元の位置に移動*/
		opacity: 1;
	}
}

.slideAnimeRightLeft {
	animation-name: slideTextX-100;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
	opacity: 0;
}


@keyframes slideTextX-100 {
	from {
		transform: translateX(100%);
		/*要素を右の枠外に移動*/
		opacity: 0;
	}

	to {
		transform: translateX(0);
		/*要素を元の位置に移動*/
		opacity: 1;
	}
}

/* 文字1文字ずつ表示 */
.text_reveal span {
	display: inline-block;
	opacity: 0;
	transform: translateY(25px);
}

.text_reveal.show span {
	animation: textShow .6s ease forwards;
}

@keyframes textShow {
	from {
		opacity: 0;
		transform: translateY(25px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* footer フッター*/
#footer {
	padding-top: 80px;
	background-color: #eeeeee;
}

#footer a {
	color: rgb(34, 34, 34);
}

#footer a:hover {
	color: rgb(141, 141, 141);
}

.footer_logo {
	font-size: 2em;
	color: #fff;
	font-weight: bold;
	margin-bottom: 0.5em;
}
.footer_logo span{
	font-size: 18px;
}
.footer_menu {
	list-style: none;
	padding-top: 10px;
}

.footer_menu li {
	padding: 0 10px;
	background: url(../img/common/site_map_img02.png) no-repeat 0 0;
	background-size: auto 20px;
	padding-left: 30px;
}

.privacy {
	padding: 0 10px;
}

.footer_text01 {
	text-align-last: end;
}
.footer_container {
	width: min(1100px, 92%);
	margin: auto;
}
@media screen and (min-width: 1205px) {
	.footer_container {
		max-width: 1150px;
		/*		max-width: 1030px;*/
	}
}
@media screen and (max-width: 768px) {
	.footer_logo {
		font-size: 1.2em;
	}
}

#footer_brand {
	display: flex;
	padding-top: 2%;
}

address {
	font-size: 15px;
	line-height: 2;
	font-style: normal;
}

#footer_brand img {
	width: 300px;
}

.footer_logobox {
	width: 70%;
}

.footer_logobox a:hover {
	text-decoration: none !important;
}

.eigyou {
	font-size: 15px;
}

.tel_text {
	font-size: 1.7rem;
	padding-left: 12%;
	background-image: url(../img/common/footer_tel.png);
	background-position-x: 6%;
	background-position-y: 44%;
	background-repeat: no-repeat;
	background-size: 14%;
}

@media screen and (max-width: 600px) {
	.tel_text {
		padding-left: 7%;
		background-size: 12%;
	}
}

.mail_box {
	width: 60%;
	background-color: #dc7a32;
	margin: 5% 0 0 2%;
}

.mail_box02 {
	padding: 5% 20%;
	background-image: url(../img/common/footer_mail.png);
	background-position-x: 6%;
	background-position-y: 44%;
	background-repeat: no-repeat;
}

#sitemap {
	margin-top: 3em;
	background: rgba(129, 81, 28, 0.25);
	padding: 2% 10%;
}

.sitemap_item {
	padding-left: 15px;
}

#sitemap ul,
#site_map ul li {
	list-style: none;
}

#sitemap .li_title {
	font-weight: bold;
	margin-bottom: 0.5em;
}

#site_map .li_li_text {
	margin-left: 10em;
}

#footer_bottom {
	/*	margin-top: 30px;
	margin-right: 30px;*/
	text-align: right;
	display: flex;
}

#footer_bottom p {
	font-size: 13px;
}

/* トップに戻るボタン */
.page_top {
	position: fixed;
	right: 30px;
	bottom: 30px;
	width: 55px;
	height: 55px;
	border: none;
	border-radius: 50%;
	background: #1d4598;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: bold;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity .3s ease,
		transform .3s ease;
	z-index: 900;
}

.page_top:hover {
	transform: translateY(-5px);
	background: #163777;
}

.page_top.active {
	opacity: 1;
	visibility: visible;
}

.page_top::before {
	content: "↑";
	display: block;
	font-size: 20px;
	margin-bottom: 3px;
}

@media screen and (max-width: 768px) {
	.page_top {
		right: 10px;
	}
}

/* トップに戻るボタンここまで */

@media screen and (min-width: 768px) {
	.footer_copyright {
		display: none;
	}
}

@media screen and (max-width: 1024px) {
	#footer_brand {
		display: block;
	}

	.footer_logobox {
		width: 100%;
		margin-bottom: 10%;
	}

	.tel_text {
		padding-left: 19%;
		background-position-x: 5%;
	}

	.mail_box {
		width: 100%;
		margin: 0;
	}

	.mail_box02 {
		background-position-x: 4%;
	}
}

/*pcのみ改行*/
@media only screen and (min-width: 1024px) {
	.sp {
		display: none;
	}

	.tp {
		display: none;
	}

	.tppro {
		display: none;
	}

	.pc {
		display: block;
	}
}

/*ipadproのみ改行*/
@media only screen and (max-width: 1024px) {
	.sp {
		display: none;
	}

	.tp {
		display: none;
	}

	.tppro {
		display: block;
	}

	.pc {
		display: none;
	}
}

/*ipadのみ改行*/
@media only screen and (max-width: 769px) {
	.sp {
		display: none;
	}

	.tp {
		display: block;
	}

	.tppro {
		display: none;
	}

	.pc {
		display: none;
	}
}

/*spのみ改行*/
@media only screen and (max-width: 600px) {
	.sp {
		display: block;
	}

	.tp {
		display: none;
	}

	.tppro {
		display: none;
	}

	.pc {
		display: none;
	}

	.top-link {
		display: none;
	}
}

/*スマホのみ改行を入れる*/
/*
@media screen and (min-width: 601px){   
	.pc { display:inline; }
	.sp { display:none; }
  }
  @media screen and (max-width: 600px){   
	.pc { display:none; }
	.sp { display:inline; }
  }
*/
/*スマホのみ電話リンクを有効する*/
@media (min-width: 600px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}

/*印刷用CSS*/
/* 用紙サイズの指定（A4） */
@page {
	margin: 10mm;
	size: 210mm 297mm;
	/* A4縦サイズの場合 */
}

@media print {

	/* 全体設定 */
	body {
		-webkit-print-color-adjust: exact;
		/* 印刷時でも背景色や背景画像を表示 */
		width: 1300px;
		/* 印刷時の全ページ幅を統一（px数値はお好みで） */
		zoom: 0.8;
		/* なるべく多くのブラウザで切れないようにするため */
		font-size: 20px;
		overflow: visible !important;
	}

	section {
		break-inside: avoid;
	}

	.footer_menu a {
		text-decoration: none !important;
	}

	.sp {
		display: none;
	}
}