@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@600&display=swap");

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

html,
body {
	margin: 0;
	padding: 0;
}

body {
	background: #fff;
	color: #333;
	font-family: "ヒラギノ明朝 ProN";
	font-size: 16px;
	line-height: 1.6;
}

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

ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
}

a {
	color: inherit;
	margin: 0 auto;
	max-width: 100%;
	text-decoration: none;
}

.form-text {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	background-image: none;
	border-radius: 0;
	box-shadow: none;
	color: inherit;
	font-family: inherit;
	font-size: 28px;
	margin-top: 1em;
	padding: 0.4em 0.8em;
	text-align: center;
	text-decoration: underline;
	width: 100%;
}

.form-text:focus {
	border: 10px solid rgba(0, 0, 0, 0.32);
	border: #ff6458 solid 5px;
	box-shadow: none;
	outline: none;
}

.textarea-text {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	background-image: none;
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 0;
	box-shadow: none;
	color: inherit;
	font-family: inherit;
	font-size: 1em;
	height: 100px;
	padding: 0.4em 0.8em;
	resize: none;
	width: 100%;
}

.textarea-text:focus {
	border: 1px solid rgba(0, 0, 0, 0.32);
	border: #ff6458 solid 5px;
	box-shadow: none;
	outline: none;
}

.form-radio {
	display: none;
}

.form-radio + span {
	cursor: pointer;
	display: inline-block;
	margin: 0 0.2em 0;
	padding: 0 0 0 1.2em;
	position: relative;
}

.form-radio + span::before {
	-webkit-transform: translateY(-50%);
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 50%;
	content: "";
	display: block;
	height: 16px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
}

.form-radio + span::after {
	-webkit-transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.32);
	border: 1px solid transparent;
	border-radius: 50%;
	content: "";
	height: 8px;
	left: 4px;
	opacity: 0;
	padding: 2px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease 0s;
	width: 8px;
}

.form-radio:checked + span::after {
	opacity: 1;
}

.form-check {
	display: none;
}

.form-check + span {
	cursor: pointer;
	display: inline-block;
	margin: 0 0 0em 0;
	padding: 0 0 0 0em;
	position: relative;
}

.form-select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background: transparent url(../img/select-arrow.png) no-repeat center right 8px/16px 16px;
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 0;
	color: inherit;
	cursor: pointer;
	font-family: inherit;
	font-size: 1em;
	padding: 0.4em 0.8em;
	width: 100%;
}

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

.form-select:focus {
	border: 1px solid rgba(0, 0, 0, 0.32);
	box-shadow: none;
	outline: none;
}

.submit-button {
	background-color: rgba(0, 0, 0, 0.32);
	background-image: none;
	border: none;
	border-radius: 0;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 1em;
	margin: 0 0;
	padding: 0 0;
	text-decoration: none;
}

.submit-button.-active {
	background: #ff6458;
	color: #fff;
}

.submit-button:hover,
.submit-button:focus {
	outline: none;
}

.submit-button::-moz-foucus-inner {
	border: none;
	padding: 0;
}

#file-test {
	display: none;
}

#file-test-label {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.16);
	cursor: pointer;
	padding: 0.4em 0.8em;
}

#file-test-name {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	background-image: none;
	border: none;
	border-radius: 0;
	color: inherit;
	display: none;
	font-family: inherit;
	font-size: 1em;
	padding: 0.4em 0;
	width: 100%;
}

.inner {
	box-sizing: content-box;
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 auto;
}

.header {
	background: #fff;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 100;
}

.header__inner {
	align-items: center;
	display: flex;
}

.header__logo {
	width: 120px;
}

.header__logo img {
	display: block;
	margin-left: 15px;
	width: 55%;
}

.header__nav {
	margin-left: auto;
	margin-right: 40px;
}

.header__nav ul {
	display: flex;
}

.header__nav li:not(:first-child) {
	margin-left: 40px;
}

.header__nav li a {
	display: block;
	height: 70px;
	line-height: 70px;
	transition: color 0.4s;
}

.header__nav li a:hover {
	color: #ff6458;
}

section {
	margin-top: 160px;
	padding: 160px 0 0 0;
}

.sec-title {
	font-size: 40px;
	font-weight: 600;
	line-height: 1;
	padding-bottom: 16px;
	position: relative;
	text-align: center;
}

.sec-title::after {
	background: #8b655c;
	bottom: 0;
	content: "";
	height: 2px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 60px;
}

.drawer-icon {
	display: none;
	position: fixed;
	right: 15px;
	top: 20px;
	transition: transform 0.5s ease 0s;
	z-index: 300;
}

