@charset "utf-8";

/*-----------------------------------------------------------
カスタムプロパティ
-----------------------------------------------------------*/

:root {

/* base color */
--base-font-color: #333;

/* site color */
--primary: #0071BC;
--primary-light: #2889C9;
--secondary: #009245;
--tertiary: #F2F5F7;
--white: #fff;
--dark: #000;
--grey: #E6E6E6;

/* font family */
--font-family01: "IBM Plex Sans JP", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
--font-family02: "Oswald", sans-serif;
--font-family03: "Noto Serif JP", serif;
}

font + br {
    display: none;
}

/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/

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);
	position: relative;
	overflow-x: hidden;
}

#root {
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
}

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;
}

iframe#gt-nvframe {
    display: none !important;
}

/*-----------------------------------------------------------
見出し
-----------------------------------------------------------*/

.title01 {
	font-size: 26px;
	font-weight: bold;
	letter-spacing: 0.05em;
	line-height: 1.5em;
}

.title02 {
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.05em;
	line-height: 1.5em;
}

.title03 {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.33em;
}

.title04 {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.33em;
}

.title-decoration01 {
    padding: 0 0 25px;
    border-bottom: solid 1px;
}

.title-decoration01-primary {
    border-color: var(--primary) !important;
}

.title-decoration01-primary-light {
    border-color: var(--primary-light) !important;
}

.title-decoration01-grey {
    border-color: var(--grey) !important;
}

.title-decoration02 {
    position: relative;
}

.title-decoration02:before, .title-decoration02:after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin: auto;
    position: absolute;
    bottom: -3px;
}

.title-decoration02:before {
    left: 0;
}

.title-decoration02:after {
    right: 0;
}

.title-decoration02-white:before, .title-decoration02-white:after {
    background: var(--white);
}

.title-decoration02-primary:before, .title-decoration02-primary:after {
    background: var(--primary);
}

.title-decoration03 {
    padding: 40px 15px 35px;
}

.title-decoration03-inner {
    max-width: 1420px;
    width: 100%;
    margin: auto;
}

.title-decoration03-primary {
    background: var(--primary);
    color: var(--white);
}

/*-----------------------------------------------------------
テキスト
-----------------------------------------------------------*/

.text01 {
  	letter-spacing: 0.05em;
  	line-height: 2.25em;
}

/*-----------------------------------------------------------
ボタン
-----------------------------------------------------------*/

.btn01 {
	max-width: 280px;
	width: 100%;
	min-height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 19px 30px 15px;
	border-radius: 5px;
	transition: .3s;
}

.btn01:hover {
	opacity: 0.65;
}

.btn01-arrow {
	justify-content: flex-start;
    padding-right: 60px;
    position: relative;
}

.btn01-arrow:before {
    content: "";
    display: block;
    max-width: 25px;
    width: 100%;
    height: 25px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: 55% center;
    background-size: 7px 12px;
}

.btn01-primary {
    background: var(--primary);
    color: var(--white);
}

.btn01-primary:hover {
    color: var(--white);
}

.btn01-arrow.btn01-primary:before {
    background-color: var(--white);
    background-image: url(/system_panel/uploads/images/right_arrow01_primary.svg);
}

.btn01-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn01-secondary:hover {
    color: var(--white);
}

.btn01-arrow.btn01-secondary:before {
    background-color: var(--white);
    background-image: url(/system_panel/uploads/images/right_arrow01_secondary.svg);
}

.btn02 {
	max-width: 280px;
	width: 100%;
	min-height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: solid 1px;
	padding: 19px 30px 15px;
	border-radius: 5px;
	transition: .3s;
}

.btn02:hover {
	opacity: 0.65;
}

.btn02-arrow {
	justify-content: flex-start;
    padding-right: 60px;
    position: relative;
}

.btn02-arrow:before {
    content: "";
    display: block;
    max-width: 25px;
    width: 100%;
    height: 25px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: 55% center;
    background-size: 7px 12px;
}

.btn02-white {
    border-color: var(--white);
    color: var(--white);
}

.btn02-white:hover {
    color: var(--white);
}

