@charset "utf-8";

/* Body
------------------------------ */
html{
	overflow-x: hidden;
	font-size: 62.5%;
}
body {
	box-shadow: none;
	color: #000000;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.6em;
	font-weight: 400;
	line-height: 2.0625em;
    letter-spacing: 0.03em;
	text-size-adjust: 100%;
	margin: 0;
}
a{
	text-decoration: none;
	transition: .25s;
}
ul,ol{
	letter-spacing: 0;
}
li{
	list-style: none;
	letter-spacing: normal;
	vertical-align: middle;
}
p{
	margin: 0;
}
img{
	vertical-align: top;
	max-width: 100%;
	height: auto;
}
h2 {
	font-size: 2.4rem;
	font-weight: 500;
	position: relative;
    letter-spacing: 0.045em;
	font-family: 'Noto Serif JP', serif;
}
.h2_en {
	font-size: 1.2rem;
	color: #990000;
	font-family: 'Noto Serif JP', serif;
}
.align_left{
	text-align: left;
}
.align_center{
	text-align: center;
}
.align_right{
	text-align: right;
}
.align_middle {
	vertical-align: middle;
}
.tel_unit {
	display: flex;
	justify-content: center;
	font-weight: 700;
	margin-top: 3px;
}
.tel_title {
	display: block;
	font-size: 1.8rem;
	color: #034899;
	margin-top: 6px;
    margin-right: 6px;
}
.tel {
	position: relative;
    display: block;
    font-size: 3.2rem;
	color: #034899;
}
a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}
.fw_6 {
	font-weight: 600;
}
.serif {
	font-family: 'Noto Serif JP', serif;
}
.sans {
	font-family: 'Noto Sans JP', sans-serif;
}
/* layout
------------------------------ */
.wrapper{
	position: relative;
	width: 1250px;
	max-width: 100%;
	margin: auto;
}
*,*::before,*::after {
	box-sizing: border-box;
}
.layout_flex {
	display: flex;
}
.layout_flex.sb {
	justify-content: space-between;
}
.layout_flex.fw {
	flex-wrap: wrap;
}
.layout_flex.rr {
	flex-direction: row-reverse;
}
.circle{
	position: relative;
	display: block;
	padding-left: 1em;
	text-indent: -1em;
}
.circle::before{
	content: "●";
	color: #034899;
	margin-right: 4px;
}
.point {
	position: relative;
	display: block;
	padding-left: 0.7em;
	text-indent: -1em;
}
.point::before{
	content: "・";
}
.asterisk {
	position: relative;
	display: block;
	padding-left: 1em;
	text-indent: -1em;
}
.asterisk::before{
	content: "※";
	color: #034899;
}
.square{
	position: relative;
	display: block;
	padding-left: 1em;
	text-indent: -1em;
}
.square::before{
	content: "■";
	color: #034899;
	margin-right: 4px;
}
.red {
	color: #990000;
}
.blue {
	color: #034899;
}
.white {
	color: #fff;
}
.bg_gray{
	background: #F5F5F5;
}
.bg_blue {
	background: #034899;
}
/* Common（共通css）
------------------------------ */
* {
	min-height: 0;
	min-width : 0;
}
.btn{
	position: relative;
	display: block;
	color: #000;
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: .0075em;
	box-sizing: border-box;
}
.btn_area {
	display: flex;
}
.btn_unit {
	display: flex;
	align-items: center;
	color: #000;
}
.btn_unit.btn_unit_white {
	color: #fff;
}
.btn_unit_title {
	position: relative;
	display: block;
	font-size: 1.4rem;
	font-weight: 500;
	z-index: 1;
}
.btn_unit_arrow {
	position: relative;
	display: block;
	width: 72px;
	height: 72px;
	margin-left: 17px;
}
.btn_unit_arrow::before {
    content: "";
    position: absolute;
    display: block;
	width: 72px;
	height: 72px;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	background: #000;
	border-radius: 50%;
}
.btn_unit_white .btn_unit_arrow::before {
	background: #fff;
}
.btn_unit_arrow img {
	position: relative;
	vertical-align: middle;
	margin-bottom: 7px;
}
.off_arrow,
.on_arrow {
	display: block;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.off_arrow::before,
.on_arrow::before {
	position: absolute;
	content: "";
	width: 26px;
	height: 8px;
	background: url(../images/common/arrow_white.svg) no-repeat center center / contain;
	transform: translate(-50%,-50%);
	-webkit-transition: 0.5s cubic-bezier(0.18, 0.06, 0.23, 1);
    transition: 0.5s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.btn_unit_white .off_arrow::before,
.btn_unit_white .on_arrow::before {
	background: url(../images/common/arrow_black.svg) no-repeat center center / contain;
}
.off_arrow::before {
	left: 50%;
}
.on_arrow::before {
	left: -20px;
	opacity: 0;
}
.pict img,figure img{
	width: 100%;
}
.text_link {
	display: inline-block;
	text-decoration: none;
	color: #034899;
	text-indent: 0;
}
.text_link::after {
	content: "";
	display: block;
	width: 0;
	transition: width 0.3s;
	border-bottom: 1px solid #034899;
	margin: auto;
	border-radius: 1px;
}
.text_link:hover{
	text-decoration: none;
}
.text_link:hover::after {
	width: 100%;
}
.emphasis{
	color: #FF0000;
}
.caution{
	position: relative;
	display: inline-block;
	font-size: 1.6rem;
	padding-left: 1em;
	text-indent: -1em;
}
.caution::before{
	content: "※";
}
figure{
	margin: 0;
}
.order1 {
	order: 1;
}
.order2 {
	order: 2;
}
.order3 {
	order: 3;
}
.order4 {
	order: 4;
}
.customize-support header.clone-nav .header_pc {
    margin-top: 31px;
	box-shadow: 0px 7px 7px 0px rgb(0 0 0 / 50%);
}
.mt10 {
	margin-top: 10px;
}
.mt20 {
	margin-top: 20px;
}
.mt30 {
	margin-top: 30px;
}
.mt40 {
	margin-top: 40px;
}
.mt50 {
	margin-top: 50px;
}

@media screen and (min-width: 641px) {
	.btn_unit:hover .btn_unit_arrow::before {
		transition: 0.5s;
		transform: translate(-50%,-50%) scale(1.05);
	}
	.btn_unit:hover .off_arrow::before {
		left: 10px;
	}
}

/* Header
------------------------------ */
body header {
	margin: auto;
	position: relative;
	width: 100%;
}
.header_pc {
	height: 112px;
}
.header_title {
	margin: 13px 0 0 20px;
}
.header_logo_text {
	font-size: 1rem;
	color: #9A9A9A;
}
.header_logo {
	margin-top: 5px;
}
.header_logo_mark {
	display: block;
    width: 319px;
    height: 52px;
    position: relative;
    text-indent: -9999px;
    background: url(../images/common/logo.svg) no-repeat center center / contain;
	transition: .3s;
}
.header_logo_mark:hover {
	opacity: .5;
}
.header_nav {
	margin-top: 54px;
}
.header_list {
	position: relative;
	margin-right: 25px;
}
.header_list:last-child {
	margin-right: 40px;
}
.header_list_link {
	font-size: 1.5rem;
	font-weight: 500;
	display: block;
	box-sizing: border-box;
	color: #000;
	position: relative;
}
.header_contact {
	position: relative;
}
.header_contact_link {
	display: block;
	position: relative;
	text-align: center;
	font-size: 1.5rem;
	width: 181px;
	height: 112px;
    padding-top: 54px;
	box-sizing: border-box;
	color: #fff;
	background: #034899;
	clip-path: polygon(0% 100%, 20% 0%, 100% 0%, 100% 100%);
}
.header_contact_link::before {
	position: absolute;
	content: "";
	width: 21px;
	height: 14px;
	left: 53%;
	transform: translateX(-50%);
	top: 37px;
	background: url(../images/common/icon_mailW.svg) no-repeat center center / contain;
}

@media screen and (min-width: 1500px) {
	.header_title {
		margin: 5px 0 0 125px;
	}
	.header_list {
		margin-right: 45px;
	}
}
@media screen and (min-width: 641px) {
	.header_list_link:hover {
		color: #034899;
	}
	.header_contact_link:hover {
		background: #1e90ff;
	}
}

/* 子メニュー */
.header_lists .header_list .sub {
	position: absolute;
	display: none;
	width: 179px;
	height: auto;
	left: 0;
	top: 34px;
	letter-spacing: -.4em;
	box-sizing: border-box;
	z-index: 10;
}
.header_lists .header_list:hover .sub {
	display: block;
	transition: .3s;
}
.header_lists .header_list .sub li {
	display: block;
	width: 100%;
	height: auto;
	line-height: 1;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	border-right: 1px solid #034899;
	border-bottom: 1px solid #034899;
	border-left: 1px solid #034899;
}
.header_lists .header_list .sub li:first-child{
	border-top: 1px solid #034899;
}
.header_lists .header_list .sub li a{
	position: relative;
	display: block;
	color: #034899;
	width: 100%;
	height: auto;
	font-size: 1.4rem;
	font-weight: 600;
	text-align: left;
	line-height: 1.5;
	letter-spacing: 0;
	padding: 14px 10px 12px;
	border-left: 0;
	background: #fff;
	box-sizing: border-box;
}
.header_lists .header_list .sub li:hover a {
	color: #fff;
	background: #034899;
}
/* //子メニュー */

/* 固定header */
header.clone-nav {
	-webkit-transition: .6s ease-in-out;
	position: fixed;
	top: -200%;
	transition: .6s ease-in-out;
	width: 100%;
	z-index: 10;
	height: 112px;
	background-color: transparent;
}
header.clone-nav .header_pc {
	margin-top: 0;
	background: #fff;
}
header.is-show {
	-webkit-box-shadow:  0 0 10px rgb(117 96 72 / 85%);
	box-shadow: 0 0 10px rgb(117 96 72 / 85%);
	top: 0
}

/* index
------------------------------ */
/* top_catch */
.top_catch {
	position: relative;
}
.slick-dotted.slick-slider {
	position: relative;
}
.top_message_content {
	position: absolute;
    left: 50%;
    top: 50%;
	transform: translate(-50%,-50%);
    z-index: 1;
}
.top_message_wrapper {
    position: relative;
	color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
	height: 500px;
	z-index: 1;
	padding-top: 8px;
	width: 100%;
}
.top_message_wrapper::before {
	position: absolute;
	content: "";
	width: 784px;
	height: auto;
	top: 0;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%) skewX(-18deg);
	background-color: rgba(0, 0, 0, .5);
	z-index: -1;
}
.top_message_title {
	font-size: 5.5rem;
	line-height: 1.44em;
}
.top_message_title span {
	font-size: 4rem;
	line-height: 1.44em;
}
.top_message_title_en {
	font-size: 1.5rem;
}
.top_slider {
	position: relative;
	width: 100%;
	height: 500px;
	background-position: center;
	background-size: cover;
	z-index: 1;
}
.top_slider.slider01 {
	background-image: url(../images/top/pc_slider01.jpg);
}
.top_slider.slider02 {
	background-image: url(../images/top/pc_slider02.jpg);
}
.top_slider.slider03 {
	background-image: url(../images/top/pc_slider03.jpg);
}
.top_slider.slider04 {
	background-image: url(../images/top/pc_slider04.jpg);
}
/* //top_catch */

/* index_create */
#index_create {
	position: relative;
}
#index_create::before {
	position: absolute;
	content: "";
	width: 22.4%;
	left: 0;
	top: 0;
	bottom: -221px;
	background: url(../images/top/index_create_bg.png) no-repeat right center / cover;
}
.index_create_wrapper {
	width: 1500px;
	max-width: 100%;
	margin: auto;
}
.index_create_content {
	position: relative;
	width: 1010px;
	padding: 111px 10px 101px 0;
	margin-left: auto;
}
.index_create_content::after {
	position: absolute;
	content: "";
	width: 364px;
	height: 364px;
	right: 110px;
    bottom: -50px;
    z-index: -1;
	background: url(../images/top/index_create_mark.png) no-repeat center center / contain;
}
#index_create h2 {
	font-size: 3.6rem;
}
.index_create_text {
	margin-top: 20px;
}
.index_create_btn {
	margin-top: 40px;
}

