/*=======================
基本設定
=======================*/

/*=======================
共通パーツ
=======================*/

body {
	color: #222;
	counter-reset: child-num01 child-num02 grand-child-num01 grand-child-num02 dedication-num;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: normal;
	letter-spacing: normal;
}

body.is-fixed {
	overflow: clip;
}

.body-container {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow-x: hidden;
}

.inner {
	margin: 0 auto;
	max-width: 1000px;
	width: 95%;
}

.sec-title {
	display: flex;
	gap: 0 12px;
}

.sec-title .title-en {
	font-family: "Roboto", sans-serif;
	font-size: 34px;
	font-weight: bold;
}

.sec-title .title-jp {
	display: block;
	font-size: 14px;
	font-weight: 500;
	margin-top: 13px;
}

.sec-title.no-flex {
	display: block;
}

.sec-title.white {
	color: #fff;
}

.sec-lead {
	font-size: 18px;
	line-height: 1.5;
}

.sec-lead.white {
	color: #fff;
}

.btn {
	align-items: center;
	border: 1px solid #ccc;
	border-radius: 22px;
	color: #222;
	cursor: pointer;
	display: flex;
	font-size: 14px;
	gap: 0 15px;
	height: 44px;
	padding: 0 27px;
	position: relative;
	transition: all 0.3s ease;
	width: -moz-fit-content;
	width: fit-content;
	z-index: 5;
}

.btn svg,
.btn text {
	transition: all 0.3s ease;
}

.btn-black {
	background: #222;
	color: #fff;
}

br.is-pc {
	display: block;
}

br.is-sp {
	display: none;
}

span.is-pc {
	display: inline;
}

span.is-sp {
	display: none;
}

img {
	display: block;
	height: auto;
	width: 100%;
}

.js-fadeUp {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s, transform 0.8s;
}

.js-fadeUp.is-inview {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.5s;
}

.icon-search {
	fill: #222;
	height: 18px;
	transition: all 0.3s ease;
	width: 18px;
}

.arrow-right {
	fill: currentColor;
	height: 5px;
	width: 14px;
}

.icon-download {
	fill: currentColor;
	height: 9px;
	width: 10px;
}

/*=======================
下層ページ共通設定
=======================*/

.page-wrapper {
	padding-top: 90px;
}

.page-wrapper.-pageLowTemplate .low-head {
	align-items: center;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	height: 240px;
	width: 100%;
}

.page-wrapper.-pageLowTemplate .low-head .inner {
	max-width: initial;
	padding: 0 30px;
	width: 100%;
}

.page-wrapper.-pageLowTemplate .low-title {
	color: #222;
}

.page-wrapper.-pageLowTemplate .low-title .title-en {
	font-family: "Roboto", sans-serif;
	font-size: 50px;
	font-weight: bold;
}

.page-wrapper.-pageLowTemplate .low-title .title-jp {
	display: block;
	font-size: 24px;
	margin-top: 10px;
}

.page-wrapper.-pageLowTemplate .low-title.-white {
	color: #fff;
}

.page-wrapper.-pageLowTemplate .sec-title .title-en {
	font-size: 48px;
}

.page-wrapper.-pageLowTemplate .sec-title .title-jp {
	font-size: 16px;
	margin-top: 7px;
}

.page-wrapper.-pageLowTemplate .single-content {
	padding: 40px 0 0;
}

.breadcrumb {
	border-bottom: 1px solid #e8e8e8;
	border-top: 1px solid #e8e8e8;
}

.breadcrumb-inner {
	max-width: initial;
	padding: 0 30px;
	width: 100%;
}

.breadcrumb-items {
	align-items: center;
	display: flex;
	gap: 0 36px;
	height: 38px;
}

.breadcrumb-items span {
	font-size: 11px;
	position: relative;
}

.breadcrumb-items span.current-item {
	color: #999;
}

.breadcrumb-items span:last-of-type::after {
	display: none;
}

.breadcrumb-items span::after {
	background: url(../img/breadcrumb-separator.png) no-repeat center center/cover;
	content: "";
	height: 10px;
	position: absolute;
	right: -20px;
	top: 50%;
	translate: 0 -50%;
	width: 6px;
}

.breadcrumb-items span a {
	color: #222;
	transition: all 0.3s ease;
}

.pageLow-content {
	padding: 60px 0 120px;
}

/*=======================
ヘッダー
=======================*/

.header {
	align-items: center;
	background: #fff;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
	display: flex;
	height: 90px;
	padding: 0 30px;
	position: fixed;
	transition: all 0.3s ease;
	width: 100%;
	z-index: 100;
}

.header.is-change {
	height: 60px;
}

.header-logo {
	height: 40px;
	width: 135px;
}

.header-nav {
	align-items: center;
	display: flex;
	height: 100%;
	margin-left: auto;
	margin-right: 30px;
}

.header-nav-items {
	align-items: center;
	display: flex;
	gap: 0 29px;
	height: 100%;
}

.header-nav-item {
	align-items: center;
	display: flex;
	height: 100%;
}

.header-nav-item:has(.dropdown):focus-visible .dropdown {
	opacity: 1;
	visibility: visible;
}

.dropdown {
	background: #fff;
	box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
	left: 0;
	max-height: calc(100vh - 90px);
	opacity: 0;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 29px 0 40px;
	position: absolute;
	top: 100%;
	visibility: hidden;
	width: 100%;
}

.dropdown-parent-items {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 30px;
	min-height: 100px;
}

.dropdown-parent-item {
	min-width: 150px;
}

.dropdown-parent-item-head {
	border-bottom: 1px solid #222;
	padding: 0 0 3px 5px;
}

.dropdown-parent-item-link {
	align-items: center;
	color: #222;
	display: flex;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-weight: bold;
	justify-content: space-between;
	transition: all 0.3s ease;
}

.dropdown-parent-item-body {
	padding-top: 17px;
}

.dropdown-child-items {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 15px 0;
	height: 135px;
}

.dropdown-child-item {
	padding-left: 10px;
	width: 150px;
}

.dropdown-child-item-link {
	color: #222;
	display: block;
	font-size: 15px;
	padding-left: 15px;
	position: relative;
	transition: all 0.3s ease;
	width: -moz-fit-content;
	width: fit-content;
}

.dropdown-child-item-link::before {
	background: url(../img/arrow_link_black.png) no-repeat center center/cover;
	content: "";
	height: 10px;
	left: 0;
	position: absolute;
	top: 55%;
	transition: all 0.3s ease;
	translate: 0 -50%;
	width: 6px;
}

.header-nav-item-link {
	align-items: center;
	color: #222;
	display: flex;
	font-size: 14px;
	height: 100%;
	position: relative;
}

.header-nav-item-link::after {
	background: #005ccd;
	bottom: 0;
	content: "";
	height: 3px;
	left: 0;
	opacity: 0;
	position: absolute;
	transition: all 0.3s ease;
	width: 100%;
}

.header-btn-items {
	align-items: center;
	display: flex;
	gap: 0 20px;
	height: 100%;
}

.header-btn-item {
	display: grid;
	height: 100%;
	place-content: center;
}

.header-btn-item:has(.header-btn) .dropdown {
	opacity: 1;
	visibility: visible;
}

.header-btn-item .header-btn:focus-visible {
	background: #005ccd;
	border-color: #005ccd;
}

.header-btn-item .header-btn:focus-visible .icon-search {
	fill: #fff;
}

.header-btn-item .dropdown .search-box {
	margin-inline: auto;
	width: 500px;
}

.header-btn {
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 50%;
	display: grid;
	height: 44px;
	place-content: center;
	transition: all 0.3s ease;
	width: 44px;
}

.js-search-dropdown {
	display: none; /* 初期状態では非表示 */
}

.js-search-dropdown.is-open {
	display: block; /* is-open クラスが付与されたら表示 */
}

.drawer-btn {
	display: none;
}

.drawer-bars {
	height: 14px;
	position: relative;
	width: 18px;
}

.drawer-bar {
	background: #222;
	height: 2px;
	position: absolute;
	transition: all 0.3s ease;
	width: 100%;
}

.drawer-bar.bar01 {
	top: 0;
}

.drawer-bar.bar02 {
	top: 50%;
	transform: translateY(-50%);
}

.drawer-bar.bar03 {
	bottom: 0;
	top: initial;
}

.drawer-bar.is-active.bar01 {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

.drawer-bar.is-active.bar02 {
	opacity: 0;
	visibility: hidden;
}

.drawer-bar.is-active.bar03 {
	bottom: initial;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}

.drawer {
	display: none;
}

.drawer .search-box {
	margin: 7.9rem auto 0;
	width: 57.1rem;
}

.drawer .search-box input {
	background: #fff;
	border: 0.2rem solid #ccc;
	border-radius: 5.5rem;
	font-size: 3.2rem;
	height: 11.1rem;
	padding: 0 6.1rem;
}

.drawer .search-box .search-btn {
	height: 3.6rem;
	right: 3.1rem;
	width: 3.6rem;
}

.drawer-item .arrow-right {
	height: 1.1rem;
	width: 2.8rem;
}

.drawer-item-parent {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 5.7rem;
}

.drawer-item-child {
	display: none;
	padding-bottom: 5.4rem;
	padding-left: 8rem;
}

.drawer-item-child-items {
	border-top: 0.1rem solid #e8e8e8;
	display: grid;
	gap: 6.3rem 0;
	grid-template-columns: 1fr;
	padding-right: 6rem;
}

.drawer-item-child-link {
	align-items: center;
	color: #222;
	display: flex;
	font-family: "Roboto", sans-serif;
	font-size: 3.2rem;
	font-weight: bold;
	justify-content: space-between;
}

.drawer-item-grandchild-items {
	display: grid;
	gap: 5.2rem 0;
	grid-template-columns: 1fr;
	margin-top: 6rem;
	padding-left: 4.1rem;
}

.drawer-item-grandchild-item-link {
	color: #222;
	font-size: 2.8rem;
	padding-left: 3.9rem;
	position: relative;
}

.drawer-item-grandchild-item-link::before {
	background: url(../img/arrow-link.png) no-repeat center center/cover;
	content: "";
	height: 2.1rem;
	left: 0;
	position: absolute;
	top: 55%;
	transition: all 0.3s ease;
	translate: 0 -50%;
	width: 1.1rem;
}

/*=======================
フッター
=======================*/

.footer {
	background: #f0f0f0;
	margin-top: auto;
	padding: 40px 0 22px;
}

.footer-container {
	display: grid;
	grid-template-columns: 1fr 360px;
}

.footer-content {
	grid-column: 1/2;
	grid-row: 1/2;
}

.footer-logo {
	width: 135px;
}

.footer-tel {
	color: #222;
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	font-weight: bold;
	margin-top: 36px;
}

.footer-tel-link {
	color: #222;
	font-size: 35px;
	margin-left: 11px;
}

.footer-nav {
	grid-column: 2/3;
	grid-row: 1/2;
	margin-top: -20px;
}

.footer-nav-items {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 0px 60px;
	height: 150px;
}

.footer-nav-item {
	align-items: center;
	border-bottom: 1px solid #ccc;
	display: flex;
	height: 50px;
	padding-right: 5px;
	width: 150px;
}

.footer-nav-item-link {
	align-items: center;
	color: #222;
	display: flex;
	font-size: 14px;
	justify-content: space-between;
	transition: all 0.3s ease;
	width: 100%;
}

.footer-nav-item-link .arrow-right {
	margin-top: 9px;
}

.footer-link-items {
	display: flex;
	gap: 0 36px;
	grid-column: 2/3;
	grid-row: 2/3;
	justify-content: right;
	margin-top: 40px;
}

.footer-link-item a {
	color: #666;
	font-size: 13px;
	transition: all 0.3s ease;
}

.copyright {
	color: #999;
	font-family: "Roboto", sans-serif;
	font-size: 11px;
	grid-column: 1/2;
	grid-row: 2/3;
	margin-top: auto;
}

/*=======================
トップページ
=======================*/

.fv {
	width: 100%;
}

.fv-slider.single-slide .swiper-wrapper {
	justify-content: center;
}

.fv-slider .swiper-slide {
	height: 380px;
	margin: 0 5px;
	overflow: hidden;
	width: 614px;
}

.fv-slider .swiper-slide img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s ease;
	width: 100%;
}

