@charset "utf-8";
/* CSS Document */
/*====================================
Reset
====================================*/
html{
	width: 100%;
	font-size: 2.66666vw; /* 画面幅375pxの時1rem=10px */
	font-weight: 400;
}
body{
	min-width: 320px;
	line-height: 1;
	position: relative;
	overflow-x: hidden;
	overflow-wrap: break-word;
	word-wrap: break-word;
	font-family: "Noto Sans JP","メイリオ","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #000;
	background: #fff;
}

@media print,screen and (min-width: 600px) {
	html{
		font-size: 0.76923vw; /* 画面幅1300pxの時1rem=10px */
	}
}
@media print,screen and (min-width: 1300px) {
	html{
		font-size: 10px;
	}
}

img{
	width: 100%;
	height: auto;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
a{
	text-decoration: none;
	color:inherit;
}
svg{
	width: 100%;
	height: 100%;
}
a,
input, textarea, button, label, select,
.js--btn-hamburger,
.js--btn-tab{
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	outline: 0;
}
::selection {
	background: rgba(0, 94, 172, .2);
}

/*====================================
Common
====================================*/
.anchor{
	display: block;
	width: 0;
	height: 0;
}
.width--cmn{
	margin-left: auto;
	margin-right: auto;
	width: 33.5rem;
}
.fw--700{
	font-weight: 700;
}

@media only screen and (max-width: 599px) {
	.disp--pc{
		display: none !important;
	}
	.anchor{
		padding-top: 8rem;
		margin-top: -8rem;
	}
}

@media print,screen and (min-width: 600px) {
	.disp--sp{
		display: none !important;
	}
	.width--cmn{
		width: 110rem;
	}
}

/* アイコン
--------------------------------------*/
.icon--svg{
	display: block;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-position: center;
	mask-size: contain;
	-webkit-mask-size: contain;
	background: #231815;
	transition: background .3s ease;
}
.icon--new-tab{
	mask-image: url(../img/common/icon-new-tab.svg);
	-webkit-mask-image: url(../img/common/icon-new-tab.svg);
}

/* タイトル
--------------------------------------*/
.sec-pagettl{
	background: url(../img/greeting/pagettl-img-sp.jpg) no-repeat center center;
	background-size: cover;
}
.sec-pagettl .sec-inner{
	box-sizing: border-box;
	padding-top: 9rem;
	min-height: 40rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sec-pagettl .pagettl{
	font-size: 3.6rem;
}

@media print,screen and (min-width: 600px) {
	.sec-pagettl{
		background-image: url(../img/greeting/pagettl-img-pc.jpg);
	}
	.sec-pagettl .sec-inner{
		padding-top: 10rem;
		min-height: 50rem;
	}
	.sec-pagettl .pagettl{
		font-size: 4.5rem;
	}
}

/* パンくず
--------------------------------------*/
.pnkz{
	font-size: 1rem;
	display: flex;
}
.pnkz span:nth-child(5),
.pnkz span:nth-child(7) {
	max-width: 40%;
}
.pnkz .txt--line-clamp{
	-webkit-line-clamp: 1;
	max-height: 1em;
}

@media print,screen and (min-width: 600px) {
	.pnkz{
		font-size: 1.3rem;
	}
}

/* 色
--------------------------------------*/
.c--white{
	color: #fff !important;
}
.c--black{
	color: #000 !important;
}
.c--blue{
	color: #005EAC !important;
}

.bg--white{
	background-color: #fff !important;
}
.bg--black{
	background-color: #000 !important;
}
.bg--gray{
	background-color: #727171 !important;
}
.bg--light-gray{
	background-color: #F5F5F5 !important;
}

/* ホバー
--------------------------------------*/
@media print,screen and (min-width: 600px) {
	.hover--c-white,
	.hover--c-black{
		transition: color .3s ease;
	}
	a.hover--c-white:hover,
	a:hover .hover--c-white{
		color: #fff !important;
	}
	a.hover--c-black:hover,
	a:hover .hover--c-black{
		color: #000 !important;
	}

	.hover--bg-white,
	.hover--bg-black,
	.hover--bg-blue{
		transition: background .3s ease, color .3s ease, border .3s ease;
	}
	a.hover--bg-white:hover,
	a:hover .hover--bg-white,
	button.hover--bg-white:hover,
	button:hover .hover--bg-white{
		background-color: #fff !important;
	}
	a.hover--bg-black:hover,
	a:hover .hover--bg-black{
		background-color: #000 !important;
	}
	a.hover--bg-blue:hover,
	a:hover .hover--bg-blue{
		background-color: #005EAC !important;
	}

	.hover--underline{
		background-position: right bottom;
		background-size: 0 100%;
		background-image: linear-gradient(to bottom, transparent calc(100% - 1px), currentColor 1px);
		background-repeat: no-repeat;
		transition: color .3s ease, background-size 0.6s cubic-bezier(0.19, 1, 0.22, 1);
	}
	a.hover--underline:hover,
	a:hover .hover--underline,
	.has--dd:hover > .hover--underline,
	.js--btn-popup.hover--underline:hover,
	.js--btn-popup:hover .hover--underline{
		background-position: left bottom;
		background-size: 100% 100%;
	}

	.hover--opacity,
	.hover--img-opacity > img{
		transition: opacity .3s ease;
	}
	a.hover--opacity:hover,
	a:hover .hover--opacity,
	a.hover--img-opacity:hover > img,
	a:hover .hover--img-opacity > img{
		opacity: 0.5;
	}
	.hover--img-zoom{
		position: relative;
	}
	.hover--img-zoom > img{
		transition: transform .3s ease-in-out;
	}
	a.hover--img-zoom:hover > img,
	a:hover .hover--img-zoom > img{
		transform: scale(1.1);
	}
}

/* 画像
--------------------------------------*/
.img--fit img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* IE */
.browser--ie .img--fit{
	position: relative;
	overflow: hidden;
}
.browser--ie .img--fit img{
	width: auto;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.img--posted{
	display: block;
	width: 100%;
	position: relative;
	height: 0;
	overflow: hidden;
	padding-bottom: 75%;
}
.img--posted > img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.img--dummy{
	box-sizing: border-box;
	background-color: #fff;
	border: 1px solid #ECECEC;
}
.img--dummy img{
	position: absolute;
	height: auto;
	width: 69.81%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* テキスト
--------------------------------------*/
div.txt--i,
p.txt--i,
ul.txt--i > li,
li.txt--i{
	padding-left: 1em;
	text-indent: -1em;
}
.txt--u{
	text-decoration: underline;
}
.txt--center{
	text-align: center;
}
.txt--right{
	text-align: right;
}

@media print,screen and (min-width: 600px) {
	.txt--u:hover{
		text-decoration: none;
	}
}

.txt--cmn{
	font-size: 1.6rem;
	line-height: 1.93;
}
.txt--cmn-p-margin p:not(:first-child){
	margin-top: 1.93em;
}

@media print,screen and (min-width: 600px) {
	.txt--cmn{
		font-size: 1.8rem;
		line-height: 2.11;
	}
	.txt--cmn-p-margin p:not(:first-child){
		margin-top: 2.11em;
	}
}

.txt--line-clamp{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	max-height: calc(2.18em * 2);
	overflow: hidden;
}
.txt--line-clamp a{
	transition: color .3s ease;
}
.txt--line-clamp .hover--underline{
	transition: background-size 1.5s cubic-bezier(0.19, 1, 0.22, 1), color .3s ease;
}


/* iframe処理
--------------------------------------*/
.gmap--wrap{
	position: relative;
	width: 100%;
	overflow: hidden;
	padding-top: 74.92%;
}
.gmap--wrap iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*====================================
parts
===================================*/
.ttl--cmn1{
	padding-left: 1.9rem;
	position: relative;
	font-weight: 700;
	font-size: 2.6rem;
	margin-bottom: 3rem;
}
.ttl--cmn1:before{
	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
	left: 0;
	top: 0;
	width: 0.4rem;
	height: 100%;
	background-color: #000;
}

@media print,screen and (min-width: 600px) {
	.ttl--cmn1{
		font-size: 3rem;
		margin-bottom: 4rem;
	}
}

/*====================================
header
====================================*/
/* hamburger-btn
--------------------------------------*/
.hamburger-btn{
	box-sizing: border-box;
	cursor: pointer;
	position: fixed;
	z-index: 1001;
	width: 5rem;
	height: 5rem;
	top: 2rem;
	right: 2rem;
}
.hamburger-btn-inner{
	display: block;
	position: absolute;
	width: 2.6rem;
	height: 2.3rem;
	top: 1.3rem;
	right: 1.1rem;
	transition: transform 0.35s ease;
	z-index: 2;
}
.hamburger-btn .img,
.hamburger-btn .border{
	transition: transform 0.35s ease, opacity 0.35s ease, background .3s ease;
}
.hamburger-btn .border{
	position: absolute;
	right: 0;
	width: 3rem;
	height: 1px;
	opacity: 0;
	top: calc((100% - 1px) / 2);
}
.hamburger-btn span.border1{
	transform: rotate(45deg);
}
.hamburger-btn span.border2{
	transform: rotate(-45deg);
}

.hamburger-btn.is--open .hamburger-btn-inner{
	transform: rotate(360deg);
}
.hamburger-btn.is--open .img{
	opacity: 0;
}
.hamburger-btn.is--open .border{
	opacity: 1;
}

/* hamburger menu
--------------------------------------*/
#hamburger-menu{
	z-index:1000;
	position: fixed;
	box-sizing: border-box;
	width: 30rem;
	height: 100vh;
	top: 0;
	right: -30rem;
	background-color: rgba(0, 0, 0, .85);
	transition: transform 0.35s ease;
}
#hamburger-menu.is--open{
	transform: translateX(-30rem);
}
#hamburger-menu .menu-inner{
	box-sizing: border-box;
	overflow-y: scroll;
	position: relative;
	width: 100%;
	height: 100%;
	padding: 8rem 3rem;
}
#hamburger-menu .hamburger-nav-container .nav-item:not(:last-child){
	border-bottom: 1px solid #727171;
}
#hamburger-menu .hamburger-nav-container .nav-item-link{
	box-sizing: border-box;
	min-height: 8rem;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 2rem;
	font-size: 1.6rem;
}
#hamburger-menu .hamburger-bnr-container{
	margin-top: 2rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#hamburger-menu .hamburger-bnr-container .bnr{
	display: block;
	width: calc((100% - 1.6rem) / 2);
}
#hamburger-menu .hamburger-bnr-container .bnr:nth-child(n+3){
	margin-top: 2rem;
}
#hamburger-menu .hamburger-bnr-container .bnr .box-txt{
	margin-top: 0.5rem;
	font-size: 1.3rem;
	line-height: 1.69;
}
#hamburger-menu .hamburger-bnr-container .bnr .box-txt .icon{
	display: inline-block;
	width: 0.85rem;
	height: 0.75rem;
}