@media screen and (min-width: 1500px) {
	.index_create_content {
		padding: 111px 110px 101px 0;
	}
	#index_create::before {
		width: 32.4%;
	}
}
/* //index_create */

/* index_products */
#index_products .h2_en {
	position: relative;
}
.index_products_group_head {
	font-size: 6.4rem;
	line-height: 1.43em;
	color: #F5F5F5;
	width: 50%;
}
.index_products_pict_right .index_products_group_head {
	text-align: right;
	padding-right: 12px;
}
.index_products_pict_left .index_products_group_head {
	margin-left: auto;
	padding-left: 12px;
}
.index_products_group {
	position: relative;
	margin-top: 39px;
}
.index_products_group.index_products_group_1 {
	margin-top: 41px;
}
.index_products_group_pict {
	position: absolute;
    width: 50%;
    top: 14px;
    z-index: 1;
}
.index_products_pict_right .index_products_group_pict {
	right: 0;
}
.index_products_group_pict img {
	height: 300px;
    width: 100%;
    background-size: cover;
    object-fit: cover;
}
.index_products_group_3.index_products_group::after {
	position: absolute;
	content: "";
	width: 29%;
	height: auto;
	top: 14px;
	bottom: -141px;
	left: 0;
	background: #034899;
	clip-path: polygon(0% 100%, 0% 0%, 100% 21%, 71% 100%);
}
.index_products_content {
	position: relative;
	width: calc(50% + 175px);
}
.index_products_pict_left .index_products_content {
	margin-left: auto;
}
.index_products_pict_right .index_products_inner {
	position: relative;
	max-width: 795px;
	margin-left: auto;
	padding: 81px 0 77px 0;
}
.index_products_pict_left .index_products_inner {
	position: relative;
	max-width: 826px;
    padding: 81px 10px 77px 223px;
}
.index_products_num {
	position: absolute;
	font-family: 'Oswald', sans-serif;
	font-size: 6.4rem;
	color: #990000;
	z-index: 1;
    right: 44px;
    top: -21px;
}
.index_products_pict_right .index_products_num {
	right: 203px;
}
.index_products_title {
	font-size: 2.4rem;
}
.index_products_text {
	max-width: 595px;
	margin-top: 8px;
}
/* //index_products */

/* index_news */
#index_news h2 {
	color: #fff;
}
.index_news_bg {
	position: relative;
	background: url(../images/top/index_news_bg.jpg) no-repeat center center / cover;
}
.index_news_bg::before,
.index_news_bg::after {
	position: absolute;
	content: "";
	background: #034899;
	z-index: -1;
}
.index_news_bg::before {
	width: 48%;
	right: 0;
	top: -100px;
	bottom: 0;
    clip-path: polygon(0% 100%, 34% 0%, 100% 0%, 100% 100%);
}
.index_news_bg::after {
	width: 51%;
	left: 0;
	top: 0;
	bottom: -100px;
    clip-path: polygon(0% 100%, 0% 0%, 100% 17%, 74% 100%);
}
.index_news_wrapper {
	width: 1250px;
	max-width: 100%;
	margin: auto;
	padding: 99px 0 98px;
    margin-top: 100px;
}
.index_news_btn {
	margin-top: 34px;
}
.index_news_group {
	max-width: 1010px;
	flex-wrap: wrap;
}
.index_news_card {
	width: 490px;
	max-width: 100%;
	color: #fff;
	padding: 20px 0;
	border-bottom: 1px solid #fff;
}
.index_news_card:nth-of-type(-n+2) {
	border-top: 1px solid #fff;
}
.index_news_card_thumbnail {
	width: 100px;
}
.index_news_card_thumbnail img {
	height: 100px;
	object-fit: cover;
}
.index_news_card_detail {
	font-size: 1.4rem;
    width: 371px;
    padding-right: 27px;
}
.index_news_card_detail_text {
}
@media screen and (min-width: 641px) {
	.index_news_card:hover {
		background: rgba(255, 255, 255, .5);
	}
}
/* //index_news */

/* index_menu */
.index_menu_group {
	margin-top: 100px;
}
.index_menu_link {
	display: block;
	width: 25%;
	color: #fff;
	padding: 140px 0 39px;
	position: relative;
	overflow: hidden;
}
.index_menu_link::before {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	transition: all .3s ease-out;
}
.index_menu_link_about::before {
	background: url(../images/top/index_menu_about.jpg) no-repeat center center / cover;
}
.index_menu_link_product::before {
	background: url(../images/top/index_menu_product.jpg) no-repeat center center / cover;
}
.index_menu_link_company::before {
	background: url(../images/top/index_menu_company.jpg) no-repeat center center / cover;
}
.index_menu_link_recruit::before {
	background: url(../images/top/index_menu_recruit.jpg) no-repeat center center / cover;
}
.index_menu_link h3 {
	font-size: 3.6rem;
	line-height: 1.44em;
	font-weight: 500;
	text-shadow: 0 2px 2px rgba(0, 0, 0, .4);
	position: relative;
}
.index_menu_link .h2_en {
	color: #fff;
	margin-top: 6px;
	position: relative;
}
.index_menu_link .btn_unit {
	width: 188px;
	margin-top: 158px;
	margin-left: auto;
}
.index_menu_link_about .btn_unit {
	width: 230px;
}

@media screen and (min-width: 641px) {
	.index_menu_link:hover:before {
		opacity: .8;
		transform: scale(1.1);
	}
	.index_menu_link:hover .btn_unit_arrow::before {
		transition: 0.5s;
		transform: translate(-50%,-50%) scale(1.05);
	}
	.index_menu_link:hover .off_arrow::before {
		left: 10px;
	}
}
/* //index_menu */

/* index_locations */
.index_locations_wrapper {
	width: 1250px;
	max-width: 100%;
	margin: auto;
	padding: 100px 0;
}
.index_locations_group {
	margin-top: 144px;
}
.index_locations_card {
	width: 400px;
	max-width: 100%;
	padding: 0 20px 10px;
}
.index_locations_card_thumbnail {
	max-width: 360px;
	margin: -93px auto 0;
	border-top: 10px solid #0256A4;
}
.index_locations_card_detail h3 {
	font-size: 2rem;
	margin-top: 20px;
}
.index_locations_card_detail h3 a {
	color: #000;
}
.index_locations_card_detail h3 a:hover {
	color: #034899;
}
.index_locations_card_detail_address {
	font-size: 1.4rem;
	line-height: 1.57em;
	margin-top: 6px;
}
.index_locations_card_detail_address a {
	color: #000;
}
.index_locations_card_map_title {
	font-size: 1.2rem;
}
.index_locations_card_map {
	margin-top: 17px;
    padding-top: 13px;
	border-top: 1px solid #9A9A9A;
}
.index_locations_card_map iframe {
    max-height: 150px;
}
/* //index_locations */

