@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');

/* CSS Document */

abbr,address,article,aside,audio,b,blockquote,body,canvas,caption,cite,code,dd,del,details,dfn,div,dl,dt,em,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:0}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}nav ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:0}ins{text-decoration:none}ins,mark{background-color:#ff9;color:#000}mark{font-style:italic;font-weight:700}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}*,:after,:before{box-sizing:border-box}ul{list-style:none}.cf:after,.cf:before{content:"";display:table}.cf:after{clear:both}.cf{zoom:1}:focus{outline:0}img{vertical-align:top}input[type=button],input[type=submit]{border-radius:0;-webkit-appearance:none}

/* common */

html {
	font-size: 100%;
	overflow-x: hidden;
	width: 100%;
}

body {
	color: #101010;
	line-height: 1.6;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
	font-style: normal;
	width: 100%;
	position: relative;
	background: #fff;
}

.jp {
	font-family: "Zen Kaku Gothic New", sans-serif;
}

.en {
	font-family: "Josefin Sans", sans-serif;
}

.tc_b {
	color: #021640;
}

.common_btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 220px;
	height: 45px;
	background: #021640;
	color: #fff;
	text-decoration: none;
	font-family: "Josefin Sans", sans-serif;
	font-size: 1em;
	position: relative;
	border-radius: 0;
	cursor: pointer;
	overflow: hidden;
	padding-top: 8px;
}

.common_btn::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	width: 1em;
	height: 1em;
	background: url("assets/icon-right.svg") no-repeat center / contain;
	transform: translateY(-50%);
	transition: transform .25s ease;

}

.common_btn:hover::after,
.common_btn:focus-visible::after {
	transform: translate(4px, -50%);
}

br.pc {
	display: none;
}

br.sp {
	display: block;
}

.right {
	text-align: right;
	margin-right: 0;
	margin-left: auto;
}

.breadcrumbs {
	display: flex;
	align-items: center;
	padding-left: 10px;
	font-size: 0.8rem;
}

.breadcrumbs li {
	display: flex;
	align-items: center;
	text-transform: uppercase;
	padding: 10px 0;
}

.breadcrumbs li:not(:last-child)::after {
	content: "";
	display: inline-block;
	width: 10px;
	height: 1px;
	background-color: #000;
	margin: 0 10px;
}

.breadcrumbs,
.breadcrumbs a {
	color: #021640;
}


@media screen and (min-width: 961px) {

	br.pc {
		display: block;
	}

	br.sp {
		display: none;
	}

	.breadcrumbs {
		padding-left: 20px;
		font-size: 0.9rem;
	}

	.breadcrumbs li:not(:last-child)::after {
		width: 13px;
	}

}


/* header */

.inner {
	width: 100%;
	display: flex;
	align-items: center;
}

#header {
	width: 100%;
	background: rgba(2, 22, 64, 0.9);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	transition: height .3s ease, padding .3s ease;
	border-bottom: 1px solid #EFDFBD;
}

.header-inner {
	margin: 0 auto;

	display: flex;
	align-items: center;
	justify-content: space-between;
}

#header h1,
#header h1 img {
	width: 100%;
}

#header h1 {
	max-width: 200px;
	padding: 10px 20px;
}

#nav-toggle {
	position: absolute;
	top: 15px;
	right: 20px;
	width: 30px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 6px;
	z-index: 2000;
}

#nav-toggle span {
	display: block;
	height: 3px;
	background: #fff;
	transition: transform .3s ease, opacity .3s ease;
}

#nav-toggle.active span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

#nav-toggle.active span:nth-child(2) {
	opacity: 0;
}

#nav-toggle.active span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

#global-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(2, 22, 64, 0.82);
	z-index: 500;
	padding: 120px 20px 20px;
	opacity: 0;
	pointer-events: none;
	transition: opacity .35s ease;
}

#global-nav.open {
	opacity: 1;
	pointer-events: auto;
}

#global-nav ul {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 1rem;

}

#global-nav ul li {
	margin-bottom: 24px;
}

#global-nav a {
	display: block;
	color: #fff;
	text-decoration: none;
}

#global-nav ul li a span {
	position: relative;
	display: inline-block;
}

#global-nav ul li a span::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #fff;
	bottom: 0px;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform 0.3s;
}

#global-nav ul li a span:hover::after {
	transform: scale(1, 1);
	transform-origin: left top;
}

#global-nav a img {
	display: inline-block;
	width: 15px;
	margin: 3px 0 0 10px;
}

.is-resize #global-nav {
	transition: none;
}

.os_link {
	padding-top: 40px;
}

nav#global-nav span.en {
	position: relative;
	top: 1px;
}



#global-nav ul li {
	margin-bottom: 20px;
}

@media screen and (min-width: 960px) {

	#header h1 {
		max-width: none;
		width: clamp(220px, 20vw, 260px);
		flex-shrink: 1;
	}

	#nav-toggle {
		display: none;
	}

	#global-nav {
		position: static;
		width: auto;
		height: auto;
		background: transparent;
		padding: 0;
		transition: none;
		opacity: 1;
		pointer-events: auto;

	}

	#global-nav ul {
		flex-direction: row;
		flex-shrink: 1;
	}

	#global-nav ul li {
		margin-bottom: 0;
		font-size: clamp(12px, 1.3vw, 16px);
		padding: 30px clamp(6px, 1.2vw, 10px);
	}

	#global-nav ul li.os_link {
		border-left: 1px solid #EFDFBD;
		margin-left: clamp(10px, 1.5vw, 5px);
		padding-left: clamp(12px, 1.5vw, 20px);
		padding-right: clamp(12px, 1.5vw, 20px);
	}

}

/* footer */

footer#mainfoot {
	background: #021640 url("assets/bg_demin.png") repeat center;
	background-size: 256px;
}

footer#mainfoot,
p.footer_address a,
p.footer_tel,
nav.footer_nav a {
	color: #fff;
}

div.footer_inner {
	display: flex;
	flex-direction: column;
	padding: 60px 10px 0;
}

p.footer_logo {
	max-width: 300px;
	padding-bottom: 20px;
}

p.footer_logo img {
	width: 100%;
}

p.footer_tel,
p.footer_address {
	padding-bottom: 6px;
}
p.footer_tel a {
	color: #fff;
	text-decoration:none;
}
div.footer_insta {
	display: flex;
	padding-top: 10px;
}

div.footer_insta p {
	border: 1px solid #fff;
	margin-right: 10px;
	text-align: center;
	font-size: 0.6875rem;
	transition: background-color 0.3s ease, color 0.3s ease;
}

