@charset "UTF-8";
/*
* project_name
* main.css
*
*/
@font-face {
	font-family: "OpenSans-Bold";

	src: url("/font/OpenSans-Bold.woff") format("woff"), url("/font/OpenSans-Bold.ttf") format("truetype");
}

@font-face {
	font-family: "OpenSans-Light";

	src: url("/font/OpenSans-Light.woff") format("woff"), url("/font/OpenSans-Light.ttf") format("truetype");
}

/* ------------------------
  Foundation
------------------------ */
html,
body {
	height: 100%;
}

*,
*:after,
*:before {
	box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
	font-size: inherit;
	line-height: inherit;
}

pre,
textarea {
	overflow: auto;
}

[hidden],
audio:not([controls]),
template {
	display: none;
}

details,
main,
summary {
	display: block;
}

input[type=number] {
	width: auto;
}

input[type=search] {
	-webkit-appearance: textfield;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
	-webkit-appearance: none;
}

progress {
	display: inline-block;
}

small {
	font-size: 75%;
}

sub,
sup {
	position: relative;
	vertical-align: baseline;
	font-size: 75%;
	line-height: 0;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

textarea {
	resize: vertical;
}

audio,
canvas,
iframe,
img,
svg,
video {
	vertical-align: middle;
}

img {
	border: 0;
	max-width: 100%;
	height: auto;
}

button,
input,
select,
textarea {
	min-height: 1.5em;
	color: inherit;
	font-family: inherit;
	font-weight: inherit;
	font-style: inherit;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	cursor: pointer;

	-webkit-appearance: button;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	padding: 0;
	border: 0;
}

input {
	line-height: normal;
}

code,
kbd,
pre,
samp {
	font-family: monospace,monospace;
}

ol,
ul {
	list-style: none;
}

select {
	   -moz-appearance: none;
	-webkit-appearance: none;
}

table {
	border-spacing: 0;
	border-collapse: collapse;
}

fieldset {
	border: 0;
}

/* ------------------------
  Base Settings
------------------------ */
html {
	font-size: 16px;
}

body {
	background-color: #fff;
	word-wrap: break-word;
	color: #1a1a1a;
	font-family: "BIZ UDPGothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
	line-height: 1.6875;

	-webkit-font-smoothing: antialiased;
	        font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	overflow-wrap: break-word;
}
body.en {
	font-family: "arial", "BIZ UDPGothic", "ヒラギノ角ゴ ProN W3", "Lucida Grande", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Verdana, "ＭＳ Ｐゴシック", sans-serif;
}

a {
	text-decoration: underline;
	color: #000080;
}
a:visited {
	color: #000080;
}
a:hover {
	text-decoration: none;
	color: #182b84;
}
a:active {
	text-decoration: none;
	color: #ff8000;
}
a[href^="tel:"] {
	cursor: text;
	text-decoration: none;
}

::selection {
	background-color: #036eb8;
	color: #fff;
	text-shadow: none;
}

/* ------------------------
  utilities Classes
------------------------ */
.hidden {
	display: none !important;
	visibility: hidden;
}

.visuallyhidden {
	overflow: hidden;
	clip: rect(0 0 0 0);
	position: absolute;
	margin: -1px;
	padding: 0;
	border: 0;
	width: 1px;
	height: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
	overflow: visible;
	clip: auto;
	position: static;
	margin: 0;
	width: auto;
	height: auto;
}

.invisible {
	visibility: hidden;
}

.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

.clearfix {
	*zoom: 1;
}

/* ------------------------
  余白 調整用class
------------------------ */
.mt-0 {
	margin-top: 0px !important;
}

.mb-0 {
	margin-bottom: 0px !important;
}

.mt-5 {
	margin-top: 5px !important;
}

.mb-5 {
	margin-bottom: 5px !important;
}

.mt-10 {
	margin-top: 10px !important;
}

.mb-10 {
	margin-bottom: 10px !important;
}

.mt-15 {
	margin-top: 15px !important;
}

.mb-15 {
	margin-bottom: 15px !important;
}

.mt-20 {
	margin-top: 20px !important;
}

.mb-20 {
	margin-bottom: 20px !important;
}

.mt-25 {
	margin-top: 25px !important;
}

.mb-25 {
	margin-bottom: 25px !important;
}

/* ------------------------
    表示・非表示 調整用class
------------------------ */
.visible-sp {
	display: none !important;
}

@media screen and (max-width: 768px) {
	.hidden-sp {
		display: none !important;
	}
	.visible-sp {
		display: block !important;
	}
	img.visible-sp {
		display: inline-block !important;
	}
	.required.visible-sp {
		display: inline-block !important;
	}
}

/* --------------------------------
  縦書き
-------------------------------- */
.text-combine {
	-webkit-text-combine: horizontal;
	-ms-text-combine-horizontal: all;
	text-combine-upright: all;
}

/* ------------------------
  Components
------------------------ */
html {
	overflow-y: scroll;
}

.content,
.section {
	position: relative;
}

.container {
	position: relative;
	min-width: 1058px;
	background-color: #fff;
}
@media screen and (max-width: 768px) {
	.container {
		min-width: auto;
	}
}

.OpenSansBold {
	font-family: "OpenSans-Bold", sans-serif;
}

.OpenSansLight {
	font-family: "OpenSans-Light", sans-serif;
}

.js-responsiveImg {
	visibility: hidden;
}
@media only screen and (max-width: 768px) {
	.js-responsiveImg {
		visibility: visible;
	}
}

/* --------------------------------
  下層ページ共通レイアウト
-------------------------------- */
.m-pageHeading {
	padding-top: 61px;
}
@media screen and (max-width: 768px) {
	.m-pageHeading {
		padding-top: 44px;
	}
}

.m-pageHeading_title {
	text-align: center;
	color: #013a81;
}
@media screen and (max-width: 768px) {
	.m-pageHeading_title {
		padding-bottom: 48px;
	}
}
.m-pageHeading_title span {
	display: block;
}
.m-pageHeading_title .en {
	letter-spacing: 5px;
	font-size: 60px;
	font-weight: normal;
	line-height: 1;
}
@media screen and (max-width: 768px) {
	.m-pageHeading_title .en {
		letter-spacing: 3px;
		font-size: 42px;
	}
}
.m-pageHeading_title .en + .jp {
	margin-top: 6px;
	letter-spacing: 3.7px;
}
@media screen and (max-width: 768px) {
	.m-pageHeading_title .en + .jp {
		margin-top: 4px;
		letter-spacing: 3px;
	}
}
.m-pageHeading_title .jp {
	font-size: 21px;
	font-weight: normal;
	line-height: 1;
}
@media screen and (max-width: 768px) {
	.m-pageHeading_title .jp {
		font-size: 15px;
	}
}

.m-subheading {
	position: relative;
	padding-top: 53px;
	color: #013a81;
	font-size: 24px;
}
@media screen and (max-width: 768px) {
	.m-subheading {
		font-size: 19px;
		line-height: 1.4;
	}
}
.m-subheading:after {
	content: "";
	position: absolute;
	bottom: -13px;
	left: 2px;
	width: 80px;
	height: 2px;
	background-color: #003a83;
}
@media screen and (max-width: 768px) {
	.m-subheading:after {
		bottom: -9px;
		left: 1px;
		width: 40px;
	}
}

.m-index {
	margin-top: 66px;
	width: 100%;
	height: 100%;
	background-color: #d7deeb;
}
@media screen and (max-width: 768px) {
	.m-index {
		margin-top: 0;
	}
}

.m-index_inner {
	margin: auto;
	padding: 0 75px;
	max-width: 1140px;
}
@media screen and (max-width: 768px) {
	.m-index_inner {
		padding: 0;
	}
}
.m-index_inner-col2 {
	max-width: 806px;
}

.m-index_menu {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 84px;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.m-index_menu {
		display: block;
		height: auto;
	}
}

.m-index_menu_item {
	border-left: 2px solid #a6b6d1;
	width: 33.33333%;
	width: calc(100% / 2);
	height: 100%;
	transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.m-index_menu_item-col2 {
	width: 50%;
}
@media screen and (max-width: 768px) {
	.m-index_menu_item-col2 {
		width: 100%;
	}
}
@media screen and (max-width: 768px) {
	.m-index_menu_item {
		border-top: 1px solid #a6b6d1;
		border-left: none;
		width: 100%;
		height: 60px;
	}
}
.m-index_menu_item:last-child {
	border-right: 2px solid #a6b6d1;
}
@media screen and (max-width: 768px) {
	.m-index_menu_item:last-child {
		border-right: none;
		border-bottom: 1px solid #a6b6d1;
	}
}
.m-index_menu_item a {
	display: block;
	position: relative;
	height: 100%;
	transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
	text-decoration: none;
	letter-spacing: 2px;
	color: #013a81;
	line-height: 77px;
}
@media screen and (max-width: 768px) {
	.m-index_menu_item a {
		padding-right: 6px;
		line-height: 61px;
	}
}
.m-index_menu_item svg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
	-webkit-transform: translateY(18px);
	    -ms-transform: translateY(18px);
	        transform: translateY(18px);

	fill: #003a83;
}
@media screen and (max-width: 768px) {
	.m-index_menu_item svg {
		right: 20px;
		left: auto;
		-webkit-transform: translateY(0);
		    -ms-transform: translateY(0);
		        transform: translateY(0);
	}
}
.touchevents .m-index_menu_item.is-touched,
.no-touchevents .m-index_menu_item:hover {
	background-color: #a6b6d1;
}
.touchevents .m-index_menu_item.is-touched a,
.no-touchevents .m-index_menu_item:hover a {
	color: #fff;
}
.touchevents .m-index_menu_item.is-touched svg,
.no-touchevents .m-index_menu_item:hover svg {
	fill: #fff;
}

.l-inner {
	margin: 70px 75px;
	padding: 43px 0 30px;
	border-top: 4px solid #003a83;
	background: #fff;
}
@media screen and (max-width: 768px) {
	.l-inner {
		margin: 40px 15px;
		padding: 35px 0 15px;
	}
}
.l-inner + .l-inner {
	margin-top: 115px;
}
@media screen and (max-width: 768px) {
	.l-inner + .l-inner {
		margin-top: 53px;
	}
}

.m-section_title {
	margin-top: 17px;
	width: 100%;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.m-section_title {
		margin: auto;
		width: 78%;
	}
}
.m-section_title span {
	display: inline-block;
	position: relative;
	padding: 0 30px 0 38px;
	letter-spacing: 4px;
	color: #013a81;
	font-size: 33px;
	font-weight: normal;
	line-height: 1.8;
}
.en .m-section_title span {
	letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
	.m-section_title span {
		padding: 8px 22px 7px 27px;
		letter-spacing: 1.2px;
		font-size: 24px;
		line-height: 1.25;
	}
}
.m-section_title span:before,
.m-section_title span:after {
	content: "";
	box-sizing: border-box;
	position: absolute;
	top: 0;
	border-top: 4px solid #013a81;
	border-bottom: 4px solid #013a81;
	width: 18px;
	height: 100%;
}
@media screen and (max-width: 768px) {
	.m-section_title span:before,
	.m-section_title span:after {
		border-width: 3px;
	}
}
.m-section_title span:before {
	left: 0;
	border-left: 4px solid #013a81;
}
@media screen and (max-width: 768px) {
	.m-section_title span:before {
		border-width: 3px;
	}
}
.m-section_title span:after {
	right: 0;
	border-right: 4px solid #013a81;
}
@media screen and (max-width: 768px) {
	.m-section_title span:after {
		border-width: 3px;
	}
}

/* --------------------------------
  Header
-------------------------------- */
.g-header {
	position: relative;
	width: 100%;
	min-width: 1058px;
	height: 0;
	height: 109px;
}
.g-header.g-header-top {
	background-color: #fff;
}
@media screen and (max-width: 768px) {
	.g-header.g-header-top {
		min-width: 100%;
		height: 16.875vw;
	}
}
.g-header.g-header-under {
	position: fixed;
	z-index: 2000;
	top: 0;
	height: 0;
	background: none;
}
@media screen and (max-width: 768px) {
	.g-header.g-header-under {
		position: absolute;
		min-width: 100%;
		height: 16.875vw;
		background: #fff;
	}
}

.g-header_logo {
	position: fixed;
	z-index: 102;
	width: 208px;
	height: 208px;
	transition: width 0.15s 0.15s, height 0.15s 0s;
	background-color: #033983;
}
.g-header-under .g-header_logo {
	overflow: hidden;
	width: 89px;
	height: 89px;
	text-indent: 100%;
}
@media screen and (max-width: 768px) {
	.g-header-under .g-header_logo {
		position: absolute;
		top: 3vw;
		left: 3vw;
		width: 60vw;
		height: 10vw;
	}
}
.g-header-under .g-header_logo a {
	transition: background 0s 0s;
	background: url(/img/common/hdr_logo_s.svg) center no-repeat;
	background-size: 60px auto;
}
@media screen and (max-width: 1220px) {
	.g-header-under .g-header_logo a {
		background: url(/img/common/hdr_logo_s.svg) center no-repeat;
		background-size: 60px auto;
	}
}
@media screen and (max-width: 768px) {
	.g-header-under .g-header_logo a {
		background: url(/img/common/hdr_logo_sp.svg) center no-repeat;
		background-size: 100%;
	}
}
.g-header-under .g-header_logo-ir,
.g-header-under.is-show .g-header_logo-ir {
	top: 99px;
	transition: background-color 0.15s;
	background-color: #fff;
}
@media screen and (max-width: 768px) {
	.g-header-under .g-header_logo-ir,
	.g-header-under.is-show .g-header_logo-ir {
		top: calc(16.875vw + 2px);
		left: 0;
		width: 78px;
		height: 47px;
	}
}
.g-header-under .g-header_logo-ir a,
.g-header-under.is-show .g-header_logo-ir a {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	transition: color 0.15s;
	background-image: none;
	text-decoration: none;
	text-indent: 0;
	color: #013a81;
	font-size: 38px;

	-webkit-justify-content: center;

	    -ms-flex-pack: center;

	        justify-content: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}
@media screen and (max-width: 768px) {
	.g-header-under .g-header_logo-ir a,
	.g-header-under.is-show .g-header_logo-ir a {
		font-size: 22px;
	}
}
.touchevents .g-header-under .g-header_logo-ir.is-touched,
.no-touchevents .g-header-under .g-header_logo-ir:hover,
.touchevents
    .g-header-under.is-show .g-header_logo-ir.is-touched,
.no-touchevents
    .g-header-under.is-show .g-header_logo-ir:hover {
	background-color: #f60;
}
.touchevents .g-header-under .g-header_logo-ir.is-touched a,
.no-touchevents .g-header-under .g-header_logo-ir:hover a,
.touchevents
      .g-header-under.is-show .g-header_logo-ir.is-touched a,
.no-touchevents
      .g-header-under.is-show .g-header_logo-ir:hover a {
	color: #fff;
}
.is-show .g-header_logo {
	width: 89px;
	height: 89px;
	transition: width 0.15s 0s, height 0.15s 0.15s;
}
.is-show .g-header_logo a {
	transition: background 0s 0.15s;
	background: url(/img/common/hdr_logo_s.svg) center no-repeat;
	background-size: 60px auto;
}
.g-header_logo a {
	display: block;
	overflow: hidden;
	position: relative;
	height: 100%;
	transition: background 0s 0s;
	background: url(/img/common/hdr_logo.svg) center no-repeat;
	background-size: 78%;
	white-space: nowrap;
	text-indent: 100%;
}
@media screen and (max-width: 768px) {
	.g-header_logo a {
		background: url(/img/common/hdr_logo_sp.svg) center no-repeat;
	}
}
@media screen and (max-width: 768px) {
	.g-header_logo {
		position: absolute;
		top: 3vw;
		left: 3vw;
		width: 60vw;
		height: 10vw;
	}
}

.g-header_language {
	position: absolute;
	z-index: 1999;
	top: 10px;
	right: 102px;
}
@media screen and (max-width: 768px) {
	.g-header_language {
		z-index: 1999;
		top: 20vw;
		right: 16px;
	}
}
.g-header_language:after {
	content: "";
	position: absolute;
	top: 4px;
	right: 0;
	bottom: 0;
	left: 3px;
	margin: auto;
	width: 1px;
	height: 15px;
	background-color: #7f9bbf;
}
.g-header_language a {
	position: relative;
	padding: 5px;
	text-decoration: none;
	letter-spacing: 2px;
	color: #013a81;
	font-size: 14px;
}
.jp .g-header_language a:nth-of-type(2):after,
.en .g-header_language a:nth-of-type(1):after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 2px;
	left: -2px;
	margin: auto;
	width: 16px;
	height: 2px;
	background-color: #013a81;
}
.g-header_language a + a {
	margin-left: 9px;
}
@media screen and (max-width: 768px) {
	.g-header_language a + a {
		margin-left: 22px;
	}
}
.jp .g-header_language a:nth-of-type(1):hover,
.en .g-header_language a:nth-of-type(2):hover {
	color: #f60;
}
.jp .g-header_language a:nth-of-type(2),
.en .g-header_language a:nth-of-type(1) {
	cursor: auto;
}