.drawer-icon.is-active .drawer-icon__bar1 {
	top: 8px;
	transform: rotate(-45deg);
}

.drawer-icon.is-active .drawer-icon__bar2 {
	display: none;
}

.drawer-icon.is-active .drawer-icon__bar3 {
	top: 8px;
	transform: rotate(45deg);
}

.drawer-icon__bars {
	height: 20px;
	position: relative;
	width: 30px;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
	background: #ff6458;
	height: 2px;
	left: 0;
	position: absolute;
	top: 0;
	width: 30px;
}

.drawer-icon__bar1 {
	top: 0;
}

.drawer-icon__bar2 {
	top: 10px;
}

.drawer-icon__bar3 {
	top: 20px;
}

.drawer-content {
	background: #ff6458;
	height: 100%;
	position: fixed;
	right: 0;
	top: 60px;
	transform: translateX(105%);
	transition: transform 0.5s ease 0s;
	width: 200px;
	z-index: 299;
}

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

.drawer-content__items {
	margin-top: 46px;
}

.drawer-content__item a {
	color: #fff;
	display: block;
	font-size: 18px;
	letter-spacing: 0.1em;
	margin-top: 60px;
	padding: 0 15px;
	position: relative;
	text-align: right;
}

.drawer-background {
	background: #ff6458;
	display: none;
	height: 100%;
	position: fixed;
	right: 0;
	top: 60px;
	z-index: 298;
}

.drawer-background.is-active {
	display: block;
	transition: transform 0.5s ease 0s;
}

.main {
	margin: 0 auto;
	margin-top: 70px;
}

.main-visual {
	position: relative;
}

.main-visual__picture {
	padding-bottom: 0%;
}

.main-visual__title {
	font-size: 26px;
	font-weight: bold;
}

.main-visual__text {
	margin-top: 18px;
}

#concept {
	padding-top: 10%;
}

.concept__inner {
	align-items: center;
	margin-top: 64px;
}

.concept__logo {
	display: block;
	margin: -30px auto 0;
	width: 20%;
}

.concept__picture {
	margin: 10px auto 0;
	width: 80%;
}

.concept__message {
	flex: 0 1 50%;
}

.concept__message-title {
	font-size: 18px;
	font-weight: 600;
	margin: 20px;
	text-align: center;
}

.concept__kodawaripoint {
	color: #968b56;
	font-size: 22px;
	text-align: center;
}

.concept__message-text {
	font-size: 16px;
	margin: 36px auto;
	width: 50%;
}

#feature {
	max-width: 1200px;
}

.feature__items {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 64px 20px;
}

.feature__item {
	background-color: #fff;
	box-shadow: 3px 3px 15px rgba(96, 96, 96, 0.16);
	flex: 0 0 32%; /* 100% ÷ 3 = 33.33% から、マージンなどを考慮して少し小さめに設定 */
	margin-bottom: 20px; /* 必要に応じて調整 */
}

.feature__item-img img {
	-o-object-fit: cover;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.feature__item-text {
	font-size: 18px;
	font-weight: 600;
	text-align: center;
}

#about {
	background: url(../img/katachini.png) center center/contain no-repeat;
	color: #fff;
	margin: 0px auto 0px;
	max-width: 1280px;
	padding: 260px 0;
	position: relative;
}

.about__inner {
	margin: 0 40px;
	position: relative;
}

.about__title {
	font-size: 22px;
	font-weight: 600;
}

.about__text {
	margin-top: 28px;
}

#products {
	margin: 0 auto;
	max-width: 940px;
}

.products__items {
	display: flex;
	justify-content: space-between;
	margin-top: 64px;
}

.products__item {
	background-color: #fff;
	flex: 0 0 27%;
}

.products__item-link {
	color: #333;
	display: block;
	font-size: 14px;
}

.products__item-text {
	margin-top: 22px;
}

.products__item-price {
	color: #968b56;
	margin-top: 10px;
}

.product__button {
	letter-spacing: 1.4px;
	margin: 0 auto;
	margin-top: 48px;
	text-align: center;
	width: 157px;
}

.product__button .util-link {
	border: 1px solid #ff6458;
	color: #ff6458;
	display: inline-block;
	letter-spacing: 0.1em;
	padding: 10px 54px;
}

#members {
	max-width: 1040px;
}

.news__items {
	align-items: stretch;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 28px auto;
	width: 90%;
}

.news__item {
	flex: 0 0 23%;
}