.fv-slider .swiper-pagination {
	margin-top: 15px;
	position: static;
}

.fv-slider .swiper-pagination .swiper-pagination-bullet {
	background: #ccc;
	border-radius: initial;
	height: 3px;
	margin: 0 5px;
	opacity: 1;
	width: 40px;
}

.fv-slider .swiper-pagination .swiper-pagination-bullet-active {
	background: #222;
}

.pageTop-content {
	padding: 58px 0 60px;
}

.pageTop-content-container {
	display: grid;
	gap: 0 60px;
	grid-template-columns: 1fr 1fr;
}

.post-items {
	margin-top: 14px;
}

.post-item {
	align-items: center;
	border-top: 1px solid #ccc;
	display: flex;
	min-height: 60px;
}

.post-item:last-of-type {
	border-bottom: 1px solid #ccc;
}

.post-item-link {
	color: #222;
	display: grid;
	grid-template-columns: 88px 1fr;
	line-height: 1.5;
	transition: all 0.3s ease;
}

.post-item-date {
	color: #999;
	font-size: 12px;
	margin-top: 3px;
	transition: all 0.3s ease;
}

.post-item-title {
	display: inline;
	font-size: 16px;
}

.post-item-title .pdf-icon {
	background: url("../img/icon_pdf.svg") no-repeat center center/cover;
	display: inline-block;
	height: 20px;
	margin-left: 15px;
	transition: all 0.3s ease;
	vertical-align: middle;
	width: 19px;
}

.post-btn {
	margin-left: auto;
	margin-top: 21px;
}

/*=======================
下層 / お問い合わせ
=======================*/

.page-wrapper.-pageContact .low-head {
	background-image: url(../img/head_contact_pc.png);
}

.contact-form {
	padding: 80px 0 62px;
}

.contact-form dl {
	margin-bottom: 36px;
}

.contact-form dl:last-of-type {
	margin-bottom: 0;
}

.contact-form dt {
	align-items: center;
	display: flex;
	font-size: 16px;
	font-weight: 600;
	gap: 0 20px;
	margin-bottom: 10px;
}

.contact-form dd {
	font-size: 16px;
	width: 100%;
	word-break: break-all;
}

.contact-form .required {
	background: #d73862;
	color: #fff;
	display: grid;
	font-size: 12px;
	height: 24px;
	place-content: center;
	width: 40px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	background: #f3f6f9;
	border: 1px solid #dbdfe4;
	border-radius: initial;
	font-size: 16px;
	padding: 0 20px;
	width: 100%;
}

.contact-form input::-moz-placeholder,
.contact-form select::-moz-placeholder,
.contact-form textarea::-moz-placeholder {
	color: #aaa;
	font-size: 16px;
}

.contact-form input::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
	color: #aaa;
	font-size: 16px;
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
	background: #fff;
	border-color: #222;
	outline: none;
}

.contact-form input,
.contact-form select {
	height: 60px;
}

.contact-form select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.contact-form select::-ms-expand {
	display: none;
}

.contact-form select option {
	color: #222;
}

.contact-form select option:first-of-type {
	color: #bbb;
}

.contact-form select.your-select {
	color: #bbb;
}

.contact-form .wpcf7-form-control-wrap:has(.your-select) {
	position: relative;
}

.contact-form .wpcf7-form-control-wrap:has(.your-select)::before {
	background: url(../img/arrow_down.png) no-repeat center center/cover;
	content: "";
	height: 7px;
	position: absolute;
	right: 20px;
	top: 65%;
	translate: 0 -50%;
	width: 15px;
}

.contact-form textarea {
	height: 180px;
	padding-top: 20px;
}

.contact-form input[type=checkbox] {
	margin: 0;
	opacity: 0;
	position: absolute;
	width: 100%;
	z-index: 10;
}

.contact-form input[type=checkbox]:focus-visible + span::before {
	outline: auto 1px;
}

.contact-form input[type=checkbox] + span {
	display: inline-block;
	font-size: 14px;
	padding-left: 40px;
	position: relative;
}

.contact-form input[type=checkbox] + span a {
	color: #222;
	position: relative;
	text-decoration: underline;
	text-underline-offset: 6px;
	transition: all 0.3s ease;
	z-index: 10;
}

.contact-form input[type=checkbox] + span::before,
.contact-form input[type=checkbox] + span::after {
	content: "";
	position: absolute;
	top: 0;
}

.contact-form input[type=checkbox] + span::before {
	background: #fff;
	border: 1px solid #222;
	height: 26px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 26px;
}

.contact-form input[type=checkbox] + span::after {
	border-bottom: 2px solid #fff;
	border-left: 2px solid #fff;
	height: 5px;
	left: 8px;
	opacity: 0;
	top: 40%;
	transform: rotate(-45deg);
	translate: 0 -50%;
	width: 10px;
}

.contact-form input[type=checkbox]:checked + span::before {
	background: #005ccd;
	border-color: #005ccd;
}

.contact-form input[type=checkbox]:checked + span::after {
	opacity: 1;
}

.contact-form .btn-wrapper {
	display: flex;
	gap: 40px;
	justify-content: center;
	margin-top: 40px;
}

.contact-form .btn-wrapper .send-btn {
	position: relative;
	width: 168px;
}

.contact-form .btn-wrapper .send-btn::after {
	background: url(../img/arrow_right_black.png) no-repeat center center/cover;
	content: "";
	height: 5px;
	position: absolute;
	right: 25px;
	top: 50%;
	transition: all 0.3s ease;
	translate: 0 -50%;
	width: 14px;
	z-index: 10;
}

.contact-form .btn-wrapper .back-btn {
	position: relative;
	width: 128px;
}

.contact-form .btn-wrapper .back-btn::after {
	background: url(../img/arrow_right_white.png) no-repeat center center/cover;
	content: "";
	height: 5px;
	left: 25px;
	position: absolute;
	top: 50%;
	transform: scale(-1, 1);
	transition: all 0.3s ease;
	translate: 0 -50%;
	width: 14px;
	z-index: 10;
}

.contact-form .btn-wrapper .back-btn .btn {
	background: #aaa;
	border-color: #aaa;
	color: #fff;
	text-align: right;
}

.contact-form .btn-wrapper .btn {
	background: #fff;
	border-color: #222;
	border-radius: 26px;
	height: 52px;
	padding: 0 35px;
	text-align: left;
}

.contact-content {
	margin-inline: auto;
	max-width: 740px;
}

.privacy-check {
	margin: 45px auto 0;
	width: -moz-fit-content;
	width: fit-content;
}

.privacy-check label {
	align-items: center;
	display: flex;
}

.wpcf7-spinner {
	bottom: -34px;
	left: 50%;
	margin: 0;
	position: absolute;
	transform: translateX(-50%);
}

span.wpcf7-form-control.wpcf7-radio {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 40px;
}

.wpcf7-list-item {
	margin: 0;
}

.wpcf7 form .wpcf7-response-output {
	display: none;
}

/*=======================
下層 / 確認ページ
=======================*/

.page-wrapper.-pageConfirm .contact-form {
	padding: 60px 0 62px;
}

.page-wrapper.-pageConfirm .contact-form .btn-wrapper {
	margin-top: 60px;
}

.page-wrapper.-pageConfirm dl {
	border-top: 1px solid #dbdfe4;
	display: grid;
	grid-template-columns: 186px 1fr;
	margin-bottom: 0;
}

.page-wrapper.-pageConfirm dl:last-of-type {
	border-bottom: 1px solid #dbdfe4;
}

.page-wrapper.-pageConfirm dl dt,
.page-wrapper.-pageConfirm dl dd {
	line-height: 1.5;
	padding: 18px 0;
}

.page-wrapper.-pageConfirm dl dt {
	align-items: initial;
	margin-bottom: 0;
}

.page-wrapper.-pageConfirm dl.text-multi dd {
	white-space: pre-wrap;
}

/*=======================
下層 / サンクスページ
=======================*/

.page-wrapper.-pageLow.-pageThanks .thanks-content {
	padding: 54px 0;
}

.page-wrapper.-pageLow.-pageThanks .thanks-text-wrapper {
	margin-inline: auto;
	max-width: 878px;
}

.page-wrapper.-pageLow.-pageThanks .thanks-text {
	font-size: 16px;
	line-height: 1.5;
}

.page-wrapper.-pageLow.-pageThanks .thanks-text:not(:nth-of-type(1)) {
	margin-top: 24px;
}

/*=======================
下層 / 製品個別ページ
=======================*/

.product-field {
	display: grid;
	gap: 40px 20px;
	grid-template-columns: 1fr 1fr;
	justify-content: center;
}

.product-img {
	max-width: 450px;
	width: 100%;
}

.product-slider {
	width: 100%;
}

.product-slider .swiper-slide {
	overflow: hidden;
	width: 100% !important;
}

.product-slider .swiper-slide img {
	-o-object-fit: cover;
	aspect-ratio: 1/1;
	object-fit: cover;
}

.product-thumbnail {
	display: grid;
	gap: 10px 10px;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	margin-top: 10px;
}

.product-thumbnail .swiper-slide-thumb-active {
	opacity: 1;
}

.thumb-item {
	overflow: hidden;
}

.thumb-item img {
	-o-object-fit: cover;
	aspect-ratio: 1/1;
	object-fit: cover;
}

.product-info hgroup {
	margin-left: -2px;
	margin-top: -5px;
}

.product-title {
	font-family: "Roboto", sans-serif;
	font-size: 48px;
	font-weight: bold;
}

.product-name {
	font-size: 19px;
	margin-top: 6px;
}

.product-cat {
	align-items: center;
	display: grid;
	gap: 0 21px;
	grid-template-columns: 78px 1fr;
	margin-top: 20px;
}

.product-cat-text {
	font-size: 13px;
	line-height: 1.46;
}

.product-cat-items {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 10px;
}

.product-cat-item {
	background: #e5ebf2;
	border-radius: 15px;
	display: grid;
	height: 30px;
	padding: 0 16px;
	place-content: center;
}

.product-cat-item-link {
	color: #222;
	font-size: 13px;
	line-height: 1.46;
}

.product-link {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 10px;
	margin-top: 40px;
}

.product-link-btn {
	border-radius: 25px;
	font-weight: 500;
	height: 50px;
	padding: 0 20px;
}

.product-link-btn .icon-pdf {
	height: 20px;
	width: 19px;
}

.product-link-btn .icon-mail {
	height: 14px;
	width: 20px;
}

.product-text {
	font-size: 16px;
	line-height: 1.5;
	margin-top: 55px;
}

.product-content {
	margin-top: 40px;
}

.product-content th,
.product-content td {
	font-size: 16px;
	line-height: 1.5;
}

