@media not all and (min-width: 1024px) {
  .onlyDesktop {
    display: none;
  }
}

@media (min-width: 1024px) {
  .onlyMobile {
    display: none;
  }
}

html {
  min-width: 320px;
  overflow-y: scroll;
}
@media not all and (min-width: 1024px) {
  html [id]:not([id=""]) {
    scroll-margin-top: 68px;
  }
}
@media (min-width: 1024px) {
  html [id]:not([id=""]) {
    scroll-margin-top: 138px;
  }
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #000;
}
body::before {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: block;
  width: 100%;
  height: 100%;
  visibility: hidden;
  content: "";
  background-color: #fff;
  opacity: 0;
  transition: visibility 0.3s linear, opacity 0.3s ease;
}
body:not(.ready)::before {
  visibility: visible;
  opacity: 1;
}

a {
  transition: opacity 0.3s ease;
}
a:focus {
  opacity: 0.7;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.7;
  }
}

img {
  vertical-align: bottom;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background-color: #fff;
}
.header::before {
  display: block;
  height: 10px;
  content: "";
  background-color: #c60505;
}
@media not all and (min-width: 1024px) {
  .header {
    height: 68px;
  }
}
@media (min-width: 1024px) {
  .header {
    height: 138px;
  }
}

.navigation {
  box-sizing: border-box;
  display: grid;
  max-width: 1240px;
  background-color: inherit;
}
@media not all and (min-width: 1024px) {
  .navigation {
    grid-template: auto/auto 36px 44px;
    gap: 0 10px;
    align-items: center;
    padding-right: 10px;
    padding-left: 10px;
    margin-top: 3px;
  }
}
@media (min-width: 1024px) {
  .navigation {
    grid-template: auto/1fr auto;
    align-items: end;
    padding-right: 64px;
    padding-left: 64px;
    margin-top: 24px;
    margin-right: auto;
    margin-left: auto;
  }
}
.navigation_logo {
  margin-top: 0;
  margin-bottom: 0;
}
@media not all and (min-width: 1024px) {
  .navigation_logo img {
    width: 100px;
    height: auto;
  }
}
@media (min-width: 1024px) {
  .navigation_logo {
    grid-row: 1/3;
  }
}
.navigation_externalLink {
  padding-left: 0;
  margin-top: 0;
  list-style-type: none;
}
@media not all and (min-width: 1024px) {
  .navigation_externalLink {
    margin-right: 10px;
    margin-bottom: 0;
  }
  .navigation_externalLink .shop img {
    width: 36px;
    height: auto;
  }
}
@media (min-width: 1024px) {
  .navigation_externalLink {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    margin-bottom: 2px;
  }
  .navigation_externalLink li + li {
    margin-left: 12px;
  }
  .navigation_externalLink .shop {
    margin-left: 18px;
  }
}
@media not all and (min-width: 1024px) {
  .navigation_externalLink .sns {
    display: none;
  }
}
@media (min-width: 1024px) {
  .navigation_externalLink .sns img {
    width: auto;
    height: 20px;
  }
}
.navigation_button {
  position: relative;
  box-sizing: border-box;
  display: block;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  border-color: transparent;
  border-style: solid;
  border-width: 10px 5px;
  outline: none;
  transition: all 0.3s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.navigation_button::before, .navigation_button::after {
  content: "";
  transition: transform 0.3s;
}
.navigation_button::before, .navigation_button::after,
.navigation_button span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #c1272d;
}
.navigation_button::before {
  top: 0;
}
.navigation_button::after {
  top: 22px;
}
.navigation_button span {
  top: 11px;
}
body.-showMenu .navigation_button::before {
  transform: translateY(11px) rotate(-315deg);
}
body.-showMenu .navigation_button::after {
  transform: translateY(-11px) rotate(315deg);
}
body.-showMenu .navigation_button span {
  opacity: 0;
}
.navigation_menu a {
  color: inherit;
  text-decoration: none;
}
.navigation_menu .main,
.navigation_menu .sns {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
}
@media not all and (min-width: 1024px) {
  .navigation_menu {
    position: fixed;
    top: 68px;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    height: calc(100% - 68px);
    padding: 33px 44px;
    background-color: #fff;
  }
  body.useTransition .navigation_menu {
    transition: visibility 0.5s linear, transform 0.5s cubic-bezier(0.65, 0.05, 0.36, 1), opacity 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  }
  body:not(.useTransition) .navigation_menu {
    transition: none;
  }
  body:not(.-showMenu) .navigation_menu {
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transform: scale(0.95);
  }
  .navigation_menu .main {
    margin-bottom: 32px;
    font-size: 25px;
    line-height: 1.8;
    text-align: right;
    letter-spacing: 0.02em;
  }
  .navigation_menu .main li + li {
    margin-top: 9px;
  }
  .navigation_menu .sns {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }
  .navigation_menu .sns li + li {
    margin-left: 16px;
  }
  .navigation_menu .sns img {
    width: auto;
    height: 30px;
  }
}
@media (min-width: 1024px) {
  .navigation_button {
    display: none;
  }
  .navigation_menu {
    font-size: 19px;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
  .navigation_menu .main {
    display: flex;
  }
  .navigation_menu .main li + li {
    margin-left: 1em;
  }
  .navigation_menu .sns {
    display: none;
  }
}

.content-head {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
}
@media not all and (min-width: 1024px) {
  .content-head {
    max-width: 700px;
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (min-width: 1024px) {
  .content-head {
    max-width: 1240px;
    padding-right: 64px;
    padding-left: 64px;
  }
}

.content-body {
  margin-right: auto;
  margin-left: auto;
}

.width-limit {
  box-sizing: border-box;
}
@media not all and (min-width: 1024px) {
  .width-limit {
    max-width: 700px;
  }
}
@media (min-width: 1024px) {
  .width-limit {
    max-width: 1240px;
  }
}

@media (min-width: 1024px) {
  .content-body.width-limit {
    padding-right: 64px;
    padding-left: 64px;
  }
}

.width-limit:not(.content-body) {
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 1024px) {
  .width-limit:not(.content-body) {
    padding-right: 64px;
    padding-left: 64px;
  }
}

.page-head {
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 21px;
  font-weight: normal;
  line-height: 30px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 9px;
}
@media not all and (min-width: 1024px) {
  .page-head {
    margin: 0 auto 60px;
  }
}
@media (min-width: 1024px) {
  .page-head {
    margin: 48px auto 80px;
  }
}

.head-title {
  margin-top: 0;
  font-weight: normal;
  text-align: center;
  letter-spacing: 0.02em;
}
@media not all and (min-width: 1024px) {
  .head-title {
    margin-bottom: 24px;
    font-size: 19px;
  }
}
@media (min-width: 1024px) {
  .head-title {
    margin-bottom: 32px;
    font-size: 21px;
  }
}

.head-english-title {
  display: flex;
  flex-flow: column;
  align-items: center;
  margin-top: 0;
  font-weight: normal;
  letter-spacing: 0.02em;
}
@media not all and (min-width: 1024px) {
  .head-english-title {
    margin-bottom: 24px;
    font-size: 19px;
  }
}
@media (min-width: 1024px) {
  .head-english-title {
    margin-bottom: 32px;
    font-size: 21px;
  }
}
.head-english-title::after {
  display: block;
  font-style: italic;
  color: #c60505;
  letter-spacing: 0.08em;
  content: "- " attr(data-head-english) " -";
}
@media not all and (min-width: 1024px) {
  .head-english-title::after {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  .head-english-title::after {
    font-size: 18px;
  }
}

@media not all and (min-width: 1024px) {
  .banner-store {
    margin-bottom: 45px;
  }
}
@media (min-width: 1024px) {
  .banner-store {
    margin-bottom: 106px;
  }
}
.banner-store a {
  display: flex;
  font-size: 21px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.banner-store a::after {
  display: flex;
  flex: 0 0 100%;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-left: -100%;
  content: attr(data-image-caption);
  background-color: rgba(0, 0, 0, 0.65);
}
.banner-store picture {
  flex: 0 0 100%;
}
.banner-store img {
  width: 100%;
  height: auto;
}

.footer {
  font-size: 14px;
  line-height: 1.9285714286;
  text-align: center;
  background-color: #f8f5f0;
}
@media not all and (min-width: 1024px) {
  .footer {
    padding-top: 40px;
  }
}
@media (min-width: 1024px) {
  .footer {
    padding-top: 48px;
  }
}
.footer::after {
  display: block;
  height: 6px;
  content: "";
  background-color: #c1272d;
}
.footer p {
  margin-top: 0;
}
.footer .logo {
  margin-bottom: 40px;
}
.footer .address {
  margin-bottom: 1em;
}
.footer .phone {
  margin-bottom: 48px;
}
.footer .copyright {
  font-size: 12px;
  color: #666;
  text-align: center;
}
@media not all and (min-width: 1024px) {
  .footer .copyright {
    margin-bottom: 40px;
  }
}
@media (min-width: 1024px) {
  .footer .copyright {
    margin-bottom: 32px;
  }
}

body.home .mainVisual {
  display: grid;
  grid-template-columns: 29.0322580645% 1fr;
  align-items: center;
  margin-bottom: 50px;
}
body.home .mainVisual .copy {
  display: flex;
  align-items: center;
  justify-content: center;
}
body.home .mainVisual .copy img {
  width: auto;
}
@media not all and (min-width: 1024px) {
  body.home .mainVisual .copy img {
    height: 290px;
  }
}
@media (min-width: 1024px) {
  body.home .mainVisual .copy img {
    height: 360px;
  }
}
body.home .mainVisualSlider {
  overflow: hidden;
}
body.home .mainVisualSlider .list {
  display: flex;
  width: 100%;
}
body.home .mainVisualSlider .list .item {
  padding-right: 8px;
}
body.home .mainVisualSlider .list .item img {
  height: auto;
}
@media not all and (min-width: 1024px) {
  body.home .mainVisualSlider .list .item img {
    width: 210px;
  }
}
@media (min-width: 1024px) {
  body.home .mainVisualSlider .list .item img {
    width: 280px;
  }
}
body.home .concept {
  padding-top: 72px;
  padding-bottom: 72px;
  background-color: #f8f5f0;
}
body.home .concept p {
  margin-top: 0;
  margin-bottom: 0;
}
body.home .concept .message {
  margin-bottom: 1.5em;
}
@media not all and (min-width: 1024px) {
  body.home .concept {
    padding-right: 16px;
    padding-left: 16px;
    font-size: 14px;
    line-height: 30.5px;
  }
  body.home .concept .message {
    text-align: justify;
    text-justify: inter-ideograph;
  }
  body.home .concept .message br {
    display: none;
  }
  body.home .concept .signature {
    text-align: right;
  }
}
@media (min-width: 1024px) {
  body.home .concept {
    font-size: 16px;
    line-height: 38.5px;
  }
  body.home .concept .message,
body.home .concept .signature {
    text-align: center;
  }
}
body.home .itemList {
  padding-right: 16px;
  padding-left: 16px;
  margin-top: 64px;
  margin-bottom: 64px;
}
body.home .itemList .item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 6px;
  text-align: center;
  background-color: #f8f5f0;
}
body.home .itemList .item .name {
  order: 2;
  margin-bottom: 1em;
  font-size: 16px;
}
body.home .itemList .item .detail {
  order: 3;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  list-style-type: none;
}
body.home .itemList .item .image {
  position: relative;
  order: 1;
  height: 0;
  padding-top: 76.0355029586%;
  margin-bottom: 1em;
  background-color: #fff;
}
body.home .itemList .item .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
body.home .itemList .item .button {
  order: 4;
  padding: 20px 27px;
}
body.home .itemList .item .button a {
  display: block;
  padding-top: 0.5625em;
  padding-bottom: 0.5625em;
  font-size: 16px;
  line-height: 2;
  color: #fff;
  text-decoration: none;
  background-color: #c1272d;
  border-radius: 4.152px;
}
@media not all and (min-width: 768px) {
  body.home .itemList .list {
    max-width: 358px;
    margin-right: auto;
    margin-left: auto;
  }
  body.home .itemList .item:not(:first-child) {
    margin-top: 20px;
  }
}
@media (min-width: 768px) {
  body.home .itemList .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 752px;
    margin-right: auto;
    margin-left: auto;
  }
  body.home .itemList .item {
    width: 47.6063829787%;
  }
  body.home .itemList .item:nth-child(n+3) {
    margin-top: 4.7872340426%;
  }
}

body.concept .concept p {
  margin-top: 0;
  margin-bottom: 0;
}
body.concept .concept .message {
  margin-bottom: 1.5em;
}
@media not all and (min-width: 1024px) {
  body.concept .concept {
    padding-right: 16px;
    padding-left: 16px;
    margin-bottom: 40px;
    font-size: 14px;
    line-height: 30.5px;
  }
  body.concept .concept .message {
    text-align: justify;
    text-justify: inter-ideograph;
  }
  body.concept .concept .message br {
    display: none;
  }
  body.concept .concept .signature {
    text-align: right;
  }
}
@media (min-width: 1024px) {
  body.concept .concept {
    margin-bottom: 86px;
    font-size: 16px;
    line-height: 38.5px;
  }
  body.concept .concept .message,
body.concept .concept .signature {
    text-align: center;
  }
}
body.concept .concept-image {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
}
body.concept .concept-image li img {
  width: 100%;
  height: auto;
}
@media not all and (min-width: 768px) {
  body.concept .concept-image {
    max-width: 326px;
    padding-right: 16px;
    padding-left: 16px;
    margin-right: auto;
    margin-bottom: 48px;
    margin-left: auto;
  }
  body.concept .concept-image li + li {
    margin-top: 14px;
  }
}
@media (min-width: 768px) {
  body.concept .concept-image {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 112px;
  }
  body.concept .concept-image li {
    flex-basis: calc((100% - 24px) / 3);
    max-width: calc((100% - 24px) / 3);
  }
}

@media not all and (min-width: 1024px) {
  body.about .head-english-title {
    min-height: 0;
    font-size: min(max(17px, 1.0625rem + 2 * (100vw - 320px) / 55), 19px);
    text-align: center;
  }
}
body.about .description {
  line-height: 2.15625;
  text-align: justify;
  text-justify: inter-ideograph;
}
body.about .description::after {
  display: block;
  clear: both;
  content: "";
}
body.about .description .text + .text {
  margin-top: 2.15625em;
  margin-bottom: 2.15625em;
}
body.about .description .image img {
  max-width: 100%;
  height: auto;
}
body.about .description p {
  margin-top: 0;
  margin-bottom: 0;
}
@media not all and (min-width: 768px) {
  body.about .description {
    box-sizing: content-box;
    padding-right: 16px;
    padding-left: 16px;
    font-size: 14px;
  }
  body.about .description .image {
    margin-bottom: 2.15625em;
    text-align: center;
  }
}
@media (min-width: 768px) {
  body.about .description {
    margin-top: -0.578125em;
    font-size: 16px;
  }
  body.about .description .image {
    float: left;
    margin-top: 0.578125em;
    margin-right: 1em;
    margin-bottom: 0.5em;
  }
}
body.about .benefits {
  background-color: #f8f5f0;
}
@media not all and (min-width: 1024px) {
  body.about .benefits {
    padding: 48px 16px;
    margin-bottom: 100px;
  }
}
@media (min-width: 1024px) {
  body.about .benefits {
    padding-top: 72px;
    padding-bottom: 72px;
    margin-bottom: 128px;
  }
}
@media not all and (min-width: 1024px) {
  body.about .benefits .head-title {
    margin-bottom: 40px;
  }
}
@media (min-width: 1024px) {
  body.about .benefits .head-title {
    margin-bottom: 56px;
  }
}
body.about .benefits dl {
  margin-top: 0;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  body.about .benefits dl {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }
}
body.about .benefits dl > div {
  box-sizing: border-box;
  border: 4px solid #000;
}
@media not all and (min-width: 1024px) {
  body.about .benefits dl > div {
    margin-top: 20px;
  }
}
@media (min-width: 1024px) {
  body.about .benefits dl > div {
    width: 48%;
  }
  body.about .benefits dl > div:nth-child(n+3) {
    margin-top: 4%;
  }
}
body.about .benefits dl dt {
  padding: 0.5em 1.5em;
  text-align: center;
}
body.about .benefits dl dd {
  margin-left: 0;
}
body.about .benefits dl dd::before {
  display: block;
  content: "";
  border-top: 4px solid #000;
}
body.about .benefits dl dd .inner {
  padding: 1.5em;
  text-align: justify;
  text-justify: inter-ideograph;
}
body.about .benefits p {
  margin-top: 0;
  margin-bottom: 0;
}
body.about .benefits p.mb {
  margin-bottom: 1em;
}
body.about .benefits .js-accordion [data-accordion-header] {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
body.about .benefits .js-accordion [data-accordion-header]:focus {
  opacity: 0.7;
}
@media (hover: hover) and (pointer: fine) {
  body.about .benefits .js-accordion [data-accordion-header]:hover {
    opacity: 0.7;
  }
}
body.about .benefits .js-accordion [data-accordion-body] {
  overflow: hidden;
  transition: height 0.4s ease;
}
body.about .benefits .js-accordion:not(.-open) [data-accordion-body] {
  display: none;
}

@media not all and (min-width: 1024px) {
  body.item .list {
    margin-bottom: 100px;
  }
}
@media (min-width: 1024px) {
  body.item .list {
    margin-bottom: 128px;
  }
}
body.item .list .item .name {
  margin-top: 0;
  margin-bottom: 40px;
  font-weight: normal;
  text-align: center;
}
body.item .list .item .box .text {
  font-size: 14px;
  line-height: 2.0357142857;
}
body.item .list .item .box .text p:first-child {
  margin-top: 0;
}
body.item .list .item .box .text .detail {
  margin-top: -0.5178571429em;
  margin-bottom: 3em;
  text-align: justify;
  text-justify: inter-ideograph;
}
body.item .list .item .box .text .detail p + p {
  margin-top: 2em;
}
body.item .list .item .box .text .button a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.3888888889em 50px;
  font-size: 18px;
  line-height: 2;
  color: #fff;
  text-decoration: none;
  background-color: #c1272d;
  border-radius: 9px;
}
body.item .list .item .box .image {
  box-sizing: border-box;
  background-color: #f8f5f0;
}
body.item .list .item .box .image img {
  width: 100%;
  height: auto;
}
body.item .list .item + .item {
  margin-top: 80px;
}
@media not all and (min-width: 768px) {
  body.item .list {
    margin-right: 16px;
    margin-left: 16px;
  }
  body.item .list .item .name {
    font-size: 18px;
  }
  body.item .list .item .box {
    display: flex;
    flex-flow: column-reverse;
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
  }
  body.item .list .item .box .text .button {
    text-align: center;
  }
  body.item .list .item .box .image {
    width: 350px;
    padding: 15px;
    margin-right: auto;
    margin-bottom: 24px;
    margin-left: auto;
  }
}
@media (min-width: 768px) {
  body.item .list .item .name {
    font-size: 21px;
  }
  body.item .list .item .box {
    display: flex;
    flex-flow: row-reverse;
    align-items: flex-start;
  }
  body.item .list .item .box .text {
    flex: 1;
  }
  body.item .list .item .box .image {
    flex: 0 0 38.6%;
    padding: 17px;
    margin-right: 16px;
  }
}

body.dealer .stores {
  max-width: 820px;
  padding-right: 16px;
  padding-left: 16px;
  margin-right: auto;
  margin-left: auto;
}
@media not all and (min-width: 1024px) {
  body.dealer .stores {
    margin-bottom: 100px;
  }
}
@media (min-width: 1024px) {
  body.dealer .stores {
    margin-bottom: 128px;
  }
}
body.dealer .store {
  padding-right: 6px;
  padding-bottom: 1.5em;
  padding-left: 6px;
  font-size: 14px;
  line-height: 28.5px;
  border-bottom: 2px solid #c60505;
}
body.dealer .store .name {
  margin-bottom: 1em;
  font-size: 21px;
  font-weight: normal;
  line-height: 1.75;
  letter-spacing: 0.02em;
}
body.dealer .store .description {
  margin-bottom: 2em;
}
body.dealer .store p {
  margin-top: 0;
  margin-bottom: 0;
  text-align: justify;
  text-justify: inter-ideograph;
}
body.dealer .store ul {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
}
body.dealer .store ul a {
  color: inherit;
  text-decoration: none;
}