@charset "UTF-8";
/* フォントの定義 */
@font-face {
  font-family: "pa1";
  src: local("MFW-PA1GothicStd-Light");
  font-weight: 300; /* Light相当 */
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "pa1";
  src: local("MFW-PA1GothicStd-Regular");
  font-weight: 400; /* Regular相当 */
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "pa1";
  src: local("MFW-PA1GothicStd-Medium");
  font-weight: 500; /* Medium相当 */
  font-style: normal;
  font-display: swap;
}
:root {
  --themeColor:#c70505;
  --themeColor-lt:#fcf1ed;
  --pointColor:#128fd2;
  --linkColor:#87eaf9;
  --bgColor:#e8eeee;
  --fontColor: #000;
  --w:1000px;
  --side: calc((100% - (var(--w))) / 2);
  --widthXL:1100px;
  --widthLG:980px;
  --widthTab:768px;
  --font-go-base: "pa1", "MFW-PA1GothicStd-Medium", "pa1", "Hiragino Kaku Gothic Pro" ,"游ゴシック体", "Yu Gothic Medium" , "Yu Gothic", Meiryo ,sans-serif;
  --font-mi-base: "Hiragino Mincho ProN", "Yu Mincho","YuMincho", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  --font-jost: 'Jost', var(--font-go-base);
  --font-roboto: 'Roboto', var(--font-go-base);
  --font-garamond: 'EB Garamond', var(--font-mi-base);
  --pcHeaderHeight:120px;
}

html {
  color: #000;
  background: #FFF;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, select, main, address, span {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 140%;
}

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

a, span, details, summary {
  box-sizing: border-box;
}

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

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

strong {
  font-style: normal;
}

ul li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

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

abbr, acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-bottom;
}

sub {
  vertical-align: text-top;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input, textarea, select {
  font-size: 100%;
}

legend {
  color: #000;
}

figure {
  margin: 0;
}

img {
  backface-visibility: hidden;
}

html {
  scroll-padding-top: 80px;
}

body {
  font-size: 0.875rem;
  color: var(--fontColor);
  font-family: var(--font-go-base);
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "halt";
}

@media (max-width: 767px) {
  .for-pc {
    display: none !important;
  }
}

@media (min-width: 1100px) {
  .for-md-sp {
    display: none !important;
  }
}

@media (min-width: 980px) {
  .for-tab-sp {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .for-sp {
    display: none !important;
  }
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

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

a {
  text-decoration: none;
  transition: all 0.3s;
}
a img {
  opacity: 1;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  a:hover img {
    opacity: 0.8;
  }
}
@media (max-width: 767px) {
  a:active img {
    opacity: 0.8;
  }
}

p {
  line-height: 190%;
}
@media (max-width: 767px) {
  p {
    line-height: 1.6;
  }
}
p + p {
  margin-top: 1.2rem;
}
@media (min-width: 768px) {
  p a:hover {
    color: var(--linkColor);
  }
}
@media (max-width: 767px) {
  p a:active {
    color: var(--linkColor);
  }
}

ol {
  padding-left: 1.25rem;
}

ruby rt {
  font-size: 40%;
}

em {
  color: #e13838;
}

input[type=text],
input[type=tel],
input[type=email],
textarea {
  appearance: none;
  padding: 8px 10px;
  border: 1px solid #b7b7b7;
}
@media (max-width: 767px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  textarea {
    font-size: 1rem;
  }
}

select {
  height: 40px;
  padding: 8px 10px;
  border: 1px solid #b7b7b7;
  background: #fff;
  border-radius: 4px;
  color: var(--fontColor);
}
@media (max-width: 767px) {
  select {
    font-size: 1rem;
  }
}

textarea {
  width: 100%;
  height: 200px;
}

.btn-line {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 256px;
  border-bottom: 1px solid var(--themeColor);
  height: 35px;
  color: var(--themeColor);
  font-weight: bold;
  text-align: center;
  padding-right: 35px;
}
@media (hover: hover) {
  .btn-line:hover {
    letter-spacing: 0.05em;
  }
}
@media (max-width: 767px) {
  .btn-line {
    width: 200px;
    padding-right: 40px;
  }
}
.btn-line::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 35px;
  background: var(--themeColor);
  position: absolute;
  right: 45px;
  bottom: 0;
}
@media (max-width: 767px) {
  .btn-line::before {
    height: 30px;
  }
}
.btn-line::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 7px;
  position: absolute;
  top: calc(50% - px);
  right: 20px;
  background: url(../img/common/icon-arrow.png) center center/contain no-repeat;
}
.btn-line.is-white {
  border-bottom-color: #fff;
  color: #fff;
}
.btn-line.is-white::before {
  background: #fff;
}
.btn-line.is-white::after {
  background-image: url(../img/common/icon-arrow-white.png);
}

.btn-shadow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px 10px;
  height: 56px;
  background: #000;
  color: #fff;
  font-family: var(--font-jost);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 5px;
  box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 0.1);
}

.btn-doubleline {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  color: #fff;
  width: 400px;
  max-width: 100%;
  padding: 15px;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .btn-doubleline {
    justify-content: start;
    font-size: 0.875rem;
  }
}
.btn-doubleline-en {
  margin-right: 10px;
  font-size: 0.75rem;
  line-height: 1;
  opacity: 0.7;
}
@media (max-width: 767px) {
  .btn-doubleline-en {
    font-size: 0.625rem;
  }
}
.btn-doubleline::after {
  content: "";
  display: inline-block;
  width: 33px;
  height: 7px;
  position: absolute;
  top: calc(50% - 3px);
  right: 20px;
  background: url(../img/common/icon-arrow-2.png) center center/contain no-repeat;
}

.btn-pdf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000;
  height: 36px;
  padding: 4px 10px;
  color: #fff;
  border-radius: 4px;
}
.btn-pdf::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  background: url(../img/common/icon-pdf.png) center center/contain no-repeat;
}
@media (hover: hover) {
  .btn-pdf:hover {
    background: var(--pointColor);
  }
}

.btn-toStore {
  display: inline-flex;
  height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  background: #fff;
  padding: 0 30px;
  color: #000;
  font-weight: bold;
  font-size: 1rem;
  gap: 30px;
  border: 1px solid #ccc;
}
@media (max-width: 767px) {
  .btn-toStore {
    text-align: left;
  }
}
@media (hover: hover) {
  .btn-toStore:hover {
    background: var(--pointColor);
    color: #fff;
  }
}
.btn-toStore-bag {
  display: flex;
  gap: 5px;
  align-items: center;
}
@media (max-width: 767px) {
  .btn-toStore-bag .shoppingCart-text {
    display: none;
  }
}
.btn-toStore::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 12px;
  background: url(../img/common/icon-arrow-r-small.png) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .btn-toStore::after {
    display: none;
  }
}

.btn-submit {
  display: inline-block;
  padding: 20px 40px 20px 35px;
  background: var(--themeColor);
  border: none;
  font-weight: bold;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  text-align: center;
  appearance: none;
  transition: all 0.2s;
  cursor: pointer;
}
@media (max-width: 767px) {
  .btn-submit {
    padding: 10px 25px 10px 20px;
    font-size: 0.875rem;
  }
}
@media (hover: hover) {
  .btn-submit:hover {
    opacity: 0.8;
  }
}
.btn-submit.is-gray {
  background: #888;
}
.btn-submit.is-gray::before {
  transform: rotate(180deg);
}
@media (hover: hover) {
  .btn-submit.is-gray:hover {
    background: #686868;
    color: #fff;
  }
}

.btn-round {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  padding: 12px 40px;
  background: var(--themeColor);
  color: #fff;
  height: 41px;
  border-radius: 30px;
}
.btn-round::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 10px;
  position: absolute;
  right: 10px;
  top: calc(50% - 5px);
  background: url(../img/common/icon-arrow-s.png) center center/contain no-repeat;
  margin-left: 10px;
}
@media (hover: hover) {
  .btn-round:hover {
    opacity: 0.8;
  }
}

.btn-flat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 25px;
  height: 40px;
  font-weight: 500;
  font-size: 1rem;
  background: var(--fontColor);
  color: #fff;
  font-family: var(--font-jost);
}
@media (hover: hover) {
  .btn-flat:hover {
    background: var(--themeColor);
  }
}

.col {
  display: flex;
  flex-flow: row wrap;
}
@media (max-width: 767px) {
  .col {
    display: block;
  }
}
@media (max-width: 767px) {
  .col.is-sp-flex {
    display: flex;
  }
}
.col.is-oneline {
  flex-wrap: nowrap;
  justify-content: space-between;
}
.col-contents {
  width: 100%;
}
@media (max-width: 767px) {
  .col-contents {
    max-width: 100%;
  }
  .col:not(.is-sp-flex) .col-contents + .col:not(.is-sp-flex) .col-contents {
    margin-top: 10px;
  }
}
.is-oneline .col-contents {
  margin-bottom: 0;
}
.is-oneline .col-contents + .col-contents {
  margin-left: 2%;
}
@media (max-width: 767px) {
  .is-oneline:not(.is-sp-flex) .col-contents {
    max-width: 100%;
    margin: auto;
  }
  .is-oneline:not(.is-sp-flex) .col-contents + .col-contents {
    margin-top: 30px;
  }
}
.is-2 .col-contents {
  max-width: 48%;
}
.is-2 .col-contents:nth-child(even) {
  margin-left: calc(4% - 1px);
}
.is-2 .col-contents:nth-child(n+3) {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .is-2 .col-contents:nth-child(n+3) {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .is-2:not(.is-sp-flex) .col-contents {
    max-width: 100%;
    margin: auto;
  }
  .is-2:not(.is-sp-flex) .col-contents + .col-contents {
    margin-top: 30px;
  }
}
.is-3 .col-contents {
  max-width: 32%;
}
.is-3 .col-contents:not(:nth-child(3n+1)) {
  margin-left: calc(2% - 1px);
}
.is-3 .col-contents:nth-child(n+4) {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .is-3 .col-contents:nth-child(n+4) {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .is-3:not(.is-sp-flex) .col-contents {
    max-width: 100%;
    margin: auto;
  }
  .is-3:not(.is-sp-flex) .col-contents + .col-contents {
    margin-top: 30px;
  }
}
.is-4 .col-contents {
  max-width: 23%;
}
.is-4 .col-contents:not(:nth-child(4n+1)) {
  margin-left: calc(2.6% - 1px);
}
.is-4 .col-contents:nth-child(n+5) {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .is-4 .col-contents:nth-child(n+5) {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .is-4:not(.is-sp-flex) .col-contents {
    max-width: 100%;
    margin: auto;
  }
  .is-4:not(.is-sp-flex) .col-contents + .col-contents {
    margin-top: 30px;
  }
}
.col-contents-title {
  margin-bottom: 5px;
}
.col-contents-text {
  margin-top: 5px;
}

.flImgContents-img {
  max-width: 37%;
  width: 100%;
}
@media (max-width: 767px) {
  .flImgContents-img {
    max-width: 100%;
  }
}
.flImgContents-img.is-s {
  max-width: 200px;
}
@media (max-width: 767px) {
  .flImgContents-img.is-s {
    max-width: 100%;
  }
}
.flImgContents-img.is-ss {
  max-width: 100px;
}
@media (max-width: 767px) {
  .flImgContents-img.is-ss {
    max-width: 70%;
    margin-right: auto;
    margin-left: auto;
  }
}
.flImgContents-img.is-l {
  max-width: 47%;
}
@media (max-width: 767px) {
  .flImgContents-img.is-l {
    max-width: 100%;
  }
}
.flImgContents-img.is-fr {
  float: right;
  margin: 0 0 20px 40px;
}
@media (max-width: 767px) {
  .flImgContents-img.is-fr {
    margin: 0 auto 20px;
  }
  .flImgContents-img.is-fr:not(.is-sp-float) {
    float: none;
  }
  .flImgContents-img.is-fr.is-sp-float {
    width: 35%;
    margin: 0 0 10px 10px;
  }
}
.flImgContents-img.is-fl {
  float: left;
  margin: 0 40px 20px 0;
}
@media (max-width: 767px) {
  .flImgContents-img.is-fl {
    margin: 0 auto 20px;
  }
  .flImgContents-img.is-fl:not(.is-sp-float) {
    float: none;
  }
  .flImgContents-img.is-fl.is-sp-float {
    width: 35%;
    margin: 0 10px 10px 0;
  }
}

.text-s {
  font-size: 85%;
}

.text-l {
  font-size: 120%;
}

.cl-red {
  color: #ff0000;
}

.list-normal > li {
  margin: 0 0 10px;
  text-indent: -1.6rem;
  padding-left: 1.6rem;
}
.list-normal > li::before {
  content: "●";
  margin-right: 5px;
  font-size: 10px;
  font-family: sans-serif;
  color: var(--themeColor);
}

.list-number {
  padding: 0 0 0 25px;
}
.list-number > li {
  list-style: decimal;
  margin: 0 0 10px;
}

.list-numbold {
  counter-reset: li;
  list-style: none;
  padding-left: 2.5rem;
}
.list-numbold > li::before {
  margin: 0 5px 0 -2rem;
  width: 2.5rem;
  content: counter(li) ". ";
  counter-increment: li;
  font-weight: bold;
}

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

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

.full {
  width: 100%;
}

.size-30 {
  width: 30%;
}
@media (max-width: 767px) {
  .size-30 {
    width: 70%;
  }
}

.size-60 {
  width: 60%;
}
@media (max-width: 767px) {
  .size-60 {
    width: 100%;
  }
}

.indent {
  width: 97%;
  margin: 0 0 0 auto;
}

.section-small {
  margin-top: 20px;
  margin-bottom: 20px;
}

.section-1 {
  margin-top: 30px;
  margin-bottom: 40px;
}
.section-1:first-child {
  margin-top: 0;
}

.section-2 {
  margin-top: 40px;
  margin-bottom: 70px;
}
.section-2:first-child {
  margin-top: 0;
}

.section-3 {
  margin-top: 40px;
  margin-bottom: 100px;
}
.section-3:first-child {
  margin-top: 0;
}

.section-center {
  max-width: var(--w);
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .section-center {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .section-center-sp {
    width: 90% !important;
    margin-left: auto;
    margin-right: auto;
  }
}

.nowrap {
  white-space: nowrap;
}

.table-1 {
  border-collapse: collapse;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.table-1 tr {
  border-bottom: 1px solid #ccc;
}
.table-1 th, .table-1 td {
  padding: 13px;
}
@media (max-width: 767px) {
  .table-1 th, .table-1 td {
    font-size: 0.875rem;
  }
}
.table-1 a {
  color: var(--linkColor);
}
@media (max-width: 767px) {
  .table-1.is-sideTitle tr {
    padding: 15px 0;
  }
  .table-1.is-sideTitle th {
    padding: 0;
    margin-bottom: 10px;
  }
  .table-1.is-sideTitle td {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .is-sideTitle tr {
    display: block;
  }
  .is-sideTitle th, .is-sideTitle td {
    display: block;
    width: 100%;
    padding: 0;
  }
  .is-sideTitle th {
    margin-bottom: 5px;
    font-weight: bold;
  }
}

.wfix {
  table-layout: fixed;
}

@media (max-width: 767px) {
  .tableScrollWrap {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    margin-right: -5vw;
    padding-right: 5vw;
  }
}

.title-bold {
  margin-bottom: 5px;
  font-size: 1.25rem;
  font-weight: bold;
}

.title-m {
  margin-bottom: 20px;
  font-size: 2.25rem;
  font-weight: 500;
  font-family: var(--font-jost);
}
@media (max-width: 767px) {
  .title-m {
    font-size: 1.625rem;
    margin-bottom: 15px;
  }
}

.title-lm {
  margin-bottom: 30px;
}
.title-lm-sub {
  display: block;
  font-family: var(--font-roboto);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 2px;
}
@media (max-width: 767px) {
  .title-lm-sub {
    font-size: 1rem;
  }
}
.title-lm-main {
  display: block;
  font-size: 1.625rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .title-lm-main {
    font-size: 1.25rem;
  }
}

.title-underline {
  position: relative;
  display: flex;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .title-underline {
    margin-bottom: 30px;
    font-size: 1.25rem;
  }
}
.title-underline::before {
  content: "";
  display: inline-block;
  width: 140px;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}

.title-underline-s {
  position: relative;
  display: flex;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.8;
  padding-bottom: 5px;
  margin-bottom: 70px;
  height: fit-content;
}
@media (max-width: 767px) {
  .title-underline-s {
    margin-bottom: 30px;
    font-size: 1rem;
  }
}
.title-underline-s::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}

#container {
  padding-top: var(--pcHeaderHeight);
}
@media (max-width: 767px) {
  #container {
    padding-top: 60px;
  }
}

.shoppingCart a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
}
@media (hover: hover) {
  .shoppingCart a:hover {
    color: var(--themeColor);
  }
}
.shoppingCart-text {
  margin-top: 6px;
  font-family: var(--font-jost);
  font-weight: bold;
  font-size: 12px;
}

.pageMv {
  position: relative;
}
@media (min-width: 768px) {
  .pageMv {
    margin-top: 40px;
  }
}
.pageMv.is-noimg {
  height: 130px;
}
@media (max-width: 767px) {
  .pageMv.is-noimg {
    height: 100px;
  }
}
.pageMv-title {
  position: absolute;
  right: 1%;
  top: -20px;
  text-align: right;
  font-family: var(--font-roboto);
  font-size: 5.625rem;
  font-weight: 600;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transform: translateX(-150px);
  transition: all 1.4s cubic-bezier(0.76, 0.01, 0.32, 1.15);
}
@media (min-width: 768px) and (max-width: 979px) {
  .pageMv-title {
    font-size: 3.75rem;
  }
}
@media (max-width: 767px) {
  .pageMv-title {
    font-size: 2rem;
    bottom: -0.5em;
    top: auto;
    z-index: 1;
  }
}
@media (min-width: 768px) {
  .is-noimg .pageMv-title {
    right: 5%;
  }
}
@media (max-width: 767px) {
  .is-noimg .pageMv-title {
    top: 50%;
    right: 5%;
  }
}
.site-loaded .pageMv-title {
  transform: translateX(0px);
  clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%);
}
.pageMv-imgs {
  display: flex;
  gap: 10px;
  aspect-ratio: 2.18;
}
.pageMv-imgs-img {
  height: 100%;
  overflow: hidden;
}
.pageMv-imgs-img.is-1 {
  width: 50%;
}
.pageMv-imgs-img.is-2 {
  height: 83%;
  margin-block: auto 0;
}
@media (max-width: 767px) {
  .pageMv-imgs-img.is-2 {
    margin-block: 0;
  }
}
.pageMv-imgs-img.is-3 {
  height: 83%;
  margin-block: auto 0;
}
@media (max-width: 767px) {
  .pageMv-imgs-img.is-3 {
    margin-block: 0;
  }
}
.pageMv-imgs-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.5);
  opacity: 0;
  transition: all 1.4s ease-in-out;
}
.site-loaded .pageMv-imgs-img img {
  transform: scale(1);
  opacity: 1;
}