.news__item-link {
	align-items: center;
	display: flex;
	flex-direction: column;
	font-size: 14px;
	padding: 22px 0;
}

.news__item-body {
	flex: 0 1 100%;
	margin-left: 0px;
}

.news__item-title {
	font-size: 18px;
	font-weight: 600;
	margin-top: 4px;
}

.news__item-img {
	width: 150px;
}

.news__item-text {
	color: #888888;
	line-height: 1.7142857143;
	margin-top: 16px;
}

.news__button {
	margin: 0 auto;
	margin-top: 48px;
	text-align: center;
	width: 157px;
}

.news__button .util-link {
	border: 1px solid #ff6458;
	color: #ff6458;
	display: inline-block;
	letter-spacing: 0.1em;
	padding: 10px 54px;
}

#option {
	max-width: 1040px;
}

.option__kodawaripoint {
	color: #968b56;
	font-size: 22px;
	margin-top: 30px;
	text-align: center;
}

.option__caution {
	text-align: center;
}

.option__items {
	margin: 28px auto;
	width: 90%;
}

.option__item:not(:first-child) {
	padding-top: 22px;
}

.option__item-link {
	font-size: 14px;
	padding: 22px 0;
}

.option__item-link a {
	text-decoration: underline;
}

.option__item-body {
	flex: 0 1 100%;
}

.option__item-date {
	color: #968b56;
}

.option__item-title {
	color: #968b56;
	font-size: 18px;
	font-weight: 600;
	margin-top: 4px;
}

.option__item-img {
	-o-object-fit: cover;
	height: 100%;
	left: 0; /* 以下のコードは既存のもの */
	margin: 0 auto;
	object-fit: cover; /* 以下の行を追加 */
	top: 0;
	width: 100%;
}

.option__item-text {
	color: #000;
	line-height: 1.7142857143;
	margin-top: 16px;
}

.option-products__items {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.option-products__item {
	background-color: #fff;
}

.option-products__item-link {
	color: #333;
	display: block;
	font-size: 14px;
}

.option-products__item-img img {
	-o-object-fit: cover;
	height: 100%; /* 高さの値 */
	object-fit: cover; /* 画像のアスペクト比を維持し、指定した幅と高さに収まるように調整 */
	width: 100%; /* 幅の値 */
}

.option-products__item-text {
	margin-top: 22px;
}

.option-products__item-price {
	color: #968b56;
	margin-top: 10px;
}

.option__button {
	margin: 0 auto;
	margin-top: 48px;
	text-align: center;
	width: 157px;
}

.option__button .util-link {
	border: 1px solid #ff6458;
	color: #ff6458;
	display: inline-block;
	letter-spacing: 0.1em;
	padding: 10px 54px;
}

.concept2__inner {
	display: flex;
	flex-direction: row-reverse;
}

.censept2__img {
	flex: 0 0 50%;
}

.cencept2__textarea {
	flex: 0 1 50%;
	margin-left: 10px;
}

.concept2__title {
	font-size: 28px;
	font-weight: 600;
}

.concept2__text {
	margin-top: 30px;
}

#contact {
	background: url(../img/fes-contact.png) no-repeat center center/cover;
	margin-top: 30px;
	padding: 72px 40px 86px;
}

#contact .sec-title {
	color: #ff6458;
}

#contact .sec-title::after {
	background: #ff6458;
}

.contact-form {
	background: #d1d0d0;
	margin-top: 56px;
}

.form-text:focus {
	border: #ff6458 solid 5px;
	box-shadow: none;
	outline: none;
}

input[type=text],
input[type=email],
.textarea-text {
	background-color: #fff;
	border: 0;
	border-radius: 2px;
	box-shadow: 5px 6px 16px rgba(96, 96, 96, 0.16);
	font-size: 16px;
	padding: 0.2em 0.5em;
	width: 100%;
}

input[type=text],
input[type=email] {
	height: 40px;
}

.textarea-text {
	min-height: 122px;
	resize: vertical;
}

.textarea-text:focus {
	border: #ff6458 solid 5px;
	box-shadow: none;
	outline: none;
}

.contact__text {
	font-size: 14px;
	letter-spacing: 0.1em;
	text-align: center;
}

.contact__text .contact__text-inline {
	color: #E7728E;
	width: 16px;
}

.contact-form__list {
	margin: 18px auto 0;
	max-width: 510px;
}

.contact-form__item {
	display: flex;
}

.contact-form__item + .contact-form__item {
	margin-top: 32px;
}