.g-menu {
	position: absolute;
	z-index: 1;
	top: 40px;
	left: 271px;
	background-color: #fff;
	text-align: left;
}
@media screen and (max-width: 768px) {
	.g-menu {
		display: none;
	}
}
@media screen and (max-width: 1650px) {
	.g-header-top .g-menu {
		top: 27px;
		left: 241px;
		width: 528px;
	}
}
@media screen and (max-width: 1650px) {
	.isSafari .g-header-top .g-menu,
	.isFirefox .g-header-top .g-menu {
		left: 240px;
	}
}
@media screen and (max-width: 1180px) {
	.g-header-top .g-menu {
		top: 30px;
		left: 231px;
		width: 456px;
		font-size: 14px;
	}
	.isSafari .g-header-top .g-menu,
	.isFirefox .g-header-top .g-menu {
		left: 230px;
	}
}

.g-menu_nav_item {
	display: inline-block;
	position: relative;
	margin-right: 13px;
	vertical-align: middle;
}
.g-menu_nav_item:before,
.g-menu_nav_item:last-of-type:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 2px;
	height: 15px;
	background-color: #d2d4d6;
}
@media screen and (max-width: 1650px) {
	.g-header-top .g-menu_nav_item:nth-of-type(3) {
		margin-right: 70px;
	}
	.g-header-top .g-menu_nav_item:nth-of-type(3):after {
		content: "";
		position: absolute;
		top: 0;
		right: -13px;
		bottom: 0;
		margin: auto;
		width: 2px;
		height: 15px;
		background-color: #d2d4d6;
	}
}
.g-menu_nav_item:before {
	left: -13px;
}
.g-menu_nav_item:last-of-type:after {
	right: -13px;
}
@media screen and (max-width: 1180px) {
	.g-menu_nav_item {
		margin-right: 9px;
	}
	.g-menu_nav_item:before {
		left: -9px;
	}
	.g-menu_nav_item:last-of-type:after,
	.g-header-top .g-menu_nav_item:nth-of-type(3):after {
		right: -9px;
	}
}
.g-menu_nav_item a {
	transition: color 0.2s;
	text-decoration: none;
	letter-spacing: 2px;
	color: #000;
	font-weight: 600;
}
.g-menu_nav_item a:hover {
	color: #f60;
}
.g-menu_nav_item:nth-of-type(1) a {
	letter-spacing: 3.2px;
}
.g-menu_nav_item:nth-of-type(2) a {
	letter-spacing: 1px;
}

.g-menu_nav_item a.tb::after {
	content: "";
	display: inline-block;
	margin-left: 5px;
	width: 14px;
	height: 12px;
	background: url(/img/common/icon_tb-f60.svg) no-repeat;
	background-size: 100% auto;
}
@media screen and (max-width: 768px) {
	.g-menu_nav_item a.tb::after {
		width: 13px;
		height: 11px;
	}
}

.g-header_class {
	position: absolute;
	top: 16px;
	right: 246px;
}
@media screen and (max-width: 1580px) {
	.g-header_class {
		right: 226px;
	}
}
.g-header_class a {
	display: block;
	position: relative;
	padding: 7px 0 0 13px;
	border: 1px solid #033983;
	width: 141px;
	height: 78px;
	cursor: pointer;
	transition: 0.2s;
	background-color: #033983;
	text-decoration: none;
	letter-spacing: 0.7px;
	color: #fff;
	font-family: "BIZ UDPGothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
}
.g-header_class a .g-header_class_txt {
	letter-spacing: -0.6px;
}
.g-header_class a .g-header_class_svg {
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	width: 16px;
	height: 16px;
	background-color: #fff;
}
.g-header_class a .g-header_class_svg svg {
	position: absolute;
	top: 3px;
	right: 2px;
	width: 10px;
	height: 9px;
	transition: 0.2s;

	fill: #033983;
}
.touchevents .g-header_class a.is-touched,
.no-touchevents .g-header_class a:hover {
	border-color: #f60;
	background-color: #f60;
}
.touchevents .g-header_class a.is-touched .g-header_class_svg svg,
.no-touchevents .g-header_class a:hover .g-header_class_svg svg {
	fill: #f60;
}

