@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, 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 {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
}
html {
	font-size: 62.5%;
}
body, table, input, textarea, select, option {
font-family: 'ヒラギノ角ゴシック','Hiragino Sans', 'Noto Sans JP', sans-serif;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}
ol, ul {
	list-style: none;
	box-sizing: border-box;
}
blockquote, q {
	quotes: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
img {
	vertical-align: top;
	max-width: 100%;
    height: auto;
}
a,
a:link {
	color: #191919;
	text-decoration: none;
}
a:visited {
	color: #191919;
}
a:hover {
	opacity: 0.7;
}
a:active {
	color: #191919;
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	margin: 0 auto;
	color: #000;
	font-size: 1.6rem;
	line-height: 1.8;
	letter-spacing: 1px;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
}
body.fixed {
	position: fixed;
	top: 0;
	width: 100%;
}
.content {
	max-width: 1100px;
	width: 95%;
	margin: 0 auto;
}
#container {
	position: relative;
	text-align: left;
	overflow: hidden;
}
#main {
	display: block;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media all and (min-width: 897px) {
	.sp {
		display: none !important;
	}
}
@media all and (max-width: 896px) {
	body {
		min-width: inherit;
		font-size: 1.5rem;
	}
	.content {
		width: 90%;
	}
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}

/*------------------------------------------------------------
	共通
------------------------------------------------------------*/
.br-tb {
	display: none;
}
.br-sp {
	display: none;
}



html[lang="en"] .en_none {
	display: none;
}
html[lang="ja"] .en_none, html[lang="auto"] .en_none, html[lang="zh-CN"] .en_none {
	display: block;
}
html[lang="en"] .en_block {
	display: block;
}
html[lang="ja"] .en_block, html[lang="auto"] .en_block, html[lang="zh-CN"] .en_block {
	display: none;
}

html[lang="zh-CN"] .cn_none {
	display: none;
}
html[lang="ja"] .cn_none, html[lang="auto"] .cn_none, html[lang="en"] .cn_none {
	display: block;
}
html[lang="en"] .cn_block {
	display: block;
}
html[lang="ja"] .cn_block, html[lang="auto"] .cn_block, html[lang="en"] .cn_block {
	display: none;
}

@media screen and (max-width:896px) {
	.br-tb {
		display: block;
	}
	.tb-off {
		display: none;
	}
	html[lang="en"] .en_br-tb {
		display: block;
	}
	html[lang="en"] .en_tb-off {
		display: none;
	}
}
@media screen and (max-width:430px) {
	.br-sp {
		display: block;
	}
	.sp-off {
		display: none;
	}
	html[lang="en"] .en_br-sp {
		display: block;
	}
	html[lang="en"] .en_sp-off {
		display: none;
	}
}


/*------------------------------------------------------------
	アニメーション
------------------------------------------------------------*/
.fadeInup {
	opacity: 0;
	visibility: hidden;
	transform: translate(0, 30px);
	transition: 0.75s;
}
.fadeInup.active {
	opacity: 1;
	visibility: visible;
	transform: translate(0, 0);
}
.fadeIn {
	opacity: 0;
	visibility: hidden;
	transition: 0.75s;
}
.fadeIn.active {
	opacity: 1;
	visibility: visible;
}


#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 1200;
	background: #2568B2;
	text-align:center;
}
#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: none;
	width: 100%;
}
#splash_logo h1 {
	width: fit-content;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	color: #fff;
	font-weight: normal;
	line-height: 1.0;
	text-align: center;
	margin: 0 auto;
}
#splash_logo h1 .top {
	display: grid;
	grid-template-columns: auto auto;
	gap: 10px;
	width: fit-content;
	margin: 0 auto;
}
#splash_logo h1 .top img {
	width: 100%;
}
#splash_logo h1 .top .inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 3px;
}
#splash_logo h1 .top .inner span:first-child {
	font-size: 14px;
}
#splash_logo h1 .top .inner span:last-child {
	font-size: 25px;
}
#splash_logo h1 .bottom span {
	font-size: 11px;
}

@keyframes fadeIn{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}



/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#header {
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 100;
}
#header .header_content {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	justify-items: center;
	padding-right: 130px;
}
#header.top .header_nav, #header.top .header_btn, .sp_menu, .mainvisual_news {
	opacity: 0;
}
.sp_menu {
	position: fixed;
	top: 0;
	right: 0;
	width: 100px;
	height: 100px;
	transform: translate(0, 0);
	z-index: 1;
}
#header .header_logo h1 a {
	width: fit-content;
	background-color: #2568B2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #fff;
	font-weight: normal;
	padding: 30px;
	line-height: 1.0;
	text-align: center;
}
#header .header_logo h1 a .top {
	display: grid;
	grid-template-columns: auto auto;
	gap: 10px;
}
#header .header_logo h1 a .top .inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
#header .header_logo h1 a .top .inner span:first-child {
	font-size: clamp(5px, 1.3vw, 10px);
}
#header .header_logo h1 a .top .inner span:last-child {
	font-size: clamp(11px, 2.7vw, 21px);
}
#header .header_logo h1 a .bottom span {
	font-size: clamp(5px, 1vw, 10px);
}
#header .header_nav nav ul {
	display: flex;
	gap: 30px;
	font-size: 14px;
}
#header .header_nav nav ul li a {
	color: #fff;
	font-weight: 600;
}
#header .header_btn {
	display: grid;
	grid-template-columns: auto auto;
	align-items: center;
}
#header .header_recruit a {
	background-color: #000;
	padding: 8px 15px 8px 25px;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 15px;
	border-radius: 50vh;
	color: #fff;
	font-size: 13px;
}
#header .header_recruit a::after {
	content: "";
	background: url(../img/btn_icon_01.svg) no-repeat center;
	background-size: contain;
	filter: invert(100%);
	width: 22px;
	height: 10px;
}
#header .header_lang {
	position: relative;
}
#header .header_lang::after {
	content: "";
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translate(0, -50%);
	border-top: 5px solid #fff;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
}
#header .header_lang select {
	border: 1px solid #fff;
	background-color: transparent;
	color: #fff;
	padding: 5px 25px 5px 15px;
	border-radius: 50vh;
	font-size: 13px;
	text-align: center;
	appearance: none;
	font-family: 'ヒラギノ角ゴシック','Hiragino Sans', 'Noto Sans JP', sans-serif;
}

