/*
Theme Name: headlight_v3
Author: Higashino & miura
*/

@charset "UTF-8";

html {
	font-size: 10px;
	font-weight: 400;
	font-family: "Noto Sans JP", sans-serif;
	color: #1A1A1A;
	scroll-behavior: smooth;
	overflow-x: hidden;
}
html.is-locked::before {
	position: fixed;
	content: "";
	display: block;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 99;
}

body {
	overflow-x: hidden;
}

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

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease-out;
}
a:hover {
	opacity: 0.7;
}

input,
select,
button {
	cursor: pointer;
}

@media screen and (min-width: 767px) {
	main {
		padding-top: 80px;
	}
}
@media screen and (max-width: 766px) {
	main {
		padding-top: 14.6666666667vw;
	}
}

.u-mw {
	margin-left: auto;
	margin-right: auto;
}
@media screen and (min-width: 767px) {
	.u-mw {
		max-width: 1000px;
	}
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
	.u-mw {
		max-width: 69.4444444444vw;
	}
}
@media screen and (max-width: 766px) {
	.u-mw {
		max-width: 89.3333333333vw;
	}
}

.u-en {
	font-family: "Poppins", sans-serif;
}

.page__btn a:hover {
	opacity: 1;
}

.page__btn a,
.form__submit button {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	color: #fff;
	background-color: #2e2e2e;
	z-index: 2;
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 767px) {
	.page__btn a,
	.form__submit button {
		font-size: 16px;
		line-height: 1.5625;
		letter-spacing: 0.2em;
		font-weight: 400;
	}
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
	.page__btn a,
	.form__submit button {
		font-size: 1.1111111111vw;
	}
}
@media screen and (max-width: 766px) {
	.page__btn a,
	.form__submit button {
		font-size: calc((14 / 375) * 100vw);
		line-height: 1.4285714286;
		letter-spacing: 0.2em;
		font-weight: 400;
	}
}
@media screen and (min-width: 767px) {
	.page__btn a,
	.form__submit button {
		height: 60px;
	}
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
	.page__btn a,
	.form__submit button {
		height: 4.1666666667vw;
	}
}
@media screen and (max-width: 766px) {
	.page__btn a,
	.form__submit button {
		width: 78.6666666667vw;
		height: 13.3333333333vw;
		margin-left: auto;
		margin-right: auto;
	}
}
.page__btn a::before,
.form__submit button::before {
	position: absolute;
	content: "";
	z-index: -1;
	background: #fff;
	width: 0;
	height: 100%;
	top: 0;
	right: 0;
	-webkit-transition: all ease 0.3s;
	transition: all ease 0.3s;
}
.page__btn a:hover,
.form__submit button:hover {
	color: #2e2e2e;
	opacity: 1;
}
.page__btn a:hover .btn-arrow,
.form__submit button:hover .btn-arrow {
	transform: translateX(20px);
}
.page__btn a:hover .btn-arrow::before, 
.page__btn a:hover .btn-arrow::after,
.form__submit button:hover .btn-arrow::before, 
.form__submit button:hover .btn-arrow::after {
	background-color: #2e2e2e;
}
.page__btn a:hover::before,
.form__submit button:hover::before {
	width: 100%;
	left: 0;
	right: auto;
}

.btn-arrow {
	position: absolute;
	display: inline-block;
	width: 100%;
	height: 100%;
	-webkit-transition: all ease 0.3s;
	transition: all ease 0.3s;
	left: 0;
}
.btn-arrow::before, .btn-arrow::after {
	position: absolute;
	content: "";
	background-color: #fff;
	height: 0.5px;
	z-index: 2;
	top: 50%;
}
.btn-arrow::before {
	transform: translateY(-50%);
}
@media screen and (min-width: 767px) {
	.btn-arrow::before {
		width: 35px;
	}
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
	.btn-arrow::before {
		width: 2.4305555556vw;
	}
}
@media screen and (max-width: 766px) {
	.btn-arrow::before {
		width: 9.3333333333vw;
	}
}
.btn-arrow::after {
	transform: translateY(-2px) rotate(35deg);
}
@media screen and (min-width: 767px) {
	.btn-arrow::after {
		left: 30px;
		width: 5.119px;
	}
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
	.btn-arrow::after {
		left: 2.0833333333vw;
		width: 0.3554861111vw;
	}
}
@media screen and (max-width: 766px) {
	.btn-arrow::after {
		left: 8vw;
		width: 1.3650666667vw;
	}
}