/* sub
------------------------------ */
.main_title {
	position: relative;
	height: 300px;
	background: rgba(5,76,160,.19);
}
.main_title::before {
	position: absolute;
	content: "";
	width: 40%;
	left: 0;
	top: 0;
	bottom: -75px;
	background: url(../images/common/main_title_bg.png) no-repeat right center / cover;
}
.sub_h1 {
	position: absolute;
	left: 41.3%;
	top: 113px;
}
.main_ja {
	font-size: 4rem;
	line-height: 1.1em;
	letter-spacing: 0.13em;
	font-weight: 500;
	font-family: 'Noto Serif JP', serif;
	max-width: 750px;
}
.main_en {
	text-transform: capitalize;
	letter-spacing: 0.05em;
	font-family: 'Noto Serif JP', serif;
	color: #990000;
	margin-top: 11px;
}
.sub_section h2 {
	font-size: 3.6rem;
	line-height: 1.4em;
}
.sub_section h2.border {
	font-weight: 700;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.4em;
	border-bottom: 1px solid #D9D9D9;
	border-image: linear-gradient(to right, #034899 0 70px, #D9D9D9 70px 100%);
	border-image-slice: 1;
	padding-bottom: 19px;
}
table {
	width: 100%;
	word-break:break-word
}
.sub_section {
	margin-top: 100px;
}
.pdf_link {
	display: block;
	position: relative;
	font-size: 1.4rem;
	font-weight: 500;
	color: #fff;
	background: #034899;
	border: 1px solid #034899;
	width: 308px;
	max-width: 100%;
	box-sizing: border-box;
	padding: 10px 0 10px 70px;
}
.pdf_link:hover {
	color: #034899;
	background: #fff;
}
.pdf_link::before {
	position: absolute;
	content: "";
	width: 31px;
	height: 21px;
    left: 28px;
    top: 12px;
	background: url(../images/common/icon_pdfW.svg) no-repeat center center / contain;
}
.pdf_link:hover::before {
	background: url(../images/common/icon_pdfB.svg) no-repeat center center / contain;
}
.pdf_link::after {
	position: absolute;
	content: "";
    width: 25px;
    height: 7px;
    right: 10px;
    top: 24px;
	background: url(../images/common/arrow_white.svg) no-repeat center center / contain;
}
.pdf_link:hover:after {
	background: url(../images/common/arrow_blue.svg) no-repeat center center / contain;
}

/* about
------------------------------ */
#about .main_title::before {
	background: url(../images/common/main_title_bg_about.png) no-repeat right center / cover;
}
#about_development.sub_section {
	margin-top: 80px;
}
#about_support.sub_section {
	margin-top: 150px;
}
#about_suggestion.sub_section {
	margin-top: 150px;
}
.about_solution_title {
	font-size: 3.6rem;
	text-align: center;
}
.about_solution_text {
	text-align: center;
	line-height: 1.625;
	margin-top: 30px;
}
.about_bg {
	position: relative;
}
.about_bg::before {
	position: absolute;
	content: "";
	width: 57.4%;
	left: 0;
	top: 0;
	background: #034899;
}
#about_development .about_bg::before {
	bottom: 367px;
	clip-path: polygon(0% 100%, 0% 0%, 100% 0%, 48.8% 100%);
}
#about_support .about_bg::before {
	bottom: 0;
	clip-path: polygon(0% 100%, 0% 0%, 100% 0%, 53.8% 100%);
}
#about_suggestion .about_bg::before {
	bottom: 411px;
    clip-path: polygon(0% 100%, 0% 0%, 100% 0%, 44.8% 100%);
}
.about_heading {
	padding-top: 53px;
}
.about_heading .about_subtitle_en {
	font-size: 2.4rem;
	line-height: 1.4167;
	color: rgba(245, 245, 245, .4);
}
.about_heading .about_subtitle_ja {
	font-size: 5.6rem;
	color: #fff;
}
.about_group {
	margin-top: 40px;
}
.about_unit {
	position: relative;
	margin-top: 90px;
}
.about_unit:first-of-type {
	margin-top: 0;
}
.about_content_wrapper {
	width: 1400px;
	max-width: 100%;
	margin: auto;
	padding: 0 10px;
}
.about_pic {
	position: absolute;
	width: 50%;
    top: -30px;
	z-index: 1;
}
.about_unit_pict_left .about_pic {
	left: 0;
}
.about_unit_pict_right .about_pic {
    right: 0;
}
.about_pic img {
	width: 100%;
    height: 400px;
    object-fit: cover;
}
.about_content {
	width: 62.54%;
	min-height: 417px;
	background: #F5F5F5;
	padding: 66px 60px 60px 60px;
}
.about_content.about_content_large {
	padding: 66px 60px 69px 60px;
}
.about_content_inner {
	width: 76.72%;
}
.about_content_inner.about_content_inner_wide {
	width: 79.6%;
}
.about_unit_pict_left .about_content_inner {
	margin-left: auto;
}
.about_unit_pict_left .about_content {
	margin-left: auto;
}
.about_content_title {
	font-size: 3.4rem;
	line-height: 1.2;
	border-bottom: 1px solid #000;
	padding-bottom: 12px;
}
.about_content_text {
	font-size: 2.2rem;
	line-height: 1.8182;
	letter-spacing: 0.037em;
	margin-top: 20px;
}
.about_content_text_foot {
	margin-top: 10px;
}
.about_content_text .red {
	font-weight: 700;
}
.about_btn {
	justify-content: center;
	margin-top: 60px;
}
#about footer {
	margin-top: 230px;
}

/* products
------------------------------ */
/* products共通 */
.products_content {
	margin-top: 50px;
}
.products_content_pic {
	width: 551px;
	max-width: 100%;
	overflow: hidden;
	position: relative;
	border: 1px solid #D9D9D9;
}
.products_content_pic_title {
	font-size: 2.4rem;
	font-weight: 700;
	margin-bottom: 20px;
}
.products_content_detail {
	width: 644px;
	margin-top: -5px;
}
.products_content_detail_title {
	font-size: 2.4rem;
	font-weight: 700;
	margin-bottom: 30px;
}
.products_content_detail_text {
	margin-top: 28px;
    line-height: 1.75em;
}
.products_content_detail_btn .btn_unit {
	margin-top: 70px;
	margin-left: auto;
}
.products_link {
	display: block;
	width: 380px;
	max-width: 100%;
	margin-top: 49px;
}
.products_link_img {
	width: 380px;
	max-width: 100%;
	overflow: hidden;
	position: relative;
	border: 1px solid #D9D9D9;
}
.products_link h3 {
	position: relative;
	font-size: 2rem;
	margin-top: 13px;
}
.products_link h3::before {
	position: absolute;
	content: "";
	width: 25px;
	height: 25px;
	right: 0;
	top: 0;
	background: #000;
	border-radius: 50%;
}
.products_link h3::after {
	position: absolute;
	content: "";
	width: 15px;
	height: 5px;
    right: 4px;
    top: 9px;
	background: url(../images/common/arrow_white_s.svg) no-repeat center center / contain;
}

/* // products共通 */
#products_message h2 {
	letter-spacing: 0.05em;
}
.products_message_text {
	margin-top: 26px;
}
.products_head_text {
	margin-top: 50px;
}
#products footer {
	margin-top: 230px;
}
@media screen and (min-width: 641px) {
	#products .products_content_pic:hover::before {
		position: absolute;
		content: "";
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background: rgba(255, 255, 255, .5);
		z-index: 1;
	}
	#products .products_content_pic:hover img {
		transform:scale(1.05);
		transition: all .3s ease-out;
	}
	.products_link:hover .products_link_img::before {
		position: absolute;
		content: "";
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background: rgba(255, 255, 255, .5);
		z-index: 1;
	}
	.products_link:hover .products_link_img img {
		transform:scale(1.1);
		transition: all .3s ease-out;
	}
}

/* products single
------------------------------ */
/* products single共通 */
.products_content_detail_pdf .pdf_link {
	margin-top: 50px;
	margin-left: auto;
}
.lineup_item {
	width: 380px;
	max-width: 100%;
	margin-top: 75px;
	margin-right: 52px;
}
.lineup_item:nth-child(-n + 3) {
	margin-top: 50px;
}
.lineup_item:nth-child(3n) {
	margin-right: 0;
}
.lineup_item_pic img {
	height: 253px;
    object-fit: cover;
	border: 1px solid #D9D9D9;
}
.lineup_item_title {
	font-size: 2rem;
	font-weight: 700;
	margin-top: 16px;
}
.lineup_item .pdf_link {
	margin: 22px auto 0;
}
.feature_group {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 10px;
}
.feature_item {
	display: flex;
	width: 600px;
	max-width: 100%;
	margin-top: 50px;
}
.feature_item_num {
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
	width: 100px;
	border-top: 10px solid #990000;
	padding-top: 12px;
}
.feature_item_num_numeral {
	display: block;
	font-size: 6.4rem;
	font-weight: 400;
	margin-top: 8px;
}
.feature_item_text {
	width: calc(100% - 100px);
	line-height: 1.4735em;
	min-height: 140px;
	padding: 40px 37px 44px 8px;
}
.products_contact_head {
	color: #fff;
	background: #034899;
	text-align: center;
	padding: 48px 10px 144px;
	margin-bottom: -98px;
}
.products_contact_title {
	font-size: 3rem;
	font-family: 'Noto Sans JP', sans-serif;
}
.products_contact_text {
	margin-top: 19px;
}
.products_contact_foot {
	padding: 0 45px 0 54px;
}
.products_contact_info {
	padding: 25px 21px 25px 27px;
}
.products_contact_info_heading {
	width: 316px;
	max-width: 100%;
	margin-right: 26px;
}
.products_contact_info_heading_logo {
    width: 236px;
    height: 38px;
    position: relative;
    text-indent: -9999px;
    background: url(../images/common/logo.svg) no-repeat center center / contain;
}
.products_contact_info_heading_address {
	border-top: 1px solid #9A9A9A;
	padding-top: 20px;
	margin-top: 15px;
}
.products_contact_tel_unit:nth-of-type(n + 2) {
	margin-top: 5px;
}
.products_contact_tel_unit {
	display: flex;
}
.products_contact_tel_unit_title {
	color: #fff;
	background: #034899;
	font-weight: 700;
    min-width: 116px;
    padding: 5px 5px 5px 17px;
	margin-right: 5px;
}
.products_contact_tel_unit_link {
	display: block;
	font-size: 2.4rem;
	font-weight: 500;
	color: #000;
	background: #fff;
	padding: 5px 41px 5px 58px;
}
.products_contact_tel_unit_link span {
	position: relative;
}
.products_contact_tel_unit_link span::before {
	position: absolute;
	content: "";
	width: 18px;
	height: 18px;
	left: -25px;
	top: 10px;
	background: url(../images/common/icon_telB.svg) no-repeat center center / contain;
}
.products_contact_mail {
	display: block;
	font-size: 2rem;
	color: #034899;
	border: 1px solid #F5F5F8;
	width: 350px;
	max-width: 100%;
	text-align: center;
	padding-top: 85px;
}
.products_contact_mail span {
	position: relative;
}
.products_contact_mail span::before {
	position: absolute;
	content: "";
	width: 39px;
	height: 26px;
	top: -43px;
	left: 50%;
	transform: translateX(-50%);
	background: url(../images/common/icon_mailB.svg) no-repeat center center / contain;
}
.products_contact_mail span::after {
	position: absolute;
	content: "";
	width: 34px;
	height: 8px;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	background: url(../images/common/arrow_blue.svg) no-repeat center center / contain;
}
.products footer {
    margin-top: 230px;
}
@media screen and (min-width: 641px) {
	.products_contact_mail:hover {
		background: #fff;
		border: 1px solid #034899;
	}
	.products_contact_mail:hover span::after {
		left: 53%;
		transition: .3s;
	}
}