@media screen and (max-width:1250px) {
	#header .header_content {
		padding-right: 100px;
	}
	#header .header_nav nav ul {
		font-size: 12px;
		gap: 20px;
	}
}
@media screen and (max-width:1100px) {
	#header .header_content {
		grid-template-columns: auto auto;
		justify-content: space-between;
	}
	#header .header_nav {
		display: none;
	}
}
@media screen and (max-width:896px) {
	#header .header_content {
		padding-right: 75px;
	}
	#header .header_logo h1 a {
		padding: 20px 15px;
	}
	#header .header_logo h1 a .top {
		gap: 5px;
	}
	#header .header_logo h1 a .top img {
		height: clamp(22px, 4vw, 35px);
	}
	#header .header_logo h1 a .top .inner {
		gap: 5px;
	}
	#header .header_recruit {
		display: block;
	}
	#header .header_lang select {
		font-size: 12px;
		padding: 4.25px 20px 4.25px 10px;
	}
	#header .header_lang::after {
		right: 10px;
		top: 55%;
	}
	#header .header_recruit a {
		padding: 5px 13px;
		font-size: 11px;
	}
	#header .header_recruit {
		margin-top: 2px;
	}
	#header .header_recruit a {
		display: block;
		padding: 4.21px 13px;
		line-height: 1.1;
		background-color: transparent;
		border: 1px solid #fff;
	}
	#header .header_recruit a::after {
		content: none;
	}
	.sp_menu {
		width: 75px;
    height: 85px;
	}
}
@media screen and (max-width:430px) {
	#header .header_logo h1 a {
		padding: 15px;
	}
	.sp_menu {
		width: 70px;
    height: 70px;
	}
}
@media screen and (max-width:349px) {
	#header .header_recruit {
		display: none;
	}
}

/*------------------------------------------------------------
	メインビジュアル
------------------------------------------------------------*/
#mainvisual .mainvisual_content {
	height: 100vh;
	position: relative;
	z-index: 1;
}
#mainvisual .mainvisual_slider {
	overflow: hidden;
	height: 100%;
	position: relative;
	display: grid;
	grid-template-columns: 50% 50%;
}
#mainvisual .mainvisual_slider img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
#mainvisual .mainvisual_slider .swiper-pagination {
	display: flex;
	flex-direction: column;
	gap: 10px;
	left: auto;
	right: 25px;
	bottom: 35px;
	width: fit-content;
	opacity: 0;
}
#mainvisual .mainvisual_slider .swiper-pagination-bullet {
	background: #fff;
	opacity: 1;
}
#mainvisual .mainvisual_slider .swiper-pagination-bullet-active {
	background: #2568B2;
}
#mainvisual .mainvisual_ttl {
	position: absolute;
	left: 50%;
	bottom: 10%;
	transform: translate(-50%, 0);
	width: 100%;
	text-align: center;
	z-index: 1;
	color: #fff;
}
#mainvisual .mainvisual_ttl h2 {
	font-size: clamp(41px, 7vw, 71px);
	font-weight: 600;
	line-height: 1.3;
	width: fit-content;
	margin: 0 auto 5px;
	position: relative;
}
#mainvisual .mainvisual_ttl h2 span {
	display: inline-block;
	opacity: 0;
}
#mainvisual .mainvisual_ttl p {
	font-size: clamp(10px, 2vw, 25px);
	font-weight: lighter;
	width: fit-content;
	margin: 0 auto;
	line-height: 1.5;
}
#mainvisual .mainvisual_ttl p span {
	opacity: 0;
}
#mainvisual .mainvisual_copy {
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translate(0, -50%) rotate(90deg);
	transform-origin: left;
	z-index: 1;
	opacity: 0;
}
#mainvisual .mainvisual_copy p {
	color: #fff;
	font-size: 14px;
	font-family: 'Futura', 'Jost', sans-serif;
	font-weight: bold;
	font-style: italic;
}
#mainvisual .mainvisual_news {
	display: none;
}

@media screen and (max-width:896px) {
	#mainvisual .mainvisual_slider {
		grid-template-columns: 100%;
		grid-template-rows: 50% 50%;
	}
	.mainvisual_slider-right {
    margin-top: -1px;
	}
	#mainvisual .mainvisual_slider .swiper-pagination {
		display: flex;
		flex-direction: column;
		gap: 10px;
		left: auto;
		right: 10px;
		bottom: 25px;
		width: fit-content;
	}
	#mainvisual .mainvisual_ttl {
		bottom: 50%;
		transform: translate(-50%, 50%);
	}
	#mainvisual .mainvisual_ttl h2 > div {
		display: block;
		width: fit-content;
		margin: 0 auto 5px;
		padding: 0;
	}
	#mainvisual .mainvisual_copy {
		display: none;
	}
	#mainvisual .mainvisual_news {
		display: block;
		position: absolute;
		left: 2.5%;
		bottom: 25px;
		z-index: 1000;
		width: 85%;
	}
	#mainvisual .mainvisual_news ul li a {
		display: grid;
		grid-template-columns: 1fr auto;
		gap: 10px;
		align-items: center;
		border-radius: 50vh;
		border: 1px solid #fff;
		padding: 5px 20px;
		font-size: 13px;
		width: fit-content;
	}
	#mainvisual .mainvisual_news ul li a .inner {
		white-space: nowrap;
		overflow: hidden;
		display: grid;
		grid-template-columns: auto auto;
		gap: 1rem;
		color: #fff;
	}
	#mainvisual .mainvisual_news ul li a span {
		display: block;
		width: 11px;
		height: 11px;
		border: 1px solid #fff;
		border-radius: 50%;
		position: relative;
	}
	#mainvisual .mainvisual_news ul li a span::before {
		content: "";
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		width: 4px;
		height: 4px;
		position: absolute;
		left: 45%;
		top: 50%;
		transform: translate(-50%, -50%) rotate(45deg);
	}
}

/* メインビジュアルアニメーション */
.mainimgOuter .swiper-wrapper, .logoOuter a, .maintxtOuter, .maintxtInner, .bgLRextendTrigger, .bgappearTrigger {
  opacity: 0;
}
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  opacity: 0;
}
@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
	top: 0;
	left: 0;
  width: 100%;
  height: 100%;
	z-index: 3;
  background-color: #2568B2;
}
.mainimgOuter.bgLRextend::before {
  background-color: #000;
}
@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

/*------------------------------------------------------------
	トップー共通
------------------------------------------------------------*/
.top_btn a {
	border: 3px solid #E3E3E3;
	border-radius: 50vh;
	padding: 15px 25px 15px 40px;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 30px;
	width: fit-content;
	font-weight: 600;
}
.top_btn a::after {
	content: "";
	width: 20px;
	height: 15px;
	background: url(../img/btn_icon_01.svg) no-repeat top;
	background-size: contain;
}


/*------------------------------------------------------------
	トップーセクションタイトル
------------------------------------------------------------*/
#about_ttl, .sec_ttl-about {
	height: clamp(45px, 10vw, 68px);
}
#about_ttl path, .sec_ttl-about path {
	opacity: 0;
}
#tech_ttl_01, .sec_ttl-tech {
	height: clamp(55px, 6vw, 85px);
}
#tech_ttl_01 path, .sec_ttl-tech path {
	opacity: 0;
}
#tech_ttl_02 {
	height: clamp(95px, 25vw, 200px);
}
#tech_ttl_02 path {
	opacity: 0;
}
#product_ttl_01, .sec_ttl-product {
	height: clamp(50px, 10vw, 68px);
}
#product_ttl_01 path, .sec_ttl-product path {
	opacity: 0;
}
#product_ttl_02 {
	height: clamp(50px, 10vw, 68px);
}
#product_ttl_02 path {
	opacity: 0;
}
#news_ttl, .sec_ttl-news {
	height: clamp(50px, 10vw, 68px);
}
#news_ttl path {
	opacity: 0;
}
#equipment_ttl {
	height: clamp(45px, 10vw, 68px);
}
.sec_ttl-equipment {
	height: clamp(55px, 6vw, 85px);
}
#equipment_ttl path {
	opacity: 0;
}
#quality_ttl {
	height: clamp(45px, 10vw, 68px);
}
.sec_ttl-quality {
	height: clamp(55px, 6vw, 85px);
}
#quality_ttl path {
	opacity: 0;
}
#recruit_ttl {
	height: clamp(45px, 10vw, 60px);
}
#recruit_ttl path {
	opacity: 0;
}
.sec_ttl-contact {
	height: clamp(45px, 10vw, 68px);
}
.sec_ttl-privacy {
	height: clamp(55px, 6vw, 85px);
}


