@charset "UTF-8";
@font-face {
  font-family: "InterBold";
  src: url("../../../fonts/Inter-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "InterMedium";
  src: url("../../../fonts/Inter-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "InterLight";
  src: url("../../../fonts/Inter-Light.ttf") format("truetype");
}
* {
  border: 0;
  box-sizing: border-box;
  color: #45433e;
  font-family: "yu-gothic-pr6n", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.75;
  margin: 0;
  outline: 0;
  padding: 0;
}

html {
  font-size: clamp(0.8533333333rem, 4.2666666667vw, 2.1333333333rem);
  min-width: 20rem;
}
@media (min-width: 800px) {
  html {
    font-size: clamp(0.6675rem, 1.3333333333vw, 1rem);
  }
}

body {
  background: #45433e;
  overflow: auto;
  position: relative;
}

main {
  min-height: calc(100vh - 5rem);
}
@media (min-width: 800px) {
  main {
    min-height: calc(100vh - 5rem);
  }
}

h1 {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media (min-width: 800px) {
  h1 {
    font-size: 1.5rem;
    letter-spacing: 0.3em;
  }
}

h2 {
  color: #45433e;
  font-weight: 700;
  letter-spacing: 0;
}

ol,
ul {
  list-style: none;
}

a,
p,
li,
dt,
dd,
th,
td,
span,
label,
input,
button,
select {
  text-decoration: none;
}

button {
  background: none;
  cursor: pointer;
}

@media (min-width: 800px) {
  a,
  label,
  button,
  i,
  .hover {
    transition: opacity 0.2s ease;
  }
  a:hover,
  label:hover,
  button:hover,
  i:hover,
  .hover:hover {
    opacity: 0.8;
  }
}
a:disabled,
label:disabled,
button:disabled,
i:disabled,
.hover:disabled {
  cursor: not-allowed;
}
a:disabled:hover,
label:disabled:hover,
button:disabled:hover,
i:disabled:hover,
.hover:disabled:hover {
  opacity: 1;
}

img {
  font-size: 0;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.container__white-bg {
  background: #fff;
  border-radius: 0.625rem 0.625rem 0 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media (min-width: 800px) {
  .container__white-bg {
    border-radius: 1.25rem 1.25rem 0 0;
  }
}

.container__gray-bg {
  background: #f4f4f5;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.container__gray-bg::before {
  box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.2) inset;
  content: "";
  height: 120%;
  left: -10%;
  position: absolute;
  top: 0;
  width: 120%;
  z-index: 0;
}
@media (min-width: 800px) {
  .container__gray-bg::before {
    box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.2) inset;
  }
}

.pc-only {
  display: none;
}
@media (min-width: 800px) {
  .pc-only {
    display: inline-block;
  }
}

body:has(.nav[data-is-open=true]) {
  overflow: hidden;
}

.header {
  position: relative;
}

.header__inner {
  align-items: center;
  box-sizing: content-box;
  display: flex;
  height: 5rem;
  justify-content: space-between;
  margin: 0 auto;
  width: 20rem;
}
@media (min-width: 800px) {
  .header__inner {
    height: 5rem;
    width: 71.25rem;
  }
}

.nav-open {
  align-items: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-family: "InterMedium", "YuGothic", "遊ゴシック", sans-serif;
  font-size: 0.625rem;
  justify-content: space-between;
  letter-spacing: 0.065em;
}
@media (min-width: 800px) {
  .nav-open {
    font-size: 0.75rem;
  }
}
.nav-open::before {
  background: url(../../../images/icon/icon_menu.svg) no-repeat center/contain;
  content: "";
  height: 1.6875rem;
  width: 1.6875rem;
}
@media (min-width: 800px) {
  .nav-open::before {
    height: 2rem;
    width: 2rem;
  }
}

.nav {
  background: rgba(0, 0, 0, 0.5);
  bottom: 0;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.3s ease;
  visibility: hidden;
  z-index: 10000;
}
.nav[data-is-open=true] {
  opacity: 1;
  visibility: visible;
}

.nav__inner {
  background: #fff;
  border-radius: 0 0 0.3125rem 0.3125rem;
  margin: 0 auto;
  max-height: 100vh;
  overflow-y: auto;
  padding: 1.25rem 0 2.5rem;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  width: 21.875rem;
}
@media (min-width: 800px) {
  .nav__inner {
    border-radius: 0 0 1.25rem 1.25rem;
    padding: 2.5rem 0;
    width: 100%;
  }
}
.nav[data-is-open=true] .nav__inner {
  transform: translateY(0);
}
.nav__inner ul {
  margin: 1.875rem auto 0;
  width: 20rem;
}
@media (min-width: 800px) {
  .nav__inner ul {
    margin-top: 1.875rem;
    width: 62.5rem;
  }
}
.nav__inner ul li {
  border-top: 1px solid #d3d2cf;
}
.nav__inner ul li a {
  display: flex;
  font-size: 0.875rem;
  justify-content: space-between;
  padding: 0.875rem 0.25rem;
}
@media (min-width: 800px) {
  .nav__inner ul li a {
    font-size: 1rem;
    padding: 1.25rem 0.5rem;
  }
}
.nav__inner ul li form {
  padding: 0.875rem 0.25rem;
  position: relative;
}
@media (min-width: 800px) {
  .nav__inner ul li form {
    padding: 1.25rem 0.5rem;
  }
}
.nav__inner ul li form input {
  border: 1px solid #d3d2cf;
  font-size: 0.875rem;
  padding: 0.875rem 1.875rem 0.875rem 0.5rem;
  width: 100%;
}
@media (min-width: 800px) {
  .nav__inner ul li form input {
    font-size: 1rem;
    padding: 1.25rem 3.75rem 1.25rem 1rem;
  }
}
.nav__inner ul li form button {
  box-sizing: content-box;
  height: 0.75rem;
  padding: 0.5rem;
  position: absolute;
  right: 0.5rem;
  top: calc(50% - 0.875rem);
  width: 0.75rem;
}
@media (min-width: 800px) {
  .nav__inner ul li form button {
    height: 1.125rem;
    padding: 0.5rem;
    right: 1.125rem;
    top: calc(50% - 1.0625rem);
    width: 1.125rem;
  }
}
.nav__inner ul li form button i {
  background: url(../../../images/icon/icon_search.svg) no-repeat center/contain;
  display: block;
  height: 100%;
  width: 100%;
}

.nav__close-btn {
  margin: 0 auto;
  width: 20rem;
}
@media (min-width: 800px) {
  .nav__close-btn {
    width: 62.5rem;
  }
}
.nav__close-btn button {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-size: 0.625rem;
  margin-left: auto;
  padding-top: 0.25rem;
}
@media (min-width: 800px) {
  .nav__close-btn button {
    font-size: 0.75rem;
    padding-top: 0.125rem;
  }
}
.nav__close-btn button::before {
  background: url(../../../images/icon/icon_close.svg) no-repeat center/contain;
  content: "";
  height: 0.75rem;
  width: 0.75rem;
}
@media (min-width: 800px) {
  .nav__close-btn button::before {
    height: 1.5rem;
    width: 1.5rem;
  }
}

.home__links {
  margin: 0 auto;
  padding: 2.5rem 0 3.125rem;
  width: 20rem;
}
@media (min-width: 800px) {
  .home__links {
    padding: 3.75rem 0;
    width: 62.5rem;
  }
}
.home__links h2 {
  align-items: center;
  display: flex;
  font-size: 0.875rem;
  gap: 0.4375rem;
}
@media (min-width: 800px) {
  .home__links h2 {
    font-size: 0.875rem;
    gap: 0.4375rem;
  }
}
.home__links h2::after {
  background: url(../../../images/icon/icon_search.svg) no-repeat center/contain;
  content: "";
  height: 0.875rem;
  width: 0.875rem;
}
@media (min-width: 800px) {
  .home__links h2::after {
    height: 0.875rem;
    width: 0.875rem;
  }
}

.home__links--menu {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  margin-top: 1.375rem;
}
@media (min-width: 800px) {
  .home__links--menu {
    flex-direction: row;
    flex-wrap: wrap;
    gap: unset;
    justify-content: space-between;
    margin-top: 1.25rem;
  }
}
.home__links--menu a {
  align-items: center;
  border: 1px solid #807f7d;
  display: flex;
  height: 3.75rem;
  padding: 0 1.25rem;
  position: relative;
}
@media (min-width: 800px) {
  .home__links--menu a {
    height: 3.75rem;
    letter-spacing: 0.05em;
    padding: 0 1.25rem;
  }
}
.home__links--menu a[data-index="0"] {
  width: 100%;
}
@media (min-width: 800px) {
  .home__links--menu a[data-index="0"] {
    width: 10.9375rem;
  }
}
.home__links--menu a[data-index="1"], .home__links--menu a[data-index="2"] {
  width: 100%;
}
@media (min-width: 800px) {
  .home__links--menu a[data-index="1"], .home__links--menu a[data-index="2"] {
    width: 15.9375rem;
  }
}
.home__links--menu a::after {
  background: url(../../../images/icon/icon_arrow-right.svg) no-repeat center/contain;
  content: "";
  height: 0.71875rem;
  position: absolute;
  right: 1.25rem;
  top: calc(50% - 0.359375rem);
  width: 1.25rem;
}
@media (min-width: 800px) {
  .home__links--menu a::after {
    height: 0.6875rem;
    right: 1.125rem;
    top: calc(50% - 0.34375rem);
    width: 1.25rem;
  }
}
.home__links--menu a ._accent {
  color: #c80421;
}
.home__links--menu form {
  position: relative;
}
.home__links--menu form button {
  box-sizing: content-box;
  height: 1rem;
  padding: 0.5rem;
  position: absolute;
  right: 0.875rem;
  top: calc(50% - 1rem);
  width: 1rem;
}
@media (min-width: 800px) {
  .home__links--menu form button {
    height: 1rem;
    padding: 0.5rem;
    position: absolute;
    right: 0.625rem;
    top: calc(50% - 1rem);
    width: 1rem;
  }
}
.home__links--menu form button i {
  background: url(../../../images/icon/icon_search.svg) no-repeat center/contain;
  display: block;
  height: 100%;
  width: 100%;
}
.home__links--menu input {
  align-items: center;
  border: 1px solid #d3d2cf;
  display: flex;
  font-size: 1rem;
  height: 3.75rem;
  padding: 0 1.25rem;
  width: 100%;
}
@media (min-width: 800px) {
  .home__links--menu input {
    height: 3.75rem;
    padding: 0 1.25rem;
    width: 15.9375rem;
  }
}
.home__links--menu input::-moz-placeholder {
  color: #807f7d;
}
.home__links--menu input::placeholder {
  color: #807f7d;
}

.home__links--brands {
  display: flex;
  flex-wrap: wrap;
  gap: 1.875rem 1.25rem;
  margin: 4.375rem auto 0;
  width: 20rem;
}
@media (min-width: 800px) {
  .home__links--brands {
    gap: 1.875rem 1.25rem;
    margin: 3rem auto 3rem;
    width: 62.5rem;
  }
}
.home__links--brands li {
  border: 1px solid #d3d2cf;
  flex-basis: 9.375rem;
  height: 3.125rem;
  position: relative;
  margin-bottom: 1rem;
  text-align: center;
}
@media (min-width: 800px) {
  .home__links--brands li {
    flex-basis: 9.375rem;
    height: 3.125rem;
  }
}
.home__links--brands li:last-child {
  flex-basis: auto;
  flex-grow: 1;
}
.home__links--brands li:last-child a {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  letter-spacing: 0.16em;
  padding: 0 1.25rem;
}
@media (min-width: 800px) {
  .home__links--brands li:last-child a {
    padding: 0 1.25rem;
  }
}
.home__links--brands li:last-child a::after {
  background: url(../../../images/icon/icon_arrow-right.svg) no-repeat center/contain;
  content: "";
  height: 0.71875rem;
  width: 1.25rem;
}
@media (min-width: 800px) {
  .home__links--brands li:last-child a::after {
    height: 0.6875rem;
    width: 1.25rem;
  }
}
.home__links--brands li[data-has-flag=true]::before {
  color: #c80421;
  content: attr(data-flag-txt);
  display: block;
  font-family: "InterMedium", "YuGothic", "遊ゴシック", sans-serif;
  font-size: 0.75rem;
  left: 0;
  position: absolute;
  top: -1.8em;
}
@media (min-width: 800px) {
  .home__links--brands li[data-has-flag=true]::before {
    font-size: 0.75rem;
  }
}

/* 2. 画像とテキストのマージン調整 */
.home__links--brands li a img {
  display: block;
  margin: 0 auto 0.2rem; /* ロゴとブランド名の間隔を設定 */
}

.home__links--brands li a p {
  text-align: center;
  margin: 0; /* ブランド名の余白をリセット */
  font-size: 0.7em;
  line-height: 1.2; /* 読みやすさを考慮して調整 */
}

.home__news {
  margin: 0 auto;
  padding: 1.25rem 0 6.875rem;
  position: relative;
  width: 21.875rem;
}
@media (min-width: 800px) {
  .home__news {
    padding: 2.5rem 0 7.5rem;
    width: 62.5rem;
  }
}
.home__news h2 {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.9375rem;
  text-align: center;
}
@media (min-width: 800px) {
  .home__news h2 {
    font-size: 1.125rem;
    margin-bottom: 1.875rem;
  }
}

.home__news--list {
  background: #fff;
  border-radius: 0.625rem;
  box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.1);
  padding: 0 0.8125rem 0 1.5625rem;
}
@media (min-width: 800px) {
  .home__news--list {
    border-radius: 0.625rem;
    box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.1);
    padding: 0 1rem 0 2.5rem;
  }
}

.home__news--list-inner {
  height: 26.25rem;
  overflow-y: auto;
}
@media (min-width: 800px) {
  .home__news--list-inner {
    height: 17.5rem;
  }
}
.home__news--list-inner::-webkit-scrollbar {
  width: 0.1875rem;
}
@media (min-width: 800px) {
  .home__news--list-inner::-webkit-scrollbar {
    width: 0.375rem;
  }
}
.home__news--list-inner::-webkit-scrollbar-thumb {
  background-color: #d3d2cf;
  border-radius: 0.1875rem;
  cursor: grab;
}
@media (min-width: 800px) {
  .home__news--list-inner::-webkit-scrollbar-thumb {
    border-radius: 0.1875rem;
  }
}
.home__news--list-inner::-webkit-scrollbar-thumb:active {
  cursor: grabbing;
}
.home__news--list-inner::-webkit-scrollbar-track {
  margin: 1.625rem 0;
}
@media (min-width: 800px) {
  .home__news--list-inner::-webkit-scrollbar-track {
    margin: 1.875rem 0;
  }
}
.home__news--list-inner ul {
  padding: 1.625rem 1.15625rem 1.625rem 0;
}
@media (min-width: 800px) {
  .home__news--list-inner ul {
    padding: 1.875rem 2rem 1.875rem 0;
  }
}
.home__news--list-inner li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9375rem;
  padding: 0.9375rem 0 1.25rem;
  position: relative;
}
@media (min-width: 800px) {
  .home__news--list-inner li {
    flex-wrap: unset;
    gap: 1.25rem;
    padding: 0.875rem 0;
  }
}
.home__news--list-inner li:not(:last-child) {
  border-bottom: 1px solid #d3d2cf;
}
.home__news--list-inner li span {
  display: flex;
  flex-shrink: 0;
  font-family: "InterLight", "YuGothic", "遊ゴシック", sans-serif;
  font-size: 0.75rem;
  justify-content: space-between;
  letter-spacing: 0.16em;
  line-height: 1.57;
  width: 8.75rem;
}
@media (min-width: 800px) {
  .home__news--list-inner li span {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    padding-left: 0.5rem;
    width: 10.75rem;
  }
}
.home__news--list-inner li[data-has-flag=true]::after {
  align-items: center;
  border: 1px solid #c80421;
  color: #c80421;
  content: attr(data-flag-txt);
  display: flex;
  font-size: 0.75rem;
  font-weight: 500;
  height: 1.25rem;
  justify-content: center;
  left: 5.625rem;
  position: absolute;
  top: 0.875rem;
  width: 3.125rem;
}
@media (min-width: 800px) {
  .home__news--list-inner li[data-has-flag=true]::after {
    font-size: 0.75rem;
    height: 1.375rem;
    left: 7.5rem;
    top: 0.875rem;
    transform: unset;
    width: 3.125rem;
  }
}
.home__news--list-inner li a {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.43;
  width: 100%;
}
@media (min-width: 800px) {
  .home__news--list-inner li a {
    font-size: 0.875rem;
    line-height: 1.57;
    width: auto;
  }
}