/* // products single共通 */
.products_single_foot_text {
	font-size: 2.4rem;
	font-weight: 700;
	margin-top: 70px;
}
.products_single_foot_pic {
	margin-top: 35px;
}
#skn .products_single_lineup,
#skd .products_single_lineup,
#sks .products_single_lineup,
#skg_l .products_single_lineup,
#skv .products_single_lineup {
	display: none;
}

/* ツールス */
.tools_group {
	justify-content: space-around;
}
.tools_lineup_item {
	width: 456px;
	max-width: 100%;
	margin-top: 75px;
}
.tools_lineup_item:nth-child(-n + 2) {
	margin-top: 50px;
}
.tools_lineup_item_pic img {
	height: 303px;
    object-fit: cover;
	border: 1px solid #D9D9D9;
}

/* 過去製品 */
.past_lineup_item {
	width: 380px;
    max-width: 100%;
    margin-top: 20px;
    margin-right: 52px;
}
.past_lineup_item:nth-child(-n + 3) {
	margin-top: 50px;
}
.past_lineup_item:nth-child(3n) {
	margin-right: 0;
}
.past_lineup_link {
	position: relative;
	font-size: 2rem;
	font-weight: 700;
	color: #034899;
}
.past_lineup_link span {
	position: relative;
}
.past_lineup_link span::after {
	position: absolute;
	content: "";
	width: 17px;
	height: 22px;
	right: -30px;
	top: 50%;
	transform: translateY(-50%);
	background: url(../images/common/icon_pdf.svg) no-repeat center center / contain;
}
.past_buttons {
	margin-top: 100px;
}
.past_button {
	display: block;
	position: relative;
	font-size: 1.4rem;
	font-weight: 500;
	color: #fff;
	background: #034899;
	border: 1px solid #034899;
	width: 380px;
	max-width: 100%;
	box-sizing: border-box;
	padding: 10px;
	margin-top: 20px;
	margin-right: 52px;
}
.past_button:nth-child(-n + 3) {
	margin-top: 50px;
}
.past_button:nth-child(3n) {
	margin-right: 0;
}
.past_button:hover {
	color: #034899;
	background: #fff;
}
.past_button::after {
	position: absolute;
	content: "";
    width: 25px;
    height: 7px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
	background: url(../images/common/arrow_white.svg) no-repeat center center / contain;
}
.past_button:hover:after {
	background: url(../images/common/arrow_blue.svg) no-repeat center center / contain;
}
.past_lineup_item:nth-child(-n + 3) {
    margin-top: 20px;
}

/* products single rotator
------------------------------ */
#rotator .main_title::before {
	background: url(../images/common/main_title_bg_rotator.png) no-repeat right center / cover;
}

/* products single auger
------------------------------ */
#single_auger .main_title::before, #double_auger .main_title::before, #multiaxia_auger .main_title::before,
#inverter_auger .main_title::before, #hydraulic_auger .main_title::before, #casing_auger .main_title::before  {
	background: url(../images/common/main_title_bg_single_auger.png) no-repeat right center / cover;
}

/* products single hammer_grab
------------------------------ */
#skn .main_title::before, #skd .main_title::before, #sks .main_title::before,
#skg_l .main_title::before, #skv .main_title::before, #muffled .main_title::before {
	background: url(../images/common/main_title_bg_hammer_grab.png) no-repeat right center / cover;
}

/* products single august_screw
------------------------------ */
#august_screw .main_title::before {
	background: url(../images/common/main_title_bg_august_screw.png) no-repeat right center / cover;
}

/* products single augerhead
------------------------------ */
#augerhead .main_title::before {
	background: url(../images/common/main_title_bg_augerhead.png) no-repeat right center / cover;
}

/* products single tools_and_supplies
------------------------------ */
#tools_and_supplies .main_title::before {
	background: url(../images/common/main_title_bg_tools_and_supplies.png) no-repeat right center / cover;
}

/* products single casing_tube
------------------------------ */
#casing_tube .main_title::before {
	background: url(../images/common/main_title_bg_casing_tube.png) no-repeat right center / cover;
}

/* products single past_products
------------------------------ */
#past_products .main_title::before {
	background: url(../images/common/main_title_bg_past_products.png) no-repeat right center / cover;
}

/* company
------------------------------ */
#company .main_title::before, #outline .main_title::before, #takino .main_title::before,
#chiba .main_title::before, #kyushu .main_title::before, #effort .main_title::before {
	background: url(../images/common/main_title_bg_company.png) no-repeat right center / cover;
}
.company_greeting_content {
	margin-top: 53px;
}
.company_greeting_content_detail {
	width: 838px;
}
.company_greeting_content_detail_texts {
	line-height: 1.4375em;
}
.company_greeting_content_detail_text:nth-of-type(2) {
	margin-top: 23px;
}
.company_greeting_content_detail_text:nth-of-type(3) {
	margin-top: 23px;
}
.company_greeting_content_detail_text:nth-of-type(4) {
	margin-top: 33px;
}
.company_greeting__btn {
	margin-top: 60px;
}
.company_greeting__btn .btn_unit {
	margin-right: 70px;
}
.company_greeting__btn .btn_unit:last-of-type {
	margin-right: 0;
}
.company_greeting_content_pic {
	width: 340px;
	max-width: 100%;
}
.company_greeting_content_pic figcaption {
	font-size: 1.8rem;
	font-family: 'Noto Serif JP', serif;
	text-align: center;
	margin-top: 20px;
}
.company_greeting_content_pic figcaption span {
	font-size: 3.4rem;
}

.company_idea_lists {
	margin-top: 50px;
}
.company_idea_list + li {
	margin-top: 30px;
}
.company_idea_list_title_wrapper {
	display: flex;
	gap: 0 15px;
}
.company_idea_list_title_ja {
	position: relative;
	font-size: 2.4rem;
	font-weight: 700;
	padding-right: 36px;
}
.company_idea_list_title_ja::after {
	position: absolute;
	content: "";
	width: 24px;
	height: 1px;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background-color: #000;
}
.company_idea_list_title_en {
	color: #034899;
	font-size: 2.6rem;
	font-weight: 700;
}
.company_idea_img {
	display: block;
	width: 100%;
	max-width: 850px;
	margin: 25px auto 0;
}


#company_business_line h3 {
	font-size: 2.4rem;
	margin-top: 51px;
}
#company_business_line h3:nth-of-type(2) {
	margin-top: 102px;
}
.company_business_line_group {
	margin-top: 10px;
}
.company_business_line_link {
	display: block;
	position: relative;
	width: 615px;
	max-width: 100%;
	overflow: hidden;
	padding: 114px 0;
	margin-top: 20px;
}
@media screen and (min-width: 641px) {
	.company_business_line_link:hover:before {
		opacity: .8;
		transform: scale(1.1);
	}
	.company_business_line_link:hover .btn_unit_arrow::before {
		transition: 0.5s;
		transform: translate(-50%,-50%) scale(1.05);
	}
	.company_business_line_link:hover .off_arrow::before {
		left: 10px;
	}
}
.company_business_line_link::before {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    transition: all .3s ease-out;
}
.bg_rotator::before {
	background: url(../images/company/company_business_line_rotator.jpg) no-repeat center center / cover;
}
.bg_earth_auger::before {
	background: url(../images/company/company_business_line_earth_auger.jpg) no-repeat center center / cover;
}
.bg_hammer_grab::before {
	background: url(../images/company/company_business_line_hammer_grab.jpg) no-repeat center center / cover;
}
.bg_casing_tube::before {
	background: url(../images/company/company_business_line_casing_tube.jpg) no-repeat center center / cover;
}
.bg_other_tools::before {
	background: url(../images/company/company_business_line_other_tools.jpg) no-repeat center center / cover;
}
.bg_work_ship::before {
	background: url(../images/company/company_business_line_work_ship.jpg) no-repeat center center / cover;
}
.company_business_line_link::after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
	background: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,0.8));
}
.company_business_line_link .btn_unit {
	position: relative;
    z-index: 1;
	justify-content: flex-end;
	margin-right: 30px;
}
.company_business_line_link .btn_unit .btn_unit_title {
	font-size: 2rem;
}
.company_business_line_service_group {
	margin-top: 20px;
}
.company_business_line_service_item {
	width: 400px;
	max-width: 100%;
	background: #F5F5F5;
	border-top: 10px solid #990000;
}
.company_business_line_service_item h4 {
	font-size: 2.2rem;
	color: #990000;
	text-align: center;
    padding: 30px 0 30px;
}
.company_business_line_service_item_pic {
	width: 400px;
	max-width: 100%;
}
.company_locations_group {
	margin-top: 32px;
}
.company_locations_item {
	border-bottom: 1px solid #000;
	padding: 30px 30px;
}
.company_locations_item_pic img {
	width: 360px;
	max-width: 100%;
	margin-right: 50px;
}
.company_locations_item_unit {
	width: 520px;
	max-width: 100%;
}
.company_locations_item_unit h4 {
	font-size: 2rem;
	color: #034899;
	width: 236px;
	max-width: 100%;
}
.company_locations_item_info {
	line-height: 1.4375em;
}
.company_locations_item_address {
	margin-top: 2px;
}
.company_locations_item_tel {
	margin-top: 22px;
}
.company_locations_item_tel a {
	color: #000;
}
.company_locations_item_btn {
	margin-left: auto;
}
#company footer {
	margin-top: 230px;
}

