html, body, div, span, applet, object, iframe,
h1, h2, h3, fea, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video{
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{	display: block;}
body{ line-height: 1;}
ol, ul{ list-style: none;}
blockquote,q{ quotes: none;}
blockquote:before, blockquote:after,q:before,q:after{ content: ''; content: none;}
table{ border-collapse: collapse; border-spacing: 0;}
*, *:before, *:after { box-sizing: border-box;}

/*==============================
  common
================================*/
.maincolor{color: #0d2e6a;}
.subcolor{color: #e7f0ff;}
html{ font-size: 62.5%;}
a{ text-decoration: none; color: #fff;}
a:hover img{ opacity: 0.7;}
a > img{ display: block;}
img{ max-width: 100%; height: auto; min-width: 0;}
body{
	width: 100%;
  line-height: 1.4;
  margin: 0 auto;
  font-size: 1.6rem;
	height: 100%;
}
body,h1,h2,h3,h4,h5,a{
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
h2{
	font-size: 30px;
	font-weight: normal;
	text-align: center;
	margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.wrap{
  width: 100%;
	min-height: 100%;
	margin: 0 auto;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
}
.inner{
  width: 96%;
  max-width: 100%;
  min-width: 380px;
  margin: 0 auto;
}
.clear{
	clear:both;
	display:block;
	overflow:hidden;
	visibility:hidden;
	width:0;
	height:0;
}
.clear:after{
	clear:both;
	content:' ';
	display:block;
	font-size:0;
	line-height:0;
	visibility:hidden;
	width:0;
	height:0;
}
.container{
	width: 100%;
	max-width: 1280px;
	margin: 0;
}
article{
	padding-bottom: 1px;
}
article.main{ width: 100%; margin: 0 auto;}
.tleft{ text-align: left !important;}
.tright{ text-align: right !important;}
.tcenter{ text-align: center !important;}
.ff_min{
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3",
	 "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E",
	 "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif !important;
}
.ff_cg{
  font-family: 'Century Gothic', sans-serif !important;
	font-weight: bold;
}

.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	justify-content: center;
	align-items: center;
	z-index: 9999;
}
.modal-content {
		background: white;
		padding: 20px;
		border-radius: 8px;
		position: relative;
}
.close {
		position: absolute;
		top: 10px;
		right: 10px;
		cursor: pointer;
		font-size: 16px;
}
video {
		width: 100%;
		max-width: 60vw;
		border-radius: 8px;
}
/*==============================
  commoncss
================================*/
.main-template h2{
	display: block;
	font-weight: bold;
	margin: 5% auto 5%;
	padding: 5px;
}
.news-page h2,
.news-page h3,
.news-page h4,
.news-page h5,
.edit-template h3,
.edit-template h4,
.edit-template h5{
	text-align: left;
	font-weight: bold;
}

.news-page h3,
.edit-template h3{
	font-size: 24px;
	margin-bottom: 5%;
}
.news-page h4,
.edit-template h4{
	font-size: 22px;
}
.news-page h5,
.edit-template h5{
	font-size: 16px;
}
.news-page p,
.edit-template p{
	padding: 10px 0;
	line-height: 1.8;
}
/* ボタン全体のスタイル */
.btn,
.btn2 {
	display: inline-block;
  padding: 10px;
  border-bottom: 2px solid #FFF;
  color: #fff; /* テキストの色 */
  text-decoration: none; /* リンクの下線を削除 */
}
.btn{
  border-bottom: 2px solid #0d2e6a;
  color: #0d2e6a; /* テキストの色 */
}

.blue_btn,
.blue_btn:visited{
  display: inline-block;
  width: 300px;
  padding: 12px 0;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #0d2e6a;
  background-color: #ffffff;
  border: 3px solid #0d2e6a;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blue_btn:hover {
  background-color: #0d2e6a;
  color: #ffffff;
}

/*==============================
	responsive
================================*/
@media screen and (min-width: 768px){
	.mt_s{margin-top: 3%;}
	.mt_m{margin-top: 5%;}
	.mt_l{margin-top: 10%;}
	.mt_ll{margin-top: 15%;}
	.mb_s{margin-bottom: 3%;}
	.mb_m{margin-bottom: 5%;}
	.mb_l{margin-bottom: 10%;}
	.mb_ll{margin-bottom: 15%;}
	.mr_s{margin-right: 3%;}
	.mr_m{margin-right: 5%;}
	.mr_l{margin-right: 10%;}
	.mr_ll{margin-right: 15%;}
	.ml_s{margin-left: 3%;}
	.ml_m{margin-left: 5%;}
	.ml_l{margin-left: 10%;}
	.ml_ll{margin-left: 15%;}
	.main{ font-size: 18px; margin-bottom: 30px;}
	.main-content{ margin: 0 auto; width: 100%;}
	.flexbox_sa{display: flex; justify-content: space-around;;}
	.flexbox_sb{display: flex; justify-content: space-between;}
	.flexbox_fs{display: flex; justify-content: flex-start;}
	.flexbox_fe{display: flex; justify-content: flex-end;}
	.flexbox_c{display: flex; justify-content: center;}
	.flex_img{
		width: 100%; /* 画像をflexアイテムの幅いっぱいに広げる */
		height: auto; /* 高さを自動調整してアスペクト比を維持 */
		object-fit: contain; /* 画像を伸縮して flex アイテムに収まるようにする */
		max-width: 100%; /* 画像が親要素を超えないようにする */
	}
	.fw_w{flex-wrap: wrap;}
	.fb_reverse{flex-direction: row-reverse;}
	.fb_reverse_c{flex-direction: column-reverse;}
	.fb_is{align-items: flex-start;}
	.fb_ie{align-items: flex-end;}
	.fb_cn{align-items: center;}
	.g10{gap: 10px;}
	br.mbbr{display: none;}
	.mobile{display: none !important;}
	.menu_pc, .craft_pc{display: inline;}
	.menu_mobile, .craft_mobile{display: none !important;}
}

/*==============================
  header
================================*/
#header_area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  transition: background-color 0.3s, box-shadow 0.3s;
  z-index: 1000;
}

#header_area.scrolled {
  background-color: white;
}
.header-main {
	position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background-color: transparent;
  width: 100%;
	top: 0;
	z-index: 999;
}
.scrolled .header-main {
	position: relative;
}
.header-main h1 {
  display: inline-block;
	width: 20vw;
	width: 200px;
	margin: 0;
}
.header-main h1 img {
  display: block;  /* 画像の幅に合わせてh1要素の幅が自動的に調整されるようにします */
	margin-left: 2vw;
	padding: 10px 0;
}
.mainmenu {
  display: flex;
  align-items: center;
}
.mainmenu .menu_pc nav #navi ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mainmenu .menu_pc nav #navi ul li {
  margin: 0 10px;
}

.mainmenu .menu_pc nav #navi ul li a {
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.mainmenu .contact{
	display: block;
	background: #0d2e6a;
	align-self: stretch;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
	font-size: 18px;
	color: #fff;
}
#navi ul{
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
}
#navi li{
	position: relative;
  flex-grow: 1;
	padding: 20px 10px;
}
#navi li a,
#navi li p{
	position: relative;
	display: block;
	text-align: center;
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	white-space: nowrap;
}
#navi li a {
  position: relative;
  display: inline-block;
}
#navi li a::after {
  position: absolute;
  bottom: -50%;
  left: 50%;
  content: '';
  width: 0;
  height: 3px;
  background-color: #0d2e6a;
  transition: .3s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