@media (min-width: 768px) {
  .pageNavi {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .pageNavi {
    max-width: 94%;
  }
}
.pageNavi {
  margin-bottom: 40px;
}
.pageNavi-ul {
  display: flex;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.pageNavi-ul-li {
  position: relative;
  width: 100%;
}
.pageNavi-ul-li + .pageNavi-ul-li {
  border-left: 1px solid #000;
}
@media (max-width: 767px) {
  .pageNavi-ul-li + .pageNavi-ul-li {
    border-left: 0;
  }
}
.pageNavi-ul-li a {
  display: block;
  padding: 20px 30px;
  color: #000;
  text-align: center;
}
.pageNavi-ul-li a::after {
  content: "";
  display: block;
  width: 10px;
  height: 4px;
  background: #000;
  position: absolute;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  right: calc(50% - 5px);
  bottom: 10px;
}
@media (hover: hover) {
  .pageNavi-ul-li a:hover {
    background: #f2f2f2;
  }
}

.footer {
  display: grid;
  grid-template: "info contact" auto "info bottom" auto/370px 1fr;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}
@media (max-width: 767px) {
  .footer {
    grid-template: "contact" auto "navi" auto "info" auto "bottom" 1fr/1fr;
  }
}

.footerInfo {
  grid-area: info;
  width: 370px;
  background: rgba(0, 0, 0, 0.05);
  padding: 80px 20px 60px 60px;
  border-right: 1px solid rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) and (max-width: 979px) {
  .footerInfo {
    padding-left: 4%;
  }
}
@media (max-width: 767px) {
  .footerInfo {
    width: 100%;
    border-right: 0;
    padding: 40px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.5);
  }
}
.footerInfo-logo {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .footerInfo-logo {
    width: 50%;
    margin: 0 auto 30px;
  }
}
.footerInfo-address {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footerInfo-address-item dt {
  font-size: 0.8125rem;
  line-height: 1.8;
}
.footerInfo-address-item dd {
  line-height: 1.8;
}
.footerInfo-address-item-btn {
  display: inline-flex;
  background: rgba(0, 0, 0, 0.1);
  line-height: 1.3;
  padding: 1px 10px;
  font-weight: 500;
  font-family: var(--font-jost);
  border-radius: 30px;
  font-size: 0.75rem;
  color: #000;
}
@media (hover: hover) {
  .footerInfo-address-item-btn:hover {
    background: var(--pointColor);
    color: #fff;
  }
}

.footerContact {
  grid-area: contact;
  padding: 40px 60px 40px;
}
@media (max-width: 767px) {
  .footerContact {
    padding: 20px 0;
  }
}
.footerContact-title {
  text-align: center;
  font-family: var(--font-jost);
  font-weight: 500;
  font-size: 2.625rem;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .footerContact-title {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }
}
.footerContact-text {
  text-align: center;
  font-weight: 500;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .footerContact-text {
    margin-bottom: 15px;
    font-weight: bold;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
  }
}
.footerContact-content {
  display: flex;
  justify-content: center;
  gap: 5%;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .footerContact-content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .footerContact-content {
    display: block;
  }
}
@media (max-width: 767px) {
  .footerContact-content-item {
    text-align: center;
  }
}
.footerContact-content-item .tel {
  display: block;
  font-size: min(5vw, 60px);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  font-family: var(--font-jost);
}
@media (min-width: 768px) and (max-width: 1099px) {
  .footerContact-content-item .tel {
    font-size: 6vw;
  }
}
@media (max-width: 767px) {
  .footerContact-content-item .tel {
    font-size: 12vw;
    text-align: center;
  }
}
.footerContact-content-item .tel a {
  color: #000;
}
.footerContact-content-item-time {
  text-align: center;
  font-size: 0.8125rem;
  display: block;
}
.footerContact-content-item .btn-shadow {
  width: 325px;
  height: 80px;
  max-width: 100%;
}
@media screen and (max-width: 1160px) and (min-width: 768px) {
  .footerContact-content-item .btn-shadow {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .footerContact-content-item .btn-shadow {
    width: 90%;
    height: 65px;
    margin: 20px auto 0;
  }
}

.footerNavi {
  padding: 30px 60px 0;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .footerNavi {
    display: none;
  }
}
.footerNavi-ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  justify-content: flex-end;
}
.footerNavi-ul-item a {
  display: block;
  font-weight: bold;
  color: #000;
  font-size: 0.8125rem;
}
@media (hover: hover) {
  .footerNavi-ul-item a:hover {
    color: var(--themeColor);
  }
}

.footerBottom {
  grid-area: bottom;
  text-align: right;
}
@media (min-width: 768px) {
  .footerBottom {
    border-top: 1px solid rgba(0, 0, 0, 0.5);
    padding-right: 60px;
  }
}
@media (max-width: 767px) {
  .footerBottom {
    text-align: center;
    background: rgba(0, 0, 0, 0.05);
  }
}
.footerBottom .shoppingCart {
  display: inline-flex;
}

.snsIcons {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin: 40px 0;
}
@media (max-width: 767px) {
  .snsIcons {
    margin: 20px 0 30px;
    justify-content: center;
  }
}

.footerCopy {
  display: block;
  margin-bottom: 40px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--pcHeaderHeight);
  z-index: 3;
  background: rgb(255, 255, 255);
}
@media (max-width: 979px) {
  .header {
    height: 60px;
  }
}
.header-inner {
  justify-content: space-between;
  padding: 15px 40px 0 40px;
}
@media (min-width: 980px) {
  .header-inner {
    display: grid;
    grid-template: "logo btns" auto "logo navi" 1fr/auto 1fr;
  }
}
@media (max-width: 979px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px 0;
    height: 100%;
  }
}
.header-logo {
  grid-area: logo;
}
@media (max-width: 979px) {
  .header-logo {
    width: auto;
    height: 80%;
  }
  .header-logo img {
    width: auto;
    height: 100%;
    max-height: 100%;
  }
}
.header-logo a {
  display: block;
}
@media (max-width: 979px) {
  .header-logo a {
    height: 100%;
  }
}
@media (hover: hover) {
  .header-logo a {
    opacity: 0.8;
  }
}
.header-btns {
  grid-area: btns;
  display: flex;
  justify-content: end;
  gap: 10px;
  margin-bottom: 15px;
}
.header-btns .shoppingCart {
  height: 40px;
}
@media (min-width: 980px) {
  .header-btns .shoppingCart {
    border: 1px solid rgba(0, 0, 0, 0.368627451);
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .header-btns .shoppingCart {
    margin: 0 60px 0 0;
    z-index: 6;
  }
}
@media (max-width: 767px) {
  .header-btns .shoppingCart {
    margin: -2px 40px 0 0;
  }
}
.header-btns .shoppingCart a {
  display: flex;
}
@media (min-width: 980px) {
  .header-btns .shoppingCart a {
    padding: 5px 15px;
  }
}
@media (max-width: 767px) {
  .header-btns .shoppingCart a {
    padding: 5px 15px;
  }
}
@media (hover: hover) {
  .header-btns .shoppingCart a:hover {
    background: #f2f2f2;
    color: var(--fontColor);
  }
}
@media (max-width: 979px) {
  .header-btns .shoppingCart-text {
    display: none;
  }
}
.header-btns .btn-flat {
  width: 120px;
}
@media (max-width: 979px) {
  .header-btns .btn-flat {
    display: none;
  }
}

.gNavi {
  grid-area: navi;
  justify-self: end;
}
@media (max-width: 979px) {
  .gNavi {
    position: fixed;
    left: 0;
    bottom: 100%;
    width: 100%;
    max-height: 100vh;
    height: fit-content;
    margin: 0;
    background: linear-gradient(-10deg, var(--fontColor) 70%, rgba(20, 20, 20, 0.905));
    transition: all 0.8s cubic-bezier(0.78, 0.01, 0.18, 1);
    transform: translateX(0);
    z-index: 5;
    overflow-y: scroll;
    opacity: 0;
  }
}
.dwMenu-active .gNavi {
  opacity: 1;
  transform: translateY(100%);
}
.gNavi-ul {
  display: flex;
  text-align: center;
  gap: 0 60px;
}
@media (min-width: 980px) and (max-width: 1099px) {
  .gNavi-ul {
    gap: 0 40px;
  }
}
@media (max-width: 979px) {
  .gNavi-ul {
    padding: 80px 20px 20px 20px;
    flex-direction: column;
  }
}
.gNavi-ul-item {
  font-size: 1rem;
  font-weight: 500;
}
@media (max-width: 979px) {
  .gNavi-ul-item {
    color: #fff;
  }
}
.gNavi-ul-item a {
  display: block;
  color: var(--fontColor);
}
@media (max-width: 979px) {
  .gNavi-ul-item a {
    padding: 10px 25px;
    color: #fff;
  }
}
@media (hover: hover) {
  .gNavi-ul-item a:hover {
    color: var(--themeColor);
  }
}
.gNavi-ul-item-en {
  display: block;
  font-family: var(--font-jost);
  font-size: 1rem;
}
.gNavi-ul-item-ja {
  display: block;
  margin-top: 5px;
  font-size: 0.75rem;
}
@media (max-width: 979px) {
  .gNavi-ul-item-ja {
    color: rgba(255, 255, 255, 0.8);
  }
}

.filter {
  position: fixed;
  width: 100%;
  height: 120%;
  bottom: 0;
  left: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 1;
}
.dwMenu-active .filter {
  background: rgba(0, 0, 0, 0.4);
  pointer-events: auto;
}

.dwMenu {
  appearance: none;
  padding: 0;
  background: none;
  border: none;
  position: fixed;
  top: 40px;
  right: 40px;
  width: 35px;
  height: 35px;
  cursor: pointer;
  z-index: 7;
}
@media (min-width: 980px) {
  .dwMenu {
    display: none;
  }
}
@media (max-width: 979px) {
  .dwMenu {
    transform: scale(0.8);
    top: 12px;
    right: 15px;
  }
}
.dwMenu-hamburger {
  position: relative;
  display: block;
  outline: none;
  border: none;
}
.dwMenu-hamburger span {
  position: absolute;
  left: 0;
  width: 35px;
  height: 2px;
  display: inline-block;
  background-color: #000;
  transition: all 0.4s;
}
.dwMenu-active .dwMenu-hamburger span {
  background-color: #fff;
}
.dwMenu-hamburger span:nth-of-type(1) {
  top: 0;
  animation: menu-bar01 0.75s forwards;
}
.dwMenu-hamburger span:nth-of-type(2) {
  top: 11.5px;
  transition: all 0.25s 0.25s;
  opacity: 1;
}
.dwMenu-hamburger span:nth-of-type(3) {
  top: 24px;
  animation: menu-bar02 0.75s forwards;
}
.dwMenu-active .dwMenu-hamburger span:nth-of-type(1) {
  animation: active-menu-bar01 0.75s forwards;
}
.dwMenu-active .dwMenu-hamburger span:nth-of-type(2) {
  opacity: 0;
}
.dwMenu-active .dwMenu-hamburger span:nth-of-type(3) {
  animation: active-menu-bar03 0.75s forwards;
}
.dwMenu-text {
  display: block;
  margin-top: 27px;
  text-align: center;
  font-size: 0.9rem;
  transform: scale(0.8);
  transform-origin: left;
  padding-left: 1px;
  transition: all 0.4s;
}
.dwMenu-active .dwMenu-text {
  color: #fff;
}

@keyframes menu-bar01 {
  0% {
    transform: translateY(12px) rotate(45deg);
  }
  50% {
    transform: translateY(12px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-12px) rotate(-45deg);
  }
  50% {
    transform: translateY(-12px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(12px) rotate(0);
  }
  100% {
    transform: translateY(12px) rotate(45deg);
  }
}
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-12px) rotate(0);
  }
  100% {
    transform: translateY(-12px) rotate(-45deg);
  }
}
.wpArticle {
  word-break: break-all;
  font-size: 0.9375rem;
}
.wpArticle p {
  margin-bottom: 20px;
}
.wpArticle p a {
  text-decoration: underline;
}
.wpArticle em {
  font-style: italic;
  color: initial;
}
.wpArticle ol {
  margin: 10px 20px;
  padding: 0;
}
.wpArticle ul {
  margin: 10px 20px;
  list-style-type: disc;
  list-style-position: outside;
  list-style-image: none;
}
.wpArticle ul li {
  list-style: unset;
}
.wpArticle blockquote p {
  font-size: 1.125rem;
}
.wpArticle h1 {
  margin: 50px 40px;
  padding: 10px 15px;
  background: #eef1f3;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .wpArticle h1 {
    margin-bottom: 30px;
  }
}
.wpArticle h2 {
  margin: 50px auto 30px;
  font-weight: bold;
  border-left: 4px solid #000;
  padding: 10px 0 10px 0.8em;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .wpArticle h2 {
    font-size: 1.125rem;
  }
}
.wpArticle h3 {
  margin: 50px auto 20px;
  padding: 5px 0;
  border-bottom: 1px solid #ccc;
  font-size: 1.125rem;
  font-weight: bold;
}
.wpArticle h4 {
  margin: 50px auto 5px;
  font-size: 1rem;
  font-weight: bold;
}
.wpArticle img {
  height: auto;
}
@media (max-width: 767px) {
  .wpArticle img {
    display: block;
    margin: 10px auto;
  }
}
.wpArticle table {
  border-collapse: collapse;
  margin-bottom: 20px;
}
.wpArticle table thead {
  border-bottom-width: 1px;
}
.wpArticle table tfoot {
  border-top-width: 1px;
}
.wpArticle table a {
  text-decoration: underline;
}
.wpArticle table th,
.wpArticle table td {
  padding: 10px;
  border: 1px solid #ccc;
}
@media (max-width: 767px) {
  .wpArticle table th,
  .wpArticle table td {
    font-size: 0.8125rem;
  }
}
.wpArticle table th {
  background: #eee;
}
.wpArticle .wp-block-button__link {
  font-size: 0.875rem;
}
.wpArticle .more-link {
  color: var(--linkColor);
}
.wpArticle .wp-caption {
  max-width: 100%;
}
.wpArticle .wp-block-pullquote,
.wpArticle .wp-block-quote {
  background: var(--bgColor);
  padding: 30px;
  text-align: left;
}
.wpArticle .wp-block-pullquote p,
.wpArticle .wp-block-quote p {
  font-size: 0.875rem;
}
.wpArticle .wp-block-pullquote cite,
.wpArticle .wp-block-quote cite {
  display: block;
  text-align: right;
  font-size: #999;
}
.wpArticle .wp-block-columns {
  gap: 30px;
}
.wpArticle .wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.wpArticle .wp-block-gallery img {
  margin: 0;
}
.wpArticle .wp-block-image .alignright {
  float: right;
  margin: 0 0 20px 30px;
}
@media (max-width: 767px) {
  .wpArticle .wp-block-image .alignright {
    float: none;
    margin: 10px auto;
  }
}
@media (max-width: 767px) {
  .wpArticle .wp-block-image .alignright img {
    width: 100% !important;
  }
}
.wpArticle .wp-block-image .alignleft {
  float: left;
  margin: 0 30px 20px 0;
}
@media (max-width: 767px) {
  .wpArticle .wp-block-image .alignleft {
    float: none;
    margin: 10px auto;
  }
}
@media (max-width: 767px) {
  .wpArticle .wp-block-image .alignleft img {
    width: 100% !important;
  }
}
.wpArticle .wp-block-image .aligncenter {
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .wpArticle .wp-block-media-text {
    display: block;
  }
  .wpArticle .wp-block-media-text .wp-block-media-text__content {
    padding: 0;
  }
}
.wpArticle .wp-block-list li {
  margin-bottom: 5px;
}
.wpArticle .wp-block-group.has-background {
  margin-bottom: 20px;
  padding: 20px;
}
@media (max-width: 767px) {
  .wpArticle .wp-block-group.has-background {
    padding: 20px 5%;
  }
}
.wpArticle .wp-block-group.has-background p:last-child {
  margin-bottom: 0;
}
.wpArticle .border img {
  border: 1px solid #ccc;
}