.g-header_class-sp {
	position: absolute;
	bottom: 3.3vw;
	left: 4vw;
	border: 2px solid #033983;
	width: 49.375vw;
	height: 16.25vw;
}
.g-header_class-sp a {
	display: block;
	position: relative;
	padding: 1.7vw 0 1.7vw 3.8vw;
	height: 100%;
	text-decoration: none;
	letter-spacing: 0.5px;
	color: #333;
	font-size: 3.125vw;
	font-weight: 600;
	line-height: 1.3;
}
.g-header_class-sp a .g-header_class-sp_txt {
	letter-spacing: 0.1px;
}
.g-header_class-sp a .g-header_class-sp_svg {
	position: absolute;
	top: 0;
	right: 0;
	width: 5vw;
	height: 5vw;
	background-color: #033983;
}
.g-header_class-sp a svg {
	position: absolute;
	top: 0.5vw;
	right: 0.6vw;
	width: 3.125vw;
	height: auto;

	fill: #fff;
}

.g-header_benesse {
	position: absolute;
	top: 24px;
	right: 29px;
}
@media screen and (max-width: 1580px) {
	.g-header_benesse {
		right: 19px;
	}
}
.g-header_benesse a {
	display: block;
	height: 100%;
	cursor: pointer;
}
.g-header_benesse img {
	width: 186px;
	height: 56px;
}
@media screen and (max-width: 768px) {
	.g-header_benesse img {
		width: 13.75vw;
		height: 11.5625vw;
	}
}
@media screen and (max-width: 768px) {
	.g-header_benesse {
		position: absolute;
		top: auto;
		right: 6vw;
		bottom: 6vw;
	}
}

/* --------------------------------
  Drawer
-------------------------------- */
.drawer {
	visibility: hidden;
	position: fixed;
	z-index: 1990;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: visibility 0.6s 0s, -webkit-transform 0s 0.6s;
	transition: visibility 0.6s 0s, transform 0s 0.6s;
	transition: visibility 0.6s 0s, transform 0s 0.6s, -webkit-transform 0s 0.6s;
	-webkit-transform: translateX(100%);
	    -ms-transform: translateX(100%);
	        transform: translateX(100%);
}
@media screen and (max-width: 768px) {
	.drawer {
		transition: visibility 0.3s 0s, -webkit-transform 0s 0.3s;
		transition: visibility 0.3s 0s, transform 0s 0.3s;
		transition: visibility 0.3s 0s, transform 0s 0.3s, -webkit-transform 0s 0.3s;
	}
}
.view-drawer .drawer {
	visibility: visible;
	transition-delay: 0s;
	-webkit-transform: translateX(0%);
	    -ms-transform: translateX(0%);
	        transform: translateX(0%);
}

.drawer_mask {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: opacity 0.6s cubic-bezier(0.25, 0.25, 0.75, 0.75), -webkit-transform 0s 0.6s;
	transition: opacity 0.6s cubic-bezier(0.25, 0.25, 0.75, 0.75), transform 0s 0.6s;
	transition: opacity 0.6s cubic-bezier(0.25, 0.25, 0.75, 0.75), transform 0s 0.6s, -webkit-transform 0s 0.6s;
	-webkit-transform: translateX(100%);
	    -ms-transform: translateX(100%);
	        transform: translateX(100%);
	background: rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 768px) {
	.drawer_mask {
		transition: opacity 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75), -webkit-transform 0s 0.3s;
		transition: opacity 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75), transform 0s 0.3s;
		transition: opacity 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75), transform 0s 0.3s, -webkit-transform 0s 0.3s;
	}
}
.view-drawer .drawer_mask {
	opacity: 1;
	transition-delay: 0s;
	-webkit-transform: translateX(0%);
	    -ms-transform: translateX(0%);
	        transform: translateX(0%);
}

.drawer_inner {
	overflow: auto;
	opacity: 0;
	position: absolute;
	top: 0;
	right: 0;
	padding: 56px 5%;
	width: 100%;
	height: 100%;
	transition: opacity 0.6s cubic-bezier(0.25, 0.25, 0.75, 0.75), -webkit-transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
	transition: opacity 0.6s cubic-bezier(0.25, 0.25, 0.75, 0.75), transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
	transition: opacity 0.6s cubic-bezier(0.25, 0.25, 0.75, 0.75), transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
	-webkit-transform: translateX(100%);
	    -ms-transform: translateX(100%);
	        transform: translateX(100%);
	background: rgba(3, 57, 131, 0.95);
}
@media screen and (max-width: 768px) {
	.drawer_inner {
		padding: 22.6vw 0 30px 0;
		width: 100%;
		height: 100%;
		transition: opacity 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75), -webkit-transform 0s cubic-bezier(0.25, 0.1, 0.25, 1) 0.3s;
		transition: opacity 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75), transform 0s cubic-bezier(0.25, 0.1, 0.25, 1) 0.3s;
		transition: opacity 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75), transform 0s cubic-bezier(0.25, 0.1, 0.25, 1) 0.3s, -webkit-transform 0s cubic-bezier(0.25, 0.1, 0.25, 1) 0.3s;
		text-align: center;

		-webkit-overflow-scrolling: touch;
	}
}
.view-drawer .drawer_inner {
	opacity: 1;
	transition: opacity 0.6s cubic-bezier(0.25, 0.25, 0.75, 0.75) 0s, -webkit-transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
	transition: opacity 0.6s cubic-bezier(0.25, 0.25, 0.75, 0.75) 0s, transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
	transition: opacity 0.6s cubic-bezier(0.25, 0.25, 0.75, 0.75) 0s, transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
	-webkit-transform: translateX(0%);
	    -ms-transform: translateX(0%);
	        transform: translateX(0%);
}
@media screen and (max-width: 768px) {
	.view-drawer .drawer_inner {
		transition: opacity 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75) 0s, -webkit-transform 0s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
		transition: opacity 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75) 0s, transform 0s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
		transition: opacity 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75) 0s, transform 0s cubic-bezier(0.25, 0.1, 0.25, 1) 0s, -webkit-transform 0s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
	}
}

.drawer_sec_h {
	margin: auto auto 25px;
	padding: 0 0 0 1px;
	max-width: 850px;
	letter-spacing: 2px;
	color: #fff;
	font-size: 14px;
}
@media screen and (max-width: 768px) {
	.drawer_sec_h {
		margin: auto auto 15px;
		padding: 0;
		font-size: 12px;
	}
}

.drawer_sec_menu a {
	display: inline-block;
	width: 100%;
	height: 100%;
	transition: 0.2s;
	text-decoration: none;
	color: #fff;
	font-size: 22px;
}
@media screen and (max-width: 768px) {
	.drawer_sec_menu a {
		font-size: 16px;
	}
}

.drawer_sec_menu a.tb::after {
	content: "";
	display: inline-block;
	margin-left: 5px;
	width: 16px;
	height: 14px;
	background: url(/img/common/icon_tb.svg) no-repeat;
	background-size: 100% auto;
}
@media screen and (max-width: 768px) {
	.drawer_sec_menu a.tb::after {
		width: 14px;
		height: 12px;
	}
}

.no-touchevents .drawer_sec_menu > ul > li:hover > a {
	color: #f60;
}

.no-touchevents .drawer_sec_menu > ul > li:hover > a.tb::after {
	background-image: url(/img/common/icon_tb-f60.svg);
}

.drawer_sec_menu .drawer_sec_menu_accordion_target {
	position: relative;
	cursor: default !important;
	color: #fff !important;
}

.drawer_sec_menu-main {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin: auto;
	max-width: 850px;

	-webkit-justify-content: space-between;

	    -ms-flex-pack: justify;

	        justify-content: space-between;
}
@media screen and (max-width: 768px) {
	.drawer_sec_menu-main {
		display: block;
	}
}
@media screen and (min-width: 769px) {
	.drawer_sec_menu-main > ul {
		width: 100%;
		max-width: 400px;
	}
	.drawer_sec_menu-main > ul + ul {
		margin-left: 5%;
	}
}
.drawer_sec_menu-main > ul > li {
	padding: 7px 0 5px 20px;
	border-top: 1px solid #295591;
	letter-spacing: 2px;
}
@media screen and (min-width: 769px) {
	.drawer_sec_menu-main > ul > li:last-child {
		border-bottom: 1px solid #295591;
	}
}
@media screen and (max-width: 768px) {
	.drawer_sec_menu-main > ul > li {
		padding: 11px 0 11px 0;
	}
	.drawer_sec_menu-main > ul > li:nth-child(3),
	.drawer_sec_menu-main > ul > li:nth-child(4),
	.drawer_sec_menu-main > ul > li:nth-child(5),
	.drawer_sec_menu-main > ul > li:nth-child(6),
	.drawer_sec_menu-main > ul > li:nth-child(7),
	.drawer_sec_menu-main > ul > li:nth-child(8) {
		margin: 0 15px;
	}
}
.drawer_sec_menu-main > ul > li.drawer_sec_menu-link {
	padding-top: 31px;
}
@media screen and (min-width: 769px) {
	.drawer_sec_menu-main > ul > li.drawer_sec_menu-link:last-child {
		border-bottom: none;
	}
}
@media screen and (max-width: 768px) {
	.drawer_sec_menu-main > ul + ul > li:nth-child(1),
	.drawer_sec_menu-main > ul + ul > li:nth-child(2) {
		margin: 0 15px;
	}
}

.drawer_sec_menu-link li {
	padding: 2px 0;
}
.no-touchevents .drawer_sec_menu-link li:hover a {
	color: #f60;
}
@media screen and (max-width: 768px) {
	.drawer_sec_menu-link li {
		float: left;
		padding: 10px 0;
		border: 1px solid #295591;
		width: 50%;
	}
	.drawer_sec_menu-link li:nth-child(2n) {
		border-left: 0px;
	}
	.drawer_sec_menu-link li:nth-child(n+3) {
		border-top: 0px;
	}
}

.drawer_sec_menu-link a {
	letter-spacing: 1px;
	font-size: 14px;
}
@media screen and (max-width: 768px) {
	.drawer_sec_menu-link a {
		font-size: 12px;
	}
}

@media screen and (max-width: 768px) {
	.drawer_sec_menu .drawer_sec_menu_accordion_body {
		display: none;
	}
}

.drawer_sec_menu i {
	display: none;
}
@media screen and (max-width: 768px) {
	.drawer_sec_menu i {
		display: inline-block;
		width: 13px;
		height: 13px;
	}
	.drawer_sec_menu i:before,
	.drawer_sec_menu i:after {
		content: "";
		position: absolute;
		top: 0;
		right: 40px;
		bottom: 0;
		margin: auto;
		width: 13px;
		height: 3px;
		transition: opacity 0.1s cubic-bezier(0.25, 0.25, 0.75, 0.75), -webkit-transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
		transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.1s cubic-bezier(0.25, 0.25, 0.75, 0.75);
		transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.1s cubic-bezier(0.25, 0.25, 0.75, 0.75), -webkit-transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
		background-color: #6385b2;
	}
	.drawer_sec_menu i:before {
		-webkit-transform: rotate(90deg);
		    -ms-transform: rotate(90deg);
		        transform: rotate(90deg);
	}
}

.drawer_sec_menu .is-active i:before {
	-webkit-transform: rotate(0deg);
	    -ms-transform: rotate(0deg);
	        transform: rotate(0deg);
}

