@charset "UTF-8";
:root {
  --themeColor:#2b74bb;
  --themeColor-lt:#fcf1ed;
  --pointColor:#ac8839;
  --linkColor:#06b4cf;
  --bgColor:#f7f7f7;
  --fontColor: #000;
  --w:1000px;
  --side: calc((100% - (var(--w) - calc(var(--w) * 0.05))) / 2);
  --widthXL:1100px;
  --widthLG:980px;
  --widthTab:768px;
  --font-go-base: "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-garamond: "EB Garamond", var(--font-mi-base);
  --font-pragati: "Pragati Narrow", var(--font-go-base);
}

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:has(.is-android) {
  font-size: 90%;
}

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%;
}

@media (max-width: 767px) {
  .for-pc {
    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: 2;
}
@media (min-width: 768px) and (max-width: 979px) {
  p {
    line-height: 1.8;
  }
}
p + p {
  margin-top: 0.75rem;
}
@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 1em;
  min-height: 51px;
  border-radius: 5px;
  border: 1px solid #d2d5d7;
}
@media (max-width: 767px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  textarea {
    font-size: 1rem;
  }
}
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  color: #a6a6a6;
  font-size: 0.75rem;
}

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

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

.btn-simple {
  position: relative;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #3a3b3b;
  border-radius: 5px;
  background: #3a3b3b;
  min-width: 168px;
  height: 42px;
  padding: 4px 12px;
  color: #fff;
  font-family: var(--font-garamond);
}
.btn-simple::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  position: absolute;
  right: 10px;
  top: calc(50% - 7px);
  background: url(../img/common/icon-arrow-r@2x.png) center center/contain no-repeat;
}
@media (hover: hover) {
  .btn-simple:hover {
    background: #fff;
    color: #3a3b3b;
  }
}
.btn-simple.is-white {
  background: #fff;
  color: #3a3b3b;
}
@media (hover: hover) {
  .btn-simple.is-white:hover {
    background: #3a3b3b;
    color: #fff;
  }
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.3);
  padding: 10px 40px;
  height: 100px;
  color: #fff;
  font-size: 1.25rem;
  border-radius: 5px;
  font-family: var(--font-garamond);
}
@media (max-width: 767px) {
  .btn-contact {
    height: 60px;
  }
}
@media (hover: hover) {
  .btn-contact:hover {
    background: rgba(255, 255, 255, 0.5);
  }
}

.btn-map {
  min-width: 90px;
  width: 90px;
}

.btn-submit {
  position: relative;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #3a3b3b;
  border-radius: 5px;
  background: #3a3b3b;
  width: 425px;
  max-width: 100%;
  height: 74px;
  padding: 4px 12px;
  color: #fff;
  font-size: 1.125rem;
  transition: all 0.2s;
  cursor: pointer;
}
@media (max-width: 767px) {
  .btn-submit {
    height: 60px;
  }
}
.btn-submit::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  position: absolute;
  right: 20px;
  top: calc(50% - 7px);
  background: url(../img/common/icon-arrow-r@2x.png) center center/contain no-repeat;
}
@media (hover: hover) {
  .btn-submit:hover {
    background: #02818f;
    border-color: #02818f;
  }
}

.btn-s {
  display: inline-block;
  padding: 4px 40px;
  background: var(--themeColor);
  color: #fff;
  text-align: center;
  font-weight: bold;
}
@media (hover: hover) {
  .btn-s:hover {
    background: #00cdcd;
  }
}

.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;
}

.outlink::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 8px;
  background: url(../img/common/icon-outlink@2x.png) center center/contain no-repeat;
}

.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;
}
.table-1 thead {
  position: relative;
}
.table-1 thead::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 5px;
  left: 0;
  background: #999;
}
.table-1 thead th, .table-1 thead td {
  padding-bottom: 22px;
}
.table-1 tbody tr:nth-child(odd) {
  background: #f4f4f3;
}
.table-1 th, .table-1 td {
  padding: 16px 13px;
  font-size: 0.8125rem;
}
.table-1 a {
  color: var(--linkColor);
}
@media (max-width: 767px) {
  .table-1.is-sideTitle th {
    padding: 10px 0;
  }
  .table-1.is-sideTitle td {
    padding: 20px 0;
  }
}

.table-2 {
  border-collapse: collapse;
}
.table-2 thead {
  position: relative;
}
.table-2 thead::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 5px;
  left: 0;
  background: #999;
}
.table-2 tbody tr {
  border-bottom: 1px solid #cecece;
}
.table-2 tbody th {
  color: var(--themeColor);
  border-bottom: 1px solid var(--themeColor);
  white-space: nowrap;
  font-weight: bold;
}
.table-2 th, .table-2 td {
  padding: 20px 13px;
  line-height: 2;
  font-size: 0.8125rem;
}
@media (max-width: 767px) {
  .table-2 th, .table-2 td {
    line-height: 1.4;
    padding: 10px;
  }
}
.table-2 a {
  color: var(--linkColor);
}
@media (max-width: 767px) {
  .table-2.is-sideTitle tr {
    border-bottom: none;
  }
  .table-2.is-sideTitle th {
    padding: 10px 0;
  }
  .table-2.is-sideTitle td {
    padding: 20px 0;
  }
}

.table-3 tbody th {
  border-bottom: none;
  color: var(--fontColor);
  font-weight: normal;
}

.table-4 {
  border-top: 1px solid #888888;
}
.table-4 tr {
  border-bottom: 1px solid #888888;
}
.table-4 th, .table-4 td {
  padding: 20px 13px;
  line-height: 2;
}
@media (max-width: 767px) {
  .table-4 th, .table-4 td {
    line-height: 1.4;
    padding: 10px;
  }
}
.table-4 th li, .table-4 td li {
  margin-bottom: 0;
  line-height: 1.8;
}
.table-4 th li + li, .table-4 td li + li {
  margin-top: 10px;
}
.table-4 th .list-normal li, .table-4 td .list-normal li {
  padding-left: 1.2rem;
  text-indent: -1rem;
}
@media (max-width: 767px) {
  .table-4.is-sideTitle tr {
    padding: 20px 0;
  }
  .table-4.is-sideTitle th {
    padding: 0;
    margin-bottom: 20px;
  }
  .table-4.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.6rem;
  font-weight: bold;
}

.title-l {
  margin-bottom: 60px;
}
.title-l-en {
  display: block;
  margin-bottom: 5px;
  font-size: 5rem;
  font-family: var(--font-garamond);
}
@media (min-width: 768px) and (max-width: 979px) {
  .title-l-en {
    font-size: 3.75rem;
  }
}
@media (max-width: 767px) {
  .title-l-en {
    font-size: 2.625rem;
  }
}
.is-blue .title-l-en {
  color: #2b74bb;
}
.title-l-ja {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .title-l-ja {
    font-size: 0.75rem;
    letter-spacing: normal;
  }
}
.title-l-ja::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #2b74bb;
}

.title-l2 {
  display: flex;
  align-items: center;
  gap: 25px;
}
.title-l2-en {
  display: block;
  font-size: 4rem;
  font-family: var(--font-garamond);
  line-height: 1;
}
@media (min-width: 768px) and (max-width: 979px) {
  .title-l2-en {
    font-size: 3.75rem;
  }
}
@media (max-width: 767px) {
  .title-l2-en {
    font-size: 2.625rem;
  }
}
.title-l2-ja {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  letter-spacing: 0.1em;
  margin-top: 25px;
  font-size: 1.125rem;
}
@media (max-width: 767px) {
  .title-l2-ja {
    font-size: 0.75rem;
    letter-spacing: normal;
  }
}

.title-m {
  position: relative;
  margin-bottom: 40px;
  font-size: 1.5rem;
  font-family: var(--font-garamond);
}
@media (max-width: 767px) {
  .title-m {
    font-size: 1.25rem;
  }
}
.title-m::before {
  content: "";
  position: absolute;
  top: 1rem;
  right: calc(100% + 10px);
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #000;
}

.pageMv {
  position: relative;
}
.pageMv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 80%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4901960784) 0%, rgba(0, 0, 0, 0) 100%);
}
.pageMv img {
  width: 100%;
}

.breadCrumb-ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  border-bottom: 1px solid #a1a1a1;
  padding: 12px 3%;
}
@media (max-width: 767px) {
  .breadCrumb-ul {
    padding: 8px 5%;
  }
}
.breadCrumb-ul-li {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
}
@media (max-width: 767px) {
  .breadCrumb-ul-li {
    font-size: 0.625rem;
  }
}
.breadCrumb-ul-li + .breadCrumb-ul-li {
  margin-left: 10px;
}
.breadCrumb-ul-li + .breadCrumb-ul-li::before {
  content: ">";
  margin-right: 10px;
}
.breadCrumb-ul-li a {
  display: block;
  color: #2b74bb;
}

.contents {
  padding-top: 40px;
}
@media (max-width: 767px) {
  .contents {
    padding-top: 20px;
  }
}

.pageSummary {
  margin-bottom: 80px;
  padding-inline: 5%;
}
@media (max-width: 767px) {
  .pageSummary {
    margin-bottom: 40px;
    padding-inline: 5%;
  }
}
.pageSummary-title {
  text-align: center;
}
.pageSummary-title-location {
  display: block;
  margin-bottom: 20px;
  font-size: 2.125rem;
  font-family: var(--font-garamond);
}
@media (max-width: 767px) {
  .pageSummary-title-location {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
}
.pageSummary-title-location-pr {
  margin-right: 25px;
  font-size: 1.5625rem;
}
@media (max-width: 767px) {
  .pageSummary-title-location-pr {
    font-size: 1.125rem;
  }
}
.pageSummary-title-ja {
  display: block;
  font-size: 1.125rem;
}

.pageTitle {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 40px;
  text-align: center;
}
.pageTitle::after {
  content: "";
  display: inline-block;
  width: 100px;
  height: 1px;
  background: #b7b7b7;
  position: absolute;
  bottom: 0;
  left: calc(50% - 50px);
}
.pageTitle-main {
  display: block;
  font-size: 5rem;
  font-family: var(--font-garamond);
}
@media (max-width: 767px) {
  .pageTitle-main {
    font-size: 3.25rem;
  }
}
.pageTitle-sub {
  display: block;
  text-align: center;
}

.pageLead {
  text-align: center;
  font-family: var(--font-garamond);
  font-size: 1.25rem;
  line-height: 2;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .pageLead {
    font-size: 1.125rem;
  }
}

.pageText {
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 767px) {
  .pageText {
    text-align: left;
  }
}
.pageText.is-left {
  width: fit-content;
  text-align: left;
}

.gPolicy {
  margin-top: 10px;
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
  display: block;
  font-size: 0.625rem;
  text-align: right;
  padding-bottom: 5px;
  color: #afafaf;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .gPolicy {
    padding-inline: 3%;
  }
}
.gPolicy a {
  color: #afafaf;
  text-decoration: underline;
}

