@charset "UTF-8";
/* ========================================

fonts

======================================== */
.f_pp {
	font-family: "Poppins", sans-serif;
	font-weight: 300;
}

.f_ub {
	font-family: "Ubuntu", sans-serif;
	font-weight: 300;
}

.fade.fade_block {
	opacity: 0;
	-webkit-transform: translate3d(0, 30px, 0);
	        transform: translate3d(0, 30px, 0);
	-webkit-transition-duration: 0.6s;
	        transition-duration: 0.6s;
	-webkit-transition-property: opacity, -webkit-transform;
	transition-property: opacity, -webkit-transform;
	transition-property: opacity, transform;
	transition-property: opacity, transform, -webkit-transform;
	-webkit-transition-timing-function: cubic-bezier(0.61, 1, 0.88, 1);
	        transition-timing-function: cubic-bezier(0.61, 1, 0.88, 1);
}
.fade.fade_group > * {
	opacity: 0;
	-webkit-transform: translate3d(0, 30px, 0);
	        transform: translate3d(0, 30px, 0);
	-webkit-transition-duration: 0.6s;
	        transition-duration: 0.6s;
	-webkit-transition-property: opacity, -webkit-transform;
	transition-property: opacity, -webkit-transform;
	transition-property: opacity, transform;
	transition-property: opacity, transform, -webkit-transform;
	-webkit-transition-timing-function: cubic-bezier(0.61, 1, 0.88, 1);
	        transition-timing-function: cubic-bezier(0.61, 1, 0.88, 1);
}
.fade.fade_second:nth-child(0) {
	-webkit-transition-delay: 200ms;
	        transition-delay: 200ms;
}
.fade.fade_second:nth-child(1) {
	-webkit-transition-delay: 300ms;
	        transition-delay: 300ms;
}
.fade.fade_second:nth-child(2) {
	-webkit-transition-delay: 400ms;
	        transition-delay: 400ms;
}
.fade.fade_second:nth-child(3) {
	-webkit-transition-delay: 500ms;
	        transition-delay: 500ms;
}
.fade.fade_second:nth-child(4) {
	-webkit-transition-delay: 600ms;
	        transition-delay: 600ms;
}
.fade.fade_group > *:nth-child(1) {
	-webkit-transition-delay: 300ms;
	        transition-delay: 300ms;
}
.fade.fade_group > *:nth-child(2) {
	-webkit-transition-delay: 400ms;
	        transition-delay: 400ms;
}
.fade.fade_group > *:nth-child(3) {
	-webkit-transition-delay: 500ms;
	        transition-delay: 500ms;
}
.fade.fade_group > *:nth-child(4) {
	-webkit-transition-delay: 600ms;
	        transition-delay: 600ms;
}
.fade.fade_group > *:nth-child(5) {
	-webkit-transition-delay: 700ms;
	        transition-delay: 700ms;
}
.fade.fade_group > *:nth-child(6) {
	-webkit-transition-delay: 800ms;
	        transition-delay: 800ms;
}
.fade.fade_group > *:nth-child(7) {
	-webkit-transition-delay: 900ms;
	        transition-delay: 900ms;
}
.fade.fade_group > *:nth-child(8) {
	-webkit-transition-delay: 1000ms;
	        transition-delay: 1000ms;
}
.fade.fade_group > *:nth-child(9) {
	-webkit-transition-delay: 1100ms;
	        transition-delay: 1100ms;
}
.fade.fade_block.fadeIn {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	        transform: translate3d(0, 0, 0);
}
.fade.fade_group.fadeIn > * {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	        transform: translate3d(0, 0, 0);
}

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

common

======================================== */
html {
	font-size: 14px;
}

body {
	background-image: url(../img/common/head_bg.jpg);
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "MS PGothic", "MS Pゴシック", sans-serif;
	font-weight: 400;
	line-height: 1.6;
	color: var(--foreground);
	-webkit-text-size-adjust: 100%;
	background-repeat: no-repeat;
	background-size: 768px;
	background-position: 0 0;
}

.br_pc {
	display: inline;
}

.br_sp {
	display: none;
}

.disp_pc {
	display: block;
}

.disp_sp {
	display: none;
}

.disp_pc_inline {
	display: inline;
}

.disp_sp_inline {
	display: none;
}

@media screen and (min-width: 800px) {
	.pc_off {
		display: none !important;
	}
}
@media screen and (max-width: 800px) {
	body {
		position: relative;
		background-image: url(../img/common/head_bg_sp.jpg);
		background-size: 490px;
		background-position: center top;
	}
	.br_sp {
		display: inline;
	}
	.br_pc {
		display: none;
	}
	.disp_pc {
		display: none;
	}
	.disp_sp {
		display: block;
	}
	.disp_pc_inline {
		display: none;
	}
	.disp_sp_inline {
		display: inline;
	}
	.sp_off {
		display: none !important;
	}
	body {
		min-width: 320px;
	}
}
.load {
	position: fixed;
	top: 0;
	z-index: 1000;
	width: 100%;
	height: 100%;
	background-image: url(../img/common/load_bg.jpg);
	background-position: 50% 50%;
	background-size: cover;
}
.load::before {
	position: absolute;
	top: calc(50% - 75px);
	left: calc(50% - 75px);
	z-index: 1001;
	display: block;
	width: 150px;
	height: 150px;
	background-image: url(../img/common/load_logo.png);
	-webkit-animation: loading 1.4s linear infinite;
	animation: loading 1.4s linear infinite;
	content: "";
	background-position: 50% 50%;
	background-size: 100%;
}

@-webkit-keyframes loading {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0.6;
	}
	100% {
		opacity: 1;
	}
}

@keyframes loading {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0.6;
	}
	100% {
		opacity: 1;
	}
}
.replace_img {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	white-space: nowrap;
	text-indent: 100%;
	background-repeat: no-repeat;
	background-size: contain;
}

.wrap_1240 {
	width: 90%;
	max-width: 1240px;
	margin: 0 auto;
}