div.footer_insta p a {
	position: relative;
	text-decoration: none;
	display: block;
	width: 69px;
	height: 58px;
	color: #fff;
	transition: color 0.3s ease;
	padding-top: 35px;
	overflow: hidden;
}

div.footer_insta p a::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 11px;
	transform: translateX(-50%);
	width: 20px;
	height: 20px;
	background: url("assets/icon-insta.svg") no-repeat center/contain;
	opacity: 1;
	transition: opacity 0.3s ease, background-image 0.3s ease;
}

div.footer_insta p:hover {
	background-color: #fff;
}

div.footer_insta p:hover a {
	color: #021640;
}

div.footer_insta p:hover a::before {
	background-image: url("assets/icon-insta-b.svg");
	opacity: 1;
}


div.footer_right {
	text-align: right;
	padding-top: 20px;
}


nav.footer_nav ul li {
	padding-bottom: 10px;
}

nav.footer_nav ul li a {
	text-decoration: none;
	position: relative;
}

nav.footer_nav ul li a::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #fff;
	bottom: 0px;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform 0.3s;
}

nav.footer_nav ul li a:hover::after {
	transform: scale(1, 1);
	transform-origin: left top;
}

p.footer_address img,
nav.footer_nav ul li img {
	display: inline-block;
	width: 15px;
	margin: 3px 0 0 10px;
}

p#copy {
	position: relative;
	text-align: center;
	padding: 20px 0;
	font-family: "Josefin Sans", serif;
	font-size: 0.875rem;
	margin-top: 40px;
}

p#copy::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 1px;
	background-image: repeating-linear-gradient(to right,
			#EFDFBE 0 7px,
			transparent 5px 11px);
	background-size: auto 1px;
	background-repeat: repeat-x;
}

#pageTop a {
	color: #fff;
}

#pageTop a span.scup {
	position: fixed;
	bottom: 10px;
	right: 10px;
	width: 50px;
	height: 50px;
	box-sizing: border-box;
	background: rgba(2, 22, 64, 0.9);
	border: 1px solid #EFDFBD;
}

#pageTop a span.scup::after {
	position: absolute;
	top: 70%;
	left: 50%;
	content: '';
	width: 16px;
	height: 16px;
	margin: -12px 0 0 -8px;
	border-top: 1px solid #EFDFBD;
	border-right: 1px solid #EFDFBD;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	box-sizing: border-box;
}

#pageTop a span.scup::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	content: '';
	width: 44px;
	height: 44px;
	box-shadow: 0 0 0 0 rgba(255, 255, 255, .1);
	border-radius: 100%;
	opacity: 0;
	box-sizing: border-box;
}


@media screen and (min-width: 961px) {

	div.footer_inner {
		flex-direction: row;
		justify-content: space-between;
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		padding: 120px 40px 80px;
	}


	p.footer_logo {
		max-width: 400px;
	}

	p.footer_address,
	nav.footer_nav ul li a {
		font-size: 1.125rem;
	}

	div.footer_right {
		display: flex;
		justify-content: flex-start;
		text-align: left;
	}

	nav.footer_nav {
		padding-left: 40px;
	}

	p#copy {
		font-size: 1rem;
	}

	p.ffooter_address img,
	nav.footer_nav ul li img {
		width: 18px;
	}
}

/* index */
div#index_fv {
	background-size: cover;
	width: 100vw;
	height: 100vh;
}

div.fv_wrap {
	width: 100%;
	margin: 0 auto;
	position: relative;
	height: 100vh;
	background: rgba(1, 17, 49, 0.60);
}

.fv_message {
	position: absolute;
	bottom: 10vh;
	color: #fff;
	right: 20px;
	text-align: right;
}

.fv_message h2 {
	font-size: clamp(2rem, 5vw, 6.25rem);
	line-height: 1;
}

#index_hero {
	width: 100%;
}

.index_hero_1,
.index_hero_2,
.index_hero_3 {
	width: 100%;
	position: relative;
}

.index_hero_1 .bg_layer {
	position: absolute;
	inset: 0;
	background: #021640 url(assets/bg_demin.png) repeat center;
	z-index: -1;

	height: calc(100% + 60px);
	bottom: -120px;

	clip-path: polygon(0 0,
			100% 0,
			100% calc(100% - 40px),
			0 100%);
}

.index_hero_1 .bg_layer::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 40px;
	height: 1px;
	background-image: repeating-linear-gradient(to right, #EFDFBE 0 7px, transparent 5px 11px);
	background-size: auto 1px;
	background-repeat: repeat-x;
}

.index_hero_1 .hero_img img,
.index_hero_3 .hero_img img {
	margin-left: auto;
}

.index_hero_1 {
	color: #fff;
	padding-top: 40px;
}

.index_hero_2,
.index_hero_3 {
	color: #021640;
}

.hero_inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	padding: 40px 20px;
}

.index_hero_2 {
	padding-top: 20px;
}

.hero_txt {
	margin-bottom: 20px;
}

.hero_txt h2 {
	font-size: 2rem;
	line-height: 1;
	font-family: "Josefin Sans", sans-serif;
	padding-bottom: 20px;
}

.hero_txt p {
	font-weight: 500;
}

.index_hero_2 .hero_txt {
	text-align: right;
}

.hero_img img {
	width: 80%;
	height: auto;
	display: block;
}

.index_hero_1 img {
	max-width: 730px;
}

.index_hero_2 img {
	max-width: 650px;
}

.index_hero_3 img {
	max-width: 670px;
}

p.hero_readmore {
	padding-top: 20px;
	padding-bottom: 20px;
}

.news_nav box a,
.hero_readmore a {
	display: inline-block;
	text-decoration: none;
	line-height: 1.3;
}

.rm_top {
	display: block;
	font-size: 0.75rem;
	margin-bottom: 0.4em;
	margin-left: calc(80px + 10px);
}

.rm_row {
	display: flex;
	align-items: center;
	gap: 10px;
}

.rm_line {
	display: block;
	width: 80px;
	height: 1px;
	flex-shrink: 0;
}

.rm_main {
	display: inline-block;
	font-size: 0.875rem;
	padding: 0 0.4em;
}

.index_hero_1 .hero_readmore a {
	color: #fff;
}

.index_hero_1 .rm_line {
	background: #fff;
}

.index_hero_1 .rm_main {
	background: #fff;
	color: #021640;
}

.index_hero_2 .hero_readmore a,
.index_hero_3 .hero_readmore a {
	color: #021640;
}

.index_hero_2 .rm_line,
.index_hero_3 .rm_line {
	background: #021640;
}

.index_hero_2 .rm_main,
.index_hero_3 .rm_main {
	background: #021640;
	color: #fff;
}