#navi li a:hover {
  color: #0d2e6a;
}
#navi li a:hover::after {
  width: 100%;
}
.scrolled #navi li a,
.scrolled #navi li p{
	color: #0d2e6a;
}
nav ul#navi li{
	display: block;
	width: 100%;
	text-align: center;
	vertical-align: middle;
}
nav#navi li.nonactive a:hover::after,
.nonactive ul.sub-menu li a:hover::after{
	content: none !important;
}
ul.sub-menu{
	display: inline-block !important;
	overflow: hidden;
	opacity: 0;
	height: 0;
	margin: 0 !important;
	position: absolute;
	width: 100%;
	top: 100%;
	left: 50%;
  transform: translateX(-50%);
	background: #0d2e6a;
	z-index: -999;
	padding: 0 10px;
}
#navi ul.sub-menu li{
	display: block;
	word-break: break-all;
	white-space: nowrap;
	text-align: center;
	background: #0d2e6a;
	padding: 10px 0;
	min-width: 200px;
}
#navi ul.sub-menu li + li {
    position: relative; /* 擬似要素の位置を基準にする */
}

#navi ul.sub-menu li + li::before {
    content: "";
    position: absolute;
    top: 0;
		left: 50%;
	  transform: translateX(-50%);
    height: 2px;
		width: 80%;
		border-top: 4px dotted #fff;
}
#navi ul.sub-menu li a{
	padding: 10px;
	box-sizing: border-box;
	font-size: 14px;
	font-weight: normal;
	text-align: left;
	word-break: break-all;
	color: #fff !important;
}