.pagination {
  margin: 70px 0;
}
.pagination-box {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.pagination-box li {
  font-size: 1rem;
}
.pagination-box li:not(.page-of) {
  display: flex;
  box-align: center;
  align-items: center;
  justify-content: center;
  background: #000;
  width: 35px;
  height: 35px;
  margin: 0 5px 5px 0;
  color: #fff;
  border: 1px solid #000;
}
@media (max-width: 767px) {
  .pagination-box li:not(.page-of) {
    width: 30px;
    height: 30px;
  }
}
.pagination-box li.page-of {
  margin-right: 10px;
  padding-top: 10px;
}
@media (max-width: 767px) {
  .pagination-box li.page-of {
    padding-top: 7px;
  }
}
.pagination-box li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #000;
}
@media (hover: hover) {
  .pagination-box li a:hover {
    background: #f2f2f2;
  }
}

.mv {
  position: relative;
}
@media (min-width: 768px) {
  .mv {
    margin-top: 60px;
  }
}
.mv-copy {
  position: absolute;
  right: var(--side);
  top: 0;
  max-width: 75%;
  z-index: 1;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .mv-copy {
    right: 1%;
    top: 30px;
  }
}
@media (max-width: 767px) {
  .mv-copy {
    top: 128vw;
    left: 0;
    width: 100%;
    max-width: 100%;
    padding-inline: 3%;
  }
}
.mv-imgs {
  padding-top: 75px;
  display: grid;
  grid-template: "img1 img3 img4" 45vw "img2 img3 img4" 32vw/50% 1.2fr 0.8fr;
  gap: 10px;
}
.mv-imgs-img {
  overflow: hidden;
}
.mv-imgs-img.is-1 {
  grid-area: img1;
}
.mv-imgs-img.is-2 {
  grid-area: img2;
}
@media (max-width: 767px) {
  .mv-imgs-img.is-2 {
    display: none;
  }
}
.mv-imgs-img.is-3 {
  grid-area: img3;
  padding-block: 100px 26vw;
}
.mv-imgs-img.is-4 {
  grid-area: img4;
  padding-block: 100px 26vw;
}
.mv-imgs-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.5);
  opacity: 0;
  transition: all 1.4s ease-in-out;
}
.site-loaded .mv-imgs-img img {
  transform: scale(1);
  opacity: 1;
}
.mv-imgsp img {
  width: 100%;
}

.topAbout {
  position: relative;
  padding-left: var(--side);
  padding-bottom: 80px;
  padding-right: 42%;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .topAbout {
    padding-left: 5%;
  }
}
@media (max-width: 767px) {
  .topAbout {
    padding: 0 0 140vw;
    margin-bottom: -22vw;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
    z-index: 1;
  }
}
.topAbout-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-block: 80px 60px;
}
@media (max-width: 767px) {
  .topAbout-title {
    font-size: 6.6vw;
    margin-block: 30px 20px;
    position: relative;
    z-index: 1;
  }
}
.topAbout-img {
  position: absolute;
  right: 0;
  width: 50%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .topAbout-img {
    top: -38vw;
  }
}
@media (max-width: 767px) {
  .topAbout-img {
    bottom: 0;
    width: 120%;
    right: 2vw;
  }
}
.topAbout-img-map {
  margin-right: -20%;
  width: 120%;
}
@media (max-width: 767px) {
  .topAbout-img-map {
    display: none;
  }
}
.topAbout-img-map img {
  width: 100%;
}
.topAbout-img-item {
  margin-top: -35vw;
  text-align: right;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .topAbout-img-item {
    width: 80%;
    margin-inline: auto 0;
  }
}
@media (max-width: 767px) {
  .topAbout-img-item {
    margin-top: 0;
  }
  .topAbout-img-item img {
    width: 100%;
  }
}
.topAbout-text p {
  line-height: 2.6;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .topAbout-text p {
    line-height: 2;
  }
}
@media (max-width: 767px) {
  .topAbout-text p {
    line-height: 1.4;
    font-weight: bold;
  }
}
.topAbout-text p + p {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .topAbout-text p + p {
    margin-top: 20px;
  }
}
.topAbout-more {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .topAbout-more {
    margin-top: 20px;
  }
}