.product-content p {
	font-size: 16px;
	line-height: 1.5;
	padding: 10px 0;
}

.product-content img {
	max-width: 100%;
}

.product-content li {
	font-size: 16px;
	line-height: 1.5;
	list-style: inside;
}

.product-text a,
.product-content a,
.single-content a {
	color: #222;
	text-decoration: underline;
	transition: all 0.3s ease;
}

.product-text a:visited,
.product-content a:visited,
.single-content a:visited {
	color: #222;
	text-decoration: underline;
}

.product-table {
	margin-top: 39px;
}

.product-table table {
	width: 100%;
}

.product-table th,
.product-table td {
	font-size: 16px;
	min-height: 50px;
	padding: 17px 38px;
	vertical-align: middle;
}

.product-table th {
	background: #f6f6f6;
	border-bottom: 1px solid #ccc;
	border-top: 1px solid #ccc;
	font-weight: 500;
}

.product-table th.left {
	text-align: left;
}

.product-table th.right {
	text-align: right;
}

.product-table td {
	border-bottom: 1px solid #ccc;
}

.product-table td.right {
	text-align: right;
}

.product-table-text {
	font-size: 14px;
	line-height: 1.46;
	text-align: right;
}

.product-table-container {
	margin: 18px 0 16px;
	overflow-y: hidden !important;
}

.related-content {
	margin-top: 70px;
}

.related-items-wrapper {
	margin-top: 29px;
}

.related-items {
	display: grid;
	gap: 20px 20px;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	overflow: hidden;
}

.related-item-link {
	color: #222;
	transition: all 0.3s ease;
}

.related-item-link hgroup {
	margin-top: 11px;
}

.related-item-img {
	transition: all 0.3s ease;
}

.related-item-title {
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.5;
}

.related-item-text {
	font-size: 14px;
	line-height: 1.39;
}

/*=======================
製品一覧ページ
=======================*/

.pageArchiveProduct-content {
	padding: 50px 0;
}

.page-title {
	border-bottom: 1px solid #222;
	padding-bottom: 13px;
}

.page-title .title-en {
	font-family: "Roboto", sans-serif;
	font-size: 48px;
	font-weight: bold;
}

.page-title .title-jp {
	font-size: 16px;
	margin-left: 15px;
}

.archive-content {
	display: grid;
	gap: 0 39px;
	grid-template-columns: 240px 1fr;
	margin-top: 57px;
}

.archive-sidebar .search-box {
	margin-top: 4px;
}

.search-box {
	position: relative;
}

.search-box input {
	background: #f2f2f2;
	border: none;
	border-radius: 22px;
	font-size: 14px;
	height: 44px;
	padding: 0 23px;
	width: 100%;
}

.search-box input::-moz-placeholder {
	color: #999;
}

.search-box input::placeholder {
	color: #999;
}

.search-box .search-btn {
	background: url(../img/icon_search.svg) no-repeat center center/cover;
	content: "";
	cursor: pointer;
	height: 18px;
	position: absolute;
	right: 19px;
	top: 50%;
	translate: 0 -50%;
	width: 18px;
}

.sidebar-content {
	margin-top: 37px;
}

.sidebar-content-title {
	border-bottom: 2px solid #222;
	font-size: 18px;
	font-weight: 600;
	padding-bottom: 11px;
}

.sidebar-parent-items {
	display: grid;
	gap: 9px 0;
	grid-template-columns: 1fr;
	padding-top: 9px;
}

.sidebar-parent-item {
	border-bottom: 1px solid #ccc;
	padding-bottom: 15px;
}

.sidebar-parent-item-link {
	align-items: center;
	color: #222;
	display: flex;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-weight: bold;
	justify-content: space-between;
	margin: 14px 0;
	padding-right: 6px;
	transition: all 0.3s ease;
}

.sidebar-child-items {
	display: grid;
	gap: 14px 0;
	grid-template-columns: 1fr;
	padding-left: 17px;
	padding-top: 4px;
}

.sidebar-child-item-link {
	color: #222;
	display: block;
	font-size: 16px;
	padding-left: 18px;
	position: relative;
	transition: all 0.3s ease;
	width: -moz-fit-content;
	width: fit-content;
}

.sidebar-child-item-link::before {
	background: url(../img/arrow_link_black.png) no-repeat center center/cover;
	content: "";
	height: 10px;
	left: -3px;
	position: absolute;
	top: 55%;
	transition: all 0.3s ease;
	translate: 0 -50%;
	width: 6px;
}

.archive-parent-items {
	display: grid;
	gap: 80px 0;
	grid-template-columns: 1fr;
}

.archive-parent-item-title {
	font-family: "Roboto", sans-serif;
	font-size: 32px;
	font-weight: bold;
}

.archive-child-items {
	display: grid;
	gap: 34px 0;
	grid-template-columns: 1fr;
	margin-top: 34px;
}

.archive-child-item-title {
	border-bottom: 1px solid #222;
	font-size: 19px;
	font-weight: 500;
	padding-bottom: 11px;
}

.archive-grandchild-items {
	display: grid;
	gap: 30px 20px;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	margin-top: 15px;
}

.archive-grandchild-item-link {
	color: #222;
	transition: all 0.3s ease;
}

.archive-grandchild-item-img {
	transition: all 0.3s ease;
}

.archive-grandchild-item-img img {
	-o-object-fit: cover;
	aspect-ratio: 1/1;
	object-fit: cover;
}

.archive-grandchild-item-title {
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-weight: bold;
	margin-top: 9px;
	padding: 0 3px;
}

.archive-grandchild-item-text {
	font-size: 14px;
	line-height: 1.39;
	margin-top: 3px;
	padding: 0 3px;
}

.pagenation-wrapper {
	display: grid;
	gap: 20px 0;
	margin-top: 60px;
	place-content: center;
	position: relative;
}

.custom-pagination {
	align-items: center;
	display: flex;
	gap: 0 10px;
	position: absolute;
	right: 0;
	top: 50%;
	translate: 0 -50%;
}

.custom-pagination .current-page,
.custom-pagination a {
	border-radius: 50%;
	display: grid;
	height: 44px;
	width: 44px;
}

.custom-pagination .current-page {
	border: 1px solid #999;
	color: #999;
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	place-content: center;
}

.custom-pagination a {
	border: 1px solid #ccc;
	position: relative;
	transition: all 0.3s ease;
}

.custom-pagination a::before {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 10px;
	left: 50%;
	position: absolute;
	top: 50%;
	translate: -50% -50%;
	width: 5px;
}

.custom-pagination a.prev::before,
.custom-pagination a.next::before {
	background-image: url(../img/arrow_link_black.png);
}

.custom-pagination a.prev::before {
	rotate: 180deg;
}

.custom-pagination a.disabled {
	pointer-events: none;
}

.custom-pagination a.disabled::before {
	background-image: url(../img/arrow-link.png);
}

.total-pages {
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	font-weight: 500;
}

/*=======================
下層 / 会社概要
=======================*/

.page-wrapper.-pageAbout .low-head {
	background-image: url(../img/head_about_pc.png);
}

.sec-profile {
	padding: 55px 0 80px;
}

.profile-items {
	margin-top: 40px;
}

.profile-item {
	border-bottom: 1px solid #ccc;
	display: grid;
	grid-template-columns: 200px 1fr;
}

.profile-item:first-of-type {
	border-top: 1px solid #ccc;
}

.profile-item dt,
.profile-item dd {
	font-size: 16px;
	line-height: 1.5;
	min-height: 50px;
	padding: 13px 19px;
}

.profile-item dt {
	background: #f6f6f6;
	font-weight: bold;
}

.about-bg {
	background: #cadce0;
	overflow: hidden;
	position: relative;
}

.about-bg-top {
	height: auto;
	position: absolute;
	width: 100%;
}

.about-bg-bottom {
	bottom: -96px;
	height: auto;
	position: absolute;
	width: 100%;
}

.sec-social {
	padding: 55px 0 60px;
	position: relative;
	z-index: 1;
}

.social-lead-wrapper {
	display: grid;
	grid-template-columns: 1fr 525px;
}

.social-lead-container {
	background: rgba(255, 255, 255, 0.85);
	margin-left: auto;
	margin-right: calc(50% - 50vw);
	margin-top: 59px;
	padding: 34px 40px 42px;
	padding-right: calc(50vw - 50%);
}

.social-lead:last-of-type {
	margin-top: 27px;
}

.social-items {
	display: grid;
	gap: 75px 0;
	grid-template-columns: 1fr;
	margin-top: 80px;
}

.social-item.bg-white {
	background: rgba(255, 255, 255, 0.65);
	padding: 35px 40px 40px;
}

.social-philosophy-items {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	margin-top: 40px;
}

.social-philosophy-item {
	background: #fff;
	border: 1px solid #222;
	height: 250px;
	padding: 37px 28px 0;
	width: 293px;
}

.social-philosophy-item-num {
	font-family: "Roboto", sans-serif;
	font-size: 24px;
	font-weight: bold;
}

.social-philosophy-item-title {
	font-size: 24px;
	font-weight: bold;
	margin-top: 16px;
}

.social-philosophy-item-title.ls {
	letter-spacing: -0.08em;
}

.social-philosophy-item-text {
	font-size: 16px;
	line-height: 1.5;
	margin-top: 25px;
}

.social-item-text {
	font-size: 16px;
	line-height: 1.5;
	margin-top: 32px;
}

/*=======================
プライバシーポリシー
=======================*/

.sec-privacy {
	padding: 55px 0 116px;
}

.privacy-items {
	display: grid;
	gap: 76px 0;
	grid-template-columns: 1fr;
	margin-top: 49px;
}

.privacy-item:nth-of-type(1) .privacy-child-item::before {
	content: counter(child-num01) ".";
	counter-increment: child-num01 1;
}

.privacy-item:nth-of-type(2) .privacy-child-item::before {
	content: counter(child-num02) ".";
	counter-increment: child-num02 1;
}

.privacy-item-title {
	border-bottom: 1px solid #222;
	font-size: 19px;
	font-weight: 500;
	padding-bottom: 10px;
}

.privacy-child-items {
	display: grid;
	gap: 22px 0;
	grid-template-columns: 1fr;
	margin-top: 34px;
}

.privacy-child-item {
	font-size: 16px;
	line-height: 1.5;
	padding-left: 31px;
	position: relative;
}

.privacy-child-item::before {
	font-size: 16px;
	font-weight: 500;
	left: 0;
	position: absolute;
	top: 0;
}

.privacy-grandchild-items {
	display: grid;
	gap: 12px 0;
	grid-template-columns: 1fr;
	margin-top: 13px;
}

.privacy-grandchild-items.num01 .privacy-grandchild-item::before {
	content: counter(grand-child-num01) "）";
	counter-increment: grand-child-num01 1;
}

.privacy-grandchild-items.num02 .privacy-grandchild-item::before {
	content: counter(grand-child-num02) "）";
	counter-increment: grand-child-num02 1;
}

.privacy-grandchild-item {
	padding-left: 28px;
	position: relative;
}

.privacy-grandchild-item::before {
	font-size: 16px;
	font-weight: 500;
	left: 0;
	position: absolute;
	top: 0;
}

/*=======================
下層 / 事業内容
=======================*/

.page-wrapper.-pageService .low-head {
	background-image: url(../img/head_service_pc.png);
}

.sec-about {
	padding: 75px 0 60px;
}

.sec-about-btn {
	border-color: #222;
	border-radius: 26px;
	font-size: 16px;
	gap: 0 13px;
	height: 52px;
	margin-top: 52px;
	padding: 0 20px 0 27px;
	width: 195px;
}