/* outline
------------------------------ */
#outline_about table {
	margin-top: 51px;
}
#outline_about table tr {
	border-bottom: 1px solid #034899;
}
#outline_about table tr:first-of-type {
	border-top: 1px solid #034899;
}
#outline_about table tr th {
	width: 200px;
	font-weight: 400;
	background: #D4E3F4;
	text-align-last: left;
	padding: 21px 10px 18px 30px;
}
#outline_about table tr td {
    padding: 20px 10px 18px 30px;
}
#outline_about table tr:last-of-type td {
	line-height: 1.43em;
	padding: 20px 10px 25px 30px;
}
.outline_history_flex {
	margin-top: 50px;
}
#outline_history table {
	width: 720px;
	max-width: 100%;
}
#outline_history table tr th {
	width: 200px;
	font-weight: 400;
	background: #D4E3F4;
	text-align-last: left;
    padding: 9px 10px 8px 30px;
    border-bottom: 4px solid #fff;
}
#outline_history table tr td {
    padding: 10px 10px 9px 30px;
}
#outline_history table tr td.two_lines {
	padding: 12px 10px 12px 30px;
}
.outline_history_pics {
	width: 360px;
	max-width: 100%;
}
.outline_history_pic {
	margin-top: 20px;
}
.outline_history_pic:first-of-type {
	margin-top: 0;
}
.outline_qualifications_lists {
	margin-top: 44px;
}
#outline footer {
	margin-top: 224px;
}

/* takino
------------------------------ */
/* 各工場共通 */
.location_flex {
	margin-top: 50px;
}
.location_pic {
	width: 551px;
	max-width: 100%;
}
.location_content {
	width: 649px;
	max-width: 100%;
}
.location_content_title {
	font-size: 2rem;
}
.location_content_info {
	line-height: 1.5625em;
    margin-top: 11px;
}
.location_content_info a {
	color: #000;
}
.location_content_introduction {
	line-height: 1.5625em;
    background: #f5f5f5;
    padding: 19px 20px 17px;
    margin-top: 30px;
}
.access_flex {
	margin-top: 50px;
}
.access_map {
	width: 551px;
	max-width: 100%;
}
.access_map iframe {
	max-width: 100%;
}
.access_content {
	width: 649px;
	max-width: 100%;
}
.access_title {
	font-size: 2rem;
}
.access_info {
	line-height: 1.625em;
	margin-top: 12px;
}
.access_description {
	line-height: 1.625em;
	border-top: 1px solid #000;
	padding-top: 25px;
	margin-top: 14px;
}
#takino footer, #chiba footer, #kyushu footer {
	margin-top: 220px;
}
.equipment_container {
	margin-top: 60px;
}
.equipment_content {
	border-top: 1px solid #000;
	padding: 49px 0;
}
.equipment_content:last-of-type {
	border-bottom: 1px solid #000;
}
.equipment_detail {
	width: 626px;
	max-width: 100%;
	padding: 0 26px 0 20px;
}
.equipment_detail_title {
	font-size: 3.6rem;
}
.equipment_detail_text {
    line-height: 1.4735em;
	margin-top: 33px;
}
.equipment_pics {
	display: flex;
	flex-wrap: wrap;
	width: 604px;
	max-width: 100%;
}
.equipment_pic {
	width: 294px;
	max-width: 100%;
}
.equipment_pic:nth-of-type(n+3) {
	margin-top: 20px;
}
.equipment_pic:nth-of-type(odd) {
	margin-right: 16px;
}
.equipment_pic_title {
	font-size: 1.8rem;
	font-weight: 700;
}
.facilities_flex {
	justify-content: space-around;
	margin-top: 50px;
}
.facilities_pic {
	width: 441px;
	max-width: 100%;
}
.facilities_pic:nth-of-type(n+3) {
    margin-top: 30px;
}
.facilities_pic_title {
    font-size: 1.8rem;
    font-weight: 700;
	margin-top: 5px;
}
.appearance_flex {
	flex-wrap: wrap;
	margin-top: 50px;
}
.appearance_pic {
	width: 290px;
	max-width: 100%;
}
.appearance_pic:nth-of-type(n + 5) {
	margin-top: 30px;
}
.appearance_pic_title {
	font-size: 1.8rem;
	font-weight: 700;
}

/* //各工場共通 */
.takino_products h3 {
	font-size: 2.4rem;
	margin-top: 50px;
}
.takino_products_content {
	width: 625px;
	max-width: 100%;
	margin-top: 16px;
}
.takino_products table {
	margin-top: 3px;
}
.takino_products table tr th {
	font-weight: 400;
	background: #D4E3F4;
	border-top: 1px solid #034899;
	border-bottom: 1px solid #034899;
	border-left: 1px solid #034899;
	padding: 10px 0;
}
.takino_products table tr th:first-of-type {
	width: 144px;
	border-left: none;
}
.takino_products table tr th:nth-of-type(2) {
	width: 133px;;
}
.takino_products table tr th:nth-of-type(3) {
	width: 133px;
}
.takino_products table tr th:nth-of-type(4) {
	width: 212px;
}
.takino_products table tr td {
	border-right: 1px solid #034899;
	border-bottom: 1px solid #034899;
	text-align: center;
	padding: 4.5px 20px;
}
.takino_products table tr td.align_left {
    text-align: left;
}
.takino_products table tr td:last-of-type {
	border-right: none;
}
.takino_products_pic {
	width: 551px;
	max-width: 100%;
	margin-top: 53px;
}

/* effort
------------------------------ */
.effort_plan_subtitle {
	font-size: 2rem;
	font-weight: 700;
	margin-top: 48px;
}
.effort_plan_box {
	margin-top: 25px;
}
.effort_plan_box_title {
	font-weight: 400;
}
.effort_plan_box:nth-of-type(2) {
	margin-top: 55px;
}
#effort_plan .effort_plan_table {
	margin-top: 15px;
}
#effort_plan .effort_plan_table tr {
	border-bottom: 1px solid #034899;
}
#effort_plan .effort_plan_table tr:first-child {
	border-top: 1px solid #034899;
}
#effort_plan .effort_plan_table tr th {
	font-weight: 400;
	line-height: 1.5625;
	width: 200px;
	background: #D4E3F4;
	text-align-last: left;
    padding: 24px 10px 23px 26px;
}
#effort_plan .effort_plan_table tr td {
	line-height: 1.5625;
    padding: 24px 10px 23px 31px;
}

/* モーダル */
.modal_wrapper {
    width: 1250px;
	max-width: 100%;
    margin: auto;
}
.modal_window {
	display: none;
	width: 90%;
	height: 90%;
	overflow: scroll;
	padding: 60px;
	background: #fff;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 100;
}
#modal_overlay {
	display: none;
	width: 100%;
	height: 100%;
	background: #000;
	z-index: 99;
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0.7;
}
.modal_open a {
	position: relative;
	display: block;
	width: 100%;
    padding: 12px 29px;
	color: #000;
	background: #F5F5F5;
	border: 1px solid #034899;
	cursor: pointer;
	margin-top: 30px;
}
.modal_open a:hover {
	color: #034899;
	background: #fff;
}
.modal_open a::before,
.modal_open a::after{
	position: absolute;
	content: "";
	display: block;
	background: #034899;
	transition: .35s;
}
.modal_open a::before{
	width: 2px;
	height: 20px;
	top: 20px;
	right: 29px;
}
.modal_open a::after{
	width: 20px;
	height: 2px;
	top: 29px;
	right: 20px;
}
.modal_close a {
	display: block;
	position: relative;
	font-size: 1.4rem;
	font-weight: 500;
	color: #fff;
	background: #034899;
	border: 1px solid #034899;
	width: 280px;
	max-width: 100%;
	box-sizing: border-box;
	text-align: center;
	padding: 10px;
	margin: 50px auto 0;
	cursor: pointer;
}
.modal_close a:hover {
	color: #034899;
	background: #fff;
}
.modal_close a::after {
	position: absolute;
	content: "";
    width: 25px;
    height: 7px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
	background: url(../images/common/arrow_white.svg) no-repeat center center / contain;
}
.modal_close a:hover:after {
	background: url(../images/common/arrow_blue.svg) no-repeat center center / contain;
}
.effort_plan_table_title {
	font-size: 2rem;
	margin-top: 50px;
}
.effort_plan_table_title:first-of-type {
	margin-top: 0;
}
.effort_plan_table_title span {
	font-size: 1.6rem;
}
/* モーダル内テーブル */
.modal_wrapper table {
	margin-top: 15px;
}
.modal_wrapper table tr {
	border-bottom: 1px solid #034899;
}
.modal_wrapper table tr:first-child {
    border-top: 1px solid #034899;
}
.modal_wrapper table tr th {
	background: #D4E3F4;
	border-right: 1px solid #034899;
	padding: 10px 15px;
}
.modal_wrapper table tr th:last-child {
	border-right: none;
}
.modal_wrapper table tr td {
	border-right: 1px solid #034899;
	padding: 10px 15px;
}
.modal_wrapper table tr td:last-child {
	border-right: none;
}
.modal_wrapper .effort_plan_laborer tr:first-of-type th:first-of-type {
	width: 150px;
}
.modal_wrapper .effort_plan_laborer tr:nth-of-type(2) th {
	width: 183px;
}
.modal_wrapper .effort_plan_overtime tr:first-of-type th:first-of-type {
	width: 200px;
}
.modal_wrapper .effort_plan_overtime tr:first-of-type th {
	width: 263px;
}