.drawer_sec_menu .is-active i:after {
	opacity: 0;
}

.drawer_sec_menu_nest {
	padding-bottom: 2px;
}
@media screen and (max-width: 768px) {
	.drawer_sec_menu_nest {
		margin: 9px 0 1px;
		padding: 5px 0 1px;
		background-color: #023171;
	}
}
.drawer_sec_menu_nest li {
	padding: 1px 0 1px 10px;
	border: none;
}
.drawer_sec_menu_nest li:last-child {
	border: none;
}
@media screen and (max-width: 768px) {
	.drawer_sec_menu_nest li {
		margin: 0 10px;
		padding: 11px 0 10px;
		border-top: 1px solid #295591;
	}
	.drawer_sec_menu_nest li:first-child {
		border: none;
	}
	.drawer_sec_menu_nest li:last-child {
		border-top: 1px solid #295591;
	}
}
.drawer_sec_menu_nest li a {
	position: relative;
	font-size: 16px;
}
@media screen and (min-width: 950px) {
	.drawer_sec_menu_nest li a {
		padding-left: 1em;
		text-indent: -1.2em;
	}
}
.drawer_sec_menu_nest li a:before {
	content: "";
	display: inline-block;
	margin-right: 16px;
	width: 4px;
	height: 1px;
	background-color: #4f73a4;
}
@media screen and (max-width: 768px) {
	.drawer_sec_menu_nest li a:before {
		content: none;
	}
}
.no-touchevents .drawer_sec_menu_nest li:hover a {
	color: #f60;
}

.drawer_logo {
	overflow: hidden;
	opacity: 0;
	position: fixed;
	z-index: 1991;
	top: 0;
	left: 0;
	width: 76.25vw;
	height: 16.875vw;
	transition: opacity 0.3s 0s, -webkit-transform 0s 0.3s;
	transition: opacity 0.3s 0s, transform 0s 0.3s;
	transition: opacity 0.3s 0s, transform 0s 0.3s, -webkit-transform 0s 0.3s;
	-webkit-transform: translateX(-100%);
	    -ms-transform: translateX(-100%);
	        transform: translateX(-100%);
	background-color: #fff;
	white-space: nowrap;
	text-indent: 9999px;
}
.view-drawer .drawer_logo {
	opacity: 1;
	transition-delay: 0s;
	-webkit-transform: translateX(0%);
	    -ms-transform: translateX(0%);
	        transform: translateX(0%);
}
.drawer_logo a {
	display: block;
	position: absolute;
	top: 3vw;
	left: 3vw;
	width: 69.84375vw;
	height: 11.40625vw;
	background: url(/img/common/hdr_logo_sp.svg) center no-repeat;
	background-color: #033983;
	background-size: 100%;
}

/* --------------------------------
  Breadcrumbs
-------------------------------- */
.m-breadcrumbs {
	padding: 13px 30px;
	width: 100%;
	background-color: #fff;
}
@media screen and (max-width: 768px) {
	.m-breadcrumbs {
		padding: 18px 6.2%;
	}
}
.m-breadcrumbs svg {
	-webkit-transform: scale(0.45);
	    -ms-transform: scale(0.45);
	        transform: scale(0.45);

	fill: #003a83;
}
@media screen and (max-width: 768px) {
	.m-breadcrumbs svg {
		-webkit-transform: scale(0.5);
		    -ms-transform: scale(0.5);
		        transform: scale(0.5);
	}
}
.m-breadcrumbs ul {
	margin: auto;
	max-width: 1074px;
}
.m-breadcrumbs li {
	display: inline-block;
	vertical-align: middle;
}
.m-breadcrumbs li + li {
	position: relative;
	padding-left: 21px;
}
.m-breadcrumbs li + li:before {
	content: "";
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -4px;
	border: 0px;
	border-top: solid 2px #a8a8a8;
	border-right: solid 2px #a8a8a8;
	width: 8px;
	height: 8px;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.touchevents .m-breadcrumbs li.is-touched a,
.no-touchevents .m-breadcrumbs li:hover a {
	color: #f60;
}
.touchevents .m-breadcrumbs li.is-touched a svg,
.no-touchevents .m-breadcrumbs li:hover a svg {
	fill: #f60;
}
.m-breadcrumbs a {
	text-decoration: none;
	letter-spacing: 2px;
	color: #003a83;
	font-size: 14px;
}

/* --------------------------------
  Modal
-------------------------------- */
.modal {
	visibility: hidden;
	position: fixed;
	z-index: 10001;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: visibility 0.3s 0.3s, -webkit-transform 0s 0.3s;
	transition: visibility 0.3s 0.3s, transform 0s 0.3s;
	transition: visibility 0.3s 0.3s, transform 0s 0.3s, -webkit-transform 0s 0.3s;
	-webkit-transform: translateY(-100%);
	    -ms-transform: translateY(-100%);
	        transform: translateY(-100%);
}
@media screen and (max-width: 768px) {
	.modal {
		display: none;
	}
}
.view-modal .modal {
	visibility: visible;
	transition-delay: 0s;
	-webkit-transform: translateY(0%);
	    -ms-transform: translateY(0%);
	        transform: translateY(0%);
}

.modal_mask {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: background 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75), -webkit-transform 0s 0.3s;
	transition: background 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75), transform 0s 0.3s;
	transition: background 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75), transform 0s 0.3s, -webkit-transform 0s 0.3s;
	-webkit-transform: translateY(-100%);
	    -ms-transform: translateY(-100%);
	        transform: translateY(-100%);
	background: transparent;
}
.view-modal .modal_mask {
	transition-delay: 0s;
	-webkit-transform: translateY(0%);
	    -ms-transform: translateY(0%);
	        transform: translateY(0%);
	background: rgba(0, 0, 0, 0.8);
}

.modal_inner {
	overflow-x: auto;
	width: 988px;
}

.modal_wrap {
	overflow-x: auto;
	overflow-y: hidden;
	opacity: 0;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	border: 10px solid #a3a3a3;
	width: 100%;
	max-width: 1008px;
	height: 390px;
	transition: opacity 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75), -webkit-transform 0s 0.3s;
	transition: opacity 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75), transform 0s 0.3s;
	transition: opacity 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75), transform 0s 0.3s, -webkit-transform 0s 0.3s;
	-webkit-transform: translateY(-100%);
	    -ms-transform: translateY(-100%);
	        transform: translateY(-100%);
	background-color: #fff;
}
.view-modal .modal_wrap {
	opacity: 1;
	transition-delay: 0s;
	-webkit-transform: translateY(0%);
	    -ms-transform: translateY(0%);
	        transform: translateY(0%);
}
.view-modal-recruit .modal_wrap {
	height: 450px;
}

.modal_contents {
	display: none;
}
.view-modal-members .modal_contents.modal_contents-members {
	display: block;
}
.view-modal-recruit .modal_contents.modal_contents-recruit {
	display: block;
}
.view-modal-irmail .modal_contents.modal_contents-irmail {
	display: block;
}