/* hamburger-layer */
#hamburger-layer{
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	z-index:999;
	pointer-events: none;
}
#hamburger-layer.is--open{
	pointer-events: auto;
}

/* header
--------------------------------------*/
header{
	box-sizing: border-box;
	position: absolute;
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
	padding-top: 2.5rem;
}
.header-logo{
	display: block;
	width: 19.4rem;
}

body.page--top header{
	padding-top: 2rem;
}
body.page--top .header-logo{
	width: 14.6rem;
}

@media only screen and (max-width: 599px) {
	body.page--top .header-logo{
		margin-left: auto;
		margin-right: auto;
	}
}

@media print,screen and (min-width: 600px) {
	.header-inner{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.header-logo{
		width: 24.3rem;
	}
	.header-nav-container .nav-list{
		display: flex;
	}
	.header-nav-container .nav-item:not(:last-child){
		margin-right: 4rem;
	}
	.header-nav-container .nav-item-link{
		font-size: 1.6rem;
	}
}

/*===============================
footer
===============================*/
/* footer1
--------------------------------------*/
.footer1{
	padding: 2rem 0;
}
.footer1 .footer-inner{
	display: flex;
	align-items: center;
}
.footer1 .footer-company-container .block-logo{
	width: 7.4rem;
}
.footer1 .footer-company-container .block-label{
	width: 7.4rem;
	height: 2.4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.5rem;
	font-size: 1rem;
}
.footer1 .footer-bnr-container{
	margin-left: 2rem;
	display: flex;
}
.footer1 .footer-bnr-container .bnr{
	box-sizing: border-box;
	width: calc((100% - 0.9rem) / 2);
	height: 6.9rem;
	position: relative;
	border: 1px solid #ECECEC;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	line-height: 1.69;
}
.footer1 .footer-bnr-container .bnr:not(:last-child){
	margin-right: 0.9rem;
}
.footer1 .footer-bnr-container .bnr .icon{
	position: absolute;
	pointer-events: none;
	width: 0.85rem;
	height: 0.75rem;
	right: 0.9rem;
	bottom: 0.9rem;
}

@media only screen and (max-width: 599px) {
	.footer1 .footer-bnr-container{
		flex: 1;
	}
	.footer1 .footer-company-container .block-label{
		margin-top: 1.1rem;
	}
}

@media print,screen and (min-width: 600px) {
	.footer1 .footer-inner{
		justify-content: center;
	}
	.footer1 .footer-company-container{
		display: flex;
		align-items: flex-end;
	}
	.footer1 .footer-company-container .block-logo{
		width: 10rem;
	}
	.footer1 .footer-company-container .block-label{
		margin-left: 1.5rem;
		width: 8rem;
		height: 3rem;
		font-size: 1.3rem;
	}
	.footer1 .footer-bnr-container{
		margin-left: 5rem;
	}
	.footer1 .footer-bnr-container .bnr{
		width: 30rem;
		height: 6rem;
		font-size: 1.6rem;
	}
	.footer1 .footer-bnr-container .bnr:not(:last-child){
		margin-right: 2rem;
	}
	.footer1 .footer-bnr-container .bnr:hover{
		border-color: #005EAC;
	}
}

/* footer2
--------------------------------------*/
.footer2{
	padding: 2rem 0;
}
.footer2 .footer-inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer2 .footer-pnkz-container{
	flex: 1;
}
.footer2 .footer-copyright-container{
	text-align: right;
	font-size: 1rem;
}

@media only screen and (max-width: 599px) {
	.footer2 .footer-copyright-container{
		line-height: 1.6;
	}
}

@media print,screen and (min-width: 600px) {
	.footer2{
		padding: 1.9rem 0;
	}
}


/*====================================
top
====================================*/
/* first-view
--------------------------------------*/
body.page--top header,
#top .sec-main .block-catch,
#top .sec-main .block-nav,
#top .sec-main .block-copyright,
#top .sec-main .container-txt{
	opacity: 0;
	filter: blur(0.5rem);
}
body.page--top.is--loaded header,
body.is--loaded #top .sec-main .block-catch,
body.is--loaded #top .sec-main .block-nav,
body.is--loaded #top .sec-main .block-copyright,
body.is--loaded #top .sec-main .container-txt{
	opacity: 1;
	filter: blur(0);
	transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1), filter 1s cubic-bezier(0.33, 1, 0.68, 1);
}
body.is--loaded #top .sec-main .block-catch{
	transition: opacity 1.5s cubic-bezier(0.33, 1, 0.68, 1), filter 1.5s cubic-bezier(0.33, 1, 0.68, 1);
}
body.page--top.is--loaded header{
	transition-delay: 1s;
}
body.is--loaded #top .sec-main .block-copyright{
	transition-delay: 2s;
}

