@charset "utf-8";

/*-----------------------------------------------------------
カスタムプロパティ
-----------------------------------------------------------*/

:root {

  	/* base color */
	--base-font-color: #2E2A25;

  	/* site color */
  	--primary: #F18200;
	--secondary: #B32A15;
  	--white: #fff;
  	--grey: #ccc;

  	/* font family */
	--font-family01: "Noto Sans JP", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
	--font-family02: "Yuji Syuku", serif;
    --font-family03: "Roboto", sans-serif;

}

/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/

html {
	overflow-x: hidden;
}

body {
	max-width: 1920px;
	width: 100%;
	margin: auto !important;
	font-family: var(--font-family01);
	font-size: 14px;
	font-weight: 500;
	color: var(--base-font-color);
  	background: url(../img/common/base_bg.jpg) repeat-y center top;
	position: relative;
	overflow-x: hidden;
}

#root {
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
    background: url(../img/common/main_bg.jpg) repeat center top ;
}

/* .main {
    background: url(../img/common/main_bg.jpg) repeat-y center top;
} */

p > a, label > a {
	color: inherit;
	text-decoration: underline;
}

p > a:hover, label > a:hover {
	color: inherit;
}

a, button {
	transition: .3s;
}

.br-none br {
	display: none;
}

.overflow-hidden {
	overflow: hidden;
}

.overflow-auto {
	overflow: auto;
}

.js-tel-link {
	color: inherit;
}

/*-----------------------------------------------------------
背景
-----------------------------------------------------------*/

.bg-color-primary {
    background: var(--primary);
}

.bg-color-secondary {
    background: var(--secondary);
}

.bg-color-white {
    background: var(--white);
}

/*-----------------------------------------------------------
タイトル
-----------------------------------------------------------*/

.title01 {
    font-size: 22px;
    font-weight: normal;
    font-family: var(--font-family02);
    letter-spacing: 0.03em;
    line-height: 1.18em;
}

.title02 {
    font-size: 20px;
    font-weight: normal;
    font-family: var(--font-family02);
    letter-spacing: 0.03em;
    line-height: 1.22em;
}

.title-decoration01  {
    display: inline-block;
    padding: 10px 15px;
    margin: auto;
    /* background: url(/system_panel/uploads/images/title_decoration01.svg) no-repeat left center / contain; */
}

.title-decoration01-large {
    padding: 15px 15px 20px;
}

/*-----------------------------------------------------------
テキスト
-----------------------------------------------------------*/

.text01 {
    letter-spacing: 0.05em;
    line-height: 2.38em;
}

/*-----------------------------------------------------------
フォント
-----------------------------------------------------------*/

.font-family01 {
	font-family: var(--font-family01);
}

.font-family02 {
	font-family: var(--font-family02);
}

.font-family03 {
	font-family: var(--font-family03);
}

/*-----------------------------------------------------------
文字色
-----------------------------------------------------------*/

.color-base {
    color: var(--base-font-color);
}

.color-white {
    color: var(--white);
}

/*-----------------------------------------------------------
ボタン
-----------------------------------------------------------*/

.btn01 {
    max-width: 340px;
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.45em;
    padding: 21px 2% 20px 2%;
}

.btn01:hover {
   opacity: 0.7;
}

.btn01-arrow {
    padding: 21px 35px 20px 20px;
    position: relative;
}