.btn02-arrow.btn02-white:before {
    background-color: var(--white);
    background-image: url(/system_panel/uploads/images/right_arrow01_primary.svg);
}

.btn02-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn02-primary:hover {
    color: var(--primary);
}

.btn02-arrow.btn02-primary:before {
    background-color: var(--primary);
    background-image: url(/system_panel/uploads/images/right_arrow01_white.svg);
}

.btn03 {
    max-width: 440px;
    width: 100%;
    display: block;
    border: solid 1px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.5em;
    text-align: center;
    padding: 30px 10px 30px;
}

.btn03-arrow {
	padding: 30px 10px 15px;
}

.btn03-arrow:after {
	content: "";
	display: block;
	max-width: 30px;
	width: 100%;
	height: 30px;
	border-radius: 30px;
	background-repeat: no-repeat;
	background-position: 55% center;
	background-size: 7px 12px;
	margin: 10px auto 0;
	transition: .3s;
}

.btn03-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn03-primary.btn03-arrow:after {
    background-color: var(--primary);
    background-image: url(/system_panel/uploads/images/right_arrow01_white.svg);
}

.btn03-primary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn03-arrow:hover:after {
    background-color: var(--white);
    background-image: url(/system_panel/uploads/images/right_arrow01_primary.svg);
    transform: rotate(90deg);
}

/*-----------------------------------------------------------
フォント
-----------------------------------------------------------*/

.font-family01 {
	font-family: var(--font-family01);
}

.font-family02 {
	font-family: var(--font-family02);
}

.font-family03 {
	font-family: var(--font-family03);
}

/*-----------------------------------------------------------
背景色
-----------------------------------------------------------*/

.bg-color-primary {
	background-color: var(--primary);
}

.bg-color-secondary {
	background-color: var(--secondary);
}

.bg-color-tertiary {
	background-color: var(--tertiary);
}

.bg-color-dark {
	background-color: var(--dark);
}

.bg-color-white {
	background-color: var(--white);
}

.bg-color-grey {
	background-color: var(--grey);
}

/*-----------------------------------------------------------
文字色
-----------------------------------------------------------*/

.color-base {
	color: var(--base-font-color);
}

.color-primary {
	color: var(--primary);
}

.color-primary-light {
	color: var(--primary-light);
}

.color-secondary {
	color: var(--secondary);
}

.color-tertiary {
	color: var(--tertiary);
}

.color-dark {
	color: var(--dark);
}

.color-white {
	color: var(--white);
}

.color-grey {
	color: var(--grey);
}

/*-----------------------------------------------------------
画像
-----------------------------------------------------------*/

.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;
}

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

/*-----------------------------------------------------------
スライダー
-----------------------------------------------------------*/

.swiper + .swiper {
	margin: 10px auto 0;
}

.thumbnail-slider-item {
	cursor: pointer;
	/* transition: .3s; */
}

.thumbnail-slider-item:hover {
	filter: brightness(0.5);
}

.swiper-slide-thumb-active {
	filter: brightness(0.5);
}

.swiper-button-next,
.swiper-button-prev {
    transition: .3s;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    color: #FFF;
	text-shadow: 0 0 3px #000;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: .65;
}

/*-----------------------------------------------------------
共通リンク
-----------------------------------------------------------*/

.common-banner-row {
	justify-content: center;
}

.common-banner-col {
	padding: 0 0 0 0;
}

.common-banner-link {
	padding: 80px 15px 15px 15px;
	display: block;
	color: #fff;
	position: relative;
	overflow: hidden;
}

.common-banner-link:hover {
    color: #fff;
}

.common-banner-link-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: all 0.3s ease;
}

.common-banner-link-bg:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, rgba(0, 61, 102, 0.5), rgba(0, 61, 102, 0.7));
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

.common-banner-link:hover > .common-banner-link-bg {
	transform: scale(1.1);
}