@media print,screen and (min-width: 600px) {
	body.is--loaded #top .sec-main .container-txt{
		transition-delay: 2s;
	}
	body.is--loaded #top .sec-main .block-nav,
	body.is--loaded #top .sec-main .block-copyright{
		transition-delay: 3s;
	}
}

/* main
--------------------------------------*/
#top .sec-main{
	position: relative;
}
#top .sec-main .container-main{
	position: relative;
}
#top .sec-main .block-catch{
	position: absolute;
	width: 23.9rem;
	left: calc((100% - 23.9rem) / 2);
	top: calc((100% - 0.5rem - 9.8rem) / 2);
}
#top .sec-main .block-copyright{
	position: absolute;
	bottom: 2rem;
	right: 0;
	font-size: 1rem;
}
#top .sec-main .container-txt{
	font-size: 1.6rem;
	line-height: 2.18;
}

@media only screen and (max-width: 599px) {
	#top .sec-main .block-copyright{
		text-align: center;
		width: 100%;
	}
	#top .sec-main .container-txt{
		text-align: center;
		padding-top: 3rem;
	}
}

@media print,screen and (min-width: 600px) {
	#top .sec-main .block-bg{
		width: 100%;
		height: 70rem;
		display: flex;
	}
	#top .sec-main .block-bg .box-bg{
		width: 50%;
		height: 100%;
		background: url(../img/top/main-bg1-pc.jpg) no-repeat right center;
		background-size: cover;
	}
	#top .sec-main .block-bg .box-bg.bg2{
		background-image: url(../img/top/main-bg2-pc.jpg);
		background-position: left center;
	}
	#top .sec-main .block-catch{
		top: calc((100% - 6.8rem) / 2);
		left: calc((100% - 79.7rem - 8rem) / 2);
		width: 79.7rem;
	}
	#top .sec-main .block-nav{
		position: absolute;
		right: calc((100% - 120rem) / 2);
		bottom: 15.5rem;
	}
	#top .sec-main .block-nav .nav-item{
		text-align: right;
	}
	#top .sec-main .block-nav .nav-item:not(:last-child){
		margin-bottom: 3.5rem;
	}
	#top .sec-main .block-nav .nav-item-link{
		font-size: 1.8rem;
	}
	#top .sec-main .block-copyright{
		text-align: right;
		line-height: 2;
		bottom: 5rem;
		right: calc((100% - 120rem) / 2);
	}
	#top .sec-main .container-txt{
		position: absolute;
		z-index: 2;
		color: #fff;
		font-size: 1.8rem;
		line-height: 2.11;
		bottom: 5rem;
		left: calc((100% - 120rem) / 2);
	}
}