.index_hero_2 .hero_readmore a {
	text-align: left;
	display: inline-block;
}

div.shop_title_wrap {
	padding: 0 10px;
}

.shop_title {
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
	font-size: 5rem;
	margin: 0;
}

.shop_title_wrap {
	background: #fff;
	color: #021640;
	position: relative;
	z-index: 2;
	padding-top: 3rem;
	padding-bottom: 1rem;
}

#index_shop {
	position: relative;
	overflow: hidden;
	background: url("assets/index_shop_bg.jpg") repeat-x;
	background-size: auto 100%;
	animation: shopBgScroll 90s linear infinite;
	margin: 0 auto 60px;
	padding: 0 0 60px;
}


.index_shop_inner {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 0 10px;
}

.shop_title_lower {
	color: #fff;
	text-align: left;
	padding-top: 20px;
}

h3.index_shop_h3_jp {
	text-align: left;
	margin-top: -6px;
	color: #fff;
	padding-bottom: 40px;
}

h3.index_shop_h3_en {
	text-align: left;
	color: #fff;
	font-size: 1.25rem;
	padding-left: 10px;
	padding-bottom: 20px;
}

div.index_shop_about {
	display: flex;
	flex-direction: column;
}

div.index_shop_l {
	background: #fff;
	display: flex;
	flex-direction: column;
	padding: 20px;
	align-self: flex-start;
	color: #021640;
	font-weight: 700;
}

div.index_shop_l div:first-of-type {
	align-self: flex-start;
	padding-bottom: 20px;
	text-align: left;
}

div.index_shop_l div:last-of-type {
	align-self: flex-end;
}

div.index_shop_r {
	align-self: flex-end;
}

div.index_shop_r img {
	width: 100%;
}

div.index_shop_l,
div.index_shop_r {
	width: 70%;
	margin-bottom: 20px;
}

ul.item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	list-style: none;
	padding: 0 10px 0;
	;
	margin: 0;
}

ul.item-list li {
	display: flex;
	flex-direction: column;
	background: #f5f5f5;
	padding: 8px;
	flex: 0 0 calc(50% - 10px);
	box-sizing: border-box;
	width: 50%;
}

ul.item-list li img {
	width: 100%;
	height: auto;
	object-fit: cover;
	padding: 10px 10px 0;
}

ul.item-list li p.item_title {
	font-weight: bold;
	margin: 8px 0 4px;
	text-align: left;
	color: #00051F;
	padding: 0 10px;
}

ul.item-list li p.item_price {
	margin-top: auto;
	text-align: right;
	padding: 0 10px 10px 0;
	font-weight: 500;

}

ul.item-list li p.item_price span {
	font-size: 0.6875rem;
	display: inline-block;
	padding-left: 6px;
}

@keyframes shopBgScroll {
	from {
		background-position: 0 0;
	}

	to {
		background-position: -100% 0;
	}
}

article#index_body {
	width: 100%;
	margin: 0 auto;
	padding-bottom: 100px;
}

section#index_insta {
	padding: 0 10px 80px;
}

section#index_insta h2 {
	text-align: center;
	color: #021640;
	font-size: clamp(2rem, 5vw, 6.25rem);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 0.25em;
	margin: 0 auto 60px;
	width: 100%;
}

section#index_insta h2 span {
	display: inline-block;
	transform: translateY(0.12em);
}

section#index_insta h2::before {
	content: "";
	display: inline-block;
	width: 0.9em;
	height: 0.9em;
	background: url("assets/icon-insta-b.svg") no-repeat center;
	background-size: contain;
}

div.insta_wrap {
	padding: 0 20px 40px;
	width: 100%;
}

div.insta_cover {
	display: flex;
	flex-direction:column;
}

div.insta_wrap h3 {
	font-weight: 700;
	font-size: 1.125rem;
	color: #021640;
	padding-bottom: 20px;
}

div.insta_wrap h3 span {
	display: inline-block;
	background: #02164d;
	color: #fff;
	font-weight: 400;
	font-size: 0.75rem;
	padding: 2px 5px;
	margin-left: 20px;
	transform: translateY(-0.12em);
}

div.insta_wrap h3 span img {
	width: 1.2em;
	height: 1.2em;
	display: inline-block;
	padding-top: 3px;
}

div.index_insta_foot {
	text-align: right;
	font-weight: 500;
	font-size: 0.875rem;
	padding-top: 20px;
}

div.index_insta_foot a {
	display: inline-flex;
	align-items: center;
	gap: 0.75em;
	text-decoration: none;
	color: #021640;
	position: relative;
}

div.index_insta_foot a::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #021640;
	bottom: 0px;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform 0.3s;
}

div.index_insta_foot a:hover::after {
	transform: scale(1, 1);
	transform-origin: left top;
}

div.index_insta_foot a::before {
	content: "";
	display: inline-block;
	width: 80px;
	height: 1px;
	background: #021640;
	transform: translateY(0.05em);
}

div.index_insta_foot img {
	width: .8em;
	height: .8em;
	transform: translateY(-0.12em);
}


aside#index_rec {
	padding: 0 10px;

}

aside#index_rec img {
	width: 100%;
	opacity: 1;
	transition-property: opacity;
	transition-duration: 0.3s;
}

aside#index_rec img:hover {
	opacity: .8;
}

@media screen and (max-width: 460px) {

	.fv_message {
		right: 10px;
	}

	div.index_shop_l,
	div.index_shop_r {
		width: 100%;
	}

	ul.item-list li {
		flex: 0 0 100%;
		box-sizing: border-box;
	}

	div.insta_wrap h3 {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}

	div.insta_wrap h3 span {
		margin-left: 0;
		margin-top: .4em;
		transform: none;
	}
}