.contact-form__label {
	background: rgba(62, 161, 209, 0.7);
	color: #fff;
	flex: 0 1 100%;
	font-size: 18px;
	height: 40px;
	line-height: 40px;
	padding-left: 10px;
	position: relative;
	text-align: center;
}

.contact-form__label::after {
	border-color: transparent transparent transparent rgba(62, 161, 209, 0.7);
	border-style: solid;
	border-width: 20px 0 20px 8px;
	content: "";
	display: block;
	position: absolute;
	right: -8px;
	top: 0;
}

.contact-form__label-inline {
	color: #E7728E;
	font-size: 12px;
	line-height: 1;
	vertical-align: super;
}

.contact-form__input {
	flex: 0 0 320px;
	margin-left: 18px;
}

.contact-radio-wrap {
	border: 1px #fff solid;
	border-radius: 1px;
	box-shadow: 5px 6px 16px rgba(96, 96, 96, 0.16);
	display: inline-flex;
}

.contact-radio {
	position: relative;
}

.contact-radio-input {
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
}

.contact-radio-input:checked + .contact-radio-part {
	background-color: #ff6458;
	border-radius: 1px;
	color: #fff;
}

.contact-radio-input:focus + .contact-radio-part {
	outline: -webkit-focus-ring-color auto 5px;
}

.contact-radio-part {
	background: #fff;
	color: #ff6458;
	display: inline-block;
	height: 38px;
	line-height: 38px;
	text-align: center;
	width: 80px;
}

.contact-footer {
	background-color: aliceblue;
	margin-top: 20px;
	text-align: center;
}

.contact-privacy {
	display: inline-block;
	height: 22px;
	position: relative;
	vertical-align: middle;
	width: 22px;
}

.contact-privacy-part {
	background: #fff;
	border: solid 1px #ff6458;
	display: inline-block;
	height: 22px;
	left: 0;
	position: absolute;
	top: 0;
	width: 22px;
}

.contact-privacy-input {
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
}

.contact-privacy-input:checked + .contact-privacy-part {
	background: transparent;
	border-left: 0;
	border-top: 0;
	left: -5px;
	top: -5px;
	transform: rotate(45deg);
	width: 10px;
}

.contact-privacy-input:focus + .contact-privacy-part {
	outline: -webkit-focus-ring-color auto 5px;
}

.contact-privacy-input:checked:focus + .contact-privacy-part {
	outline: none;
}

.contact-privacy-link {
	color: #ff6458;
	text-decoration: underline;
}

.contact-footer-submit {
	margin-top: 67px;
	text-align: center;
}

.contact-footer-submit [type=submit] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #fff;
	border: 1px solid #ff6458;
	color: #ff6458;
	cursor: pointer;
	cursor: pointer;
	display: inline-block;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	padding: 16px 0px;
	text-decoration: none;
	transition: all 0.3s ease 0s;
	width: 137px;
}

.contact-footer-submit [type=submit].-active {
	background: #ff6458;
	color: #fff;
}

.contact-footer-submit [type=submit]:hover {
	opacity: 0.7;
}

.contact-message {
	display: none;
	margin-top: 60px;
	text-align: center;
}

.contact-message.-error {
	color: #f00;
}

.footer {
	background: #F7F7F7;
	padding: 42px 40px 12px;
	text-align: center;
	width: 100%;
}

.footer__logo {
	margin: 0 auto;
	width: 120px;
}

.footer__nav-list {
	display: flex;
	font-size: 12px;
	justify-content: center;
	margin-top: 8px;
}

.footer__nav-item + .footer__nav-item {
	margin-left: 30px;
}

.footer__nav-item a {
	display: block;
	padding: 1em 0;
}

.footer__sns-list {
	color: #ff6458;
	justify-content: center;
	margin-bottom: 24px;
}

.footer__sns-list li {
	display: inline-block;
}

.footer__sns-list li a {
	display: block;
	font-size: 24px;
	padding: 0.1em 0.5em;
	transition: all 0.3s ease 0s;
}

.footer__sns-list li a:hover {
	opacity: 0.7;
}

.footer__sns-list li:not(:first-child) {
	margin-left: 15px;
}

.footer__sns-list li i {
	width: 22px;
}

.footer__copyright {
	color: #888;
	font-size: 20px;
	margin-top: 10px;
}

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

.main-visual__message {
	background: #fff;
	left: 0%;
	padding: 82px 40px 90px 40px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

}