/*------------------------------------------------------------
	トップーアバウト
------------------------------------------------------------*/
#top_about {
	padding: 50px 0;
}
#top_about .top_about--content {
	display: grid;
	grid-template-columns: 1fr 50%;
	align-items: flex-end;
	gap: 75px;
}
#top_about .top_about--left {
	margin-left: calc(100% - 50vw + 75px);
}
#top_about .top_about--right > img {
	max-width: 176px;
	margin-left: auto;
	display: block;
	margin-bottom: 75px;
}
#top_about .top_about--right h3 {
	margin-bottom: 40px;
}
#top_about .top_about--right h3 img {
	height: clamp(40px, 10vw , 67px);
}
#top_about .top_about--right h4 {
	font-size: clamp(20px, 4vw, 26px);
	font-weight: 600;
	margin-bottom: 30px;
	line-height: 1.5;
}
#top_about .top_about--right p {
	font-weight: 300;
	margin-bottom: 35px;
}
@media screen and (max-width:896px) {
	#top_about .top_about--content {
		grid-template-columns: 1fr;
		gap: 0;
	}
	#top_about .top_about--left {
		margin: 0 calc(50% - 50vw);
	}
	#top_about .top_about--left > img {
		width: 95%;
		margin: 0 auto;
	}
	#top_about .top_about--right {
		margin-top: -15px;
	}
	#top_about .top_about--right > img {
		display: none;
	}
	#top_about .top_about--right .top_btn a {
		margin: 0 auto;
	}
}

/*------------------------------------------------------------
	トップーテキストスライダー
------------------------------------------------------------*/
#top_banner {
	padding: 50px 0;
}
#top_banner .top_banner--slider {
	overflow: hidden;
}
#top_banner .top_banner--slider .slideText {
  overflow: hidden;
  display: flex;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}
#top_banner .top_banner--slider .slideTextItem {
  flex-shrink: 0;
  white-space: nowrap;
}
#top_banner .top_banner--slider h3.slideTextItem {
  font-size: clamp(66px, 6vw, 90px);
	font-weight: 600;
	line-height: 1.0;
}
#top_banner .top_banner--slider h3.slideTextItem span {
  color: #2568B2;
}
#top_banner .top_banner--slider p.slideTextItem {
  font-size: clamp(18px, 4vw, 21px);
}
#top_banner .top_banner--slider .slideTextItem:nth-child(odd) {
	animation: MoveLeft 80s -40s infinite linear;
}
#top_banner .top_banner--slider .slideTextItem:nth-child(even) {
	animation: MoveLeft2 80s infinite linear;
}
@keyframes MoveLeft {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes MoveLeft2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}



/*------------------------------------------------------------
	トップーテクノロジー
------------------------------------------------------------*/
#top_tech {
	padding: 50px 0;
}
#top_tech .top_tech--content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
}
#top_tech .top_tech--left {
	position: relative;
	width: 90%;
	margin: 0 auto;
}
#top_tech .top_tech--left h3 {
	margin-bottom: 30px;
}
#top_tech .top_tech--left h4 {
	font-size: clamp(20px, 4vw, 26px);
	font-weight: 600;
	line-height: 1.5;
}
#top_tech .top_tech--left p {
	max-width: 550px;
	font-weight: 300;
	margin: 30px 0 40px;
}
#top_tech .top_tech--right {
	position: relative;
}
#top_tech .top_tech--right img:nth-child(2) {
	max-width: 176px;
	transform: translate(-100%, 10px);
}

@media screen and (max-width:896px) {
	#top_tech .top_tech--content {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	#top_tech .top_tech--left {
		order: 2;
	}
	#top_tech .top_tech--left h3 img {
		height: clamp(102px, 25vw, 169px);
	}
	#top_tech .top_tech--left p {
		max-width: 100%;
	}
	#top_tech .top_tech--left .top_btn a {
		margin: 0 auto;
	}
	#top_tech .top_tech--right {
		order: 1;
		width: 90%;
		margin: 0 auto;
	}
	#top_tech .top_tech--right img:nth-child(1) {
		margin-right: calc(50% - 50vw);
		margin-left: 5%;
	}
	#top_tech .top_tech--right img:nth-child(2) {
		max-width: clamp(89px, 25vw, 176px);
		transform: translate(0, 0);
		margin-top: 5%;
	}
}


/*------------------------------------------------------------
	トップー製品紹介
------------------------------------------------------------*/
#top_product {
	padding: 50px 0;
}
#top_product .top_product--ttl {
	display: grid;
	grid-template-columns: auto auto;
	width: fit-content;
	align-items: center;
	gap: 12px;
	margin-bottom: 15px;
	margin: 0 15px 15px;
}
#top_product .top_product--ttl p {
	font-size: clamp(20px, 4vw, 26px);
	font-weight: 600;
	line-height: 1.4;
	margin-left: 10px;
}
#top_product .top_product--slider_01, #top_product .top_product--slider_02 {
	overflow: hidden;
}
#top_product .top_product--slider_01 {
	margin-bottom: 6px;
}
#top_product .top_product--slider_01 .swiper-wrapper {
	transition-timing-function: linear;
}
#top_product .top_product--slider_02 .swiper-wrapper {
	transition-timing-function: linear;
}
#top_product .top_product--txt {
	width: 50%;
	margin-left: auto;
}
#top_product .top_product--txt p {
	margin: 35px 0;
	font-weight: 300;
}

@media screen and (max-width:896px) {
	#top_product .top_product--slider_02 {
		margin-bottom: 35px;
	}
	#top_product .top_product--ttl {
		grid-template-columns: 1fr;
		margin: 0;
	}
	#top_product .top_product--ttl h3 img {
		height: clamp(40px, 10vw, 67px);
	}
	#top_product .top_product--txt {
		width: 100%;
	}
	#top_product .top_product--txt p {
		margin: 30px 0;
	}
	#top_product .top_product--txt .top_btn a {
		margin: 0 auto;
	}
}