/* link
--------------------------------------*/
#top .sec-link{
	padding-top: 7rem;
}
#top .sec-link .link-block{
	display: block;
	position: relative;
}
#top .sec-link .link-block .box-txt{
	position: absolute;
	box-sizing: border-box;
	bottom: 0;
	left: 0;
	width: 24rem;
	height: 5rem;
	display: flex;
	align-items: center;
	padding-left: 2.5rem;
}
#top .sec-link .link-block .box-txt .bg{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, #000 0%, rgba(0, 0, 0, .4) 65%, rgba(0, 0, 0, 0) 100%);
}
#top .sec-link .link-block .box-txt .txt{
	position: relative;
	z-index: 2;
	font-size: 1.8rem;
}

@media only screen and (max-width: 599px) {
	#top .sec-link .link-block:not(:last-child){
		margin-bottom: 2rem;
	}
}

@media print,screen and (min-width: 600px) {
	#top .sec-link{
		padding-top: 10rem;
	}
	#top .sec-link .link-list{
		display: flex;
	}
	#top .sec-link .link-block{
		width: calc((100% - 2rem * 3) / 4);
	}
	#top .sec-link .link-block:not(:nth-child(4n)){
		margin-right: 2rem;
	}
	#top .sec-link .link-block .box-img{
		height: 20rem;
		overflow: hidden;
	}
	#top .sec-link .link-block .box-txt{
		width: 17.7rem;
		height: 5rem;
	}
	#top .sec-link .link-block.block-history .box-txt .bg{
		width: 24.9rem;
		background: linear-gradient(to right, #000 0%, rgba(0, 0, 0, .4) 16.5rem, rgba(0, 0, 0, 0) 100%);
	}
}