@media screen and (min-width: 961px) {

	.fv_message {
		right: 80px;
	}

	.hero_inner {
		padding: 100px 20px 0px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 40px;
	}

	.index_hero_1 .bg_layer {
		height: calc(100% + 160px);
		bottom: -260px;

		clip-path: polygon(0 0,
				100% 0,
				100% calc(100% - 160px),
				0 100%);
	}

	.index_hero_1 .hero_inner {
		flex-direction: row;
	}

	.index_hero_2 .hero_inner {
		flex-direction: row-reverse;
	}

	.index_hero_3 .hero_inner {
		flex-direction: row;
	}

	.hero_txt {
		width: 45%;
		padding: 0 20px;
	}

	.hero_txt h2 {
		font-size: 4rem;
		padding-bottom: 40px;
	}

	.hero_img {
		width: 55%;
		position: relative;
	}

	.hero_img img {
		width: 100%;
	}

	.hero_txt p {
		font-size: 1.3rem;
	}

	.index_hero_1::after {
		height: 400px;
		clip-path: polygon(0 0%, 100% 60%, 100% 100%, 0 100%);
	}

	.shop_title {
		font-size: 10rem;
	}

	div.shop_title_wrap {
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 40px;
	}

	section#index_shop {
		margin: 0 auto 120px;
		padding: 0 0 120px;
	}


	.index_shop_inner {
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 40px;
	}

	.shop_title_lower {
		padding-top: 40px;
	}

	h3.index_shop_h3_jp {
		font-size: 1.5rem;
		margin-top: -10px;
		padding-left: 10px;
		padding-bottom: 80px;
	}

	h3.index_shop_h3_en {
		font-size: 2.25rem;
		padding-bottom: 40px;
	}

	div.index_shop_about {
		flex-direction: row;
		align-items: center;
		padding-bottom: 60px;
	}

	div.index_shop_l {
		padding: 40px 20px;
		margin-right: 20px;
		align-self: center;
	}

	div.index_shop_l div:first-of-type {
		padding-bottom: 40px;
	}

	div.index_shop_r {
		margin-left: 20px;
	}

	ul.item-list li {
		flex: 0 0 calc(25% - 15px);
	}

	section#index_insta {
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 40px 120px;
	}

	
	div.insta_wrap {
	padding: 0 20px 40px;
	width: 50%;
}

div.insta_cover {
	display: flex;
	flex-direction:row;
}
	section#index_insta h2 {
		margin-bottom: 80px;
	}

	div.insta_wrap h3 {
		font-size: 1.25rem;
	}

	div.insta_wrap h3 span {
		transform: translateY(-0.4em);
	}


	div.index_insta_foot {
		font-size: 1rem;
	}

	article#index_body {
		padding-bottom: 200px;
	}

	aside#index_rec {
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 40px;

	}

}

section#index_news {
	padding: 80px 10px;
}

section#index_news h2 {
	text-align: right;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
	font-size: 5rem;
	margin: 0;
	color: #021640;
}

section#index_news h2 span {
	display: block;
	font-size: 1.5rem;
	padding-right: 5px;
	padding-bottom: 80px;
	letter-spacing: .0rem;
}

ul.list_wrap {
	margin: 0 auto 40px;
	border-top: 1px solid #0f1f3f;
}


.list_wrap li {
	border-bottom: 1px solid #0f1f3f;
	padding: 0 20px;
}

.list_wrap li a {
	display: block;
	position: relative;
	padding: 1.6em 0;
	color: inherit;
	text-decoration: none;
	padding-right: 55px;
}

.list_wrap li a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;

	width: 44px;
	height: 5px;

	background: url("assets/list_arrow.svg") no-repeat center right;
	background-size: contain;

	transform: translateY(-50%);
	transition: transform 0.3s ease;
}

.list_wrap li a:hover::after {
	transform: translate(4px, -50%);
}


.news_list_date {
	font-weight: 400;
	margin-right: .5em;
}

.news_list_cat {
	background: #0f1f3f;
	color: #fff;
	padding: 2px 15px;
	font-size: 0.75rem;
	margin-left: 1em;
}

.news_list_title {
	margin-top: 0.4em;
}

@media screen and (min-width: 961px) {
	section#index_news h2 {
		font-size: 10rem;
	}

	section#index_news {
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		padding: 120px 40px 120px;
	}

	ul.list_wrap {
		margin: 0 auto 60px;
		border-top: 1px solid #0f1f3f;
	}

	.news_list_date {
		font-size: 1.25rem;
	}

	.news_list_title {
		font-size: 1.1rem;
	}
}

/* quality */
.page-id-13 #content01 {
	background: url(assets/quality_bg01.jpg) no-repeat center;
	background-size: cover;
}

.page-id-13 #content01 h3 {
	font-size: 125%;
	padding-bottom: 1.7em;
}

ul.slides img {
	width: 100%;
}

ss3-force-full-width {
	display: inline !important;
}

.page-id-13 #content01 p.txt01 {
	padding-top: 1.7em;
	font-weight: 500;
}

.page-id-13 #content02 {
	width: 100%;
	position: relative;
}

.page-id-13 #content02 .bg_layer {
	position: relative;
	overflow: hidden;
}

.page-id-13 #content02 .bg_layer::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #021640 url(assets/bg_demin.png) repeat center;
	transform: skewY(-10deg) translatey(50%);
	z-index: -1;
}

.quality_box {
	color: #FFF;
	padding: 5em 0 0;
}

.quality_content02 .txt01 {
	padding: 0.5em 1.5em;
	text-align: justify;
	text-justify: inter-ideograph;
}

.quality_content02_photo {
	width: 60%;
	max-width: 380px;
	padding: 0 0 4em;
}

.quality_content02_photo img {
	width: 100%;
}

.quality_content02_txt p {
	padding: 6px 0;
	padding-left: 25px;
}

.quality_content02_txt .txt02 {
	font-size: 140%;
	line-height: 1;
}

.quality_content02_txt .txt02 span {
	font-size: 65%;
}

.quality_content02_txt .txt04 {
	text-align: justify;
	text-justify: inter-ideograph;
}

.quality_content02_txt .txt04 span {
	font-size: 120%;
	padding-bottom: 12px;
	display: inline-block;
}

.quality_hero_3 {
	text-align: right;
}

.quality_hero_3 .txt01 {
	font-size: 85%;
	padding-top: 2em;
}

.quality_box02 {
	padding: 1em 0 3em;
}

.quality_box02 .txt02 {
	padding-bottom: 1em;
}

.quality_box02 ul {
	width: 100%;
	padding: 1em 0;
}

.quality_box02 ul img {
	width: 100%;
}

.quality_box02 ul li {
	padding: .5em 0;
}

.page-id-13 #content03 .quality_inner {
	padding: 60px 0 0;
}

.page-id-13 section.common_child {
	padding: 0 0 20px;
}

@media screen and (min-width: 961px) {
	.page-id-13 .hero_txt {
		width: 100%;
	}

	.page-id-13 #content01 h3 {
		font-size: 160%;
		padding-bottom: 2.2em;
		padding-top: 1.5em;
	}

	.page-id-13 #content01 p.txt01 {
		padding-top: 2.5em;
	}

	.quality_content02 {
		padding-top: 3em;
	}

	.page-id-13 #content02 .bg_layer::before {
		transform: skewY(-9deg) translatey(58%);
	}

	.quality_box {
		display: flex;
		align-items: flex-end;
		padding: 10em 1.5em 4em;
	}

	.quality_box02 .txt02 {
		padding: 0 0 1em 1.6em;
	}

	.quality_content02_photo {
		width: 100%;
		padding: 0;
	}

	.quality_content02_txt {
		padding-left: 3em;
	}

	.quality_box02 ul {
		display: flex;
		flex-wrap: wrap;
		height: auto;
		justify-content: center;
	}

	.quality_box02 ul li {
		width: 33.3%;
		padding: .8em .4em;
	}

	.page-id-13 section.common_child {
		padding: 0 0 80px;
	}


}