/*------------------------------------------------------------
	トップーニュース
------------------------------------------------------------*/
#top_news {
	padding: 50px 0;
}
#top_news .top_news--content {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 100px;
}
#top_news .top_news--left h3 {
	margin-bottom: 35px;
}
#top_news .top_news--right ul li {
	border-bottom: 1px solid #CBCBCB;
}
#top_news .top_news--right ul li:last-child {
	border-bottom: 0;
}
#top_news .top_news--right ul li:first-child a {
	padding-top: 0;
}
#top_news .top_news--right ul li a {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 18px;
	padding: 12px 0;
}
#top_news .top_news--right ul li a .inner {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 12px;
}
#top_news .top_news--right ul li a span {
	border: 1px solid #707070;
	border-radius: 50%;
	width: 17px;
	height: 17px;
	position: relative;
}
#top_news .top_news--right ul li a span::before {
	content: "";
	position: absolute;
	left: 55%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-left: 5px solid #2568B2;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
}
#top_news .top_news--right ul li a h4 {
	font-weight: normal;
}
@media screen and (max-width:896px) {
	#top_news .top_news--content {
		grid-template-columns: 1fr;
		gap: 0;
	}
	#top_news .top_news--left h3 {
		margin-bottom: 25px;
	}
	#top_news .top_news--left h3 img {
		height: clamp(40px, 10vw, 68px);
	}
	#top_news .top_news--right ul li a {
		grid-template-columns: 1fr;
		gap: 5px;
	}
	#top_news .top_news--content .top_btn {
		margin: 20px auto 0;
	}
}




/*------------------------------------------------------------
	トップーリンク
------------------------------------------------------------*/
#top_link {
	padding: 100px 0;
}
#top_link .top_link--item {
	border-top: 1px solid #707070;
	border-bottom: 1px solid #707070;
	margin-bottom: 95px;
}
#top_link .top_link--item:last-child {
	margin-bottom: 0;
}
#top_link .top_link--inner {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 90px;
	align-items: center;
	padding: 115px;
	position: relative;
	margin: -50px 0;
	border-left: 1px solid #707070;
	border-right: 1px solid #707070;
}
#top_link .top_link--inner::before {
	content: "";
	background: linear-gradient(to right, #707070 25px, transparent 25px, transparent calc(100% - 25px), #707070 calc(100% - 25px));
	width: calc(100% + 25px);
	height: 1px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%);
}
#top_link .top_link--item:last-child .top_link--inner::after {
	content: "";
	background: linear-gradient(to right, #707070 25px, transparent 25px, transparent calc(100% - 25px), #707070 calc(100% - 25px));
	width: calc(100% + 25px);
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%);
}
#top_link .top_link--left img {
	max-width: min(30vw, 404px);
	width: 100%;
}
#top_link .top_link--right h4 {
	margin: 35px 0;
	font-size: clamp(19px, 4vw, 26px);
	font-weight: 600;
}

@media screen and (max-width:896px) {
	#top_link .top_link--item {
		margin-bottom: 0;
		border-bottom: 0;
	}
	#top_link .top_link--item:last-child {
		border-bottom: 1px solid #707070;
	}
	#top_link .top_link--inner {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 25px;
	}
	#top_link .top_link--item:first-child .top_link--inner {
		margin: -30px 0 0;
		padding: 80px 30px 50px;
	}
	#top_link .top_link--item:last-child .top_link--inner {
		margin: 0 0 -30px;
		padding: 50px 30px 80px;
	}
	#top_link .top_link--item:last-child .top_link--inner::before {
		content: none;
	}
	#top_link .top_link--left img {
		max-width: 100%;
	}
	#top_link .top_link--right h3 img {
		height: clamp(40px, 10vw, 75px);
	}
	#top_link .top_link--right h4 {
		margin: 15px 0;
		line-height: 1.5;
	}
	#top_link .top_link--inner .top_btn a {
		margin: 0 auto;
	}
}

/*------------------------------------------------------------
	トップー採用情報
------------------------------------------------------------*/
#top_recruit {
	padding: 50px 0;
}
#top_recruit .top_recruit--ttl h3 {
	text-align: justify;
	font-size: min(4.5vw, 86px);
	font-weight: 600;
	border-top: 1px solid #262626;
	border-bottom: 1px solid #262626;
	line-height: 1.0;
	/* letter-spacing: 7px; */
	text-align: center;
}
#top_recruit .top_recruit--ttl h3 span {
	color: #2568B2;
}
#top_recruit .top_recruit--item {
	background-color: #2568B2;
	border-radius: 33px;
	padding: 50px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	width: 95%;
	margin: 70px auto 0;
	position: relative;
}
#top_recruit .top_recruit--item::before {
	content: "";
	width: 365px;
	height:40px;
	clip-path: polygon(50% 0, 0% 100%, 100% 100%);
	background-color: #2568B2;
	position: absolute;
	top: 1px;
	left: 50%;
	transform: translate(-50%, -100%);
}
#top_recruit .top_recruit--item .left, #top_recruit .top_recruit--item .right {
	max-width: min(25vw, 350px);
}
#top_recruit .top_recruit--item .center {
	text-align: center;
	color: #fff;
}
#top_recruit .top_recruit--item .center p {
	margin-top: 15px;
}
#top_recruit .top_recruit--item .center h4 {
	font-size: clamp(20px, 4vw, 26px);
	font-weight: 600;
	line-height: 1.5;
	margin: 40px 0 45px;
}
#top_recruit .top_recruit--item .center .top_btn a {
	background-color: #fff;
	border-color: #fff;
	margin: 0 auto;
}

@media screen and (max-width:896px) {
	#top_recruit .top_recruit--ttl h3 {
		line-height: 1.1;
		letter-spacing: 2px;
		font-size: clamp(27px, 8vw, 65px);
	}
	#top_recruit .top_recruit--item::before {
		width: 214px;
		height: 27px;
	}
	#top_recruit .top_recruit--item {
		grid-template: "left right" auto "center center" auto / 1fr 1fr;
		gap: 20px 0;
		width: 100%;
		padding: 30px 30px 50px;
	}
	#top_recruit .top_recruit--item .left {
		grid-area: left;
		max-width: 100%;
		margin-top: 55px;
	}
	#top_recruit .top_recruit--item .right {
		grid-area: right;
		max-width: 100%;
	}
	#top_recruit .top_recruit--item .center {
		grid-area: center;
	}
	#top_recruit .top_recruit--item .center h3 img {
		height: clamp(40px, 10vw, 60px);
	}
	#top_recruit .top_recruit--item .center h4 {
		margin: 20px 0;
	}
}