.sp-only {
	display: none;
}
@media screen and (max-width: 766px) {
	.sp-only {
		display: block;
	}
}

.pc-only {
	display: block;
}
@media screen and (max-width: 766px) {
	.pc-only {
		display: none;
	}
}

/* パンくず */
@media screen and (min-width: 767px) {
	.l-bread {
		margin-top: 30px;
	}
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
	.l-bread {
		margin-top: 2.0833333333vw;
	}
}

.l-bread__list {
	display: flex;
	align-items: center;
}
@media screen and (min-width: 767px) {
	.l-bread__list {
		column-gap: 30px;
	}
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
	.l-bread__list {
		column-gap: 2.0833333333vw;
	}
}
@media screen and (max-width: 766px) {
	.l-bread__list {
		column-gap: 8vw;
	}
}
.l-bread__list li {
	position: relative;
}
.l-bread__list li:not(:last-of-type)::after {
	position: absolute;
	content: "＞";
	font-family: "Noto Sans JP", sans-serif;
	color: #1a1a1a;
	top: 50%;
	transform: translateY(-50%);
}
@media screen and (min-width: 767px) {
	.l-bread__list li:not(:last-of-type)::after {
		font-size: 10px;
		line-height: 1;
		letter-spacing: 0.1em;
		font-weight: 300;
	}
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
	.l-bread__list li:not(:last-of-type)::after {
		font-size: 0.6944444444vw;
	}
}
@media screen and (max-width: 766px) {
	.l-bread__list li:not(:last-of-type)::after {
		font-size: calc((10 / 375) * 100vw);
		line-height: 1;
		letter-spacing: 0.1em;
		font-weight: 300;
	}
}
@media screen and (min-width: 767px) {
	.l-bread__list li:not(:last-of-type)::after {
		right: -22px;
	}
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
	.l-bread__list li:not(:last-of-type)::after {
		right: -1.5277777778vw;
	}
}
@media screen and (max-width: 766px) {
	.l-bread__list li:not(:last-of-type)::after {
		right: -5.8666666667vw;
	}
}
.l-bread__list a {
	text-decoration: underline;
	white-space: nowrap;
}
@media screen and (min-width: 767px) {
	.l-bread__list a,
	.l-bread__list span {
		font-size: 11px;
		line-height: 1.5;
		letter-spacing: 0.1em;
		font-weight: 400;
	}
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
	.l-bread__list a,
	.l-bread__list span {
		font-size: 0.7638888889vw;
	}
}
@media screen and (max-width: 766px) {
	.l-bread__list a {
		font-size: calc((11 / 375) * 100vw);
		line-height: 1.5;
		letter-spacing: 0.1em;
		font-weight: 400;
	}
}
.l-bread__list span {
	font-weight: 300;
}
@media screen and (max-width: 766px) {
	.l-bread__list span {
		font-size: calc((11 / 375) * 100vw);
		line-height: 1.5;
		letter-spacing: 0.1em;
		font-weight: 300;
	}
}

/* フッター上バナーセクション */
@media screen and (min-width: 767px) {
	.l-banner {
		margin: 80px 0;
	}
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
	.l-banner {
		margin: 5.5555555556vw 0;
	}
}
@media screen and (max-width: 766px) {
	.l-banner {
		margin: 13.3333333333vw 0;
	}
}