.btn01-arrow:before {
    content: "";
    display: block;
    max-width: 9px;
    width: 100%;
    height: 16px;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

.btn01-primary {
    background: var(--primary);
	color: var(--white);
}

.btn01-primary:hover {
	color: var(--white);
}

.btn01-primary:before {
    background: url(../img/common/right_arrow01_white.svg) no-repeat center / contain;
}

.btn01-white {
    background: var(--white);
	color: var(--primary);
}

.btn01-white:hover {
	color: var(--primary);
}

.btn01-white:before {
    background: url(../img/common/right_arrow01_primary.svg) no-repeat center / contain;
}

.btn02 {
    max-width: 340px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.45em;
    padding: 17px 2%;
    position: relative;
}

.btn02:hover {
   opacity: 0.7;
}

.btn02-primary {
    background: var(--primary);
	color: var(--white);
}

.btn02-primary:hover {
	color: var(--white);
}

.btn02-secondary {
    background: var(--secondary);
	color: var(--white);
}

.btn02-secondary:hover {
	color: var(--white);
}

/*-----------------------------------------------------------
画像
-----------------------------------------------------------*/

.img-control {
	height: 0;
	position: relative;
	padding: 0 0 100%;
}

.img-control > img {
	position: absolute;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
}

/*-----------------------------------------------------------
共通パーツ
-----------------------------------------------------------*/

/* .banner-wrapper {
    background: url(/system_panel/uploads/images/bg01.jpg) no-repeat center top / cover;
} */

.banner-list {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 20px;
}

.banner-link01 {
    display: block;
    padding: 10px;
    position: relative;
}

.banner-link01:before {
    content: "";
    display: block;
    width: 100%;
    height: 68.18%;
    margin: auto;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    transition: .3s;
}

.banner-link01:hover:before {
    height: 100%;
}


.banner-link01-in {
    border: solid 1px var(--white);
    padding: 140px 15px 15px;
    position: relative;
}

/* .banner-link01-in:before {
    content: "";
    display: block;
    max-width: 60px;
    width: 100%;
    height: 60px;
    background-color: var(--primary);
    background-image: url(/system_panel/uploads/images/right_arrow01_white.svg);
    background-repeat: no-repeat;
    background-position: 40px 35px;
    background-size: 9px 16px;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    position: absolute;
    bottom: -1px;
    right: -1px;
} */

/* .banner-link01-title {
    max-width: 605px;
    width: 100%;
    color: var(--white);
    padding: 20px 0 10px 10px;
    margin: auto;
    background: url(/system_panel/uploads/images/title_decoration01.svg) no-repeat left center / contain;
} */

.banner-col {
    padding: 0;
}

.banner-link02 {
    display: block;
    padding: 100px 15px 105px;
    position: relative;
}

.banner-link02-in {
    position: relative;
}

/* .banner-link02-title  {
    display: inline-block;
    color: var(--white);
    padding: 15px 0 15px 15px;
    margin: auto;
    background: url(/system_panel/uploads/images/title_decoration01.svg) no-repeat left center / contain;
} */

.banner-link02:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 35%);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    transition: .3s;
}

.banner-link02:hover:before {
    background: rgb(0 0 0 / 50%);
}

/*-----------------------------------------------------------
ヘッダー
-----------------------------------------------------------*/

.header {
    z-index: 9999;
}

/*ハンバーガーメニュー*/

.hamburger-btn {
	max-width: 100px;
	width: 100%;
	height: 100px;
	display: none;
	justify-content: center;
	align-items: center;
	background: var(--primary);
	cursor: pointer;
	transition: .3s;
	position: fixed;
	top: 29px;
	right: 0;
	z-index: 9999;
}

.hamburger-btn:hover {
	opacity: 0.7;
}

.hamburger-btn-in {
	max-width: 50px;
	width: 100%;
	height: 27px;
	position: relative;
}

.hamburger-btn-bar {
	width: 100%;
	height: 2px;
	background: var(--white);
	position: absolute;
	right: 0;
	left: 0;
	transition: .5s;
}

.hamburger-btn-bar:nth-child(1) {
	top: 0;
}

.hamburger-btn-bar:nth-child(2) {
	top: 50%;
	left: auto;
}

.hamburger-btn-bar:nth-child(3) {
	top: 100%;
	left: auto;
}

.js-open.hamburger-btn {
	top: 0;
}

.js-open .hamburger-btn-bar:nth-child(1) {
	top: 50%;
	transform: rotate(145deg);
}

.js-open .hamburger-btn-bar:nth-child(2) {
	opacity: 0;
}