#navi li:hover > ul.sub-menu{
	overflow: visible;
	position: absolute;
	width: auto;
	top: 100%;
	opacity: 1;
	z-index: 1;
}
nav#navi li.nonactive:hover::after,
.nonactive ul.sub-menu li:hover::after{
	content: none !important;
}

/*==============================
  footer
================================*/
#footer_in{
	border: 1px solid #0d2e6a;
	width: 100%;
	background-color: #0d2e6a;
	color: #fff;
	margin: -1px auto 0;
	padding: 1% 5% 2%;
	text-align: left;
}
.footer_img{
	width: 10vw;
	max-width: 200px;
}
.f_address{
	display: flex;
	flex-direction: column;
	gap:20px 0;
}
.f_address h2{
	font-size: 24px;
	margin-bottom: 0;
	text-align: left;
}
.footer-main{
	margin: 2% auto;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: space-around;
	-ms-align-items: center;
	align-items: flex-start;
	flex-wrap: wrap;
}
.footer-main .top{
	-ms-align-items: flex-end;
	align-items: flex-end;
}
.f_sns{
	display: flex;
	-ms-align-items: center;
	align-items: center;
	gap: 20px;
}
.f_menu li{
	margin: 3% 0;
}
.f_menu a{
	margin-right: 20px;
}
.f_menu a:hover{
	color: inherit;
}
.map{
	width: 32vw;
}
.copylight{
	text-align: center;
	padding: 1%;
	margin: 0;
	font-size: 12px;
	text-align: center;
}
/*==============================
  toppage
================================*/
.loading{
	position: fixed;
	width: 100vw;
	height: 100vh;
	background-color: #0d2e6a;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}
.left, .right {
    position: absolute;
    width: 100vw; /* 横幅を100%に設定 */
    height: 50vh; /* 高さを50%に設定 */
    background-color: #0d2e6a;
		z-index: 9998;
}

.left {
    top: 0; /* 上部 */
}

.right {
    bottom: 0; /* 下部 */
}
/* back */
#toppage{
	background: #f5f7f9;
}
.top-area{
	position: relative;
	width: 90%;
	max-width: 1080px;
	padding: 10px 0 0;
	margin: 0 auto;
}
.top-area h2{
	font-size: clamp(60px, 6.25vw, 120px);
	font-family: "Century Gothic", sans-serif;
	position: relative;
	color: #0d2e6a;
	line-height: .5;
}
.top-area h2 span{
	font-size: 24px;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.bannar{position: relative;}
.bannarimg{width: 100%;}

.bannar img{
	display: block;
	vertical-align: top;
}
.bannar_txt{
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	font-size: clamp(20px, 2.0vw, 48px);
	font-weight: bold;
	font-family: unset;
	text-align: center;
	width: 100%;
	line-height: 2;
	z-index: 999;
}
.bannar_txt span{
	font-size: clamp(40px, 4vw, 84px);
}
.bannar_txt2{
	position: absolute;
	bottom: -15vw;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	max-width: 1400px;
}
.news{
	position: absolute;
	background: #0d2e6a;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	width: 55%;
	right: 0;
	bottom: -15%;
	z-index: 10;
}
.news h2 {
	color: #fff;
	font-family: "Century Gothic", sans-serif;
	font-size: 32px;
	margin: 3%;
	line-height: 1;
}
.news h2 span {
	font-size: 18px;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.news-list{
	display: flex;
	flex-direction: column;
	padding: 20px 0;
}
.news-child{
	width: 85%;
	margin: 1% auto;
	padding: 5px 0;
}
.news-child a,
.news-child a:hover,
.news-child a:visited{
	display: flex;
	gap: 3%;
	color: #fff;
	font-size: 16px;
	white-space: nowrap;
}
#about{
	background-color: #e7f0ff;
	position: relative;
	margin: 0 0 150px;
	padding: 50px 0 20px;
}
#about::after{
	content: "";
	position: absolute;
	bottom: -150px; /* 矢印の高さ */
	left: 50%;
	transform: translateX(-50%);
	width: 100%; /* 矢印の幅 */
	height: 150px;
	background-color: #e7f0ff;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}
#about h2{
	width: auto;
	display: inline-block;
	line-height: .5;
	margin: 7vw 0 3vw;
}
#about h3{
	font-size: 30px;
	margin: 3% 0 3%;
}
#about p{
	margin-bottom: 10%;
}
.about_txt{
	width: 40%;
	color: #0d2e6a;
	font-size: 18px;
	line-height: 2;
}