/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#footer {
	margin-top: 35px;
}
#footer .footer_content {
	display: grid;
	grid-template-columns: auto auto;
	justify-content: space-between;
	width: 95%;
	margin: 0 auto;
	padding: 70px 0 100px;
	position: relative;
}
#footer .footer_content::before {
	content: "";
	width: 100%;
	height: 25px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%);
	background: repeating-linear-gradient(#2568B2, #2568B2 1px, #fff 1px, #fff 5px);
}
#footer .footer_logo {
	margin-bottom: 40px;
}
#footer .footer_logo a {
	display: grid;
	grid-template-columns: auto auto;
	align-items: flex-end;
	width: fit-content;
	gap: 30px;
}
#footer .footer_logo a p {
	font-size: 30px;
	font-weight: 600;
	line-height: 1.4;
}
#footer .footer_nav {
	margin-left: 30px;
}
#footer .footer_nav nav ul {
	display: grid;
	grid-auto-flow: column;
	grid-template-rows: repeat(4, 1fr);
	gap: 1rem 75px;
	width: fit-content;
	font-size: 14px;
}
#footer .footer_copy {
	margin-left: 30px;
	margin-top: 40px;
	font-size: 14px;
	font-family: 'Futura', 'Jost', sans-serif;
}
#footer .footer_right {
	text-align: right;
}
#footer .footer_right h4 {
	font-weight: 600;
	font-size: 17px;
	margin: 20px 0;
}
#footer .footer_right .tel {
	margin: 40px 0 25px;
	display: block;
}
#footer .top_btn a {
	margin-left: auto;
	margin-top: 20px;
}
#page-top {
	width: fit-content;
	margin: 0 auto;
}

@media screen and (max-width:896px) {
	#footer {
		margin: 0;
	}
	#footer .footer_content {
		grid-template-columns: 1fr;
		gap: 45px;
		width: 90%;
		margin: 0 auto;
		padding: 70px 0 160px;
	}
	#footer .footer_content::before {
		width: 100vw;
	}
	#footer .footer_left {
		order: 2;
	}
	#footer .footer_logo a {
		margin: 0 auto;
	}
	#footer .footer_logo a img {
		height: 68px;
	}
	#footer .footer_logo a p {
		font-size: clamp(18px, 4vw, 20px);
	}
	#footer .footer_nav {
		margin: 0 auto;
		width: fit-content;
	}
	#footer .footer_nav nav ul {
		grid-template-rows: repeat(6, 1fr);
	}
	#footer .footer_copy {
		text-align: center;
	}
	#footer .footer_right {
		order: 1;
		text-align: center;
	}
	#footer .footer_right h3 img {
		height: clamp(40px, 10vw, 60px);
	}
	#footer .footer_right .tel img {
		height: 25px;
	}
	#footer .top_btn a {
		margin: 0 auto;
	}
	#page-top {
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translate(-50%);
		z-index: 100;
	}
	#page-top img {
		width: 51px;
	}
}
@media screen and (max-width:374px) {
	#footer .footer_nav nav ul {
		gap: 1rem 30px;
	}
}


/*------------------------------------------------------------
	下層ーヘッダー
------------------------------------------------------------*/
#header.sub .header_content {
	padding-right: 318px;
	align-items: flex-start;
}
#header.sub .header_nav {
	margin-top: 40px;
}
#header.sub .header_nav ul li a {
	color: #000;
}
#header.sub .header_btn {
	align-items: flex-end;
	position: fixed;
	right: 88px;
	top: 0;
}
#header.sub .header_recruit {
	margin-bottom: 10px;
}
#header.sub .header_recruit a {
	background-color: #000;
	padding: 8px 15px 8px 25px;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 15px;
}
#header.sub .header_recruit a::after {
	content: "";
	background: url(../img/btn_icon_01.svg) no-repeat center;
	background-size: contain;
	filter: invert(100%);
	width: 22px;
	height: 10px;
}
#header.sub .header_lang {
	position: absolute;
	right: 10px;
	top: 100px;
}
#header.sub .header_lang select {
	border: 1px solid #000;
	color: #000;
}
#header.sub .header_lang::after {
	border-top: 5px solid #000;
}
#header.sub .header_contact a {
	display: grid;
	align-content: center;
	justify-items: center;
	gap: 10px;
	background-color: #2568B2;
	font-size: 10px;
	color: #fff;
	font-weight: 600;
	line-height: 1.0;
	width: 87px;
	height: 79px;
}

@media screen and (max-width:1225px) {
	#header.sub .header_nav nav ul {
		font-size: 12px;
		gap: 20px;
	}
}
@media screen and (max-width:1120px) {
	#header.sub .header_content {
		grid-template-columns: auto auto;
		justify-content: space-between;
	}
	#header.sub .header_nav {
		display: none;
	}
}
@media screen and (max-width:896px) {
	#header.sub .header_content {
		align-items: center;
		padding-right: 228px;
	}
	#header.sub .header_contact {
		display: none;
	}
	#header.sub .header_recruit {
		margin-top: 2px;
	}
	#header.sub .header_recruit a {
		display: block;
		padding: 4px 13px;
		line-height: 1.1;
		background-color: transparent;
		color: #000;
		border-color: #000;
	}
	#header.sub .header_recruit a::after {
		content: none;
	}
	#header.sub .header_btn {
		gap: 10px;
		align-items: center;
		top: 20px;
	}
	#header.sub .header_recruit {
		margin-bottom: 0;
	}
	#header.sub .header_lang {
		position: relative;
		top: 0;
		right: 0;
	}
}
@media screen and (max-width:365px) {
	#header.sub .header_content {
		padding-right: 148px;
	}
	#header.sub .header_recruit {
		display: none;
	}
}

/*------------------------------------------------------------
	下層ー共通
------------------------------------------------------------*/
#sec_top {
	margin-top: 200px;
	margin-bottom: 50px;
}
#sec_top .sec_top--content {
	display: grid;
	grid-template-columns: auto auto;
	justify-content: space-between;
	align-items: flex-end;
}
#sec_top .sec_top--ttl {
	padding-left: 50px;
}
#sec_top .sec_top--ttl h3 {
	margin-bottom: 20px;
}
#sec_top .sec_top--ttl h3 svg path {
	opacity: 0;
}
#sec_top .sec_top--ttl p {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.0;
}
#sec_top .sec_top--pankuzu {
	border-top: 1px solid #707070;
	border-bottom: 1px solid #707070;
	padding: 10px 45px 10px 5px;
	width: fit-content;
	margin-left: auto;
}
#sec_top .sec_top--pankuzu ul {
	display: flex;
	gap: 5px;
	font-size: 12px;
}
#sec_middle {
	padding-bottom: 85px;
}
.sec_ttl {
	text-align: center;	
	margin-bottom: 50px;
}
.sec_ttl h3 {
	line-height: 1.0;
	font-size: clamp(32px, 10vw, 48px);
	font-weight: 600;
	width: fit-content;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	margin: 0 auto;
}
.sec_ttl h3 span {
	color: #2568B2;
}

@media screen and (max-width:896px) {
	#sec_top {
    margin-top: 150px;
	}
	#sec_top .sec_top--content {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	#sec_top .sec_top--ttl {
		padding-left: 5%;
	}
	#sec_top .sec_top--ttl h3 img {
		height: clamp(40px, 10vw, 70px);
	}
	#sec_top .sec_top--ttl p {
		font-size: clamp(18px, 4vw, 20px);
	}
}
@media screen and (max-width:430px) {
	#sec_top {
    margin-top: 120px;
	}
}

/*------------------------------------------------------------
	下層ー製品ギャラリー
------------------------------------------------------------*/