.l-banner__inner__top {
	display: flex;
	align-items: flex-start;
	justify-content: center;
}
@media screen and (min-width: 767px) {
	.l-banner__inner__top {
		column-gap: 28.7px;
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
	.l-banner__inner__top {
		column-gap: 1.9930555556vw;
		margin-bottom: 2.0833333333vw;
	}
}
@media screen and (max-width: 766px) {
	.l-banner__inner__top {
		flex-direction: column;
		row-gap: 8.53333vw;
		margin-bottom: 8.53333vw;
		align-items: center;
	}
}
.l-banner__inner__top::-webkit-scrollbar {
	height: 0.2666666667vw;
}
.l-banner__inner__top::-webkit-scrollbar-track {
	background-color: #E2EAED;
}
.l-banner__inner__top::-webkit-scrollbar-thumb {
	background-color: #1A1A1A;
}
.l-banner__inner__top img {
	object-fit: cover;
	max-width: none;
	height: auto;
}
@media screen and (min-width: 767px) {
	.l-banner__inner__top img {
		width: 312.69px;
/* 		height: 210px; */
	}
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
	.l-banner__inner__top img {
		width: 21.7145833333vw;
/* 		height: 14.5833333333vw; */
	}
}
@media screen and (max-width: 766px) {
	.l-banner__inner__top img {
		width: 83.384vw;
/* 		height: 56vw; */
	}
}

.l-banner__inner__bottom {
	display: flex;
	align-items: center;
	justify-content: center;
}
@media screen and (min-width: 767px) {
	.l-banner__inner__bottom {
		column-gap: 30px;
	}
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
	.l-banner__inner__bottom {
		column-gap: 2.0833333333vw;
	}
}
@media screen and (max-width: 766px) {
	.l-banner__inner__bottom {
		flex-direction: column;
		row-gap: 8vw;
	}
}
.l-banner__inner__bottom img {
	object-fit: cover;
}
@media screen and (min-width: 767px) {
	.l-banner__inner__bottom img {
		width: 355px;
		height: 310px;
	}
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
	.l-banner__inner__bottom img {
		width: 24.6527777778vw;
		height: 21.5277777778vw;
	}
}
@media screen and (max-width: 766px) {
	.l-banner__inner__bottom img {
		width: 94.6666666667vw;
		height: 82.6666666667vw;
	}
}
.l-search__bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(img/module/salon-bg.png);
}
@media screen and (min-width: 767px) {
  .l-search__bg {
    padding: 235px 0;
  }
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
  .l-search__bg {
    padding: 16.3194444444vw 0;
  }
}
@media screen and (max-width: 766px) {
  .l-search__bg {
    padding: 13.3333333333vw 0 16.5333333333vw;
  }
}
@media screen and (max-width: 766px) {
  .l-search__bg .u-mw {
    max-width: 94.6666666667vw;
  }
}