.grecaptcha-badge {
  visibility: hidden;
}

@media (max-width: 767px) {
  .footer {
    margin-top: 30px;
  }
}

.footerBnArea {
  padding: 50px 0;
  background: #eaf0f7;
}
@media (max-width: 767px) {
  .footerBnArea {
    padding: 30px 5%;
  }
}

.footerBn-wrap {
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
  display: flex;
  gap: 2%;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .footerBn-wrap {
    padding-inline: 3%;
  }
}
@media (max-width: 767px) {
  .footerBn-wrap {
    flex-direction: column;
    gap: 20px;
  }
}

.footerBn {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.footerBn::before {
  content: "";
  display: block;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  position: absolute;
  top: 10px;
  left: 10px;
  pointer-events: none;
  border: 1px solid #fff;
  border-radius: 4px;
  z-index: 1;
}
.footerBn img {
  transition: all 1s;
}
@media (hover: hover) {
  .footerBn:hover img {
    opacity: 1;
    transform: scale(1.1);
  }
}
.footerBn-title {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: auto;
  height: fit-content;
  color: #fff;
}
.is-order .footerBn-title {
  top: 4px;
}
.footerBn-title-main {
  max-width: 90%;
}
@media (max-width: 767px) {
  .footerBn-title-main {
    max-width: 80%;
  }
}
.is-order .footerBn-title-main {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .is-order .footerBn-title-main {
    margin-bottom: 0;
  }
}
.footerBn-title-text {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.footerBn-title-comingsoon {
  display: inline-block;
  width: 215px;
  margin-top: 15px;
  padding: 2px 12px;
  color: #fff;
  font-size: 0.75rem;
  text-align: center;
}
@media (max-width: 767px) {
  .footerBn-title-comingsoon {
    margin-top: 5px;
  }
}
.footerBn-title-comingsoon.is-red {
  background: #8c0505;
}
.footerBn-title-comingsoon.is-blue {
  background: #065983;
}

.footerMain {
  background: url(../img/common/bg-footer@2x.jpg) center center/cover no-repeat;
  color: #fff;
  padding: 100px 0 60px;
}
@media (max-width: 767px) {
  .footerMain {
    padding: 40px 5%;
  }
}

.footerContact {
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
  border-bottom: 1px solid #5f5f5f;
  padding-bottom: 50px;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .footerContact {
    padding-inline: 3%;
  }
}
.footerContact-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .footerContact-title {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
    text-align: center;
    line-height: 2;
  }
}
.footerContact-title::before, .footerContact-title::after {
  content: "";
  flex: 1;
  height: 1px;
  width: 100%;
  background: #5f5f5f;
}

.footerContactMain {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footerContactMain {
    flex-direction: column;
    gap: 20px;
  }
}

.footerContactTel {
  flex: 1;
}
.footerContactTel-main {
  font-family: var(--font-garamond);
  text-align: center;
}
.footerContactTel-main-t {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .footerContactTel-main-t {
    font-size: 1.5rem;
  }
}
.footerContactTel-main-num {
  font-size: 2.875rem;
  color: #fff;
}
@media (max-width: 767px) {
  .footerContactTel-main-num {
    font-size: 2rem;
  }
}
.footerContactTel-main-num a {
  color: #fff;
}
.footerContactTel-businessTime {
  text-align: center;
  font-size: 0.75rem;
}

.footerContactMainForm {
  width: 45%;
}
@media (max-width: 767px) {
  .footerContactMainForm {
    width: 100%;
  }
}
.footerContactMainForm .btn-contact {
  width: 100%;
}

.footerInfo {
  display: flex;
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
  border-bottom: 1px solid #5f5f5f;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .footerInfo {
    padding-inline: 3%;
  }
}
@media (max-width: 767px) {
  .footerInfo {
    flex-direction: column;
    gap: 20px;
  }
}