#product .product_nav {
	margin-bottom: 25px;
}
#product .product_nav nav ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
}
#product .product_nav nav ul li a {
	position: relative;
	border: 1px solid #1D1D1D;
	border-radius: 50vh;
	padding: 10px 25px 10px 30px;
	font-size: 13px;
	font-weight: 600;
	display: block;
	line-height: 1.0;
}
#product .product_nav nav ul li a::before {
	content: "";
	width: 13.5px;
	height: 1px;
	background-color: #1D1D1D;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
}
#product .product_nav nav ul li.active a {
	background-color: #1D1D1D;
	color: #fff;
}
#product .product_nav nav ul li.active a::before {
	background-color: #fff;
}
#product .product_list ul {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 15px;
}
#product .product_list ul li .modal_open {
	border-radius: 27px;
	border: 1px solid #D3D3D3;
	overflow: hidden;
	display: block;
}
#product .product_list ul li img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.modal_slider--main, .modal_slider--sub {
	overflow: hidden;
	position: relative;
}
#product .product_list ul li .modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1010;
	width: 100%;
	height: 100%;
}
#product .product_list ul li .modal_bg {
	background-color: rgba(0, 0, 0, 0.7);
	width: 100%;
	height: 100%;
}
#product .product_list ul li .modal_close {
	background: #EFEFEF;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 1012;
}
#product .product_list ul li .modal_close::before, #product .product_list ul li  .modal_close::after {
	content: "";
	width: 20px;
	height: 2px;
	position: absolute;
	left: 50%;
	top: 50%;
	background-color: #000;
}
#product .product_list ul li  .modal_close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}
#product .product_list ul li .modal_close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}
#product .product_list ul li .modal_content {
	position: absolute;
	z-index: 1011;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 978px;
	max-height: 90vh;
	overflow-y: auto;
}
#product .product_list ul li .modal_inner {
	background-color: #fff;
	padding: 40px 50px;
	margin: 0 auto;
	position: relative;
}
#product .product_list ul li .modal_slider {
	overflow: hidden;
	width: 100%;
	margin: 0 auto 50px;
}
#product .product_list ul li .modal_slider .swiper-slide img {
	width: 100%;
	height: 100%;
}
#product .product_list ul li .modal_txt {
	margin: 15px 0;
}

@media screen and (max-width:896px) {
	#product .product_list ul {
		grid-template-columns: repeat(3, 1fr);
		gap: 15px;
	}
}
@media screen and (max-width:450px) {
	#product .product_list ul li .modal_inner {
		padding: 30px 20px;
	}
}
@media screen and (max-width:430px) {
	#product .product_list ul {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
}



/*------------------------------------------------------------
	下層ー私たちの技術
------------------------------------------------------------*/
#technology .technology_top {
	/* padding-bottom: 75px; */
}
#technology .technology_top--img {
	margin: 0 calc(50% - 50vw);
}
#technology .technology_top--img img {
	width: 100vw;
}
#technology .technology_top--ttl {
	/* margin: 75px 0 100px; */
	margin: 75px 0 0;
}
#technology .technology_top--ttl h3 {
	font-size: clamp(22px, 7vw, 40px);
	text-align: center;
	line-height: 1.5;
	font-weight: 600;
}
#technology .technology_top--ttl h3 span {
	background: linear-gradient(to top, #E2FF00 30%, transparent 30%);
}
#technology .technology_top--item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 90px;
}
#technology .technology_top--item .left h4 {
	font-size: clamp(20px, 4vw, 26px);
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 25px;
}
#technology .technology_top--item .left p {
	font-weight: 300;
	margin-bottom: 1.5em;
}
#technology .technology_top--item .left p:last-child {
	margin-bottom: 0;
}
#technology .technology_top--item .right {
	margin-right: calc(100% - 50vw + 45px);
}
#technology .technology_strength {
	padding-top: 75px;
}
#technology .technology_strength--item {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 65px;
	margin-bottom: 65px;
	padding-bottom: 65px;
	border-bottom: 1px solid #BCBCBC;
}
#technology .technology_strength--item:nth-last-child(2) {
	padding-bottom: 0;
	border-bottom: 0;
}
#technology .technology_strength--item .left {
	max-width: 485px;
}
#technology .technology_strength--item .right h4 {
	font-size: clamp(20px, 4vw, 26px);
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 30px;
}
#technology .technology_strength--item .right p {
	font-weight: 300;
}
#technology .technology_strength--item .right .top_btn {
	margin-top: 30px;
}
#technology .technology_strength > p {
	text-align: center;
	font-size: clamp(14px, 3vw, 18px);
	font-weight: 300;
}
#technology .technology_strength > p a {
	text-decoration: underline;
}

@media screen and (max-width:896px) {
	#technology .technology_top {
    padding-bottom: 50px;
	}
	#technology .technology_top--ttl {
		margin: 50px 0;
	}
	#technology .technology_top--item {
		grid-template-columns: 1fr;
		gap: 50px;
	}
	#technology .technology_top--item .right {
		margin-right: calc(50% - 50vw);
	}
	#technology .technology_strength {
		padding-top: 50px;
	}
	#technology .technology_strength--item {
		grid-template-columns: 1fr;
		gap: 30px;
		margin-bottom: 40px;
		padding-bottom: 40px;
	}
	#technology .technology_strength--item .left {
		max-width: 100%;
	}
}








/*------------------------------------------------------------
	下層ー品質管理
------------------------------------------------------------*/
#quality .quality_top {
	padding-bottom: 50px;
}
#quality .quality_top--img {
	margin: 0 calc(50% - 50vw);
}
#quality .quality_top--img img {
	width: 100vw;
}
#quality .quality_top--ttl {
	margin: 75px 0 100px;
}
#quality .quality_top--ttl h3 {
	font-size: clamp(22px, 7vw, 40px);
	text-align: center;
	line-height: 1.5;
	font-weight: 600;
}
#quality .quality_top--ttl h3 span {
	background: linear-gradient(to top, #E2FF00 30%, transparent 30%);
}
#quality .quality_top--item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 90px;
	margin-bottom: 50px;
}
#quality .quality_top--item .left h4 {
	font-size: clamp(20px, 4vw, 26px);
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 25px;
}
#quality .quality_top--item .left p {
	font-weight: 300;
	margin-bottom: 1.5em;
}
#quality .quality_top--item .left p:last-child {
	margin-bottom: 0;
}
#quality .quality_top--list {
	margin-top: 100px;
}
#quality .quality_top--list ul {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 35px;
}
#quality .quality_top--list ul li h4 {
	text-align: center;
	font-weight: 600;
	font-size: clamp(14px, 1.6vw, 18px);
	margin: 20px 0 15px;
}
#quality .quality_top--list ul li p {
	font-weight: 300;
}

#quality .quality_iso {
	padding-top: 50px;
}
#quality .quality_iso--ttl h3 {
	font-size: clamp(31px, 9vw, 48px);
}