/* factory */
#post-15 div.content_column {
	padding-bottom: 0px;
}

.card_f {
	color: #021640;
	display: flex;

}

.number_f {
	font-size: 5rem;
	padding-right: 20px;
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 500;
}

.card_f .txt01 {
	padding-top: 1.5em;
}

.card_f .txt01 span {
	display: block;
}

.card_f .txt01 .jp {
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	padding-bottom: .4em;
}

.card_f .txt01 .jp::after {
	width: 1px;
	height: 28px;
	content: "";
	background-color: #021640;
	margin-right: 0.5em;
	transform: rotate(30deg);
	margin-left: 15px;
}

.factory_img img {
	width: 100%;
}

#post-15 .txt02 {
	text-align: justify;
	font-weight: 500;
	padding-bottom: 1.2em;
}

.factory_line {
	position: relative;
	padding-bottom: 110px;
}

.factory_line::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 1px;
	height: 48px;
	background: #021640;
}

@media screen and (min-width: 961px) {

	.post-15 .content_title {
		width: 280px;
	}

	.post-15 div.content_main {
		padding-top: 25px;
	}

	.card_f {}

	.number_f {
		padding-right: 30px;
	}

	.card_f .txt01 {
		padding-bottom: 0;
	}

	#post-15 .txt02 {
		padding-bottom: 2em;
	}

	.factory_line {
		padding-bottom: 180px;
	}

	.factory_line::after {
		height: 85px;
	}

	#factory02 .card_f .txt01 .jp,
	#factory05 .card_f .txt01 .jp {
		align-items: flex-end;
	}

	#factory05 .card_f .txt01 .jp::after {
		margin-left: -13px;
	}

	#factory10 .content_main {
		padding-bottom: 2em;
	}


}

/* shop */
.page-id-21 section#content01 {
	background: #F5F5F5;
}

.quality_hero_1,
.shop_hero_1,
.shop_hero_2 {
	text-align: right;
}

.quality_hero_1 .hero_inner,
.shop_hero_1 .hero_inner,
.shop_hero_2 .hero_inner {
	justify-content: flex-end;
}

.quality_inner,
.shop_inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 0 80px;
}

.quality_inner02,
.shop_inner02 {
	width: 100%;
	padding: 0 20px;
}

.shop_content01 .txt01 {
	font-size: 95%;
	padding-bottom: 3em;
}

.shop_content01 .txt02 {
	color: #021640;
	font-size: 110%;
	font-weight: 500;
	padding-bottom: 3em;
}

.shop_content01_photo img {
	width: 100%;
}

.shop_map {
	padding: 60px 0;
}

.quality_content03 h3,
.quality_content02 h3,
.page-id-21 .shop_online h3 {
	font-size: 125%;
	display: flex;
	align-items: center;
	line-height: 1;
	color: #021640;
	padding-bottom: 30px;
}

.quality_content02 .quality_box h3 {
	color: #FFF;
}

.quality_content03 h3::before,
.quality_content02 h3::before,
.page-id-21 .shop_online h3::before {
	width: 1px;
	height: 28px;
	content: "";
	background-color: #021640;
}

.quality_content02 .quality_box h3::before {
	background-color: #FFF;
}

.quality_content03 h3::before,
.quality_content02 h3::before,
.page-id-21 .shop_online h3::before {
	margin-left: 0.5em;
	transform: rotate(30deg);
	margin-right: 15px;
}

.shop_online .txt01 {
	font-size: 95%;
	padding-bottom: 2.5em;
}

.shop_online img {
	display: inline-block;
	width: 17px;
	margin: 3px 5px 7px 10px;
}

.page-id-21 #content02 .tc_b,
.shop_hero_2 .hero_txt {
	color: #FFF;
}

.page-id-21 #content02 {
	background: #021640 url(assets/bg_demin.png) repeat center;
	background-size: 256px;
}

.shop_content02 .txt01 {
	color: #FFF;
	font-weight: 500;
	font-size: 120%;
	padding-bottom: 2em;
}

.shop_content02_photo {
	max-width: 550px;
}

.shop_content02_photo img {
	width: 100%;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	margin-top: 30px;
}

.gallery-item img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	cursor: pointer;
    opacity: 1;
    transition: opacity 0.4s;
}
.gallery-item img:hover {
	opacity: 0.7;
}

.lightbox {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.9);
	animation: fadeIn 0.3s;
}

.lightbox-content {
	margin: auto;
	display: block;
	max-width: 90%;
	max-height: 90%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: zoomIn 0.3s;
}

.lightbox-close {
	position: absolute;
	top: 20px;
	right: 40px;
	color: #021640;
	font-size: 40px;
	font-weight: bold;
	cursor: pointer;
	transition: 0.3s;
}