.common-banner-link-box {
	max-width: 540px;
	width: 100%;
	margin: 0 auto 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.common-banner-link-box:after {
	content: "";
	max-width: 40px;
	height: 40px;
	width: 100%;
	border-radius: 50%;
	background-color: #fff;
	background-image: url(/system_panel/uploads/images/right_arrow01_primary.svg);
	background-repeat: no-repeat;
	background-position: 53% center;
	background-size: 9px 14px;
}

/*-----------------------------------------------------------
下層カバー
-----------------------------------------------------------*/

.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-image: linear-gradient(180deg, rgba(0, 61, 102, 0), rgba(0, 61, 102, 0.5));
	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: 26px;
	font-weight: bold;
	line-height: 1.5em;
	letter-spacing: 0.05em;
	text-align: center;
	color: var(--white);
	text-shadow: 0 3px 6px rgb(0 0 0 / 16%);
}

/*-----------------------------------------------------------
パンくず
-----------------------------------------------------------*/

.breadcrumbs-wrapper {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.45em;
	color: inherit;
	padding: 15px 0;
}

.breadcrumbs-inner {
	max-width: 1850px;
	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;
}

/*-----------------------------------------------------------
ブロック
-----------------------------------------------------------*/

.wrapper01 {
	padding: 65px 0 65px;
}

.wrapper02 {
	padding: 75px 0;
}

.wrapper-mask {
    position: relative;
}

.wrapper-mask:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.wrapper-mask-primary:before {
    background: rgb(0 61 102 / 70%);
}

.skew-wrapper01 {
    padding: 60px 0 80px 0;
    clip-path: polygon(0 0, 100% 50px, 100% 100%, 0 calc(100% - 50px));
}

.inner {
	max-width: 1250px;
	width: 100%;
	padding: 0 15px;
	margin: auto;
	position: relative;
}

.inner-large {
    max-width: 1450px;
}

/*-----------------------------------------------------------
テーブル
-----------------------------------------------------------*/

.base-table {
	max-width: 1000px;
	width: 100%;
	border: solid 1px var(--grey);
	border-bottom: 0;
}

.base-table-tr {
	border-bottom: solid 1px var(--grey);
}

.base-table-tr {
	justify-content: space-between;
}

.base-table-th, .base-table-td {
	padding: 12px;
}

.base-table-th {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	background: var(--primary-light);
	color: var(--white);
}

.base-table-td {
	width: 100%;
	background: var(--white);
	color: var(--base-font-color);
}

.base-table-th + .base-table-th {
	border-left: solid 1px #ccc;
}

.base-table-td + .base-table-td {
	border-left: solid 1px #ccc;
}

/*-----------------------------------------------------------
言語切替
-----------------------------------------------------------*/

.lang-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .3s;
}

.lang-list-item {
    max-width: 40px;
    width: 100%;
}

.lang-link {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 40px;
    width: 100%;
    height: 40px;
    border: solid 1px var(--white);
    color: var(--white);
    border-radius: 50%;
    padding: 5px;
}

.lang-link:hover {
    background: var(--white);
    color: var(--primary);
}

.lang-list-item-section {
    height: 20px;
    width: 2px;
    background: var(--white);
    margin: 0 10px;
    transform: rotate(20deg);
}

.lang-list-item-section:last-child {
    display: none;
}

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

.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: var(--primary);
	cursor: inherit;
}

.webgene-pagination > ul > li.selected > a:hover {
	color: var(--white);
	background-color: var(--primary);
}

.webgene-pagination > ul > li > a{
	width: 100%;
	height: 40px;
	width: 40px;
	color: var(--primary);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	padding: 3px 0 0;
}