@media (min-width: 1200px) {

.is-sm {
	display: none;
}

.main-visual__message {
	background: #fff;
	left: 0%;
	padding: 82px 40px 90px 40px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.feature__item:nth-child(n+4) {
	margin-top: 24px;
}

}

@media (max-width: 767px) {

.is-pc {
	display: none;
}

.inner {
	padding-left: 15px;
	padding-right: 15px;
}

.header__inner {
	height: 60px;
	width: 100%;
}

.header__logo {
	margin-left: 0;
	width: 182px;
}

.header__logo img {
	margin-left: -5px;
	width: 35%;
}

.header__nav {
	display: none;
}

section {
	margin-top: 96px;
	padding-bottom: 60px;
	padding-top: 50px;
}

.sec-title {
	margin-bottom: 48px;
}

.drawer-icon {
	display: block;
}

.main {
	margin-top: 60px;
}

.main-visual {
	padding-left: 0px;
	padding-right: 0px;
}

.main-visual__picture {
	background: url(../img/SP/seishiki-fesmainimg-sp.png) center center/contain no-repeat; /* ↑SPは必ず大文字にすること */
	margin-left: 0;
	padding-top: 100%;
}

.main-visual__picture-img {
	display: none;
}

.main-visual__message {
	margin-top: 31px;
}

.concept__inner {
	display: block;
	margin-top: 46px;
}

.concept__picture {
	width: 80%;
}

.concept__message {
	margin-left: 0px;
	margin-top: 35px;
}

.concept__message-text {
	margin: 20px auto;
	width: 80%;
}

.feature__items {
	display: inline-block;
	width: 100%;
}

.feature__item:not(:nth-child(3n+1)) {
	margin-top: 49px;
}

#about {
	padding: 176px 0 52px;
}

.about__inner {
	margin: inherit;
}

.about__title {
	font-size: 20px;
}

.about__text {
	font-size: 14px;
	line-height: cala(24/14);
}

.products__items {
	display: block;
}

.products__item:not(:nth-child(3n+1)) {
	margin-top: 49px;
}

#members {
	margin: 0px 32px;
}

.news__items {
	margin: 28px auto;
	padding: 0px 0;
	width: 100%;
}

.news__item {
	flex: 0 0 48%;
}

.news__item-link {
	align-items: center;
	display: flex;
	flex-direction: column;
	width: 100%;
}

.news__item-header {
	flex: 0 0 20px;
}

.news__item-body {
	margin-left: 0px;
}

.news__item-title {
	font-style: 16px;
}

.news__item-img {
	width: 130px;
}

#option {
	margin: 0px 32px;
}

#option .sec-title {
	margin-bottom: 0px;
}

.option__kodawaripoint {
	font-size: 24px;
	margin-top: 0px;
}

.option__items {
	margin: 28px auto;
	padding: 0px 0;
	width: 90%;
}

.option__item-link {
	width: 100%;
}

.option__item-header {
	flex: 0 0 20px;
}

.option__item-title {
	font-style: 16px;
}

.option__item-img { /* font-style: 16px; */ /* width: 50px; */
	margin: 0 auto;
}

.concept2__inner {
	display: block;
}

.censept2__img {
	width: 100%;
}

.cencept2__textarea {
	padding-right: 0px;
	padding-top: 34px;
	width: 100%;
}

.concept2__title {
	font-size: 20px;
	margin-bottom: 38px;
}

.concept2__text {
	font-size: 14px;
	line-height: 1.7142857143;
}

#contact {
	margin-top: 0px;
	padding: 56px 28px;
}

.contact-form {
	margin-top: 26px;
	padding: 0;
}

.contact__text {
	margin-top: 40px;
	padding: 0px 0 5px;
}

.contact-form__item {
	display: block;
}

.contact-form__item + .contact-form__item {
	margin-top: 30px;
}

.contact-form__label {
	display: inline-block;
	font-size: 14px;
	height: 32px;
	line-height: 32px;
	padding: 0 16px;
}

.contact-form__label::after {
	display: none;
}

.contact-form__label-inline {
	font-size: 10px;
}

.contact-form__input {
	margin-left: 0px;
	margin-top: 3px;
	width: 100%;
}

.contact-footer {
	margin-top: 14px;
	text-align: left;
}

.contact-footer-submit {
	margin-top: 24px;
}

.footer {
	padding: 36px 0 14px;
}

.footer__nav-list {
	display: block;
	margin-top: 16px;
	text-align: center;
}

.footer__nav-item + .footer__nav-item {
	margin-left: 0px;
}

.footer__nav-item a {
	padding: 0.3em 0;
}

.footer__sns-list {
	margin-bottom: 18px;
	margin-top: 32px;
}

}