.modal_wrapper .effort_plan_overtime tr:nth-of-type(n+2) th {
	font-weight: 400;
	text-align: left;
	background: transparent;
}



.modal_wrapper .effort_plan_management tr th {
	width: 416px;
}






/* //モーダル内テーブル */
/* //モーダル */
.effort_plan_pdf {
	position: relative;
	display: block;
	color: #000000;
	border: 1px solid #034899;
	background: #F5F5F5;
	padding: 12.5px 20px 12.5px 30px;
	cursor: pointer;
	margin-top: 30px;
}
.effort_plan_pdf:hover {
	color: #034899;
	background: #fff;
}
.effort_plan_pdf::before,
.effort_plan_pdf::after{
	position: absolute;
	content: "";
	display: block;
	background: #034899;
	transition: .35s;
}
.effort_plan_pdf::before{
	width: 2px;
	height: 20px;
	top: 20px;
	right: 29px;
}
.effort_plan_pdf::after{
	width: 20px;
	height: 2px;
	top: 29px;
	right: 20px;
}
.square_bout {
	margin-top: 26px;
}
.effort_scholarship_flex {
	margin-top: 50px;
}
.effort_scholarship_pic {
	width: 551px;
	max-width: 100%;
}
.effort_scholarship_content {
	width: 649px;
	max-width: 100%;
}
.effort_scholarship_content_title {
	font-size: 2rem;
}
.effort_scholarship_content_text {
	line-height: 1.4375em;
    margin-top: 17px;
}
.effort_scholarship_content_text:nth-of-type(2) {
	margin-top: 10px;
}
.effort_scholarship_check {
	border: 1px solid #034899;
	padding: 20px 30px 27px;
	margin-top: 20px;
}
.effort_scholarship_check_title {
	font-size: 1.8rem;
	color: #034899;
}
.effort_scholarship_check_lists {
	margin-top: 6px;
}
.effort_scholarship_check_list {
	position: relative;
	display: block;
	line-height: 1.6875;
	padding-left: 30px;
}
.effort_scholarship_check_list::before{
	position: absolute;
	content: "";
	width: 13px;
	height: 13px;
	left:2px;
	top: 8px;
	background: url(../images/effort/icon_effort_scholarship_check.svg) no-repeat center center / contain;
}
.effort_sdgs_subtitle {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.7;
	text-align: center;
	margin-top: 48px;
}
.effort_sdgs_flex {
	margin-top: 24px;
}
.effort_sdgs_item_logo {
	display: grid;
	justify-content: center;
	align-items: center;
	width: 615px;
	max-width: 100%;
	margin-top: 20px;
}
.effort_sdgs_item_logo img {
	width: 360px;
	margin-bottom: 3px;
}
.effort_sdgs_item {
	width: 615px;
	max-width: 100%;
	min-height: 308px;
	background: #F5F5F5;
	padding: 23px 35px 38px 30px;
	margin-top: 20px;
}
.effort_sdgs_item_title {
	font-size: 2rem;
}
.effort_sdgs_item_flex {
	margin-top: 23px;
}
.effort_sdgs_item_pic {
	width: 180px;
	margin-right: 30px;
}
.effort_sdgs_item_content {
	width: 340px;
	max-width: 100%;
	line-height: 1.4375;
}
.effort_sdgs_item_subtitle:nth-of-type(n + 2) {
	margin-top: 19px;
}
.effort_sdgs_item_content .point {
	margin-top: 5px;
}
#effort footer {
	margin-top: 230px;
}

/* news
------------------------------ */
#news .main_title::before {
	background: url(../images/common/main_title_bg_news.png) no-repeat right center / cover;
}
.news_group {
	width: 880px;
	max-width: 100%;
}
.news_item {
	border-top: 1px solid #000;
    padding: 30px 0 17px;
}
.news_item:last-of-type {
	border-bottom: 1px solid #000;
}
.news_pic {
	width: 250px;
	max-width: 100%;
}
.news_pic img {
    height: 182px;
	object-fit: cover;
}
.news_content {
	width: 590px;
	max-width: 100%;
	margin-top: -7px;
}
.news_date {
	font-weight: 700;
}
.news_title {
	font-size: 2.2rem;
	color: #034899;
	line-height: 1.273em;
    margin-top: 5px;
}
.news_text {
	margin-top: 20px;
    line-height: 1.5em;
}
.news_unit_btn .btn_unit {
	margin-top: 1px;
	margin-left: auto;
}
.news_aside {
	width: 320px;
	max-width: 100%;
}
.news_aside h3 {
    font-size: 2rem;
    color: #fff;
    background: #034899;
    text-align: center;
    padding: 18px 10px 17px;
    margin-top: 33px;
}
.news_aside h3:first-of-type {
    margin-top: 0;
}
.news_side_list:nth-of-type(n + 2) {
	margin-top: 4px;
}
.news_side_lists_cat .news_side_list a {
	color: #000;
	text-align: center;
	padding: 8px 10px;
}
.news_side_lists_cat .news_side_list a:hover {
	color: #034899;
}
.news_side_lists_new .news_side_list a {
	padding: 20px;
}
.news_side_list a {
	display: block;
	font-size: 1.4rem;
	background: #D4E3F4;
	border: 1px solid #D4E3F4;
}
.news_side_list a:hover {
	background: #fff;
	border: 1px solid #034899;
}
.news_side_list_date {
	font-size: 1.2rem;
	line-height: 1.333;
	font-weight: 700;
	color: #034899;
}
.news_side_list_text {
	color: #000;
	line-height: 1.4285em;
	margin-top: 6px;
}
.news_side_list:hover .news_side_list_text {
	color: #034899;
}
#news footer {
	margin-top: 240px;
}

/* news - single
------------------------------ */
.news_article {
	width: 880px;
	max-width: 100%;
	margin-top: -3px;
}
.news_article .news_article_title {
	font-size: 2.2rem;
	color: #034899;
	font-weight: 700;
}
.news_article_init {
	align-items: center;
	margin-top: 14px;
}
.news_article_date {
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1;
	margin-right: 14px;
}
.news_article_cat {
	font-size: 1.2rem;
	line-height: 1;
	padding: 6px;
	background: #D4E3F4;
}
.news_article_content {
	line-height: 1.5em;
	border-top: 1px solid #000;
	padding-top: 40px;
	margin-top: 12px;
}
.single_btn_unit {
	align-items: center;
	margin-top: 150px;
}
.news_article_btn {
	width: 220px;
	margin: auto;
}
.single_btn .previous {
	position: relative;
	display: block;
	font-size: 1.4rem;
	font-weight: 500;
	color: #000;
	width: 133px;
	margin-top: 8px;
	padding-left: 30px;
}
.single_btn .previous:hover {
	color: #034899;
}
.single_btn .previous::before {
	position: absolute;
	content: "＜";
	display: block;
	left: 0;
	top: 0;
	transition: .3s;
}
.single_btn .previous:hover::before {
	left: -5px;
}
.single_btn .next {
	position: relative;
	display: block;
	font-size: 1.4rem;
	font-weight: 500;
	color: #000;
	width: 133px;
	margin-top: 8px;
	padding-right: 30px;
	margin-left: auto;
}
.single_btn .next:hover {
	color: #034899;
}
.single_btn .next::before {
	position: absolute;
	content: "＞";
	display: block;
	right: 0;
	top: 0;
	transition: .3s;
}
.single_btn .next:hover::before {
	right: -5px;
}