.webgene-pagination > ul > li > a:hover{
color: var(--white);
background-color: var(--primary);
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 {
	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: 14px;
	height: 14px;
	display: block;
	border-bottom: solid 2px var(--primary);
	border-left: solid 2px var(--primary);
	transform: translateY(-50%) rotate(45deg);
	position: absolute;
	left: 15px;
	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: 14px;
	height: 14px;
	display: block;
	border-top: solid 2px var(--primary);
	border-right: solid 2px var(--primary);
	transform: translateY(-50%) rotate(45deg);
	position: absolute;
	right: 15px;
	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;
}

/*-----------------------------------------------------------
ヘッダー
-----------------------------------------------------------*/

.header {
    z-index: 99999999;
}

.header-lang {
    width: 200px;
    padding: 10px 15px;
    background: var(--white);
    border: solid 1px var(--grey);
    border-radius: 40px;
    position: absolute;
    right: 0;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
}

.header-lang-area:hover .header-lang {
	opacity: 1;
    visibility: visible;
}

.header-lang .lang-link {
    border-color: var(--primary);
    color: var(--primary);
}

.header-lang .lang-link:hover {
    background: var(--primary);
    color: var(--white);
}

.header-lang .lang-list-item-section {
    background: var(--primary);
}

.header-lang.hidden {
	opacity: 0 !important;
	visibility: hidden !important;
}

.pagetop-btn {
    max-width: 50px;
    height: 50px;
    width: 100%;
    border: 1px solid #fff;
    border-radius: 50%;
    background-color: #0071BC;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 100px;
    right: 15px;
    position: fixed;
    opacity: 0;
    visibility: hidden;
    z-index: 99999999;
}

.pagetop-arrow {
    max-width: 17px;
    width: 100%;
    height: 10px;
    background-image: url(/system_panel/uploads/images/pagetop_arrow.svg);
    background-attachment: scroll;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

/*ドロップダウン*/

.header-nav-second {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: .3s;
}

.header-nav-second-link:hover {
  opacity: 0.7;
}

.header-nav-single:hover .header-nav-second {
  opacity: 1;
  visibility: visible;
}

/*スマホ時のナビ*/

.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: 30px;
	width: 100%;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--white);
	text-align: center;
}

.sp-nav-link-icon > img {
    width: 100%;
}

.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);
}

.sp-menu {
	margin: auto;
	padding: 0;
	max-width: 1920px;
	width: 100%;
	position: fixed;
	top: 0;
	bottom: 0;
	right: -100%;
	background: var(--tertiary);
	z-index: 9999999;
	transition: ease .5s;
}

.sp-menu.js-open {
	right: 0;
}

.sp-menu-area {
	width: 100%;
	height: 100%;
	overflow: auto;
	padding: 100px 15px;
}

.sp-menu-conte {
	padding: 100px 0;
	width: 100%;
	height: 100%;
	overflow-y: scroll;
	-ms-overflow-style: none;
}

.sp-menu-conte::-webkit-scrollbar {
	display:none;
}

.sp-menu-link {
	width: 100%;
	padding: 15px 0;
	display: block;
	color: var(--base-font-color);
	border-bottom: solid 1px var(--grey);
	font-weight: bold;
	line-height: 1.5em;
	letter-spacing: 0.05em;
	text-align: center;
	position: relative;
}

.sp-menu-link:hover {
	color: var(--base-font-color);
}

.sp-menu-link-en-text {
    font-size: 12px;
    color: var(--primary);
    margin: 3px 0 0;
}

/*-----------------------------------------------------------
フッター
-----------------------------------------------------------*/

.pagetop-btn.is-hidden {
    visibility: hidden;
    opacity: 0;
}


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@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;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 576px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

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

/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/

body {
	font-size: 16px;
}

/*-- 改行 --*/

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

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

/*-----------------------------------------------------------
見出し
-----------------------------------------------------------*/

.title01 {
	font-size: 35px;
}

.title02 {
	font-size: 26px;
}

.title03 {
	font-size: 22px;
}

.title04 {
	font-size: 18px;
}

/*-----------------------------------------------------------
ボタン
-----------------------------------------------------------*/

.btn03 {
    font-size: 22px;
}

/*-----------------------------------------------------------
下層カバー
-----------------------------------------------------------*/

.in-cover {
	height: 300px;
}

.in-cover-title {
	font-size: 38px;
}

/*-----------------------------------------------------------
ブロック
-----------------------------------------------------------*/

.skew-wrapper01 {
    padding: 110px 0 150px 0;
    clip-path: polygon(0 0, 100% 150px, 100% 100%, 0 calc(100% - 150px));
}

/*-----------------------------------------------------------
テーブル
-----------------------------------------------------------*/