.lightbox-close:hover {
	color: #294278
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes zoomIn {
	from {
		transform: translate(-50%, -50%) scale(0.5);
	}

	to {
		transform: translate(-50%, -50%) scale(1);
	}
}

@media screen and (min-width: 961px) {
	.shop_inner {
		padding: 100px 0px 80px;
	}

	.shop_content01,
	.shop_content02 {
		padding: 90px 40px;
		display: flex;
	}

	.shop_content01 {
		justify-content: space-between;
	}

	.shop_content02 {
		flex-direction: row-reverse;
	}

	.shop_content01 .txt01 {
		font-size: 105%;
		padding-bottom: 5em;
	}

	.shop_content01 .txt02 {
		font-size: 130%;
	}

	.shop_content01_photo {
		width: 50%;
	}

	.shop_online {
		padding: 50px 0;
	}

	.quality_content03 h3,
	.quality_content02 h3,
	.page-id-21 .shop_online h3 {
		font-size: 140%;
	}

	.shop_online .txt01 {
		font-size: 105%;
	}

	.shop_content02_photo {
		width: 43%;
	}

	.shop_content02 .txt01 {
		font-size: 125%;
		width: 42%;
		padding-left: 4%;
		padding-bottom: 0;
	}

	.gallery-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.gallery-item img {
		height: 300px;
	}

	.lightbox-close {
		top: 40px;
		right: 60px;
	}

	.quality_content01,
	.quality_content02,
	.quality_content03,
	.shop_map,
	.shop_online,
	.shop_content03 {
		padding-left: 40px;
		padding-right: 40px;
	}

}


/* news */
.news_inner {
	border-bottom: 1px solid #021640;
	padding: 0 10px 20px;
}

.news_txt h2 {
	font-size: 1.8rem;
	font-weight: normal;
	padding-bottom: 20px;
}

.news_ymd {
	text-align: right;
	padding: 20px 0;
}

.news_detail_body {
	padding: 20px 0;
}

div.news_nav2 {
	padding: 50px 0 80px;
	display: flex;
	justify-content: space-between;
}

.news_nav2 a {
	font-size: 0.875rem;
	color: #021640;
	text-decoration: none;
	display: flex;
	align-items: center;
	text-align: center;
}

.news_nav2 .sub_next a::before,
.news_nav2 .sub_prev a::after {
	content: "";
	flex-grow: 1;
	height: 1px;
	background: #021640;
	width: 30px;
	position: relative;
	top: -7px;
}

.news_nav2 .sub_next a::before {
	margin-right: 15px;
}

.news_nav2 .sub_prev a::after {
	margin-left: 15px;
}

.news_nav2 .sub_next a::after {
	content: "NEXT";
	position: relative;
	top: -19px;
	left: -97px;
	font-size: 0.775rem;
}

.news_nav2 .sub_prev a::after {
	margin-left: 15px;
}

.news_nav2 .sub_prev a::before {
	content: "PREV";
	position: relative;
	top: -19px;
	right: -70px;
	font-size: 0.775rem;
}

.news_btn {
	display: block;
	border: none;
	background: none;
	padding: 0;
	margin: auto;
}

nav.pagination_news{
	width: 100%;
}

nav.pagination_news ul {
    display: flex;
    justify-content: center;
	color: #0f1f3f;
}

nav.pagination_news ul li a {
	padding: 4px 10px;
	color: #0f1f3f;
	text-decoration: none;
}
nav.pagination_news ul li span {
	background: #0f1f3f;
	color: #FFF;
	padding: 4px 10px;
}

@media screen and (min-width: 961px) {
	.news_inner {
		padding: 0 25px 20px;
	}
	.news_txt h2 {
	font-size: 2.8rem;
}

}

/* policy */

.child_inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	padding: 40px 20px 80px;
}

.policy_txt h3 {
	font-weight: 600;
	font-size: 1.4rem;
	color: #021640;
	padding-bottom: 30px;
}

.policy_txt p {
	padding-bottom: 45px;
}

.policy_txt p a {
	color: #021640;
}


.page-id-13 .hero_txt h2,
.page-id-21 .hero_txt h2,
.page-id-3 .hero_txt h2 {
	padding-bottom: 12px;
}

@media screen and (min-width: 961px) {
	.page-id-3 .hero_txt {
		width: 100%;
	}

	.page-id-13 .hero_txt h2,
	.page-id-21 .hero_txt h2,
	.page-id-3 .hero_txt h2 {
		padding-bottom: 25px;
	}

	.child_inner {
		padding: 100px 20px 0px;
	}

	.policy_txt {
		padding: 0 20px;
	}

}

.breadcrumbs a {
	display: inline-flex;
	align-items: center;
	gap: 0.75em;
	text-decoration: none;
	color: #021640;
	position: relative;
}

.breadcrumbs a::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #021640;
	bottom: 0px;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform 0.3s;
}

.breadcrumbs a:hover::after {
	transform: scale(1, 1);
	transform-origin: left top;
}

section.common_child {
	width: 100%;
	padding: 0 0 80px;
}

.child_head {
	position: relative;
	width: 100%;
	height: 300px;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.child_head::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(1, 17, 49, 0.68);
	z-index: 1;
}

.child_head_inner {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 10px;
	color: #fff;
}

.child_head h2 {
	font-size: clamp(3.5rem, 15vw, 5rem);
	letter-spacing: 0.01em;
	line-height: 0.6;
	margin-top: 75px;
}

.child_head h3 {
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	padding-left: 5px;
}

.child_head_recruit {
	background-image: url("assets/recruit_head.jpg");
}

.child_head_contact {
	background-image: url("assets/contact_head.jpg");
}

.child_head_quality {
	background-image: url("assets/quality_head.jpg");
}

.child_head_policy {
	background-image: url("assets/policy_head.jpg");
}

.child_head_news {
	background-image: url("assets/news_head.jpg");
}

.child_head_factory {
	background-image: url("assets/factory_head.jpg");
}

.child_head_company {
	background-image: url("assets/company_head.jpg");
}

.child_head_recruit {
	background-image: url("assets/recruit_head.jpg");
}

.child_head_cotnact {
	background-image: url("assets/contact_head.jpg");
}

@media screen and (min-width: 768px) {
	.child_head {
		height: 540px;
	}

	.child_head_inner {
		margin: 0 auto;
		padding-left: 20px;
	}

	.child_head h2 {
		font-size: clamp(5rem, 15vw, 9rem);
		margin-top: 130px;
	}

	.child_head h3 {
		font-size: 2rem;
		letter-spacing: .1rem;
		padding-left: 10px;
	}
}



div.body_head {
	padding: 20px 10px 40px;
}

.child_headnav {
	margin: 0;
	padding: 0;
}

.child_headnav ol {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid #EFDFBD;
}

.child_headnav li {
	border-bottom: 1px solid #EFDFBD;
}

.child_headnav a {
	position: relative;
	display: block;
	padding: 20px 48px 10px 0px;
	text-decoration: none;
	color: inherit;
}

.child_headnav-h {
	font-size: 14px;
	letter-spacing: 0.08em;
	color: #0b1c3d;
	margin: 0 0 4px;
}

.child_headnav-b {
	font-size: 18px;
	letter-spacing: 0em;
	font-weight: 500;
	margin: 0 0 6px;
}

.child_headnav-f {
	font-size: 13px;
	color: #555;
	margin: 0;
}

.child_headnav a::after {
	content: "";
	position: absolute;
	right: 16px;
	top: 50%;
	width: 24px;
	height: 1px;
	background: #0b1c3d;
	transform: translateY(-50%);
	transition: transform 0.25s ease;
}

.child_headnav a:hover::after,
.child_headnav a:focus::after {
	transform: translate(8px, -50%);
}

.child_headnav-row {
	display: flex;
	align-items: center;
	gap: 16px;
}

.child_headnav-h {
	flex: 0 0 auto;
	font-size: 2.4rem;
	color: #0b1c3d;
	margin: 0;
	width: 100%;
	max-width: 60px;
	text-align: center;
}

.child_headnav-text {
	display: flex;
	flex-direction: column;
}

.child_headnav-b {
	font-size: clamp(1.2rem, 5vw, 1.5rem);
	font-weight: 500;
	line-height: 1.3;
}