.about_img{
	position: absolute;
	right: -5vw;
	top: 9vw;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	width: 60%;
}

.about_img_l{
	width: 40%;
}
.about_img_r{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
	gap: 10px;
}
.about_img_r1{width: 70%;}
.about_img_r2{width: 80%;}

#service{
	background: #f5f7f9;
	margin-top: -150px;
	padding-top: 150px;
	padding-bottom: 50px;
}
.company_list{
	margin: 3% 0;
	gap: 2vw;
}
.service_list{
	gap: 3%;
}
.service_list{
	margin: 5% 0 0;
	gap: 2vw;
}
.service_item,
.company_item{
  position: relative;
  display: inline-block;
}
.service_item p{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
	color: #fff;
  font-size: clamp(18px, 2.4vw, 32px);;
  font-weight: bold;
	white-space: nowrap;
}
.service_link{
	position: absolute;
  bottom: 25%;
  left: 50%;
  transform: translate(-50%, 25%);
}
.service_more{
	display: inline-block;
	margin: 2vw auto;
}
.service_more img{
	display: block;
	width: 100%;
}
.greeting{
	position: relative;
	bottom: 5%;
	right: 50%;
}

#company{
	background: #fff;
}
.company_txt{
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	color: #fff;
	bottom: 5%;
	left: 5%;
	line-height: 2;
}
.company_txt span{
	font-size: 40px;
}
.company_txt2{
	position: absolute;
	width: 80%;
	color: #fff;
	top: 10%;
	left: 50%;
	font-family: "Century Gothic", sans-serif;
	transform: translate(-50%, -10%);
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-align: left;
}
.company_txt2 span{
	font-size: clamp(36px, 5vw, 72px);
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.swiper-container {
	overflow: hidden;
}
.swiper-slide {
  background-color: #fff;
  overflow: hidden;
}
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%; /* 真ん中付近に配置 */
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: transparent;
  color: #0d2e6a;
  z-index: 10;
}
.swiper-button-next {
  right: -4vw;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{}
.swiper-button-prev {
  left: -4vw;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{}
.bloglink{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex-direction: column;
	-ms-align-items: center;
	align-items: center;
}
.blogimg{
  position: relative;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
  width: 100%;
	max-width: 530px;
	height: 23vw;
	max-height: 380px;
  overflow: hidden;
  margin: 0 auto;
	background-color: #000;
}
.blogimg img{
	width: 100%;
  max-width: 100%;
  max-height: 100%;
	object-fit: cover; /* 画像をトリミング */
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.blogdetail{
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
}
.data,
.name {
  margin: 8px 0;
  font-size: 16px;
  color: #333;
}
.recruit_area{
	position: relative;
	padding-bottom: 30px;
}
.recruit_area a:hover{
	color: inherit;
}
.recruit_img{
	line-height: 1;
	display: block;
}
.recruit_link,
.recruit_link:visited{
	position: absolute;
	bottom: 20px;
	left: 50%;
  transform: translateX(-50%);
	color: #0d2e6a;
}
#recruit{
	margin: 0 !important;
	position: relative;
	background: linear-gradient(transparent 90%,#fff 40%, #fff 90%, #0d2e6a 90%), url(./img/recruit.jpg);
	background-size: contain;
	background-repeat: no-repeat;
}
.recruit_area,
.recruit_area h2,
.recruit_area h3{
	color: #fff;
	line-height: 2;
}
.recruit_area h2{
	text-align: left;
	line-height: .75;
	margin-bottom: 0;
}
.recruit_area h3{
	font-size: clamp(30px, 3.5vw, 60px);;
	font-weight: normal;
	margin: 2% 0;
}
.topform{
	border: 3px solid #0d2e6a;
	color: #0d2e6a;
	font-size: 16px;
	font-weight: bold;
	background-color: #fff;
	border-radius: 10% 0 10% 0;
	padding: 2vw 5vw;
}
.topform h2{

}
.home-contact{
	text-align: left;
	margin-top: 5%;
}
.home-contact th{
	vertical-align: top;
	padding: 5px;
}
.service_moive{
	text-align: center;
	cursor: pointer;
}
.service_moive p{
	font-size: 40px;
}
.service_moive:hover{
	opacity: .8;
}
/*==============================
  page-css
================================*/
.fzb{font-size: 24px; font-weight: bold;}
.more{
	display: inline-block;
	font-weight: bold;
	text-align: center;
	padding: 10px;
	margin: 0 auto;
	border-radius: 5px !important;
	border: none;
	width: 80%;
	max-width: 200px;
	background: #0d2e6a !important;
	color: #fff !important;
	margin: 2% auto;
}

.bannartxt{
	position: absolute;
	color: #fff;
	top: 60%;
	left: 10%;
	transform: translate(-10%,-60%);
	font-size: clamp(60px, 6.25vw, 126px);
	font-family: "Century Gothic", sans-serif;
	margin: 0;
	white-space: nowrap;
	line-height: .75;
}
.bannartxt span{
	font-size: clamp(20px, 3vw, 32px);
	font-family:"游ゴシック", YuGothic, "游ゴシック体", sans-serif;
}
.edit-template{
	box-sizing: border-box;
	overflow: hidden;
}
.edit-template section{
	line-height: 1.8;
	font-size: 16px;
}
.edit-template section:nth-of-type(n+2){
	padding-top: 20px;
}
.edit-template section:nth-child(even) {
  background-color: #ffffff;
}
.edit-template section:nth-child(odd) {
  background-color: #e7f0ff;
}
.edit-template section:nth-child(odd) {
  background-color: #e7f0ff;
}
.edit-template section:nth-of-type(n+3){
	margin: 0% auto;
	padding-top: 100px;
	position: relative;
}
.edit-template section:last-of-type{
	padding-bottom: 5vw;
}

.subtitle {
  position: absolute;
	font-family: "Century Gothic", sans-serif;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 0%);
	font-size: clamp(60px, 6.25vw, 120px);
  font-weight: bold;
  white-space: nowrap;
	letter-spacing: normal;
  z-index: -1; /* 背景風に */
}
.edit-template section:nth-child(even) .subtitle,
.edit-template.bg-blue section:nth-child(odd) .subtitle {
  color: #e7f0ff;
}
.edit-template section:nth-child(odd) .subtitle,
.edit-template.bg-blue section:nth-child(even) .subtitle {
  color: #fff;
}
.edit-template section:nth-child(even) {
  background-color: #ffffff;
	border-bottom: 1px solid #ffffff;
}
.edit-template section:nth-child(odd) {
  background-color: #e7f0ff;
	border-bottom: 1px solid #e7f0ff;
}
.bg-blue section:nth-child(even) {
	background-color: #e7f0ff;
	border-bottom: 1px solid #e7f0ff;
}
.bg-blue section:nth-child(odd) {
	background-color: #ffffff;
	border-bottom: 1px solid #ffffff;
}

.edit-template section:nth-child(n+3)::before{
	content: "";
	position: absolute;
	top: -1px; /* 矢印の高さ */
	left: 50%;
	transform: translateX(-50%);
	width: 100%; /* 矢印の幅 */
	height: 50px;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.edit-template section:nth-child(even)::before {
	background-color: #e7f0ff;
}
.edit-template section:nth-child(odd)::before {
	background-color: #ffffff;
}
.bg-blue section:nth-child(even)::before {
  background-color: #ffffff;
}
.bg-blue section:nth-child(odd)::before {
  background-color: #e7f0ff;
}


.edit-template h2{
	position: relative;
	color: #0d2e6a;
	font-size: 36px;
	display: block;
	text-align: center;
	font-weight: bold;
	letter-spacing: .2em;
	margin: 5% auto 2%;
}
.edit-template h2::after{
  content: "";
  display: block;
  width: 100px;
  height: 2px; /* 線の太さ */
  background-color: #0d2e6a; /* 線の色 */
  margin: 8px auto 0; /* 上の余白、中央寄せ */
}

.edit-template h3,
.edit-template h4{
	display: inline-block;
	margin: 5% auto 0;
	font-weight: bold;
	padding: 20px 0;
}
.edit-template h3{
	color: #0d2e6a;
	font-size: 32px;
	display: block;
	text-align: center;
	font-weight: bold;
	margin: 10% auto 3%;
	border-bottom: 2px solid #0d2e6a;
}
.edit-template h4{
	font-weight: bold;
	font-size: 30px;
	margin-top: 0;
}
.edit-template h5{
	color: #0d2e6a;
	font-size: 24px;
	text-align: left;
}
.edit-template .child-area{
	width: 80vw;
	max-width: 1080px;
	margin: auto;
}
.child-area-l{
	width: 85%;
	max-width: 1000px;
	margin: auto;
}
.edit-template .child-area > *{
	position: relative;
	z-index: 2;
}
.edit-template .child-area a,
.edit-template .child-area a:visited{
	color: #0d2e6a;
}
.child-title{
	position: absolute;
	left: 0;
	bottom: 0;
}
.child-title2{
	position: absolute;
	right: 0;
	bottom: 0;
}

/* service-page */
.service_box{
	width: 80%;
	max-width: 1000%;
	margin: 5% auto;
	padding: 15px;
	border: 2px solid #0d2e6a;
	background-color: #fff;
	font-weight: bold;
}
.merit{
	display: flex;
	justify-content: space-around;
	margin-top: 10%;
	margin-bottom: 5%;
	gap:5%;
}
.delivery_flow{
	top: 15%;
	left: auto;
	right: -5vw;
	transform: translateY(0%);
}
.flowchat{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 5%;
	margin-bottom: 3%;
}
.flowtxt_l{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 60%;
	gap: 5%;
}
.flowtxt_img{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
	gap: 3%;
}
.line {
    width: 2px;
    height: 8vw;
    background-color: #0d2e6a;
		margin-top: 20px;
}
.flowtxt{
	width: 100%;
}
.flowimg{
	width: 30%;
	object-fit: contain;
}
.service-title{
	z-index: -1;
}
.service-title .subtitle{
	top: auto;
	bottom: 0;
}
.service-right{
	position: absolute;
	top: -7vw;
	right: 30vw;
}
.service-left{
	position: absolute;
	top: -3vw;
	left: 30vw;
}
.parts_processing{
	left: auto;
	right: -35%;
	bottom: 50%;
	transform: none;
}
.service_flow{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 5%;
}
.service_flowimg{
	width: 100%;
}
.service_flow_c{
	position: relative;
}
.service_flow_c h3{
	margin: 0 auto 3%;
}
.service_flow_cr{
	position: relative;
	bottom: 0;
	right: -5%;
}
.service_flow_cl{
	position: relative;
	bottom: 0;
	left: -5%;
}
h3.service_title{
	text-align: left;
}
h3.service_title span{
	font-size: 18px;
	margin-left: 20px;
	padding-left: 0px;
}

h3.service_title.service_title_l{
	display: inline-block;
	margin: 5% 0;
	padding: 0 2vw;
	width: auto;
	min-width: 50vw;
}
.service_table{
	max-width: 1000px;
	margin: auto;
}
.service_table th{
	text-align: left;
	padding: 5px 0 5px 10px;
}
.service_table td{
	text-align: left;
	padding: 5px 10px;
}

.service_link-c{
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #e7f0ff;
	color: #0d2e6a !important;
	font-size: clamp(20px, 2.5vw, 48px);
	font-weight: bold;
	padding: 2vw 4vw;
	margin: 3% 0;
	width: 80%;
	max-width: 800px;
	border: 2px solid #0d2e6a;
}
.service_link-c::after {
	font: var(--fa-font-solid);
  content: "\f054";
  font-size: clamp(24px, 2.5vw, 50px);
  color: #0d2e6a; /* 緑色 */
  position: absolute;
  right: 5%; /* ボタン右端からの距離 */
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.3s ease;
}
.service_imgbox{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.service_imgbox figcaption{
	text-align: left;
}
.service_problem{
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	gap: 1%;
}
.service_problem > img{
	min-width: 150px;
}
.service_cmt {
  position: relative;
  display: flex;
	align-items: center;
  margin: 1.5em 0 1.5em 15px;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
	border: solid 3px #c9c9c9;
  background: #eee;
	border-radius: 15px;
}

.service_cmt:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -24px;
  margin-top: -12px;
  border: 12px solid transparent;
  border-right: 12px solid #eee;
  z-index: 2;
}

.service_cmt:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -14px;
  border: 14px solid transparent;
  border-right: 14px solid #c9c9c9;
  z-index: 1;
}

.service_cmt h3{
	margin: 3%;
	border: none;
	white-space: nowrap;

}
.service_cmt_main{
	border-left: 2px solid #0d2e6a;
	padding-left: 10px;
	margin: 10px 0 10px 10px;
}
.service_cmt_main h4{
	color: #0d2e6a;
	padding: 0;
}
.service_cmt_main p{
	padding: 0;
}
.service_suggestion{
	background: #fff;
	border: 2px solid #0d2e6a;
}
.service_suggestion h3{
	margin: 0;
	background: #0d2e6a;
	color: #fff;
}
.service_suggestion p {
margin: 3%;
}
.access{
	top: 30%;
	right: 0%;
	left: auto;
}
/* company_table */
.company_table th,
.company_table td{ padding: 10px 0; text-align: left;}
.company_table th{
	width: 15%;
	padding: 10px 15px;
	vertical-align: middle;
	font-weight: normal;
}
.service_table tr:first-child,
.service_table tr + tr,
.company_table tr:first-child,
.company_table tr + tr{
	border-top: 2px solid #ccc;
}
.company_history td { display: inline-flex;}
.company_history td span {
	width: 100px;
	padding-right: 20px;
	text-align: right;
}
/**/
.message section{
	position: relative;
}
.message .bgimg{
	top: 5%;
	right: 0;
}
/* privacy_policy */
.privacy_policy h5{
	display: block;
	text-align: left;
	padding: 10px 0;
	font-weight: bold;
	border-bottom: 2px solid #0d2e6a;
	margin: 5% 0 0;
}
.privacy_policy p{
	margin: 3% 0;
}
/**/
.achievements section{
	position: relative;
}
.achievements-block{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}
.achievements-block img{
	width: 45vw;
	margin: 5% 0;
}
.achievements .bgimg1{
	width: 30vw;
	top: 0;
	left: 0;
}
.achievements .bgimg2{
	width: 30vw;
	top: 24%;
	right: 0;
}
.achievements-list{
	margin: 5% 0;
}
.achievements-list li{
	padding: 10px 0;
	border-bottom: 2px dotted #0d2e6a;
}
.process_area{
	margin: 5% 0;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: flex-start;
	-ms-align-items: center;
	align-items: flex-start;
}
.process_area > img{
	width: 45vw;
}
.process_data{
	margin-left: 5%;
	width: 40vw;
		font-size: clamp(18px, 2.5vw, 20px);
}
.process_data img{
	width: 10vw;
	max-width: 176px;
}
.process_data div{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	font-size: clamp(22px, 3vw, 30px);
	font-weight: bold;
	color: #0d2e6a;
	margin: 5% 0;
}
.activity-child{
	margin: 0  auto!important;
}
.activity-child h2{
	display: block;
	border-bottom: 2px solid #0d2e6a;
	padding: 10px 0;
	margin-bottom: 5%;
	text-align: left;
	font-weight: bold;
}
.message-area{
	display: flex;
	align-items: flex-start;
	gap: 5%;
}
.message-txt{
	margin: 5% 0;
	width: 70%;
}
/*==============================
  news(Wordpress)
================================*/
.newsheader,
.newsheader:visited{
	display: inline-block;
	width: 100%;
	max-width: 300px;
	font-size: 24px;
	font-weight: bold;
	color: #0d2e6a;
	padding: 20px 0;
	text-align: center;
	border: 2px solid #0d2e6a;
	transition: .3s;
	margin-bottom: 5%;
}
.newsheader:hover{
	background: #0d2e6a;
	color: #fff;
}
.news-topics{
	background: #e7f0ff;
	border: 1px solid #e7f0ff;
}

.blog-template{
	margin: 0 auto;
	max-width: 1080px;
	display: flex;
	justify-content: space-around;
	gap: 5%;
}
.category-label{
	display: inline-block;
	padding: 5px 15px;
	background: #0d2e6a;
	color: #fff;
	margin: 0 3%;
}
.blog-area{
	background: #fff;
	margin: 5% auto;
}
.blog-list{
	width: 80%;
}
h2.blog-header{
	font-weight: bold;
	display: block;
	margin: 0 0 5%;
	text-align: left;
	padding: 10px 15px;
	letter-spacing: normal;
	border-left: 5px solid #0d2e6a;
	color: #0d2e6a;
}
h2.blog-header::after{
	display: none;
}
.blog-date{
	margin: 3%;
	font-size: 16px;
}
.blog-contents{
	margin: 3%;
	font-size: 16px;
}
.blog-page{
	max-width: 1000px;
	width: 100%;
	margin: 3% auto;
}
.box-blog{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0;
	margin: 5% 0;
}
.box-blog,
.box-blog:visited{
	color: #0d2e6a;
}
.blog-detail{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
}
.blog-img{
	flex-shrink: 0;
	margin-right: 5%;
}
.blog-txt{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex-direction: column;

}
.box-blog h3{
	font-size: 24px;
	font-weight: bold;
	margin: 3% 0;
	padding: 10px 0;
	text-align: left;
	border: none;
}

.wp-pagenavi {
	clear: both;
	text-align:center;
	margin: 5% auto 10%;
}
.wp-pagenavi a, .wp-pagenavi span {
	color: #0d2e6a;
	padding: 8px 15px;
	border: 1px solid transparent;
	margin: 0 2px;
	white-space: nowrap;
	text-align: center;
	text-decoration: none;
}
.wp-pagenavi a:hover,
.wp-pagenavi span.current{
	color: #fff;
	background-color: #0d2e6a;
	border: 1px solid #0d2e6a;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	font-weight: bold;
}
.cr_bl{
	color: #0d2e6a;
	font-weight: bold;
}
.cr_bk{
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid #0d2e6a;
	border-radius: 50%;
	color: #0d2e6a;
	width: 60px;
	height: 60px;
	font-size: 40px;
	flex-shrink: 0;
}
.custom-prev-class,
.custom-next-class{
	margin: 5% 0;
}
.custom-prev-class a,
.custom-next-class a{
	display: flex;
	align-items: center;
	font-size: 18px;
	font-weight: bold;
	gap: 20px;
}
#sidebar{
	width: 25%;
}
#sidebar ul li{
	padding-left: 15px;
}
#sidebar h4,
#sidebar ul li a,
#sidebar ul li a:hover{
	color: #0d2e6a;
}
/*==============================
  contact form7
================================*/
.contact-area{
	width: 90%;
	max-width: 600px;
	margin: 0 auto;

}