@media screen and (min-width: 767px) {
  .l-serach__text__ttl {
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
  .l-serach__text__ttl {
    margin-bottom: 5.2083333333vw;
  }
}
@media screen and (max-width: 766px) {
  .l-serach__text__ttl {
    margin-bottom: 10.6666666667vw;
    margin-left: 1.6vw;
  }
}

.l-search__inner {
  display: flex;
}
@media screen and (min-width: 767px) {
  .l-search__inner {
    justify-content: space-between;
  }
}
@media screen and (max-width: 766px) {
  .l-search__inner {
    flex-direction: column;
    row-gap: 9.3333333333vw;
  }
}

@media screen and (min-width: 767px) {
  .l-serach__text p {
    font-size: 16px;
    line-height: 2.25;
    letter-spacing: 0.1em;
    font-weight: 400;
  }
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
  .l-serach__text p {
    font-size: 1.1111111111vw;
  }
}
@media screen and (max-width: 766px) {
  .l-serach__text p {
    font-size: calc((14 / 375) * 100vw);
    line-height: 2.2857142857;
    letter-spacing: 0.1em;
    font-weight: 400;
  }
}
@media screen and (max-width: 766px) {
  .l-serach__text p {
    margin-left: 2.6666666667vw;
  }
}

@media screen and (min-width: 767px) {
  .l-serch__right {
    width: 500px;
  }
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
  .l-serch__right {
    width: 34.7222222222vw;
  }
}

@media screen and (min-width: 767px) {
  .l-serch__right__map {
    margin-bottom: 52px;
  }
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
  .l-serch__right__map {
    margin-bottom: 3.6111111111vw;
  }
}
@media screen and (max-width: 766px) {
  .l-serch__right__map {
    margin-bottom: 8.5333333333vw;
  }
}

.l-serch__right__map__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2E2E2E;
  transition: all 0.3s;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.l-serch__right__map__btn:hover {
  opacity: 0.7;
}
@media screen and (min-width: 767px) {
  .l-serch__right__map__btn {
    width: 100%;
    height: 60px;
    column-gap: 20px;
  }
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
  .l-serch__right__map__btn {
    height: 4.1666666667vw;
    column-gap: 1.3888888889vw;
  }
}
@media screen and (max-width: 766px) {
  .l-serch__right__map__btn {
    margin-left: auto;
    margin-right: auto;
    width: 78.6666666667vw;
    height: 13.3333333333vw;
    column-gap: 2.9333333333vw;
  }
}
@media screen and (min-width: 767px) {
  .l-serch__right__map__btn img {
    width: 16.63px;
    height: 24.49px;
  }
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
  .l-serch__right__map__btn img {
    width: 1.1548611111vw;
    height: 1.7006944444vw;
  }
}
@media screen and (max-width: 766px) {
  .l-serch__right__map__btn img {
    width: 4.4346666667vw;
    height: 6.5306666667vw;
  }
}
.l-serch__right__map__btn span {
  color: #fff;
}
@media screen and (min-width: 767px) {
  .l-serch__right__map__btn span {
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.1em;
    font-weight: 400;
  }
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
  .l-serch__right__map__btn span {
    font-size: 1.1111111111vw;
  }
}
@media screen and (max-width: 766px) {
  .l-serch__right__map__btn span {
    font-size: calc((14 / 375) * 100vw);
    line-height: 1;
    letter-spacing: 0.1em;
    font-weight: 400;
  }
}

.l-serch__right__pref {
  background-color: #FFFFFF;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 767px) {
  .l-serch__right__pref {
    padding: 18px 16px 45px;
  }
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
  .l-serch__right__pref {
    padding: 1.25vw 1.1111111111vw 3.125vw;
  }
}
@media screen and (max-width: 766px) {
  .l-serch__right__pref {
    padding: 3.2vw 5.3333333333vw 10.1333333333vw;
  }
}

.l-serch__right__pref__ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 766px) {
  .l-serch__right__pref__ttl {
    margin-bottom: 0.8vw;
  }
}
@media screen and (min-width: 767px) {
  .l-serch__right__pref__ttl p {
    font-size: 24px;
    line-height: 1.4583333333;
    letter-spacing: 0.2em;
    font-weight: 400;
  }
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
  .l-serch__right__pref__ttl p {
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 766px) {
  .l-serch__right__pref__ttl p {
    font-size: calc((18 / 375) * 100vw);
    line-height: 1.4444444444;
    letter-spacing: 0.2em;
    font-weight: 400;
  }
}
@media screen and (min-width: 767px) {
  .l-serch__right__pref__ttl img {
    width: 184px;
    height: 147px;
  }
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
  .l-serch__right__pref__ttl img {
    width: 12.7777777778vw;
    height: 10.2083333333vw;
  }
}
@media screen and (max-width: 766px) {
  .l-serch__right__pref__ttl img {
    width: 30vw;
    height: 20.3706666667vw;
  }
}

.l-serch__right__pref__form__flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 767px) {
  .l-serch__right__pref__form__flex {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
  .l-serch__right__pref__form__flex {
    margin-bottom: 2.0833333333vw;
  }
}
@media screen and (max-width: 766px) {
  .l-serch__right__pref__form__flex {
    margin-bottom: 8vw;
  }
}
.l-serch__right__pref__form__flex button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2E2E2E;
  color: #fff;
  transition: all 0.3s;
}
@media screen and (min-width: 767px) {
  .l-serch__right__pref__form__flex button {
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.06em;
    font-weight: 400;
  }
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
  .l-serch__right__pref__form__flex button {
    font-size: 1.1111111111vw;
  }
}
@media screen and (max-width: 766px) {
  .l-serch__right__pref__form__flex button {
    font-size: calc((14 / 375) * 100vw);
    line-height: 1;
    letter-spacing: 0.05em;
    font-weight: 400;
  }
}
@media screen and (min-width: 767px) {
  .l-serch__right__pref__form__flex button {
    width: 85px;
    height: 40px;
  }
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
  .l-serch__right__pref__form__flex button {
    width: 5.9027777778vw;
    height: 2.7777777778vw;
  }
}
@media screen and (max-width: 766px) {
  .l-serch__right__pref__form__flex button {
    width: 22.6666666667vw;
    height: 8vw;
  }
}
.l-serch__right__pref__form__flex button:hover {
  opacity: 0.7;
}