.btn_border {
	position: relative;
	width: 100%;
	max-width: 480px;
	height: 80px;
	padding-bottom: 8px;
	-webkit-box-sizing: content-box;
	        box-sizing: content-box;
}
.btn_border::after {
	position: absolute;
	top: 8px;
	left: 8px;
	display: block;
	width: 100%;
	height: calc(100% - 8px);
	border-radius: 5px;
	background: var(--shadow);
	content: "";
}
.btn_border a {
	position: relative;
	z-index: 2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 100%;
	height: 100%;
	border: 2px solid var(--primary);
	border-radius: 5px;
	background-color: #fff;
}
.btn_border a .replace_img {
	position: relative;
	width: 100px;
	height: 100%;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	background-position: 50% 50%;
	background-size: 100%;
}
.btn_border a .replace_img::after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	opacity: 0;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	content: "";
	background-position: 50% 50%;
	background-size: 100%;
}
.btn_border a .arrow {
	display: block;
	width: 24px;
	height: 14px;
	margin-right: 18px;
	background-image: url(../img/common/ico_arrow_blue.png);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	content: "";
	background-size: contain;
}
.btn_border a .arrow.arrow_reverse {
	-webkit-transform: scale(-1, 1);
	        transform: scale(-1, 1);
}
.btn_border.btn_solid a {
	background-color: var(--primary);
}
.btn_border.btn_solid a .arrow {
	background-image: url(../img/common/ico_arrow_white.png);
}