/* bnr
--------------------------------------*/
#top .sec-bnr{
	padding-top: 4rem;
	padding-bottom: 7rem;
}
#top .sec-bnr .bnr-list{
	display: flex;
	flex-wrap: wrap;
}
#top .sec-bnr .bnr{
	width: calc((100% - 1.5rem) / 2);
}
#top .sec-bnr .bnr .box-txt{
	margin-top: 1rem;
	font-size: 1.3rem;
	line-height: 1.69;
}
#top .sec-bnr .bnr .box-txt .icon{
	display: inline-block;
	width: 0.85rem;
	height: 0.75rem;
}

@media only screen and (max-width: 599px) {
	#top .sec-bnr .bnr-list{
		justify-content: space-between;
	}
	#top .sec-bnr .bnr:nth-child(n+3){
		margin-top: 2rem;
	}
}

@media print,screen and (min-width: 600px) {
	#top .sec-bnr{
		padding-top: 5rem;
		padding-bottom: 10rem;
	}
	#top .sec-bnr .bnr{
		width: calc((100% - 2rem * 3) / 4);
	}
	#top .sec-bnr .bnr:not(:nth-child(4n)){
		margin-right: 2rem;
	}
}

/*====================================
404
====================================*/
#page404 .sec-404{
	padding-top: 6rem;
	padding-bottom: 8rem;
}
#page404 .sec-404 .btn{
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 6rem auto 0 auto;
	height: 7rem;
}