.l-serch__right__pref__form__flex__select {
  position: relative;
  border-bottom: 0.5px solid #1A1A1A;
}
@media screen and (min-width: 767px) {
  .l-serch__right__pref__form__flex__select {
    width: 357.5px;
    height: 38px;
  }
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
  .l-serch__right__pref__form__flex__select {
    width: 24.8263888889vw;
    height: 2.6388888889vw;
  }
}
@media screen and (max-width: 766px) {
  .l-serch__right__pref__form__flex__select {
    width: 58.5333333333vw;
    height: 7.6586666667vw;
  }
}
.l-serch__right__pref__form__flex__select::after {
  position: absolute;
  content: "";
  display: block;
  background-image: url(img/module/triangle.png);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
@media screen and (min-width: 767px) {
  .l-serch__right__pref__form__flex__select::after {
    right: 10px;
    top: 8px;
    width: 13px;
    height: 9px;
  }
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
  .l-serch__right__pref__form__flex__select::after {
    right: 0.6944444444vw;
    top: 0.5555555556vw;
    width: 0.9027777778vw;
    height: 0.625vw;
  }
}
@media screen and (max-width: 766px) {
  .l-serch__right__pref__form__flex__select::after {
    right: 2.6666666667vw;
    top: 2.1333333333vw;
    width: 3.4666666667vw;
    height: 2.4vw;
  }
}
.l-serch__right__pref__form__flex__select select {
  color: #B2B2B2;
  width: 100%;
}
.l-serch__right__pref__form__flex__select option {
	color: #1a1a1a;
}
@media screen and (min-width: 767px) {
  .l-serch__right__pref__form__flex__select select,
.l-serch__right__pref__form__flex__select option {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    font-weight: 400;
  }
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
  .l-serch__right__pref__form__flex__select select,
.l-serch__right__pref__form__flex__select option {
    font-size: 1.1111111111vw;
  }
}
@media screen and (max-width: 766px) {
  .l-serch__right__pref__form__flex__select select,
.l-serch__right__pref__form__flex__select option {
    font-size: calc((13 / 375) * 100vw);
    line-height: 1.4615384615;
    letter-spacing: 0.1em;
    font-weight: 400;
  }
}
@media screen and (min-width: 767px) {
  .l-serch__right__pref__form__flex__select select,
.l-serch__right__pref__form__flex__select option {
    padding: 0 10px 10px;
  }
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
  .l-serch__right__pref__form__flex__select select,
.l-serch__right__pref__form__flex__select option {
    padding: 0 0.6944444444vw 0.6944444444vw;
  }
}
@media screen and (max-width: 766px) {
  .l-serch__right__pref__form__flex__select select,
.l-serch__right__pref__form__flex__select option {
    padding: 0 2.6666666667vw 2.6666666667vw;
  }
}

.l-serch__right__pref__form__flex__input {
  position: relative;
  border-bottom: 0.5px solid #1A1A1A;
}
@media screen and (min-width: 767px) {
  .l-serch__right__pref__form__flex__input {
    height: 40.22px;
    padding: 0 0 10px 40px;
  }
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
  .l-serch__right__pref__form__flex__input {
    height: 2.7930555556vw;
    padding: 0 0 0.6944444444vw 2.7777777778vw;
  }
}
@media screen and (max-width: 766px) {
  .l-serch__right__pref__form__flex__input {
    height: 7.6586666667vw;
    padding: 0 0 2.6666666667vw 10.6666666667vw;
  }
}
.l-serch__right__pref__form__flex__input::before {
  position: absolute;
  content: "";
  display: block;
  background-image: url(img/module/search-g.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 767px) {
  .l-serch__right__pref__form__flex__input::before {
    left: 10px;
    top: 6px;
    width: 17px;
    height: 17px;
  }
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
  .l-serch__right__pref__form__flex__input::before {
    left: 0.6944444444vw;
    top: 0.4166666667vw;
    width: 1.1805555556vw;
    height: 1.1805555556vw;
  }
}
@media screen and (max-width: 766px) {
  .l-serch__right__pref__form__flex__input::before {
    left: 2.6666666667vw;
    top: 0.8vw;
    width: 4.5333333333vw;
    height: 4.5333333333vw;
  }
}
.l-serch__right__pref__form__flex__input input,
.l-serch__right__pref__form__flex__input ::placeholder{
  color: #B2B2B2 !important;
  display: block;
  width: 100%;
  height: 100%;
	background-color: #fff !important;
	padding: 0 !important;
	font-family: inherit;
}
.l-serch__right__pref__form__flex__input input {
	color: #1a1a1a !important;
}
@media screen and (min-width: 767px) {
  .l-serch__right__pref__form__flex__input input,
	.l-serch__right__pref__form__flex__input ::placeholder{
    font-size: 16px !important;
    line-height: 1 !important;
    letter-spacing: 0.1em !important;
    font-weight: 400;
  }
}
@media screen and (max-width: 1440px) and (min-width: 767px) {
  .l-serch__right__pref__form__flex__input input,
	.l-serch__right__pref__form__flex__input ::placeholder{
    font-size: 1.1111111111vw !important;
  }
}
@media screen and (max-width: 766px) {
  .l-serch__right__pref__form__flex__input input,
	.l-serch__right__pref__form__flex__input ::placeholder{
    font-size: calc((13 / 375) * 100vw) !important;
    line-height: 1 !important;
    letter-spacing: 0.1em !important;
    font-weight: 400;
  }
}