/* Backボタンのスタイル */
.back-btn {
	background-color: #eee;
	border: none;
	padding: 0.3rem;
	font-size: 1rem;
	color: #333;
	cursor: pointer;
	border-radius: 4px;
}
.back-btn:hover {
	background-color: #bbb;
}
@media (min-width: 800px) {
	.back-btn {
		display: none;
	}
}

.floating-btn {
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0.1875rem rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: block;
    width: 3.6rem;
    overflow: hidden;
    position: fixed;
    bottom: 3.4rem;
    right: 0.3rem;
	z-index: 10;
}
.floating-btn a {
    align-items: center;
    display: flex;
    right: 1rem;
    height: 100%;
    justify-content: center;
    padding: 1.03125rem;
    width: 100%;
}
main:has(form[data-has-data=false]) .floating-btn {
	display: none;
}
@media (min-width: 800px) {
  .floating-btn {
    height: 5.625rem;
    width: 5.625rem;
    bottom: 6rem;
    right: 1.875rem;
  }
}

.floating-back {
  display: none;
}
@media (min-width: 800px) {
  .floating-back {
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0.1875rem rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: block;
    overflow: hidden;
    position: fixed;
    top: 6rem;
    right: 1.875rem;
    height: 5.625rem;
    width: 5.625rem;
  }
  .floating-back a {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    padding: 0.8rem;
    width: 100%;
  }
}