@media print,screen and (min-width: 600px) {
	#page404 .sec-404{
		padding-top: 10rem;
		padding-bottom: 15rem;
	}
	#page404 .sec-404 .btn{
		width: 30rem;
	}
}

/*====================================
greeting
====================================*/
#greeting .sec-pagettl{
	background-image: url(../img/greeting/pagettl-img-sp.jpg);
}

#greeting .sec-greeting{
	padding-top: 6rem;
	padding-bottom: 8rem;
	position: relative;
}
#greeting .sec-greeting .bg{
	position: absolute;
	pointer-events: none;
	bottom: 0;
	left: 0;
	width: 100%;
	height: calc(100% - 31.3rem);
}
#greeting .sec-greeting .container-main,
#greeting .sec-greeting .container-txt{
	position: relative;
	z-index: 2;
}
#greeting .sec-greeting .container-main .box-catch{
	font-size: 2.2rem;
	line-height: 1.72;
	margin-bottom: 2.7rem;
}
#greeting .sec-greeting .container-main .item-position{
	font-size: 1.6rem;
	margin-bottom: 1.5rem;
}
#greeting .sec-greeting .container-main .item-name{
	display: flex;
	align-items: center;
}
#greeting .sec-greeting .container-main .item-name .el-company{
	font-size: 1.3rem;
	margin-right: 1rem;
}
#greeting .sec-greeting .container-main .item-name .el-name{
	font-size: 2.2rem;
}
#greeting .sec-greeting .container-txt{
	margin-top: 6rem;
}

@media only screen and (max-width: 599px) {
	#greeting .sec-greeting .container-main .block-img{
		width: 25.5rem;
		margin: 0 auto 4rem auto;
	}
}

@media print,screen and (min-width: 600px) {
	#greeting .sec-pagettl{
		background-image: url(../img/greeting/pagettl-img-pc.jpg);
	}

	#greeting .sec-greeting{
		padding-top: 10rem;
		padding-bottom: 15rem;
	}
	#greeting .sec-greeting .bg{
		height: calc(100% - 43.9rem);
	}
	#greeting .sec-greeting .container-main{
		width: 90rem;
		display: flex;
	}
	#greeting .sec-greeting .container-main .block-img{
		width: 31.7rem;
	}
	#greeting .sec-greeting .container-main .block-txt{
		flex: 1;
		padding-left: 8rem;
	}
	#greeting .sec-greeting .container-main .box-catch{
		font-size: 3.6rem;
		line-height: 1.77;
		margin-bottom: 4.5rem;
	}
	#greeting .sec-greeting .container-main .item-position{
		font-size: 1.8rem;
		margin-bottom: 2rem;
	}
	#greeting .sec-greeting .container-main .item-name .el-name{
		font-size: 2.6rem;
	}
	#greeting .sec-greeting .container-txt{
		margin-top: 8rem;
	}
}

/*====================================
history
====================================*/
#history .sec-pagettl{
	background-image: url(../img/history/pagettl-img-sp.jpg);
}

#history .sec-about{
	padding: 6rem 0;
}
#history .sec-about .container-txt img{
	width: 2.4rem;
	vertical-align: middle;
}

#history .sec-history{
	padding-top: 6rem;
	padding-bottom: 8rem;
}
#history .sec-history .history-line{
	box-sizing: border-box;
	position: relative;
	display: flex;
	padding-bottom: 1.5rem;
	min-height: 8.4rem;
}
#history .sec-history .history-line:before{
	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
	background-color: #BCBCBC;
	left: 2.7rem;
	top: 3.9rem;
	width: 1px;
	height: calc(100% - 3.9rem - 1.5rem);
}
#history .sec-history .history-line .box-txt{
	flex: 1;
	padding-left: 2rem;
}