.sec-about-content {
	display: grid;
	gap: 0 50px;
	grid-template-columns: 1fr 195px;
	margin-top: 52px;
}

.sec-products {
	background: #f3f6f9;
	padding: 55px 0 61px;
}

.sec-products-content {
	align-items: start;
	display: grid;
	gap: 0 50px;
	grid-template-columns: 1fr 1fr;
	margin-top: 59px;
}

.sec-products-img {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.sec-products-img img {
	-o-object-fit: cover;
	aspect-ratio: 1/1;
	object-fit: cover;
}

.sec-products-lead {
	font-size: 16px;
	margin-top: -7px;
}

.sec-products-btn {
	border-color: #222;
	border-radius: 26px;
	font-size: 16px;
	gap: 0 20px;
	height: 52px;
	margin-left: auto;
	margin-top: 58px;
	padding: 0 20px 0 27px;
	width: 185px;
}

.sec-custom {
	background: #495c7d;
	padding: 55px 0 60px;
}

.sec-custom-lead {
	font-size: 16px;
	margin-top: 52px;
}

.sec-custom-items {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr 1fr 1fr;
	margin-top: 58px;
}

.sec-custom-item {
	background: #fff;
	display: grid;
	grid-template-rows: auto 1fr auto;
}

.sec-custom-item-body {
	display: grid;
	grid-template-rows: auto 1fr auto;
	padding: 28px 30px 29px;
}

.sec-custom-item-title {
	font-size: 22px;
	font-weight: bold;
	grid-row: 1;
}

.sec-custom-item-text {
	font-size: 16px;
	grid-row: 2;
	letter-spacing: -0.05em;
	line-height: 1.5;
	margin-top: 25px;
}

.sec-custom-item-btn {
	gap: 0 12px;
	grid-row: 3;
	margin-left: auto;
	margin-top: 28px;
	padding: 0 25px;
	width: 148px;
}

.sec-download {
	padding: 55px 0 50px;
}

.sec-download-items {
	align-items: stretch;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 0 50px;
	height: 200px;
	margin-top: 40px;
}

.sec-download-item {
	align-items: center;
	border-top: 1px solid #ccc;
	display: grid;
	flex: 1;
	font-size: 16px;
	gap: 0 20px;
	grid-template-columns: 1fr 162px;
	line-height: 1.5;
	min-height: 59px;
	padding: 8px 0;
	width: calc((100% - 50px) / 2);
}

.sec-download-item:nth-of-type(3),
.sec-download-item:nth-of-type(6) {
	border-bottom: 1px solid #ccc;
}

.sec-download-item-btn {
	padding: 0 25px;
}

/*=======================
下層 / フッ素樹脂切削加工
=======================*/

.page-wrapper.-pageFluoropolymerMachining .low-head {
	background-image: url(../img/head_fluoropolymer-machining_pc.png);
}

.sec-fluoropolymer-machining {
	padding: 75px 0 56px;
}

.sec-fluoropolymer-machining-lead {
	margin-top: 52px;
}

.sec-process {
	background: #f3f6f9;
	padding: 75px 0 82px;
}

.sec-process-lead-wrapper {
	margin-top: 53px;
}

.sec-process-lead {
	font-size: 16px;
}

.sec-process-lead:not(:nth-of-type(1)) {
	margin-top: 24px;
}

.sec-process-items {
	display: grid;
	gap: 0 50px;
	grid-template-columns: 1fr 1fr;
	margin-top: 55px;
}

.sec-process-item {
	background: #fff;
	border: 1px solid #222;
	display: grid;
	gap: 0;
	grid-row: span 3;
	grid-template-rows: subgrid;
	padding: 27px 30px 30px;
}

.sec-process-item-head {
	align-items: center;
	display: flex;
	gap: 0 18px;
}

.sec-process-item-num {
	font-family: "Roboto", sans-serif;
	font-size: 24px;
	font-weight: bold;
}

.sec-process-item-title {
	font-size: 18px;
	font-weight: bold;
	margin-top: -2px;
}

.sec-process-item-text {
	font-size: 16px;
	line-height: 1.5;
	margin-top: 12px;
}

.sec-process-item-img {
	margin-top: 28px;
}

/*=======================
下層 / フッ素樹脂コーティング
=======================*/

.page-wrapper.-pageFluoresinCoating .low-head {
	background-image: url(../img/head_fluoresin-coating_pc.png);
}

.sec-fluoropolymer-coating {
	padding: 75px 0 69px;
}

.sec-fluoropolymer-coating-content {
	align-items: center;
	display: grid;
	gap: 20px 83px;
	margin-top: 22px;
}

.sec-fluoropolymer-coating-lead {
	grid-column: 1/2;
}

.sec-fluoropolymer-coating-lead:nth-of-type(1) {
	grid-row: 1/2;
	margin-top: 34px;
}

.sec-fluoropolymer-coating-lead:nth-of-type(2) {
	grid-row: 2/3;
}

.sec-fluoropolymer-coating-lead:nth-of-type(3) {
	grid-row: 3/4;
}

.sec-fluoropolymer-coating-img {
	grid-column: 2/3;
	grid-row: 1/4;
}

.sec-features {
	background: url(../img/fluoresin-coating_features_bg_pc.png) no-repeat center center/cover;
	padding: 75px 0 80px;
}

.sec-features-items {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	justify-content: center;
	margin-top: 39px;
}

.sec-features-item {
	background: rgba(255, 255, 255, 0.9);
	display: grid;
	gap: 0;
	grid-row: span 2;
	grid-template-rows: subgrid;
	padding: 39px 30px 38px;
}

.sec-features-item-num {
	font-family: "Roboto", sans-serif;
	font-size: 24px;
	font-weight: bold;
}

.sec-features-item-title {
	font-size: 24px;
	font-weight: bold;
	margin-top: 16px;
}

.sec-features-item-text {
	font-size: 16px;
	line-height: 1.5;
	margin-top: 25px;
}

.sec-features-box {
	background: #fff;
	border: 5px solid #dbdfe4;
	display: grid;
	gap: 0 39px;
	margin-top: 20px;
	padding: 27px 37px;
}

.sec-features-box-img {
	grid-column: 1/2;
	grid-row: 1/3;
}

.sec-features-box-title {
	font-size: 18px;
	font-weight: bold;
	grid-column: 2/3;
	grid-row: 1/2;
}

.sec-features-box-text {
	font-size: 16px;
	grid-column: 2/3;
	grid-row: 2/3;
	line-height: 1.5;
	margin-top: 13px;
}

.sec-case {
	padding: 75px 0 78px;
}

.sec-case-items {
	display: grid;
	gap: 20px 23px;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	justify-content: center;
	margin-top: 59px;
}

.sec-case-item img {
	-o-object-fit: cover;
	aspect-ratio: 233/172;
	object-fit: cover;
}

.sec-dedication {
	background: url(../img/fluoresin-coating_dedication_bg_pc.png) no-repeat center center/cover;
	padding: 75px 0 81px;
}

.sec-dedication-items {
	display: grid;
	gap: 0 51px;
	grid-template-columns: 1fr 1fr;
	margin-top: 60px;
}

.sec-dedication-item {
	background: #fff;
	border: 1px solid #222;
	padding: 26px 28px;
}

.sec-dedication-item-head {
	align-items: center;
	display: flex;
	gap: 0 22px;
}

.sec-dedication-item-img {
	height: 28px;
	width: 28px;
}

.sec-dedication-item-title {
	font-size: 24px;
	font-weight: bold;
}

.sec-dedication-item-body {
	margin-top: 22px;
}

.sec-dedication-item-text {
	font-size: 16px;
	letter-spacing: -0.07em;
	line-height: 1.5;
}

.sec-dedication-item-text:not(:nth-of-type(1)) {
	margin-top: 24px;
}

.sec-dedication-sub-items {
	background: #e7eaef;
	display: flex;
	flex-wrap: wrap;
	gap: 0 13px;
	margin-top: 26px;
	padding: 11px 20px 15px 22px;
}

.sec-dedication-sub-item {
	font-size: 16px;
	line-height: 1.88;
	padding-left: 24px;
	position: relative;
}

.sec-dedication-sub-item::before {
	content: counter(dedication-num) ".";
	counter-increment: dedication-num 1;
	font-size: 16px;
	font-weight: bold;
	left: 0;
	position: absolute;
	top: 0;
}

.sec-before {
	padding: 75px 0 80px;
}

.sec-dl-items {
	display: grid;
	gap: 20px 0;
	grid-template-columns: 1fr;
	margin-top: 59px;
}

.sec-dl-item {
	background: #e7eaef;
	padding: 31px 30px 29px;
}

.sec-dl-item-question {
	display: flex;
	font-size: 18px;
	font-weight: bold;
	gap: 0 20px;
}

.sec-dl-item-num {
	font-family: "Roboto", sans-serif;
	font-size: 24px;
	font-weight: bold;
	margin-top: -2px;
}

.sec-dl-item-answer {
	font-size: 16px;
	letter-spacing: -0.07em;
	line-height: 1.5;
	margin-top: 12px;
}

.sec-handling {
	background: url(../img/fluoresin-coating_safe_bg_pc.png) no-repeat center center/cover;
	padding: 79px 0 80px;
}

.sec-handling .sec-dl-item {
	background: #fff;
}

.sec-handling-lead {
	color: #fff;
	font-size: 16px;
	line-height: 1.5;
	margin-top: 59px;
}

.sec-handling-items {
	margin-top: 28px;
}

.sec-handling-item.indent {
	padding-left: 2em;
	text-indent: -2em;
}

.sec-comparison {
	padding: 75px 0 121px;
}

.sec-comparison-content {
	margin-top: 59px;
}

.sec-comparison-table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

.sec-comparison-table tr:nth-child(odd) {
	background: #f3f6f9;
}

.sec-comparison-table th,
.sec-comparison-table td {
	border: 1px solid #bbc1c7;
	font-size: 16px;
	height: 60px;
	padding: 0 30px;
	text-align: center;
	vertical-align: middle;
}

.sec-comparison-table th {
	background: #58626b;
	border-right: none;
	color: #fff;
}

.sec-comparison-table th:last-of-type {
	border-right: 1px solid #bbc1c7;
}

.sec-comparison-table td.bg {
	background: #e7eaef;
	font-weight: 600;
}

.sec-comparison-table td:last-of-type {
	text-align: left;
}

/*=======================
下層 / フッ素樹脂について
=======================*/

.page-wrapper.-pageAboutFluoropolymers .low-head {
	background-image: url(../img/head_about-fluoropolymers_pc.png);
}

.pageAboutFluoropolymers-bg {
	background: url(../img/about-fluoropolymers_what_bg_pc.png) no-repeat center center/cover;
}

.sec-what {
	padding: 55px 0;
}

.sec-what-content {
	display: grid;
	gap: 0 52px;
	grid-template-columns: 1fr 1fr;
	margin-top: 52px;
}

.sec-what-lead {
	font-size: 16px;
	grid-column: 1/2;
	letter-spacing: -0.05em;
}

.sec-what-lead:nth-of-type(1) {
	grid-row: 1/2;
}

.sec-what-lead:nth-of-type(2) {
	grid-row: 2/3;
}

.sec-what-lead:nth-of-type(3) {
	grid-row: 3/4;
}

.sec-what-lead:nth-of-type(4) {
	grid-row: 4/5;
}

.sec-what-lead:nth-of-type(5) {
	grid-row: 5/6;
}

.sec-what-lead:not(:nth-of-type(1)) {
	margin-top: 24px;
}

.sec-what-img {
	grid-column: 2/3;
	grid-row: 1/6;
	margin-top: 4px;
}

.sec-properties {
	padding: 55px 0 60px;
}

.sec-properties-items {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	justify-content: center;
	margin-top: 41px;
}

.sec-properties-item {
	background: #fff;
	display: grid;
	gap: 0;
	grid-row: span 2;
	grid-template-rows: subgrid;
	padding: 30px 30px 40px;
}

.sec-properties-item-head {
	align-items: flex-end;
	display: flex;
	justify-content: space-between;
}

.sec-properties-item-title {
	font-size: 22px;
	font-weight: bold;
	line-height: 1.5;
}

.sec-properties-item-text {
	font-size: 16px;
	letter-spacing: -0.05em;
	line-height: 1.5;
	margin-top: 26px;
}

.sec-type {
	padding: 53px 0 61px;
}

.sec-type-content {
	margin-top: 39px;
}

.sec-type-table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

.sec-type-table tr:nth-child(odd) {
	background: #f3f6f9;
}

.sec-type-table th,
.sec-type-table td {
	border: 1px solid #bbc1c7;
	font-size: 16px;
	height: 60px;
	padding: 0 30px;
	text-align: center;
	vertical-align: middle;
}

.sec-type-table th {
	background: #58626b;
	border-left: none;
	border-right: none;
	color: #fff;
}

.sec-type-table th:last-of-type {
	border-right: 1px solid #bbc1c7;
}

.sec-type-table td {
	text-align: left;
}

.sec-type-table td.bg {
	background: #e7eaef;
	font-weight: 600;
}

/*=======================
下層 / 検索結果
=======================*/

/*=======================
下層 / ニュース
=======================*/

.pageNews-content {
	padding: 50px 0;
}

.pageNews-content .sidebar-content {
	margin-top: initial;
}

.pageNews-content .news-select-box {
	display: none;
}

.news-sidebar-items {
	display: grid;
	gap: 30px 0;
	grid-template-columns: 1fr;
	margin-top: 20px;
}

.news-sidebar-item-link {
	color: #222;
	display: block;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-weight: bold;
	padding-left: 25px;
	position: relative;
	transition: all 0.3s ease;
	width: -moz-fit-content;
	width: fit-content;
}

.news-sidebar-item-link::before {
	background: url(../img/arrow_link_black.png) no-repeat center center/cover;
	content: "";
	height: 10px;
	left: 0;
	position: absolute;
	top: 50%;
	transition: all 0.3s ease;
	translate: 0 -50%;
	width: 6px;
}

.news-parent-items {
	display: grid;
	gap: 40px 0;
	grid-template-columns: 1fr;
}

.news-parent-item-title {
	font-family: "Roboto", sans-serif;
	font-size: 32px;
	font-weight: bold;
}

.news-child-items {
	margin-top: 40px;
}

.news-child-item {
	align-items: center;
	border-top: 1px solid #ccc;
	display: flex;
	min-height: 59px;
}

.news-child-item:last-of-type {
	border-bottom: 1px solid #ccc;
}

.news-child-item-link {
	align-items: center;
	display: flex;
	gap: 0 30px;
	transition: all 0.3s ease;
}

.news-child-item-date {
	color: #999;
	font-size: 12px;
	transition: all 0.3s ease;
}

.news-child-item-title {
	color: #222;
	display: inline-block;
	font-size: 16px;
	line-height: 1.5;
	transition: all 0.3s ease;
	word-break: break-word;
}

.news-child-item-title .pdf-icon {
	background: url("../img/icon_pdf.svg") no-repeat center center/cover;
	display: inline-block;
	height: 20px;
	margin-left: 15px;
	transition: all 0.3s ease;
	vertical-align: middle;
	width: 19px;
}

.no-article {
	font-size: 16px;
}

/*=======================
下層 / ニュース個別
=======================*/

.single-date {
	color: #999;
	font-size: 14px;
}

.single-title {
	border-bottom: 1px solid #222;
	font-size: 36px;
	font-weight: 500;
	line-height: 1.2;
	margin-top: 20px;
	padding-bottom: 20px;
}

.single-content {
	padding: 59px 0 119px;
}

.single-content p,
.single-content li {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	margin: 10px 0;
	word-break: break-all;
}

.single-content ul,
.single-content ol {
	margin: 10px 0;
}

.single-content li {
	list-style: inside;
}

.single-content img,
.single-content iframe {
	margin: 10px 0;
	max-width: 100%;
}

.single-content h2 {
	border-bottom: 1px solid #ccc;
	font-size: 28px;
	font-weight: 500;
	line-height: 1.04;
	margin: 10px 0;
	padding-bottom: 19px;
}

.single-content h3 {
	font-size: 22px;
	font-weight: 500;
	line-height: 1.09;
	margin: 10px 0;
}

.single-btn {
	background: #aaa;
	border-color: #aaa;
	color: #fff;
	margin-inline: auto;
}

.single-btn .arrow-right {
	transform: scale(-1, 1);
}

@media (hover: hover) and (pointer: fine) {

.btn:hover {
	background: #005ccd;
	border-color: #005ccd;
	color: #fff;
}

.btn:hover svg,
.btn:hover text {
	fill: #fff;
}

.breadcrumb-items span a:hover {
	color: #005ccd;
}

.header-nav-item:has(.dropdown):hover .dropdown {
	opacity: 1;
	visibility: visible;
}

.dropdown-parent-item-link:hover {
	color: #005ccd;
}

.dropdown-child-item-link:hover {
	color: #005ccd;
	translate: 6px 0;
}

.dropdown-child-item-link:hover::before {
	background-image: url(../img/arrow-link-blue.png);
}

.header-nav-item-link:hover::after {
	opacity: 1;
}

.header-btn-item:hover .header-btn {
	background: #005ccd;
	border-color: #005ccd;
}

.header-btn-item:hover .header-btn .icon-search {
	fill: #fff;
}

.footer-nav-item-link:hover {
	color: #005ccd;
	translate: 6px 0;
}

.footer-link-item a:hover {
	color: #005ccd;
}

.fv-slider .swiper-slide:hover img {
	opacity: 0.75;
	scale: 1.05;
}

.post-item-link:hover {
	color: #005ccd;
	translate: 6px 0;
}

.post-item-link:hover .post-item-date {
	color: #005ccd;
}

.post-item-link:hover .pdf-icon {
	background-image: url(../img/icon_pdf_blue.svg);
}

.contact-form input[type=checkbox] + span a:hover {
	color: #005ccd;
	text-decoration-color: transparent;
}

.contact-form .btn-wrapper .send-btn:hover::after {
	background-image: url(../img/arrow_right_white.png);
}

.contact-form .btn-wrapper .back-btn:hover::after {
	background-image: url(../img/arrow_right_black.png);
}

.contact-form .btn-wrapper .back-btn .btn:hover {
	background: #fff;
	border-color: #222;
	color: #222;
}

.contact-form .btn-wrapper .btn:hover {
	background: #005ccd;
	border-color: #005ccd;
}

.product-text a:hover,
.product-content a:hover,
.single-content a:hover {
	color: #005ccd;
	text-decoration: none;
}

.related-item-link:hover {
	color: #005ccd;
}

.related-item-link:hover .related-item-img {
	opacity: 0.75;
	scale: 1.05;
}

.sidebar-parent-item-link:hover {
	color: #005ccd;
}

.sidebar-child-item-link:hover {
	color: #005ccd;
	translate: 6px 0;
}

.sidebar-child-item-link:hover::before {
	background-image: url(../img/arrow-link-blue.png);
}

.archive-grandchild-item-link:hover {
	color: #005ccd;
}

.archive-grandchild-item-link:hover .archive-grandchild-item-img {
	opacity: 0.75;
	scale: 1.05;
}

.custom-pagination a:not(.disabled):hover {
	background: #005ccd;
}

.custom-pagination a:not(.disabled):hover::before {
	background-image: url(../img/arrow_link_white.png);
}

.news-sidebar-item-link:hover {
	color: #005ccd;
	translate: 6px 0;
}

.news-sidebar-item-link:hover::before {
	background-image: url(../img/arrow-link-blue.png);
}

.news-child-item-link:hover {
	color: #005ccd;
	translate: 6px 0;
}

.news-child-item-link:hover .news-child-item-date,
.news-child-item-link:hover .news-child-item-title {
	color: #005ccd;
}

.news-child-item-link:hover .pdf-icon {
	background-image: url(../img/icon_pdf_blue.svg);
}

}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {

.btn:hover {
	background: #005ccd;
	border-color: #005ccd;
	color: #fff;
}

.btn:hover svg,
.btn:hover text {
	fill: #fff;
}

.breadcrumb-items span a:hover {
	color: #005ccd;
}

.header-nav-item:has(.dropdown):hover .dropdown {
	opacity: 1;
	visibility: visible;
}

.dropdown-parent-item-link:hover {
	color: #005ccd;
}

.dropdown-child-item-link:hover {
	color: #005ccd;
	translate: 6px 0;
}

.dropdown-child-item-link:hover::before {
	background-image: url(../img/arrow-link-blue.png);
}

.header-nav-item-link:hover::after {
	opacity: 1;
}

.header-btn-item:hover .header-btn {
	background: #005ccd;
	border-color: #005ccd;
}

.header-btn-item:hover .header-btn .icon-search {
	fill: #fff;
}

.footer-nav-item-link:hover {
	color: #005ccd;
	translate: 6px 0;
}

.footer-link-item a:hover {
	color: #005ccd;
}

.fv-slider .swiper-slide:hover img {
	opacity: 0.75;
	scale: 1.05;
}

.post-item-link:hover {
	color: #005ccd;
	translate: 6px 0;
}

.post-item-link:hover .post-item-date {
	color: #005ccd;
}

.post-item-link:hover .pdf-icon {
	background-image: url(../img/icon_pdf_blue.svg);
}

.contact-form input[type=checkbox] + span a:hover {
	color: #005ccd;
	text-decoration-color: transparent;
}

.contact-form .btn-wrapper .send-btn:hover::after {
	background-image: url(../img/arrow_right_white.png);
}

.contact-form .btn-wrapper .back-btn:hover::after {
	background-image: url(../img/arrow_right_black.png);
}

.contact-form .btn-wrapper .back-btn .btn:hover {
	background: #fff;
	border-color: #222;
	color: #222;
}

.contact-form .btn-wrapper .btn:hover {
	background: #005ccd;
	border-color: #005ccd;
}

.product-text a:hover,
.product-content a:hover,
.single-content a:hover {
	color: #005ccd;
	text-decoration: none;
}

.related-item-link:hover {
	color: #005ccd;
}

.related-item-link:hover .related-item-img {
	opacity: 0.75;
	scale: 1.05;
}

.sidebar-parent-item-link:hover {
	color: #005ccd;
}

.sidebar-child-item-link:hover {
	color: #005ccd;
	translate: 6px 0;
}

.sidebar-child-item-link:hover::before {
	background-image: url(../img/arrow-link-blue.png);
}

.archive-grandchild-item-link:hover {
	color: #005ccd;
}

.archive-grandchild-item-link:hover .archive-grandchild-item-img {
	opacity: 0.75;
	scale: 1.05;
}

.custom-pagination a:not(.disabled):hover {
	background: #005ccd;
}

.custom-pagination a:not(.disabled):hover::before {
	background-image: url(../img/arrow_link_white.png);
}

.news-sidebar-item-link:hover {
	color: #005ccd;
	translate: 6px 0;
}

.news-sidebar-item-link:hover::before {
	background-image: url(../img/arrow-link-blue.png);
}

.news-child-item-link:hover {
	color: #005ccd;
	translate: 6px 0;
}

.news-child-item-link:hover .news-child-item-date,
.news-child-item-link:hover .news-child-item-title {
	color: #005ccd;
}

.news-child-item-link:hover .pdf-icon {
	background-image: url(../img/icon_pdf_blue.svg);
}

}

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

html {
	font-size: 0.8333333333vw;
}

.sec-title.pc-large .title-en {
	font-size: 48px;
}

.sec-title.pc-large .title-jp {
	font-size: 16px;
	margin-top: 7px;
}

}

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

html {
	font-size: 1.3333333333vw;
}

.inner {
	margin-inline: auto;
	max-width: initial;
	width: 63rem;
}

.sec-title {
	gap: 0 1.5rem;
}

.sec-title .title-en {
	font-size: 6rem;
}

.sec-title .title-en.sp-w101 {
	display: block;
	width: 101%;
}

.sec-title .title-jp {
	font-size: 3rem;
	margin-top: 2.3rem;
}

.sec-lead {
	font-size: 3.2rem;
}

.btn {
	border-radius: 999px;
	border-width: 0.2rem;
	font-size: 2.4rem;
	gap: 0 1.5rem;
	height: 8.1rem;
	padding: 0 4.1rem;
}

br.is-pc {
	display: none;
}

br.is-sp {
	display: inline;
}

span.is-pc {
	display: none;
}

span.is-sp {
	display: inline;
}

.arrow-right {
	height: 0.8rem;
	width: 2.1rem;
}

.icon-download {
	height: 1.4rem;
	width: 1.7rem;
}

.page-wrapper {
	padding-top: 20rem;
}

.page-wrapper.-pageLowTemplate .low-head {
	height: 46.4rem;
}

.page-wrapper.-pageLowTemplate .low-head .inner {
	padding: initial;
	width: 63rem;
}

.page-wrapper.-pageLowTemplate .low-title .title-en {
	font-size: 8.6rem;
}

.page-wrapper.-pageLowTemplate .low-title .title-jp {
	font-size: 4rem;
	margin-top: 2.6rem;
}

.page-wrapper.-pageLowTemplate .sec-title .title-en {
	font-size: 6rem;
	line-height: 1.07;
}

.page-wrapper.-pageLowTemplate .sec-title .title-jp {
	font-size: 3rem;
	margin-top: 0.7rem;
}

.page-wrapper.-pageLowTemplate .single-content {
	padding: 6.1rem 0 0;
}

.breadcrumb {
	border-width: 0.1rem;
}

.breadcrumb-inner {
	padding: initial;
	width: 63rem;
}

.breadcrumb-items {
	gap: 0 7.1rem;
	height: 13rem;
}

.breadcrumb-items span {
	font-size: 2.2rem;
}

.breadcrumb-items span::after {
	height: 1.8rem;
	right: -4rem;
	top: 58%;
	width: 1.1rem;
}

.pageLow-content {
	padding: 6rem 0 20rem;
}

.header {
	box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.15);
	height: 20rem;
	justify-content: space-between;
	padding: 0 4rem;
	padding-bottom: 1rem;
}

.header-logo {
	height: 9rem;
	width: 30.5rem;
}

.header-nav {
	display: none;
}

.header-btn:not(.drawer-btn) {
	display: none;
}

.drawer-btn {
	border-width: 0.2rem;
	cursor: pointer;
	display: grid;
	height: 11rem;
	width: 11rem;
}

.drawer-bars {
	height: 3.6rem;
	width: 4.6rem;
}

.drawer-bar {
	height: 0.5rem;
}

.drawer {
	background: #fff;
	display: block;
	margin-left: auto;
	max-height: 100dvh;
	overflow: auto;
	padding-bottom: 20.9rem;
	position: fixed;
	right: 0;
	top: 0;
	transform: translateX(100%);
	transition: all 0.3s ease;
	width: 69rem;
	z-index: 1000;
}

.drawer.is-active {
	transform: translateX(0);
}

.drawer-head {
	align-items: center;
	display: flex;
	height: 20rem;
	justify-content: right;
	padding: 0 4rem;
}

.drawer-item {
	border-top: 0.1rem solid #e8e8e8;
	padding: 5.4rem 0;
}

.drawer-item:last-of-type {
	border-bottom: 0.1rem solid #e8e8e8;
}

.drawer-item:has(.drawer-item-parent) {
	padding-bottom: 0;
}

.drawer-arrow-down {
	padding: 0 6rem;
	transition: all 0.3s ease;
}

.drawer-arrow-down img {
	height: 1.5rem;
	width: 2.7rem;
}

.drawer-arrow-down.is-open {
	rotate: 180deg;
}

.drawer-item-link {
	align-items: center;
	color: #222;
	display: flex;
	font-size: 3rem;
	font-weight: bold;
	justify-content: space-between;
	padding: 0 6rem 0 8rem;
}

.drawer-bg {
	background: rgba(0, 0, 0, 0.1);
	height: 100%;
	position: fixed;
	transition: all 0.3s ease;
	visibility: hidden;
	width: 100%;
	z-index: 500;
}

.drawer-bg.is-active {
	visibility: visible;
}

.drawer-item-child-item {
	border-top: 0.1rem solid #e8e8e8;
	padding-top: 3.4rem;
}

.footer {
	padding: 5.5rem 0 4.4rem;
}

.footer-container {
	grid-template-columns: 1fr;
}

.footer-content {
	display: flex;
	flex-direction: column-reverse;
	gap: 2.9rem 0;
	grid-row: 3/4;
	margin-top: 5.5rem;
}

.footer-logo {
	width: 23.7rem;
}

.footer-tel {
	font-size: 2.8rem;
	margin-top: initial;
}

.footer-tel-link {
	font-size: 7.1rem;
	margin-left: 2rem;
}

.footer-nav {
	grid-column: 1/2;
	margin-top: initial;
}

.footer-nav-items {
	gap: 0 6rem;
	height: 34.5rem;
}

.footer-nav-item {
	border-width: 0.1rem;
	height: 11.5rem;
	padding-right: initial;
	width: 28.5rem;
}

.footer-nav-item-link {
	font-size: 2.8rem;
}

.footer-nav-item-link .arrow-right {
	margin-top: 0.9rem;
}

.footer-link-items {
	flex-direction: column;
	gap: 3.4rem 0;
	grid-column: 1/2;
	margin-left: auto;
	margin-top: 5.6rem;
	width: 28.5rem;
}

.footer-link-item a {
	font-size: 2.6rem;
}

.copyright {
	font-size: 2rem;
	grid-row: 4/5;
	margin-top: 3.8rem;
	text-align: right;
}

.fv-slider .swiper-slide {
	height: 50rem;
	margin: 0;
	width: 100%;
}

.fv-slider .swiper-pagination {
	margin-top: 3rem;
}

.fv-slider .swiper-pagination .swiper-pagination-bullet {
	height: 0.7rem;
	margin: 0 0.8rem;
	width: 5.1rem;
}

.pageTop-content {
	padding: 7.1rem 0 10rem;
}

.pageTop-content-container {
	gap: 9.1rem 0;
	grid-template-columns: 1fr;
}

.post-items {
	margin-top: 3.3rem;
}

.post-item {
	border-width: 0.1rem;
	height: auto;
	min-height: 9rem;
	padding: 1.7rem 0;
}

.post-item:last-of-type {
	border-width: 0.1rem;
}

.post-item-link {
	grid-template-columns: 14.5rem 1fr;
	line-height: 1.45;
}

.post-item-date {
	font-size: 2.2rem;
	margin-top: 0.6rem;
}

.post-item-title {
	font-size: 2.8rem;
}

.post-item-title .pdf-icon {
	height: 3rem;
	margin-left: 1.5rem;
	width: 2.9rem;
}

.post-btn {
	margin-top: 3.9rem;
}

.page-wrapper.-pageContact .low-head {
	background-image: url(../img/head_contact_sp.png);
}

.contact-form {
	padding: 7.8rem 0 10rem;
}

.contact-form dl {
	margin-bottom: 7.2rem;
}

.contact-form dt {
	font-size: 3.2rem;
	gap: 0 3.9rem;
	margin-bottom: 2rem;
}

.contact-form dd {
	font-size: 3.2rem;
}

.contact-form .required {
	font-size: 2.4rem;
	height: 4.8rem;
	width: 8rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	border-width: 0.1rem;
	font-size: 3.2rem;
	padding: 0 4.2rem;
}

.contact-form input::-moz-placeholder,
.contact-form select::-moz-placeholder,
.contact-form textarea::-moz-placeholder {
	font-size: 3.2rem;
	padding-top: 2.4rem;
}

.contact-form input::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
	font-size: 3.2rem;
	padding-top: 2.4rem;
}

.contact-form input,
.contact-form select {
	height: 12rem;
}

.contact-form .wpcf7-form-control-wrap:has(.your-select)::before {
	height: 1.4rem;
	right: 3rem;
	width: 3rem;
}

.contact-form textarea {
	height: 36rem;
	padding-top: 2.1rem;
}

.contact-form input[type=checkbox] + span {
	font-size: 2.8rem;
	padding-left: 7.3rem;
}

.contact-form input[type=checkbox] + span a {
	text-underline-offset: 1.2rem;
}

.contact-form input[type=checkbox] + span::before {
	border-width: 0.1rem;
	height: 5.2rem;
	width: 5.2rem;
}

.contact-form input[type=checkbox] + span::after {
	border-width: 0.4rem;
	height: 1rem;
	left: 1.6rem;
	width: 2rem;
}

.contact-form .btn-wrapper {
	gap: 4rem;
	margin-top: 8rem;
}

.contact-form .btn-wrapper .send-btn {
	width: 33.6rem;
}

.contact-form .btn-wrapper .send-btn::after {
	height: 1rem;
	right: 5rem;
	width: 2.4rem;
}

.contact-form .btn-wrapper .back-btn {
	width: 25.6rem;
}

.contact-form .btn-wrapper .back-btn::after {
	height: 1rem;
	right: 5rem;
	width: 2.4rem;
}

.contact-form .btn-wrapper .btn {
	border-radius: 5.2rem;
	height: 10.4rem;
	padding: 0 7rem;
}

.privacy-check {
	margin-top: 9.2rem;
}

span.wpcf7-form-control.wpcf7-radio {
	display: block;
}

.wpcf7-list-item {
	display: block;
	margin-bottom: 1.9rem;
}

.wpcf7-list-item:last-child {
	margin-bottom: 0;
}

.page-wrapper.-pageConfirm .contact-form {
	padding: 7.9rem 0 10rem;
}

.page-wrapper.-pageConfirm .contact-form .btn-wrapper {
	margin-top: 10rem;
}

.page-wrapper.-pageConfirm dl {
	border-top: 0.1rem solid #ccc;
	grid-template-columns: 1fr;
}

.page-wrapper.-pageConfirm dl:last-of-type {
	border-bottom: 0.1rem solid #ccc;
}

.page-wrapper.-pageConfirm dl dt {
	background: #f6f6f6;
	padding: 2.5rem 4rem;
}

.page-wrapper.-pageConfirm dl dd {
	padding: 3.1rem 4rem;
}

.page-wrapper.-pageLow.-pageThanks .thanks-content {
	padding: 7.7rem 0 10rem;
}

.page-wrapper.-pageLow.-pageThanks .thanks-text-wrapper {
	max-width: initial;
}

.page-wrapper.-pageLow.-pageThanks .thanks-text {
	font-size: 3.2rem;
}

.page-wrapper.-pageLow.-pageThanks .thanks-text:not(:nth-of-type(1)) {
	margin-top: 4.8rem;
}

.product-field {
	gap: 8rem 0;
	grid-template-columns: 1fr;
}

.product-img {
	max-width: 100%;
}

.product-thumbnail {
	gap: 1rem 1rem;
	margin-top: 1rem;
}

.product-info hgroup {
	margin: initial;
}

.product-title {
	font-size: 10rem;
}

.product-name {
	font-size: 4rem;
	margin-top: 1.3rem;
}

.product-cat {
	gap: 0 4.8rem;
	grid-template-columns: 16rem 1fr;
	margin-top: 4.9rem;
}

.product-cat-text {
	font-size: 2.6rem;
}

.product-cat-items {
	gap: 1.9rem 1.9rem;
}

.product-cat-item {
	border-radius: 3rem;
	height: 6rem;
	padding: 0 3.2rem;
}

.product-cat-item-link {
	font-size: 2.6rem;
}

.product-link {
	gap: 4rem 0;
	margin-top: 6rem;
}

.product-link-btn {
	border-radius: 6rem;
	font-size: 3.2rem;
	height: 12rem;
	justify-content: center;
	width: 100%;
}

.product-link-btn .icon-pdf {
	height: 4rem;
	margin-top: 0.4rem;
	width: 3.8rem;
}

.product-link-btn .icon-mail {
	height: 2.8rem;
	margin-top: 0.8rem;
	width: 4rem;
}

.product-text {
	font-size: 3.2rem;
	margin-top: 10.7rem;
}

.product-content {
	margin-top: 7.2rem;
}

.product-content th,
.product-content td {
	font-size: 3.2rem;
}

.product-content p {
	font-size: 3.2rem;
	padding: 2rem 0;
}

.product-content li {
	font-size: 3.2rem;
}

.product-table {
	margin-top: 18rem;
}

.product-table table {
	padding-right: 6rem;
	table-layout: auto;
}

.product-table th,
.product-table td {
	font-size: 3.2rem;
	min-height: 10rem;
	padding: 3.4rem 7.6rem;
	white-space: nowrap;
}

.product-table th {
	border-width: 0.1rem;
}

.product-table td {
	border-width: 0.1rem;
}

.product-table-text {
	font-size: 2.9rem;
}

.product-table-container {
	margin: 4.1rem 0;
	margin-right: calc(50% - 50vw);
}

.related-content {
	margin-top: 19.1rem;
}

.related-content .sec-title .title-jp {
	margin-top: 1rem;
}

.related-items-wrapper {
	margin-right: calc(50% - 50vw);
	margin-top: 8.1rem;
}

.related-items {
	gap: 4rem 4rem;
	max-width: 166rem;
	width: -moz-fit-content;
	width: fit-content;
}

.related-item {
	width: 30rem;
}

.related-item-link hgroup {
	margin-top: 1.8rem;
}

.related-item-title {
	font-size: 3.2rem;
}

.related-item-text {
	font-size: 2.8rem;
}

.pageArchiveProduct-content {
	padding: 5.2rem 0 30.8rem;
}

.page-title {
	border-width: 0.1rem;
	display: flex;
	padding-bottom: 2.4rem;
}

.page-title.no-flex {
	display: block;
}

.page-title.no-flex .title-jp {
	margin-left: initial;
	margin-top: 1.5rem;
}

.page-title .title-en {
	font-size: 8rem;
}

.page-title .title-jp {
	display: block;
	font-size: 3rem;
	margin-left: 3rem;
	margin-top: 3.5rem;
}

.archive-content {
	grid-template-columns: 1fr;
	margin-top: 4rem;
}

.archive-sidebar {
	display: none;
}

.archive-parent-items {
	gap: 16rem 0;
}

.archive-parent-item-title {
	font-size: 8rem;
}

.archive-child-items {
	gap: 12.6rem 0;
	margin-top: 6.8rem;
}

.archive-child-item-title {
	border-width: 0.1rem;
	font-size: 4rem;
	padding-bottom: 2rem;
}

.archive-grandchild-items {
	gap: 5.9rem 4rem;
	grid-template-columns: 1fr 1fr;
	margin-top: 4rem;
}

.archive-grandchild-item-title {
	font-size: 3.6rem;
	margin-top: 3.4rem;
	padding: 0;
}

.archive-grandchild-item-text {
	font-size: 3.2rem;
	line-height: 1.5;
	margin-top: 1.1rem;
	padding: 0;
}

.pagenation-wrapper {
	gap: 6rem 0;
	margin-top: 8rem;
}

.archive-btn {
	height: 8.8rem;
	justify-content: center;
	width: 32.1rem;
}

.custom-pagination {
	bottom: -14rem;
	gap: 0 1.9rem;
	left: 55%;
	top: initial;
	translate: -50% 0;
	width: -moz-max-content;
	width: max-content;
}

.custom-pagination .current-page,
.custom-pagination a {
	height: 8.8rem;
	width: 8.8rem;
}

.custom-pagination .current-page {
	border-width: 0.1rem;
	font-size: 2.9rem;
}

.custom-pagination a {
	border-width: 0.1rem;
}

.custom-pagination a::before {
	height: 2rem;
	width: 1.1rem;
}

.total-pages {
	font-size: 2.8rem;
}

.page-wrapper.-pageAbout .low-head {
	background-image: url(../img/head_about_sp.png);
}

.sec-profile {
	padding: 7rem 0 8.3rem;
}

.profile-items {
	margin-top: 6.3rem;
}

.profile-item {
	border: none;
	grid-template-columns: 1fr;
}

.profile-item:first-of-type {
	border: none;
}

.profile-item dt,
.profile-item dd {
	font-size: 3.2rem;
	min-height: 10rem;
	padding: 2.6rem 4.1rem;
}

.about-bg-bottom {
	bottom: 0;
}

.sec-social {
	padding: 5.1rem 0 12rem;
}

.social-lead-wrapper {
	grid-template-columns: 1fr;
}

.social-lead-wrapper span {
	display: none;
}

.social-lead-container {
	margin-right: initial;
	margin-top: 12rem;
	padding: 3.7rem 3.3rem 4.8rem;
}

.social-lead {
	letter-spacing: -0.03em;
}

.social-lead:last-of-type {
	margin-top: 4.8rem;
}

.social-items {
	gap: 11.1rem 0;
	margin-top: 6rem;
}

.social-item.bg-white {
	padding: 4.1rem 3rem 3.2rem;
}

.social-item.bg-white .sec-title {
	margin-left: 1rem;
}

.social-item.bg-white .sec-title .title-jp {
	margin-top: 1.4rem;
}

.social-philosophy-items {
	gap: 2.8rem;
	margin-top: 4.9rem;
}

.social-philosophy-item {
	border-width: 0.1rem;
	height: initial;
	min-height: 31rem;
	padding: 4.5rem 3.7rem;
	width: 100%;
}

.social-philosophy-item-head {
	align-items: center;
	display: flex;
	gap: 0 2.5rem;
}

.social-philosophy-item-num {
	font-size: 4.6rem;
}

.social-philosophy-item-title {
	font-size: 3.6rem;
	margin-top: -0.3rem;
}

.social-philosophy-item-text {
	font-size: 3.2rem;
	margin-top: 2.7rem;
}

.social-item-text {
	font-size: 3.2rem;
	margin-top: 5.3rem;
}

.page-wrapper.-pageLowTemplate.-pagePrivacy .sec-title .title-en {
	font-size: 7rem;
}

.sec-privacy {
	padding: 7rem 0 9.2rem;
}

.privacy-items {
	gap: 11.2rem 0;
	margin-top: 6.2rem;
}

.privacy-item-title {
	border-width: 0.1rem;
	font-size: 4rem;
	padding-bottom: 2rem;
}

.privacy-child-items {
	gap: 4rem 0;
	margin-top: 4.8rem;
}

.privacy-child-item {
	font-size: 3.2rem;
	padding-left: 6rem;
}

.privacy-child-item::before {
	font-size: 3.2rem;
	left: 0.6rem;
}

.privacy-grandchild-items {
	gap: 1.6rem 0;
	margin-top: 2.5rem;
}

.privacy-grandchild-item {
	padding-left: 4rem;
}

.privacy-grandchild-item::before {
	font-size: 3.2rem;
	left: -0.3rem;
}

.page-wrapper.-pageService .low-head {
	background-image: url(../img/head_service_sp.png);
}

.sec-about {
	padding: 6.9rem 0 7.9rem;
}

.sec-about-btn {
	border-radius: 6rem;
	font-size: 3.2rem;
	gap: initial;
	height: 12rem;
	justify-content: space-between;
	margin: 7.3rem auto 0;
	padding: 0 5.8rem 0 7.5rem;
	width: 43rem;
}

.sec-about-btn .arrow-right {
	height: 1.1rem;
	width: 2.9rem;
}

.sec-about-content {
	gap: initial;
	grid-template-columns: 1fr;
	margin-top: 6.8rem;
}

.sec-products {
	padding: 5.3rem 0 6rem;
}

.sec-products-content {
	align-items: initial;
	gap: initial;
	grid-template-columns: 1fr;
	margin-top: 5.9rem;
}

.sec-products-img {
	grid-template-columns: 1fr 1fr 1fr;
}

.sec-products-info {
	margin-top: 5rem;
}

.sec-products-lead {
	margin-top: initial;
}

.sec-products-btn {
	border-radius: 6rem;
	font-size: 3.2rem;
	gap: initial;
	height: 12rem;
	justify-content: space-between;
	margin: 5.3rem auto 0;
	padding: 0 5.8rem 0 7.6rem;
	width: 40rem;
}

.sec-products-btn .arrow-right {
	height: 1.1rem;
	width: 2.9rem;
}

.sec-custom {
	padding: 5.2rem 0 6.1rem;
}

.sec-custom-lead {
	margin-top: 4.6rem;
}

.sec-custom-items {
	gap: 4rem 0;
	grid-template-columns: 1fr;
	margin-top: 5.6rem;
}

.sec-custom-item {
	grid-template-rows: initial;
}

.sec-custom-item-body {
	grid-template-rows: initial;
	padding: 4.9rem 4.1rem 4rem 4.9rem;
}

.sec-custom-item-title {
	font-size: 4rem;
}

.sec-custom-item-text {
	font-size: 3.2rem;
	margin-top: 2.9rem;
}

.sec-custom-item-btn {
	border-radius: 4rem;
	height: 8.1rem;
	justify-content: space-between;
	margin-top: 3.5rem;
	padding: 0 3.9rem;
	width: 27.1rem;
}

.sec-download {
	padding: 5.4rem 0 12rem;
}

.sec-download-items {
	display: block;
	height: initial;
	margin-top: 6rem;
}

.sec-download-item {
	border-width: 0.1rem;
	font-size: 2.8rem;
	gap: 0 1rem;
	grid-template-columns: 1fr 25.1rem;
	line-height: 1.36;
	min-height: 11.2rem;
	padding: 1.6rem 0;
	width: 100%;
}

.sec-download-item:nth-of-type(3),
.sec-download-item:nth-of-type(6) {
	border-bottom: none;
}

.sec-download-item:last-of-type {
	border-bottom: 0.1rem solid #ccc;
}

.sec-download-item-btn {
	gap: 0;
	height: 8.1rem;
	justify-content: space-between;
	padding: 0 3.5rem 0 3.9rem;
	width: 25.1rem;
}

.page-wrapper.-pageFluoropolymerMachining .low-head {
	background-image: url(../img/head_fluoropolymer-machining_sp.png);
}

.sec-fluoropolymer-machining {
	padding: 6.9rem 0 6.3rem;
}

.sec-fluoropolymer-machining-lead {
	margin-top: 4.8rem;
}

.sec-process {
	padding: 5.4rem 0 10.1rem;
}

.sec-process-lead-wrapper {
	margin-top: 4.6rem;
}

.sec-process-lead {
	font-size: 3.2rem;
	letter-spacing: -0.03em;
}

.sec-process-lead:not(:nth-of-type(1)) {
	margin-top: 4.8rem;
}

.sec-process-items {
	gap: 5.2rem 0;
	grid-template-columns: 1fr;
	margin-top: 5.3rem;
}

.sec-process-item {
	border-width: 0.1rem;
	padding: 4.3rem 3.9rem 4.5rem;
}

.sec-process-item-head {
	gap: 0 2.1rem;
}

.sec-process-item-num {
	font-size: 4.8rem;
}

.sec-process-item-title {
	font-size: 4rem;
	margin-top: -0.2rem;
}

.sec-process-item-text {
	font-size: 3.2rem;
	margin-top: 2.6rem;
}

.sec-process-item-img {
	margin-top: 4.3rem;
}

.page-wrapper.-pageFluoresinCoating .low-head {
	background-image: url(../img/head_fluoresin-coating_sp.png);
}

.sec-fluoropolymer-coating {
	padding: 7rem 0 5.6rem;
}

.sec-fluoropolymer-coating-content {
	grid-template-columns: 1fr;
}

.sec-fluoropolymer-coating-lead:nth-of-type(1) {
	margin-top: 3.4rem;
}

.sec-fluoropolymer-coating-lead:nth-of-type(2) {
	grid-row: 3/4;
	margin-top: 3rem;
}

.sec-fluoropolymer-coating-lead:nth-of-type(3) {
	grid-row: 4/5;
	margin-top: 2.9rem;
}

.sec-fluoropolymer-coating-img {
	grid-column: 1/2;
	grid-row: 2/3;
	margin-top: 3.1rem;
}

.sec-features {
	background-image: url(../img/fluoresin-coating_features_bg_sp.png);
	padding: 5rem 0 6rem;
}

.sec-features-items {
	gap: 3.9rem 0;
	grid-template-columns: 1fr;
	margin-top: 5.9rem;
}

.sec-features-item {
	padding: 4.9rem 3.8rem 4.3rem;
}

.sec-features-item-head {
	display: flex;
	gap: 0 2.2rem;
}

.sec-features-item-num {
	font-size: 4.8rem;
	margin-top: -0.3rem;
}

.sec-features-item-title {
	font-size: 4rem;
	margin-top: initial;
}

.sec-features-item-text {
	font-size: 3.2rem;
	margin-top: 2.5rem;
}

.sec-features-box {
	align-items: center;
	border-width: 1rem;
	gap: 0 3.6rem;
	grid-template-columns: 8rem 1fr;
	margin-top: 4.1rem;
	padding: 4rem;
}

.sec-features-box-img {
	grid-row: 1/2;
	height: 8rem;
	width: 8rem;
}

.sec-features-box-title {
	font-size: 4rem;
}

.sec-features-box-text {
	font-size: 3.2rem;
	grid-column: 1/3;
	margin-top: 2.4rem;
}

.sec-case {
	padding: 4.8rem 0 6rem;
}

.sec-case-items {
	gap: 2rem 3rem;
	grid-template-columns: 1fr 1fr;
	margin-top: 5.1rem;
}

.sec-case-item img {
	aspect-ratio: 19/14;
}

.sec-dedication {
	background-image: url(../img/fluoresin-coating_dedication_bg_sp.png);
	padding: 4.9rem 0 6rem;
}

.sec-dedication-items {
	gap: 4rem 0;
	grid-template-columns: 1fr;
	margin-top: 6rem;
}

.sec-dedication-item {
	border: none;
	padding: 4.1rem 3.8rem 5.3rem;
}

.sec-dedication-item-img {
	height: 5.6rem;
	width: 5.6rem;
}

.sec-dedication-item-title {
	font-size: 4rem;
}

.sec-dedication-item-body {
	margin-top: 2.2rem;
}

.sec-dedication-item-text {
	font-size: 3.2rem;
}

.sec-dedication-item-text:not(:nth-of-type(1)) {
	margin-top: 4.8rem;
}

.sec-dedication-sub-items {
	gap: 0 2.2rem;
	margin-top: 4.1rem;
	padding: 3.2rem 4rem 3.8rem 4rem;
}

.sec-dedication-sub-item {
	font-size: 2.8rem;
	line-height: 1.5;
	padding-left: 4rem;
}

.sec-dedication-sub-item::before {
	font-size: 2.8rem;
}

.sec-before {
	padding: 5rem 0 6rem;
}

.sec-dl-items {
	gap: 3.9rem 0;
	margin-top: 5.9rem;
}

.sec-dl-item {
	padding: 3.9rem 3.8rem 4.6rem;
}

.sec-dl-item-question {
	font-size: 3.6rem;
	gap: 0 2.5rem;
	line-height: 1.5;
}

.sec-dl-item-num {
	font-size: 4.6rem;
	margin-top: -0.3rem;
}

.sec-dl-item-answer {
	font-size: 3.2rem;
	margin-top: 3.2rem;
}

.sec-handling {
	background-image: url(../img/fluoresin-coating_safe_bg_sp.png);
	padding: 5.1rem 0 6rem;
}

.sec-handling-lead {
	font-size: 3.2rem;
	margin-top: 4.8rem;
}

.sec-handling-items {
	margin-top: 2.6rem;
}

.sec-comparison {
	padding: 5.2rem 0 18.6rem;
}

.sec-comparison-content {
	margin-right: calc(50% - 50vw);
	margin-top: 6rem;
	padding-right: 6rem;
}

.sec-comparison-table {
	width: 140rem;
}

.sec-comparison-table th,
.sec-comparison-table td {
	border-width: 0.1rem;
	font-size: 3rem;
	height: 12rem;
	padding: 0 2rem;
}

.sec-comparison-table th:last-of-type {
	border-width: 0.1rem;
}

.page-wrapper.-pageAboutFluoropolymers .low-head {
	background-image: url(../img/head_about-fluoropolymers_sp.png);
}

.pageAboutFluoropolymers-bg {
	background-image: url(../img/about-fluoropolymers_what_bg_sp.png);
}

.sec-what {
	padding: 6.8rem 0;
}

.sec-what-content {
	grid-template-columns: 1fr;
	margin-top: 6.9rem;
}

.sec-what-lead {
	font-size: 3.2rem;
	letter-spacing: normal;
}

.sec-what-lead:nth-of-type(3) {
	grid-row: 3/4;
}

.sec-what-lead:nth-of-type(4) {
	grid-row: 5/6;
}

.sec-what-lead:nth-of-type(5) {
	grid-row: 6/7;
}

.sec-what-lead:not(:nth-of-type(1)) {
	margin-top: 4.8rem;
}

.sec-what-img {
	grid-column: 1/2;
	grid-row: 4/5;
	margin-top: 7.4rem;
}

.sec-properties {
	padding: 3.6rem 0 6rem;
}

.sec-properties-items {
	gap: 4rem;
	grid-template-columns: 1fr;
	margin-top: 5.9rem;
}

.sec-properties-item {
	padding: 5.1rem 3rem 6.2rem;
}

.sec-properties-item-title {
	font-size: 4rem;
}

.sec-properties-item-img {
	margin-right: 2rem;
	width: 10.6rem;
}

.sec-properties-item-text {
	font-size: 3.2rem;
	letter-spacing: normal;
	margin-top: 3.7rem;
}

.sec-type {
	padding: 4.7rem 0 23.5rem;
}

.sec-type-content {
	margin-right: calc(50% - 50vw);
	margin-top: 6rem;
	padding-right: 6rem;
}

.sec-type-table {
	width: 200rem;
}

.sec-type-table th,
.sec-type-table td {
	border-width: 0.1rem;
	font-size: 3.2rem;
	height: 12rem;
	padding: 0 6rem;
}

.sec-type-table th:last-of-type {
	border-width: 0.1rem;
}

.page-wrapper.-pageSearch .page-title {
	display: block;
}

.page-wrapper.-pageSearch .page-title .title-jp {
	margin-left: 0;
}

.pageNews-content {
	padding: 5.2rem 0 30.8rem;
}

.pageNews-content .sidebar-content {
	display: none;
}

.pageNews-content .news-select-box {
	display: block;
	margin-inline: auto;
	position: relative;
}

.pageNews-content .news-select-box::before {
	background: url(../img/arrow_down.png) no-repeat center center/cover;
	content: "";
	height: 1.3rem;
	position: absolute;
	right: 3.5rem;
	top: 50%;
	translate: 0 -50%;
	width: 2.1rem;
}

.pageNews-content .news-select-box select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 0.2rem solid #ccc;
	border-radius: 4rem;
	font-family: "Roboto", sans-serif;
	font-size: 2.8rem;
	font-weight: bold;
	height: 8.1rem;
	line-height: 2.86;
	padding-left: 3.5rem;
	width: 24rem;
}

.pageNews-content .news-select-box select::-ms-expand {
	display: none;
}

.news-content {
	margin-top: 10rem;
}

.news-parent-items {
	gap: 10rem 0;
}

.news-parent-item-title {
	font-size: 4rem;
	font-weight: 500;
}

.news-child-items {
	margin-top: 6.2rem;
}

.news-child-item {
	border-width: 0.1rem;
	min-height: 8.5rem;
	padding: 2.2rem 0;
}

.news-child-item:last-of-type {
	border-width: 0.1rem;
}

.news-child-item-link {
	align-items: initial;
	gap: 0 4rem;
}

.news-child-item-date {
	font-size: 2.2rem;
	padding-top: 0.8rem;
}

.news-child-item-title {
	font-size: 2.8rem;
	line-height: 1.36;
}

.news-child-item-title .pdf-icon {
	height: 3rem;
	margin-left: 1.5rem;
	width: 2.9rem;
}

.no-article {
	font-size: 2.8rem;
}

.single-date {
	font-size: 2.8rem;
}

.single-title {
	font-size: 6rem;
	line-height: 1.33;
	margin-top: 2rem;
	padding-bottom: 2rem;
}

.single-content {
	padding: 8.1rem 0 16.1rem;
}

.single-content p,
.single-content li {
	font-size: 3.2rem;
	margin: 2rem 0;
}

.single-content ul,
.single-content ol {
	margin: 2rem 0;
}

.single-content img,
.single-content iframe {
	margin: 2rem 0;
}

.single-content h2 {
	border-width: 0.1rem;
	font-size: 4.8rem;
	margin: 2rem 0;
	padding-bottom: 2.8rem;
}

.single-content h3 {
	font-size: 4rem;
	margin: 2rem 0;
}

}

@media screen and (min-width: 768px) and (max-width: 900px) {

.custom-pagination {
	position: static;
	translate: initial;
}

}

@media screen and (min-width: 768px) and (max-width: 1000px) {

.sec-comparison-table th,
.sec-comparison-table td {
	padding: 0 10px;
}

.sec-type-table th,
.sec-type-table td {
	padding: 0 10px;
}

}