.footer {
  bottom: 0;
  display: flex;
  height: 3.2rem;
  justify-content: center;
  left: 0;
  overflow: hidden;
  padding-top: 0.8rem;
  position: fixed;
  width: 100%;
  z-index: 5;
}
@media (min-width: 800px) {
  .footer {
    height: 3.75rem;
    padding-top: 1.25rem;
  }
}
.footer::before {
  background: #45433e;
  box-shadow: 0 0 0.375rem #000 inset;
  content: "";
  height: 120%;
  left: -10%;
  position: absolute;
  top: 0;
  width: 120%;
  z-index: -1;
}
@media (min-width: 800px) {
  .footer::before {
    box-shadow: 0 0 0.375rem #000 inset;
  }
}
.footer a {
  align-items: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-family: "InterMedium", "YuGothic", "遊ゴシック", sans-serif;
  font-size: 0.8rem;
}
@media (min-width: 800px) {
  .footer a {
    font-size: 0.75rem;
  }
}
.footer a::before {
  border: 0.0625rem solid transparent;
  border-left-color: #fff;
  border-top-color: #fff;
  content: "";
  height: 0.5rem;
  transform: rotate(45deg) translate(0, 12px);
  width: 0.5rem;
}
@media (min-width: 800px) {
  .footer a::before {
    border-width: 0.125rem;
    height: 0.375rem;
    width: 0.375rem;
	transform: rotate(45deg) translate(0, 0);
  }
}
.footer p{
	color: #FFFFFF;
	margin: 0;
	padding: 5px;
	display: block;
	position: absolute;
	top: 0;
	font-size: 0.6rem;
}
@media (min-width: 800px) {
  .footer p {
	right: 0;
	font-size: 0.7rem;
  }
}