.contactform th{ line-height: 2;}
.wpcf7{ margin: 1% 0;}
.wpcf7 label{
	text-align: left;
}
input[type="submit"].wpcf7-submit,
input[type="reset"].resetbtn{
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	padding: 15px;
	width: 50%;
	margin: 0 auto;
	border-radius: 5px !important;
	border: none;
}
input[type="submit"].wpcf7-submit{
	width: 80%;
	max-width: 200px;
	height: 60px;
	background: #0d2e6a !important;
	color: #fff;
	margin: 1% auto 5%;
}
.wpcf7 span.wpcf7-not-valid-tip{ font-size: 80%;}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 select,
.wpcf7 input[type="url"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 textarea{
	width:100%;
	color: #000;
	border: 1px solid #ddd;
	font-size: 16px;
	padding: 5px;
	margin: 0 auto;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.wpcf7-form p{ padding: 10px; -webkit-box-sizing: border-box;
box-sizing: border-box;}

/*==============================
	googlemap
================================*/
.ggmap{
	margin: 1%;
	height: 0;
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
}
.ggmap iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.oneArea {
  background: linear-gradient(180deg, #eeeeee 50%, #eeeeee 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 500px;
}
.oneArea p {
  color: #fff;
  font-size: 40px;
  font-weight: bold;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 728px;
  height: 349px;
  background: #f9f9f9;
}
.container p {
  color: #26499d;
  font-weight: bold;
}