.js-open .hamburger-btn-bar:nth-child(3) {
	width: 100%;
	top: 50%;
	transform: rotate(-145deg);
}

.nav-area {
	opacity: 0;
	visibility: hidden;
	transition: .8s;
	z-index: 9999;
}

.nav-area.js-open {
	opacity: 1;
	visibility: visible;
}

.nav-link:before {
    content: "";
    display: block;
    max-width: 15px;
    width: 100%;
    height: 1px;
    background: #2E2A25;
    margin: 0 5px 0 0;
}

/*スマホ時のナビ*/

.sp-nav {
	max-width: calc(100% - 60px);
	width: 100%;
	height: 70px;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 999999;
	animation-name: fadein;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	border-top: solid 1px var(--white);
}

.sp-nav-area {
	width: 100%;
	height: 100%;
	display: flex;
	background: var(--primary);
}

.sp-nav-block {
	flex: 1;
	display: flex;
}

.sp-nav-conte-l {
	width: 50%;
	border-right: 1px solid var(--white);
}

.sp-nav-link {
	padding: 5px;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.sp-nav-link-icon {
	max-width: 25px;
	width: 100%;
	font-size: 25px;
	color: var(--white);
	text-align: center;
}

.sp-nav-btn-bar {
	max-width: 30px;
	height: 25px;
	width: 100%;
	position: relative;
}

.sp-nav-btn-text {
	margin: 5px auto 0;
	font-size: 10px;
	line-height: 1em;
	color: var(--white);
}

.sp-nav-link-text {
	margin: 5px auto 0;
	font-size: 10px;
	line-height: 1em;
	color: var(--white);
}

.sp-nav-btn {
	padding: 10px 5px 10px;
	width: 60px;
	height: 70px;
	position: fixed;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	background: var(--secondary);
	z-index: 99999999;
	animation-name: fadein;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	border-top: solid 1px var(--white);
}

.sp-nav-btn-bar-item {
	width: 100%;
	height: 3px;
	background: var(--white);
	border-radius: 3px;
	position: absolute;
	left: 0;
	transition: ease .5s;
}

.sp-nav-btn-bar-item:nth-of-type(1) {
	top: 0;
}

.sp-nav-btn-bar-item:nth-of-type(2) {
	top: 50%;
	transform: translateY(-50%);
}

.sp-nav-btn-bar-item:nth-of-type(3) {
	top: 100%;
	transform: translateY(-100%);
}

.js-open .sp-nav-btn-bar-item {
	transition: ease .5s;
}

.js-open .sp-nav-btn-bar-item:nth-of-type(1) {
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}

.js-open .sp-nav-btn-bar-item:nth-of-type(2) {
	opacity: 0;
}

.js-open .sp-nav-btn-bar-item:nth-of-type(3) {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

/*-----------------------------------------------------------
下層カバー
-----------------------------------------------------------*/

.in-cover {
    max-width: 1920px;
    width: 100%;
    height: 230px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: auto;
}

.in-cover:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(93, 99, 82, 0.6);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

.in-cover-box {
    max-width: 1250px;
    width: 100%;
    padding: 0 15px;
    margin: auto;
    position: relative;
    z-index: 9;
}

.in-cover-title {
    font-size: 36px;
    font-weight: normal;
    font-family: var(--font-family02);
    letter-spacing: 0.05em;
    line-height: 1.45em;
    text-align: center;
    color: var(--white);
    text-shadow: 0 3px 6px rgb(0 0 0 / 16%);
}

.in-cover-sub-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.44em;
    margin: -1px 0 0;
    text-align: center;
    color: var(--white);
	text-shadow: 0 3px 6px rgb(0 0 0 / 16%);
}

.incoverTit {
    font-weight: normal;
    font-size: 36px;
    letter-spacing: 0.05em;
    line-height: 1.45em;
    text-align: center;
    color: var(--white);
    text-shadow: 0 3px 6px rgb(0, 0, 0 ,16%);
    font-family: var(--font-family02);
    position: relative;
    z-index: 90;
}

.incoverTit br {
    display: block;
}
/*-----------------------------------------------------------
パンくず
-----------------------------------------------------------*/

.breadcrumbs-wrapper {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 1.45em;
    padding: 15px 0;
    position: relative;
    z-index: 9;
}

.breadcrumbs-inner {
    max-width: 1350px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 15px;
    margin: auto;
}

.breadcrumbs-link {
    display: block;
    color: inherit;
    text-decoration: underline;
}

.breadcrumbs-arrow {
    margin: 0 10px;
}

.breadcrumbs-link:hover {
    text-decoration: none;
    color: inherit;
}

/*-----------------------------------------------------------
ブロック
-----------------------------------------------------------*/

.wrapper {
    padding: 50px 0;
    position: relative;
}

.inner {
    max-width: 1400px;
    width: 100%;
    padding: 0 15px;
    margin: auto;
    position: relative;
}

.inner-large {
    max-width: 1450px;
}

/*-----------------------------------------------------------
テーブル
-----------------------------------------------------------*/

.base-table {
    max-width: 1000px;
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.45em;
}

.base-table-tr {
    border-bottom: solid 1px #A19677;
    padding: 24px 0 15px;
}

.base-table-th, .base-table-td {
    padding: 0 10px;
}

.base-table-th {
    font-weight: 600;
}

.base-table-th + .base-table-th {
    border-left: solid 1px #ccc;
}

.base-table-td + .base-table-td {
    border-left: solid 1px #ccc;
}

/*-----------------------------------------------------------
ページャー
-----------------------------------------------------------*/

.webgene-pagination {
    width: 100%;
}

.webgene-pagination > ul{
  padding: 0;
  display: flex;
  justify-content: center;
}

.webgene-pagination > ul > li{
  display: flex;
}

.webgene-pagination > ul > li{
  margin: 40px 10px 0;
  height: 40px;
  width:100%;
  max-width: 40px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1em;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.webgene-pagination > ul > li.selected > a{
  color: var(--white);
  background: #8D967B;
  cursor: inherit;
}

.webgene-pagination > ul > li.selected > a:hover {
    color: var(--white);
    background-color: #8D967B;
}

.webgene-pagination > ul > li > a{
  width: 100%;
  height: 40px;
  width: 40px;
  color: #8D967B;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #8D967B;
  border-radius: 50%;
}
.webgene-pagination > ul > li > a:hover{
  color: var(--white);
  background-color: #8D967B;
  text-decoration: none;
}

.webgene-pagination>ul>.prev>a,
.webgene-pagination>ul>.next>a {
    position: relative;
    height: 40px;
    width: 40px;
    border: 0;
}

.webgene-pagination>ul>.prev>a:hover,
.webgene-pagination>ul>.next>a:hover {
    opacity: .5;
    background-color: initial;
}


.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: 14px;
    height: 14px;
    display: block;
    border-bottom: solid 2px #8D967B;
    border-left: solid 2px #8D967B;
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
    right: 15px;
    top: 50%;
}

.webgene-pagination>ul>.next>a::before {
    content: "";
    width: 14px;
    height: 14px;
    display: block;
    border-top: solid 2px #8D967B;
    border-right: solid 2px #8D967B;
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
    right: 15px;
    top: 50%;
}

.dtlPager {
    display: flex;
    justify-content: space-between;
    margin: 80px 0 0;
}

.webgene-item-aroundPageLink {
    color: #333;
    font-size: 14px;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:375px) {
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */



/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 375px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:422px) {
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */



/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 422px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:576px) {
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/

/*-- 改行 --*/

.br-576-none br {
	display: none;
}

.br-576-block br {
	display: block;
}


.incoverTit br {
    display: none;
}
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 576px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width: 768px) {
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/

/*-- 改行 --*/

.br-768-none br {
	display: none;
}

.br-768-block br {
	display: block;
}

/*-----------------------------------------------------------
タイトル
-----------------------------------------------------------*/

.title01 {
    font-size: 28px;
}

.title02 {
    font-size: 24px;
}

/*-----------------------------------------------------------
ボタン
-----------------------------------------------------------*/

.btn01 {
    font-size: 18px;
}


/*-----------------------------------------------------------
共通パーツ
-----------------------------------------------------------*/

.banner-list {
    grid-template-columns: repeat(2,1fr);
}

/*-----------------------------------------------------------
ヘッダー
-----------------------------------------------------------*/

/*ハンバーガーメニュー*/

.hamburger-btn {
	display: flex;
}

/* スマホ時 */

.sp-nav {
	display: none;
}

.sp-nav-btn {
	display: none;
}

/*-----------------------------------------------------------
下層カバー
-----------------------------------------------------------*/

.in-cover {
    height: 300px;
}

.in-cover-title {
    font-size: 66px;
}

.in-cover-sub-title {
    font-size: 16px;
}

.incoverTit {
    font-size: 50px;
}
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 768px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:992px) {
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */



/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 992px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width: 1024px) {
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/

body {
	font-size: 16px;
}

/*-- 改行 --*/

.br-1024-none br {
	display: none;
}

.br-1024-block br {
	display: block;
}

/*-----------------------------------------------------------
タイトル
-----------------------------------------------------------*/

.title01 {
    font-size: 38px;
}

.title02 {
    font-size: 36px;
}

.title-decoration01  {
    padding: 26px 31px;
}

.title-decoration01-large {
    padding: 32px 33px 36px;
}

/*-----------------------------------------------------------
ボタン
-----------------------------------------------------------*/

.btn01 {
    font-size: 20px;
}

.btn01-arrow {
    padding: 21px 50px 20px 40px;
}

.btn01-arrow:before {
    right: 30px;
}

/*-----------------------------------------------------------
下層カバー
-----------------------------------------------------------*/

.in-cover {
    height: 400px;
}

.in-cover-title {
    font-size: 74px;
}

.in-cover-sub-title {
    font-size: 18px;
}

.incoverTit {
    font-size: 74px;
}

/*-----------------------------------------------------------
共通パーツ
-----------------------------------------------------------*/

.banner-list {
    gap: 40px;
}

.banner-link01 {
    padding: 10px;
}

.banner-link01-in {
    padding: 278px 15px 16px;
}

.banner-link01-in:before {
    max-width: 90px;
    height: 90px;
    background-position: 60px 56px;
}

.banner-link01-title {
    padding: 49px 0 20px 20px;
}

.banner-link02 {
    padding: 204px 15px 209px;
}

.banner-link02-title  {
    padding: 31px 0 31px 29px;
}

/*-----------------------------------------------------------
ページャー
-----------------------------------------------------------*/

.webgene-pagination > ul > li{
  margin: 80px 10px 0;
}

/*-----------------------------------------------------------
ヘッダー
-----------------------------------------------------------*/

.nav-link:before {
    max-width: 30px;
    margin: 0 10px 0 0;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 1024px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1200px) {
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/

body {
	font-size: 18px;
}

/*-- 改行 --*/

.br-1200-none br {
	display: none;
}

.br-1200-block br {
	display: block;
}

/*-----------------------------------------------------------
タイトル
-----------------------------------------------------------*/

.title01 {
    font-size: 55px;
}

.title02 {
    font-size: 45px;
}

/*-----------------------------------------------------------
下層カバー
-----------------------------------------------------------*/

.in-cover-title {
    font-size: 85px;
}

.incoverTit {
    font-size: 80x;
}
/*-----------------------------------------------------------
ブロック
-----------------------------------------------------------*/

.wrapper {
    padding: 100px 0;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 1200px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1400px) {
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */



/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 1400px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1600px) {
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */



/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 1600px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1860px) {
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */



/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 1860px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */