html {
	font-size: 4.2666666667vw;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	color: #050505;
	background: #fff;
}

body.noscroll {
	overflow: hidden;
}

a {
	display: block;
	transition: 0.2s;
}

a:hover {
	transition: 0.2s;
}

dt {
	font-weight: normal;
}

img {
	width: 100%;
	max-width: 100%;
	display: block;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

/* Set core body defaults */

body {
	text-rendering: optimizeSpeed;
	min-height: 100dvh;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
	max-width: 100%;
	display: block;
	width: 100%;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* フォームリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

/*
 * footer
 * -------------------------------------------------------------
 */

.footer {
	position: sticky;
	top: 100%;
	padding-block: 1.875rem;
	background: #fdf0cc;
	color: #2e2e2e;
}

.footer__inner {
	max-width: 33.75rem;
	margin-inline: auto;
	padding-inline: 1.25rem;
}

.footer__details {
	display: flex;
	flex-direction: column;
	gap: 2.6875rem;
}

.footer__address {
	font-size: 0.75rem;
	line-height: 1.6;
}

.footer__link {
	width: 1.875rem;
	height: 1.875rem;
}

.footer__link img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.footer__company {
	font-size: 0.75rem;
	margin-top: 0.1875rem;
	line-height: 1.6;
}

.footer__company span {
	font-size: 0.9375rem;
	display: block;
}

.footer__contact {
	font-size: 0.75rem;
	margin-top: 0.1875rem;
}

/*
 * header
 * -------------------------------------------------------------
 */

.header {
	background: #fff;
}

.header__inner {
	padding: 0.9375rem 0.625rem 0.5rem;
	display: flex;
	justify-content: space-between;
}

.header__nav {
	height: 1.875rem;
	background: #187202;
}

.header__list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-inline: 0.9375rem;
	height: 100%;
}

.header__link {
	font-size: 0.75rem;
	font-family: "Montserrat", sans-serif;
	text-transform: uppercase;
	color: #fff;
}

.header__logo {
	font-size: 0.84375rem;
	color: #3e3e3e;
	line-height: 1;
	flex: 1;
	font-weight: 500;
}

.header__logoText {
	font-size: 0.75rem;
	font-weight: 400;
	display: block;
	margin-bottom: 0.125rem;
}

.header__logoEng {
	font-size: 1.8125rem;
	font-family: "century-gothic", sans-serif;
	text-transform: uppercase;
	display: block;
	color: #115601;
	letter-spacing: -0.01em;
	margin-bottom: 0.625rem;
	position: relative;
	left: -0.1875rem;
}

/*
 * l-inner
 * -------------------------------------------------------------
 */

.l-inner {
	width: 100%;
	padding-inline: 0.3125rem;
	max-width: 31.875rem;
	margin-inline: auto;
}

/*
 * l-main
 * -------------------------------------------------------------
 */

.l-main {
	overflow: hidden;
}

/*
 * burger
 * -------------------------------------------------------------
 */

.burger {
	width: min(70px, 2.5rem);
	height: min(45px, 1.4375rem);
	position: relative;
	top: 0.1875rem;
	z-index: 100;
}

.burger::after {
	content: "MENU";
	display: block;
	font-size: min(26px, 0.9375rem);
	font-weight: 300;
	color: #030303;
	position: absolute;
	bottom: max(-43px, -1.5625rem);
	left: 50%;
	transform: translateX(-50%);
}

.burger span {
	display: block;
	width: 100%;
	height: min(5px, 0.1875rem);
	background: #030303;
	position: absolute;
	transition: all 0.2s;
	border-radius: 62.4375rem;
}

.burger span:nth-child(1) {
	top: 0;
}

.burger span:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
}

.burger span:nth-child(3) {
	top: calc(100% - 0.125rem);
}

.burger span.is-active:nth-child(1) {
	top: 50%;
	transform: translateY(-50%) rotate(-40deg);
}

.burger span.is-active:nth-child(2) {
	opacity: 0;
}

.burger span.is-active:nth-child(3) {
	top: 50%;
	transform: translateY(-50%) rotate(40deg);
}

/*
 * c-toTop
 * -------------------------------------------------------------
 */

.c-toTop {
	max-width: 2.5rem;
	margin: 2.5rem auto 0;
}

/*
 * nav
 * -------------------------------------------------------------
 */

.nav {
	transition: all 0.6s;
	visibility: hidden;
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: 0;
	padding: 3.125rem 1.25rem;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	z-index: 10;
}

.nav.is-active {
	opacity: 1;
	visibility: visible;
}

.nav__ttl {
	font-size: 1.4375rem;
	font-weight: 500;
	line-height: 1;
	color: #000000;
	text-transform: uppercase;
	padding-bottom: 0.625rem;
	border-bottom: 4px double #000;
	text-align: center;
}

.nav__list {
	margin-top: 1.25rem;
}

.nav__link {
	font-size: 0.75rem;
	color: #3e3e3e;
	line-height: 1;
	display: flex;
	gap: 1.25rem;
	padding-block: 1.25rem 0.5rem;
	border-bottom: 1px solid #000;
}

.nav__eng {
	text-transform: uppercase;
}

/*
 * company
 * -------------------------------------------------------------
 */

.company {
	padding-top: 1.875rem;
	color: #050505;
	font-weight: 500;
}

.company__inner {
	padding-inline: 0.625rem;
}

.company__mainImg img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.company__mainImgCaption {
	font-size: 0.625rem;
	font-weight: 500;
	text-align: right;
}

.company__secTtl {
	font-size: 0.875rem;
}

.company__table {
	font-size: 0.75rem;
	line-height: 1.35;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	margin-top: 0.75rem;
}

.company__tableItem {
	display: flex;
}

.company__tableItem--col {
	flex-direction: column;
}

.company__dt {
	min-width: 3.4375rem;
	font-weight: 500;
}

.company__dd {
	flex: 1;
}

.company__tableItem--col .company__dd {
	padding-left: 3.4375rem;
	margin-top: 0.3125rem;
}

.company__imgFlex {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 0.3125rem;
	gap: 0.3125rem;
	margin-top: 0.9375rem;
}

.company__imgFlex img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.company__text {
	font-size: 0.75rem;
	line-height: 1.25;
	margin-top: 0.1875rem;
}

/*
 * exhibition
 * -------------------------------------------------------------
 */

.exhibition {
	padding-block: 1.875rem 2.5rem;
	position: relative;
}

.exhibition__list {
	display: flex;
	flex-direction: column;
	gap: 2.1875rem;
}

.exhibition__meta {
	color: #050505;
	line-height: 1.25;
	font-weight: 500;
}

.exhibition__date {
	font-size: 1rem;
}

.exhibition__ttl {
	font-size: 1.0625rem;
}