.topBrand {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  background: #000;
}
@media (max-width: 767px) {
  .topBrand {
    gap: 3px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .topBrand-item:nth-child(1) {
    border-top: 3px solid #000;
    grid-column: 1/3;
  }
}
.topBrand-item img {
  width: 100%;
}

.topLineup {
  background: #000;
  color: #fff;
  padding: 50px 0;
}
@media (max-width: 767px) {
  .topLineup {
    padding: 30px 5%;
  }
}
@media (min-width: 768px) {
  .topLineup-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .topLineup-inner {
    max-width: 94%;
  }
}
.topLineup-inner {
  display: grid;
  grid-template: "title text" auto "more text" 1fr/340px auto;
}
@media (max-width: 767px) {
  .topLineup-inner {
    grid-template: "title" "text" "more"/1fr;
  }
}
.topLineup-title {
  grid-area: title;
  font-family: var(--font-jost);
  font-size: 2.25rem;
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .topLineup-title {
    font-size: 6.6vw;
    margin-bottom: 10px;
  }
}
.topLineup-text {
  grid-area: text;
  display: flex;
  align-items: center;
  opacity: 0.7;
}
.topLineup-text p {
  line-height: 2.4;
}
@media (max-width: 767px) {
  .topLineup-text p {
    line-height: 1.4;
  }
}
.topLineup-more {
  grid-area: more;
}
@media (max-width: 767px) {
  .topLineup-more {
    margin-top: 20px;
    text-align: right;
  }
}
.topLineup-more .btn-round::before {
  background: rgba(255, 255, 255, 0.4);
}
.topLineup-more .btn-round {
  border-color: rgba(255, 255, 255, 0.4);
}

.topFactory {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .topFactory {
    padding: 0;
  }
}
@media (min-width: 768px) {
  .topFactory-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .topFactory-inner {
    max-width: 94%;
  }
}
.topFactory-img {
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .topFactory-img {
    aspect-ratio: 1.2;
  }
  .topFactory-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
  }
}
.topFactory-content {
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .topFactory-content {
    flex-direction: column;
    padding: 0 5%;
  }
}
.topFactory-content-title {
  font-family: var(--font-jost);
  font-size: 4.375rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .topFactory-content-title {
    writing-mode: vertical-rl;
  }
}
@media (max-width: 767px) {
  .topFactory-content-title {
    font-size: 6.6vw;
    writing-mode: horizontal-tb;
  }
}
.topFactory-content-lead {
  font-size: 2.4375rem;
  font-weight: bold;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .topFactory-content-lead {
    writing-mode: vertical-rl;
  }
}
@media (max-width: 767px) {
  .topFactory-content-lead {
    font-size: 5vw;
    line-height: 1.4;
  }
}
.topFactory-content-text {
  padding-left: 40px;
  font-size: 0.8125rem;
}
@media (max-width: 767px) {
  .topFactory-content-text {
    padding-left: 0;
  }
}
.topFactory-content-text p {
  line-height: 2.6;
}
@media (max-width: 767px) {
  .topFactory-content-text p {
    line-height: 1.8;
    font-weight: bold;
  }
}
.topFactory-content-text p + p {
  margin-top: 30px;
}
.topFactory-more {
  text-align: right;
  margin-top: 30px;
}
@media (min-width: 980px) {
  .topFactory-more {
    margin-top: -20px;
  }
}
@media (max-width: 767px) {
  .topFactory-more {
    text-align: left;
    margin-left: 5%;
  }
}