@media screen and (min-width: 801px) {
	.btn_border a:hover {
		background-color: var(--primary);
		-webkit-transform: translate(8px, 8px);
		        transform: translate(8px, 8px);
	}
	.btn_border a:hover .replace_img::after {
		opacity: 1;
	}
	.btn_border a:hover .arrow {
		background-image: url(../img/common/ico_arrow_white.png);
	}
	.btn_border.btn_solid a:hover {
		background-color: #fff;
	}
	.btn_border.btn_solid a:hover .arrow {
		background-image: url(../img/common/ico_arrow_blue.png);
	}
}
@media screen and (max-width: 800px) {
	.btn_border {
		width: 100%;
		max-width: none;
		height: 75px;
		padding-bottom: 4px;
	}
	.btn_border::after {
		top: 4px;
		left: 0;
		height: calc(100% - 4px);
		border-radius: 2.5px;
	}
	.btn_border a {
		border-radius: 2.5px;
	}
	.btn_border a span::before {
		width: 21px;
		height: 12px;
	}
}
.l_center {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

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

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

header

======================================== */
header .btn_nav {
	display: none;
}
header .header_normal {
	position: relative;
	z-index: 100;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	width: 100%;
	height: 170px;
	padding-right: 170px;
}
header .header_normal > .logo {
	position: absolute;
	top: 50px;
	left: 78px;
	width: 150px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
header .header_normal > .logo::before {
	display: block;
	width: 100%;
	height: 0;
	padding-top: 100%;
	content: "";
}
header .header_normal > .logo a {
	position: absolute;
	top: 0;
	background-image: url(../img/common/head_logo01.png);
}
header .header_normal > .logo::after {
	position: absolute;
	top: 133%;
	display: block;
	width: 100%;
	height: 98px;
	background-image: url(../img/common/head_tagline.png);
	content: "";
	background-size: 100%;
}
header .header_normal .header_inner {
	width: 100%;
	padding: 0 clamp(30px, 7%, 80px) 0 300px;
}
header .header_normal .btn_contact {
	position: absolute;
	top: 0;
	right: 0;
	width: 170px;
	height: 210px;
	overflow: hidden;
	border-radius: 0 0 0 5px;
}
header .header_normal .btn_contact a {
	background-image: url(../img/common/head_btn_contact.png);
	background-position: 50% 50%;
	background-size: cover;
}
header .header_normal .btn_contact a::before {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-image: url(../img/common/head_btn_contact_on.png);
	opacity: 0;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	content: "";
	background-position: 50% 50%;
	background-size: cover;
}
header .header_bnr {
	display: none;
}
header .navigation_list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}
header .navigation_list li {
	font-family: maru-maru-gothic-blr-stdn, sans-serif;
	font-size: 19px;
	color: var(--foreground);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
header .navigation_list li svg {
	height: 17px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
header .navigation_list li:not(:first-of-type) {
	margin-left: 4.2%;
}
header .navigation_list li a {
	display: block;
}
header .navigation .en {
	display: block;
	margin-top: 2px;
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.04em;
	color: var(--primary);
	text-transform: uppercase;
}
header .cmn_contact.header_contact {
	display: none;
}
body.active header .header_fixed {
	-webkit-transform: translate(0, 0);
	        transform: translate(0, 0);
}

header .layer {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	width: 100vw;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.6s;
	transition: all 0.6s;
}

@media screen and (min-width: 1400px) {
	header .header_inner {
		padding-right: 100px;
	}
}
@media screen and (min-width: 801px) and (max-width: 1240px) {
	header .header_normal .navigation_list {
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}
	header .header_normal .navigation_list li {
		font-size: 18px;
	}
	header .header_normal .navigation_list li:not(:first-of-type) {
		margin-left: 0;
	}
}
@media screen and (min-width: 1024px) {
	.header_normal .header_inner .logo {
		display: none;
	}
	.header_fixed {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 100;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-pack: end;
		    -ms-flex-pack: end;
		        justify-content: flex-end;
		width: 100%;
		height: 90px;
		padding-right: 220px;
		background-color: #fff;
		-webkit-transform: translate(0, -110px);
		        transform: translate(0, -110px);
		-webkit-transition: all 0.5s;
		transition: all 0.5s;
	}
	.header_fixed .logo {
		position: absolute;
		top: 20px;
		left: 40px;
		width: 200px;
		height: 50px;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}
	.header_fixed .logo a {
		background-image: url(../img/common/head_logo02.png);
	}
	.header_fixed .header_inner {
		width: 100%;
		padding: 0 60px 0 300px;
	}
	.header_fixed .btn_contact {
		position: absolute;
		top: 0;
		right: 0;
		width: 220px;
		height: 110px;
		overflow: hidden;
		border-radius: 0 0 0 5px;
	}
	.header_fixed .btn_contact a {
		background-image: url(../img/common/head_btn_contact_fx.png);
		background-position: 50% 50%;
		background-size: cover;
	}
	.header_fixed .btn_contact a::before {
		position: absolute;
		top: 0;
		right: 0;
		display: block;
		width: 100%;
		height: 100%;
		background-image: url(../img/common/head_btn_contact_fx_on.png);
		opacity: 0;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
		content: "";
		background-position: 50% 50%;
		background-size: cover;
	}
}
@media screen and (min-width: 801px) {
	header .logo a:hover {
		-webkit-transform: translate(0, -4px);
		        transform: translate(0, -4px);
	}
	header .navigation_list li a:hover svg {
		fill: var(--primary);
	}
	header .navigation_list li a:hover {
		color: var(--primary);
	}
	header .btn_contact a:hover::before {
		opacity: 1;
	}
}
@media screen and (max-width: 1240px) {
	header .header_normal {
		height: 130px;
		padding-right: 150px;
	}
	header .header_normal .logo {
		left: 50px;
		width: 10%;
	}
	header .header_normal .header_inner {
		padding-right: clamp(30px, 3vw, 60px);
		padding-left: calc(10vw + 110px);
	}
	header .header_normal .navigation_list li {
		font-size: 16px;
	}
	header .header_normal .navigation .en {
		font-size: 12px;
	}
	header .header_normal .btn_contact {
		width: 150px;
		height: 170px;
	}
	header .header_fixed {
		padding-right: 180px;
	}
	header .header_fixed .header_inner {
		padding: 0 40px 0 280px;
	}
	header .header_fixed .navigation_list li svg {
		height: 14px;
	}
	header .header_fixed .btn_contact {
		width: 180px;
	}
}
@media screen and (max-width: 1024px) {
	header .header_fixed {
		display: none;
	}
	header .header_normal {
		display: block;
		height: 100px;
		padding: 18px 0 0 0;
	}
	header .header_normal > .logo {
		position: relative;
		top: auto;
		left: auto;
		width: 257px;
		height: 65px;
		margin: 0 0 17px 5%;
	}
	header .header_normal > .logo::before {
		display: none;
	}
	header .header_normal > .logo a {
		position: relative;
		background-image: url(../img/common/head_logo03.png);
	}
	header .header_normal > .logo::after {
		display: none;
	}
	header .header_normal .header_inner {
		position: fixed;
		top: 0;
		z-index: 100;
		width: 100%;
		max-height: 0;
		padding: 0;
		overflow: hidden;
		background-color: #fff;
		visibility: hidden;
		-webkit-transition: all 0.8s cubic-bezier(0.65, 0, 0.35, 1);
		transition: all 0.8s cubic-bezier(0.65, 0, 0.35, 1);
	}
	header .header_normal .header_inner .logo {
		position: relative;
		top: auto;
		left: auto;
		width: 257px;
		height: 65px;
		margin: 18px 0 52px 5%;
	}
	header .header_normal .header_inner .logo a {
		position: relative;
		background-image: url(../img/common/head_logo03.png);
	}
	header .header_normal .header_inner .navigation {
		width: 84.375%;
		margin: 0 auto;
		margin-bottom: 40px;
		padding: 0;
	}
	header .header_normal .header_inner .navigation_list {
		display: block;
	}
	header .header_normal .header_inner .navigation_list li:not(:last-of-type) {
		border-bottom: 1px solid #757575;
	}
	header .header_normal .header_inner .navigation_list li svg {
		height: 100%;
	}
	header .header_normal .header_inner .navigation_list li:not(:first-of-type) {
		margin-left: 0;
	}
	header .header_normal .header_inner .navigation_list li a {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		height: 86px;
	}
	header .header_normal .header_inner .navigation .jp {
		height: 15px;
		line-height: 1;
	}
	header .header_normal .header_inner .navigation .en {
		margin: 0 0 0 20px;
		font-size: 15px;
		line-height: 1;
	}
	header .header_normal .header_bnr {
		display: block;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		width: 84.375%;
		margin: 0 auto;
		margin-bottom: 60px;
	}
	header .header_normal .header_bnr_item {
		position: relative;
		display: block;
		width: 48%;
	}
	header .header_normal .header_bnr_item::after {
		position: absolute;
		top: 6px;
		left: 0;
		z-index: -1;
		display: block;
		width: 100%;
		height: 100%;
		border-radius: 2.5px;
		background: var(--shadow);
		content: "";
	}
	header .header_normal .header_bnr_item a {
		display: block;
		overflow: hidden;
		border-radius: 2.5px;
	}
	header .header_normal .cmn_contact.header_contact {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		width: 84.375%;
		margin: 0 auto;
		margin-bottom: 0;
	}
	body.nav_active {
		overflow: hidden;
	}
	body.nav_active .header_inner {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		max-height: 1060px;
		padding: 0;
		overflow-y: auto;
		visibility: visible;
	}
	header .btn_nav {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 103;
		display: block;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		width: 90px;
		height: 120px;
		padding-top: 5px;
		color: #fff;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}
	header .btn_nav::before {
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
		display: block;
		width: 100%;
		height: 100%;
		overflow: hidden;
		border-radius: 0 0 0 5px;
		background-image: url(../img/common/head_bg_btn_nav.jpg);
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
		content: "";
		background-position: 50% 0;
		background-size: cover;
	}
	header .btn_nav .menu span, header .btn_nav .menu::before, header .btn_nav .menu::after {
		position: absolute;
		left: 24px;
		display: block;
		width: 42px;
		height: 2px;
		background: #fff;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
		content: "";
	}
	header .btn_nav .menu::before {
		-webkit-transform-origin: center;
		        transform-origin: center;
		margin-top: -7px;
		-webkit-animation: nav_01_off 0.4s forwards;
		        animation: nav_01_off 0.4s forwards;
	}
	header .btn_nav .menu::after {
		-webkit-transform-origin: center;
		        transform-origin: center;
		margin-top: 7px;
		-webkit-animation: nav_02_off 0.4s forwards;
		        animation: nav_02_off 0.4s forwards;
	}
	header .btn_nav .title {
		margin-top: 16px;
		font-size: 15px;
		line-height: 1;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
		text-transform: uppercase;
	}
	header.active .btn_nav .menu::before {
		-webkit-animation: nav_01_on 0.4s forwards;
		        animation: nav_01_on 0.4s forwards;
	}
	header.active .btn_nav .menu::after {
		-webkit-animation: nav_02_on 0.4s forwards;
		        animation: nav_02_on 0.4s forwards;
	}
	body.active .btn_nav {
		height: 90px;
	}
	header .btn_contact {
		display: none;
	}
	body.nav_active .layer {
		opacity: 1;
		visibility: visible;
	}
	body.nav_active .btn_nav .menu::before {
		-webkit-animation: nav_01_on 0.4s forwards;
		        animation: nav_01_on 0.4s forwards;
	}
	body.nav_active .btn_nav .menu::after {
		-webkit-animation: nav_02_on 0.4s forwards;
		        animation: nav_02_on 0.4s forwards;
	}
}
@media screen and (max-width: 800px) {
	body.nav_active .header_inner {
		max-height: 1330px;
	}
	header .header_normal .header_inner .navigation {
		margin-bottom: 6px;
	}
	header .header_normal .header_bnr {
		display: block;
		width: 90%;
		margin-bottom: 60px;
	}
	header .header_normal .header_bnr_item {
		width: 100%;
	}
	header .header_normal .header_bnr_item::after {
		top: 4px;
	}
	header .header_normal .header_bnr .bnr_attend {
		margin-bottom: 22px;
	}
	header .header_normal .cmn_contact.header_contact {
		margin-bottom: 78px;
	}
}
@-webkit-keyframes nav_01_off {
	0% {
		margin-top: -7px;
	}
	50% {
		margin-top: 0;
	}
	100% {
		margin-top: -7px;
	}
}
@keyframes nav_01_off {
	0% {
		margin-top: -7px;
	}
	50% {
		margin-top: 0;
	}
	100% {
		margin-top: -7px;
	}
}
@-webkit-keyframes nav_01_on {
	0% {
		margin-top: -7px;
	}
	50% {
		margin-top: 0;
	}
	100% {
		margin-top: -7px;
	}
}
@keyframes nav_01_on {
	0% {
		margin-top: -7px;
	}
	50% {
		margin-top: 0;
	}
	100% {
		margin-top: -7px;
	}
}
@-webkit-keyframes nav_02_off {
	0% {
		margin-top: 7px;
	}
	50% {
		margin-top: 0;
	}
	100% {
		margin-top: 7px;
	}
}
@keyframes nav_02_off {
	0% {
		margin-top: 7px;
	}
	50% {
		margin-top: 0;
	}
	100% {
		margin-top: 7px;
	}
}
@-webkit-keyframes nav_02_on {
	0% {
		margin-top: 7px;
	}
	50% {
		margin-top: 0;
	}
	100% {
		margin-top: 7px;
	}
}
@keyframes nav_02_on {
	0% {
		margin-top: 7px;
	}
	50% {
		margin-top: 0;
	}
	100% {
		margin-top: 7px;
	}
}
/* ========================================

footer

======================================== */
.footer {
	position: relative;
	z-index: 10;
}
.footer_top {
	position: relative;
	z-index: 10;
	margin-bottom: 100px;
	padding-top: 160px;
}
.footer_top::before {
	position: absolute;
	top: 120px;
	right: 95%;
	z-index: -1;
	display: block;
	width: 292px;
	height: 326px;
	background-image: url(../img/common/foot_bg_ptn01.png);
	content: "";
	background-size: cover;
}
.footer_bnr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.footer_bnr_item {
	position: relative;
	z-index: 10;
}
.footer_bnr_item a {
	display: block;
	overflow: hidden;
	border: 2px solid var(--sage-mid);
	border-radius: 5px;
}
.footer_bnr_item::after {
	position: absolute;
	top: 8px;
	left: 8px;
	z-index: -1;
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background: var(--shadow);
	content: "";
}
.footer_bnr .bnr_attend {
	width: 48.388%;
	max-width: 600px;
}
.footer_bnr .bnr_recruit {
	width: 48.791%;
	max-width: 605px;
}
.footer_content {
	position: relative;
	background-image: url(../img/common/foot_bg.jpg);
	background-size: cover;
	background-position: 50% 0%;
}
.footer_content::before, .footer_content::after {
	position: absolute;
	top: 0;
	display: block;
	width: calc((100% - clamp(0px, 90%, 1240px)) / 2);
	height: 100px;
	background-color: #fff;
	content: "";
}
.footer_content::before {
	left: 0;
	border-radius: 0 0 15px 0;
}
.footer_content::after {
	right: 0;
	border-radius: 0 0 0 15px;
}
.footer_content_inner {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding: 100px 0 114px;
	color: #fff;
}
.footer_content_inner::before, .footer_content_inner::after {
	position: absolute;
	top: 0;
	display: block;
	width: 10px;
	height: 10px;
	background-image: url(../img/common/img_edge.svg);
	content: "";
	background-repeat: no-repeat;
}
.footer_content_inner::before {
	left: 0;
	-webkit-transform: rotate(90deg);
	        transform: rotate(90deg);
}
.footer_content_inner::after {
	right: 0;
	-webkit-transform: rotate(-180deg);
	        transform: rotate(-180deg);
}
.footer_content_title {
	width: 100%;
	margin-bottom: 76px;
	text-align: center;
}
.footer_content_title .en {
	margin-bottom: 27px;
}
.footer_content_title .en img {
	width: 202px;
}
.footer_content_title .desc {
	letter-spacing: 0.02em;
}
.footer_content_access {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-bottom: 82px;
	row-gap: 40px;
}
.footer_content_access li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: min(100%, 1100px);
	margin: 0 auto;
	-webkit-column-gap: 5.4546%;
	   -moz-column-gap: 5.4546%;
	        column-gap: 5.4546%;
}
.footer_content_access li.item01 h3 {
	width: min(92.083375%, 369px);
}
.footer_content_access li.item02 h3 {
	width: min(92.083375%, 431px);
}
.footer_content_access li.item03 h3 {
	width: min(92.083375%, 431px);
}
.footer_content_access li .img {
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	width: 36.3637%;
	-ms-flex-item-align: start;
	    -ms-grid-row-align: start;
	    align-self: start;
}
.footer_content_access li .img img {
	border-radius: 5px;
}
.footer_content_access li .body {
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	width: 41.8183%;
	padding-top: 20px;
}
.footer_content_access li h3 {
	margin-bottom: 30px;
}
.footer_content_access li .term {
	grid-area: term;
	margin-bottom: 28px;
}
.footer_content_access li .txt {
	grid-area: txt;
}
.footer_content_access li .term {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	margin-top: -10px;
}
.footer_content_access li .term span {
	margin-top: 10px;
	padding: 2px 17px 3px;
	border-radius: 5px;
	background-color: #fff;
	font-size: 15px;
	color: var(--primary);
}
.footer_content_access li .term span:not(:last-child) {
	margin-right: 10px;
}
.footer_content_access li .txt {
	line-height: 1.85;
	letter-spacing: 0.05em;
}
.footer_content_access li .txt a {
	display: inline-block;
	margin-bottom: 3px;
	margin-left: 1em;
	text-decoration: underline;
}
.footer_content_access li .txt a:hover {
	border-color: var(--primary);
	color: var(--primary);
}
.footer_content_info {
	padding-top: 10px;
}
.footer_content_info .logo {
	width: 224px;
	margin-bottom: 40px;
}
.footer_content_info .sns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin-bottom: 36px;
}
.footer_content_info .sns_item:not(:last-of-type) {
	margin-right: 8px;
}
.footer_content_info .sns_item a {
	width: 34px;
	background-position: 50% 50%;
}
.footer_content_info .sns_item_fb a {
	background-image: url(../img/common/ico_sns_fb.png);
	background-size: 10px;
}
.footer_content_info .sns_item_tw a {
	background-image: url(../img/common/ico_sns_tw.png);
	background-size: 18px;
	background-position: 50% 70%;
}
.footer_content_info .sns_item_yt a {
	background-image: url(../img/common/ico_sns_yt.png);
	background-size: 23px;
}
.footer_content_info .sns_item_is a {
	background-image: url(../img/common/ico_sns_is.png);
	background-size: 20px;
}
.footer_content_info .sns_item_tt a {
	background-image: url(../img/common/ico_sns_tt.png);
	background-size: 17px;
}
.footer_content_info_about {
	line-height: 1.86;
}
.footer_content_nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	padding-top: 15px;
}
.footer_content_nav_inner {
	width: 100%;
	text-align: right;
}
.footer_content_nav_list {
	display: inline-block;
	font-size: 16px;
	line-height: 2.2;
	letter-spacing: -0.05em;
}
.footer_content_nav_list:not(:first-of-type) {
	margin-left: 2em;
}
.footer_content_nav_list .list_item {
	text-align: left;
}
.footer_content_nav_list .list_item a::before {
	content: "・";
}
.footer_content_nav .copyright {
	width: 100%;
	margin-top: auto;
	letter-spacing: 0.05em;
	text-align: right;
	text-transform: uppercase;
}

@media screen and (max-width: 1100px) {
	.footer_content_info_about {
		width: 100%;
		margin-top: 26px;
		font-size: 13px;
	}
	.footer_content_nav_list {
		font-size: 14px;
	}
	.footer_content_nav_list:not(:first-of-type) {
		margin-left: min(1.6vw, 32px);
	}
}
@media screen and (min-width: 801px) {
	.footer_content .logo a:hover {
		opacity: 0.7;
	}
	.footer_content_info .sns .sns_item a:hover {
		opacity: 0.7;
	}
	.footer_content_nav_list .list_item a:hover {
		color: var(--primary);
	}
	.footer_bnr a:hover {
		-webkit-transform: translate(8px, 8px);
		        transform: translate(8px, 8px);
	}
}
@media screen and (max-width: 800px) {
	.footer_top {
		z-index: 10;
		margin-bottom: 56px;
		padding-top: 58px;
	}
	.footer_top::before {
		top: 5px;
		right: 88%;
		-webkit-transform: scale(0.5);
		        transform: scale(0.5);
		-webkit-transform-origin: 100% 0;
		        transform-origin: 100% 0;
		background-position: 50% -18px;
	}
	.footer_bnr {
		display: block;
	}
	.footer_bnr_item {
		width: 100%;
	}
	.footer_bnr_item::after {
		display: none;
	}
	.footer_bnr_item a {
		border-radius: 2.5px;
	}
	.footer_bnr .bnr_attend {
		width: 100%;
		max-width: none;
		margin-bottom: 20px;
	}
	.footer_bnr .bnr_recruit {
		width: 100%;
		max-width: none;
	}
	.footer_content {
		padding-bottom: 22.5vw;
		background-image: url(../img/common/foot_bg_sp.jpg);
	}
	.footer_content::before, .footer_content::after {
		width: 7.5%;
		height: 50px;
	}
	.footer_content::before {
		border-radius: 0 0 8px 0;
	}
	.footer_content::after {
		border-radius: 0 0 0 8px;
	}
	.footer_content_inner {
		width: 85%;
		margin: 0 auto;
		padding: 70px 0 64px;
	}
	.footer_content_inner::before, .footer_content_inner::after {
		width: 8px;
		height: 8px;
	}
	.footer_content_title {
		margin-bottom: 40px;
	}
	.footer_content_title .en {
		margin-bottom: 16px;
	}
	.footer_content_title .en img {
		width: 133px;
	}
	.footer_content_title .desc {
		font-size: 14px;
	}
	.footer_content_access {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		margin-bottom: 52px;
		row-gap: 44px;
	}
	.footer_content_access li {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		width: 100%;
	}
	.footer_content_access li.item01 h3 {
		width: 100%;
		max-width: 336px;
	}
	.footer_content_access li.item02 h3 {
		width: 100%;
		max-width: 336px;
	}
	.footer_content_access li.item03 h3 {
		width: 100%;
		max-width: 336px;
	}
	.footer_content_access li .img {
		width: 100%;
	}
	.footer_content_access li .img img {
		border-radius: 2.5px;
	}
	.footer_content_access li .body {
		width: 100%;
		padding-top: 36px;
	}
	.footer_content_access li .term {
		margin-bottom: 22px;
	}
	.footer_content_access li .term span {
		padding: 2px 10px 3px;
		border-radius: 2.5px;
		font-size: 13px;
	}
	.footer_content_access li .txt {
		font-size: 14px;
		line-height: 1.78;
		letter-spacing: -0.03em;
	}
	.footer_content_access li .txt a {
		margin-bottom: 24px;
		margin-left: 0;
	}
	.footer_content_info {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		width: 100%;
		margin-bottom: 45px;
		padding-top: 0;
	}
	.footer_content_info .logo {
		width: calc(100% - 152px);
		max-width: 162px;
		margin-bottom: 0;
	}
	.footer_content_info .sns {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		margin: 0;
	}
	.footer_content_info .sns_item:not(:last-of-type) {
		margin-right: 4px;
	}
	.footer_content_info .sns_item a {
		width: 26px;
		height: 28px;
	}
	.footer_content_info .sns_item_fb a {
		width: 26px;
		background-size: 12px;
	}
	.footer_content_info .sns_item_tw a {
		background-size: 19px;
		background-position: 50% 60%;
	}
	.footer_content_info .sns_item_yt a {
		background-size: 24px;
	}
	.footer_content_info .sns_item_is a {
		background-size: 18px;
		background-position: 50% 60%;
	}
	.footer_content_info .about {
		margin-top: 26px;
		line-height: 1.78;
	}
	.footer_content_nav {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		-ms-flex-line-pack: justify;
		    align-content: space-between;
		width: 100%;
		padding-top: 0;
	}
	.footer_content_nav_inner {
		width: 100%;
		border-top: 1px solid #fff;
	}
	.footer_content_nav_list {
		display: block;
		font-size: 15px;
		line-height: 1;
	}
	.footer_content_nav_list:not(:first-of-type) {
		margin-left: 0;
	}
	.footer_content_nav_list .list_item {
		text-align: center;
		border-bottom: 1px solid #fff;
	}
	.footer_content_nav_list .list_item a {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		height: 72px;
	}
	.footer_content_nav_list .list_item a::before {
		content: "";
		display: none;
	}
	.footer_content_nav .copyright {
		margin-top: 60px;
		text-align: center;
	}
}
/* ========================================

style

======================================== */
/* cmn_content
---------------------------------------- */
.cmn_contact {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	margin-bottom: 54px;
	line-height: 1;
	color: var(--primary);
}
.cmn_contact_title {
	margin-right: auto;
}
.cmn_contact_title .en {
	margin-bottom: 26px;
}
.cmn_contact_title .en img {
	width: 268px;
}
.cmn_contact_title .desc {
	font-size: 16px;
}
.cmn_contact_item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	width: 38%;
	width: calc((98% - 300px) / 2);
	max-width: 420px;
}
.cmn_contact_item .icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	width: 23.8%;
	max-width: 98px;
	height: 80px;
}
.cmn_contact_item .icon span {
	position: relative;
	display: block;
	width: 25px;
	height: 46px;
	background: linear-gradient(135deg, var(--primary), var(--sage-mid));
	-webkit-mask-image: url(../img/common/ico_mail.svg);
	mask-image: url(../img/common/ico_mail.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: 50% 50%;
	mask-position: 50% 50%;
	-mask-size: 24px;
	-webkit-mask-size: 24px;
}
.cmn_contact_item .icon::before, .cmn_contact_item .icon::after {
	display: block;
	width: 2px;
	height: 80px;
	background-image: url(../img/common/ptn_tile.gif);
	content: "";
	background-repeat: repeat;
	background-size: 2px;
}
.cmn_contact_item .box_text {
	width: 70%;
	max-width: 280px;
}
.cmn_contact_item .title {
	font-size: 18px;
}
.cmn_contact_tel {
	max-width: 400px;
	margin-right: 2%;
}
.cmn_contact_tel .title {
	max-width: 194px;
}
.cmn_contact_tel .icon span {
	-webkit-mask-image: url(../img/common/ico_tel.svg);
	mask-image: url(../img/common/ico_tel.svg);
}
.cmn_contact_tel .box_text {
	max-width: 270px;
}
.cmn_contact_tel .num {
	margin: 10px 0;
	font-size: 32px;
	line-height: 1;
}
.cmn_contact_tel .note {
	letter-spacing: -0.05em;
}
.cmn_contact_mail .title {
	max-width: 194px;
	margin-bottom: 16px;
}
.cmn_contact_mail .icon span {
	height: 20px;
}
.cmn_contact_mail .btn_border {
	width: 100%;
	max-width: none;
	height: 60px;
	padding-bottom: 6px;
}
.cmn_contact_mail .btn_border::after {
	top: 6px;
	left: 6px;
	height: calc(100% - 6px);
}
.cmn_contact_mail .btn_border a .replace_img {
	width: 134px;
	height: 16px;
	background-image: url(../img/common/cmn_contact_mail_btn_txt.png);
}
.cmn_contact_mail .btn_border a .replace_img::after {
	background-image: url(../img/common/cmn_contact_mail_btn_txt_on.png);
}
.cmn_contact_mail .btn_border a .arrow {
	margin-right: 8px;
}

@media screen and (min-width: 801px) {
	.cmn_contact_mail .btn_border a:hover {
		-webkit-transform: translate(6px, 6px);
		        transform: translate(6px, 6px);
	}
}
@media screen and (max-width: 1100px) {
	.cmn_contact {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
	.cmn_contact_title {
		width: 100%;
		margin-bottom: 40px;
		text-align: center;
	}
	.cmn_contact_title .en {
		margin-bottom: 16px;
	}
	.cmn_contact_title .desc {
		font-size: 14px;
	}
	.cmn_contact_item {
		width: 49%;
	}
	.cmn_contact_tel {
		margin-right: 0;
	}
}
@media screen and (max-width: 800px) {
	.cmn_contact {
		display: block;
		margin-bottom: 45px;
	}
	.cmn_contact_title .en {
		margin-bottom: 16px;
		font-size: 35px;
	}
	.cmn_contact_title .en img {
		width: 173px;
	}
	.cmn_contact_title .desc {
		font-size: 14px;
	}
	.cmn_contact_item {
		width: 100%;
		max-width: none;
	}
	.cmn_contact_item .icon {
		width: 90px;
		max-width: none;
		height: auto;
	}
	.cmn_contact_item .box_text {
		width: calc(100% - 120px);
		max-width: none;
	}
	.cmn_contact_item .title {
		font-size: 15px;
	}
	.cmn_contact_tel {
		margin: 0 0 30px;
	}
	.cmn_contact_tel .title {
		max-width: 162px;
	}
	.cmn_contact_tel .num {
		margin: 8px 0;
		font-size: 26px;
	}
	.cmn_contact_tel .note {
		font-size: 13.5px;
		letter-spacing: -0.05em;
	}
	.cmn_contact_mail .title {
		max-width: 162px;
	}
	.cmn_contact_mail .icon span {
		height: 20px;
	}
	.cmn_contact_mail .btn_border {
		height: 50px;
		padding-bottom: 4px;
	}
	.cmn_contact_mail .btn_border::after {
		top: 4px;
		left: 0;
		height: calc(100% - 4px);
	}
}
/* ========================================

page_title

======================================== */
.page_title {
	position: relative;
	max-height: 600px;
}
.page_title::before {
	position: relative;
	display: block;
	width: 100%;
	margin-left: auto;
	padding-top: 42.857%;
	overflow: hidden;
	content: "";
}
.page_title::after {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	display: block;
	width: 100%;
	width: calc(100% - 300px);
	height: 100%;
	border-radius: 10px 0 0 10px;
	background-image: url(../img/common/blog_thumbnail.jpg);
	content: "";
	background-position: 50% 50%;
	background-size: cover;
}
.page_title_inner {
	position: absolute;
	bottom: 0;
	z-index: 2;
	width: 100%;
}
.page_title_inner::before {
	position: absolute;
	right: calc(100% - 520px);
	bottom: 0;
	z-index: -1;
	display: block;
	width: 220px;
	height: 100%;
	border-radius: 0 20px 0 0;
	background-color: #fff;
	content: "";
}
.page_title_inner .box_text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	width: 80%;
	max-width: 520px;
	height: 128px;
	padding-left: 100px;
}
.page_title_inner .box_text::before, .page_title_inner .box_text::after {
	position: absolute;
	display: block;
	width: 17px;
	height: 17px;
	background-image: url(../img/common/img_edge.svg);
	content: "";
	background-size: 100%;
}
.page_title_inner .box_text::before {
	top: -17px;
	right: calc(100% - 317px);
}
.page_title_inner .box_text::after {
	right: calc(100% - 537px);
	bottom: 0;
}
.page_title_inner h1 {
	width: 100%;
}
.page_title_inner .replace_img {
	width: 100%;
	height: 38px;
	background-size: auto 100%;
}
.page_title_inner .en {
	margin-top: 22px;
	font-size: 20px;
	line-height: 1;
	color: var(--primary);
	text-transform: uppercase;
}

@media screen and (max-width: 1240px) {
	.page_title::after {
		width: calc(90% - 110px);
	}
	.page_title_inner::before {
		right: calc(90% - 410px);
		width: 300px;
	}
	.page_title_inner .box_text::before {
		right: calc(90% - 127px);
	}
	.page_title_inner .box_text::after {
		right: calc(90% - 347px);
	}
}
@media screen and (max-width: 1024px) {
	.page_title::before {
		padding-top: 75%;
	}
	.page_title::after {
		width: 95%;
		border-radius: 5px 0 0 5px;
	}
	.page_title_inner {
		bottom: -15px;
	}
	.page_title_inner::before {
		right: auto;
		bottom: 15px;
		left: 5%;
		width: 70%;
		height: 65px;
		border-radius: 0 10px 0 0;
	}
	.page_title_inner .box_text {
		width: 100%;
		max-width: none;
		height: 65px;
		padding-left: 7.5%;
	}
	.page_title_inner .box_text::before, .page_title_inner .box_text::after {
		width: 9px;
		height: 9px;
	}
	.page_title_inner .box_text::before {
		top: -24px;
		right: auto;
		left: 5%;
	}
	.page_title_inner .box_text::after {
		top: 41px;
		right: auto;
		bottom: auto;
		left: 75%;
	}
	.page_title_inner .replace_img {
		height: 30px;
	}
	.page_title_inner .en {
		margin-top: 14px;
		font-size: 16px;
	}
}
/* ========================================

journal

======================================== */
.journal {
	position: relative;
}
.journal_inner {
	position: relative;
}
.journal_list_inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.journal_list_item {
	position: relative;
}
.journal_list_item.new::before {
	position: absolute;
	top: -20px;
	left: -20px;
	z-index: 10;
	display: block;
	width: 120px;
	width: clamp(80px, 8.6vw, 120px);
	height: 120px;
	height: clamp(80px, 8.6vw, 120px);
	border: 2px solid var(--primary);
	border-radius: 50%;
	background-image: url(../img/common/journal_ico_new.png);
	content: "";
	background-position: 50% 50%;
	background-size: 50%;
}
.journal_list_item .img {
	position: relative;
	margin-bottom: 30px;
	overflow: hidden;
	border-radius: 5px;
}
.journal_list_item .img::before {
	display: block;
	width: 100%;
	height: 0;
	padding-top: 82.474%;
	content: "";
}
.journal_list_item .img a {
	display: block;
}
.journal_list_item .img img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: auto;
	max-width: none;
	height: 100%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	-webkit-transform-origin: 0 0;
	        transform-origin: 0 0;
}
.journal_list_item .info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	color: var(--primary);
}
.journal_list_item .info .category a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	height: 40px;
	padding: 0 18px 0 12px;
	border: 2px solid var(--primary);
	border-radius: 20px;
	background-color: #fff;
}
.journal_list_item .info .category a::before {
	content: "・";
}
.journal_list_item .info .author {
	position: relative;
	width: 36%;
	max-width: 80px;
	margin-left: 10px;
	overflow: hidden;
	border: 3px solid #fff;
	border-radius: 50%;
}
.journal_list_item .info .author a {
	display: block;
}
.journal_list_item .info .author img {
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.journal_list_item .info .date {
	font-size: 16px;
}
.journal_list_item .box_text a {
	display: block;
	width: 100%;
}
.journal_list_item .box_text .title {
	margin: 24px 0 20px;
	font-size: 20px;
	color: var(--primary);
}
.journal_list_item .box_text .title span {
	position: relative;
	padding-bottom: 8px;
	background-image: -webkit-gradient(linear, left top, right top, from(var(--primary)), to(var(--primary)));
	background-image: linear-gradient(90deg, var(--primary), var(--primary));
	background-position: left bottom;
	background-size: 0 1px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.journal_list_item .box_text .txt {
	font-size: 15px;
	line-height: 1.8;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.journal_list.type_author .journal_list_item .img {
	margin-bottom: 0;
}
.journal_list.type_author .journal_list_item .info {
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}
.journal_list.type_author .journal_list_item .info .author {
	margin-top: -25px;
}
.journal_list.type_author .journal_list_item .info .category {
	margin-top: 10px;
}
.journal_list.type_author .journal_list_item .info .date {
	margin-top: 16px;
}
.journal .btn_list {
	position: absolute;
	top: 20px;
	right: 0;
}
.journal .btn_list a {
	display: inline-block;
	padding: 0 12px 28px 12px;
	background-image: -webkit-gradient(linear, left top, right top, from(var(--primary)), to(var(--primary)));
	background-image: linear-gradient(90deg, var(--primary), var(--primary));
	font-size: 18px;
	color: var(--primary);
	background-position: left bottom;
	background-size: 100% 2px;
}
.journal .btn_list a img {
	width: 136px;
}

@media screen and (min-width: 801px) {
	.journal_list_item .img a:hover img {
		-webkit-transform: translate(-55%, -55%) scale(1.1);
		        transform: translate(-55%, -55%) scale(1.1);
	}
	.journal_list_item .info a:hover {
		background-color: var(--primary);
		color: #fff;
	}
	.journal_list_item .author a:hover img {
		-webkit-transform: scale(1.2);
		        transform: scale(1.2);
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}
	.journal_list .box_text a:hover .title span {
		background-size: 100% 1px;
	}
	.journal_list .box_text a:hover .txt {
		color: var(--primary);
	}
	.journal .btn_list a:hover {
		opacity: 0.4;
		background-size: 0 2px;
	}
}
@media screen and (max-width: 1000px) {
	.journal .btn_list {
		position: relative;
		top: auto;
		right: auto;
		margin-top: 60px;
		text-align: center;
	}
	.journal .btn_list a {
		padding-bottom: 18px;
	}
}
@media screen and (max-width: 800px) {
	.journal_list_item {
		max-width: none;
	}
	.journal_list_item:not(:last-of-type) {
		margin-right: 0;
	}
	.journal_list_item.new::before {
		top: -10px;
		left: -10px;
		background-size: 60%;
	}
	.journal_list_item .img {
		margin-bottom: 20px;
		border-radius: 2.5px;
	}
	.journal_list_item .info .category a {
		height: 36px;
		padding: 0 14px 0 8px;
	}
	.journal_list_item .info .date {
		font-size: 15px;
	}
	.journal_list_item .box_text .title {
		margin: 18px 0 14px;
		font-size: 20px;
	}
	.journal_list_item .box_text .txt {
		font-size: 14px;
	}
	.journal_list.type_author .journal_list_item .img {
		margin-bottom: 0;
	}
	.journal_list.type_author .journal_list_item .info {
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}
	.journal_list.type_author .journal_list_item .info .author {
		width: 55px;
		margin: -25px 0 0 10px;
		border-width: 2px;
	}
	.journal_list.type_author .journal_list_item .info .category {
		margin-bottom: 12px;
	}
	.journal_list.type_author .journal_list_item .box_text .title {
		margin-top: 8px;
	}
	.journal .btn_list {
		margin-top: 0;
	}
}
/* ========================================

bnr_recruit_fixed

======================================== */
.bnr_recruit_fixed {
	position: fixed;
	z-index: 20;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.bnr_recruit_fixed a {
	display: block;
}
.bnr_recruit_fixed.out {
	bottom: 0;
	z-index: -1;
	opacity: 0;
	visibility: hidden;
}

@media screen and (min-width: 801px) {
	.bnr_recruit_fixed {
		right: 30px;
		bottom: 30px;
		width: 300px;
	}
	.bnr_recruit_fixed::after {
		position: absolute;
		top: 6px;
		left: 6px;
		z-index: -1;
		display: block;
		width: 100%;
		height: 100%;
		border-radius: 10px;
		background: var(--shadow);
		content: "";
	}
	.bnr_recruit_fixed a {
		overflow: hidden;
		border: 2px solid #fff;
		border-radius: 10px;
	}
	.bnr_recruit_fixed a:hover {
		-webkit-transform: translate(6px, 6px);
		        transform: translate(6px, 6px);
	}
}
@media screen and (max-width: 800px) {
	.bnr_recruit_fixed {
		bottom: 0;
		left: 0;
		width: 100%;
		-webkit-box-shadow: 0px 0px 12px 0px var(--sage);
		        box-shadow: 0px 0px 12px 0px var(--sage);
	}
}
/*# sourceMappingURL=common.css.map */