/* recruit
------------------------------ */
#recruit .main_title::before {
	background: url(../images/common/main_title_bg_recruit.png) no-repeat right center / cover;
}
.forte_content {
	align-items: flex-start;
	margin-top: 100px;
}
.forte_pic_wrapper {
	width: 50%;
}
.forte_pic {
	width: 625px;
	max-width: 100%;
	margin-left: auto;
}
.forte_detail_wrapper {
	width: 50%;
	padding: 57px 10px 62px 52px;
	margin-top: 50px;
}
.forte_detail {
	width: 573PX;
	max-width: 100%;
}
.forte_detail_title {
	font-size: 3.6rem;
}
.forte_detail_subtitle {
	font-size: 2.4rem;
	font-weight: 700;
	margin-top: 30px;
}
.forte_detail_text {
	line-height: 1.75em;
	margin-top: 10px;
}
.recruit_business_head {
	margin-top: 50px;
}
.recruit_business_content {
	border-top: 1px solid #000;
	padding: 49px 0;
}
.recruit_business_content:nth-of-type(1) {
	margin-top: 24px;
}
.recruit_business_detail {
	width: 626px;
	max-width: 100%;
	padding: 0 26px 0 20px;
}
.recruit_business_detail_title {
	font-size: 3.6rem;
}
.recruit_business_detail_text {
    line-height: 1.4735em;
	margin-top: 33px;
}
.recruit_business_detail_text .point {
	margin-top: 10px;
}
.recruit_business_detail_btn {
	margin-top: 18px;
}
.recruit_business_pic {
	width: 624px;
	max-width: 100%;
}
.recruit_voice_bg {
	position: relative;
    height: 100%;
	background: url(../images/recruit/recruit_voice_bg.jpg) no-repeat center center / cover;
    background-attachment: fixed;
	padding: 100px 0 103px;
}
.recruit_voice_head {
	line-height: 1.4325em;
	text-align: center;
    margin-top: 33px;
}
.recruit_voice_content {
	position: relative;
	margin-top: 50px;
}
.recruit_voice_pics {
	position: absolute;
	width: 240px;
	top: 0;
	left: 0;
	z-index: 1;
}
.recruit_voice_detail {
	background: #fff;
	width: calc(100% - 240px);
	padding: 45px 50px 38px 100px;
	margin-top: 60px;
	margin-left: auto;
	transform: translateX(-70px);
	transition: .3s;
}
.recruit_voice_detail_list {
	margin-top: 16px;
}
.recruit_voice_detail_list:first-child {
	margin-top: 0;
}
.recruit_voice_detail_list:last-of-type {
	max-width: 640px;
}
.recruit_voice_detail_list_title {
	position: relative;
	font-size: 2rem;
    letter-spacing: 0.03em;
	font-weight: 700;
	padding-left: 35px;
}
.recruit_voice_detail_list_title::before {
	position: absolute;
	content: "";
	width: 17px;
	height: 17px;
	left: 11px;
    top: 8px;
	background: #034899;
}
.recruit_voice_detail_list_text {
	border-top: 2px solid #034899;
	letter-spacing: 0.03em;
	padding-top: 7px;
    padding-left: 38px;
    margin-top: 5px;
}
.recruit_voice_detail_pic {
	position: absolute;
	width: 300px;
	right: -70px;
	bottom: -70px;
}
.recruit_welfare_head {
	margin-top: 46px;
}
#recruit_welfare .index_locations_group {
    margin-top: 118px;
}
#recruit_welfare .index_locations_card {
    padding: 0 20px 22px;
}
#recruit_welfare .index_locations_card_detail_address {
    font-size: 1.6rem;
    line-height: 1.4375em;
    margin-top: 12px;
}
#recruit_figure .bg_blue {
	padding: 80px 0 121px;
}
.recruit_figure_head {
	margin-top: 25px;
}
.recruit_figure_group {
	margin-top: 16px;
}
.count_content {
	position: relative;
	width: 400px;
	max-width: 100%;
	min-height: 400px;
	background: #fff;
	font-weight: 700;
	padding: 44px 0 0;
	margin-top: 25px;
}
.count_content::before {
	position: absolute;
	content: "";
	left: 50%;
	transform: translateX(-50%);
}
.count_content_establishment::before {
	width: 156px;
	height: 156px;
	bottom: 39px;
	background: url(../images/recruit/recruit_figure_establishment.svg) no-repeat center center / contain;
}
.count_content_area::before {
	width: 116px;
	height: 100px;
	bottom: 74px;
	background: url(../images/recruit/recruit_figure_area.svg) no-repeat center center / contain;
}
.count_content_overtime::before {
	width: 100px;
	height: 100px;
	bottom: 70px;
	background: url(../images/recruit/recruit_figure_overtime.svg) no-repeat center center / contain;
}
.count_content_salaried::before {
	width: 100px;
	height: 94px;
	bottom: 76px;
	background: url(../images/recruit/recruit_figure_salaried.svg) no-repeat center center / contain;
}
.count_content_workers::before {
	width: 118px;
	height: 86px;
	bottom: 73px;
	background: url(../images/recruit/recruit_figure_workers.svg) no-repeat center center / contain;
}
.count_content_holiday::before {
    width: 130px;
    height: 130px;
    bottom: 23px;
	background: url(../images/recruit/recruit_figure_holiday.svg) no-repeat center center / contain;
}
.count_content_holiday_foot {
	display: block;
	font-size: 2.2rem;
	margin-top: 10px;
}
.count_title {
	font-size: 2.4rem;
	line-height: 1.3;
}
.count_title span {
	font-size: 1.8rem;
}
.count_figure {
	font-size: 3.6rem;
	color: #034899;
	margin-top: 50px;
}
.count_content_unit {
	position: absolute;
	left: 21%;
	margin-top: 71px;
}
.count_content_proportion_figure {
	position: relative;
	color: #034899;
}
.count_content_proportion_figure:nth-of-type(2) {
	margin-top: 58px;
}
.count_content_proportion_figure:nth-of-type(1)::before {
	position: absolute;
	content: "";
	width: 60px;
	height: 47px;
    right: -39px;
    top: -1px;
	background: url(../images/recruit/recruit_figure_new_graduate.svg) no-repeat center center / contain;
}
.count_content_proportion_figure:nth-of-type(2)::before {
	position: absolute;
	content: "";
	width: 50px;
	height: 47px;
    right: -69px;
    top: 0px;
	background: url(../images/recruit/recruit_figure_in_the_middle.svg) no-repeat center center / contain;
}
.count_content_configuration .count_content_pic {
	padding: 0 14px 0 36px;
	margin-top: 28px;
}
.count_content_ratio .count_content_pic {
	padding: 0 30px;
	margin-top: 14px;
}
.count_content_proportion_figure .black {
	color: #000;
	font-size: 2.4rem;
}
.count_content_proportion_figure .blue {
	font-size: 3.6rem;
}
.count_up {
	font-size: 6.4rem;
}
.recruit_recruiting_group {
	margin-top: 20px;
}
.recruit_recruiting_card {
	width: 610px;
	max-width: 100%;
	border: 1px solid #F5F5F5;
	padding: 20px 0 20px 20px;
	margin-top: 30px;
}
.recruit_recruiting_card_pic {
	width: 250px;
	max-width: 100%;
}
.recruit_recruiting_card_detail {
	width: 320px;
	max-width: 100%;
}
.recruit_recruiting_card_title {
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
	background: #034899;
	text-align: center;
}
.recruit_recruiting_card_text {
    margin-top: 16px;
    line-height: 1.875em;
}
.recruit_recruiting_card_btn .btn_unit {
	margin-top: 1px;
	margin-right: 20px;
	margin-left: auto;
}
.recruit_recruiting_btn .btn_unit {
	margin: 57px auto 0;
}
.recruit_entry_head {
	margin-top: 47px;
}
#contact_contents {
	margin-top: 26px;
}
#mailformpro table tr th {
    position: relative;
	font-weight: 400;
    color: #fff;
    background-color: #034899;
    text-align: left;
    width: 250px;
    box-sizing: border-box;
	vertical-align: top;
	border-bottom: 4px solid #fff;
    padding: 18px 10px 18px 15px;
}
#mailformpro table tr:first-child th {
	margin-top: 0;
}
#mailformpro table .input_menu th {
    padding: 18px 10px 12px 15px;
}
#mailformpro table tr td {
	font-size: 1.4rem;
    background: #fff;
    box-sizing: border-box;
    padding: 18px 10px 12px 31px;
}
#mailformpro table .input_menu td {
    padding: 15px 10px 16px 30px;
}
#mailformpro table .input_menu td .none {
	display: none;
}
#mailformpro table .date_menu td {
	padding: 10px 10px 12px 31px;
}
#mailformpro table .info_menu td {
    padding: 15px 10px 13px 31px;
}
#mailformpro table .textarea_menu td {
	padding: 18px 10px 9px 31px;
}
#mailformpro table tr td input[type="text"], 
#mailformpro table tr td input[type="tel"], 
#mailformpro table tr td input[type="email"] {
    font-size: 1.6rem;
    background: #F5F5F5;
    border: none;
    box-sizing: border-box;
	width: 571px;
    padding: 11px 10px 11px;
}
#mailformpro table tr td input[type="date"] {
	width: 209px;
    font-size: 1.6rem;
    padding: 5px 10px 3px 4px;
}

#mailformpro table tr td input[type="text"].post_code {
	width: 250px;
	margin-left: 4px;
}
#mailformpro table tr td input[type="text"].address {
	display: block;
	margin-top: 9px;
}
#mailformpro table tr td input[type="text"].year {
	width: 210px;
	margin-right: 10px;
}
.checkbox_input_input {
	position: absolute;
	margin: 0;
	width: 0;
	opacity: 0;
}
.checkbox_input_input:checked + .checkbox_input_dummy_input {
	background: #FFFFFF;
}
.checkbox_input_input:checked + .checkbox_input_dummy_input::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    background: url(../images/common/icon_check.svg) no-repeat center center / contain;
}
.checkbox_input_dummy_input {
	position: relative;
	top: -14px;
	left: 0;
	display: block;
	width: 23px;
	height: 23px;
	background: #FFFFFF;
}
.checkbox_input_label_text {
	margin-left: 8px;
	display: block;
	white-space: nowrap;
}
.kinds table ul li {
	margin-right: 30px;
}
form#mailformpro .checkbox_input {
	display: flex;
	align-items: center;
	cursor: pointer;
	margin-right: 22px;
}
.checkbox_input_dummy_input {
	position: relative;
	top: 1px;
	left: 0;
	display: block;
    width: 20px;
    height: 20px;
	border: 1px solid #D9D9D9;
}
form#mailformpro .radio_menu label {
	line-height: 37px;
	margin-right: 19px;
}
#mailformpro table tr td textarea {
    width: 920px !important;
    height: 175px !important;
    background: #F5F5F5;
    border: none;
}
#privacy_policy {
	line-height: 1.875em;
	width: 1100px;
	max-width: 100%;
    height: 275px;
    overflow-y: scroll;
    box-sizing: border-box;
    background-color: #F5F5F5;
    margin: 46px auto 0;
	padding: 33px 37px 24px;
}
.privacy_title {
	font-size: 1.8rem;
}
.privacy_text {
	margin-top: 32px;
}
.privacy_lists {
	margin-top: 30px;
}
.contact_btn button {
    position: relative;
    display: block;
    color: #FFF;
    background-color: #000;
    border: 1px solid #000;
    font-size: 1.6rem;
    box-sizing: border-box;
	border-radius: 0;
    width: 220px;
    height: 50px;
    line-height: 3.3;
    text-align: center;
	margin: 60px auto 0;
}
#recruit footer {
	margin-top: 250px;
}

/* recruitment
------------------------------ */
.recruitment_points_flex {
	margin-top: 52px;
}
.recruitment_group {
	width: 880px;
	max-width: 100%;
}
.recruitment_points_item {
	border: 1px solid #d9d9d9;
	padding: 20px 0 20px 20px;
	margin-top: 30px;
}
.recruitment_points_item:first-of-type {
	margin-top: 0;
}
.recruitment_points_pic {
	width: 250px;
	max-width: 100%;
}
.recruitment_points_unit {
	width: 590px;
	max-width: 100%;
}
.recruitment_points_unit_title {
	font-size: 2rem;
	color: #fff;
	background: #034899;
	text-align: center;
}
.recruitment_points_unit_text {
	margin-top: 15px;
    line-height: 1.875em;
}
.recruitment_points_unit_text_detail span:nth-of-type(n + 2) {
	position: relative;
	padding-left: 15px;
}
.recruitment_points_unit_btn .btn_unit {
	margin-top: -30px;
	margin-right: 20px;
	margin-left: auto;
}
.recruitment_aside {
	width: 320px;
	max-width: 100%;
}
.recruitment_aside h3 {
	font-size: 2rem;
	color: #fff;
	background: #034899;
	text-align: center;
	padding: 18px 10px 17px;
	margin-top: 30px;
}
.recruitment_aside h3:first-of-type {
	margin-top: 0;
}
.recruitment_side_lists {
	margin-top: 4px;
}
.recruitment_side_list a {
	display: block;
	width: 104px;
	max-width: 100%;
	color: #000;
	background: #D4E3F4;
	text-align: center;
    padding: 8px 3px 7px;
	border: 1px solid #D4E3F4;
}
.recruitment_side_list a:hover {
	color: #034899;
	background: #fff;
	border: 1px solid #034899;
}
#recruitment footer {
	margin-top: 240px;
}

/* recruitment - pagenavi
------------------------------ */
.wp-pagenavi {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}
.wp-pagenavi a, .wp-pagenavi span {
	display: block;
	color: #000;
	width: 30px;
	height: 30px;
	line-height: 1.4;
    text-align: center;
	border: none;
	border-radius: 50%;
	margin: 0 4.5px;
}
.wp-pagenavi a:hover, .wp-pagenavi span.current {
	color: #fff;
	background: #000;
	font-weight: 400;
	border-radius: 50%;
}
.nextpostslink {
	position: relative;
	font-size: 0;
}
.nextpostslink::before {
	position: absolute;
	content: "";
	width: 15px;
	height: 5px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
	background: url(../images/common/button_nextB.svg) no-repeat center center / contain;
}
.nextpostslink:hover:before {
	background: url(../images/common/button_nextW.svg) no-repeat center center / contain;
}
.previouspostslink {
	position: relative;
	font-size: 0;
}
.previouspostslink:before {
	position: absolute;
	content: "";
	width: 15px;
	height: 5px;
    left: 50%;
    top: 50%;
	transform: translate(-50%, -50%) scale(-1, 1);
	background: url(../images/common/button_nextB.svg) no-repeat center center / contain;
}
.previouspostslink:hover:before {
	background: url(../images/common/button_nextW.svg) no-repeat center center / contain;
}

/* recruitment - single
------------------------------ */
.recruitment_table {
	margin-top: 81px;
}
.recruitment_table tr {
	border-top: 1px solid #034899;
}
.recruitment_table tr:last-child {
	border-bottom: 1px solid #034899;
}
.recruitment_table tr th {
	width: 200px;
	font-weight: 400;
	background: #D4E3F4;
	text-align-last: left;
    padding: 21px 10px 20px 30px;
}
.recruitment_table tr td {
    padding: 10px 10px 18px 30px;
}
.recruitment_single_btn .btn_unit {
	margin: 80px auto 0;
}
.single_btn_link {
	position: relative;
	font-size: 1.4rem;
	font-weight: 500;
	color: #000;
	padding-left: 30px;
}
.single_btn_link:hover {
	color: #034899;
}
.single_btn_link::before {
	position: absolute;
	content: "＜";
	left: 0;
	top: -5px;
	transition: .3s;
}
.single_btn_link:hover::before {
	left: -5px;
}
.single_btn {
	margin-top: -8px;
}

/* contact
------------------------------ */
#contact .main_title::before {
	background: url(../images/common/main_title_bg_contact.png) no-repeat right center / cover;
}
.contact_tel_group {
	margin-top: 45px;
}
.contact_tel_item {
	width: 390px;
	max-width: 100%;
	padding: 14px 10px 25px;
}
.contact_tel_item h3 {
	text-align: center;
	margin-bottom: 17px;
}
#contact_mail.sub_section {
	margin-top: 120px;
}
.contact_mail_head {
	margin-top: 50px;
}
#contact footer {
	margin-top: 270px;
}

/* contact - thanks
------------------------------ */
#thanks .main_title::before {
	background: url(../images/common/main_title_bg_contact.png) no-repeat right center / cover;
}
#thanks_content {
	margin-bottom: 130px;
}
.thanks_content_texts {
	margin-top: 20px;
}
.thanks_content_btn {
	margin-top: 30px;
}
#thanks footer {
	margin-top: 230px;
}

/* yonmaruyon
------------------------------ */
#yonmaruyon01 {
	margin-bottom: 130px;
}
.not_btn {
	margin-top: 30px;
}

/* footer
------------------------------ */
footer {
	position: relative;
	background: #F5F5F5;
	padding: 95px 0 109px;
	margin-top: 100px;
}
footer::before {
    position: absolute;
    content: "";
    width: 37.5%;
    left: 0;
    top: -100px;
    bottom: 72px;
    background: url(../images/common/footer_bg.png) no-repeat right center / cover;
}
.footer_wrapper {
	width: 1500px;
	max-width: 100%;
	margin: auto;
}
.footer_content {
    width: 847px;
	max-width: 100%;
    margin-left: auto;
    padding-right: 125px;
}
.footer_nav_child_item {
	line-height: 1.9;
}
.footer_nav_child_link {
	font-size: 1.4rem;
	color: #000;
}
.footer_nav_grand_child_item {
	line-height: 1.8;
}
.footer_nav_grand_child_link {
	font-size: 1.4rem;
	color: #000;
	margin-left: 30px;
}
.footer_nav_child_link:hover,
.footer_nav_grand_child_link:hover {
	color: #034899;
}
.footer_foot {
	padding-top: 50px;
	margin-top: 44px;
	border-top: 1px solid #9A9A9A;
}
.footer_logo {
	display: block;
    width: 305px;
    height: 50px;
    position: relative;
    text-indent: -9999px;
    background: url(../images/common/logo.svg) no-repeat center center / contain;
	transition: .3s;
}
.copy_right {
	position: relative;
}
.copy_right small{
	display: block;
	font-size: 1rem;
	margin-top: 19px;
}
.copy_right small a.text_link{
	color: #000;
	line-height: 1;
}
.copy_right small a.text_link::after{
	border-color: #000;
	margin-top: 0;
}

@media screen and (min-width: 1500px) {
	footer::before {
		width: 40.5%;
	}
}
/* Breadcrumb
------------------------------ */
.breadcrumbs{
	position: relative;
	color: #000;
	width: 100%;
	height: 75px;
	font-size: 1.2rem;
	line-height: 1;
	letter-spacing: .25em;
	z-index: 1;
}
.breadcrumbs_menu {
	position: absolute;
    left: 34.1%;
	top: 34px;
}
.breadcrumbs span{
	display: flex;
	line-height: 1;
	letter-spacing: .05em;
	color: #000;
}
.breadcrumbs a{
	color: #034899;
	font-size: 1.2rem;
	font-weight: 700;
	margin: 0 12px;
}
.breadcrumb_last {
	margin-left: 12px;
}
.breadcrumbs_flex {
	display: flex;
	flex-wrap: wrap;
}
/* Page Top
------------------------------ */
.pagetop{
	position: fixed;
	bottom: 40px;
	right: 50px;
	width: 54px;
	height: 54px;
	-webkit-transition: all .4s;
	-moz-transition: all .4s;
	-ms-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	opacity: 0;
	z-index: 10;
	box-sizing: border-box;
	border: 1px solid #034899;
	background: #034899;
}
.pagetop.show{
	opacity: 1;
	text-indent: -9999px;
}
.pagetop:hover{
	color: #034899;
	background: #fff;
	border: 1px solid #034899;
}
.pagetop::before{
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	border-top: #fff solid 1px;
	border-left: #fff solid 1px;
	transform: rotate(45deg);
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 26px;
	transition: .25s;
}
.pagetop:hover::before{
	border-top-color: #034899;
	border-left-color: #034899;
}

/* Page Navi
------------------------------ */
.pagenavi{
	position: relative;
	display: flex;
	justify-content: center;
    margin: 50px 0 0;
}
.pagenavi span,.pagenavi a{
	display: block;
	position: relative;
    color: #000;
    width: 30px;
    height: 30px;
    line-height: 1.8;
    text-align: center;
    border: none;
    border-radius: 50%;
    margin: 0 4.5px;
}
.pagenavi span{
    color: #fff;
    background: #000;
    font-weight: 400;
    border-radius: 50%;
}
.pagenavi a{
    color: #000;
}
.pagenavi a:hover{
    color: #fff;
    background: #000;
}
.pagenavi .next,.pagenavi .prev{
	font-size: 0;
}
.pagenavi .prev:before {
    position: absolute;
    content: "";
    width: 15px;
    height: 5px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(-1, 1);
    background: url(../images/common/button_nextB.svg) no-repeat center center / contain;
}
.pagenavi .next::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 5px;
	left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: url(../images/common/button_nextB.svg) no-repeat center center / contain;
}

/* IE用cssハック */
@media all and (-ms-high-contrast: none) {

}

/* Firefox用cssハック */
@-moz-document url-prefix() {

}