.modal_close {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 100%;
	max-width: 1240px;
	height: 100%;
}
.modal_close span {
	display: block;
	opacity: 0;
	position: relative;
	transition: opacity 0.15s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
.modal_close span:after {
	content: "";
	position: absolute;
	top: 70px;
	right: 0;
	border: 1px solid #1a559d;
	width: 96px;
	height: 94px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
	background: #013a81 url(/img/common/modal_icon_close.png) center no-repeat;
}
.no-touchevents .modal_close span:hover:after {
	border: 1px solid #ff924a;
	background: #f60 url(/img/common/modal_icon_close.png) center no-repeat;
}
.view-modal .modal_close span {
	opacity: 1;
	transition: opacity 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

.modal_sec {
	float: left;
	padding-top: 34px;
	text-align: center;
}

.modal_sec-first {
	border-right: 1px solid #a3a3a3;
	width: 430px;
	height: 370px;
}
.modal_contents-recruit .modal_sec-first {
	width: 493px;
	max-width: 50%;
	height: 430px;
}

.modal_sec-menber {
	width: 558px;
}
.modal_contents-recruit .modal_sec-menber {
	width: 495px;
	max-width: 50%;
}
.modal_sec-menber ul {
	margin: auto;
	width: 480px;
}

.modal_sec_h {
	margin: 0 20px;
	padding: 0 0 23px 6px;
	border-bottom: 1px solid #a3a3a3;
	letter-spacing: 4px;
	color: #013a81;
	font-size: 34px;
}

.modal_sec_txt {
	padding-top: 13px;
	letter-spacing: 2px;
}

.modal_contents-recruit .modal_sec-menber .modal_sec_articleList {
	margin-top: 34px;
	max-width: 90%;
}

.modal_sec_article {
	box-sizing: border-box;
	position: relative;
	margin: 22px auto 0;
	width: 310px;
	height: 120px;
}
.modal_contents-members .modal_sec-menber .modal_sec_article {
	float: left;
	width: 240px;
}
.modal_contents-recruit .modal_sec_article {
	margin: 33px auto 0;
	width: 430px;
	max-width: 90%;
}
.modal_contents-recruit .modal_sec_article:nth-of-type(2) {
	margin-top: 0;
}
.modal_contents-recruit .modal_sec_article:nth-of-type(2) a:before {
	border-top: 0px;
}
.modal_contents-recruit .modal_sec-menber .modal_sec_article {
	margin-top: 0;
	max-width: 100%;
}
.modal_contents-recruit .modal_sec-menber .modal_sec_article br {
	display: block !important;
}
.modal_contents-recruit .modal_sec-menber .modal_sec_article .m-brackets {
	line-height: 1.15;
}
.modal_sec_article a {
	display: block;
	height: 100%;
	background-color: #edf1f1;
	text-align: center;
	text-decoration: none;
	color: #013a81;
	font-size: 20px;
}
.modal_sec_article a > div {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 100%;

	-webkit-justify-content: center;

	    -ms-flex-pack: center;

	        justify-content: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.modal_sec_article a:after {
	content: "";
	position: absolute;
	z-index: 2;
	right: 1px;
	bottom: 1px;
	margin: auto;
	width: 30px;
	height: 30px;
	background: #f60 url(/img/common/icon_tb.svg) center no-repeat;
	background-size: 55%;
}
.modal_sec_article a:before {
	content: "";
	display: block;
	position: absolute;
	border: 1px solid #bfbfbf;
	width: 100%;
	height: 100%;
	transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.modal_sec_article-next a:before {
	border-left: 0px;
}
.touchevents .modal_sec_article.is-touched a:before,
.no-touchevents .modal_sec_article:hover a:before {
	border: 8px solid #f60;
}
.touchevents .modal_sec_article.is-touched a .m-brackets,
.no-touchevents .modal_sec_article:hover a .m-brackets {
	color: #f60;
}
.touchevents .modal_sec_article.is-touched a .m-brackets:before,
.touchevents .modal_sec_article.is-touched a .m-brackets:after,
.no-touchevents .modal_sec_article:hover a .m-brackets:before,
.no-touchevents .modal_sec_article:hover a .m-brackets:after {
	border-color: #f60;
}
.no-touch .modal_contents-recruit .modal_sec-first .modal_sec_article:hover:nth-of-type(2) a:before {
	border: 8px solid #f60;
}

/* --------------------------------
  m-btn
-------------------------------- */
.m-btn {
	box-sizing: border-box;
	position: relative;
	width: 171px;
	height: 53px;
}
@media screen and (max-width: 768px) {
	.m-btn {
		width: 158px;
		height: 45px;
	}
}
.m-btn:before,
.m-btn:after {
	content: "";
	box-sizing: border-box;
	position: absolute;
	top: 0;
	border-top: 3px solid #000;
	border-bottom: 3px solid #000;
	width: 7px;
	height: 100%;
	transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width: 768px) {
	.m-btn:before,
	.m-btn:after {
		border-top: 2px solid #000;
		border-bottom: 2px solid #000;
	}
}
.m-btn:before {
	left: 0;
	border-left: 3px solid #000;
}
@media screen and (max-width: 768px) {
	.m-btn:before {
		border-left: 2px solid #000;
	}
}
.m-btn:after {
	right: 0;
	border-right: 3px solid #000;
}
@media screen and (max-width: 768px) {
	.m-btn:after {
		border-right: 2px solid #000;
	}
}
.m-btn.m-btn-w:before,
.m-btn.m-btn-w:after {
	border-top: 3px solid #fff;
	border-bottom: 3px solid #fff;
}
@media screen and (max-width: 768px) {
	.m-btn.m-btn-w:before,
	.m-btn.m-btn-w:after {
		border-top: 2px solid #fff;
		border-bottom: 2px solid #fff;
	}
}
.m-btn.m-btn-w:before {
	border-left: 3px solid #fff;
}
@media screen and (max-width: 768px) {
	.m-btn.m-btn-w:before {
		border-left: 2px solid #fff;
	}
}
.m-btn.m-btn-w:after {
	border-right: 3px solid #fff;
}
@media screen and (max-width: 768px) {
	.m-btn.m-btn-w:after {
		border-right: 2px solid #fff;
	}
}
.m-btn .m-btn_inner {
	display: block;
	position: relative;
	z-index: 100;
	height: 100%;
	text-decoration: none;
}
.m-btn .m-btn_inner span {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	padding: 9px 18px 9px 21px;
	width: 161px;
	height: 43px;
	background: #f60 url(/img/common/m-btn_icon_arrow.svg) 129px 12px no-repeat;
	letter-spacing: 1.8px;
	color: #fff;
	font-family: "OpenSans-Bold", sans-serif;
	font-size: 15px;
}
@media screen and (max-width: 768px) {
	.m-btn .m-btn_inner span {
		padding: 6px 18px 9px 18px;
		width: 148px;
		height: 37px;
		background-position: 114px 10px;
		background-size: 16px;
		letter-spacing: 0.9px;
	}
}
.touchevents .m-btn.is-touched:before,
.touchevents .m-btn.is-touched:after,
.no-touchevents .m-btn:hover:before,
.no-touchevents .m-btn:hover:after {
	width: 87px;
}

.m-list_item .m-btn,
.about_list_item .m-btn,
.pickup_list_item .m-btn,
.business_article .m-btn,
.company_article .m-btn {
	height: 46px;
}
@media screen and (max-width: 768px) {
	.m-list_item .m-btn,
	.about_list_item .m-btn,
	.pickup_list_item .m-btn,
	.business_article .m-btn,
	.company_article .m-btn {
		width: 144px;
		height: 39px;
	}
}
.m-list_item .m-btn .m-btn_inner span,
.about_list_item .m-btn .m-btn_inner span,
.pickup_list_item .m-btn .m-btn_inner span,
.business_article .m-btn .m-btn_inner span,
.company_article .m-btn .m-btn_inner span {
	padding: 5px 18px 5px 21px;
	height: 36px;
	background-position: 129px 8px;
}
@media screen and (max-width: 768px) {
	.m-list_item .m-btn .m-btn_inner span,
	.about_list_item .m-btn .m-btn_inner span,
	.pickup_list_item .m-btn .m-btn_inner span,
	.business_article .m-btn .m-btn_inner span,
	.company_article .m-btn .m-btn_inner span {
		padding: 5px 18px 5px 17px;
		width: 136px;
		height: 31px;
		background-position: 105px 7px;
		letter-spacing: 2px;
		font-size: 12px;
	}
}

.touchevents .m-list_item.is-touched .m-btn:before,
.touchevents .m-list_item.is-touched .m-btn:after,
.no-touchevents .m-list_item:hover .m-btn:before,
.no-touchevents .m-list_item:hover .m-btn:after,
.touchevents
.about_list_item.is-touched .m-btn:before,
.touchevents
.about_list_item.is-touched .m-btn:after,
.no-touchevents
.about_list_item:hover .m-btn:before,
.no-touchevents
.about_list_item:hover .m-btn:after,
.touchevents
.pickup_list_item.is-touched .m-btn:before,
.touchevents
.pickup_list_item.is-touched .m-btn:after,
.no-touchevents
.pickup_list_item:hover .m-btn:before,
.no-touchevents
.pickup_list_item:hover .m-btn:after,
.touchevents
.business_article.is-touched .m-btn:before,
.touchevents
.business_article.is-touched .m-btn:after,
.no-touchevents
.business_article:hover .m-btn:before,
.no-touchevents
.business_article:hover .m-btn:after,
.touchevents
.company_article.is-touched .m-btn:before,
.touchevents
.company_article.is-touched .m-btn:after,
.no-touchevents
.company_article:hover .m-btn:before,
.no-touchevents
.company_article:hover .m-btn:after {
	width: 87px;
}

.en .links_backBtn_block {
	text-align: center;
}

.links_backBtn {
	display: inline-block;
}
.links_backBtn .m-btn {
	width: 221px;
	height: 47px;
	cursor: pointer;
}
.links_backBtn .m-btn .m-btn_inner span {
	padding: 6px 0px 5px 41px;
	width: 211px;
	height: 37px;
	background: #f60 url(/img/common/m-btn_icon_arrow_left.svg) 23px 13px no-repeat;
}
.links_backBtn .m-btn .m-btn_inner span small {
	font-size: 14px;
	font-weight: bold;
}
.touchevents .links_backBtn .m-btn.is-touched:before,
.touchevents .links_backBtn .m-btn.is-touched:after,
.no-touchevents .links_backBtn .m-btn:hover:before,
.no-touchevents .links_backBtn .m-btn:hover:after {
	width: 112px;
}

.m-enBtn {
	position: relative;
	padding: 5px;
}
.m-enBtn:before,
.m-enBtn:after {
	content: "";
	box-sizing: border-box;
	position: absolute;
	top: 0;
	border-top: 3px solid #000;
	border-bottom: 3px solid #000;
	width: 7px;
	height: 100%;
	transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width: 768px) {
	.m-enBtn:before,
	.m-enBtn:after {
		border-top: 2px solid #000;
		border-bottom: 2px solid #000;
	}
}
.m-enBtn:before {
	left: 0;
	border-left: 3px solid #000;
}
@media screen and (max-width: 768px) {
	.m-enBtn:before {
		border-left: 2px solid #000;
	}
}
.m-enBtn:after {
	right: 0;
	border-right: 3px solid #000;
}
@media screen and (max-width: 768px) {
	.m-enBtn:after {
		border-right: 2px solid #000;
	}
}
.m-enBtn a,
.m-enBtn button {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	z-index: 100;
	padding: 9px;
	background-color: #f60;
	text-decoration: none;
	color: #fff;
	font-family: "OpenSans-Bold", sans-serif;
	font-size: 15px;

	-webkit-align-items: center;

	    -ms-flex-align: center;

	        align-items: center;
}
.m-enBtn a:before,
.m-enBtn button:before {
	content: "";
	display: inline-block;
	margin-right: 5px;
	width: 13px;
	height: 12px;
	background-image: url(/img/common/m-btn_icon_arrow_left.svg);
	background-repeat: no-repeat;
	background-size: 13px 12px;
	vertical-align: 0px;
}
.touchevents .m-enBtn.is-touched:before,
.touchevents .m-enBtn.is-touched:after,
.no-touchevents .m-enBtn:hover:before,
.no-touchevents .m-enBtn:hover:after {
	width: 50%;
}

/* --------------------------------
  m-brackets
-------------------------------- */
.m-brackets {
	box-sizing: border-box;
	position: relative;
	padding: 0 19px;
	line-height: 1;
}
@media screen and (max-width: 768px) {
	.m-brackets {
		padding: 0 10px;
		line-height: 1.1;
	}
}
.m-brackets:before,
.m-brackets:after {
	content: "";
	box-sizing: border-box;
	position: absolute;
	top: -2px;
	border-top: 3px solid #013a81;
	border-bottom: 3px solid #013a81;
	width: 8px;
	height: 100%;
}
@media screen and (max-width: 768px) {
	.m-brackets:before,
	.m-brackets:after {
		border-width: 2px;
		width: 6px;
	}
}
.m-brackets:before {
	left: 0;
	border-left: 3px solid #013a81;
}
@media screen and (max-width: 768px) {
	.m-brackets:before {
		border-width: 2px;
	}
}
.m-brackets:after {
	right: 0;
	border-right: 3px solid #013a81;
}
@media screen and (max-width: 768px) {
	.m-brackets:after {
		border-width: 2px;
	}
}
.m-brackets br {
	display: none !important;
}
@media screen and (max-width: 1150px) {
	.m-brackets br {
		display: block !important;
	}
}

/* --------------------------------
  MenuButtun
-------------------------------- */
.g-header_menubtn {
	opacity: 0;
	position: fixed;
	z-index: 10002;
	top: 0;
	right: 0;
	margin: auto;
	width: 89px;
	height: 89px;
	transition: opacity 0s 0.3s, -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, opacity 0s 0.3s;
	transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, opacity 0s 0.3s, -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	-webkit-transform: translateY(-100%);
	    -ms-transform: translateY(-100%);
	        transform: translateY(-100%);
}
.g-header-under .g-header_menubtn {
	opacity: 1;
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
}
@media screen and (max-width: 768px) {
	.g-header_menubtn {
		opacity: 1;
		width: 16.8vw;
		height: 16.875vw;
		-webkit-transform: translateY(0);
		    -ms-transform: translateY(0);
		        transform: translateY(0);
	}
}
.g-header_menubtn a {
	display: block;
	height: 100%;
	transition: background 0.15s;
	background: #f60 url(/img/common/hdr_icon_menu.svg) center 56px no-repeat;
}
@media screen and (max-width: 768px) {
	.g-header_menubtn a {
		background-position: center 12vw;
		background-size: 8.75vw 2.1875vw;
	}
}
.g-header_menubtn a:before,
.g-header_menubtn a:after {
	content: "";
	position: absolute;
	top: -14px;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 33px;
	height: 5px;
	transition: opacity 0s cubic-bezier(0.25, 0.25, 0.75, 0.75), -webkit-transform 0s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: opacity 0s cubic-bezier(0.25, 0.25, 0.75, 0.75), transform 0s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: opacity 0s cubic-bezier(0.25, 0.25, 0.75, 0.75), transform 0s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0s cubic-bezier(0.215, 0.61, 0.355, 1);
	background-color: #fff;
}
@media screen and (max-width: 768px) {
	.g-header_menubtn a:before,
	.g-header_menubtn a:after {
		top: -3vw;
		width: 8.5vw;
		height: 1vw;
	}
}
.g-header_menubtn a:before {
	opacity: 0;
}
.view-drawer .g-header_menubtn a {
	background: #f60 url(/img/common/hdr_icon_close.svg) center 56px no-repeat;
}
.touchevents .view-drawer .g-header_menubtn a.is-touched,
.no-touchevents .view-drawer .g-header_menubtn a:hover {
	background: #003a83 url(/img/common/hdr_icon_close.svg) center 56px no-repeat;
}
@media screen and (max-width: 768px) {
	.touchevents .view-drawer .g-header_menubtn a.is-touched,
	.no-touchevents .view-drawer .g-header_menubtn a:hover {
		background-position: center 12vw;
		background-size: 10.3125vw 2.1875vw;
	}
}
@media screen and (max-width: 768px) {
	.view-drawer .g-header_menubtn a {
		background-position: center 12vw;
		background-size: 10.3125vw 2.1875vw;
	}
}
.view-drawer .g-header_menubtn a:before,
.view-drawer .g-header_menubtn a:after {
	transition: opacity 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75), -webkit-transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: opacity 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75), transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: opacity 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75), transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.view-drawer .g-header_menubtn a:before {
	opacity: 1;
	-webkit-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}
.view-drawer .g-header_menubtn a:after {
	opacity: 1;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.touchevents .g-header_menubtn.is-touched a,
.no-touchevents .g-header_menubtn:hover a {
	background: #003a83 url(/img/common/hdr_icon_menu.svg) center 56px no-repeat;
}
.is-show .g-header_menubtn {
	opacity: 1;
	transition: opacity 0s 0s, -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, opacity 0s 0s;
	transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, opacity 0s 0s, -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
}
.g-header_menubtn span {
	position: absolute;
	top: -14px;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 768px) {
	.g-header_menubtn span {
		top: -3vw;
	}
}
.g-header_menubtn span:before,
.g-header_menubtn span:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 33px;
	height: 5px;
	transition: opacity 0.1s cubic-bezier(0.25, 0.25, 0.75, 0.75), top 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), bottom 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
	background-color: #fff;
}
@media screen and (max-width: 768px) {
	.g-header_menubtn span:before,
	.g-header_menubtn span:after {
		width: 8.5vw;
		height: 1vw;
	}
}
.g-header_menubtn span:before {
	bottom: 20px;
}
@media screen and (max-width: 768px) {
	.g-header_menubtn span:before {
		bottom: 5vw;
	}
}
.g-header_menubtn span:after {
	top: 20px;
}
@media screen and (max-width: 768px) {
	.g-header_menubtn span:after {
		top: 5vw;
	}
}
.view-drawer .g-header_menubtn span:after,
.view-drawer .g-header_menubtn span:before {
	opacity: 0;
	top: 0;
	bottom: 0;
	transition: opacity 0.1s cubic-bezier(0.25, 0.25, 0.75, 0.75), top 0.1s cubic-bezier(0.25, 0.25, 0.75, 0.75), bottom 0.1s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

/* --------------------------------
  SearchButtun
-------------------------------- */
.g-header_searchbtn {
	opacity: 0;
	position: fixed;
	z-index: 10004;
	top: 89px;
	right: 0;
	margin: auto;
	padding: 0 30px;
	background: #fff;
	cursor: pointer;
	transition: opacity 0s 0.3s, -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, opacity 0s 0.3s;
	transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, opacity 0s 0.3s, -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	-webkit-transform: translateY(-100%);
	    -ms-transform: translateY(-100%);
	        transform: translateY(-100%);
	visibility: hidden;
}
@media screen and (max-width: 768px) {
	.g-header_searchbtn {
		opacity: 1;
		top: 0;
		right: 16.8vw;
		padding: 0 6vw;
		transition: right 0.6s 0s, transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, opacity 0s 0.3s, -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
		-webkit-transform: translateY(0);
		    -ms-transform: translateY(0);
		        transform: translateY(0);
		visibility: visible;
	}
}
.g-header-under .g-header_searchbtn {
	opacity: 1;
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
	visibility: visible;
}
.is-show .g-header_searchbtn {
	opacity: 1;
	transition: opacity 0s 0s, -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, opacity 0s 0s;
	transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, opacity 0s 0s, -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
	visibility: visible;
}
.g-header_searchbtn.search-open {
	cursor: auto;
}
@media screen and (max-width: 768px) {
	.g-header_searchbtn.search-open {
		right: 0;
	}
}
.g-header_searchbtn_wrap {
	width: 29px;
	overflow: hidden;
	transition: width 0.6s 0s;
}
@media screen and (max-width: 768px) {
	.g-header_searchbtn_wrap {
		width: 4.8vw;
	}
}
.search-open .g-header_searchbtn_wrap {
	width: 320px;
}
@media screen and (max-width: 768px) {
	.search-open .g-header_searchbtn_wrap {
		width: 88vw;
	}
}
.g-header_searchbtn_inner {
	display: flex;
	align-items: center;
	width: 320px;
	height: 89px;
}
@media screen and (max-width: 768px) {
	.g-header_searchbtn_inner {
		width: 88vw;
		height: 16.875vw;
	}
}
.g-header_searchbtn_icon {
	width: 29px;
}
@media screen and (max-width: 768px) {
	.g-header_searchbtn_icon {
		width: 4.5vw;
	}
}
.g-header_searchbtn_search {
	width: calc(100% - 49px);
	padding: 0 10px;
}
@media screen and (max-width: 768px) {
	.g-header_searchbtn_search {
		width: calc(100% - 9.8vw);
		padding: 0 6vw;
	}
}
.g-header_searchbtn .gsc-input-box,
.g-header_searchbtn form.gsc-search-box,
.g-header_searchbtn table.gsc-search-box,
.g-header_searchbtn table.gsc-search-box td,
.g-header_searchbtn table.gsc-search-box td.gsc-input {
	margin: 0;
	padding: 0;
	border: none;
}
.g-header_searchbtn .gsib_b {
	width: 1.73625em;
}
.g-header_searchbtn .gsc-search-button {
	display: none;
}
.g-header_searchbtn_close {
	position: relative;
	width: 20px;
	height: 20px;
	cursor: pointer;
}
@media screen and (max-width: 768px) {
	.g-header_searchbtn_close {
		width: 5.3vw;
		height: 5.3vw;
	}
}
.g-header_searchbtn_close::before,
.g-header_searchbtn_close::after {
	content: "";
	position: absolute;
	width: 141.4%;
	height: 1px;
	background-color: #013A81;
	transform-origin: left;
}
.g-header_searchbtn_close::before {
	top: 0;
	transform: rotate(45deg);
}
.g-header_searchbtn_close::after {
	bottom: 0;
	transform: rotate(-45deg);
}
.g-header_searchbtn_bg {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10003;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.6s 0s;
}
.search-open + .g-header_searchbtn_bg {
	opacity: 0.5;
	visibility: visible;
}

/* --------------------------------
  Pagetop
-------------------------------- */
.pagetop {
	opacity: 0;
	position: fixed;
	z-index: 1889;
	right: 0;
	bottom: 0;
	width: 89px;
	height: 89px;
	transition: background 0.2s;
	transition: opacity 0s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s, -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: opacity 0s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s, transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: opacity 0s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s, transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
	-webkit-transform: translateY(100%);
	    -ms-transform: translateY(100%);
	        transform: translateY(100%);
	background-color: #013a81;
}
@media screen and (max-width: 768px) {
	.pagetop {
		position: absolute;
		left: 0;
		margin: auto;
	}
}
.no-touchevents .pagetop:hover {
	background-color: #f60;
}
.pagetop.is-show {
	opacity: 1;
	transition-delay: 0s;
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
}
.pagetop a {
	display: block;
	position: relative;
	height: 100%;
}
.pagetop a img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 61px;
}

/* --------------------------------
  一覧モジュール
-------------------------------- */
.l-contentInner {
	padding: 74px 0 0;
}
@media screen and (max-width: 768px) {
	.l-contentInner {
		padding: 51px 0 0;
	}
}

.m-list_wrap {
	margin: -38px auto auto;
	max-width: 990px;
}
@media screen and (max-width: 768px) {
	.m-list_wrap {
		margin: -40px 15px auto;
	}
}

.m-list_item {
	position: relative;
	float: left;
	margin-top: 38px;
	margin-right: 3.62%;
	width: 30.9%;
	background: #fff;
	text-align: center;
}
.m-list_item:nth-child(3n) {
	margin-right: 0;
}
@media screen and (max-width: 981px) {
	.m-list_item {
		width: 48%;
	}
	.m-list_item:nth-child(3n) {
		margin-right: 3.62%;
	}
	.m-list_item:nth-child(even) {
		margin-right: 0;
	}
}
@media screen and (max-width: 768px) {
	.m-list_item {
		float: none;
		width: 100%;
	}
	.ir .m-list_item {
		margin-top: 20px;
	}
}
.m-list_item .m-btn .m-btn_inner span {
	padding: 5px 14px 5px 0px;
	background-position: 126px 8px;
}
@media screen and (max-width: 768px) {
	.m-list_item .m-btn .m-btn_inner span {
		background-position: 107px 7px;
	}
}
.m-list_item a {
	display: block;
	position: relative;
	height: 100%;
	text-decoration: none;
	color: #1a1a1a;
}
.m-list_item a:before {
	content: "";
	display: block;
	opacity: 0;
	position: absolute;
	z-index: 20;
	top: 0;
	left: 0;
	border: 8px solid #f60;
	width: 100%;
	height: 100%;
	transition: opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.m-list_item a:after {
	content: "";
	display: block;
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	border-top: 4px solid #003a83;
	width: 100%;
	height: 100%;
}
.m-list_item a img {
	transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.touchevents .m-list_item a.is-touched,
.no-touchevents .m-list_item a:hover {
	cursor: pointer;
}
.touchevents .m-list_item a.is-touched:before,
.no-touchevents .m-list_item a:hover:before {
	opacity: 1;
}
.touchevents .m-list_item a.is-touched img,
.no-touchevents .m-list_item a:hover img {
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}
.touchevents .m-list_item a.is-touched .m-btn:before,
.touchevents .m-list_item a.is-touched .m-btn:after,
.no-touchevents .m-list_item a:hover .m-btn:before,
.no-touchevents .m-list_item a:hover .m-btn:after {
	width: 87px;
}
.m-list_item.u-blank {
	position: relative;
}
.m-list_item.u-blank:after {
	content: "";
	position: absolute;
	z-index: 200;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 30px;
	height: 30px;
	background: #f60 url(/img/common/icon_tb.svg) center no-repeat;
	background-size: 55%;
}

.m-list_item_img {
	overflow: hidden;
	position: relative;
	top: 4px;
	padding: 1px;
}
@media screen and (max-width: 768px) {
	.m-list_item_img {
		padding: 3px;
	}
}
.m-list_item_img img {
	width: 100%;
}

.m-list_item_body {
	padding: 0 24px 32px;
}
.ir .m-list_item_body {
	padding-bottom: 44px;
}
@media screen and (max-width: 768px) {
	.ir .m-list_item_body {
		padding-bottom: 30px;
	}
}

.m-list_item_title {
	margin-top: 27px;
	padding-bottom: 20px;
	letter-spacing: 0.6px;
	font-size: 22px;
	font-weight: normal;
}
@media screen and (max-width: 768px) {
	.m-list_item_title {
		margin: 18px auto 0;
		padding-bottom: 10px;
		font-size: 25px;
	}
}

.m-list_item_txt {
	text-align: left;
	letter-spacing: 1px;
	font-size: 14px;
}
@media screen and (max-width: 768px) {
	.m-list_item_txt {
		font-size: 15px;
	}
}

.m-list_item_btn {
	margin: 24px auto 0;
	width: 171px;
}
@media screen and (max-width: 768px) {
	.m-list_item_btn {
		width: 145px;
	}
}
.ir .m-list_item_btn .m-btn {
	height: 47px;
}
@media screen and (max-width: 768px) {
	.ir .m-list_item_btn .m-btn {
		width: 145px;
		height: 40px;
	}
}
.ir .m-list_item_btn .m-btn .m-btn_inner span {
	height: 37px;
}
@media screen and (max-width: 768px) {
	.ir .m-list_item_btn .m-btn .m-btn_inner span {
		width: 136px;
		height: 32px;
		letter-spacing: 1.5px;
		font-size: 13px;
	}
}

/* --------------------------------
   pagination
-------------------------------- */
.pagination {
	margin-top: -4px;
}
@media screen and (max-width: 768px) {
	.pagination {
		margin-top: 35px;
	}
}

.pagination_list {
	text-align: center;
	font-size: 0;
}

.pagination_list_item {
	display: inline-block;
	position: relative;
	margin-left: 1px;
	width: 58px;
	height: 58px;
	font-size: 27px;
	line-height: 58px;
}
@media screen and (max-width: 768px) {
	.pagination_list_item {
		width: 42px;
		height: 42px;
		font-size: 23px;
		line-height: 42px;
	}
}
@media screen and (max-width: 321px) {
	.pagination_list_item {
		width: 36px;
		height: 36px;
		font-size: 21px;
		line-height: 36px;
	}
}
.pagination_list_item.is-current {
	background: #013a81;
	color: #fff;
}
.pagination_list_item a {
	display: block;
	width: 100%;
	height: 100%;
	background: #999;
	text-decoration: none;
	color: #fff;
}
.touchevents .pagination_list_item.is-touched a,
.no-touchevents .pagination_list_item:hover a {
	transition: background-color 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
	background-color: #f60;
}
.pagination_list_item.extend {
	display: inline-block;
	width: 42px;
	background: none;
	color: #999;
}
@media screen and (max-width: 768px) {
	.pagination_list_item.extend {
		width: 28px;
	}
}
@media screen and (max-width: 321px) {
	.pagination_list_item.extend {
		width: 24px;
	}
}
.pagination_list_item.extend span {
	position: relative;
	top: -8px;
}
@media screen and (max-width: 768px) {
	.pagination_list_item.extend span {
		top: -7px;
	}
}

.prevBtn img,
.nextBtn img {
	margin-top: -5px;
}

.pickup_notApplicable {
	margin-top: 20px;
	text-align: center;
}

/* --------------------------------
  m-related_links
-------------------------------- */
.m-related_links {
	margin-top: 100px;
	border-top: 1px solid #013a81;
}
@media screen and (max-width: 768px) {
	.m-related_links {
		margin: 61px 15px 0;
		padding-bottom: 15px;
	}
}

.m-related_links_heading_title {
	padding-top: 86px;
	padding-bottom: 45px;
	text-align: center;
	color: #013a81;
}
@media screen and (max-width: 768px) {
	.m-related_links_heading_title {
		padding-top: 32px;
		padding-bottom: 33px;
	}
}
.m-related_links_heading_title span {
	display: block;
}
.m-related_links_heading_title .en {
	letter-spacing: 1px;
	font-size: 36px;
	font-weight: normal;
	line-height: 1;
}
@media screen and (max-width: 768px) {
	.m-related_links_heading_title .en {
		font-size: 30px;
	}
}
.m-related_links_heading_title .en + .jp {
	margin-top: 12px;
}
@media screen and (max-width: 768px) {
	.m-related_links_heading_title .en + .jp {
		margin-top: 7px;
	}
}
.m-related_links_heading_title .jp {
	letter-spacing: 4px;
	font-size: 14px;
	font-weight: normal;
	line-height: 1;
}
@media screen and (max-width: 768px) {
	.m-related_links_heading_title .jp {
		letter-spacing: 2px;
		font-size: 15px;
	}
}

.m-related_body {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	padding: 0;
	padding: 0;
	height: 90px;
	text-align: center;
	line-height: 1.2;

	-webkit-align-items: center;

	    -ms-flex-align: center;

	        align-items: center;
}
.en .m-related_body {
	padding: 0 60px;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.m-related_body {
		padding: 0;
		height: 74px;
	}
	.en .m-related_body {
		padding: 0 35px;
	}
}
.m-related_body:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 33px;
	bottom: 0;
	margin: auto;
	width: 18px;
	height: 18px;
	background: url("/img/common/link_arrow_icon.svg") no-repeat;
	background-size: contain;
}
@media screen and (max-width: 768px) {
	.m-related_body:after {
		right: 23px;
	}
	.en .m-related_body:after {
		right: 13px;
	}
}
.u-blank .m-related_body:after {
	display: none;
}
.m-related_body .m-related_title {
	margin: auto;
	font-size: 20px;
	font-weight: normal;
}
.en .m-related_body .m-related_title {
	font-size: 19px;
}

/* --------------------------------
  ir年別ソートタグ
-------------------------------- */
.tag_block {
	margin: 30px 75px 40px;
}
@media screen and (max-width: 768px) {
	.tag_block {
		margin: 40px 15px 8px;
	}
}

.year_tag {
	position: relative;
	margin-top: 11px;
	padding: 20px;
	background-color: #fff;
}
@media screen and (max-width: 768px) {
	.year_tag {
		margin-top: 8px;
		padding: 0;
		border-top: none;
		background-color: #fff;
	}
}

.year_tag_title {
	position: relative;
	float: left;
	padding: 6px;
	width: 14%;
	background: #003a83;
	text-align: center;
	color: #fff;
}
@media screen and (max-width: 768px) {
	.year_tag_title {
		position: relative;
		float: none;
		padding: 16px 0 16px 45px;
		width: 100%;
		background-color: #003a83;
		text-align: left;
		color: #fff;
		font-size: 18px;
	}
}
.year_tag_title:before {
	content: "";
	display: block;
	display: none;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 20px;
	margin: auto;
	width: 17px;
	height: 17px;
	background: url("/img/pickup/img_icon_search_sp.png") no-repeat;
	background-size: contain;
}
@media screen and (max-width: 768px) {
	.year_tag_title:before {
		display: block;
	}
}
.year_tag_title i {
	display: none;
}
@media screen and (max-width: 768px) {
	.year_tag_title i {
		display: inline-block;
		width: 13px;
		height: 13px;
	}
	.year_tag_title i:before,
	.year_tag_title i:after {
		content: "";
		position: absolute;
		top: 0;
		right: 30px;
		bottom: 0;
		margin: auto;
		width: 13px;
		height: 3px;
		transition: opacity 0.1s cubic-bezier(0.25, 0.25, 0.75, 0.75), -webkit-transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
		transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.1s cubic-bezier(0.25, 0.25, 0.75, 0.75);
		transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.1s cubic-bezier(0.25, 0.25, 0.75, 0.75), -webkit-transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
		background-color: #6385b2;
	}
	.year_tag_title i:before {
		-webkit-transform: rotate(90deg);
		    -ms-transform: rotate(90deg);
		        transform: rotate(90deg);
	}
}
.year_tag_title.is-show i:before {
	-webkit-transform: rotate(0deg);
	    -ms-transform: rotate(0deg);
	        transform: rotate(0deg);
}
.year_tag_title.is-show i:after {
	opacity: 0;
}

.year_tag_list {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-top: -16px;
	width: 86%;
	text-align: center;

	-webkit-flex-wrap: wrap;

	    -ms-flex-wrap: wrap;

	        flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
	.year_tag_list {
		display: none;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
		margin-top: 0;
		width: 100%;
	}
}

.year_tag_list_item {
	margin-top: 20px;
	width: 15%;
}
@media screen and (max-width: 768px) {
	.year_tag_list_item {
		margin-top: 0;
		border-bottom: 1px solid #e5e5e5;
		width: 100%;
	}
}
.year_tag_list_item a {
	display: block;
	padding: 6px 0;
	border-right: 1px solid #ccc;
	transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
	color: #000;
	font-size: 14px;
	line-height: 1;
}
.year_tag_list_item a:hover {
	color: #f60;
}
@media screen and (max-width: 768px) {
	.year_tag_list_item a {
		display: block;
		padding: 16px;
		border-right: none;
	}
}
.year_tag_list_item span {
	display: inline-block;
	position: relative;
	z-index: 2;
}
.year_tag_list_item:first-child a {
	border-left: none;
}
.year_tag_list_item:last-child a {
	border-right: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
	.year_tag_list_item:last-child a {
		border-right: none;
	}
}
.year_tag_list_item.is-current span:after {
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
	right: 0;
	bottom: -2px;
	left: -4px;
	margin: auto;
	width: 120%;
	height: 6px;
	background: #f60;
}

/* --------------------------------
  IR お知らせ項目
-------------------------------- */
.post_list_block {
	display: none;
	margin-top: 40px;
}
.post_list_block.is-showPostListBlock {
	display: block;
}
@media screen and (max-width: 768px) {
	.post_list_block {
		margin-top: 30px;
		padding: 0 25px;
	}
}

.m-post_list {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	padding-top: 18px;
	padding-bottom: 27px;
	border-bottom: 1px solid #bfbfbf;

	-webkit-justify-content: space-between;

	    -ms-flex-pack: justify;

	        justify-content: space-between;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}
@media screen and (max-width: 768px) {
	.m-post_list {
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
.m-post_list dt {
	padding-right: 20px;
	width: 20%;
	text-align: center;
	color: #013a81;
}
@media screen and (max-width: 768px) {
	.m-post_list dt {
		margin-bottom: 5px;
		padding-right: 0;
		width: 100%;
		text-align: left;
	}
}
.m-post_list dt span {
	display: block;
	background-color: #f1f3f7;
	text-align: center;
	font-size: 12px;
}
@media screen and (max-width: 768px) {
	.m-post_list dt span {
		display: inline-block;
		margin-left: 18px;
		padding: 4px 20px 0;
	}
}
.m-post_list dd {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	border-left: 1px solid #cecece;
	width: 80%;
	min-height: 46px;
	font-size: 14px;

	-webkit-align-items: center;

	    -ms-flex-align: center;

	        align-items: center;
}
@media screen and (max-width: 768px) {
	.m-post_list dd {
		display: block;
		border-left: none;
		width: 100%;
		min-height: auto;
	}
}
.m-post_list dd a {
	display: block;
	padding: 0 80px 0 20px;
	width: 100%;
	cursor: pointer;
	transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
	color: #000;
}
.m-post_list dd a:hover {
	color: #f60;
}
@media screen and (max-width: 768px) {
	.m-post_list dd a {
		padding: 0;
		padding-right: 11.66%;
	}
}

/* --------------------------------
  Footer
-------------------------------- */
.g-footer {
	padding-top: 50px;
	width: 100%;
	background-color: #15181e;
}
@media screen and (max-width: 768px) {
	.g-footer {
		padding-top: 0;
	}
}

.g-footer_inner {
	padding: 0 30px;
	background-color: #252a33;
}
@media screen and (max-width: 768px) {
	.g-footer_inner {
		padding: 0;
		text-align: center;
	}
}

.g-footer_body {
	position: relative;
	margin: auto;
	padding-top: 71px;
	max-width: 1080px;
	height: auto;
}
@media screen and (max-width: 768px) {
	.g-footer_body {
		padding-top: 0;
		padding-bottom: 124px;
		width: 100%;
	}
}

.g-footer_contents,
.g-footer_sns {
	float: left;
}
@media screen and (max-width: 768px) {
	.g-footer_contents,
	.g-footer_sns {
		float: none;
		border-top: 10px solid #15181e;
	}
}

.g-footer_contents {
	margin-right: 10%;
	max-width: 620px;
}
@media screen and (max-width: 768px) {
	.g-footer_contents {
		padding-top: 26px;
		width: 100%;
		max-width: 100%;
	}
}

.g-footer_sns {
	margin-bottom: 64px;
	max-width: 298px;
}
@media screen and (max-width: 768px) {
	.g-footer_sns {
		margin-bottom: 0;
		width: 100%;
		max-width: 100%;
	}
}

.g-footer_contents_h,
.g-footer_sns_h {
	position: relative;
	letter-spacing: 2px;
	color: #fff;
	font-size: 14px;
}
@media screen and (max-width: 768px) {
	.g-footer_contents_h,
	.g-footer_sns_h {
		letter-spacing: 3px;
		font-size: 20px;
	}
}
.g-footer_contents_h:after,
.g-footer_sns_h:after {
	content: "";
	position: absolute;
	bottom: -11px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #4c5058;
}
@media screen and (max-width: 768px) {
	.g-footer_contents_h:after,
	.g-footer_sns_h:after {
		content: none;
	}
}

@media screen and (max-width: 768px) {
	.g-footer_sns_h {
		padding: 34px 0;
	}
}

.g-footer_contents_menu ul li,
.g-footer_contents_otherLink ul li,
.g-footer_sns_menu ul li {
	display: inline-block;
	position: relative;
	vertical-align: middle;
}
.g-footer_contents_menu ul li a,
.g-footer_contents_otherLink ul li a,
.g-footer_sns_menu ul li a {
	display: block;
	position: relative;
	height: 100%;
}
@media screen and (max-width: 768px) {
	.g-footer_contents_menu ul li a,
	.g-footer_contents_otherLink ul li a,
	.g-footer_sns_menu ul li a {
		font-size: 14px;
	}
}

.g-footer_contents_menu ul li a.tb::after {
	content: "";
	display: inline-block;
	margin-left: 5px;
	width: 14px;
	height: 12px;
	background: url(/img/common/icon_tb.svg) no-repeat;
	background-size: 100% auto;
}
@media screen and (max-width: 768px) {
	.g-footer_contents_menu ul li a.tb::after {
		width: 13px;
		height: 11px;
	}
}

.g-footer_contents_menu ul li a.tb:hover::after {
	background: url(/img/common/icon_tb-f60.svg) no-repeat;
}

@media screen and (max-width: 768px) {
	.g-footer_contents_menu ul li,
	.g-footer_contents_otherLink ul li {
		display: block;
		padding: 4px 0;
		border-top: 1px solid #4c5058;
	}
}

.g-footer_contents_menu a,
.g-footer_contents_otherLink a {
	transition: color 0.2s;
	text-decoration: none;
	text-indent: 22.4px;
	text-indent: 1.4rem;
	letter-spacing: 1.5px;
	color: #fff;
	line-height: 1.5;
}
.g-footer_contents_menu a:before,
.g-footer_contents_otherLink a:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: -14px;
	margin: auto;
	margin-left: 16px;
	margin-left: 1rem;
	width: 14px;
	height: 14px;
	transition: background 0.2s;
	background: url(/img/common/ftr_icon_arrow.svg) no-repeat;
}
@media screen and (max-width: 768px) {
	.g-footer_contents_menu a:before,
	.g-footer_contents_otherLink a:before {
		display: inline-block;
		position: static;
		margin-right: 6px;
		margin-left: 0;
		background-size: 12px;
		vertical-align: middle;
	}
}

.touchevents .g-footer_contents_menu li.is-touched a,
.no-touchevents .g-footer_contents_menu li:hover a,
.touchevents
.g-footer_contents_otherLink li.is-touched a,
.no-touchevents
.g-footer_contents_otherLink li:hover a {
	color: #f60;
}
.touchevents .g-footer_contents_menu li.is-touched a:before,
.no-touchevents .g-footer_contents_menu li:hover a:before,
.touchevents
  .g-footer_contents_otherLink li.is-touched a:before,
.no-touchevents
  .g-footer_contents_otherLink li:hover a:before {
	background: url(/img/common/ftr_icon_arrow_ov.svg) no-repeat;
}

.g-footer_contents_menu {
	margin-top: 36px;
}
@media screen and (max-width: 768px) {
	.g-footer_contents_menu {
		margin-top: 34px;
		width: 100%;
	}
	.g-footer_contents_menu a {
		padding: 20px 18px 20px 0;
	}
}
.g-footer_contents_menu ul {
	line-height: 2.5;
}
@media screen and (min-width: 950px) {
	.g-footer_contents_menu li {
		margin-right: 15px;
	}
	.g-footer_contents_menu li:nth-of-type(1) a {
		letter-spacing: 2.5px;
	}
}

.g-footer_contents_otherLink {
	margin-top: 56px;
}
@media screen and (max-width: 768px) {
	.g-footer_contents_otherLink {
		margin-top: 0;
	}
}
.g-footer_contents_otherLink ul {
	width: 80%;
	line-height: 2.5;
}
@media screen and (max-width: 768px) {
	.g-footer_contents_otherLink ul {
		width: 100%;
		line-height: inherit;
	}
}
.g-footer_contents_otherLink ul li {
	margin-right: 13px;
}
@media screen and (max-width: 768px) {
	.g-footer_contents_otherLink ul li {
		margin-right: 0;
	}
}
.g-footer_contents_otherLink a {
	letter-spacing: -0.3px;
}
@media screen and (max-width: 768px) {
	.g-footer_contents_otherLink a {
		padding: 10px 11px 10px 0;
	}
}

.g-footer_sns_menu {
	margin-top: 48px;
}
@media screen and (max-width: 768px) {
	.g-footer_sns_menu {
		margin-top: 0;
		padding: 22px 0;
		border-top: 1px solid #4c5058;
		border-bottom: 1px solid #4c5058;
	}
}
.g-footer_sns_menu ul li {
	margin-right: 14px;
	border: none;
	border-radius: 25%;
	width: 42px;
	height: 42px;
	transition: background-color 0.2s;
	background-color: #fff;
}
.g-footer_sns_menu ul li:last-of-type {
	margin-right: 0;
}
.g-footer_sns_menu ul li:nth-of-type(1) svg {
	transition: 0.2s;

	fill: #000;
}
@media screen and (max-width: 768px) {
	.g-footer_sns_menu ul li:nth-of-type(1) svg {
		-webkit-transform: scale(1.02);
		    -ms-transform: scale(1.02);
		        transform: scale(1.02);
	}
}
.g-footer_sns_menu ul li:nth-of-type(2) svg {
	transition: 0.2s;

	fill: #dd3626;
}
@media screen and (max-width: 768px) {
	.g-footer_sns_menu ul li:nth-of-type(2) svg {
		-webkit-transform: scale(1.02);
		    -ms-transform: scale(1.02);
		        transform: scale(1.02);
	}
}
.touchevents .g-footer_sns_menu ul li.is-touched,
.no-touchevents .g-footer_sns_menu ul li:hover {
	opacity: 0.8;
}

.g-footer_privacyMark {
	margin-top: 59px;
}
@media screen and (max-width: 768px) {
	.g-footer_privacyMark {
		margin-top: 42px;
	}
}
.g-footer_privacyMark a {
	display: block;
	width: 99px;
	height: 100%;
}
@media screen and (max-width: 768px) {
	.g-footer_privacyMark a {
		margin: auto;
		width: 74px;
	}
}
.g-footer_privacyMark img {
	width: 99px;
	height: 99px;
}
@media screen and (max-width: 768px) {
	.g-footer_privacyMark img {
		width: 74px;
		height: 74px;
	}
}

.g-footer_copyright {
	width: 100%;
	height: 76px;
	background-color: #1d2129;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.g-footer_copyright {
		padding-top: 25px;
		height: 115px;
	}
}
.g-footer_copyright small {
	letter-spacing: 1.5px;
	color: #a5aab2;
	font-size: 12px;
	line-height: 76px;
}
@media screen and (max-width: 768px) {
	.g-footer_copyright small {
		display: block;
		line-height: 1.7;
	}
}

/* ------------------------
  Print Styles
------------------------ */
@media print {
	*,
	*:before,
	*:after {
		background: transparent !important;
		color: #000 !important;
		box-shadow: none !important;
		text-shadow: none !important;
	}
	a,
	a:visited {
		text-decoration: underline;
	}
	tr,
	img {
		page-break-inside: avoid;
	}
	img {
		max-width: 100% !important;
	}
	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}
	h2,
	h3 {
		page-break-after: avoid;
	}
}