.footerInfoCompany {
  border-right: 1px solid #5f5f5f;
  padding: 60px 60px 60px 0;
}
@media (max-width: 767px) {
  .footerInfoCompany {
    padding: 30px 0 0;
    border: none;
  }
}
.footerInfoCompany-logo {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .footerInfoCompany-logo {
    margin: 0 auto 30px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .footerInfoCompany-address {
    width: fit-content;
    margin: 0 auto;
  }
}
.footerInfoCompany-address-item {
  display: flex;
  gap: 10px;
  font-size: 0.75rem;
}
@media (max-width: 767px) {
  .footerInfoCompany-address-item {
    flex-direction: column;
  }
}
.footerInfoCompany-address-item + .footerInfoCompany-address-item {
  margin-top: 30px;
}
.footerInfoCompany-address-item-title {
  width: 80px;
}
.footerInfoCompany-address-item-text {
  flex: 1;
  line-height: 2;
}

.footerNavi {
  display: flex;
  align-items: center;
  padding: 20px 0px 20px 60px;
}
@media (max-width: 767px) {
  .footerNavi {
    flex-direction: column;
    padding: 30px 0;
    border-top: 1px solid #6f6f6f;
  }
}
.footerNavi-inner {
  display: flex;
  gap: 30px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .footerNavi-inner {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .footerNavi-inner {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }
}
.footerNavi-ul-li {
  font-size: 0.75rem;
}
.footerNavi-ul-li + .footerNavi-ul-li {
  margin-top: 4px;
}
.footerNavi-ul-li a {
  display: block;
  padding: 6px;
  color: #fff;
}
@media (hover: hover) {
  .footerNavi-ul-li a:hover {
    color: var(--linkColor);
  }
}

.footerNaviSub {
  margin-left: 10px;
}
.footerNaviSub.is-col2 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0 12px;
}
@media (max-width: 767px) {
  .footerNaviSub.is-col2 {
    display: block;
  }
}
@media (max-width: 767px) {
  .footerNaviSub-li {
    font-size: 95%;
  }
}
.footerNaviSub-li a::before {
  content: "-";
  margin-right: 5px;
}

.footerBottom {
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .footerBottom {
    padding-inline: 3%;
  }
}
@media (max-width: 767px) {
  .footerBottom {
    flex-direction: column;
    margin-bottom: 40px;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.footerBottom-link {
  display: flex;
  gap: 60px;
}
@media (max-width: 767px) {
  .footerBottom-link {
    order: 1;
    flex-direction: column;
    gap: 10px;
  }
}
.footerBottom-link-li {
  font-size: 0.6875rem;
}
.footerBottom-link-li a {
  color: #fff;
}

.footerCopy {
  opacity: 0.8;
  font-family: var(--font-garamond);
}
@media (max-width: 767px) {
  .footerCopy {
    display: block;
    width: 100%;
    order: 2;
    text-align: center;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 5%;
  transition-property: padding opacity;
  transition-duration: 0.3s;
  z-index: 10;
}
@media (min-width: 768px) and (max-width: 979px) {
  .header {
    flex-direction: column;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .header {
    padding: 10px;
  }
}
.is-scroll .header {
  background: rgba(0, 0, 0, 0.3803921569);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 25px 5% 10px;
}
@media (max-width: 767px) {
  .is-scroll .header {
    padding: 10px 10px;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .is-scroll .header {
    padding: 5px 10px;
  }
}
.header-inner {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width: 979px) {
  .header-logo {
    width: 20%;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .header-logo {
    width: 170px;
  }
}

.headerContact {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
}
@media (min-width: 768px) and (max-width: 979px) {
  .headerContact {
    height: 40px;
  }
}
@media (max-width: 767px) {
  .headerContact {
    display: none;
  }
}
.headerContact-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 57px;
  background: #123e69;
  color: #fff;
  font-family: var(--font-garamond);
}
.headerContact-btn.is-recruit {
  background: rgba(135, 85, 0, 0.7294117647);
}
.headerContact-btn-ja {
  position: absolute;
  top: 20px;
  left: 0;
  display: block;
  width: 100%;
  text-align: center;
  transform: translateY(-80%);
  opacity: 0;
  transition: all 0.3s;
}
@media (hover: hover) {
  a:hover .headerContact-btn-ja {
    opacity: 1;
    transform: translateY(0);
  }
}
.headerContact-btn-en {
  display: block;
  transform: translateY(0);
  transition: all 0.3s;
  opacity: 1;
}
@media (max-width: 767px) {
  .headerContact-btn-en {
    margin-bottom: 0;
  }
}
@media (hover: hover) {
  a:hover .headerContact-btn-en {
    transform: translateY(100%);
    opacity: 0;
  }
}

.gNavi {
  margin-top: 40px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .gNavi {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .gNavi {
    position: fixed;
    top: 0;
    left: 100%;
    width: 300px;
    height: 100dvh;
    display: block;
    flex-direction: column;
    background: linear-gradient(60deg, rgba(234, 234, 234, 0.9) 0%, rgb(247, 247, 247) 100%);
    gap: 80px;
    margin-top: 0;
    padding: 50px 5% 0;
    transition: transform 0.3s;
    z-index: 1;
  }
}
.dwMenu-active .gNavi {
  transform: translateX(-300px);
}
.gNavi-ul {
  display: flex;
}
@media (max-width: 767px) {
  .gNavi-ul {
    flex-direction: column;
  }
}
.gNavi-ul-li {
  position: relative;
}
@media (min-width: 768px) and (max-width: 979px) {
  .gNavi-ul-li {
    flex-grow: 1;
  }
}
@media (max-width: 767px) {
  .gNavi-ul-li {
    width: 100%;
    border-bottom: 1px solid #6f6f6f;
  }
}
.gNavi-ul-li a {
  display: block;
  color: #fff;
  min-width: 110px;
  padding: 0 5px;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 979px) {
  .gNavi-ul-li a {
    padding: 0 5px;
  }
}
@media (max-width: 767px) {
  .gNavi-ul-li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 10px;
    color: #000;
  }
}
.gNavi-ul-li-ja {
  position: absolute;
  top: 0;
  display: block;
  margin-top: 4px;
  font-weight: bold;
  font-size: 0.875rem;
  transition: all 0.3s;
  transform: translateY(-100%);
  opacity: 0;
}
@media (min-width: 768px) {
  .gNavi-ul-li-ja {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .gNavi-ul-li-ja {
    margin-bottom: 0;
    opacity: 1;
    top: calc(50% - 8px);
    right: 0;
    left: auto;
    font-size: 0.6875rem;
    font-family: var(--font-garamond);
    transform: translateY(0);
  }
}
@media (hover: hover) {
  a:hover .gNavi-ul-li-ja {
    transform: translateY(0);
    opacity: 1;
  }
}
.gNavi-ul-li-en {
  display: block;
  font-size: 1.125rem;
  font-family: var(--font-garamond);
  transform: translateY(0);
  transition: all 0.3s;
  opacity: 1;
}
@media (max-width: 767px) {
  .gNavi-ul-li-en {
    margin-bottom: 0;
  }
}
@media (hover: hover) {
  a:hover .gNavi-ul-li-en {
    transform: translateY(100%);
    opacity: 0;
  }
}

.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;
  display: block;
  position: fixed;
  top: 20px;
  right: 30px;
  width: 44px;
  height: 34px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}
@media (min-width: 768px) {
  .dwMenu {
    display: none;
  }
}
@media (max-width: 767px) {
  .dwMenu {
    top: 17px;
    right: 15px;
    width: 35px;
  }
}
.dwMenu > span {
  position: relative;
  display: block;
  height: 100%;
}
.dwMenu-line {
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background: #000;
  left: 0;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}
.is-scroll .dwMenu-line {
  background: #fff;
}
.dwMenu-active .dwMenu-line {
  background: #000;
}
.dwMenu-line:nth-child(1) {
  top: 0;
}
.dwMenu-active .dwMenu-line:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  transform: rotate(315deg);
}
.dwMenu-line:nth-child(2) {
  top: 12px;
  width: 70%;
}
.dwMenu-active .dwMenu-line:nth-child(2) {
  width: 0;
  left: 50%;
}
.dwMenu-line:nth-child(3) {
  top: 24px;
}
.dwMenu-active .dwMenu-line:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(-315deg);
  -moz-transform: rotate(-315deg);
  transform: rotate(-315deg);
}

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

.mv {
  position: relative;
}
@media (min-width: 768px) {
  .mv {
    aspect-ratio: 1.77;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .mv {
    max-height: 500px;
  }
}
@media (max-width: 767px) {
  .mv {
    aspect-ratio: 0.5625;
  }
}

.mvVideo {
  width: 100%;
}
.mvVideo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mvCopy {
  position: absolute;
  top: 45%;
  left: var(--side);
  text-align: center;
  color: #fff;
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
  font-size: 2.625rem;
  font-family: var(--font-garamond);
  letter-spacing: 0.05em;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .mvCopy {
    padding-inline: 3%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .mvCopy {
    left: 0;
  }
}
@media (max-width: 767px) {
  .mvCopy {
    top: 40%;
    font-size: 9vw;
    left: 0;
  }
}

.topNews {
  border-bottom: 1px solid #000;
}
.topNews-inner {
  position: relative;
  display: flex;
  padding: 20px 0;
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .topNews-inner {
    padding-inline: 3%;
  }
}
@media (max-width: 767px) {
  .topNews-inner {
    flex-direction: column;
  }
}
.topNews-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 220px;
  padding: 0 20px;
  border-right: 1px solid #000;
}
@media (max-width: 767px) {
  .topNews-title {
    width: 100%;
    border-right: none;
    margin-bottom: 20px;
  }
}
.topNews-title-en {
  margin-bottom: 5px;
  font-size: 1.375rem;
  font-family: var(--font-garamond);
}
.topNews-title-ja {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
}
.topNews-contents {
  padding: 10px 0 10px 80px;
}
@media (max-width: 767px) {
  .topNews-contents {
    padding: 10px 5%;
  }
}
.topNews-contents-item {
  display: flex;
}
@media (max-width: 767px) {
  .topNews-contents-item {
    flex-direction: column;
    gap: 5px;
  }
}
.topNews-contents-item + .topNews-contents-item {
  margin-top: 20px;
}
.topNews-contents-item-time {
  width: 150px;
  font-size: 0.8125rem;
}
@media (max-width: 767px) {
  .topNews-contents-item-time {
    width: 100%;
    color: #7c7c7c;
  }
}
.topNews-contents-item-title {
  width: 100%;
  padding-left: 20px;
  font-size: 0.8125rem;
  color: #000;
}
@media (max-width: 767px) {
  .topNews-contents-item-title {
    padding-left: 0;
  }
}
@media (hover: hover) {
  .topNews-contents-item-title:hover {
    color: var(--linkColor);
  }
}
.topNews-archive {
  position: absolute;
  right: 0;
  bottom: -10px;
  height: fit-content;
}
@media (max-width: 767px) {
  .topNews-archive {
    right: 5%;
  }
}
.topNews-archive .btn-simple {
  height: 32px;
}

.topConcept {
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  gap: 8%;
  padding: 120px 0;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .topConcept {
    padding-inline: 3%;
  }
}
@media (max-width: 767px) {
  .topConcept {
    margin-inline: auto;
    max-width: 90%;
    width: 90%;
    flex-direction: column;
    gap: 20px;
    padding: 60px 0;
  }
}
.topConcept-desc {
  width: 50%;
}
@media (max-width: 767px) {
  .topConcept-desc {
    width: 100%;
  }
}
.topConcept-desc-lead {
  margin-bottom: 50px;
  font-size: 1.25rem;
  font-family: var(--font-mi-base);
  line-height: 2;
}
.topConcept-desc-text {
  margin-bottom: 40px;
}

.topFactory {
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .topFactory {
    padding-inline: 3%;
  }
}
@media (max-width: 767px) {
  .topFactory {
    margin-inline: auto;
    max-width: 90%;
    width: 90%;
  }
}

.topFactorySummary {
  display: grid;
  grid-template: "img1 img2 title" auto "img3 img2 img5" auto "img3 img4 img5" auto/1fr 1fr 1fr;
  gap: 15px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .topFactorySummary {
    grid-template: "img1 img2" auto "title img2" auto "img3 img4" auto "img5 img5" auto/1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }
}
.topFactorySummary-title {
  grid-area: title;
  width: fit-content;
  margin: 0 0 0 auto;
}
@media (max-width: 767px) {
  .topFactorySummary-title {
    margin: 0 0 20px 0;
  }
}
@media (max-width: 767px) {
  .topFactorySummary-title .title-l {
    margin-bottom: 0;
  }
}
.topFactorySummary-img.is-1 {
  grid-area: img1;
}
.topFactorySummary-img.is-2 {
  grid-area: img2;
}
.topFactorySummary-img.is-3 {
  grid-area: img3;
}
.topFactorySummary-img.is-4 {
  grid-area: img4;
}
.topFactorySummary-img.is-5 {
  grid-area: img5;
}
.topFactorySummary-img img {
  border-radius: 5px;
}
@media (max-width: 767px) {
  .topFactorySummary-img img {
    width: 100%;
  }
}

.topFactoryDesc {
  display: grid;
  grid-template: "lead text" auto "btn text" auto/1fr 1fr;
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  .topFactoryDesc {
    grid-template: "lead" auto "text" auto "btn" auto/1fr;
    gap: 20px;
  }
}
.topFactoryDesc-lead {
  grid-area: lead;
  font-size: 1.25rem;
  font-family: var(--font-mi-base);
  line-height: 2;
}
.topFactoryDesc-text {
  grid-area: text;
}
.topFactoryDesc-btn {
  grid-area: btn;
  display: flex;
  align-items: flex-end;
  margin-top: 20px;
}

.topOem {
  padding: 70px 0 60px;
  background: url(../img/top/bg-oem@2x.jpg) center center/cover no-repeat;
  color: #fff;
}
@media (max-width: 767px) {
  .topOem {
    padding-inline: 5%;
  }
}
.topOem-inner {
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .topOem-inner {
    padding-inline: 3%;
  }
}
.topOem .title-l {
  text-align: center;
  margin-bottom: 60px;
}
.topOem .title-l-en {
  line-height: 1;
}
.topOem .title-l-ja {
  color: #fff;
  justify-content: center;
}
.topOem .title-l-ja::before {
  display: none;
}
.topOem-lead {
  font-size: 1.25rem;
  font-family: var(--font-mi-base);
  text-align: center;
  line-height: 2;
  margin-bottom: 40px;
}
.topOem-text {
  width: 650px;
  max-width: 100%;
  margin: 0 auto 40px;
}
.topOem-btn {
  text-align: center;
}

.topShop {
  padding: 100px 0;
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .topShop {
    padding-inline: 3%;
  }
}
@media (max-width: 767px) {
  .topShop {
    padding: 60px 5%;
  }
}
.topShop-titleArea {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .topShop-titleArea {
    flex-direction: column;
    gap: 20px;
  }
}
.topShop .title-l {
  margin-bottom: 0;
}

.topShopImg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .topShopImg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.topShopImg {
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .topShopImg:nth-child(1) {
    grid-column: 1/3;
  }
}
@media (max-width: 767px) {
  .topShopImg:nth-child(1) {
    grid-column: 1/3;
  }
}
@media (min-width: 768px) {
  .topShopImg:nth-child(2) {
    grid-column: 3/5;
  }
}
@media (max-width: 767px) {
  .topShopImg:nth-child(2) {
    grid-column: 1/3;
  }
}
.topShopImg-cap {
  display: block;
  height: fit-content;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  color: #fff;
  font-weight: bold;
  line-height: 1.8;
}
.topShopImg img {
  transform: scale(1);
  transition: all 1s;
  border-radius: 5px;
}
@media (hover: hover) {
  .topShopImg:hover img {
    opacity: 1;
    transform: scale(1.1);
  }
}

.conceptUs {
  display: flex;
  justify-content: space-between;
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
  gap: 8%;
  margin-block: 240px 120px;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .conceptUs {
    padding-inline: 3%;
  }
}
@media (max-width: 767px) {
  .conceptUs {
    margin-inline: auto;
    max-width: 90%;
    width: 90%;
    flex-direction: column;
    gap: 20px;
    margin-block: 120px 100px;
  }
}
.conceptUs-desc {
  width: 50%;
}
@media (max-width: 767px) {
  .conceptUs-desc {
    width: 100%;
  }
}
.conceptUs-desc .title-m {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .conceptUs-desc .title-m {
    margin-bottom: 20px;
  }
}
.conceptUs-desc-lead {
  font-size: 1.125rem;
  line-height: 2;
  margin-bottom: 40px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .conceptUs-desc-lead {
    margin-bottom: 20px;
  }
}
.conceptUs-desc-text p + p {
  margin-top: 2em;
}

.dekirukoto {
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .dekirukoto {
    padding-inline: 3%;
  }
}
@media (max-width: 767px) {
  .dekirukoto {
    margin-inline: auto;
    max-width: 90%;
    width: 90%;
  }
}

.dekirukotoSummary {
  display: grid;
  grid-template: "title text" 1fr "btn text" auto "imgs imgs" auto/1fr 1fr;
  gap: 0 5%;
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  .dekirukotoSummary {
    grid-template: "title" auto "text" auto "btn" auto "imgs" auto/1fr;
    gap: 20px 0;
  }
}
.dekirukotoSummary-title {
  grid-area: title;
  font-size: 1.125rem;
  line-height: 2;
}
.dekirukotoSummary-text {
  grid-area: text;
  font-size: 0.8125rem;
}
.dekirukotoSummary-btn {
  grid-area: btn;
}
.dekirukotoSummary-imgs {
  grid-area: imgs;
  margin-top: 60px;
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .dekirukotoSummary-imgs {
    flex-direction: column;
    gap: 20px;
  }
}
.dekirukotoSummary-imgs-item-img {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .dekirukotoSummary-imgs-item-img {
    width: 70%;
    margin: 0 auto 5px;
  }
}
.dekirukotoSummary-imgs-item-img img {
  border-radius: 5px;
}
.dekirukotoSummary-imgs-item-cap {
  font-size: 1.125rem;
  font-family: var(--font-garamond);
  text-align: center;
}
.dekirukotoSummary-imgs-item-cap .text-s {
  font-size: 0.8125rem;
}
.dekirukotoSummary-imgs-item-cap-location {
  display: block;
  margin-top: 3px;
  font-size: 0.8125rem;
  text-align: center;
  font-family: var(--font-go-base);
}

.conceptShop {
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
  display: flex;
  gap: 0 8%;
  margin-bottom: 120px;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .conceptShop {
    padding-inline: 3%;
  }
}
@media (max-width: 767px) {
  .conceptShop {
    margin-inline: auto;
    max-width: 90%;
    width: 90%;
    flex-direction: column;
    gap: 20px;
  }
}
.conceptShop-desc {
  width: 48%;
}
@media (max-width: 767px) {
  .conceptShop-desc {
    width: 100%;
  }
}
.conceptShop-desc .title-m {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .conceptShop-desc .title-m {
    margin-bottom: 20px;
  }
}
.conceptShop-desc-lead {
  font-size: 1.125rem;
  line-height: 2;
  margin-bottom: 40px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .conceptShop-desc-lead {
    margin-bottom: 20px;
  }
}
.conceptShop-desc-text {
  margin-bottom: 40px;
}
.conceptShop-desc-text p + p {
  margin-top: 2em;
}
.conceptShop-imgs {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  height: fit-content;
}
.conceptShop-imgs-item:nth-child(1) {
  grid-column: 1/3;
}
.conceptShop-imgs-item:nth-child(2) {
  grid-column: 1/3;
}
.conceptShop-imgs-item img {
  border-radius: 5px;
}

.orderArea {
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .orderArea {
    padding-inline: 3%;
  }
}

.orderSummary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url(../img/concept/tanimachi-mv@2x.jpg) center center/cover no-repeat;
  min-height: 435px;
  margin-bottom: 20px;
  padding: 60px 5% 20px;
  color: #fff;
}
.orderSummary-logo {
  margin-bottom: 50px;
}
.orderSummary-text {
  width: 60%;
}
@media (max-width: 767px) {
  .orderSummary-text {
    width: 100%;
  }
}

.orderContents {
  display: flex;
  gap: 0 8%;
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  .orderContents {
    flex-direction: column;
    gap: 20px;
    padding-inline: 5%;
  }
}
.orderContents-desc {
  width: 48%;
  padding-top: 50px;
}
@media (max-width: 767px) {
  .orderContents-desc {
    width: 100%;
    margin-bottom: 20px;
  }
}
.orderContents-desc .title-m {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .orderContents-desc .title-m {
    margin-bottom: 20px;
  }
}
.orderContents-desc-lead {
  font-size: 1.125rem;
  line-height: 2;
  margin-bottom: 40px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .orderContents-desc-lead {
    margin-bottom: 20px;
  }
}
.orderContents-desc-text {
  margin-bottom: 40px;
}
.orderContents-desc-text p + p {
  margin-top: 2em;
}
.orderContents-imgs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.factoryMovie {
  margin-bottom: 120px;
  max-width: 100%;
}
@media (min-width: 768px) and (max-width: 979px) {
  .factoryMovie {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .factoryMovie {
    margin-bottom: 0;
  }
}
.factoryMovie video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}

.manuProcess-wrap {
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
  margin-bottom: 120px;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .manuProcess-wrap {
    padding-inline: 3%;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .manuProcess-wrap {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .manuProcess-wrap {
    margin-bottom: 60px;
    margin-inline: auto;
    max-width: 90%;
    width: 90%;
  }
}

.manuProcess {
  background: #eef4f7;
  padding: 40px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .manuProcess {
    padding: 20px;
  }
}
.manuProcess + .manuProcess {
  margin-top: 40px;
}
.manuProcess-title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.manuProcess-title-en {
  font-family: var(--font-pragati);
  font-size: 1.375rem;
}
.manuProcess-title-ja {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.manuPr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 767px) {
  .manuPr-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.manuPr {
  position: relative;
  background: #fff;
  border: 1px solid #83b7d6;
  padding-block: 10px 0;
  border-radius: 4px;
}
.manuPr.is-green {
  border-color: #61bc92;
}
.manuPr.is-green::after {
  background: #61bc92;
}
.manuPr.is-purple {
  border-color: #9b7cb6;
}
.manuPr.is-purple::after {
  background: #9b7cb6;
}
.manuPr::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 50px;
  position: absolute;
  top: calc(50% - 25px);
  left: 100%;
  background: #83b7d6;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
@media (max-width: 767px) {
  .manuPr::after {
    top: 100%;
    left: calc(50% - 25px);
    width: 50px;
    height: 30px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}
.manuPr:last-child::after {
  display: none;
}
.manuPr-title {
  text-align: center;
  padding-block: 4px 10px;
  border-bottom: 1px dashed #83b7d6;
  font-weight: bold;
  color: #83b7d6;
}
.is-green .manuPr-title {
  border-color: #61bc92;
  color: #61bc92;
}
.is-purple .manuPr-title {
  border-color: #9b7cb6;
  color: #9b7cb6;
}
.manuPr-main {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 10px;
}
.manuPr-main-item {
  position: relative;
  background: #83b7d6;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 4px;
  font-weight: bold;
}
.is-green .manuPr-main-item {
  background: #61bc92;
}
.is-purple .manuPr-main-item {
  background: #9b7cb6;
}
.manuPr-main-item::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(100% - 1px);
  left: calc(50% - 11px);
  width: 22px;
  height: 8px;
  background: #83b7d6;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.is-green .manuPr-main-item::after {
  background: #61bc92;
}
.is-purple .manuPr-main-item::after {
  background: #9b7cb6;
}
.manuPr-main-item.is-no-arrow::after {
  display: none;
}

.factoryDetailArea {
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
  margin-bottom: 160px;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .factoryDetailArea {
    padding-inline: 3%;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .factoryDetailArea {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .factoryDetailArea {
    margin-inline: auto;
    max-width: 90%;
    width: 90%;
    margin-bottom: 60px;
  }
}

.factoryDetail {
  display: grid;
  grid-template: "title img" auto "lead img" auto "text img" auto "btn img" 1fr/1fr 45%;
  gap: 0 8%;
}
@media (max-width: 767px) {
  .factoryDetail {
    grid-template: "title" auto "img" auto "lead" auto "text" auto "btn" 1fr/1fr;
    gap: 0;
  }
}
@media (min-width: 768px) {
  .factoryDetail.is-reverse {
    grid-template: "img title" auto "img lead" auto "img text" auto "img btn" 1fr/45% 1fr;
  }
}
.factoryDetail + .factoryDetail {
  margin-top: 140px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .factoryDetail + .factoryDetail {
    margin-top: 80px;
  }
}
@media (max-width: 767px) {
  .factoryDetail + .factoryDetail {
    margin-top: 60px;
  }
}
.factoryDetail-title {
  grid-area: title;
  display: grid;
  grid-template: "pr location" 1fr "ja ja" 1fr/30% 1fr;
  margin-bottom: 60px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .factoryDetail-title {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .factoryDetail-title {
    margin-bottom: 20px;
    grid-template: "pr location" 1fr "ja ja" 1fr/25% 1fr;
    gap: 0;
  }
}
.factoryDetail-title-pr {
  grid-area: pr;
  padding-block: 8px 5px;
  font-family: var(--font-garamond);
  border-right: 1px solid #000;
  font-size: 1.25rem;
}
@media (min-width: 768px) and (max-width: 979px) {
  .factoryDetail-title-pr {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .factoryDetail-title-pr {
    font-size: 0.875rem;
  }
}
.factoryDetail-title-location {
  grid-area: location;
  font-family: var(--font-garamond);
  font-size: 2rem;
  padding-left: 28px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .factoryDetail-title-location {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .factoryDetail-title-location {
    font-size: 1.25rem;
  }
}
.factoryDetail-title-ja {
  grid-area: ja;
  font-size: 1rem;
  border-top: 1px solid #000;
  padding-top: 20px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .factoryDetail-title-ja {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .factoryDetail-title-ja {
    padding-top: 10px;
    font-size: 0.75rem;
  }
}
.factoryDetail-lead {
  grid-area: lead;
  font-size: 1.125rem;
  line-height: 2;
  margin-bottom: 40px;
  font-weight: bold;
}
@media (min-width: 768px) and (max-width: 979px) {
  .factoryDetail-lead {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .factoryDetail-lead {
    margin-bottom: 20px;
    line-height: 1.8;
  }
}
.factoryDetail-btn {
  grid-area: btn;
  display: flex;
  align-items: flex-end;
  margin-top: 20px;
}
.factoryDetail-img {
  grid-area: img;
}
@media (max-width: 767px) {
  .factoryDetail-img {
    margin-bottom: 20px;
  }
}
.factoryDetail-img img {
  width: 100%;
  border-radius: 5px;
}

.factoryNavi {
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .factoryNavi {
    padding-inline: 3%;
  }
}
.factoryNavi-ul {
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .factoryNavi-ul {
    margin-inline: auto;
    max-width: 90%;
    width: 90%;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .factoryNaviItem {
    display: flex;
    gap: 5%;
    align-items: center;
  }
}
.factoryNaviItem-img {
  background: #2b74bb;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1.88;
}
@media (max-width: 767px) {
  .factoryNaviItem-img {
    margin-bottom: 0;
    width: 30%;
  }
  .factoryNaviItem-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.factoryNaviItem-img a {
  display: block;
}
@media (hover: hover) {
  .factoryNaviItem-img a:hover {
    opacity: 0.5;
  }
  .factoryNaviItem-img a:hover img {
    transform: scale(1.1);
  }
}
.is-current .factoryNaviItem-img a {
  opacity: 0.5;
}
.factoryNaviItem-text {
  text-align: center;
}
@media (max-width: 767px) {
  .factoryNaviItem-text {
    text-align: left;
  }
}
.factoryNaviItem-text-location {
  font-size: 1.125rem;
  font-family: var(--font-garamond);
}
.factoryNaviItem-text-location-pr {
  margin-right: 10px;
  font-size: 0.8125rem;
}
.factoryNaviItem-text-ja {
  display: block;
  font-size: 0.75rem;
}

.factoryNaviTop {
  border-bottom: 1px solid #a2a2a2;
  padding-bottom: 60px;
}

.facIntro {
  padding-top: 80px;
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .facIntro {
    padding-inline: 3%;
  }
}
@media (max-width: 767px) {
  .facIntro {
    margin-inline: auto;
    max-width: 90%;
    width: 90%;
    padding-top: 40px;
  }
}
.facIntro-address {
  width: fit-content;
  border-top: 0.5px solid #000;
  border-bottom: 0.5px solid #000;
  margin: 0 auto 40px;
  padding: 15px 60px;
  font-size: 0.8125rem;
  line-height: 2;
}
@media (max-width: 767px) {
  .facIntro-address {
    padding: 15px 20px;
  }
}
.facIntro-text {
  width: fit-content;
  margin: 0 auto 80px;
  font-size: 0.8125rem;
}
@media (max-width: 767px) {
  .facIntro-text {
    margin-bottom: 40px;
  }
}
.facIntro-text p {
  line-height: 2.4;
}
.facIntro-text.is-middle {
  margin-bottom: 0;
}
.facIntro-imgs {
  display: flex;
  justify-content: space-between;
  gap: 6%;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .facIntro-imgs {
    flex-direction: column;
    gap: 20px;
  }
}
.facIntro-imgs.is-middle {
  margin-bottom: 40px;
}
.facIntro-imgs-item img {
  width: 100%;
}
.facIntro-imgsMap {
  display: flex;
  justify-content: space-between;
  gap: 6%;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .facIntro-imgsMap {
    flex-direction: column;
    gap: 20px;
  }
}
.facIntro-imgsMap-item {
  width: 100%;
}
.facIntro-imgsMap-item iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .facIntro-imgsMap-item iframe {
    height: 300px;
  }
}
.facIntro-desc {
  overflow: hidden;
}
.facIntro-desc-img {
  float: right;
  width: 46%;
  margin-left: 40px;
}
@media (max-width: 767px) {
  .facIntro-desc-img {
    width: 100%;
    margin: 15px 0;
  }
}
.facIntro-desc p {
  line-height: 2.4;
}

.facProcessArea {
  margin-block: 80px;
}
.facProcessArea-item + .facProcessArea-item {
  margin-top: 80px;
}

.facProcess {
  position: relative;
}
.facProcess::before {
  content: "";
  display: inline-block;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #f1eeee;
  border: 0.5px solid #000;
  position: absolute;
  left: 6px;
  top: 6px;
}
.facProcess-inner {
  position: relative;
  border: 0.5px solid #000;
}
.facProcess-title {
  display: flex;
  height: 50px;
  border-bottom: 0.5px solid #000;
  background: #fff;
}
.facProcess-title-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  background: #000;
  color: #fff;
  font-family: var(--font-pragati);
  font-size: 1rem;
}
@media (max-width: 767px) {
  .facProcess-title-sub {
    width: 80px;
    font-size: 0.875rem;
  }
}
.facProcess-title-main {
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .facProcess-title-main {
    padding-inline: 10px;
  }
}

.facProcessContents {
  position: relative;
  padding: 40px;
  background: #fff;
}
.facProcessContents + .facProcessContents {
  border-top: 0.5px solid #000;
}
.facProcessContents::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(100% - 0.5px);
  left: calc(50% - 61px);
  width: 124px;
  height: 42px;
  background: url(../img/common/icon-arrow-b.png) center center/contain no-repeat;
}
.facProcessContents.is-no-arrow::after {
  display: none;
}
.facProcessContents-lead {
  margin-bottom: 30px;
  line-height: 2;
  font-size: 0.8125rem;
}
@media (max-width: 767px) {
  .facProcessContents-lead {
    margin-bottom: 20px;
    line-height: 1.8;
  }
}
.facProcessContents-leadCombi {
  display: flex;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .facProcessContents-leadCombi {
    flex-direction: column;
    gap: 10px;
  }
}
.facProcessContents-leadCombi-title {
  margin-top: 3px;
  min-width: 160px;
  font-weight: bold;
  font-size: 1rem;
}
.facProcessContents-leadCombi-text {
  flex: 1;
  line-height: 2;
  font-size: 0.8125rem;
}
.facProcessContents-imgs {
  display: flex;
  gap: 30px;
}
@media (max-width: 767px) {
  .facProcessContents-imgs {
    flex-direction: column;
    gap: 20px;
  }
}
.facProcessContents-imgs + .facProcessContents-imgs {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .facProcessContents-imgs + .facProcessContents-imgs {
    margin-top: 20px;
  }
}
.facProcessContents-imgs.is-grid-col3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 767px) {
  .facProcessContents-imgs.is-grid-col3 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.facProcessContents-imgs-item {
  width: 100%;
}
.facProcessContents-imgs-item img {
  width: 100%;
  border-radius: 5px;
}
.facProcessContents-imgs-item-cap {
  display: block;
  margin-top: 10px;
  font-size: 0.8125rem;
}
@media (max-width: 767px) {
  .facProcessContents-imgs-item-cap {
    margin-top: 5px;
  }
}
.facProcessContents-imgs-item-capCenter {
  display: block;
  text-align: center;
  font-size: 0.875rem;
  font-weight: bold;
  margin-block: 15px 10px;
}
@media (max-width: 767px) {
  .facProcessContents-imgs-item-capCenter {
    margin-block: 10px 5px;
  }
}
.facProcessContents-imgs-item-text {
  display: block;
  margin-top: 10px;
  font-size: 0.8125rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .facProcessContents-imgs-item-text {
    margin-top: 5px;
  }
}
.facProcessContents-desc {
  display: flex;
  gap: 30px;
}
@media (max-width: 767px) {
  .facProcessContents-desc {
    flex-direction: column;
    gap: 20px;
  }
}
.facProcessContents-desc-text {
  flex: 1;
}
@media (min-width: 768px) {
  .facProcessContents-desc-img {
    width: 45%;
  }
}

.otherFactory {
  position: relative;
  display: grid;
  grid-template: "title text" auto "imgs imgs" auto "btn btn" auto/30% 1fr;
  background: #eaf0f7;
  margin-top: 80px;
  padding: 60px 60px 40px;
  gap: 40px 0;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .otherFactory {
    grid-template: "title" auto "text" auto "imgs" auto "btn" auto/1fr;
    padding: 20px 20px 20px;
    gap: 20px 0;
  }
}
.otherFactory::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 100%;
  left: calc(50% - 50px);
  width: 100px;
  height: 35px;
  background: #eaf0f7;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.otherFactory.is-no-arrow::after {
  display: none;
}
.otherFactory-title {
  grid-area: title;
  font-size: 1rem;
}
.otherFactory-text {
  grid-area: text;
  font-size: 0.8125rem;
}
.otherFactory-imgs {
  grid-area: imgs;
  display: flex;
  gap: 4%;
}
@media (max-width: 767px) {
  .otherFactory-imgs {
    flex-direction: column;
    gap: 20px;
  }
}
.otherFactory-imgs-item img {
  width: 100%;
}
.otherFactory-btn {
  grid-area: btn;
  display: flex;
  justify-content: center;
}

.createdCloth {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .createdCloth {
    margin-bottom: 60px;
  }
}
.createdCloth-title {
  margin-bottom: 60px;
  text-align: center;
  font-size: 1.5rem;
  font-family: var(--font-mi-base);
}
@media (max-width: 767px) {
  .createdCloth-title {
    font-size: 1.25rem;
    margin-bottom: 40px;
  }
}
.createdCloth-desc {
  display: grid;
  grid-template: "lead img" auto "text img" 1fr/1fr 35%;
  gap: 0 10%;
}
@media (max-width: 767px) {
  .createdCloth-desc {
    grid-template: "lead" auto "img" auto "text" auto/1fr;
    gap: 15px;
  }
}
.createdCloth-desc-lead {
  grid-area: lead;
  font-size: 1.125rem;
  line-height: 2;
  margin-bottom: 40px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .createdCloth-desc-lead {
    margin-bottom: 0;
    line-height: 1.8;
    font-size: 0.9375rem;
  }
}
.createdCloth-desc-text {
  grid-area: text;
}
.createdCloth-desc-text p + p {
  margin-top: 2em;
}
.createdCloth-desc-img {
  grid-area: img;
}
.createdCloth-desc-img img {
  width: 100%;
}

.meeting {
  display: grid;
  grid-template: "imgs" auto "title" auto "text" auto/1fr;
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  .meeting {
    grid-template: "title" auto "imgs" auto "text" auto/1fr;
    gap: 0 0;
    margin-bottom: 60px;
  }
}
.meeting-imgs {
  grid-area: imgs;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .meeting-imgs {
    margin-bottom: 30px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.meeting-imgs-item:nth-child(1) {
  grid-column: 1/4;
}
@media (max-width: 767px) {
  .meeting-imgs-item:nth-child(1) {
    grid-column: 1/3;
  }
}
@media (max-width: 767px) {
  .meeting-imgs-item:nth-child(4) {
    grid-column: 1/3;
  }
}
.meeting-imgs-item img {
  width: 100%;
}
.meeting-title {
  grid-area: title;
}
@media (min-width: 768px) and (max-width: 979px) {
  .meeting-title {
    font-size: 1.25rem;
  }
}
.meeting-text {
  grid-area: text;
  font-size: 0.8125rem;
  line-height: 2;
}

.factoryBottomNavi {
  margin-bottom: 80px;
  padding-top: 60px;
  border-top: 1px solid #a2a2a2;
}
@media (max-width: 767px) {
  .factoryBottomNavi {
    padding-top: 20px;
    margin-bottom: 20px;
  }
}

.oemImgs {
  display: flex;
  justify-content: center;
  margin-bottom: 120px;
  border-radius: 5px;
  overflow: hidden;
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .oemImgs {
    padding-inline: 3%;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .oemImgs {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .oemImgs {
    flex-direction: column;
    gap: 5px;
    border-radius: 0;
  }
}
.oemImgs-item + .oemImgs-item {
  border-left: 1px solid #bdbdbd;
}
.oemImgs-item img {
  width: 100%;
  object-fit: cover;
}

.ourService {
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .ourService {
    padding-inline: 3%;
  }
}
@media (max-width: 767px) {
  .ourService {
    margin-inline: auto;
    max-width: 90%;
    width: 90%;
  }
}

.ourServiceSuit {
  display: grid;
  grid-template: "title text" auto "img img" auto/28% 1fr;
  gap: 40px 0;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .ourServiceSuit {
    grid-template: "title" auto "text" auto "img" auto/1fr;
    gap: 20px 0;
    margin-bottom: 60px;
  }
}
.ourServiceSuit .title-l2 {
  align-self: flex-start;
  grid-area: title;
}
.ourServiceSuit-text {
  grid-area: text;
  font-size: 0.8125rem;
}
.ourServiceSuit-img {
  grid-area: img;
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .ourServiceSuit-img {
    gap: 5px;
  }
}
.ourServiceSuit-img-item {
  border-radius: 5px;
  overflow: hidden;
}
.ourServiceSuit-img img {
  width: 100%;
  object-fit: cover;
}

.ourServiceJaket {
  display: grid;
  grid-template: "img title" auto "img text" auto/50% 1fr;
  gap: 0 6%;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .ourServiceJaket {
    grid-template: "title" auto "img" auto "text" auto/1fr;
    gap: 20px 0;
    margin-bottom: 60px;
  }
}
.ourServiceJaket .title-l2 {
  align-self: flex-start;
  grid-area: title;
}
.ourServiceJaket-text {
  grid-area: text;
  font-size: 0.8125rem;
}
.ourServiceJaket-img {
  grid-area: img;
  display: flex;
  gap: 20px;
}
.ourServiceJaket-img img {
  width: 100%;
  object-fit: cover;
}

.ourServicePants {
  display: grid;
  grid-template: "title img" auto "text img" 1fr/1fr 445px;
  gap: 0 6%;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .ourServicePants {
    grid-template: "title" auto "img" auto "text" auto/1fr;
    gap: 0;
    margin-bottom: 60px;
  }
}
.ourServicePants-img {
  grid-area: img;
}
@media (max-width: 767px) {
  .ourServicePants-img {
    margin-bottom: 20px;
  }
}
.ourServicePants-title {
  grid-area: title;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .ourServicePants-title {
    margin-bottom: 20px;
  }
}
.ourServicePants-text {
  grid-area: text;
  font-size: 0.8125rem;
}

.ourServiceBrand {
  display: grid;
  grid-template: "title text" auto "img img" auto/35% 1fr;
  gap: 40px 0;
  margin-bottom: 100px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .ourServiceBrand {
    grid-template: "title text" auto "img img" auto/45% 1fr;
  }
}
@media (max-width: 767px) {
  .ourServiceBrand {
    grid-template: "title" auto "text" auto "img" auto/1fr;
    gap: 20px 0;
    margin-bottom: 60px;
  }
}
.ourServiceBrand .title-l2 {
  align-self: flex-start;
  grid-area: title;
}
.ourServiceBrand-text {
  grid-area: text;
  font-size: 0.8125rem;
}
.ourServiceBrand-img {
  grid-area: img;
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .ourServiceBrand-img {
    gap: 5px;
    flex-direction: column;
  }
}
.ourServiceBrand-img img {
  width: 100%;
  object-fit: cover;
}

.oemJisseki {
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
  margin-bottom: 120px;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .oemJisseki {
    padding-inline: 3%;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .oemJisseki {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .oemJisseki {
    margin-bottom: 60px;
    margin-inline: auto;
    max-width: 90%;
    width: 90%;
  }
}
.oemJisseki-desc {
  display: flex;
  gap: 0 10%;
}
@media (max-width: 767px) {
  .oemJisseki-desc {
    flex-direction: column;
    gap: 20px;
  }
}
.oemJisseki-desc-text {
  width: 45%;
}
@media (min-width: 768px) and (max-width: 979px) {
  .oemJisseki-desc-text {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .oemJisseki-desc-text {
    width: 100%;
  }
}
.oemJisseki-desc-data {
  flex: 1;
}
.oemJisseki-desc-data table {
  width: 100%;
}

.flow {
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
  margin-bottom: 120px;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .flow {
    padding-inline: 3%;
  }
}
@media (max-width: 767px) {
  .flow {
    margin-bottom: 60px;
    margin-inline: auto;
    max-width: 90%;
    width: 90%;
  }
}

.flowDesc {
  display: grid;
  grid-template: "text text" auto "flow img" 1fr/1fr 45%;
  gap: 0 6%;
}
@media (min-width: 768px) and (max-width: 979px) {
  .flowDesc {
    grid-template: "text text" auto "flow img" auto/50% 1fr;
  }
}
@media (max-width: 767px) {
  .flowDesc {
    grid-template: "text" auto "flow" auto "img" auto/1fr;
    gap: 20px 0;
  }
}
.flowDesc-text {
  grid-area: text;
  margin-bottom: 20px;
  font-size: 0.8125rem;
}
@media (max-width: 767px) {
  .flowDesc-text {
    margin-bottom: 0;
  }
}
.flowDesc-flow {
  grid-area: flow;
}
.flowDesc-flow img {
  width: 100%;
  object-fit: cover;
}
.flowDesc-flow-item {
  display: flex;
  background: #eef4f7;
  border: 1px solid #85afca;
  border-radius: 5px;
  padding: 20px;
}
.flowDesc-flow-item + .flowDesc-flow-item {
  margin-top: 15px;
}
.flowDesc-flow-item-num {
  width: 60px;
  color: #85afca;
  font-family: var(--font-pragati);
}
.flowDesc-flow-item-text {
  flex: 1;
  font-size: 0.8125rem;
  line-height: 1.8;
}
.flowDesc-img {
  grid-area: img;
}
.flowDesc-img img {
  width: 100%;
  object-fit: cover;
}

.flowContact-num {
  font-size: 2.25rem;
  font-family: var(--font-pragati);
  font-weight: bold;
}
.flowContact-business {
  margin-bottom: 20px;
  font-size: 0.75rem;
}
.flowContact-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  height: 58px;
  color: #85afca;
  font-family: var(--font-garamond);
  font-size: 1.125rem;
  border: 1px solid #85afca;
  border-radius: 5px;
}
@media (hover: hover) {
  .flowContact-btn a:hover {
    background: #85afca;
    color: #fff;
  }
}

.tanimachi {
  display: grid;
  grid-template: "title img" auto "lead img" auto "text img" auto "btn img" 1fr "subimgs subimgs" auto/1fr 45%;
  margin-top: 160px;
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
  gap: 0 6%;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .tanimachi {
    padding-inline: 3%;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .tanimachi {
    margin-top: 80px;
  }
}
@media (max-width: 767px) {
  .tanimachi {
    margin-top: 60px;
    grid-template: "title" auto "lead" auto "img" auto "text" auto "btn" auto "subimgs" auto/1fr;
    margin-inline: auto;
    max-width: 90%;
    width: 90%;
  }
}
.tanimachi-title {
  grid-area: title;
  margin-bottom: 60px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .tanimachi-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .tanimachi-title {
    margin-bottom: 20px;
  }
}
.tanimachi-lead {
  grid-area: lead;
  margin-bottom: 60px;
  font-size: 1.125rem;
  line-height: 2;
  font-weight: bold;
}
@media (min-width: 768px) and (max-width: 979px) {
  .tanimachi-lead {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .tanimachi-lead {
    margin-bottom: 20px;
    font-size: 1rem;
  }
}
.tanimachi-text {
  grid-area: text;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .tanimachi-text {
    margin-bottom: 20px;
  }
}
.tanimachi-btn {
  grid-area: btn;
}
.tanimachi-img {
  grid-area: img;
}
@media (max-width: 767px) {
  .tanimachi-img {
    margin-bottom: 20px;
  }
}
.tanimachi-img img {
  width: 100%;
}
.tanimachi-subimgs {
  grid-area: subimgs;
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .tanimachi-subimgs {
    flex-direction: column;
  }
}
.tanimachi-subimgs img {
  width: 100%;
}

.brandDetail-wrap {
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
  margin-block: 120px;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .brandDetail-wrap {
    padding-inline: 3%;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .brandDetail-wrap {
    margin-block: 80px;
  }
}
@media (max-width: 767px) {
  .brandDetail-wrap {
    margin-block: 60px;
    margin-inline: auto;
    max-width: 90%;
    width: 90%;
  }
}

.brandDetail {
  display: grid;
  grid-template: "logo img" auto "title img" auto "text img" 1fr/1fr 45%;
  gap: 0 6%;
}
@media (max-width: 767px) {
  .brandDetail {
    grid-template: "title" auto "logo" auto "img" auto "text" auto/1fr;
    gap: 0;
  }
}
.brandDetail + .brandDetail {
  margin-top: 120px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .brandDetail + .brandDetail {
    margin-top: 80px;
  }
}
@media (max-width: 767px) {
  .brandDetail + .brandDetail {
    margin-top: 60px;
  }
}
.brandDetail-logo {
  grid-area: logo;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .brandDetail-logo {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .brandDetail-logo img {
    width: 200px;
  }
}
.brandDetail-title {
  grid-area: title;
  margin-bottom: 40px;
}
.brandDetail-title-en {
  font-size: 1.25rem;
  font-weight: bold;
}
.brandDetail-title-ja {
  line-height: 2;
  margin-left: 20px;
}
.brandDetail-text {
  grid-area: text;
  margin-bottom: 30px;
}
.brandDetail-img {
  grid-area: img;
}
@media (max-width: 767px) {
  .brandDetail-img {
    margin-bottom: 20px;
  }
}
.brandDetail-img img {
  width: 100%;
}

.shopSection-wrap {
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
  margin-bottom: 120px;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .shopSection-wrap {
    padding-inline: 3%;
  }
}
@media (max-width: 767px) {
  .shopSection-wrap {
    margin-inline: auto;
    max-width: 90%;
    width: 90%;
    margin-bottom: 60px;
  }
}

.shopSection {
  padding-top: 20px;
  border-top: 0.5px solid #2b74bb;
}
@media (max-width: 767px) {
  .shopSection {
    padding-top: 40px;
  }
}
.shopSection + .shopSection {
  margin-top: 180px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .shopSection + .shopSection {
    margin-top: 100px;
  }
}
@media (max-width: 767px) {
  .shopSection + .shopSection {
    margin-top: 80px;
  }
}
.shopSection-title {
  margin-bottom: 60px;
  text-align: center;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .shopSection-title {
    margin-bottom: 20px;
  }
}

.shopContents {
  display: grid;
  grid-template: "lead map" auto "address map" auto "btn map" 1fr "imgs imgs" auto/1fr 1fr;
  gap: 0 5%;
}
@media (max-width: 767px) {
  .shopContents {
    grid-template: "lead" auto "map" auto "address" auto "btn" auto "imgs" auto/1fr;
    gap: 0;
  }
}
.shopContents-lead {
  grid-area: lead;
  margin-bottom: 30px;
  font-size: 1.125rem;
  line-height: 2;
  font-family: var(--font-mi-base);
}
@media (max-width: 767px) {
  .shopContents-lead {
    margin-bottom: 20px;
  }
}
.shopContents-address {
  grid-area: address;
  margin-bottom: 40px;
}
.shopContents-address-item {
  display: flex;
  padding: 10px;
  background: #eef4f7;
  font-size: 0.8125rem;
  border-radius: 5px;
}
.shopContents-address-item + .shopContents-address-item {
  margin-top: 5px;
}
.shopContents-address-item-dt {
  width: 100px;
}
.shopContents-address-item-dd {
  flex: 1;
}
.shopContents-btn {
  grid-area: btn;
}
@media (max-width: 767px) {
  .shopContents-btn {
    text-align: center;
  }
}
.shopContents-map {
  grid-area: map;
}
@media (max-width: 767px) {
  .shopContents-map {
    margin-bottom: 20px;
  }
}
.shopContents-map iframe {
  width: 100%;
  height: 350px;
}
.shopContents-imgs {
  grid-area: imgs;
  display: flex;
  margin-top: 30px;
  gap: 20px;
}
@media (max-width: 767px) {
  .shopContents-imgs {
    flex-direction: column;
    gap: 10px;
  }
}
.shopContents-imgs img {
  width: 100%;
  border-radius: 5px;
}

.greeting {
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
  margin-bottom: 120px;
  display: grid;
  grid-template: "title title" auto "lead img" auto "text img" 1fr/1fr 45%;
  gap: 0 6%;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .greeting {
    padding-inline: 3%;
  }
}
@media (max-width: 767px) {
  .greeting {
    grid-template: "title" auto "img" auto "lead" auto "text" auto/1fr;
    gap: 0;
    margin-inline: auto;
    max-width: 90%;
    width: 90%;
  }
}
.greeting-title {
  grid-area: title;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .greeting-title {
    margin-bottom: 20px;
  }
}
.greeting-lead {
  grid-area: lead;
  font-size: 1.125rem;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .greeting-lead {
    margin-bottom: 20px;
  }
}
.greeting-text {
  grid-area: text;
}
.greeting-img {
  grid-area: img;
}
@media (max-width: 767px) {
  .greeting-img {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
.greeting-img-cap {
  display: block;
  margin-top: 10px;
  font-size: 1.125rem;
}
.greeting-img-cap .text-s {
  font-size: 0.875rem;
}

.companyInfo {
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
  margin-bottom: 120px;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .companyInfo {
    padding-inline: 3%;
  }
}
@media (max-width: 767px) {
  .companyInfo {
    margin-inline: auto;
    max-width: 90%;
    width: 90%;
    flex-direction: column;
  }
}
.companyInfo-desc {
  display: flex;
  justify-content: space-between;
  gap: 45px;
}
@media (max-width: 767px) {
  .companyInfo-desc {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
}
.companyInfo-desc-img {
  width: 300px;
}
@media (max-width: 767px) {
  .companyInfo-desc-img {
    width: 100%;
    text-align: center;
  }
}
.companyInfo-desc-table {
  flex: 1;
}
.companyInfo-desc-table .table-2 th {
  width: 160px;
}
@media (max-width: 767px) {
  .companyInfo-desc-table .table-2 th {
    width: 100%;
    padding-bottom: 4px;
  }
}
@media (max-width: 767px) {
  .companyInfo-desc-table .table-2 td {
    padding-top: 4px;
  }
}
.companyInfo-desc-table .table-2 .table-3 tr:last-child {
  border-bottom: none;
}
.companyInfo-desc-table .table-2 .table-3 th {
  width: 100px;
}
@media (max-width: 767px) {
  .companyInfo-desc-table .table-2 .table-3 th {
    padding-bottom: 0;
    width: 100%;
    font-weight: bold;
  }
}
@media (max-width: 767px) {
  .companyInfo-desc-table .table-2 .table-3 td {
    padding-top: 5px;
  }
}

.mapWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 2;
}
@media (max-width: 767px) {
  .mapWrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
  }
}

.history {
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
  margin-bottom: 120px;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .history {
    padding-inline: 3%;
  }
}
.history .table-1 {
  width: 100%;
}
@media (max-width: 767px) {
  .history .table-1 tr {
    padding: 10px 5%;
  }
}
.history .table-1 th, .history .table-1 td {
  padding: 20px 30px;
}
@media (max-width: 767px) {
  .history .table-1 th, .history .table-1 td {
    padding: 4px;
  }
}
@media (max-width: 767px) {
  .history .table-1 td:nth-child(1) {
    width: 80px;
    display: inline-block;
    float: left;
    font-size: 80%;
    font-weight: bold;
  }
}
@media (max-width: 767px) {
  .history .table-1 td:nth-child(2) {
    font-size: 80%;
    font-weight: bold;
  }
}

.contactTelCard {
  width: fit-content;
  margin: 0 auto;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  display: flex;
  margin-bottom: 80px;
}
.contactTelCard-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px dotted #000;
  width: 160px;
}
@media (max-width: 767px) {
  .contactTelCard-tel {
    width: 120px;
  }
}
.contactTelCard-main {
  padding: 20px 0 20px 40px;
}
@media (max-width: 767px) {
  .contactTelCard-main {
    padding: 10px 0 10px 20px;
  }
}
.contactTelCard-main-number-t {
  font-size: 2.25rem;
  font-family: var(--font-garamond);
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .contactTelCard-main-number-t {
    font-size: 1.5rem;
  }
}
.contactTelCard-main-number-num {
  font-size: 2.875rem;
  font-family: var(--font-garamond);
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .contactTelCard-main-number-num {
    font-size: 1.875rem;
  }
}
.contactTelCard-main-number-num a {
  color: #000;
}
.contactTelCard-main-businessTime {
  font-size: 0.75rem;
}

.contactFormContainer {
  margin-bottom: 180px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .contactFormContainer {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .contactFormContainer {
    margin-bottom: 80px;
  }
}

.contactForm {
  position: relative;
  background: #f2f5f7;
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
  padding: 80px;
  border-radius: 30px;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .contactForm {
    padding-inline: 3%;
  }
}
@media (max-width: 767px) {
  .contactForm {
    margin-inline: auto;
    max-width: 90%;
    width: 90%;
    padding: 30px 20px;
    border-radius: 15px;
  }
}
.contactForm-msg {
  position: absolute;
  right: 30px;
  top: -1em;
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 4px 10px;
  font-size: 0.75rem;
}
.contactForm-item {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .contactForm-item {
    flex-direction: column;
    gap: 5px;
  }
}
.contactForm-item + .contactForm-item {
  margin-top: 20px;
}
.contactForm-item-label {
  width: 200px;
}
@media (max-width: 767px) {
  .contactForm-item-label {
    width: 100%;
  }
}
.contactForm-item-input {
  flex: 1;
}
.contactForm .wpcf7-not-valid-tip {
  margin-top: 5px;
  font-size: 0.75rem;
}
@media (max-width: 767px) {
  .contactForm .wpcf7-not-valid-tip {
    font-size: 0.6875rem;
  }
}

.adressFormInputs-zipcode {
  margin-bottom: 10px;
}

.privacyArea {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .privacyArea {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.privacyArea-check {
  margin-bottom: 10px;
}
.privacyArea-check .wpcf7-list-item {
  margin-left: 0;
}
.privacyArea-note {
  font-size: 0.75rem;
}

.formSubmit {
  position: relative;
  text-align: center;
  margin-top: 40px;
}
.formSubmit .wpcf7-spinner {
  position: absolute;
  right: calc(50% - 34px);
  top: -30px;
}

.privacyPolicy {
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
  margin-bottom: 120px;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .privacyPolicy {
    padding-inline: 3%;
  }
}
@media (max-width: 767px) {
  .privacyPolicy {
    margin-inline: auto;
    max-width: 90%;
    width: 90%;
    margin-bottom: 80px;
  }
}

.privacySummary {
  margin-bottom: 40px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 30px 0;
}
.privacySummary-title {
  font-size: 1.25rem;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .privacySummary-title {
    margin-bottom: 20px;
  }
}

.privacyContents-sec {
  display: flex;
}
@media (max-width: 767px) {
  .privacyContents-sec {
    flex-direction: column;
    gap: 10px;
  }
}
.privacyContents-sec + .privacyContents-sec {
  margin-top: 60px;
}
.privacyContents-sec-title {
  width: 280px;
  font-size: 1.25rem;
}
.privacyContents-sec-title .text-s {
  font-size: 0.875rem;
}
.privacyContents-sec-text {
  flex: 1;
  font-size: 0.8125rem;
}

.ourCompany {
  margin-top: 80px;
}
.ourCompany-name {
  font-size: 1rem;
  margin-bottom: 20px;
}
.ourCompany-address {
  line-height: 1.8;
}

#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;
  }
}
@media (max-width: 767px) {
  .radioInputs {
    margin-top: 10px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .radioInputs .wpcf7-list-item {
    margin-left: 0;
    margin-right: 10px;
    margin-bottom: 10px;
  }
}
@media (min-width: 980px) {
  .radioInputs .wpcf7-list-item + .wpcf7-list-item {
    margin-left: 30px;
  }
}

.cateNavi {
  display: flex;
  margin-bottom: 80px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .cateNavi {
    padding-inline: 3%;
  }
}
@media (max-width: 767px) {
  .cateNavi {
    margin-inline: auto;
    max-width: 90%;
    width: 90%;
    display: block;
    height: auto;
    margin-bottom: 30px;
  }
}
.cateNavi-label {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--themeColor);
  color: #fff;
  width: 150px;
  text-align: center;
}
@media (max-width: 767px) {
  .cateNavi-label {
    width: 100%;
    padding: 5px 10px;
  }
}
.cateNavi-ul {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  padding: 8px 0 8px 20px;
}
@media (max-width: 767px) {
  .cateNavi-ul {
    padding: 10px 5%;
  }
}
.cateNavi-ul-li {
  margin-right: 20px;
}
@media (max-width: 767px) {
  .cateNavi-ul-li {
    font-size: 0.75rem;
  }
}
.cateNavi-ul-li a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: 100%;
  height: 100%;
  color: var(--fontColor);
}
@media (min-width: 768px) {
  .cateNavi-ul-li a:hover {
    color: var(--linkColor);
  }
}
@media (max-width: 767px) {
  .cateNavi-ul-li a {
    display: block;
    padding: 7px 0;
  }
}
.cateNavi-ul-li a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 10px;
  margin-right: 10px;
  background: url(../img/common/icon-arrow.svg) center center/contain no-repeat;
  vertical-align: middel;
}

.newsSection-wrap {
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
  margin-bottom: 100px;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .newsSection-wrap {
    padding-inline: 3%;
  }
}
@media (max-width: 767px) {
  .newsSection-wrap {
    margin-inline: auto;
    max-width: 90%;
    width: 90%;
  }
}

.newsSection {
  display: flex;
  overflow: hidden;
}
@media (max-width: 767px) {
  .newsSection {
    flex-direction: column;
  }
}
.newsSection + .newsSection {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .newsSection + .newsSection {
    margin-top: 40px;
    border-top: 1px solid #ccc;
    padding-top: 10px;
  }
}
.newsSection-img {
  position: relative;
  width: 35%;
  margin: 0 50px 0 0;
}
@media (max-width: 767px) {
  .newsSection-img {
    float: left;
    margin: 0 0 10px;
    width: 100%;
  }
}
.newsSection-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .newsSection-img-inner {
    aspect-ratio: 1;
  }
}
.newsSection-contents {
  position: relative;
  flex: 1;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .newsSection-contents {
    float: left;
    padding-bottom: 0;
  }
}
.newsSection-contents-header {
  display: flex;
  align-items: center;
  gap: 0 20px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .newsSection-contents-header {
    margin-bottom: 5px;
  }
}
.newsSection-contents-header-cate-one {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 2px;
  background: #aeafb0;
  font-size: 0.8125rem;
  color: #fff;
}
@media (max-width: 767px) {
  .newsSection-contents-header-cate-one {
    font-size: 0.625rem;
    font-weight: bold;
  }
}
.newsSection-contents-header-date {
  display: block;
  line-height: 1;
}
@media (max-width: 767px) {
  .newsSection-contents-header-date {
    font-size: 0.6875rem;
    color: #999;
  }
}
.newsSection-contents-title {
  margin-bottom: 25px;
  font-size: 1rem;
  line-height: 170%;
}
@media (max-width: 767px) {
  .newsSection-contents-title {
    margin-bottom: 10px;
    line-height: 1.6;
  }
}
.newsSection-contents-title a {
  display: inline-block;
  color: var(--fontColor);
}
@media (min-width: 768px) {
  .newsSection-contents-title a:hover {
    color: var(--pointColor);
  }
}
@media (max-width: 767px) {
  .newsSection-contents-text {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .newsSection-contents-text p {
    line-height: 1.4;
  }
}
.newsSection-contents-text p + p {
  margin-top: 5px;
}
.newsSection-contents-btn {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 767px) {
  .newsSection-contents-btn {
    position: relative;
  }
}
.newsSection-contents-btn a {
  width: 190px;
}
@media (max-width: 767px) {
  .newsSection-contents-btn a {
    width: 100%;
    font-size: 0.75rem;
  }
}

@media (max-width: 767px) {
  .notfoundAnimeWrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
  }
}

.js-notfoundAnimation {
  position: absolute;
  top: 20vw;
  left: calc(50% - 350px);
  width: 700px;
  z-index: -1;
}

.notFoundContents {
  padding-top: 350px;
}

.boshuyoukouTable {
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .boshuyoukouTable {
    padding-inline: 3%;
  }
}
@media (max-width: 767px) {
  .boshuyoukouTable {
    margin-inline: auto;
    max-width: 90%;
    width: 90%;
  }
}

.oubosaki {
  border: 1px solid #d6d6d6;
  background: #fcfcfc;
  margin-top: 20px;
  padding: 20px;
  border-radius: 10px;
  width: fit-content;
  line-height: 1.8;
}

.reruitFaq {
  max-width: var(--w);
  width: 100%;
  margin-inline: auto;
  margin-block: 80px;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .reruitFaq {
    padding-inline: 3%;
  }
}
@media (max-width: 767px) {
  .reruitFaq {
    margin-inline: auto;
    max-width: 90%;
    width: 90%;
    margin-bottom: 80px;
  }
}

.reruitFaqSection + .reruitFaqSection {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .reruitFaqSection + .reruitFaqSection {
    margin-top: 20px;
  }
}
.reruitFaqSection-title {
  display: flex;
  background: var(--themeColor);
  color: #fff;
  padding: 20px;
  border-radius: 30px;
  font-weight: bold;
  line-height: 1.6;
}
.reruitFaqSection-title::before {
  content: "Q";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-top: -8px;
  font-size: 1.25rem;
  font-family: var(--font-garamond);
}
.reruitFaqSection-text {
  display: flex;
  padding: 20px;
}
.reruitFaqSection-text::before {
  content: "A";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  font-size: 1.25rem;
  font-family: var(--font-garamond);
  color: var(--themeColor);
}
.reruitFaqSection-text-main {
  flex: 1;
  line-height: 2;
  margin-top: -2px;
}

.birthday {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 767px) {
  .birthday {
    gap: 8px;
  }
}
.birthday-item + .birthday-item {
  margin-left: 10px;
}
@media (max-width: 767px) {
  .birthday-item + .birthday-item {
    margin-left: 0;
  }
}
.birthday-item.is-year input {
  width: 100px;
}
@media (max-width: 767px) {
  .birthday-item.is-year input {
    width: 100%;
  }
}

.recruitPrivacy {
  margin-top: 80px;
}