.child_headnav-f {
	font-size: 0.8rem;
	;
	color: #555;
	font-weight: 500;
	line-height: 1.2;
	margin-top: -6px;
	margin-bottom: 15px;
}

@media screen and (min-width: 961px) {
	section.common_child {
		padding: 0 0 120px;
	}

	div.body_head {
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		padding: 40px;
	}

	.child_headnav ol {
		display: flex;
		justify-content: center;
		align-items: stretch;
		border-top: none;
		position: relative;
	}

	.child_headnav li {
		position: relative;
		border-bottom: none;
		border-right: 1px solid #EFDFBD;
		max-width: 280px;
		width: 100%;
	}

	.child_headnav li:first-child {
		border-left: 1px solid #EFDFBD;
	}

	.child_headnav a {
		padding: 20px 24px 56px;
		text-align: center;
	}

	.child_headnav-row {
		flex-direction: column;
		gap: 8px;
	}

	.child_headnav-h {
		font-size: 3rem;
		margin-bottom: 8px;
		width: 100%;
		line-height: 0.8;
	}

	.child_headnav-b {
		font-size: 1.6875rem;
		margin-bottom: 6px;
	}

	.child_headnav-f {
		font-size: 14px;
	}

	.child_headnav a::after {
		display: none;
	}

	.child_headnav li::after {
		content: "";
		position: absolute;
		left: 50%;
		bottom: 16px;
		width: 1px;
		height: 24px;
		background: #0b1c3d;
		transform: translateX(-50%);
		transition: transform 0.25s ease;
	}

	.child_headnav li:hover::after,
	.child_headnav li:focus-within::after {
		transform: translate(-50%, 8px);
	}
}


.card {
	position: relative;
	width: 150px;
	height: 220px;
	overflow: hidden;
}


.number {
	position: absolute;
	top: 15px;
	left: 15px;
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 500;
	font-size: 5rem;
	line-height: 1;
	z-index: 2;
	color: #021640;
}


.line {
	position: absolute;
	top: 20px;
	right: -40px;
	width: 300%;
	height: 1px;
	background: #021640;
	transform: rotate(-34deg);
	transform-origin: top right;
	z-index: 1;
}


.text {
	position: absolute;
	bottom: 5px;
	right: 15px;
	text-align: right;
	z-index: 2;
}

.text .en {
	display: block;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0.01rem;
	line-height: 2rem;
	color: #021640;
}

.text .jp {
	display: block;
	font-size: 0.875rem;
}


div.content_column {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 60px 10px;
}

div.content_main {
	padding-top: 20px;
}

div.common_child_sec_inner_g {
	margin: 40px 0;
	padding-bottom: 40px;
}

h4.recruit_head {
	color: #021640;
	font-weight: 500;
	font-size: 1.5rem;
	padding-bottom: 20px;
}

div.recruit_txt {
	padding-left: 10px;
}

div.recruit_txt p {
	padding-bottom: 20px;
}

.recruit_graph {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
}

.recruit_graph li {
	width: 50%;
	background: #F5F5F5;
	color: #021640;
	padding: 2rem;
	box-sizing: border-box;
	border: 1rem solid #fff;
}


.graph_label {
	font-size: 0.875rem;
	margin-bottom: 1.5rem;
}


.graph_number {
	display: flex;
	justify-content: center;
	align-items: baseline;
	line-height: 1;
}


.graph_number .num {
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 600;
	font-size: clamp(4rem, 10vw, 11.25rem);
}


.graph_number .unit {
	font-size: 1.5rem;
	font-weight: 700;
}


.graph_text {
	margin-top: 1.5rem;
	font-size: 0.875rem;
	text-align: center;
}

.graph_img img {
	width: 100%;
}

#recruit03 {
	background: #F5F5F5;
}

.commondl {
	font-size: 1rem;
	border-top: 1px solid #021640;
}

.commondl dt,
.commondl dd {
	width: 100%;
	padding: 0.75em 0;
}

.commondl dt {
	color: #021640;
	border-bottom: none;
	font-weight: 600;
}

.commondl dd {
	color: #000;
	border-bottom: 1px solid #021640;
	margin-top: -20px;
	font-weight: 400;
}


@media screen and (max-width: 460px) {
	.recruit_graph li {
		width: 100%;
		border: none;
		margin-bottom: 1rem;
	}
}

@media screen and (min-width: 961px) {

	.content_title {
		width: 200px;
	}

	.card {
		width: 185px;
		height: 300px;
	}

	.number {
		font-size: 7.1875rem;
	}

	.line {
		top: 60px;
		right: -50px;
	}

	.text .en {
		font-size: 1.875rem;
	}

	.text .jp {
		font-size: 1rem;
	}

	div.content_column {
		flex-direction: row;
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		padding: 100px 40px;

	}

	div.content_main {
		padding-left: 60px;
		flex: 1;
	}

	h4.recruit_head {
		font-size: 1.875rem;
	}

	div.recruit_txt {
		padding-left: 20px;
	}

	.commondl {
		display: flex;
		flex-wrap: wrap;
		border-top: none;
	}

	.commondl dt,
	.commondl dd {
		padding: 0.75em 20px;
		;
	}

	.commondl dt {
		width: 180px;
		display: flex;
		align-items: center;
		border-bottom: 1px solid #021640;
	}

	.commondl dd {
		width: calc(100% - 180px);
		border-bottom: 1px solid #B4B4B4;
		margin-top: 0;
	}

	div.common_child_sec_inner_g {
		margin: 60px 0;
		padding-bottom: 80px;
	}
}

/* child_Layout_20260203 */

.company_message_img {
	width: 100%;
	padding: 10px 10px 20px;
}

.company_message_img img {
	width: 100%;
}

h4.copmany_message_title {
	color: #021640;
	text-align: right;
	padding-bottom: 20px;
}

p.message_name {
	text-align: right;
	font-size: 1.25rem;
}

p.message_name span {
	display: block;
	font-size: 0.9rem;
}

#company_02,
#contact_mail {
	background: #F5F5F5;
}

div.company_map {
	width: 100%;
	padding: 0 10px 20px;
}

.timeline-container {
	max-width: 1000px;
	margin: 0 auto;
	background-color: white;
	padding: 40px 20px;
}

.timeline {
	list-style: none;
	position: relative;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 8px;
	top: 8px;
	bottom: 8px;
	width: 2px;
	background-color: #1a3a5c;
}