#quality .quality_iso--img {
	max-width: 550px;
	margin: 0 auto 100px;
}
#quality .quality_iso > p {
	text-align: center;
	font-size: clamp(14px, 3vw, 18px);
	font-weight: 300;
}
#quality .quality_iso > p a {
	text-decoration: underline;
}
#quality .quality_policy {
	margin: 100px 0 50px;
	padding: 100px;
	border: 12px solid #E2E2E2;
}
#quality .quality_policy h3 {
	font-size: clamp(31px, 9vw, 48px);
	margin-bottom: 40px;
}
#quality .quality_policy ul li {
	padding: 30px 0;
	border-bottom: 1px solid #C7C7C7;
}
#quality .quality_policy ul li:last-child {
	border-bottom: 0;
}
#quality .quality_policy ul li h4 {
	font-size: clamp(20px, 4vw, 24px);
	color: #2568B2;
	font-weight: 600;
}
#quality .quality_policy ul li p {
	font-size: clamp(16px, 4vw, 20px);
	margin-bottom: 30px;
	font-weight: 600;
}
#quality .quality_policy ul li p:last-child {
	margin-bottom: 0;
}

@media screen and (max-width:896px) {
	#quality .quality_top {
    padding-bottom: 50px;
	}
	#quality .quality_top--ttl {
		margin: 50px 0;
	}
	#quality .quality_top--item {
		grid-template-columns: 1fr;
		gap: 50px;
	}
	#quality .quality_top--item .left {
		order: 2;
	}
	#quality .quality_top--item .right {
		order: 1;
	}
	#quality .quality_top--list {
		margin-top: 75px;
	}
	#quality .quality_top--list ul {
		grid-template-columns: 1fr;
	}
	#quality .quality_top--list ul li h4 {
		font-size: 18px;
	}
	#quality .quality_iso--img {
		margin-bottom: 50px;
	}
	#quality .quality_policy {
		padding: 50px;
	}
}
@media screen and (max-width:550px) {
	#quality .quality_top--list ul {
		grid-template-columns: 1fr;
	}
	#quality .quality_policy {
		padding: 50px 20px 0;
	}
}


/*------------------------------------------------------------
	下層ー設備紹介
------------------------------------------------------------*/
#equipment .equipment_top {
	margin-bottom: 60px;
}
#equipment .equipment_top--img {
	margin: 0 calc(50% - 50vw);
}
#equipment .equipment_top--txt {
	text-align: center;
	margin-top: 50px;
	font-weight: 300;
}
#equipment .equipment_item {
	margin-bottom: 35px;
}
#equipment .equipment_item h3 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 10px;
}
#equipment .equipment_table {
	margin-bottom: 35px;
}

#equipment .equipment_table table {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
}
#equipment .equipment_table tr th, #equipment .equipment_table tr td {
	text-align: center;
	padding: 15px;
	border: 1px solid #B1B1B1;
}
#equipment .equipment_table tr td {
	font-weight: 300;
}
#equipment .equipment_table tr th.w_25 {
	width: 25%;
}
#equipment .equipment_table tr th.w_50 {
	width: 50%;
}
#equipment .equipment_table tr td img.w_240 {
	max-width: 240px;
	width: 100%;
}
#equipment .equipment_table tr:nth-child(1) th {
	background-color: #2568B2;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	border-bottom: 0;
}
#equipment .equipment_table tr:nth-child(2) th {
	background-color: #55749A;
	color: #fff;
	font-weight: 300;
	border-top: 0;
	border-bottom: 0;
}
#equipment .equipment_table tr td.bg_blue {
	background-color: #EFF3F8;
}

/*------------------------------------------------------------
	下層ーウィルについて
------------------------------------------------------------*/
#about .about_top {
	padding: 100px 0 50px;
}
#about .about_top .message_box {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 50px;
	margin-bottom: 50px;
}
#about .about_top .message_box .message_box-left {
	max-width: 444px;
}
#about .about_top .message_box .message_box-right p {
	margin-bottom: 30px;
	line-height: 2.0;
}
#about .about_top .message_box .message_box-right p span {
	font-size: 20px;
}
#about .about_top .message_box .message_box-right p.right {
	text-align: right;
}
#about .about_top > h3 {
	font-size: min(5.7vw, 83px);
	font-weight: 600;
	margin: 0 calc(50% - 50vw);
	text-align: center;
	line-height: 1.0;
	margin-bottom: 70px;
}
#about .about_top > h3 span {
	color: #2568B2;
}
#about .about_top .about_feature ul li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 20px;
	padding: 75px 0 45px;
	border-bottom: 1px solid #D5D5D5;
}
#about .about_top .about_feature ul li:last-child {
	border-bottom: 0;
}
#about .about_top .about_feature ul li .inner {
	width: clamp(260px, 65vw, 320px);
	position: relative;
}
#about .about_top .about_feature ul li .inner h4::before {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	transform: translate(30%) rotate(-45deg);
	transform-origin: left;
	background-color: #707070;
	width: 114px;
	height: 1px;
}
#about .about_top .about_feature ul li .inner h4 {
	font-size: clamp(35px, 9vw, 50px);
	font-weight: 300;
	line-height: 1.0;
	position: relative;
}
#about .about_top .about_feature ul li .txt {
	margin-bottom: 25px;
}
#about .about_top .about_feature ul li .txt:last-child {
	margin-bottom: 0;
}
#about .about_top .about_feature ul li h5 {
	font-size: clamp(22px, 6vw, 26px);
	font-weight: 600;
}
#about .about_top .about_feature ul li p {
	font-size: clamp(16px, 4vw, 18px);
	font-weight: 600;
}
#about .history {
	padding: 50px 0;
}
#about .history .history_list {
	padding-left: 40px;
}
#about .history .history_list dl {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 40px;
	padding: 20px 0;
	border-bottom: 1px solid #C7C7C7;
	position: relative;
}
#about .history .history_list dl::before {
	content: "";
	height: calc(100% + 5px);
	width: 1px;
	background-color: #2568B2;
	position: absolute;
	left: calc(-20px - (17px / 2) - 0.5px);
	top: 0;
}
#about .history .history_list dl dt {
	font-size: 19px;
	line-height: 1.0;
}
#about .history .history_list dl dt span {
	font-size: clamp(27px, 6vw, 32px);
	font-family: 'Futura', 'Jost', sans-serif;
	letter-spacing: 0;
	position: relative;
}
#about .history .history_list dl dt span::before {
	content: "";
	width: 17px;
	height: 17px;
	position: absolute;
	left: -20px;
	top: 50%;
	transform: translate(-100%, -50%);
	background-color: #2568B2;
	border-radius: 50%;
}
#about .history .history_list dl:first-child:before {
	height: calc(100% - 36.5px);
	bottom: -2px;
	top: auto;
}
#about .history .history_list dl:last-child:before {
	height: 36.5px;
}
#about .history .history_list dl dd {
	font-weight: 200;
}
#about .access {
	padding: 50px 0;
}
#about .access .sec_ttl h3 {
	font-size: clamp(31px, 9vw, 48px);
}
#about .access_item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 45px;
	padding: 35px 0;
	border-bottom: 1px solid #C7C7C7;
}
#about .access_item:first-child {
	padding-top: 0;
}
#about .access_item:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}
#about .access_item .txt h4 {
	font-size: clamp(18px, 4vw, 20px);
	font-weight: 600;
	margin-bottom: 10px;
}
#about .access_item .txt p {
	margin-bottom: 20px;
	line-height: 2.0;
	font-weight: 200;
}
#about .overview {
	padding: 50px 0;
}
#about .overview_table table {
	width: 100%;
}
#about .overview_table th, #about .overview_table td {
	padding: 17.5px;
}
#about .overview_table th {
	border-top: 1px solid #2568B2;
	width: 165px;
	vertical-align: top;
	font-weight: 600;
}
#about .overview_table td {
	border-top: 1px solid #C7C7C7;
	font-weight: 200;
}
#about .overview_table td a {
	text-decoration: underline;
}
#about .overview_table tr:last-child th {
	border-bottom: 1px solid #2568B2;
}
#about .overview_table tr:last-child td {
	border-bottom: 1px solid #C7C7C7;
}