.exhibition__imgs {
	margin-top: 0.9375rem;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.exhibition__img img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

/*
 * form
 * -------------------------------------------------------------
 */

.form {
	border: 1px solid #aaaaaa;
	font-size: 0.75rem;
	font-weight: 500;
	color: #050505;
}

.form__honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form__rows {
	border-bottom: 1px solid #aaaaaa;
}

.form__row {
	min-height: 1.9375rem;
	border-bottom: 1px solid #aaaaaa;
}

.form__row:last-child {
	border-bottom: 0;
}

.form__row--textarea {
	min-height: 6.3125rem;
}

.form__label {
	display: flex;
	align-items: center;
	min-width: 0;
	padding: 0.3125rem 0.375rem;
	background-color: #eeeeef;
	border-bottom: 1px solid #aaaaaa;
	line-height: 1.25;
}

.form__field {
	display: flex;
	align-items: center;
	min-width: 0;
	padding: 0.375rem 0.375rem;
}

.form__field--industry {
	gap: 0.4375rem;
}

.form__input,
.form__textarea {
	width: 100%;
	border: 1px solid #aaaaaa;
	background-color: #fff;
	font-weight: 400;
}

.form__input {
	height: 1.25rem;
	padding-inline: 0.25rem;
}

.form__textarea {
	height: 5.5625rem;
	padding: 0.25rem;
	resize: vertical;
}

.form__example {
	flex: 0 0 auto;
	color: #1642fe;
	font-size: 0.625rem;
	line-height: 1.2;
}

.form__radios {
	display: flex;
	flex-direction: column;
	gap: 0.3125rem;
	width: 100%;
	white-space: nowrap;
}

.form__radio {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
}

.form__radio span {
	display: inline-block;
	min-width: 8.25rem;
}

.form__radio input[type=checkbox] {
	display: inline-grid;
	place-content: center;
	width: 0.6875rem;
	height: 0.6875rem;
	border: 1px solid #767676;
	border-radius: 50%;
	background-color: #fff;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}

.form__radio input[type=checkbox]::before {
	content: "";
	width: 0.3125rem;
	height: 0.3125rem;
	border-radius: 50%;
	background-color: #050505;
	transform: scale(0);
}

.form__radio input[type=checkbox]:checked::before {
	transform: scale(1);
}

.form__buttons {
	display: flex;
	justify-content: center;
	gap: 1.125rem;
	padding: 0.5rem 0.375rem;
}

.form__button {
	padding: 0.1875rem 0.3125rem;
	border: 1px solid #767676;
	border-radius: 0.125rem;
	background: #efefef;
	line-height: 1.2;
}

/*
 * fv
 * -------------------------------------------------------------
 */

.fv {
	position: relative;
}

.fv__swiper {
	width: 100%;
}

.fv__image {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.fv__pagination.swiper-pagination {
	position: static;
	display: flex;
	justify-content: center;
	gap: 0.9375rem;
	margin-top: 0.625rem;
}

.fv__pagination .swiper-pagination-bullet {
	width: 0.4375rem;
	height: 0.4375rem;
	background-color: #383939;
	opacity: 0.7;
	margin: 0 !important;
}

.fv__pagination .swiper-pagination-bullet-active {
	opacity: 1;
}

.fv__text {
	font-size: 0.625rem;
	padding-block: 1.25rem 1.875rem;
	line-height: 1.4;
	color: #414242;
	text-align: center;
}

/*
 * history
 * -------------------------------------------------------------
 */

.history {
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.35;
	padding-block: 1.875rem 3.4375rem;
}

.history__inner {
	padding-inline: 0.625rem;
}

.history__list {
	display: flex;
	flex-direction: column;
	gap: 0.9375rem;
}

.history__item {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.history__table {
	margin-top: 0.625rem;
}

.history__tableItem {
	display: flex;
	gap: 0.625rem;
}

.history__tableItem--center {
	align-items: center;
}

.history__dt {
	min-width: 2.625rem;
	font-weight: 500;
}

.history__dd {
	flex: 1;
}

.history__imgs {
	display: flex;
	gap: 0.3125rem;
	margin-left: auto;
	max-width: calc(100% - 3.25rem);
}

.history__imgs--col {
	flex-direction: column;
	gap: 0.3125rem;
}

.history__imgs--row3 {
	align-items: stretch;
}

.history__imgs--row3 .history__img {
	height: 4.375rem;
}

.history__imgs--row3 .history__img img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.history__imgs--row3 .history__img.--img1 {
	max-width: 8.625rem;
	flex: 2;
}

.history__imgs--row3 .history__img.--img2,
.history__imgs--row3 .history__img.--img3 {
	max-width: 5.3125rem;
	flex: 1;
}

.history__imgCaption {
	font-size: 0.5625rem;
	margin-top: 0.1875rem;
	text-align: center;
	font-feature-settings: "palt";
}

.history__text {
	padding-left: 3.25rem;
}

/*
 * partnership
 * -------------------------------------------------------------
 */

.partnership {
	padding-top: 1.875rem;
}

.partnership__inner {
	max-width: 33.125rem;
	padding-inline: 0.9375rem;
}

.partnership__secTtl {
	font-size: 1.375rem;
	font-weight: 500;
	color: #050505;
	background: linear-gradient(to bottom, #f2f2f2 0%, #ffffff 18%, #ffffff 72%, #f4f4f4 100%);
	padding: 0.625rem 0.9375rem;
	border-top: 1px solid #e2e2e2;
	border-bottom: 1px solid #e2e2e2;
}

.partnership__body {
	padding: 1.25rem 0.9375rem 2.5rem;
	margin-top: 0.9375rem;
	border: 1px solid #aaaaaa;
	border-bottom: 0;
}

.partnership__body--thanks {
	border: 0;
}

.partnership__text {
	font-size: 0.75rem;
	line-height: 1.25;
}

.partnership__form {
	margin-top: 1.875rem;
}

.partnership__back {
	margin-top: 0.9375rem;
}

/*
 * showroom
 * -------------------------------------------------------------
 */

.showroom {
	padding-block: 1.875rem 3.4375rem;
}

.showroom__secTtl {
	color: #115601;
	display: flex;
	gap: 0.625rem;
	justify-content: center;
	align-items: baseline;
}

.showroom__eng {
	font-size: 1.5rem;
	font-family: "century-gothic", sans-serif;
	text-transform: uppercase;
	letter-spacing: -0.01em;
}

.showroom__ja {
	font-size: 1.25rem;
}

.showroom__lead {
	font-size: 0.875rem;
	color: #050505;
	line-height: 1.6;
	margin-top: 1.125rem;
	text-align: center;
}

.showroom__gallery {
	display: flex;
	flex-direction: column;
	gap: 0.9375rem;
	margin-top: 2.8125rem;
}

.showroom__img img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.showroom__text {
	font-size: 0.75rem;
	line-height: 1.25;
	color: #050505;
	margin-top: 0.3125rem;
}

.showroom__access {
	margin-top: 4.375rem;
}

.showroom__accessTtl {
	font-size: 1.6875rem;
	font-weight: 500;
	color: #050505;
	text-align: center;
}

.showroom__accessMap {
	margin-top: 0.625rem;
	height: 24.25rem;
}

.showroom__accessText {
	font-size: 0.75rem;
	font-weight: 500;
	color: #050505;
	line-height: 1.45;
	margin-top: 0.625rem;
}

.showroom__accessAddress {
	font-size: 0.75rem;
	font-weight: 500;
	color: #050505;
	line-height: 1.45;
	margin-top: 1.875rem;
}

/*
 * topCatalog
 * -------------------------------------------------------------
 */

.topCatalog__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 2px;
	gap: 2px;
}

.topCatalog__item {
	border: 1px solid #767676;
	padding: 0.3125rem;
	background: #e7e6e6;
}

.topCatalog__img img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.topCatalog__link {
	font-size: 0.625rem;
	font-weight: 500;
	color: #515351;
	line-height: 1;
	padding-top: 0.625rem;
	display: flex;
	align-items: center;
	font-feature-settings: "palt";
}

.topCatalog__link::after {
	content: "";
	display: block;
	width: 0.75rem;
	height: 0.75rem;
	border-radius: 50%;
	background: url(./../images/top/arrow.webp) no-repeat center/100%;
	margin-left: auto;
}

/*
 * topInfo
 * -------------------------------------------------------------
 */

.topInfo {
	padding-top: 1.75rem;
}

.topInfo__link {
	padding-block: 1.25rem;
	border-top: 1px solid #456c38;
	border-bottom: 1px solid #456c38;
	background: #e1e6e0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.625rem;
}

.topInfo__link::after {
	content: "";
	display: block;
	width: 1.125rem;
	height: 1.125rem;
	background: url(./../images/top/arrow.webp) no-repeat center/100%;
	margin-left: 1.25rem;
}

.topInfo__link img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	max-width: 2.9375rem;
}

.topInfo__ttl {
	font-size: 1.375rem;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	color: #456c38;
	text-transform: capitalize;
	line-height: 1;
	position: relative;
	top: 0.375rem;
}

.topInfo__logo {
	font-size: 0.6875rem;
	font-family: "century-gothic", sans-serif;
	color: #404140;
	display: block;
	text-align: center;
	text-transform: uppercase;
	margin-top: -0.0625rem;
}

.topInfo__nav {
	margin-top: 1.4375rem;
}

.topInfo__navList {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 0.1875rem;
	gap: 0.1875rem;
}

.topInfo__navItem {
	height: 4.625rem;
	border: 1px solid #545452;
}

.topInfo__navLink {
	font-size: 0.75rem;
	color: #3e3e3e;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	line-height: 1.4;
}

.topInfo__navLink span {
	text-transform: uppercase;
}

/*
 * topNews
 * -------------------------------------------------------------
 */

.topNews {
	padding-block: 4.0625rem 11.25rem;
}

.topNNews__secTtl {
	font-size: 1rem;
	font-family: "Noto Serif JP", serif;
	font-weight: 500;
	color: #2e2e2d;
	padding-left: 0.625rem;
}

.topNews__list {
	margin-top: 0.625rem;
}

.topNews__post {
	font-size: 0.6875rem;
	color: #2e2e2d;
	padding-bottom: 0.625rem;
	border-bottom: 1px solid #b0afac;
	padding-left: 0.625rem;
}

.topNews__ttl {
	line-height: 1.25;
	margin-top: 0.125rem;
}

/*
 * works
 * -------------------------------------------------------------
 */

.works {
	padding-block: 1.875rem 2.5rem;
}

.works__header {
	font-size: 1.625rem;
	font-weight: 500;
	color: #187202;
}

.works__gallery {
	margin-top: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 2.1875rem;
}

.works__ttl {
	font-size: 1rem;
	font-weight: 500;
	padding-bottom: 0.3125rem;
	border-bottom: 1px solid #187202;
	color: #187202;
}

.works__imgs {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	margin-top: 0.625rem;
}

.works__imgs--border {
	gap: 0.9375rem;
}

.works__dotLine {
	display: block;
	width: 100%;
	height: 0.3125rem;
	max-width: 11.5625rem;
	border-top: none;
	background-image: radial-gradient(circle, #187202 0.125rem, transparent 0.125rem);
	background-size: 0.5rem 0.25rem;
	background-repeat: repeat-x;
	background-position: top left;
	margin-inline: auto;
}

.works__imgs--border .works__img {
	border: 2px solid #187202;
}

.works__img img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

/*
 * u-pc
 * -------------------------------------------------------------
 */

.u-pc {
	display: none;
}

/*
 * u-sp
 * -------------------------------------------------------------
 */

.u-sp {
	display: block;
}

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

html {
	font-size: 16px;
}

.footer {
	padding-block: 3.75rem;
}

.footer__inner {
	max-width: 67.5rem;
	padding-inline: 2.5rem;
}

.footer__address {
	font-size: 1rem;
}

.footer__link {
	width: 3.125rem;
	height: 3.125rem;
}

.footer__company {
	font-size: 1rem;
	margin-top: 0.625rem;
}

.footer__company span {
	font-size: 1.125rem;
}

.footer__contact {
	font-size: 1rem;
	margin-top: 0.5rem;
}

.header__inner {
	padding: 1.5625rem 1.25rem 0.75rem;
}

.header__nav {
	height: 3.125rem;
}

.header__list {
	justify-content: center;
	gap: 2.5rem;
}

.header__link {
	font-size: 1.125rem;
}

.header__logo {
	font-size: 1rem;
}

.header__logoText {
	font-size: 0.875rem;
	margin-bottom: 0.25rem;
}

.header__logoEng {
	font-size: 2.5rem;
	margin-bottom: 0.9375rem;
	left: -0.3125rem;
}

.l-inner {
	max-width: 67.5rem;
	padding-inline: 2.5rem;
}

.burger {
	width: 3.125rem;
	height: 1.75rem;
}

.burger::after {
	font-size: 0.875rem;
}

.c-toTop {
	max-width: 3.75rem;
	margin-top: 4.375rem;
}

.nav {
	padding: 6.25rem 2.5rem;
}

.nav__inner {
	max-width: 46.875rem;
	margin-inline: auto;
}

.nav__ttl {
	font-size: 2.5rem;
	padding-bottom: 1.5625rem;
}

.nav__list {
	margin-top: 2.5rem;
}

.nav__link {
	font-size: 1.25rem;
	padding-block: 2.8125rem 0.9375rem;
}

.company {
	padding-top: 3.75rem;
}

.company__inner {
	padding-inline: 2.5rem;
}

.company__mainImgCaption {
	font-size: 0.875rem;
	margin-top: 0.3125rem;
}

.company__secTtl {
	font-size: 1.25rem;
}

.company__table {
	font-size: 1rem;
	line-height: 1.45;
	gap: 1.25rem;
	margin-top: 1.875rem;
}

.company__dt {
	min-width: 6.25rem;
}

.company__tableItem--col .company__dd {
	padding-left: 6.25rem;
}

.company__imgFlex {
	gap: 0.625rem;
	margin-top: 1.875rem;
}

.company__text {
	font-size: 1rem;
	margin-top: 0.5rem;
}

.exhibition {
	padding-block: 3.75rem 4.375rem;
}

.exhibition__list {
	gap: 4.375rem;
}

.exhibition__meta {
	line-height: 1.45;
}

.exhibition__date {
	font-size: 1.25rem;
}

.exhibition__ttl {
	font-size: 1.5rem;
}

.exhibition__imgs {
	margin-top: 1.25rem;
	gap: 0.625rem;
}

.form {
	font-size: 1rem;
}

.form__row {
	display: grid;
	grid-template-columns: 30% 1fr;
}

.form__label {
	padding: 0.375rem 0.9375rem;
	border-bottom: 0;
	border-right: 1px solid #aaaaaa;
	height: 2.875rem;
}

.form__label--textarea {
	height: 100%;
}

.form__field {
	padding: 0.5rem;
}

.form__input {
	height: 1.875rem;
	padding-inline: 0.625rem;
}

.form__textarea {
	height: 8.75rem;
	padding: 0.3125rem 0.625rem;
}

.form__example {
	font-size: 0.875rem;
}

.form__radios {
	flex-direction: row;
	align-items: center;
	gap: 1.25rem;
}

.form__radio {
	gap: 0.3125rem;
}

.form__radio span {
	min-width: auto;
}

.form__radio input[type=checkbox] {
	width: 0.875rem;
	height: 0.875rem;
	position: relative;
	top: 0.125rem;
	margin-left: 0.3125rem;
}

.form__radio input[type=checkbox]::before {
	width: 0.5rem;
	height: 0.5rem;
}

.fv__slide--slide1 {
	display: none;
}

.fv__image {
	max-height: 95vh;
	-o-object-fit: contain;
	object-fit: contain;
}

.fv__pagination.swiper-pagination {
	gap: 1.875rem;
	margin-top: 1.875rem;
}

.fv__pagination .swiper-pagination-bullet {
	width: 0.75rem;
	height: 0.75rem;
}

.fv__text {
	font-size: 1.125rem;
	line-height: 1.6;
	padding-block: 3.75rem 5rem;
}

.history {
	padding-block: 3.75rem 6.875rem;
	font-size: 1rem;
}

.history__inner {
	padding-inline: 2.5rem;
}

.history__list {
	gap: 1.875rem;
}

.history__item {
	gap: 0.9375rem;
}

.history__table {
	margin-top: 1.25rem;
}

.history__tableItem {
	gap: 1.25rem;
}

.history__dt {
	min-width: 3.4375rem;
}

.history__imgs {
	max-width: calc(100% - 4.6875rem);
	gap: 0.625rem;
}

.history__imgs--sm {
	max-width: 40.625rem;
	margin-inline: auto;
}

.history__imgs--col {
	gap: 0.625rem;
}

.history__imgs--row3 .history__img {
	height: auto;
}

.history__imgs--row3 .history__img.--img1 {
	max-width: 100%;
	flex: auto;
}

.history__imgs--row3 .history__img.--img2,
.history__imgs--row3 .history__img.--img3 {
	max-width: 100%;
	flex: auto;
}

.history__imgCaption {
	font-size: 0.75rem;
	margin-top: 0.625rem;
}

.partnership {
	padding-top: 3.75rem;
}

.partnership__inner {
	max-width: 59.375rem;
}

.partnership__secTtl {
	font-size: 1.875rem;
	padding: 0.9375rem 1.875rem;
}

.partnership__body {
	padding: 1.875rem 1.875rem 3.75rem;
	margin-top: 2.5rem;
}

.partnership__text {
	font-size: 1rem;
}

.partnership__back {
	margin-top: 1.875rem;
}

.showroom {
	padding-block: 3.75rem 6.875rem;
}

.showroom__eng {
	font-size: 2.5rem;
}

.showroom__ja {
	font-size: 2.25rem;
}

.showroom__lead {
	font-size: 1.125rem;
	line-height: 1.75;
	margin-top: 2.5rem;
}

.showroom__gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 2.5rem 1.875rem;
	gap: 2.5rem 1.875rem;
	margin-top: 3.125rem;
}

.showroom__item.--item1 {
	order: 1;
}

.showroom__item.--item2 {
	order: 5;
}

.showroom__item.--item3 {
	order: 2;
}

.showroom__item.--item4 {
	order: 3;
}

.showroom__item.--item5 {
	order: 4;
}

.showroom__text {
	font-size: 1rem;
	margin-top: 0.9375rem;
}

.showroom__access {
	margin-top: 9.375rem;
}

.showroom__accessTtl {
	font-size: 2.8125rem;
}

.showroom__accessMap {
	margin: 1.5625rem calc(50% - 50vw) 0;
	height: 31.25rem;
}

.showroom__accessText {
	font-size: 1rem;
	line-height: 1.6;
	margin-top: 1.25rem;
}

.showroom__accessAddress {
	font-size: 1rem;
	margin-top: 3.75rem;
	line-height: 1.6;
}

.topCatalog__list {
	gap: 1.875rem;
}

.topCatalog__item {
	padding: 0.9375rem;
}

.topCatalog__link {
	font-size: 1.5rem;
	padding-block: 1.25rem 0.3125rem;
}

.topCatalog__link::after {
	width: 1.875rem;
	height: 1.875rem;
}

.topInfo {
	padding-top: 5rem;
}

.topInfo__link {
	padding-block: 2.5rem;
	gap: 1.5625rem;
	border-width: 0.125rem;
	margin: 0 calc(50% - 50vw);
}

.topInfo__link::after {
	width: 2.6875rem;
	height: 2.6875rem;
	margin-left: 2.5rem;
	position: relative;
	top: 0.625rem;
}

.topInfo__link img {
	max-width: 7.0625rem;
}

.topInfo__ttl {
	font-size: 3.125rem;
	position: relative;
	top: 0.625rem;
}

.topInfo__logo {
	font-size: 1.625rem;
	margin-top: -0.1875rem;
}

.topInfo__nav {
	margin-top: 3.75rem;
}

.topInfo__navList {
	grid-template-columns: repeat(2, 1fr);
	gap: 0.625rem;
}

.topInfo__navItem {
	height: 6.25rem;
	border-width: 2px;
}

.topInfo__navLink {
	font-size: 1.25rem;
}

.topNews {
	padding-block: 7.5rem 15rem;
}

.topNNews__secTtl {
	font-size: 1.875rem;
	padding-left: 1.25rem;
}

.topNews__list {
	margin-top: 1.25rem;
}

.topNews__post {
	font-size: 1rem;
	padding-left: 1.25rem;
	border-width: 2px;
}

.topNews__ttl {
	margin-top: 0.5rem;
}

.works {
	padding-block: 3.75rem 4.375rem;
}

.works__header {
	font-size: 2.625rem;
}

.works__gallery {
	margin-top: 3.75rem;
	gap: 4.375rem;
}

.works__ttl {
	font-size: 1.5rem;
	padding-bottom: 0.625rem;
}

.works__imgs {
	grid-gap: 1.25rem;
	gap: 1.25rem;
	margin-top: 1.875rem;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.works__imgs--border {
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
}

.works__dotLine {
	max-width: 24rem;
	height: 0.625rem;
	background-image: radial-gradient(circle, #187202 0.1875rem, transparent 0.1875rem);
	background-size: 0.75rem 0.625rem;
}

.works__img--lg {
	width: 100%;
}

.works__img--order1 {
	order: 3;
}

.works__img--order2 {
	order: 1;
}

.works__img--order3 {
	order: 2;
}

.u-pc {
	display: block;
}

.u-sp {
	display: none;
}

}

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

.footer__details {
	flex-direction: row;
	gap: 3.75rem;
}

.footer__info {
	margin-left: auto;
}

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

}

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

a[href^="tel:"] {
	pointer-events: none;
}

}