.timeline-item {
	position: relative;
	padding-bottom: 40px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.timeline-item:last-child {
	padding-bottom: 0;
}

.timeline-year {
	width: 100%;
	padding-left: 30px;
	padding-bottom: 12px;
}

.year-main {
	font-size: 2rem;
	font-weight: 500;
	color: #021640;
	line-height: 1;
	margin-bottom: 8px;
	font-family: "Josefin Sans", sans-serif;
}

.year-sub {
	font-size: 0.9rem;
	margin-top: -10px;
}

.timeline-dot {
	position: absolute;
	left: 8px;
	top: 15px;
	width: 16px;
	height: 16px;
	background-color: #021640;
	border-radius: 50%;
	transform: translate(-7px, -50%);
	z-index: 1;
}

.timeline-content {
	flex: 1;
	padding-left: 30px;
}

.timeline-content p {
	font-size: 0.9rem;
	color: #333;
	line-height: 1.8;
}

ul.company_photo {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	padding-top: 40px;
}

ul.company_photo li {
	width: 100%;
	max-width: 600px;
	margin: 0 auto 40px;

}

ul.company_photo li img {
	width: 100%;
}

p.company_photo_txt {
	padding-top: 10px;
}

div.contact_title {
	width: 180px;
	text-align: left;
	padding-left: 10px;
}


p.contact_tel_number,
p.contact_tel_number a {
	color: #021640;
	font-size: 2rem;
	text-align: none;
	padding-left: 10px;
}

p.contact_tel_misc {
	font-size: 0.85rem;
	padding-left: 10px;
}


@media screen and (min-width: 961px) {
	.timeline-container {
		padding: 60px 0 50px 60px;
	}

	.timeline::before {
		left: 150px;
		top: 8px;
		bottom: 8px;
	}

	.timeline-item {
		flex-direction: row;
		align-items: center;
		padding-bottom: 60px;
		position: relative;
	}

	.timeline-year {
		width: 150px;
		text-align: left;
		padding-right: 40px;
		padding-left: 0;
		padding-bottom: 0;
		flex-shrink: 0;
	}

	.year-main {
		font-size: 3rem;
		padding-top: 10px;
	}

	.year-sub {
		font-size: 0.9rem;
	}

	.timeline-dot {
		left: 150px;
		top: 50%;
		transform: translate(-50%, -50%);
		margin-top: -30px;
	}

	.timeline-content {
		padding-left: 50px;
	}

	.timeline-content p {
		font-size: 16px;
	}

	.timeline-item:last-child .timeline-dot {
		margin-top: 0;
	}

	.company_message_img {
		padding: 10px 20px 40px;
	}

	div.company_map {
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 40px 40px;
	}

	ul.company_photo {
		flex-direction: row;
	}

	ul.company_photo li {
		width: 50%;
	}

	ul.company_photo li:nth-last-of-type(odd) {
		padding-left: 20px;
	}

	ul.company_photo li:nth-last-of-type(even) {
		padding-right: 20px;
	}

	div.contact_title {
		width: 180px;
		text-align: right;
	}

	.contact_title .child_headnav-h {
		margin-left: auto;
		margin-right: 0;
	}

	p.contact_tel_number,
	p.contact_tel_number a {
		font-size: 2.4rem;
	}
}

.table-res-form {
	width: 100%;
}

.table-res-form tr {
	border-top: 1px #021640 solid;
}

.table-res-form tr:first-child {
	border-top: none;
}

.table-res-form th,
.table-res-form td {
	width: 100%;
	display: block;
}

.table-res-form th {
	padding-bottom: 0;
	text-align: left;
	color: #021640;
	font-weight: 500;
}

.table-res-form .empty {
	display: none;
}


.table-res-form th,
.table-res-form td {
	padding: 10px 0;
}

.table-res-form .requied {
	font-size: 0.75rem;
	color: #000;
	display: block;
	padding: 0.3em 0.1em 0.2em;
	border-radius: 2px;
	margin-top: -6px;
}

@media screen and (min-width: 961px) {
	.table-res-form tr {
		display: flex;
		border: none;
	}

	.table-res-form th {
		width: 30%;
		border-bottom: 1px solid #021640;
	}

	.table-res-form td {
		width: 70%;
		border-bottom: 1px solid #B4B4B4;

	}

	td.form_submit {
		border: none;
		width: 100%;
		text-align: right;
	}

	.table-res-form th,
	.table-res-form td {
		padding: 1.5em;
	}

}

.table-res-form input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
	padding: 10px;
	margin-bottom: 0.5em;
	width: 100%;
	border: none;
}

input[type="email"],
input[type="tel"] {
	max-width: 300px;
}

.table-res-form input[type="text"]:focus,
textarea:focus {
	box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.1);
}

.wpcf7-form select {
	max-width: 300px;
	width: 100%;
	padding: 8px;
	border-radius: 4px;
	border: none;
}


.wpcf7-list-item {
	margin-left: 0 !important;
	margin-right: 10px;
}

.wpcf7-list-item input[type="checkbox"] {
	margin: 0 5px 0 0;
	vertical-align: middle;
	position: relative;
	top: -1px;
}


.wpcf7-list-item-label {
	vertical-align: middle;
}

input.common_btn {
	appearance: none;
	border: none;
	-webkit-appearance: none;

	display: block;
	margin: 0 auto;
	line-height: 45px;
	padding-top: 0;

	background-image: url("assets/icon-right.svg");
	background-repeat: no-repeat;
	background-position: calc(100% - 15px) center;
	background-size: .5em;
	transition: background-position .25s ease, background-color .25s ease;
}

input.common_btn:hover {
	background-position: calc(100% - 11px) center;
}

input.common_btn:disabled {
	background-color: #ccc !important;
	background-image: url("assets/icon-right.svg");
	opacity: 0.6;
	cursor: not-allowed;
	color: #fff;
}

input.common_btn:disabled:hover {
	background-position: calc(100% - 15px) center;
}

.confirm-btn-wrap {
	padding-top: 40px;
}

.confirm-btn-wrap p {
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	gap: 20px;
	margin: 0;
}

.confirm-btn-wrap p br {
	display: none !important;
}

.confirm-btn-wrap input[type="button"].wpcf7-previous.common_btn {
	background: #888888 !important;
}

.wpcf7-spinner {
	display: none !important;
}

table.table-res-form p a {
	color: #021640;
}

@media (max-width: 600px) {
	.confirm-btn-wrap p {
		flex-direction: column !important;
		gap: 15px;
	}

	.confirm-btn-wrap .common_btn {
		width: 100% !important;
		max-width: 220px;
	}
}

p.recaptcha_read{
width:100%;
max-width:600px;
margin:0 auto;
font-size:0.75rem;
padding:20px 0;
text-align:center;}

p.recaptcha_read a{
color:#000;}
.grecaptcha-badge { visibility: hidden; }