.base-table-th {
	width: 28.12%;
}

.base-table-td {
	width: 71.65%;
}

/*-----------------------------------------------------------
共通リンク
-----------------------------------------------------------*/

.common-banner-link {
	padding: 120px 15px 15px 15px;
}
	
/*-----------------------------------------------------------
ヘッダー
-----------------------------------------------------------*/

.header-lang {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}
  
.pagetop-btn.active {
    opacity: 1;
    visibility: visible;
}

.pagetop-btn.hidden {
    opacity: 0;
    visibility: hidden;
}

/* スマホ時 */

.sp-nav {
	display: none;
}

.sp-nav-btn {
	display: none;
}
  
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 768px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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



/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 992px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */


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

/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/

body {
	font-size: 18px;
}

/*-- 改行 --*/

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

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

/*-----------------------------------------------------------
見出し
-----------------------------------------------------------*/

.title01 {
	font-size: 42px;
}

.title02 {
	font-size: 32px;
}

.title03 {
	font-size: 26px;
}

.title04 {
	font-size: 20px;
}

.title-decoration01 {
    padding: 0 0 50px;
    border-bottom: solid 1px;
}

/*-----------------------------------------------------------
ボタン
-----------------------------------------------------------*/

.btn01 {
	min-height: 70px;
}

.btn02 {
	min-height: 70px;
}

.btn03 {
    font-size: 30px;
}

/*-----------------------------------------------------------
下層カバー
-----------------------------------------------------------*/

.in-cover {
	height: 375px;
}

.in-cover-title {
	font-size: 44px;
}

/*-----------------------------------------------------------
パンくず
-----------------------------------------------------------*/

.breadcrumbs-wrapper {
	font-size: 14px;
}

/*-----------------------------------------------------------
ブロック
-----------------------------------------------------------*/

.wrapper01 {
	padding: 130px 0 130px;
}

.wrapper02 {
	padding: 150px 0;
}

.skew-wrapper01 {
    padding: 215px 0 305px 0;
    clip-path: polygon(0 0, 100% 300px, 100% 100%, 0 calc(100% - 300px));
}
	
/*-----------------------------------------------------------
ページャー
-----------------------------------------------------------*/

.webgene-pagination > ul > li{
	margin: 80px 10px 0;
}
  
/*-----------------------------------------------------------
共通リンク
-----------------------------------------------------------*/
  
.common-banner-link {
	padding: 205px 15px 30px 15px;
}

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

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

/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/

body {
	font-size: 20px;
}

/*-- 改行 --*/

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

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

/*-----------------------------------------------------------
見出し
-----------------------------------------------------------*/

.title01 {
	font-size: 50px;
}

.title02 {
	font-size: 40px;
}

.title03 {
	font-size: 30px;
}

/*-----------------------------------------------------------
ヘッダー
-----------------------------------------------------------*/

.header-inner {
    padding: 10px 15px 10px !important;
}

.header-logo {
    max-width: 100% !important;
    width: 30% !important;
}
	
.header-nav-second {
    font-size: 14px !important;
}
	
/*-----------------------------------------------------------
下層カバー
-----------------------------------------------------------*/

.in-cover-title {
	font-size: 50px;
}

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

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

/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/

/*-- 改行 --*/

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

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

/*-----------------------------------------------------------
ヘッダー
-----------------------------------------------------------*/
	
.header-logo {
    width: 28% !important;
}

.header-nav {
    width: 50% !important;
    font-size: 16px !important;
    margin: auto !important;
    position: absolute;
    top: 50%;
    right: 295px;
    transform: translateY(-50%);
}

	
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 1400px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/

/*-- 改行 --*/

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

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

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 1500px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

/*-----------------------------------------------------------
ヘッダー
-----------------------------------------------------------*/

.header-logo {
    width: 30% !important;
}

.header-nav {
    font-size: inherit !important;
}

.header-nav-second {
    font-size: 18px !important;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 1550px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/

/*-- 改行 --*/

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

.br-1600-block br {
	display: block;
}
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 1600px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 1650px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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



/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 1850px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */