@charset "utf-8";

/*===========================================================
下層カバー
===========================================================*/

.in-cover {
    padding: 0 15px;
    max-width: 1920px;
    width: 100%;
    height: 250px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.in-cover:before {
    content: "";
    display: block;
    position: absolute;
    max-width: 1920px;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 20%);
}

.in-cover-title-box {
    margin: 0 auto;
    padding: 8% 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.in-cover-title {
    font-size: clamp(30px, calc(1.875rem + ((1vw - 3.75px) * 3.2362)), 80px);
    font-weight: 400;
    font-family: var(--font-family03);
    letter-spacing: 0.05em;
    color: #FFF;
}

.in-cover-sub-title {
    font-size: clamp(20px, calc(1.25rem + ((1vw - 3.2px) * 1.25)), 40px);
    font-weight: 700;
    font-family: var(--font-family02);
    letter-spacing: 0.05em;
    color: #FFF;
}

/*===========================================================
パンくず
===========================================================*/

.bread-wrapper {
    max-width: 1920px;
    width: 100%;
    padding: 15px;
}

.bread-box {
    max-width: 1220px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: auto;
    font-size: 12px;
    font-family: var(--font-family03);
    letter-spacing: 0.05em;
}

.bread-link {
    display: block;
    color: var(--base-font-color);
    text-decoration: underline;
}

.bread-link:hover {
    color: var(--base-font-color);
    text-decoration: none;
}

/*===========================================================
inner
===========================================================*/

.in-wrapper {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 15px;
    position: relative;
}

.inner01 {
    max-width: 1220px;
    width: 100%;
    margin: 0 auto;
}

.inner02 {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
}

.inner03 {
    max-width: 1420px;
    width: 100%;
    margin: 0 auto;
}

.inner04 {
    max-width: 1520px;
    width: 100%;
    margin: 0 auto;
}

.inner05 {
    max-width: 1620px;
    width: 100%;
    margin: 0 auto;
}

/*===========================================================
br調整
===========================================================*/

.br-none br {
    display: none;
}

/*===========================================================
共通
===========================================================*/

.common-first-text-area {
    margin: 40px 0 0;
}

.common-first-text-box {
    margin: 20px 0 0;
}

.common-menu-row {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    border-bottom: 1px solid var(--grey);
}

.common-menu-row:first-child {
    padding: 0 0 10px;
}

.common-menu-th {
    width: 100%;
}

.common-menu-td {
    width: 100%;
    text-align: right;
}

.common-menu-text01 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.03em;
}
.text01 {
    line-height: 1.65em;
}



/*-----------------------------------------------------------
ページャー
-----------------------------------------------------------*/

.webgene-pagination {
	width: 100%;
	grid-column: 1/3;
}

.webgene-pagination > ul{
	padding: 0;
	display: flex;
	justify-content: center;
}

.webgene-pagination > ul > li{
	display: flex;
}

.webgene-pagination > ul > li{
	margin: 30px 5px 0;
	height: 30px;
	width:100%;
	max-width: 30px;
	font-family: var(--font-family02);
	line-height: 1em;
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	font-size: 16px;
}

.webgene-pagination > ul > li.selected > a{
	opacity: 0.5;
	color: var(--white);
	cursor: inherit;
}

.webgene-pagination > ul > li > a{
	width: 100%;
	height: 30px;
	width: 30px;
	background: var(--primary);
	color: var(--white);
	display: flex;
	justify-content: center;
	align-items: center;
}

.webgene-pagination > ul > li > a:hover{
	text-decoration: none;
	color: var(--white);
	opacity: 0.5;
}

.webgene-pagination>ul>.prev>a,
.webgene-pagination>ul>.next>a {
	position: relative;
	height: 30px;
	width: 30px;
	border: 0;
	font-size: 0;
}

.webgene-pagination>ul>.prev>a:hover,
.webgene-pagination>ul>.next>a:hover {
	background-color: var(--primary);
}

.webgene-pagination>ul>.prev>a::before,
.webgene-pagination>ul>.next>a::before {
	content: "";
	display: block;
	transition: all .3s;
}

.webgene-pagination>ul>.prev>a::before {
	content: "";
	width: 12px;
	height: 12px;
	display: block;
	border-bottom: solid 2px var(--white);
	border-left: solid 2px var(--white);
	transform: translateY(-50%) rotate(45deg);
	position: absolute;
	left: 12px;
	top: 50%;
}

.webgene-pagination>ul>.prev>a:hover:before {
	border-bottom: solid 2px var(--white);
	border-left: solid 2px var(--white);
}

.webgene-pagination>ul>.next>a::before {
	content: "";
	width: 12px;
	height: 12px;
	display: block;
	border-top: solid 2px var(--white);
	border-right: solid 2px var(--white);
	transform: translateY(-50%) rotate(45deg);
	position: absolute;
	right: 12px;
	top: 50%;
}

.webgene-pagination>ul>.next>a:hover:before {
	border-top: solid 2px var(--white);
	border-right: solid 2px var(--white);
}

.dtlPager {
	display: flex;
	justify-content: space-between;
	margin: 80px 0 0;
}

.webgene-item-aroundPageLink {
	color: #333;
	font-size: 14px;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:414px) {


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

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



} /* min-width: 414px ここまで */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:544px) {


/*===========================================================
br調整
===========================================================*/

.sm-br-block br {
    display: block;
}

.sm-br-none br {
    display: none;
}

/*===========================================================
共通
===========================================================*/

.common-menu-row {
    flex-direction: row;
}

.common-menu-th {
    width: 74%;
}

.common-menu-td {
    width: 25%;
}


} /* min-width: 544px ここまで */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width: 768px) {


/*===========================================================
br調整
===========================================================*/

.md-br-block br {
    display: block;
}

.md-br-none br {
    display: none;
}

/*===========================================================
下層カバー
===========================================================*/

.in-cover {
    max-width: 1920px;
    width: 100%;
    height: 400px;
    justify-content: flex-start;
}

.in-cover-title-box {
    padding: 3% 0 0;
}

/*===========================================================
inner
===========================================================*/

.in-wrapper {
    padding: 80px 15px;
}

/*===========================================================
共通
===========================================================*/

.common-first-text-area {
    margin: 60px 0 0;
}

.common-menu-text01 {
    font-size: 18px;
}

/*-----------------------------------------------------------
ページャー
-----------------------------------------------------------*/

.webgene-pagination {
    grid-column: 1/3;
}

.webgene-pagination > ul > li{
	margin: 40px 10px 0;
	height: 40px;
	max-width: 40px;
	font-size: 20px;
}

.webgene-pagination > ul > li > a{
	height: 40px;
	width: 40px;
}

.webgene-pagination>ul>.prev>a,
.webgene-pagination>ul>.next>a {
	height: 40px;
	width: 40px;
}

.webgene-pagination>ul>.prev>a::before {
	width: 14px;
	height: 14px;
	left: 15px;
	top: 50%;
}

.webgene-pagination>ul>.next>a::before {
	width: 14px;
	height: 14px;
	right: 15px;
	top: 50%;
}

} /* min-width: 768px ここまで */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width: 1024px) {


/*===========================================================
br調整
===========================================================*/

.lg-br-block br {
    display: block;
}

.lg-br-none br {
    display: none;
}

/*===========================================================
パンくず
===========================================================*/

.bread-box {
    font-size: 14px;
}

/*===========================================================
inner
===========================================================*/

.in-wrapper {
    padding: 150px 15px;
}

.in-first-wrapper {
    padding: 120px 15px;
}

/*===========================================================
共通
===========================================================*/

.common-first-text-area {
    margin: 80px 0 0;
}

.common-first-text-box {
    margin: 30px 0 0;
}

.common-menu-row {
    padding: 20px 0;
}

.common-menu-row:first-child {
    padding: 0 0 20px;
}


/*-----------------------------------------------------------
ページャー
-----------------------------------------------------------*/

.webgene-pagination {
    grid-column: 1/4;
}

.webgene-pagination > ul > li {
    margin: 80px 10px 0;
}


} /* min-width: 1024px ここまで */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1200px) {


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

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



} /* min-width: 1200px ここまで */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1300px) {




} /* min-width: 1300px ここまで */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1500px) {


/*===========================================================
共通
===========================================================*/

.common-menu-text01 {
    font-size: 22px;
}



} /* min-width: 1440px ここまで */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1620px) {




} /* min-width: 1520px ここまで */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */ 