@charset "UTF-8";

/* base */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

:root {
	--scrollbar: 0;
}

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}

html:has(#navi[aria-hidden=false]) {
	overflow: hidden;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.4rem;
	color: #222;
	word-wrap: break-word;
}

a {
	color: inherit;
}

div[id],
section[id],
article[id] {
	scroll-margin-top: 80px;
}

img {
	max-width: 100%;
	height: auto;
}

input,
textarea,
select,
button {
	font: inherit;
	color: inherit;
	outline: none;
}

button,
a {
	cursor: pointer;
}

button:focus-visible,
a:focus-visible {
	outline: auto;
}

/* for development */

pre {
	padding: 15px;
	background: #eee;
	font-size: 1.2rem;
	line-height: 1.2;
}

/* Tools */

.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

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

.d-block {
	display: block;
}

.d-inline-block {
	display: inline-block;
}

.hidden {
	display: none !important;
}

.clearfix::before,
.clearfix::after {
	content: "";
	display: table;
}

.clearfix::after {
	clear: both;
}

.clear {
	clear: both;
}

/* show only  SP/PC
-------------------------------*/

.sp-only {
	display: none !important;
}

.sp-only-2 {
	display: none !important;
}

.pc-only {
	display: block !important;
}

.pc-only-2 {
	display: inline-block !important;
}

/* font
-------------------------------*/

.fw-700 {
	font-weight: 700;
}

/* margin
-------------------------------*/

/* padding
-------------------------------*/

/* gap
-------------------------------*/

/* grid
-------------------------------*/

.grid-1col > *,
.grid-2col > *,
.grid-3col > *,
.grid-4col > * {
	min-width: 0;
}

.grid-1col {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
}

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

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

.grid-4col {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

/* Layout */

.l-body {
	width: 100%;
	overflow: clip;
}

.l-body.is-fixed {
	position: fixed;
}

.l-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	gap: 30px;
	padding: 30px;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.l-header.is-visible {
	opacity: 1;
	pointer-events: auto;
}

.l-wrapper {
	position: relative;
	width: 90%;
	max-width: 1460px;
	margin-left: auto;
	margin-right: auto;
}

.l-wrapper--sm {
	max-width: 920px;
}

.l-wrapper--md {
	max-width: 1110px;
}

/* Module */

.noscript {
	font-size: 16px;
	line-height: 1.4;
	text-align: center;
	padding: 1em;
	border: 3px solid red;
}

.noscript span {
	color: red;
}

/*
#styleguide
heading-primary

SP 20px / PC 26px
デフォルトは左寄せ
```
<p class="heading-primary">見出し２です</p>
```
*/

.heading-primary {
	font: 500 3.2rem "Shippori Mincho", serif;
	line-height: 1.6;
	color: #A18C43;
}

.heading-primary--vertical {
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	margin-left: auto;
	margin-right: auto;
	letter-spacing: 0.2em;
	line-height: 1.9;
}

.heading-primary span {
	display: inline-block;
}

/*
#styleguide
heading-secondary

SP 20px / PC 26px
デフォルトは左寄せ
```
<p class="heading-secondary">見出し２です</p>
```
*/

.heading-secondary {
	font-size: 2.2rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-align: center;
}

/*
#styleguide
heading-tertiary

SP 20px / PC 26px
デフォルトは左寄せ
```
<p class="heading-tertiary">見出し２です</p>
```
*/

/*
#styleguide
text-base

SP 16px / PC 18px
デフォルトは左寄せ
```
<p class="text-base">ベースフォントですベースフォントですベースフォントですベースフォントですベースフォントですベースフォントですベースフォントですベースフォントですベースフォントですベースフォントですベースフォントです</p>
```
*/

.text-base {
	font-size: 1.6rem;
	line-height: 1.8;
}

.text-base p,
.text-base ol,
.text-base ul {
	margin-bottom: 1.8em;
}

/*
#styleguide
text-lg

SP 16px / PC 18px
デフォルトは左寄せ
```
<p class="text-lg">大きめの文字のテキストです大きめの文字のテキストです大きめの文字のテキストです大きめの文字のテキストです大きめの文字のテキストです大きめの文字のテキストです大きめの文字のテキストです大きめの文字のテキストです大きめの文字のテキストです大きめの文字のテキストです</p>
```
*/

.text-lg {
	font-size: 2rem;
	line-height: 1.8;
}

.text-lg p,
.text-lg ol,
.text-lg ul {
	margin-bottom: 1.8em;
}

/*
#styleguide
text-sm

SP 16px / PC 18px
デフォルトは左寄せ
```
<p class="text-sm">小さめの文字のテキストです小さめの文字のテキストです小さめの文字のテキストです小さめの文字のテキストです小さめの文字のテキストです小さめの文字のテキストです小さめの文字のテキストです小さめの文字のテキストです小さめの文字のテキストです小さめの文字のテキストです</p>
```
*/

.text-sm {
	font-size: 1.4rem;
	line-height: 1.8;
}

.text-sm p,
.text-sm ol,
.text-sm ul {
	margin-bottom: 1.8em;
}

/*
#styleguide
text-note

米印の下にテキストの回り込みが内容にします。
```
<p class="text-note">※テキストですテキストです。米印の下にテキストの回り込みが内容にします。米印の下にテキストの回り込みが内容にします。米印の下にテキストの回り込みが内容にします。米印の下にテキストの回り込みが内容にします。米印の下にテキストの回り込みが内容にします。米印の下にテキストの回り込みが内容にします。米印の下にテキストの回り込みが内容にします。米印の下にテキストの回り込みが内容にします。</p>
```
*/

.text-note {
	padding-left: 1em;
	text-indent: -1em;
}

.buttons-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 20px;
	margin-top: 30px;
}

/*
#styleguide
button-primary

SP 20px / PC 26px
デフォルトは左寄せ
```
<div class="buttons-wrap">
	<a href="#" class="button-primary">ボタン</a>
	<button type="button" class="button-primary">ボタン</button>
</div>
```
*/

.button-primary {
	position: relative;
	display: block;
	background: #FFF;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-decoration: none;
	border-radius: 50px;
	padding: 21px 40px;
	font-size: 1.6rem;
	font-weight: 700;
	width: 100%;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	border: 1px solid #FFF;
}

.button-primary::after {
	position: absolute;
	top: 50%;
	right: 30px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	content: "";
	-webkit-mask: url(../img/icon_external_black.svg) no-repeat center/contain;
	mask: url(../img/icon_external_black.svg) no-repeat center/contain;
	background: currentColor;
	width: 12px;
	height: 12px;
}

.button-primary--line {
	color: #00B900;
}

.button-primary--line::after {
	right: 30px;
	-webkit-mask: url(../img/icon_line.svg) no-repeat center/contain;
	mask: url(../img/icon_line.svg) no-repeat center/contain;
	width: 28px;
	height: 27px;
}

.button-primary--h-lg {
	padding: 31px 40px;
}

.button-primary--h-lg::after {
	width: 14px;
	height: 14px;
}

.button-primary--gold {
	background: #A18C43;
	color: #FFF;
	border-color: #A18C43;
}

/*
#styleguide
button-secondary

SP 20px / PC 26px
デフォルトは左寄せ
```
<div class="buttons-wrap">
	<a href="#" class="button-secondary">ボタン</a>
	<button type="button" class="button-secondary">ボタン</button>
</div>
```
*/

.button-secondary {
	background: blue;
	color: #FFF;
	border: none;
	padding: 0.5em 1em;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0;
}

.c-white {
	color: #FFF;
}

.header-logo {
	width: 60px;
}

.header-logo a {
	display: block;
}

.header-logo img {
	display: block;
}

.header-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	background: #CFC91B;
	border-radius: 40px;
	width: 98px;
	height: 60px;
	text-decoration: none;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.header-btn::after {
	content: "";
	width: 1em;
	height: 1em;
	display: inline-block;
	-webkit-mask: url(../img/icon_external_black.svg) no-repeat center/contain;
	mask: url(../img/icon_external_black.svg) no-repeat center/contain;
	background: currentColor;
	margin-left: 0.67em;
	vertical-align: middle;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.footer {
	position: relative;
}

.footer__inner {
	padding: 42px 138px 40px 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 32px;
}

.footer__left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 30px;
}

.footer__logo img {
	height: 70px;
}

.footer__info {
	margin-top: 3px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 10px;
	letter-spacing: 0.05em;
}

.footer__info a {
	text-decoration: none;
}

.footer__right {
	text-align: right;
}

.footer__sns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 17px;
	font-weight: 600;
	font-family: "Crimson Pro", serif;
	font-size: 1.2rem;
	letter-spacing: 0.1em;
}

.footer__sns__instagram {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	text-decoration: none;
	font-weight: 400;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.footer__sns__instagram::after {
	display: inline-block;
	content: "";
	-webkit-mask: url(../img/icon_instagram.svg) no-repeat center/contain;
	mask: url(../img/icon_instagram.svg) no-repeat center/contain;
	width: 26px;
	height: 26px;
	background: #222;
}

.footer__copy {
	margin-top: 15px;
	font-family: "Crimson Pro", serif;
	font-size: 1.2rem;
	letter-spacing: 0.2em;
}

.pagetop {
	position: fixed;
	right: 40px;
	bottom: 40px;
	width: 60px;
	height: 60px;
	background: #222;
	border-radius: 50%;
	border: none;
	z-index: 100;
	opacity: 0;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.pagetop::before {
	content: "";
	background: url("../img/icon_arrow.svg") no-repeat center/contain;
	width: 20px;
	height: 10px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.pagetop.is-visible {
	opacity: 1;
	pointer-events: auto;
}

.mainvisual {
	position: relative;
	height: 137.9vw;
	min-height: 1500px;
	background: url(../img/img_mv.jpg) no-repeat center/cover;
}

.mainvisual::before {
	position: absolute;
	bottom: -1px;
	left: 0;
	content: "";
	width: 100%;
	height: 64.4vw;
	display: block;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(80%, white));
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white 80%);
}

.mainvisual__head {
	position: absolute;
	top: 9.5vw;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.mainvisual__title {
	width: 243px;
}

.mainvisual__title img {
	display: block;
}

.mainvisual__scroll {
	display: block;
	position: relative;
	font: 500 1.4rem "Crimson Pro", serif;
	letter-spacing: 0.2em;
	color: #FFF;
	padding: 50px 0 16px;
	margin-top: 93px;
	text-align: center;
	text-decoration: none;
}

.mainvisual__scroll::before {
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	content: "";
	width: 1px;
	height: 40px;
	display: block;
	background: #FFF;
}

.mainvisual__scroll::after {
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%) scale(1, -1);
	transform: translateX(-50%) scale(1, -1);
	content: "";
	width: 12px;
	height: 6px;
	display: block;
	background: url(../img/icon_arrow.svg) no-repeat center/contain;
}

.mainvisual__copy {
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 400px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 40px;
}

.mainvisual__copy__text {
	font: 500 2.8rem "Shippori Mincho", serif;
	letter-spacing: 0.2em;
	line-height: 2;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

.mainvisual__copy__en {
	font: 500 1.8rem "Crimson Pro", serif;
	letter-spacing: 0.05em;
	line-height: 1.4;
	text-align: center;
	color: #A18C43;
}

.lead {
	padding: 120px 0 200px;
}

.lead__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 9.6%;
}

.lead__item:nth-child(even) {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.lead__item:not(:first-child) {
	margin-top: -30px;
}

.lead__item--y-end {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.lead__main {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 40px;
	padding: 0 0 18px;
}

.lead__main--pt {
	padding-top: 60px;
}

.lead__text {
	font-size: 1.8rem;
	line-height: 1.8;
}

.lead__text p:not(:last-child) {
	margin-bottom: 1em;
}

.lead__image {
	position: relative;
	width: 58.6%;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-top: 120px;
	z-index: 1;
}

.lead__image img {
	display: block;
}

.lead__image--sm {
	width: 50.3%;
	margin-top: 0;
	z-index: 0;
}

.lead__variety {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	background: #F8F8F6;
	padding: 20px;
	line-height: 1.4;
	margin-top: 40px;
}

.lead__variety__term {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.lead__variety__description {
	border-left: 1px solid #222;
	padding-left: 20px;
}

.wide-image {
	position: relative;
}

.wide-image img {
	display: block;
}

.wide-image__text {
	position: absolute;
	font: 500 3.2rem "Shippori Mincho", serif;
	letter-spacing: 0.2em;
	line-height: 1.9;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	color: #FFF;
}

.wide-image__text--01 {
	top: 50.5%;
	right: 12.7%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.wide-image__text--02 {
	top: 41.5%;
	left: 7.3%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	color: #222;
}

.source__head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 145px 0 95px;
}

.source__contents {
	position: relative;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	width: calc(100vw - 60px);
}

.source__item__head {
	text-align: center;
	margin-bottom: 20px;
}

.source__item__heading {
	font-size: clamp(1.8rem, 1.3259259259rem + 0.6172839506vw, 2.4rem);
	font-weight: 500;
	font-family: "Shippori Mincho", serif;
	line-height: 1.6;
	margin: 0 -1em;
}

.source__item__en {
	display: block;
	font-size: clamp(1.6rem, 1.4419753086rem + 0.2057613169vw, 1.8rem);
	font-weight: 500;
	font-family: "Crimson Pro", serif;
	letter-spacing: 0.05em;
	line-height: 1.4;
	margin-top: 10px;
	color: #A18C43;
}

.source__main {
	padding: 40px 14.3% 80px;
}

.source__image {
	position: relative;
}

.source__image img {
	display: block;
}

.source__image__text {
	position: absolute;
	bottom: -25px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 90px;
}

.source__text {
	font-size: 1.6rem;
	line-height: 1.8;
}

.features {
	padding: 140px 0;
}

.features__contents {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 20px;
}

.features__slide-wrap {
	width: 64%;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.features__slide {
	width: 62.6vw;
	max-width: calc(50vw + 204.4px);
	overflow: hidden;
}

.features-slide {
	position: relative;
}

.features-slide .swiper-button-prev,
.features-slide .swiper-button-next {
	position: absolute;
	top: 30%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	margin: 0;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #A18C43;
	border: 1px solid #A18C43;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.features-slide .swiper-button-prev::after,
.features-slide .swiper-button-next::after {
	position: absolute;
	top: 50%;
	left: 50%;
	content: "";
	width: 13px;
	height: 7px;
	display: block;
	-webkit-mask: url(../img/icon_arrow.svg) no-repeat center/contain;
	mask: url(../img/icon_arrow.svg) no-repeat center/contain;
	background: #FFF;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.features-slide .swiper-button-prev {
	left: 0;
}

.features-slide .swiper-button-prev::after {
	-webkit-transform: translate(-50%, -50%) rotate(-90deg);
	transform: translate(-50%, -50%) rotate(-90deg);
}

.features-slide .swiper-button-next {
	left: 540px;
}

.features-slide .swiper-button-next::after {
	-webkit-transform: translate(-50%, -50%) rotate(90deg);
	transform: translate(-50%, -50%) rotate(90deg);
}

.features-slide__item {
	position: relative;
	padding: 0 30px;
}

.features-slide__item.swiper-slide {
	width: 600px;
}

.features-slide__num {
	position: absolute;
	top: 18px;
	right: 50px;
	font: 400 1.8rem "Crimson Pro", serif;
	letter-spacing: 0.05em;
	color: #A18C43;
}

.features-slide__num span {
	font-size: 5.8rem;
}

.features-slide__image {
	-webkit-mask: url(../img/frame_features.svg) no-repeat center/contain;
	mask: url(../img/frame_features.svg) no-repeat center/contain;
	margin-bottom: 40px;
}

.features-slide__image img {
	display: block;
}

.features-slide__main {
	padding: 0 7.4%;
}

.features-slide__heading {
	font: 400 2.4rem "Shippori Mincho", serif;
	letter-spacing: 0.05em;
	line-height: 1.6;
	text-align: center;
	margin-bottom: 20px;
}

.features-slide__text {
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	line-height: 1.8;
	color: #A18C43;
}

.experience {
	background: #A18C43;
	color: #FFF;
	padding: 140px 0;
}

.experience__heading {
	margin-bottom: 40px;
}

.experience__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 20px;
}

.experience__item:not(:last-child) {
	margin-bottom: 140px;
}

.experience__item--y-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.experience__main {
	max-width: 525px;
}

.experience__main--sm {
	max-width: 465px;
}

.experience__text {
	font-size: 1.8rem;
	line-height: 1.8;
}

.experience__text p:not(:last-child) {
	margin-bottom: 1.05em;
}

.experience__image {
	width: 58.6%;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.experience__image img {
	display: block;
}

.experience__btn-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 30px;
	margin-top: 80px;
	color: #222;
}

.sales {
	padding: 140px 0;
}

.sales__head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}

.sales__top-images {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 140px;
}

.sales__top-image img {
	display: block;
}

.sales__info {
	margin-top: 140px;
}

.sales__info__heading {
	font-size: 2.2rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-align: center;
	margin-bottom: 30px;
}

.sales__info__text {
	font-size: 1.8rem;
	letter-spacing: 0.05em;
	line-height: 1.8;
}

.sales__info__text span {
	font-weight: 700;
	color: #D2442F;
}

.sales-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 20px 2.7%;
	margin-top: 80px;
}

.sales-list__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	background: #F8F8F6;
	border-radius: 10px;
	padding: 30px;
	width: 31.5333333333%;
}

.sales-list__head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #D2442F;
	margin-bottom: 30px;
}

.sales-list__head__num {
	font-size: clamp(6rem, 3.2972972973rem + 2.7027027027vw, 8rem);
	font-family: "Crimson Pro", serif;
	line-height: 1;
}

.sales-list__head__text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: clamp(2rem, 0.9189189189rem + 1.0810810811vw, 2.8rem);
	font-weight: 700;
	font-family: "Shippori Mincho", serif;
	letter-spacing: 0.05em;
	line-height: 1.2;
	border-left: 1px solid #D2442F;
	margin-left: 1.07em;
	padding: 8px 0 5px 1.07em;
	min-height: 2.86em;
}

.sales-list__head__text span {
	display: block;
	font-size: clamp(1.3rem, 0.8945945946rem + 0.4054054054vw, 1.6rem);
	font-weight: 700;
	font-family: "Noto Sans JP", sans-serif;
	color: #222;
	margin-top: 8px;
}

.sales-list__image {
	position: relative;
	max-width: 400px;
	margin: 0 auto 30px;
}

.sales-list__image img {
	display: block;
}

.sales-list__image--01::before {
	position: absolute;
	bottom: 0;
	right: 9%;
	content: "";
	width: 24.25%;
	height: 66px;
	display: block;
	-webkit-mask: url(../img/deco_salse_01.svg) no-repeat center/contain;
	mask: url(../img/deco_salse_01.svg) no-repeat center/contain;
	background: #A18C43;
}

.sales-list__image--02::before {
	position: absolute;
	bottom: 0;
	left: 2.5%;
	content: "";
	width: 17%;
	height: 67px;
	display: block;
	-webkit-mask: url(../img/deco_salse_02.svg) no-repeat center/contain;
	mask: url(../img/deco_salse_02.svg) no-repeat center/contain;
	background: #A18C43;
}

.sales-list__image--03::before {
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	width: 18.75%;
	height: 84px;
	display: block;
	-webkit-mask: url(../img/deco_salse_03.svg) no-repeat center/contain;
	mask: url(../img/deco_salse_03.svg) no-repeat center/contain;
	background: #A18C43;
}

.sales-list__text {
	font-size: 1.8rem;
	letter-spacing: 0.05em;
	line-height: 1.6;
}

.sales-list__recommend {
	border-top: 1px solid #A18C43;
	padding-top: 20px;
	margin: 30px 0;
}

.sales-list__recommend__term {
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.6;
	margin-bottom: 10px;
}

.sales-list__recommend__detail {
	letter-spacing: 0.05em;
	line-height: 1.6;
}

.sales-list__recommend__list li {
	text-indent: -1.2em;
	padding-left: 1.2em;
}

.sales-list__recommend__list li::before {
	content: "・";
	margin-right: 0.2em;
}

.sales-list__btn {
	margin-top: auto;
}

.contact {
	background: url(../img/bg_contact.jpg) no-repeat center/cover;
	padding: 140px 0;
}

.contact__contents {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 20px;
}

.contact__heading {
	color: #FFF;
}

.contact__heading__jp {
	font: 500 2.8rem "Shippori Mincho", serif;
	line-height: 1.6;
}

.contact__heading__en {
	display: block;
	font: 500 1.8rem "Crimson Pro", serif;
	letter-spacing: 0.05em;
	line-height: 1.4;
	margin-top: 10px;
}

.contact__item {
	background: rgba(248, 248, 246, 0.6);
	padding: 40px 20px;
	border-radius: 10px;
	width: 51%;
	max-width: 540px;
}

.contact__lead {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
	margin-bottom: 30px;
}

.contact__image {
	max-width: 250px;
	margin-left: auto;
	margin-right: auto;
}

.contact__image img {
	display: block;
}

.contact__btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	margin-top: 30px;
	max-width: 300px;
	margin: 30px auto 0;
}

.contact__tel {
	margin-top: 30px;
	text-align: center;
}

.contact__tel__num {
	font: 400 3.8rem "Crimson Pro", serif;
	letter-spacing: 0.05em;
	line-height: 1;
}

.contact__tel__num a {
	font-weight: 700;
	text-decoration: none;
}

.contact__tel__note {
	display: block;
	letter-spacing: 0.05em;
	line-height: 1.6;
	margin-top: 10px;
}

.faq {
	text-align: left;
	padding: 120px 0 80px;
}

.faq__item {
	background: #F8F8F6;
	border-radius: 10px;
	padding: 26px 30px 30px;
}

.faq__item:first-of-type {
	margin-top: 40px;
}

.faq__item:not(:last-child) {
	margin-bottom: 20px;
}

.faq__question {
	margin-bottom: 16px;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.05em;
}

.faq__answer {
	font-size: 1.4rem;
	line-height: 1.6;
	letter-spacing: 0.05em;
}

.faq__answer p a {
	color: #D2442F;
	text-decoration: underline;
}

.faq__answer__tel {
	color: inherit !important;
	text-decoration: none !important;
}

.company {
	background: #f8f8f6;
	padding: 100px 0;
}

.company__info {
	border-radius: 20px;
	overflow: hidden;
}

.company__info:not(:last-child) {
	margin-bottom: 50px;
}

.company__info .js-accordion-content {
	display: none;
}

.company__btn button {
	position: relative;
	border: none;
	width: 100%;
	background: #FFF;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 30px;
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.company__btn button::after,
.company__btn button::before {
	content: "";
	position: absolute;
	right: 32px;
	top: 50%;
	width: 12px;
	height: 2px;
	background: #222;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.company__btn button::before {
	-webkit-transform: translateY(-50%) rotate(90deg);
	transform: translateY(-50%) rotate(90deg);
}

.company__btn button::after {
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.company__btn button[aria-expanded=true]::before {
	-webkit-transform: translateY(-50%) rotate(180deg);
	transform: translateY(-50%) rotate(180deg);
}

.company__content {
	background: #FFF;
	padding: 0 30px 30px;
}

.company__content.is-open {
	display: block;
}

.company__list {
	border-top: 1px solid #cecece;
}

.company__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-bottom: 1px solid #cecece;
}

.company__item__dt,
.company__item__dd {
	font-size: 1.4rem;
	letter-spacing: 0.05em;
	line-height: 1.6;
}

.company__item__dt {
	font-weight: 700;
	width: 29.7%;
	padding: 20px 5px 20px 10px;
	height: 100%;
}

.company__item__dd {
	padding: 17px 0;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	height: 100%;
}

.company__item__dd p + p {
	margin-top: 1.5em;
}

.company__item__list li {
	text-indent: -1em;
	padding-left: 1em;
}

.company__item__list li::before {
	content: "・";
}

.cv-area {
	margin: 30px;
	position: relative;
	background: #A18C43;
	padding: 80px 20px;
	border-radius: 10px;
}

.cv-area__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1110px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.cv-area__image {
	width: 34.86%;
}

.cv-area__image img {
	display: block;
	width: 100%;
	max-width: 387px;
}

.cv-area__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 40px;
	width: 60%;
	max-width: 620px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.cv-area__text {
	color: #FFF;
	line-height: 1.6;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-align: center;
}

.cv-area__buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	width: 100%;
}

.cv-area__tel {
	color: #FFF;
}

.cv-area__number {
	font-size: 3.8rem;
	font-family: "Crimson Pro", serif;
	letter-spacing: 0.05em;
}

.cv-area__number a {
	font-weight: 700;
	text-decoration: none;
}

.cv-area__note {
	margin-top: 10px;
	line-height: 1.6;
	letter-spacing: 0.05em;
	text-align: center;
}

/**
 * Swiper 8.4.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 30, 2023
 */

@font-face {
	font-family: "swiper-icons";
	src: url("data:application/font-woff;charset=utf-8;base64, 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") format("woff");
	font-weight: 400;
	font-style: normal;
}

:root {
	--swiper-theme-color: #007aff;
}

.swiper {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0; /* Fix of Webkit flickering */
	z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
	-webkit-transform: translate3d(0px, 0, 0);
	transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
	-ms-touch-action: pan-y;
	touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
	-ms-touch-action: pan-x;
	touch-action: pan-x;
}

.swiper-slide {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
	visibility: hidden;
}

/* Auto Height */

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
	height: auto;
}

.swiper-autoheight .swiper-wrapper {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-transition-property: height, -webkit-transform;
	transition-property: height, -webkit-transform;
	transition-property: transform, height;
	transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

/* 3D Effects */

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
	-webkit-perspective: 1200px;
	perspective: 1200px;
}

.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
	background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
	background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
	background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
	background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
	background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */

.swiper-css-mode > .swiper-wrapper {
	overflow: auto;
	scrollbar-width: none; /* For Firefox */
	-ms-overflow-style: none; /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
	display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
	scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
	scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
	content: "";
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-box-ordinal-group: 10000;
	-ms-flex-order: 9999;
	order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
	-webkit-margin-start: var(--swiper-centered-offset-before);
	margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
	height: 100%;
	width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
	-webkit-margin-before: var(--swiper-centered-offset-before);
	margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
	width: 100%;
	height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: center center;
	scroll-snap-stop: always;
}

:root {
	--swiper-navigation-size: 44px; /*
		--swiper-navigation-color: var(--swiper-theme-color);
		*/
}

.swiper-button-prev,
.swiper-button-next {
	position: absolute;
	top: 50%;
	width: calc(var(--swiper-navigation-size) / 44 * 27);
	height: var(--swiper-navigation-size);
	margin-top: calc(0px - var(--swiper-navigation-size) / 2);
	z-index: 10;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
	opacity: 0.35;
	cursor: auto;
	pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
	opacity: 0;
	cursor: auto;
	pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
	display: none !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
	font-family: swiper-icons;
	font-size: var(--swiper-navigation-size);
	text-transform: none !important;
	letter-spacing: 0;
	font-variant: initial;
	line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
	content: "prev";
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
	left: 10px;
	right: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
	content: "next";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
	right: 10px;
	left: auto;
}

.swiper-button-lock {
	display: none;
}

@media (hover: hover) {

.button-primary:hover {
	background: #A18C43;
	color: #FFF;
}

.button-primary--gold:hover {
	background: #FFF;
	color: #A18C43;
}

.header-btn:hover {
	background: #222;
	color: #CFC91B;
}

.footer__info a:hover {
	text-decoration: underline;
}

.footer__sns__instagram:hover {
	opacity: 0.6;
}

.pagetop:hover {
	opacity: 0.6;
}

.features-slide .swiper-button-prev:hover,
.features-slide .swiper-button-next:hover {
	background: #FFF;
}

.features-slide .swiper-button-prev:hover::after,
.features-slide .swiper-button-next:hover::after {
	background: #A18C43;
}

.faq__answer p a:hover {
	text-decoration: none;
}

}

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

.text-pc-left { /* pc */
	text-align: left;
}

.text-pc-center { /* pc */
	text-align: center;
}

.text-pc-right { /* pc */
	text-align: right;
}

.button-primary--pc-h-lg { /* pc */
	padding: 31px 40px;
}

.button-primary--pc-h-lg::after {
	width: 14px;
	height: 14px;
}

.footer__tel { /* pc */
	pointer-events: none;
}

.faq__answer__tel { /* pc */
	pointer-events: none;
}

.cv-area__number a { /* pc */
	pointer-events: none;
}

}

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

.lead { /* md */
	padding: 60px 0;
}

.lead__item { /* md */
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 30px;
}

.lead__item:nth-child(even) { /* md */
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
}

.lead__item:not(:first-child) { /* md */
	margin-top: 30px;
}

.lead__main { /* md */
	gap: 30px;
	padding: 0;
}

.lead__image { /* md */
	width: calc(50% + 50vw);
	margin-top: 0;
}

.source__main { /* md */
	padding: 20px 20px 40px;
}

.features-slide .swiper-button-prev,
.features-slide .swiper-button-next { /* md */
	top: 25%;
}

.features-slide .swiper-button-next { /* md */
	left: auto;
	right: 0;
}

.experience__item { /* md */
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 30px;
}

.experience__main { /* md */
	max-width: none;
}

.experience__image { /* md */
	width: 100%;
}

.sales-list { /* md */
	margin-top: 40px;
}

.sales-list__item { /* md */
	width: 100%;
	padding: 20px;
}

.sales-list__head__num { /* md */
	font-size: 8rem;
}

.sales-list__head__text { /* md */
	font-size: 2.8rem;
	margin-left: 30px;
	padding: 8px 0 5px 30px;
}

.sales-list__head__text span { /* md */
	font-size: 1.6rem;
}

.cv-area__buttons { /* md */
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

}

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

.text-sp-left { /* sp */
	text-align: left;
}

.text-sp-center { /* sp */
	text-align: center;
}

.text-sp-right { /* sp */
	text-align: right;
}

.sp-only { /* sp */
	display: block !important;
}

.sp-only-2 { /* sp */
	display: inline-block !important;
}

.pc-only { /* sp */
	display: none !important;
}

.pc-only-2 { /* sp */
	display: none !important;
}

/* sp */

.sp-grid-1col {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
}