.topOem {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .topOem {
    padding-block: 40px 0;
  }
}
.topOem-cloth {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 767px) {
  .topOem-cloth {
    position: static;
  }
}
@media (min-width: 768px) {
  .topOem-cloth img {
    display: block;
    position: absolute;
    top: 30px;
    right: 0;
    max-width: none;
    width: 100%;
  }
}
.topOem-inner {
  position: relative;
  width: 45%;
  margin-inline: auto 0;
  padding-right: 3%;
}
@media (max-width: 767px) {
  .topOem-inner {
    width: 100%;
    padding: 40px 5%;
    background: #e8e8e8;
    margin: 0;
  }
}
.topOem-title {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .topOem-title {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }
}
.topOem-title-main {
  display: block;
  font-family: var(--font-jost);
  font-size: 3.75rem;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1;
}
@media (max-width: 767px) {
  .topOem-title-main {
    font-size: 6.6vw;
    margin-bottom: 0;
  }
}
.topOem-title-sub {
  font-size: 1rem;
}
@media (max-width: 767px) {
  .topOem-title-sub {
    font-weight: bold;
  }
}
.topOem-lead {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .topOem-lead {
    font-size: 5vw;
    line-height: 1.4;
    margin-bottom: 20px;
  }
}
.topOem-text {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .topOem-text {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .topOem-text p {
    line-height: 2.6;
  }
}
@media (min-width: 768px) {
  .topOem-more {
    text-align: right;
  }
}

@media (min-width: 768px) {
  .topStore {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .topStore {
    max-width: 94%;
  }
}
.topStore {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .topStore {
    padding: 40px 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.topStore-imgs {
  display: flex;
  gap: 10px;
}
@media (max-width: 767px) {
  .topStore-imgs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
}
.topStore-imgs-item {
  width: 100%;
}
.topStore-imgs-item img {
  width: 100%;
}
.topStore-more {
  text-align: right;
  margin-top: 40px;
}

.topWestory a {
  display: block;
}
.topWestory a img {
  width: 100%;
}

.topAboutMatsuura {
  background: #f7f6f6;
  padding: 120px 0 40px;
}
@media (max-width: 767px) {
  .topAboutMatsuura {
    padding: 20px 5% 20px;
  }
}
@media (min-width: 768px) {
  .topAboutMatsuura-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .topAboutMatsuura-inner {
    max-width: 94%;
  }
}
.topAboutMatsuura-heading {
  display: flex;
  gap: 70px;
  margin-bottom: 40px;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .topAboutMatsuura-heading {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .topAboutMatsuura-heading {
    flex-direction: column;
    gap: 0;
    padding-bottom: 30px;
    margin-bottom: 0;
    border-bottom: 1px solid #ccc;
  }
}
@media (min-width: 768px) {
  .topAboutMatsuura-heading .title-m {
    white-space: nowrap;
  }
}
.topAboutMatsuura-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 767px) {
  .topAboutMatsuura-content {
    gap: 0;
    grid-template-columns: 1fr;
  }
}
.topAboutMatsuura-more {
  margin-top: 40px;
  text-align: right;
}
@media (max-width: 767px) {
  .topAboutMatsuura-more {
    margin-top: 20px;
    text-align: left;
  }
}

.articleThumb {
  display: block;
  color: #000;
}
@media (max-width: 767px) {
  .articleThumb {
    display: grid;
    grid-template: "img date" auto "img title" 1fr/30% 1fr;
    gap: 0 20px;
    padding: 20px 0;
  }
}
.articleThumb + .articleThumb {
  border-top: 1px solid #ccc;
}
.articleThumb-img {
  grid-area: img;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 0.9;
}
@media (max-width: 767px) {
  .articleThumb-img {
    aspect-ratio: 1;
    border: 1px solid #f2f2f2;
    margin-bottom: 0;
  }
}
.articleThumb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.articleThumb-date {
  grid-area: date;
  margin-bottom: 10px;
  display: block;
  text-align: right;
}
@media (max-width: 767px) {
  .articleThumb-date {
    text-align: left;
  }
}
.articleThumb-title {
  grid-area: title;
  font-weight: bold;
  line-height: 1.6;
  font-size: 0.75rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.topNews {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .topNews {
    padding: 40px 0;
  }
}
.topNews-inner {
  display: grid;
  grid-template: "title contents" auto "more contents" 1fr/340px auto;
  gap: 30px;
}
@media (min-width: 768px) {
  .topNews-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .topNews-inner {
    max-width: 94%;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .topNews-inner {
    grid-template: "title" "contents" "more"/1fr;
  }
}
@media (max-width: 767px) {
  .topNews-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
    grid-template: "title" "contents" "more"/1fr;
    gap: 0;
  }
}
.topNews .title-m {
  grid-area: title;
}
.topNews-contents {
  grid-area: contents;
}
.topNews-more {
  grid-area: more;
  align-self: end;
}
@media (min-width: 768px) and (max-width: 979px) {
  .topNews-more {
    justify-self: end;
  }
}

.newsSect {
  position: relative;
  display: block;
  color: #000;
}
@media (max-width: 767px) {
  .newsSect {
    border-top: 1px solid #Ccc;
    padding: 8px 0;
  }
}
.newsSect + .newsSect {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .newsSect + .newsSect {
    margin-top: 0;
  }
}
.newsSect-date {
  display: block;
  text-align: right;
  font-weight: bold;
  font-size: 0.8125rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .newsSect-date {
    position: absolute;
    top: 10px;
    left: calc(50% - 12vw);
    border-bottom: none;
  }
}
.newsSect-content {
  display: grid;
  grid-template: "img title" auto "img text" 1fr/120px 1fr;
  gap: 0 30px;
}
@media (max-width: 767px) {
  .newsSect-content {
    grid-template: "img title" auto "text text" 1fr/30% 1fr;
    gap: 5px 20px;
    margin-bottom: 30px;
  }
}
.newsSect-content-img {
  grid-area: img;
  width: 120px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .newsSect-content-img {
    width: auto;
  }
}
.newsSect-content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newsSect-content-title {
  grid-area: title;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.6;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .newsSect-content-title {
    margin-top: 10vw;
    font-size: 0.875rem;
    line-height: 1.2;
  }
}
.newsSect-content-excerpt {
  grid-area: text;
  line-height: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.topCompany {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/top/bg-company.jpg) no-repeat center center/cover;
  height: 589px;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .topCompany {
    aspect-ratio: 2;
    height: auto;
  }
}
@media (max-width: 767px) {
  .topCompany {
    aspect-ratio: 1.2;
    height: auto;
  }
}
.topCompany a {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .topCompany-title {
    width: 50%;
  }
}

.factorySummary {
  position: relative;
  padding: 80px 0 60px;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .factorySummary {
    padding-left: 5%;
  }
}
@media (max-width: 767px) {
  .factorySummary {
    padding: 40px 20px;
  }
}
.factorySummary::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../img/common/map-white.png) 140% top/750px no-repeat;
  opacity: 0.5;
  z-index: -1;
}
@media (min-width: 768px) and (max-width: 979px) {
  .factorySummary::after {
    background-position: 40vw top;
  }
}
@media (max-width: 767px) {
  .factorySummary::after {
    background-size: 100%;
    display: none;
  }
}
@media (min-width: 768px) {
  .factorySummary-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .factorySummary-inner {
    max-width: 94%;
  }
}
.factorySummary-inner {
  display: grid;
  grid-template: "title img" auto "text img" 1fr/auto 350px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .factorySummary-inner {
    grid-template: "title" auto "img" auto "text" auto/1fr;
  }
}
@media (max-width: 767px) {
  .factorySummary-inner {
    grid-template: "title" auto "img" auto "text" auto/1fr;
  }
}
.factorySummary-inner {
  gap: 0 40px;
}
.factorySummary-img {
  grid-area: img;
  text-align: left;
  align-self: center;
}
@media (min-width: 768px) and (max-width: 979px) {
  .factorySummary-img {
    text-align: center;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .factorySummary-img {
    margin-bottom: 20px;
  }
}
.factorySummary-title {
  grid-area: title;
  margin-bottom: 40px;
}
.factorySummary-title-sub {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.factorySummary-title-main {
  font-family: var(--font-jost);
  font-size: 2rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .factorySummary-title-main {
    font-size: 1.5rem;
  }
}
.factorySummary-text {
  grid-area: text;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .factorySummary-text {
    font-size: 0.875rem;
  }
}
.factorySummary-text p {
  line-height: 2;
}
.factorySummary-text p + p {
  margin-top: 20px;
}

.factoryKoutei {
  padding: 80px 0;
  background: url(../img/factory/bg-koutei.jpg) center center/cover no-repeat;
}
@media (min-width: 768px) {
  .factoryKoutei-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .factoryKoutei-inner {
    max-width: 94%;
  }
}
.factoryKoutei-inner {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-inline: auto;
  color: #fff;
}
@media (min-width: 768px) and (max-width: 979px) {
  .factoryKoutei-inner {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .factoryKoutei-inner {
    flex-direction: column;
    gap: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.factoryKoutei-desc-subTitle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  margin-bottom: 20px;
}
.factoryKoutei-desc-subTitle::after {
  content: "";
  flex: 1;
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
}
.factoryKoutei-desc-title {
  margin-bottom: 40px;
  font-size: 1.75rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .factoryKoutei-desc-title {
    font-size: 1.375rem;
  }
}
.factoryKoutei-desc-text p {
  line-height: 2;
  font-weight: bold;
  margin-bottom: 20px;
}
.factoryKoutei-desc-text p + p {
  margin-top: 20px;
}
.factoryKoutei-img {
  width: 533px;
  max-width: 50%;
}
@media (min-width: 768px) and (max-width: 979px) {
  .factoryKoutei-img {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .factoryKoutei-img {
    width: 100%;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .factoryKoutei-imgs {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .factoryKoutei-imgs {
    max-width: 94%;
  }
}
.factoryKoutei-imgs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .factoryKoutei-imgs {
    gap: 5px;
    flex-direction: column;
  }
}
.factoryKoutei-more {
  margin-top: 70px;
  text-align: center;
}
@media (max-width: 767px) {
  .factoryKoutei-more {
    padding-inline: 10%;
  }
}
.factoryKoutei-btn {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  background: var(--pointColor);
  height: 135px;
  color: #fff;
  font-size: 1rem;
}
@media (hover: hover) {
  .factoryKoutei-btn:hover {
    background: #1c5687;
    color: #fff;
  }
}
.factoryKoutei-btn-en {
  font-family: var(--font-jost);
  opacity: 0.3;
}
.factoryKoutei-btn-icon {
  width: 33px;
  height: 6px;
  display: block;
  background: url(../img/common/icon-arrow-r-white.svg) no-repeat center center/contain;
}
.factoryKoutei-bn {
  text-align: center;
  margin-top: 40px;
  width: 900px;
  max-width: 100%;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .factoryKoutei-bn {
    width: 90%;
  }
}

.message {
  background: #e8eeee;
}
@media (min-width: 768px) {
  .message-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .message-inner {
    max-width: 94%;
  }
}
.message-inner {
  padding: 80px 0 1px;
  display: grid;
  grid-template: "title text" auto "img text" auto/300px auto;
  gap: 0 15%;
}
@media (max-width: 767px) {
  .message-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
    grid-template: "title" auto "img" auto "text" auto/auto;
    gap: 0;
    padding-block: 40px;
  }
}
.message .title-lm {
  grid-area: title;
  color: #576969;
}
.message .title-lm-main {
  font-size: 1.25rem;
}
.message-img {
  grid-area: img;
  margin-bottom: -40px;
}
@media (max-width: 767px) {
  .message-img {
    margin-bottom: 10px;
  }
}
.message-text {
  grid-area: text;
  margin-top: 30px;
  padding-bottom: 40px;
}
.message-text p {
  line-height: 2;
}
.message-text p + p {
  margin-top: 20px;
}
.message-text-name {
  margin-top: 40px;
}

@media (min-width: 768px) {
  .factoryOverview {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .factoryOverview {
    max-width: 94%;
  }
}
.factoryOverview {
  padding-block: 160px;
}
@media (max-width: 767px) {
  .factoryOverview {
    padding-block: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.factoryOverview-flex {
  display: flex;
}
@media (min-width: 768px) and (max-width: 979px) {
  .factoryOverview-flex {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .factoryOverview-flex {
    flex-direction: column;
    gap: 40px;
  }
}
.factoryOverview .title-lm {
  width: 300px;
}
.factoryOverview-table {
  margin-bottom: 80px;
}
.factoryOverview-table th {
  width: 120px;
}

.factorys {
  display: flex;
  gap: 40px;
  width: 100%;
}
@media (max-width: 767px) {
  .factorys {
    flex-direction: column;
  }
}

.factoryItem {
  width: 100%;
}
.factoryItem-title {
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .factoryItem-title {
    margin-bottom: 10px;
  }
}
.factoryItem-img {
  margin-bottom: 5px;
}
.factoryItem-img img {
  width: 100%;
}
.factoryItem-map {
  margin-bottom: 5px;
}
.factoryItem-map iframe {
  height: 300px;
  width: 100%;
}

.oemSummary {
  padding: 60px 0 100px var(--side);
  background: url(../img/oem/bg-oem.jpg) right top/contain no-repeat;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .oemSummary {
    padding-left: 5%;
  }
}
@media (max-width: 767px) {
  .oemSummary {
    padding: 80vw 5% 80px;
  }
}
.oemSummary-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .oemSummary-title {
    font-size: 1.375rem;
  }
}
.oemSummary-text {
  font-size: 1rem;
  width: 63%;
}
@media (max-width: 767px) {
  .oemSummary-text {
    width: 100%;
  }
}
.oemSummary-text p + p {
  margin-top: 20px;
}

.stepSect {
  background: #e8eeee;
  padding-bottom: 60px;
}
.stepSect:nth-child(even) {
  background: #dbe4e4;
}
.stepSect-inner {
  display: flex;
}
@media (min-width: 768px) {
  .stepSect-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .stepSect-inner {
    max-width: 94%;
  }
}
@media (max-width: 767px) {
  .stepSect-inner {
    flex-direction: column;
    gap: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
@media (min-width: 768px) {
  .is-reverse .stepSect-inner {
    flex-direction: row-reverse;
  }
}
.stepSect-desc {
  flex: 1;
  margin-top: 40px;
}
.stepSect-desc-title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid #000;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .stepSect-desc-title {
    padding-bottom: 8px;
  }
}
@media (min-width: 768px) {
  .is-reverse .stepSect-desc-title {
    padding-inline: 20px 10px;
  }
}
.stepSect-desc-title-num {
  line-height: 1;
  display: inline-block;
  font-size: 7.5rem;
  font-family: var(--font-garamond);
  margin-bottom: -0.15em;
}
@media (max-width: 767px) {
  .stepSect-desc-title-num {
    font-size: 5rem;
  }
}
.stepSect-desc-title-text {
  margin-top: 20px;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .stepSect-desc-title-text {
    font-size: 1.125rem;
  }
}
.stepSect-desc-text {
  padding-inline: 40px;
}
@media (max-width: 767px) {
  .stepSect-desc-text {
    padding: 0;
  }
}
@media (min-width: 768px) {
  .is-reverse .stepSect-desc-text {
    padding-inline: 40px 0;
  }
}
.stepSect-img {
  max-width: 35%;
  width: 382px;
  margin-top: -50px;
}
@media (max-width: 767px) {
  .stepSect-img {
    margin: 0 auto;
    width: 70%;
    max-width: none;
  }
}

@media (min-width: 768px) {
  .manufacturing {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .manufacturing {
    max-width: 94%;
  }
}
.manufacturing {
  padding-block: 140px;
}
@media (max-width: 767px) {
  .manufacturing {
    padding-block: 80px;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.manufacturing-titleArea {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
@media (max-width: 767px) {
  .manufacturing-titleArea {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.manufacturing-titleArea .title-lm {
  width: 300px;
  margin-bottom: 0;
}
.manufacturing-titleArea-text {
  flex: 1;
  font-size: 0.8125rem;
}
.manufacturing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (max-width: 767px) {
  .manufacturing-grid {
    grid-template-columns: 1fr;
  }
}

.manufacturingSect {
  padding-block: 40px;
  border-bottom: 1px solid #000;
}
@media (min-width: 768px) {
  .manufacturingSect:nth-child(odd) {
    padding-right: 60px;
  }
  .manufacturingSect:nth-child(even) {
    border-left: 1px solid #000;
    padding-left: 60px;
  }
}
.manufacturingSect-img {
  width: 100%;
  margin-bottom: 20px;
}
.manufacturingSect-img img {
  width: 100%;
}
.manufacturingSect-title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.orderProcess {
  display: flex;
  gap: 60px;
  padding-bottom: 120px;
}
@media (min-width: 768px) {
  .orderProcess {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .orderProcess {
    max-width: 94%;
  }
}
@media (max-width: 767px) {
  .orderProcess {
    flex-direction: column;
    gap: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
    padding-bottom: 60px;
  }
}
.orderProcess-desc .title-lm {
  margin-bottom: 40px;
}
.orderProcess-desc-text {
  margin-bottom: 40px;
}
.orderProcess-process {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 60%;
}
@media (max-width: 767px) {
  .orderProcess-process {
    width: 100%;
  }
}
.orderProcess-process-item {
  display: flex;
  height: 62px;
  border: 1px solid #bbc5c5;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
.orderProcess-process-item-step {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #bbc5c5;
  color: #fff;
  font-weight: bold;
  font-family: var(--font-roboto);
  width: 110px;
}
.orderProcess-process-item-text {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  padding-inline: 20px;
  font-size: 0.875rem;
}

.orderProcessContact {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.orderProcessContact-row {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 767px) {
  .orderProcessContact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-items: center;
  }
}
.orderProcessContact-row-term {
  font-weight: bold;
  width: 80px;
  min-width: 80px;
}
.orderProcessContact-row-desc {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 767px) {
  .orderProcessContact-row-desc {
    flex-direction: column;
    align-items: flex-start;
  }
}
.orderProcessContact-row-desc .tel {
  font-size: 2.0625rem;
  font-family: var(--font-jost);
}
@media (min-width: 768px) and (max-width: 979px) {
  .orderProcessContact-row-desc .tel {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .orderProcessContact-row-desc .tel {
    font-size: 2rem;
    line-height: 1;
  }
}
.orderProcessContact-row-desc .tel a {
  color: #000;
}
.orderProcessContact-row-desc .businessTime {
  font-size: 0.8125rem;
}
.orderProcessContact-row-desc .btn-shadow {
  width: 100%;
}

.quality {
  background: #f9f8f5;
  padding: 100px 0;
}
@media (max-width: 767px) {
  .quality {
    padding: 60px 0;
  }
}
@media (min-width: 768px) {
  .quality-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .quality-inner {
    max-width: 94%;
  }
}
.quality-inner {
  display: grid;
  grid-template: "title text" auto "img img" auto/300px 1fr;
  gap: 40px 0;
}
@media (max-width: 767px) {
  .quality-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
    grid-template: "title" auto "text" auto "img" auto/1fr;
    gap: 20px 0;
  }
}
.quality-title {
  grid-area: title;
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .quality-title {
    margin-bottom: 0;
    font-size: 1.5rem;
  }
}
.quality-text {
  grid-area: text;
}
.quality-imgs {
  grid-area: img;
  display: grid;
  grid-template: "img1 img2" "img1 img3"/302px 1fr;
  gap: 20px 90px;
  margin-top: 40px;
  width: 740px;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .quality-imgs {
    width: 100%;
    grid-template: "img1" "img2" "img3"/1fr;
    gap: 20px 0;
  }
}
.quality-imgs-item:nth-child(1) {
  grid-area: img1;
}
.quality-imgs-item:nth-child(2) {
  grid-area: img2;
}
.quality-imgs-item:nth-child(3) {
  grid-area: img3;
}
.quality-imgs-item img {
  width: 100%;
  height: auto;
  display: block;
}
.quality-imgs-item-cap {
  font-size: 0.8125rem;
  font-weight: bold;
  margin-top: 10px;
  display: block;
}
.quality-imgs-item-cap a {
  color: #000;
}

.notFoundSect {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .notFoundSect {
    padding-top: 60px;
  }
}
.notFoundSect .title-bold {
  font-size: 1rem;
}

.conceptMessage {
  position: relative;
}
@media (min-width: 768px) {
  .conceptMessage {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .conceptMessage {
    max-width: 94%;
  }
}
.conceptMessage {
  max-width: 1200px;
  padding: 40px 5% 0;
  margin-block: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 70px;
  height: 788px;
  background: url(../img/concept/img-concept.jpg) left center/cover no-repeat;
}
@media (max-width: 767px) {
  .conceptMessage {
    display: block;
    background-position: 0 0;
    background-size: contain;
    padding: 70vw 0 0;
    gap: 24px;
    width: 92%;
    height: auto;
    margin-inline: auto;
  }
}
.conceptMessage-title {
  padding-top: 40px;
  font-size: min(36px, 3vw);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin: 0;
}
@media (max-width: 767px) {
  .conceptMessage-title {
    position: absolute;
    top: 20px;
    left: 5%;
    padding-top: 0;
    font-size: 1.5rem;
  }
}
.conceptMessage-text {
  flex: 1;
  max-width: 560px;
  font-size: 0.875rem;
  line-height: 2;
}
@media (max-width: 767px) {
  .conceptMessage-text {
    max-width: 100%;
    font-weight: bold;
  }
}
.conceptMessage-text p {
  margin: 0;
}
.conceptMessage-text p + p {
  margin-top: 22px;
}

.conceptPoint {
  position: relative;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .conceptPoint {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .conceptPoint {
    max-width: 94%;
  }
}
.conceptPoint {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .conceptPoint {
    width: 92%;
    margin-inline: auto;
  }
}
@media (min-width: 980px) and (max-width: 1099px) {
  .conceptPoint-img {
    width: 60%;
  }
}
.is-reverse .conceptPoint-img {
  margin-left: auto;
}
@media (min-width: 1100px) {
  .is-reverse .conceptPoint-img {
    width: fit-content;
  }
}
@media (max-width: 767px) {
  .conceptPoint-img.is-sp-full {
    width: 110%;
    margin-left: -5%;
  }
}
.conceptPoint-on {
  position: absolute;
  top: 10vw;
  left: 50%;
  padding-right: 5%;
  max-width: 600px;
}
@media (min-width: 980px) and (max-width: 1099px) {
  .conceptPoint-on {
    top: 5vw;
    width: 50%;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .conceptPoint-on {
    position: static;
    padding-inline: 5%;
  }
}
@media (max-width: 767px) {
  .conceptPoint-on {
    position: static;
    margin-top: 30px;
    padding-inline: 0;
  }
}
@media (min-width: 980px) {
  .is-reverse .conceptPoint-on {
    left: 3%;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .conceptPoint-text {
    margin-top: 20px;
  }
}
.conceptPoint-text p {
  line-height: 2;
}
@media (max-width: 767px) {
  .conceptPoint-text p {
    line-height: 1.4;
    font-weight: bold;
  }
}
.conceptPoint-text p + p {
  margin-top: 1.8em;
}
.conceptPoint-lead {
  margin-top: 40px;
  font-size: 2.1875rem;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .conceptPoint-lead {
    position: absolute;
    top: 30vw;
    right: 20px;
    font-size: 1.375rem;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .conceptPoint-lead.is-2 {
    top: 70vw;
    right: auto;
    left: 5%;
  }
}

.eminentOutside {
  gap: 40px 60px;
  margin-block: 40px 80px;
}
.eminentOutside-img {
  grid-area: img;
}
@media (max-width: 767px) {
  .eminentOutside-img {
    aspect-ratio: 1.2;
  }
}
.eminentOutside-img img {
  width: 100%;
}
@media (max-width: 767px) {
  .eminentOutside-img img {
    height: 100%;
    object-fit: cover;
  }
}
.eminentOutside-desc {
  display: grid;
  grid-template: "title text" "more text"/auto 1fr;
  gap: 20px 10%;
}
@media (min-width: 768px) {
  .eminentOutside-desc {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .eminentOutside-desc {
    max-width: 94%;
  }
}
.eminentOutside-desc {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .eminentOutside-desc {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
    grid-template: "title" "text" "more"/1fr;
  }
}
.eminentOutside-desc-title {
  grid-area: title;
  font-size: 1.875rem;
  font-weight: bold;
}
@media (min-width: 768px) and (max-width: 979px) {
  .eminentOutside-desc-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .eminentOutside-desc-title {
    font-size: 1.1875rem;
  }
}
.eminentOutside-desc-text {
  grid-area: text;
}
.eminentOutside-desc-text p {
  line-height: 2;
}
@media (max-width: 767px) {
  .eminentOutside-desc-text p {
    line-height: 1.4;
    font-weight: bold;
  }
}
.eminentOutside-desc-btn {
  grid-area: more;
  margin-top: 20px;
}

.fiveWorld {
  background: #000000;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 5px;
}
.fiveWorld-inner {
  display: grid;
  grid-template: "text title" "text btn"/auto fit-content(100%);
}
@media (min-width: 768px) {
  .fiveWorld-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .fiveWorld-inner {
    max-width: 94%;
  }
}
.fiveWorld-inner {
  padding-bottom: 40px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .fiveWorld-inner {
    grid-template: "title" "text" "btn"/1fr;
  }
}
@media (max-width: 767px) {
  .fiveWorld-inner {
    grid-template: "title" "text" "btn"/1fr;
    padding-inline: 5%;
  }
}
.fiveWorld-title {
  grid-area: title;
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .fiveWorld-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .fiveWorld-title {
    font-size: 1.125rem;
  }
}
.fiveWorld-text {
  grid-area: text;
}
@media (max-width: 767px) {
  .fiveWorld-text {
    font-size: 0.8125rem;
  }
}
.fiveWorld-btn {
  grid-area: btn;
  margin-top: 40px;
  justify-self: end;
}
@media (max-width: 767px) {
  .fiveWorld-btn {
    justify-self: start;
  }
}
.fiveWorld-imgs {
  background: #000;
  grid-area: img;
}
@media (max-width: 767px) {
  .fiveWorld-imgs {
    padding-inline: 10%;
    padding-bottom: 30px;
  }
}
.fiveWorld-imgs-col {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 6px;
}
@media (max-width: 767px) {
  .fiveWorld-imgs-col {
    grid-template-columns: repeat(2, 1fr);
  }
}
.fiveWorld-imgs-item:nth-child(1) {
  grid-column: span 6;
}
@media (max-width: 767px) {
  .fiveWorld-imgs-item:nth-child(1) {
    grid-column: span 2;
  }
}
.fiveWorld-imgs-item:nth-child(2) {
  grid-column: span 6;
}
@media (max-width: 767px) {
  .fiveWorld-imgs-item:nth-child(2) {
    grid-column: span 1;
  }
}
.fiveWorld-imgs-item:nth-child(3) {
  grid-column: span 4;
}
@media (max-width: 767px) {
  .fiveWorld-imgs-item:nth-child(3) {
    grid-column: span 1;
  }
}
.fiveWorld-imgs-item:nth-child(4) {
  grid-column: span 4;
}
@media (max-width: 767px) {
  .fiveWorld-imgs-item:nth-child(4) {
    grid-column: span 1;
  }
}
.fiveWorld-imgs-item:nth-child(5) {
  grid-column: span 4;
}
@media (max-width: 767px) {
  .fiveWorld-imgs-item:nth-child(5) {
    grid-column: span 1;
  }
}
.fiveWorld-imgs img {
  width: 100%;
}
@media (max-width: 767px) {
  .fiveWorld-imgs img {
    height: 100%;
    object-fit: cover;
  }
}

.conceptOem {
  margin-top: 140px;
  margin-bottom: 100px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .conceptOem {
    margin-top: 80px;
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .conceptOem {
    margin-top: 60px;
    margin-bottom: 40px;
  }
}
.conceptOem-imgs {
  display: flex;
}
.conceptOem-imgs-item {
  width: 100%;
}
.conceptOem-imgs-item img {
  width: 100%;
}
@media (min-width: 768px) {
  .conceptOem-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .conceptOem-inner {
    max-width: 94%;
  }
}
.conceptOem-inner {
  margin-top: 40px;
  display: grid;
  grid-template: "text title" "text btn"/55% 1fr;
  gap: 20px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .conceptOem-inner {
    grid-template: "title" "text" "btn"/1fr;
  }
}
@media (max-width: 767px) {
  .conceptOem-inner {
    grid-template: "title" "text" "btn"/1fr;
    gap: 15px;
    padding-inline: 5%;
  }
}
.conceptOem-title {
  grid-area: title;
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: right;
}
@media (max-width: 767px) {
  .conceptOem-title {
    font-size: 1.25rem;
  }
}
.conceptOem-text {
  grid-area: text;
}
.conceptOem-btn {
  grid-area: btn;
  justify-self: end;
}

.messageArea {
  display: grid;
  grid-template: "img title" 0.5fr "img text" 1fr/48% 1fr;
  gap: 0 60px;
  margin-bottom: 80px;
}
@media (min-width: 1100px) {
  .messageArea {
    padding-right: var(--side);
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .messageArea {
    padding-right: 3%;
  }
}
@media (max-width: 767px) {
  .messageArea {
    grid-template: "img" "title" "text"/1fr;
    gap: 0;
    margin-top: 80px;
  }
}
.messageArea-img {
  grid-area: img;
}
@media (max-width: 767px) {
  .messageArea-img {
    margin-bottom: 20px;
  }
}
.messageArea-img img {
  width: 100%;
}
.messageArea-title {
  grid-area: title;
  margin-bottom: 40px;
  align-self: end;
}
@media (max-width: 767px) {
  .messageArea-title {
    margin-bottom: 20px;
    padding-inline: 5%;
  }
}
.messageArea-title-sub {
  position: relative;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.messageArea-title-sub::before {
  content: "-";
  position: absolute;
  left: -1em;
  top: 0.1 0.5em;
}
.messageArea-title-main {
  display: block;
  font-size: min(28px, 2.5vw);
  font-weight: bold;
  line-height: 1.4;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .messageArea-title-main {
    font-size: 1.25rem;
  }
}
.messageArea-text {
  grid-area: text;
}
@media (max-width: 767px) {
  .messageArea-text {
    padding-inline: 5%;
  }
}

.brandSummary {
  padding: 60px 0;
  background: url(../img/brand/img-pants.jpg) right top/contain no-repeat;
}
@media (min-width: 768px) {
  .brandSummary {
    min-height: 540px;
  }
}
@media (min-width: 980px) and (max-width: 1099px) {
  .brandSummary {
    background-position: 130% 0;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .brandSummary {
    padding-bottom: 480px;
    padding-inline: 5%;
    background-position: center bottom;
  }
}
@media (max-width: 767px) {
  .brandSummary {
    padding-bottom: 90vw;
    background-position: center bottom;
  }
}
@media (min-width: 1100px) {
  .brandSummary-inner {
    padding-right: 600px;
    margin-left: var(--side);
  }
}
@media (min-width: 980px) and (max-width: 1099px) {
  .brandSummary-inner {
    padding-left: 5%;
    width: 50%;
  }
}
@media (max-width: 767px) {
  .brandSummary-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.brandSummary-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .brandSummary-title {
    font-size: 1.75rem;
  }
}
@media (max-width: 767px) {
  .brandSummary-title {
    font-size: 1.5rem;
  }
}
.brandSummary-text {
  font-size: 1rem;
}

.designSection {
  margin-bottom: 80px;
}
.designSection-img {
  margin-bottom: 60px;
}
.designSection-img img {
  width: 100%;
}
.designSection-desc {
  display: flex;
  justify-content: center;
  gap: 100px;
  max-width: 1000px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .designSection-desc {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .designSection-desc {
    max-width: 94%;
  }
}
@media (max-width: 767px) {
  .designSection-desc {
    flex-direction: column;
    gap: 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.designSection-desc-title {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 20px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .designSection-desc-title {
    font-size: 1.75rem;
    white-space: normal;
  }
}
.designSection-desc-text {
  flex: 1;
}

.ourBrands {
  position: relative;
  background: #000;
  color: #fff;
  padding-block: 80px 120px;
}
.ourBrands-title {
  font-family: var(--font-jost);
  font-weight: bold;
  position: absolute;
  right: 0;
  top: -30px;
  color: rgba(255, 255, 255, 0.15);
  font-size: 7.8125rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .ourBrands-title {
    font-size: 3.75rem;
    top: 0;
  }
}
@media (min-width: 768px) {
  .ourBrands-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .ourBrands-inner {
    max-width: 94%;
  }
}
.ourBrands-subtitle {
  text-align: right;
  margin-top: 20px;
  margin-bottom: 80px;
  font-size: 1.4375rem;
}
@media (max-width: 767px) {
  .ourBrands-subtitle {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
    margin-bottom: 40px;
  }
}

.ourBrandsSect {
  color: rgba(255, 255, 255, 0.7);
}
.ourBrandsSect + .ourBrandsSect {
  margin-top: 160px;
}
@media (max-width: 767px) {
  .ourBrandsSect + .ourBrandsSect {
    margin-top: 80px;
  }
}
.ourBrandsSect-mv {
  margin-bottom: 60px;
}
.ourBrandsSect-desc {
  display: grid;
  grid-template: "left title" "left text"/auto 1fr;
}
@media (max-width: 767px) {
  .ourBrandsSect-desc {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
    grid-template: "title" "left" "text"/1fr;
    gap: 20px;
  }
}
.ourBrandsSect-desc-l {
  grid-area: left;
  padding-right: 80px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  margin-right: 80px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .ourBrandsSect-desc-l {
    padding-right: 40px;
    margin-right: 40px;
  }
}
@media (max-width: 767px) {
  .ourBrandsSect-desc-l {
    border-right: 0;
    padding-right: 0;
    margin-right: 0;
  }
}
.ourBrandsSect-desc-l-mark {
  text-align: center;
  margin: 0 auto 20px;
}
.ourBrandsSect-desc-l-cap {
  text-align: center;
}
.ourBrandsSect-desc-title {
  grid-area: title;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.8;
}

.directorMsg {
  background: url(../img/brand/bg-director.jpg) center center/cover no-repeat;
  color: #fff;
  padding: 140px 0;
}
@media (max-width: 767px) {
  .directorMsg {
    padding: 60px 0;
  }
}
.directorMsg-inner {
  display: grid;
  grid-template: "title box" auto "text box" 1fr/1fr 360px;
  gap: 0 10%;
}
@media (min-width: 768px) {
  .directorMsg-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .directorMsg-inner {
    max-width: 94%;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .directorMsg-inner {
    grid-template: "title box" auto "text box" 1fr/1fr 40%;
    gap: 0 40px;
  }
}
@media (max-width: 767px) {
  .directorMsg-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
    grid-template: "title" "box" "text"/1fr;
    gap: 0px;
  }
}
.directorMsg-title {
  grid-area: title;
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 40px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .directorMsg-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .directorMsg-title {
    font-size: 1.25rem;
  }
}
.directorMsg-text {
  grid-area: text;
  line-height: 2;
}

.directorBox {
  grid-area: box;
}
@media (max-width: 767px) {
  .directorBox {
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2156862745);
    padding-bottom: 40px;
  }
}
.directorBox-img {
  margin-bottom: 20px;
}
.directorBox-name {
  font-weight: bold;
  margin-bottom: 20px;
}
.directorBox-name-main {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  margin-top: 4px;
}
.directorBox-text {
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .flowSummary {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .flowSummary {
    max-width: 94%;
  }
}
.flowSummary {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .flowSummary {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.flowSummary-title-sub {
  color: #576969;
  font-size: 1.25rem;
  font-family: var(--font-roboto);
  font-weight: 500;
}
@media (max-width: 767px) {
  .flowSummary-title-sub {
    font-size: 1rem;
  }
}
.flowSummary-title-main {
  font-size: 1.75rem;
  display: block;
  font-weight: 600;
}
@media (max-width: 767px) {
  .flowSummary-title-main {
    font-size: 1.5rem;
  }
}
.flowSummary-contents {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .flowSummary-contents {
    flex-direction: column;
  }
}
.flowSummary-contents-lead {
  font-size: 1.125rem;
  line-height: 1.8;
}
.flowSummary-contents-text {
  flex: 1;
}

@media (min-width: 768px) {
  .kouteihyou {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .kouteihyou {
    max-width: 94%;
  }
}
.kouteihyou {
  text-align: right;
}
.kouteihyou .btn-pdf {
  width: 250px;
  height: 50px;
  border-radius: 4px 4px 0 0;
}
.processListWrap + .processNavi + .kouteihyou, .combiSect + .processNavi + .kouteihyou {
  margin-bottom: 60px;
}
.processListWrap + .processNavi + .kouteihyou .btn-pdf, .combiSect + .processNavi + .kouteihyou .btn-pdf {
  border-radius: 0 0 4px 4px;
}

.flowChart {
  background: #e8eeee;
}
.flowChart-inner {
  display: flex;
}
@media (min-width: 768px) {
  .flowChart-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .flowChart-inner {
    max-width: 94%;
  }
}
.flowChart-inner {
  padding: 60px 0;
  gap: 80px;
}
@media (max-width: 767px) {
  .flowChart-inner {
    flex-direction: column;
    gap: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.flowChart-dl {
  text-align: center;
}
.flowChart-dl-img {
  width: fit-content;
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.1);
  margin: 0 auto 20px;
}
.flowChart-dl .btn-pdf {
  width: 100%;
}

.processArea {
  margin-bottom: 80px;
}
.processArea-mv img {
  width: 100%;
}

.processNavi {
  border-top: 1px solid #000;
}
@media (min-width: 768px) {
  .processNavi {
    border-bottom: 1px solid #000;
  }
}
@media (min-width: 768px) {
  .processNavi-ul {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .processNavi-ul {
    max-width: 94%;
  }
}
.processNavi-ul {
  display: flex;
}
@media (min-width: 768px) {
  .processNavi-ul {
    border-left: 1px solid #000;
    border-right: 1px solid #000;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .processNavi-ul {
    width: 100%;
    max-width: 100%;
    border: none;
  }
}
@media (max-width: 767px) {
  .processNavi-ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.processNavi-ul-li {
  position: relative;
  width: 100%;
  height: 77px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .processNavi-ul-li {
    height: 50px;
    border-bottom: 1px solid #000;
  }
}
@media (min-width: 768px) {
  .processNavi-ul-li + .processNavi-ul-li {
    border-left: 1px solid #000;
  }
}
@media (max-width: 767px) {
  .processNavi-ul-li:nth-child(even) {
    border-left: 1px solid #000;
  }
}
@media (max-width: 767px) {
  .processNavi-ul-li:last-child {
    grid-column: span 2;
  }
}
.processNavi-ul-li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 10px;
  color: var(--fontColor);
}
.processNavi-ul-li a::after {
  content: "";
  position: absolute;
  top: calc(50% + 12px);
  left: calc(50% - 4px);
  display: inline-block;
  width: 8px;
  height: 6px;
  margin-top: 8px;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  background: #000;
}
@media (max-width: 767px) {
  .processNavi-ul-li a::after {
    left: auto;
    right: 5px;
    top: calc(50% - 3px);
    margin-top: 0;
  }
}
@media (hover: hover) {
  .processNavi-ul-li a:hover {
    background: #e8eeee;
  }
}
.processNavi-ul-li.is-current a {
  background: #e8eeee;
}

@media (min-width: 768px) {
  .processSect {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .processSect {
    max-width: 94%;
  }
}
.processSect {
  padding-top: 120px;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .processSect {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
    padding-top: 40px;
  }
}
.processSect-heading {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .processSect-heading {
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
  }
}
.processSect-heading-text {
  max-width: 80%;
}

.processItem {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.4588235294);
}
.processItem + .processItem {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .processItem + .processItem {
    margin-top: 40px;
  }
}
.processItem::before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.4588235294);
}
.processItem-inner {
  position: relative;
  background: #fff;
}
.processItem-title {
  background: #61b8d5;
  color: #fff;
  padding: 15px;
}
.processItem-title.is-green {
  background: #46ceb6;
}
.processItem-title.is-sky {
  background: #6198d5;
}
.processItem-title-pre {
  font-size: 0.9375rem;
  font-family: var(--font-roboto);
}
.processItem-title-text {
  font-size: 1.125rem;
  font-weight: bold;
  margin-left: 30px;
}
.processItem-cont {
  padding: 50px 30px 30px;
}
@media (max-width: 767px) {
  .processItem-cont {
    padding: 30px 20px 20px;
  }
}
.processItem-cont.is-col {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 767px) {
  .processItem-cont.is-col {
    flex-direction: column;
  }
}
.processItem-cont-text {
  margin-bottom: 30px;
}
.is-col .processItem-cont-text {
  flex: 1;
}
.processItem-cont-imgs {
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .processItem-cont-imgs {
    flex-direction: column;
  }
}
.is-col .processItem-cont-imgs {
  width: 45%;
}
.processItem-cont-imgs figcaption {
  display: block;
  margin-top: 5px;
}

.flowDesc {
  display: grid;
  grid-template: "title img" "text img"/1fr 533px;
  padding-block: 100px 0;
  gap: 0 40px;
}
@media (min-width: 768px) {
  .flowDesc {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .flowDesc {
    max-width: 94%;
  }
}
.flowDesc {
  margin-bottom: 120px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .flowDesc {
    padding-block: 60px 0;
    grid-template: "title title" "text img"/0.8fr 1.2fr;
  }
}
@media (max-width: 767px) {
  .flowDesc {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
    grid-template: "title" "img" "text"/1fr;
    padding-block: 40px 0;
    margin-bottom: 60px;
  }
}
.flowDesc .title-underline {
  margin-bottom: 40px;
}
.flowDesc-text {
  grid-area: text;
}
.flowDesc-chart {
  grid-area: img;
}
@media (max-width: 767px) {
  .flowDesc-chart {
    margin-bottom: 30px;
  }
}

.processListWrap {
  display: flex;
  gap: 60px;
}
@media (min-width: 768px) {
  .processListWrap {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .processListWrap {
    max-width: 94%;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .processListWrap {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .processListWrap {
    flex-direction: column;
    gap: 60px;
  }
}

@media (min-width: 768px) {
  .processSide {
    position: sticky;
    top: 120px;
    width: 235px;
    height: calc(100vh - 120px);
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    overflow: scroll;
    -ms-overflow-style: none; /* IE, Edge 対応 */
    scrollbar-width: none; /* Firefox 対応 */
  }
  .processSide::-webkit-scrollbar { /* Chrome, Safari 対応 */
    display: none;
  }
}
@media (max-width: 767px) {
  .processSide {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.processList-title {
  border-bottom: 1px solid #000;
  padding: 10px;
  text-align: center;
}
.processList-main {
  padding: 40px 0 40px 10px;
}
@media (max-width: 767px) {
  .processList-main {
    padding: 20px 0;
  }
}
.processList-main-ul-li {
  position: relative;
}
.processList-main-ul-li + .processList-main-ul-li {
  margin-top: 20px;
}
.processList-main-ul-li a {
  display: flex;
  color: var(--fontColor);
}
.processList-main-ul-li a::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 10px;
  top: calc(50% - 1px);
  width: 12px;
  height: 6px;
  background: url(../img/common/icon-arrow-r-small.png) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .processList-main-ul-li a::after {
    transform: rotate(90deg);
  }
}
@media (hover: hover) {
  .processList-main-ul-li a:hover {
    color: var(--themeColor);
  }
}
.processList-main-ul-li .num {
  display: inline-block;
  margin-top: 3px;
  color: #2d75b6;
  font-family: var(--font-roboto);
  margin-right: 15px;
  font-size: 0.625rem;
  font-weight: bold;
}
.is-pink .processList-main-ul-li .num {
  color: #f17694;
}
.is-yellow .processList-main-ul-li .num {
  color: #EDB942;
}
.is-purple .processList-main-ul-li .num {
  color: #C17DB8;
}

.processParts {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .processParts {
    margin-top: 40px;
  }
}
.processParts-title {
  padding-bottom: 8px;
  border-bottom: 1px solid #000;
}
.processParts-ul {
  margin-block: 30px;
}
.processParts-ul-li {
  text-indent: -0.5em;
  padding-left: 1em;
}
.processParts-ul-li + .processParts-ul-li {
  margin-top: 10px;
}
.processParts-ul-li a {
  position: relative;
  display: block;
  color: var(--fontColor);
}
.processParts-ul-li a::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 10px;
  top: calc(50% - 1px);
  width: 12px;
  height: 6px;
  background: url(../img/common/icon-arrow-r-small.png) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .processParts-ul-li a::after {
    transform: rotate(90deg);
  }
}

.processMain {
  flex: 1;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .processMain {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}

.processBox + .processBox {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .processBox + .processBox {
    margin-top: 40px;
  }
}
.processBox-title {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  display: flex;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .processBox-title {
    margin-bottom: 20px;
  }
}
.processBox-title .num {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2d75b6;
  color: #fff;
  width: 102px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .processBox-title .num {
    font-size: 0.6875rem;
    width: 70px;
  }
}
.is-pink .processBox-title .num {
  background: #f17694;
}
.is-yellow .processBox-title .num {
  background: #EDB942;
}
.is-purple .processBox-title .num {
  background: #C17DB8;
}
.processBox-title .text {
  padding: 15px;
  font-size: 1.125rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .processBox-title .text {
    font-size: 0.9375rem;
    padding: 10px;
  }
}
.processBox-desc {
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .processBox-desc {
    flex-direction: column;
  }
}
.processBox-desc:has(.processBox-desc-col) {
  flex-wrap: wrap;
}
.processBox-desc-img {
  max-width: 46%;
}
@media (max-width: 767px) {
  .processBox-desc-img {
    max-width: 100%;
  }
}
.processBox-desc-col .processBox-desc-img {
  max-width: 49%;
}
@media (max-width: 767px) {
  .processBox-desc-col .processBox-desc-img {
    max-width: 100%;
  }
}
.processBox-desc-img img {
  width: 100%;
}
.processBox-desc-text {
  flex: 1;
  font-size: 0.8125rem;
}
.processBox-desc-col {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 767px) {
  .processBox-desc-col {
    flex-direction: column;
  }
}

@media (min-width: 768px) {
  .combiSect {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .combiSect {
    max-width: 94%;
  }
}
.combiSect + .combiSect {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .combiSect + .combiSect {
    margin-top: 60px;
  }
}
.combiSect .title-underline-s {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .combiSect .title-underline-s {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}

.storeSummary {
  display: grid;
  grid-template: "lead img" auto "text img" 1fr/1fr 422px;
}
@media (min-width: 768px) {
  .storeSummary {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .storeSummary {
    max-width: 94%;
  }
}
.storeSummary {
  margin-block: 50px 70px;
  gap: 0 40px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .storeSummary {
    grid-template: "lead img" auto "text img" 1fr/1fr 50%;
  }
}
@media (max-width: 767px) {
  .storeSummary {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
    grid-template: "lead" "img" "text"/1fr;
    gap: 0;
  }
}
.storeSummary-lead {
  grid-area: lead;
  font-size: min(32px, 2.5vw);
  font-weight: bold;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .storeSummary-lead {
    font-size: 1.25rem;
  }
}
.storeSummary-text {
  grid-area: text;
  font-size: 1rem;
}
.storeSummary-text p {
  line-height: 2;
}
.storeSummary-img {
  grid-area: img;
}
@media (max-width: 767px) {
  .storeSummary-img {
    margin-bottom: 40px;
  }
}

.orderArea {
  background: url(../img/store/bg-order.jpg) no-repeat center/cover;
  color: #fff;
  padding: 80px 0;
}

.orderSummary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 40px;
}
@media (min-width: 768px) {
  .orderSummary {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .orderSummary {
    max-width: 94%;
  }
}
@media (max-width: 767px) {
  .orderSummary {
    flex-direction: column;
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
@media (max-width: 767px) {
  .orderSummary-title {
    margin-bottom: 30px;
  }
}
.orderSummary-title-en {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: var(--font-roboto);
}
.orderSummary-title-main {
  font-size: min(25px, 2.3vw);
  display: block;
  font-weight: bold;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .orderSummary-title-main {
    font-size: 1.125rem;
    white-space: normal;
  }
}
.orderSummary-title-sub {
  display: block;
  margin-top: 5px;
}
.orderSummary-text {
  font-weight: bold;
  flex: 1;
}

.orderSectionWrap {
  display: flex;
  padding: 40px 0;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .orderSectionWrap {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .orderSectionWrap {
    max-width: 94%;
  }
}
.orderSectionWrap {
  gap: 80px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .orderSectionWrap {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .orderSectionWrap {
    flex-direction: column;
    gap: 60px;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}

.orderSection {
  width: 100%;
}
.orderSection-img {
  margin-bottom: 20px;
}

.orderCta {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background: var(--bgColor);
  padding: 60px 0;
  text-align: center;
}

.storeList {
  position: relative;
  margin-block: 80px;
}
@media (min-width: 768px) {
  .storeList {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .storeList {
    max-width: 94%;
  }
}
@media (max-width: 767px) {
  .storeList {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  .storeList .title-lm {
    margin-bottom: 40px;
  }
}

.storeListHanrei {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 767px) {
  .storeListHanrei {
    position: static;
    margin-bottom: 30px;
  }
}
.storeListHanrei-ul {
  display: flex;
  gap: 40px;
}
@media (max-width: 767px) {
  .storeListHanrei-ul {
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 20px;
    font-size: 0.6875rem;
  }
}
.storeListHanrei-ul-li {
  display: flex;
  align-items: center;
}
.storeListHanrei-ul-li::before {
  content: "●";
  display: block;
  margin-right: 4px;
}
.storeListHanrei-ul-li.is-brown::before {
  color: #b14604;
}
.storeListHanrei-ul-li.is-yellow::before {
  color: #bfb602;
}
.storeListHanrei-ul-li.is-green::before {
  color: #46afb0;
}
.storeListHanrei-ul-li.is-pink::before {
  color: #e138cd;
}
.storeListHanrei-text {
  text-align: right;
  font-size: 0.75rem;
  margin-top: 8px;
}

.storeListDl-item + .storeListDl-item {
  margin-top: 50px;
}
.storeListDl-item-dt {
  position: relative;
  width: 160px;
  height: fit-content;
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .storeListDl-item-dt {
    font-weight: bold;
  }
}
.storeListDl-item-dt::after {
  content: "";
  width: 30px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4901960784);
}
.storeListDl-item-dd {
  flex: 1;
}

.storeListRow-li {
  display: flex;
  background: #f5f4f2;
  padding: 6px 20px;
  font-family: var(--font-jost);
  gap: 20px;
}
@media (max-width: 767px) {
  .storeListRow-li {
    flex-direction: column;
    gap: 5px;
    padding: 10px 15px;
  }
}
.storeListRow-li + .storeListRow-li {
  margin-top: 10px;
}
.storeListRow-li-name {
  width: 23%;
}
@media (max-width: 767px) {
  .storeListRow-li-name {
    width: 100%;
    font-weight: bold;
  }
}
.storeListRow-li-addr {
  flex: 1;
  line-height: 1.6;
}
.storeListRow-li-mark {
  display: flex;
  gap: 5px;
  justify-content: end;
  align-items: center;
}
.storeListRow-li-mark-item::before {
  content: "●";
  display: block;
}
.storeListRow-li-mark-item.is-brown::before {
  color: #b14604;
}
.storeListRow-li-mark-item.is-green::before {
  color: #46afb0;
}
.storeListRow-li-mark-item.is-yellow::before {
  color: #bfb602;
}
.storeListRow-li-mark-item.is-pink::before {
  color: #e138cd;
}

.companySummary {
  display: flex;
  align-items: center;
  gap: 0 80px;
  margin-top: 20px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .companySummary {
    gap: 40px;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .companySummary {
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
    gap: 20px;
  }
}
.companySummary-img {
  width: 45%;
}
@media (min-width: 768px) and (max-width: 979px) {
  .companySummary-img {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .companySummary-img {
    width: 100%;
  }
}
.companySummary-text {
  font-size: 1rem;
}

@media (min-width: 768px) {
  .companyMsg {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .companyMsg {
    max-width: 94%;
  }
}
.companyMsg {
  margin-block: 80px;
  display: grid;
  grid-template: "title img" auto "text img" 1fr/1fr 465px;
  gap: 0 40px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .companyMsg {
    grid-template: "title title" auto "text img" 1fr/1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .companyMsg {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
    grid-template: "title" auto "img" auto "text" 1fr/1fr;
    gap: 0 20px;
    margin-block: 60px;
  }
}
.companyMsg-img {
  grid-area: img;
}
@media (max-width: 767px) {
  .companyMsg-img {
    margin-bottom: 40px;
  }
}
.companyMsg-text {
  grid-area: text;
}
.companyMsg-text-name {
  margin-top: 40px;
}
.companyMsg-text-name .text-l {
  display: inline-block;
  margin-left: 20px;
}
.companyMsg .title-lm {
  grid-area: title;
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  .companyOutline {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .companyOutline {
    max-width: 94%;
  }
}
.companyOutline {
  padding-block: 80px;
}
@media (max-width: 767px) {
  .companyOutline {
    padding-block: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}

.companyFlex {
  display: flex;
  gap: 0 30px;
}
@media (max-width: 767px) {
  .companyFlex {
    flex-direction: column;
  }
}
.companyFlex + .companyFlex {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .companyFlex + .companyFlex {
    margin-top: 60px;
  }
}
@media (min-width: 768px) {
  .companyFlex .title-underline-s, .companyFlex .title-lm {
    width: 30%;
  }
}
.companyFlex-main {
  flex: 1;
}
.companyFlex-main table {
  width: 100%;
}
.companyFlex-main table th, .companyFlex-main table td {
  font-family: var(--font-jost);
}
.companyFlex-main table th {
  width: 120px;
}
@media (max-width: 767px) {
  .companyFlex-main table th {
    width: 100px;
  }
}

.companyPos-wrap {
  display: flex;
  gap: 30px;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .companyPos-wrap {
    flex-direction: column;
    gap: 40px 0;
  }
}

.companyPos-name {
  display: block;
  margin-bottom: 10px;
}
.companyPos-map {
  margin-top: 5px;
}
.companyPos-map iframe {
  width: 100%;
  height: 200px;
}
.companyPos-text p {
  line-height: 1.6;
}

@media (min-width: 768px) {
  .companyHistory {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .companyHistory {
    max-width: 94%;
  }
}
.companyHistory {
  padding-block: 80px;
}
@media (max-width: 767px) {
  .companyHistory {
    padding-block: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}

.historyDl-item {
  display: flex;
  background: #f9f8f1;
  padding: 10px;
  font-family: var(--font-jost);
}
@media (max-width: 767px) {
  .historyDl-item {
    flex-direction: column;
    gap: 5px;
    padding: 10px;
  }
}
.historyDl-item + .historyDl-item {
  margin-top: 10px;
}
.historyDl-item-dt {
  display: flex;
  font-weight: 500;
}
.historyDl-item-dt-m {
  display: block;
  width: 90px;
}
@media (max-width: 767px) {
  .historyDl-item-dt-m {
    width: 80px;
  }
}
.historyDl-item-dt-y {
  display: inline-block;
  width: 100px;
  font-size: 0.8125rem;
}
@media (max-width: 767px) {
  .historyDl-item-dt-y {
    flex: 1;
    font-size: 0.75rem;
  }
}
.historyDl-item-dd {
  flex: 1;
}
@media (max-width: 767px) {
  .historyDl-item-dd {
    margin-top: 5px;
  }
}

.historyPhotos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .historyPhotos {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
}
.historyPhotos-item-img {
  margin-bottom: 10px;
}
.historyPhotos-item-text {
  font-size: 0.75rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .westorySummary {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .westorySummary {
    max-width: 94%;
  }
}
@media (max-width: 767px) {
  .westorySummary {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.westorySummary-logo {
  width: 297px;
  padding-block: 60px;
  margin: 0 auto 60px;
}
@media (max-width: 767px) {
  .westorySummary-logo {
    width: 70%;
    margin-bottom: 0px;
    padding: 60px 0;
  }
}
.westorySummary-lead {
  margin-bottom: 40px;
  font-weight: bold;
  font-size: 1.25rem;
  text-align: center;
}
@media (max-width: 767px) {
  .westorySummary-lead {
    font-size: 1.125rem;
    margin-bottom: 30px;
  }
}
.westorySummary-text {
  text-align: center;
}
@media (max-width: 979px) {
  .westorySummary-text {
    text-align: left;
  }
}
.westorySummary-text em {
  color: #b71515;
  font-weight: bold;
}

.companyCard-wrap {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  border-top: 1px solid #000;
}
@media (max-width: 767px) {
  .companyCard-wrap {
    flex-direction: column;
    margin-top: 30px;
  }
}

.companyCard {
  width: calc(var(--w) / 3 + 4%);
  padding: 60px 3%;
}
@media (max-width: 767px) {
  .companyCard {
    width: 100%;
    padding: 40px 5%;
  }
}
.companyCard + .companyCard {
  border-left: 1px solid #000;
}
@media (max-width: 767px) {
  .companyCard + .companyCard {
    border-left: none;
    border-top: 1px solid #000;
  }
}
.companyCard-logo {
  margin-bottom: 30px;
  text-align: center;
}
.companyCard-title {
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.125rem;
  font-weight: bold;
}
.companyCard-tag {
  border: 1px solid #000;
  width: fit-content;
  padding: 3px 10px 4px;
  line-height: 1;
  margin: 0 auto 20px;
}
.companyCard-text p {
  line-height: 1.7;
}

.collabo {
  background: #f6f6f6;
  border-top: 1px solid #000;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .collabo {
    padding: 40px 0;
  }
}
.collabo-inner {
  display: flex;
  justify-content: center;
  gap: 8%;
}
@media (min-width: 768px) {
  .collabo-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .collabo-inner {
    max-width: 94%;
  }
}
@media (max-width: 767px) {
  .collabo-inner {
    flex-direction: column;
    gap: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}

.collaboSect {
  display: grid;
  grid-template: "logo title" auto "text text" auto "img img" 1fr/152px 1fr;
  gap: 20px 30px;
}
@media (max-width: 767px) {
  .collaboSect {
    grid-template: "logo" auto "title" auto "text" auto "img" 1fr/1fr;
  }
}
.collaboSect-logo {
  grid-area: logo;
}
@media (max-width: 767px) {
  .collaboSect-logo {
    text-align: center;
  }
}
.collaboSect-title {
  grid-area: title;
  align-self: end;
}
.collaboSect-title .en {
  font-size: 1rem;
  font-weight: bold;
  display: block;
}
.collaboSect-title .text {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 5px;
}
.collaboSect-text {
  grid-area: text;
}
.collaboSect-img {
  grid-area: img;
  width: 100%;
}

.westoryBn {
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid #000;
}
@media (max-width: 767px) {
  .westoryBn {
    padding: 60px 5%;
  }
}

@media (min-width: 768px) {
  .postsContainer {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .postsContainer {
    max-width: 94%;
  }
}
.postsContainer {
  display: flex;
  gap: 0 60px;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .postsContainer {
    flex-direction: column;
    gap: 0 0;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.postsContainer-main {
  flex: 1;
}
.postsContainer-main .title-underline {
  margin-bottom: 40px;
}
.postsContainer-side {
  width: 285px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .postsContainer-side {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .postsContainer-side {
    width: 100%;
    margin-top: 80px;
  }
}
.postsContainer-btn {
  text-align: center;
  margin-top: 40px;
}

.postItem {
  display: flex;
  align-items: center;
  gap: 0 40px;
  color: #000;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .postItem {
    gap: 0 20px;
  }
}
@media (max-width: 767px) {
  .postItem {
    align-items: start;
    gap: 0 20px;
  }
}
.postItem {
  padding: 40px 0;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 767px) {
  .postItem {
    padding: 20px 0;
  }
}
.postItem:first-child {
  padding-top: 0;
}
.postItem a {
  color: #000;
}
.postItem-img {
  width: 160px;
  max-width: 30%;
  aspect-ratio: 1;
}
.postItem-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.postItem-desc {
  flex: 1;
}
.postItem-desc-heading {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .postItem-desc-heading {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .postItem-desc-heading {
    gap: 0 10px;
    margin-bottom: 5px;
  }
}
.postItem-desc-heading-date {
  font-size: 0.875rem;
}
@media (max-width: 767px) {
  .postItem-desc-heading-date {
    white-space: nowrap;
    font-size: 0.625rem;
  }
}
.postItem-desc-heading-cate-item {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 4px;
  background: #000;
  color: #fff;
  font-size: 0.75rem;
}
@media (max-width: 767px) {
  .postItem-desc-heading-cate-item {
    padding: 2px 8px;
    font-size: 0.625rem;
  }
}
.postItem-desc-title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 12px;
  text-decoration: underline;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .postItem-desc-title {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .postItem-desc-title {
    font-size: 0.875rem;
    margin-bottom: 8px;
  }
}
.postItem-desc-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media (max-width: 767px) {
  .postItem-desc-text {
    font-size: 0.625rem;
  }
}

.asideArticles + .asideArticles {
  margin-top: 60px;
}
.asideArticles-title {
  margin-bottom: 25px;
  height: 40px;
  display: flex;
  align-items: center;
  border: 1px solid #000;
  border-left: 3px solid #000;
  padding-left: 10px;
}

.articleLinkItem {
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.articleLinkItem:first-child {
  padding-top: 0;
}
.articleLinkItem a {
  display: flex;
  gap: 20px;
  color: var(--fontColor);
}
.articleLinkItem-img {
  width: 80px;
  aspect-ratio: 1;
}
.articleLinkItem-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.articleLinkItem-desc {
  flex: 1;
}
.articleLinkItem-desc-date {
  display: block;
  margin-bottom: 5px;
  font-size: 0.75rem;
  margin-bottom: 5px;
}
.articleLinkItem-desc-title {
  font-size: 0.875rem;
  font-weight: bold;
}
@media (min-width: 768px) and (max-width: 979px) {
  .articleLinkItem-desc-title {
    font-size: 0.75rem;
  }
}

.cateSideList-li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.cateSideList-li a {
  display: block;
  padding: 10px;
  color: var(--fontColor);
}
@media (hover: hover) {
  .cateSideList-li a:hover {
    background: rgba(0, 0, 0, 0.05);
  }
}
.cateSideList-li > ul {
  padding-left: 1em;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}
.cateSideList-li > ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.cateSideList-li > ul li:last-child {
  border-bottom: none;
}
.cateSideList-li > ul li a::before {
  content: "-";
  display: inline-block;
  margin-right: 5px;
}

.article-heading {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}
.article-heading-date {
  color: #576969;
  font-size: 1rem;
  font-family: var(--font-roboto);
  font-weight: 500;
}
@media (max-width: 767px) {
  .article-heading-date {
    font-size: 0.875rem;
    margin-bottom: 8px;
  }
}
.article-heading-cate-item {
  display: inline-block;
  margin-bottom: 4px;
  padding: 4px 12px;
  background: #000;
  color: #fff;
  font-size: 0.75rem;
}
@media (max-width: 767px) {
  .article-heading-cate-item {
    padding: 2px 8px;
    font-size: 0.625rem;
  }
}

.articleMain-title {
  font-size: 1.5rem;
  font-weight: bold;
  padding-bottom: 10px;
  margin-bottom: 40px;
  border-bottom: 1px solid #000;
}
@media (max-width: 767px) {
  .articleMain-title {
    font-size: 1.125rem;
    margin-bottom: 15px;
  }
}

@media (min-width: 768px) {
  .contactContents {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .contactContents {
    max-width: 94%;
  }
}
.contactContents {
  background: #f8f8f8;
  padding: 80px 5% 40px;
  margin-bottom: 100px;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .contactContents {
    margin-top: 40px;
    padding: 40px 5% 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}

.contactTable {
  margin-bottom: 40px;
}
.contactTable th {
  width: 25%;
}
@media (min-width: 768px) and (max-width: 979px) {
  .contactTable th {
    padding: 15px;
    width: 30%;
  }
}
@media (max-width: 767px) {
  .contactTable th {
    width: 100%;
  }
}
.contactTable .titleicon {
  float: left;
  display: block;
  margin-right: 10px;
  padding: 2px 10px;
  border-radius: 2px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .contactTable .titleicon {
    line-height: 1.2;
  }
}
.contactTable .titleicon.is-hissu {
  background: #c93030;
}
.contactTable .titleicon.is-nini {
  background: #3077c9;
}
.contactTable-jusho-yubinmark {
  margin-right: 5px;
}
.contactTable-jusho-yubincode {
  max-width: 130px;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .contactTable-jusho-input {
    margin-top: 10px;
  }
}
.contactTable input, .contactTable textarea {
  vertical-align: middle;
}
@media (max-width: 767px) {
  .contactTable input, .contactTable textarea {
    font-size: 1rem;
  }
}
.contactTable .checkboxWrap .wpcf7-form-control {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contactTable .radioWrap label {
  display: inline-block;
  margin: 0 30px 0 0;
}
.contactTable .radioWrap input[type=checkbox], .contactTable .radioWrap input[type=radio] {
  margin-right: 5px;
}

.contactBtns {
  position: relative;
  display: flex;
  text-align: center;
  justify-content: center;
}
.contactBtns .wpcf7-spinner {
  position: absolute;
  bottom: calc(100% + 10px);
  left: calc(50% - 40px);
}

.contactPrivacy {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 40px;
}
.contactPrivacy a {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .contactPrivacy {
    font-size: 0.875rem;
  }
}

#container .wpcf7-response-output {
  padding: 20px;
  border: 2px solid #f2f2f2;
  position: fixed;
  top: 10px;
  left: 5%;
  width: 90%;
  z-index: 10;
  background: #cf1414;
  color: #fff;
  text-align: center;
  animation: hideMsg 4s forwards;
}

@keyframes hideMsg {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