@media only screen and (max-width: 599px) {
	#history .sec-history .container-ttl{
		margin-bottom: 3.8rem;
	}
	#history .sec-history .history-list:last-child .history-line:last-child{
		padding-bottom: 0;
		min-height: auto;
	}
	#history .sec-history .history-list:last-child .history-line:last-child:before{
		display: none;
	}
}

@media print,screen and (min-width: 600px) {
	#history .sec-pagettl{
		background-image: url(../img/history/pagettl-img-pc.jpg);
	}

	#history .sec-about{
		padding: 10rem 0;
	}
	#history .sec-about .container-txt img{
		width: 3.2rem;
	}

	#history .sec-history{
		padding-top: 10rem;
		padding-bottom: 15rem;
	}
	#history .sec-history .container-history{
		display: flex;
		justify-content: space-between;
	}
	#history .sec-history .history-list{
		width: calc((100% - 6rem) / 2);
	}
	#history .sec-history .history-line:last-child{
		padding-bottom: 0;
		min-height: auto;
	}
	#history .sec-history .history-line:last-child:before{
		display: none;
	}
}

/*====================================
report
====================================*/
#report .sec-pagettl{
	background-image: url(../img/report/pagettl-img-sp.jpg);
}

#report .sec-report,
#list .sec-list{
	box-sizing: border-box;
	min-height: calc(100vh - 40rem - 7rem);
}
#report .sec-report{
	padding-top: 6rem;
	padding-bottom: 8rem;
}
#report .sec-report .report-tbl{
	box-sizing: border-box;
	width: 100%;
	line-height: 1.37;
}
#report .sec-report .report-tbl th,
#report .sec-report .report-tbl td{
	box-sizing: border-box;
	vertical-align: middle;
	padding: 1rem;
}
#report .sec-report .report-tbl th{
	text-align: center;
	font-weight: 700;
	color: #fff;
	background-color: #727171;
	width: 11.94%;
}
#report .sec-report .report-tbl tr:not(:last-child) th{
	border-bottom: 1px solid #fff;
}
#report .sec-report .report-tbl td{
	border: 1px solid #DEDEDE;
}
#report .sec-report .report-tbl td:last-child{
	width: 34.6%;
}
#report .sec-report .report-tbl td:not(:last-child){
	border-right: none;
}
#report .sec-report .report-tbl tr:nth-child(even) td{
	background-color: #F5F5F5;
}
#report .sec-report .report-tbl tr:not(:first-child) td{
	border-top: none;
}

@media print,screen and (min-width: 600px) {
	#report .sec-pagettl{
		background-image: url(../img/report/pagettl-img-sp.jpg);
	}

	#report .sec-report,
	#list .sec-list{
		min-height: calc(100vh - 50rem - 5rem);
	}
	#report .sec-report{
		padding-top: 10rem;
		padding-bottom: 15rem;
	}
	#report .sec-report .report-tbl th,
	#report .sec-report .report-tbl td{
		padding: 2.3rem 2rem;
	}
	#report .sec-report .report-tbl th{
		width: 8.18%;
	}
	#report .sec-report .report-tbl td:last-child{
		width: 24.72%;
	}
}

/*====================================
list
====================================*/
#list .sec-pagettl{
	background-image: url(../img/list/pagettl-img-sp.jpg);
}
#list .sec-pagettl .sec-inner{
	position: relative;
	padding-top: 0;
}
#list .sec-pagettl .container-tab-btn{
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	display: flex;
	justify-content: center;
}
#list .sec-pagettl .tab-btn{
	cursor: pointer;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc((100% - 0.7rem * 2) / 3);
	height: 8rem;
	background-color: rgba(255, 255, 255, .8);
	transition: background .3s ease, color .3s ease;
}
#list .sec-pagettl .tab-btn:not(:last-child){
	margin-right: 0.7rem;
}
#list .sec-pagettl .tab-btn.is--active{
	background-color: #2D2D2D;
	color: #fff;
}
#list .sec-pagettl .tab-btn .sub-txt{
	font-size: 1.3rem;
}
#list .sec-pagettl .tab-btn .txt{
	font-size: 1.8rem;
}
#list .sec-pagettl .tab-btn .arrow{
	position: absolute;
	pointer-events: none;
	width: 1.3rem;
	height: 0.6rem;
	bottom: 1rem;
	right: calc((100% - 1.3rem) / 2);
}
#list .sec-pagettl .tab-btn .arrow:before{
	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
	box-sizing: border-box;
	width: 1rem;
	height: 1rem;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
	bottom: 0;
	right: 0.65rem;
	transform: rotate(45deg);
	transform-origin: bottom right;
	transition: border .3s ease;
}
#list .sec-pagettl .tab-btn.is--active .arrow:before{
	border-color: #fff;
}