.sp-grid-2col {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

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

.sp-grid-4col {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.--sp-grid-2col { /* sp */
	grid-template-columns: repeat(2, 1fr);
}

.--sp-grid-1col { /* sp */
	grid-template-columns: repeat(1, 1fr);
}

.l-header { /* sp */
	gap: 10px;
	padding: 10px;
}

.l-navi { /* sp */
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #114170;
	color: #FFF;
	z-index: 100;
}

.l-wrapper { /* sp */
	width: 84.73282%;
}

.heading-primary { /* sp */
	font-size: 2.8rem;
}

.heading-primary--vertical { /* sp */
	line-height: 2.05;
}

.button-primary::after { /* sp */
}

.header-logo { /* sp */
	width: 50px;
}

.header-btn { /* sp */
	height: 50px;
}

.footer__inner { /* sp */
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 40px;
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	padding: 30px 0;
}

.footer__left { /* sp */
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.footer__logo { /* sp */
	text-align: center;
}

.footer__info { /* sp */
	margin-top: 0;
	line-height: 1.4;
	text-align: center;
	gap: 20px;
}

.footer__right { /* sp */
	text-align: center;
}

.footer__sns { /* sp */
	gap: 10px;
}

.footer__sns__instagram { /* sp */
	gap: 10px;
}

.footer__copy { /* sp */
	margin-top: 30px;
}

.pagetop { /* sp */
	display: none;
}

.pagetop::before { /* sp */
	width: 16px;
	height: 8px;
}

.mainvisual { /* sp */
	height: 1600px;
}

.mainvisual::before { /* sp */
	height: 755px;
}

.mainvisual__head { /* sp */
	position: relative;
	top: auto;
	left: auto;
	-webkit-transform: translateX(0);
	transform: translateX(0);
	height: 100svh;
	max-height: 1030px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.mainvisual__head__inner { /* sp */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	height: 100%;
	max-height: 734px;
	padding: 92px 0 10px;
}

.mainvisual__title { /* sp */
	width: auto;
	height: 420px;
	max-height: 70svh;
}

.mainvisual__title img { /* sp */
	height: 100%;
}

.mainvisual__scroll { /* sp */
	margin-top: 10px;
}

.mainvisual__copy { /* sp */
	width: 340px;
	max-width: 86.5%;
	gap: 20px;
}

.lead__text { /* sp */
	font-size: 1.6rem;
}

.lead__text p:not(:last-child) { /* sp */
	margin-bottom: 1.3em;
}

.lead__variety { /* sp */
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 10px;
	margin-top: 0;
}

.lead__variety__description { /* sp */
	border-left: none;
	border-top: 1px solid #222;
	padding-left: 0;
	padding-top: 10px;
}

.wide-image__text { /* sp */
	top: 27.3%;
	left: 50%;
	right: auto;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	font-size: 2.8rem;
	line-height: 2.05;
}

.wide-image__text--02 { /* sp */
	top: 18%;
}

.source__head { /* sp */
	padding: 65px 0 58px;
}

.source__contents { /* sp */
	grid-template-columns: 1fr;
	width: 100%;
}

.source__item__heading { /* sp */
	font-size: 1.8rem;
}

.source__item__en { /* sp */
	font-size: 1.8rem;
}

.features { /* sp */
	padding: 60px 0;
}

.features__contents { /* sp */
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 60px;
}

.features__slide-wrap { /* sp */
	position: relative;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: calc(100% + 40px);
}

.features__slide { /* sp */
	width: 100%;
	max-width: none;
}

.features-slide { /* sp */
	max-width: none;
}

.features-slide .swiper-button-prev,
.features-slide .swiper-button-next { /* sp */
	top: 28.2vw;
}

.features-slide__item { /* sp */
	padding: 0 20px;
}

.features-slide__num { /* sp */
	top: -3px;
	right: 13px;
}

.features-slide__image { /* sp */
	margin-bottom: 20px;
}

.features-slide__main { /* sp */
	padding: 0;
}

.features-slide__heading { /* sp */
	font-size: 2rem;
}

.features-slide__text { /* sp */
	font-size: 1.4rem;
}

.experience { /* sp */
	padding: 60px 0;
}

.experience__item:not(:last-child) { /* sp */
	margin-bottom: 30px;
}

.experience__text { /* sp */
	font-size: 1.6rem;
}

.experience__text p:not(:last-child) { /* sp */
	margin-bottom: 1.3em;
}

.experience__btn-wrap { /* sp */
	gap: 20px;
	margin-top: 30px;
}

.sales { /* sp */
	padding: 65px 0;
}

.sales__top-images { /* sp */
	grid-template-columns: 1fr;
	margin-top: 60px;
}

.sales__info { /* sp */
	margin-top: 60px;
}

.sales-list__image--01::before { /* sp */
	right: 31%;
	width: 41%;
	height: 82px;
	background: #E4DFD5;
}

.sales-list__image--02::before { /* sp */
	right: 31%;
	width: 33.1%;
	height: 97px;
	background: #E4DFD5;
}

.sales-list__image--03::before { /* sp */
	right: 31%;
	width: 36.5%;
	height: 119px;
	background: #E4DFD5;
}

.sales-list__text { /* sp */
	font-size: 1.6rem;
}

.sales-list__recommend { /* sp */
	margin: 30px 0 20px;
}

.contact { /* sp */
	padding: 60px 0 30px;
}

.contact__contents { /* sp */
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 232px;
}

.contact__heading { /* sp */
	text-align: center;
}

.contact__item { /* sp */
	width: 100%;
	max-width: none;
	padding: 20px;
}

.contact__lead { /* sp */
	font-size: 1.4rem;
	margin-bottom: 20px;
}

.contact__btn { /* sp */
	margin: 20px auto 0;
}

.contact__tel { /* sp */
	margin-top: 20px;
}

.contact__tel__num { /* sp */
	font-size: 3rem;
}

.faq { /* sp */
	padding: 60px 0;
}

.faq__item { /* sp */
	padding: 30px 20px;
}

.faq__question { /* sp */
	font-size: 1.6rem;
	margin-bottom: 17px;
}

.company { /* sp */
	padding: 60px 0;
}

.company__info { /* sp */
	border-radius: 10px;
}

.company__info:not(:last-child) { /* sp */
	margin-bottom: 40px;
}

.company__btn button { /* sp */
	padding: 20px;
	font-size: 1.6rem;
}

.company__btn button::after,
.company__btn button::before { /* sp */
	right: 22px;
}

.company__content { /* sp */
	padding: 0 20px 20px;
}

.company__item { /* sp */
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
}

.company__item__dt { /* sp */
	padding: 20px 0 10px;
	width: 100%;
}

.company__item__dd { /* sp */
	padding: 0 0 19px 0;
}

.cv-area { /* sp */
	padding: 40px 20px;
}

.cv-area__inner { /* sp */
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.cv-area__image { /* sp */
	width: 100%;
}

.cv-area__image img { /* sp */
	margin: 0 auto;
}

.cv-area__content { /* sp */
	width: 100%;
	gap: 20px;
}

.cv-area__text { /* sp */
	font-size: 1.4rem;
	letter-spacing: 0;
}

.cv-area__number { /* sp */
	font-size: 3rem;
}

}