@media screen and (max-width:896px) {
	#about .about_top {
		padding: 0 0 50px;
	}
	#about .about_top .message_box {
		grid-template-columns: 1fr;
	}
	#about .about_top .message_box .message_box-left {
		max-width: 100%;
	}
	#about .about_top > h3 {
		font-size: clamp(33px, 10vw, 83px);
	}
	#about .about_top .about_feature ul li {
		grid-template-columns: 1fr;
	}
	#about .access_item {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}
@media screen and (max-width:768px) {
	#about .history .history_list dl {
		grid-template-columns: 1fr;
		gap: 15px;
	}
}
@media screen and (max-width:600px) {
	#about .overview_table th, #about .overview_table td {
		padding: 17.5px 10px;
	}
	#about .overview_table th {
		width: auto;
		min-width: 115px;
	}
}


/*------------------------------------------------------------
	下層ーお知らせ
------------------------------------------------------------*/
#news .news_content {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 50px;
}
#news .news_side {
	width: 200px;
}
#news .news_side_item {
	margin-bottom: 50px;
}
#news .news_side_item h3 {
	font-size: 14px;
	font-weight: 600;
	padding-bottom: 5px;
	margin-bottom: 10px;
	position: relative;
}
#news .news_side_item h3::after {
	content: "";
	background: linear-gradient(to right, #2568B2 30%, #BCBCBC 30%);
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
}
#news .news_side_item ul li a {
	padding: 10px 0;
	font-size: 14px;
}
#news .news_main ul li a {
	position: relative;
	padding: 15px 0;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 20px;
}
#news .news_main ul li a::after {
	content: "";
	background: linear-gradient(to right, #2568B2 20%, #BCBCBC 20%);
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
}
#news .news_main ul li a h3 {
	font-weight: normal;
}

#news .news_single .news_ttl {
	position: relative;
}
#news .news_single .news_ttl::after {
	content: "";
	background: linear-gradient(to right, #2568B2 20%, #BCBCBC 20%);
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
}
#news .news_single .news_ttl h3 {
	font-size: 24px;
	font-weight: normal;
	padding-bottom: 10px;
	margin-bottom: 20px;
}
#news .news_single .news_ttl p {
	
}

@media screen and (max-width:896px) {
	#news .news_content {
		display: flex;
		flex-direction: column-reverse;
		gap: 50px;
	}
	#news .news_side {
		width: 100%;
	}
	#news .news_side_item h3::after {
		background: linear-gradient(to right, #2568B2 20%, #BCBCBC 20%);
	}
}



/*------------------------------------------------------------
	下層ーお問い合わせ
------------------------------------------------------------*/
#contact .contact_content h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
}
#contact .contact_content h3 span {
	color: #2568B2;
	margin-right: 10px;
}
#contact .contact_tel {
	margin-bottom: 75px;
}
#contact .contact_tel p {
	text-align: center;
	border: 1px solid #D5D5D5;
	padding: 30px 10px;
	line-height: 1.5;
}
#contact .contact_tel a {
	font-size: 35px;
	font-weight: 600;
	color: #2568B2;
}
#contact .contact_table {
	margin-top: 50px;
}
#contact .contact_table table {
	width: 100%;
	border-spacing: 0;
}
#contact .contact_table table th {
	width: 200px;
	font-weight: 600;
}
#contact .contact_table table tr:last-child th {
	vertical-align: top;
	padding: 20px 0;
}
#contact .contact_table table th .required {
	color: #990000;
}
#contact .contact_table table td {
	padding: 15px 0px;
}
#contact .contact_table table td input[type="text"], #contact .contact_table table td input[type="email"],  #contact .contact_table table td input[type="tel"], #contact .contact_table table td textarea, #contact .contact_table table td select {
	width: 100%;
	padding: 15px 10px;
	border: 1px solid #D5D5D5;
}
#contact .contact_table .p-contact_btn {
	margin: 30px auto 0;
	max-width: 250px;
}
#contact .contact_table .p-contact_btn input {
	background-color: #2568B2;
	color: #fff;
	border-radius: 10px;
	width: 100%;
	display: block;
	border: 0;
	padding: 15px 10px;
	font-size: 18px;
	font-weight: 600;
	transition: 0.3s;
}
#contact .contact_table .p-contact_btn input:hover {
	opacity: 0.7;
}

@media screen and (max-width:600px) {
	#contact .contact_table table th, #contact .contact_table table td {
		width: 100%;
		display: block;
	}
	#contact .contact_table table td {
		padding: 10px 0 30px;
	}
	#contact .contact_table table tr:last-child th {
		padding: 0;
	}
}


/*------------------------------------------------------------
	下層ープライバシーポリシー
------------------------------------------------------------*/
#privacy .privacy_content h3 {
	font-size: clamp(18px, 4vw, 20px);
	font-weight: 600;
	margin-bottom: 10px;
}
#privacy .privacy_content p {
	line-height: 1.8;
	margin-bottom: 30px;
}

@media screen and (max-width:430px) {
	#privacy .sec_ttl-privacy {
		height: 110px;
	}
}


/*------------------------------------------------------------
	下層ー404
------------------------------------------------------------*/
#notfound .notfound_content h3 {
	font-size: clamp(18px, 4vw, 20px);
	font-weight: 600;
	margin-bottom: 10px;
}
#notfound .notfound_content p {
	line-height: 1.8;
	margin-bottom: 30px;
}

/*------------------------------------------------------------
	下層ーサンクス
------------------------------------------------------------*/
#contact .thanks_content h3 {
	font-size: clamp(20px, 4vw, 22px);
	font-weight: 600;
	margin-bottom: 10px;
	text-align: center;
}
#contact .thanks_content h3 span {
	color: #2568B2;
	margin-right: 10px;
}
#contact .thanks_content p {
	border: 1px solid #D5D5D5;
	padding: 50px;
	margin-top: 30px;
	line-height: 1.8;
}
@media screen and (max-width:896px) {
	#contact .thanks_content p {
		padding: 30px 15px;
	}	
}