@media only screen and (max-width: 599px) {
	#list .sec-pagettl .sec-inner{
		padding-bottom: 3.2rem;
	}
	#list .sec-pagettl .tab-btn{
		text-align: center;
		padding-bottom: 1.2rem;
	}
	#list .sec-pagettl .tab-btn .sub-txt{
		margin-bottom: 0.8rem;
	}
}

@media print,screen and (min-width: 600px) {
	#list .sec-pagettl{
		background-image: url(../img/list/pagettl-img-pc.jpg);
	}
	#list .sec-pagettl .tab-btn{
		width: 32rem;
	}
	#list .sec-pagettl .tab-btn:not(:last-child){
		margin-right: 2rem;
	}
	#list .sec-pagettl .tab-btn-inner{
		display: flex;
		align-items: center;
	}
	#list .sec-pagettl .tab-btn .sub-txt{
		font-size: 1.6rem;
		margin-right: 0.8rem;
	}
	#list .sec-pagettl .tab-btn .txt{
		font-size: 2.2rem;
	}
	#list .sec-pagettl .tab-btn .arrow{
		right: 2rem;
		bottom: calc((100% - 0.6rem) / 2);
	}
}

/* list
--------------------------------------*/
#list .sec-list{
	padding-top: 6rem;
	padding-bottom: 10rem;
}
#list .sec-list .block-ttl{
	display: flex;
	align-items: center;
}
#list .sec-list .block-ttl .sub-txt{
	font-size: 1.6rem;
	margin-right: 0.8rem;
}
#list .sec-list .list-tbl{
	box-sizing: border-box;
	width: 100%;
	line-height: 1.37;
}
#list .sec-list .list-tbl th,
#list .sec-list .list-tbl td{
	box-sizing: border-box;
	vertical-align: middle;
	padding: 1rem 0.8rem;
	text-align: center;
}
#list .sec-list .list-tbl th{
	font-weight: 700;
	color: #fff;
	background-color: #727171;
	padding-top: 1.8rem;
	padding-bottom: 1.8rem;
}
#list .sec-list .list-tbl th:not(:last-child){
	border-right: 1px solid #fff;
}
#list .sec-list .list-tbl td{
	border: 1px solid #DEDEDE;
}
#list .sec-list .list-tbl td:not(:last-child){
	border-right: none;
}
#list .sec-list .list-tbl tr:not(:first-child) td{
	border-top: none;
}
#list .sec-list .list-tbl a{
	text-decoration: underline;
}

#list .sec-list .list1-tbl th,
#list .sec-list .list1-tbl td{
	width: 25%;
}
#list .sec-list .list1-tbl tr:nth-child(even) td{
	background-color: #F5F5F5;
}

#list .sec-list .list2-tbl tr:nth-child(even) td{
	background-color: #F5F5F5;
}
#list .sec-list .list2-tbl td:nth-last-child(3){
	vertical-align: top;
	background-color: #fff !important;
}

#list .sec-list .list3-tbl tr:nth-child(even) td{
	background-color: #F5F5F5;
}

@media print,screen and (min-width: 600px) {
	#list .sec-list{
		padding-top: 10rem;
		padding-bottom: 15rem;
	}
	#list .sec-list .block-ttl .sub-txt{
		font-size: 1.8rem;
	}
	#list .sec-list .list-tbl th,
	#list .sec-list .list-tbl td{
		padding: 1.3rem 2rem;
	}
	#list .sec-list .list-tbl a:hover{
		text-decoration: none;
	}
}


/*====================================

====================================*/

/*
--------------------------------------*/

@media only screen and (max-width: 599px) {
}

@media print,screen and (min-width: 600px) {
}


