@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&family=Shippori+Mincho&display=swap");
/* ----------------------------------------------------------
 media query
---------------------------------------------------------- */
/* ----------------------------------------------------------
 color
---------------------------------------------------------- */
/* ----------------------------------------------------------
 shadow
---------------------------------------------------------- */
/* ----------------------------------------------------------
 font size
---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-size: 1rem;
}

/* ----------------------------------------------------------
 base css
---------------------------------------------------------- */
/* body
--------------------------------------- */
* {
  box-sizing: border-box;
  transition: 0.3s;
}

html {
  scroll-behavior: smooth;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(16px, 0.5vw + 8px, 20px);
  line-height: 1.75em;
}
@media screen and (max-width: 743px) {
  html {
    font-size: 16px;
  }
}

body {
  overflow-x: hidden;
  color: #231815;
  background-color: #FFFFFF;
}
@media print, screen and (min-width: 744px) {
  body {
    min-width: 1100px;
  }
}

body:not(.home) {
  opacity: 0;
  transition: opacity 1.5s ease;
}

body:not(.home).fade-in-active {
  opacity: 1;
}

.wrapper {
  overflow-x: hidden;
}

textarea {
  resize: vertical;
}

/* layout
--------------------------------------- */
.wrap {
  margin: 0 auto;
  width: 85%;
}
@media print, screen and (min-width: 744px) {
  .wrap {
    width: 80%;
    min-width: 62.5rem;
    max-width: 75rem;
  }
  .wrap .wrap {
    width: 90%;
  }
}

/* responsive
--------------------------------------- */
@media print, screen and (min-width: 744px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 743px) {
  .pc {
    display: none !important;
  }
  main {
    overflow-x: hidden;
  }
}
/* img
--------------------------------------- */
img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* Font Size
--------------------------------------- */
.ja {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.en {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

p {
  font-size: 1rem;
  line-height: 1.75em;
}

/* ブロックエディタ用 */
.has-xs-font-size {
  font-size: 0.75rem;
}

.has-sm-font-size {
  font-size: 0.9rem;
}

.has-base-font-size {
  font-size: 1rem;
}

.has-lg-font-size {
  font-size: 1.25rem;
}

.has-xl-font-size {
  font-size: 1.5rem;
}

strong,
b {
  font-weight: 500;
}

/* link
--------------------------------------- */
a {
  display: block;
  transition: 0.3s;
  word-break: break-word;
  overflow-wrap: break-word;
  color: #231815;
}
a:hover {
  transition: 0.3s;
}

@media screen and (max-width: 743px) {
  .link {
    text-align: center;
  }
}
.link a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 14rem;
  padding: 0.75em 1.25em;
  border-radius: 3em;
  color: #FFFFFF;
  background-color: #660000;
}
.link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25em;
  transform: translateY(-50%) translateX(0);
  display: inline-block;
  width: 1.125em;
  height: 1.125em;
  background-color: #FFFFFF;
  mask: url("../images/icon/icon-arrow.svg") no-repeat center;
  -webkit-mask: url("../images/icon/icon-arrow.svg") no-repeat center;
  mask-size: contain;
}
.link a.ex::after {
  width: 1.25em;
  height: 1.25em;
  mask: url("../images/icon/icon-link.svg") no-repeat center;
  -webkit-mask: url("../images/icon/icon-link.svg") no-repeat center;
}
.link a:hover {
  background-color: #BE8D1B;
}

/* title
--------------------------------------- */
body .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.75em;
}
body .title .en {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.125em;
}
@media screen and (max-width: 743px) {
  body .title .en {
    font-size: 2.5rem;
  }
}
body .title .ja {
  font-size: 0.9rem;
  line-height: 1.75em;
}
@media screen and (max-width: 743px) {
  body .title .ja {
    text-align: center;
  }
}
body .title.subtitle .en {
  font-size: 2.5rem;
}
@media screen and (max-width: 743px) {
  body .title.subtitle .en {
    font-size: 2rem;
  }
}
body .title.minititle .en {
  font-size: 2rem;
}
@media screen and (max-width: 743px) {
  body .title.minititle .en {
    font-size: 1.5rem;
  }
}
body .title > .line {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
body .title > .line::before, body .title > .line::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 50vw;
  height: 1px;
  background-color: #B0A8A0;
}
body .title > .line::before {
  right: 100%;
  transform: translateX(-2rem);
}
@media screen and (max-width: 743px) {
  body .title > .line::before {
    transform: translateX(-1rem);
  }
}
body .title > .line::after {
  left: 100%;
  transform: translateX(2rem);
}
@media screen and (max-width: 743px) {
  body .title > .line::after {
    transform: translateX(1rem);
  }
}

/* fadein
--------------------------------------- */
.fadein-contents {
  opacity: 0;
  transition: all 1s;
}
@media print, screen and (min-width: 744px) {
  .fadein-contents {
    transform: translate(0, 30px);
  }
}

.fadein-contents.active {
  opacity: 1;
}
@media print, screen and (min-width: 744px) {
  .fadein-contents.active {
    transform: translate(0, 0);
  }
}

/* ----------------------------------------------------------
 header
---------------------------------------------------------- */
header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem;
}
@media print, screen and (min-width: 744px) {
  header {
    min-width: 68.75rem;
    padding: 1rem;
  }
}
header .sitename {
  width: 6rem;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  header .sitename {
    width: 5.25rem;
  }
}
header .sitename a:hover {
  opacity: 0.6;
}
header .sp-shop ul {
  display: flex;
}
header .sp-shop ul li {
  margin: 0 0.25rem;
  padding-top: 0.125em;
}
header .sp-shop ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  color: #FFFFFF;
}
header .sp-shop ul li a svg {
  width: 1.25rem;
  height: auto;
}
header .sp-shop ul li a path {
  fill: #FFFFFF;
}
header .sp-shop ul li a span {
  font-size: 0.8rem;
  line-height: 2em;
}
header nav #menuToggle {
  position: relative;
  z-index: 1;
  display: block;
  width: 60px;
  height: 60px;
  cursor: pointer;
}
@media print, screen and (min-width: 744px) {
  header nav #menuToggle {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header nav #menuToggle {
    margin-left: 0.5em;
  }
}
header nav #menuToggle span {
  position: absolute;
  left: 25%;
  width: 50%;
  height: 2px;
  background-color: #FFFFFF;
}
header nav #menuToggle span:nth-of-type(1) {
  top: 21px;
}
header nav #menuToggle span:nth-of-type(2) {
  top: 29px;
}
header nav #menuToggle span:nth-of-type(3) {
  top: 37px;
}
header nav ul {
  display: flex;
  align-items: center;
}
@media print, screen and (min-width: 744px) {
  header nav ul li {
    margin-right: 1.25rem;
  }
}
header nav ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  header nav ul li a {
    padding: 0.125em 0 0.5em 0;
    text-align: center;
  }
}
header nav ul li a .en {
  font-size: 1.125rem;
  line-height: 1.5em;
}
@media screen and (max-width: 768px) {
  header nav ul li a .en {
    font-size: 1.25rem;
    line-height: 1.35em;
  }
}
header nav ul li a .ja {
  font-size: 0.7rem;
  line-height: 1.5em;
}
header nav ul li a:hover {
  color: #BE8D1B;
}
header nav ul li:last-child {
  margin-right: 0 !important;
}
header nav ul li.phone {
  margin-right: 1.25rem;
}
header nav ul li.phone a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
header nav ul li.phone a .en {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
}
header nav ul li.phone a .en svg {
  width: 1.25em;
  height: 1.25em;
  margin-right: 0.25rem;
  fill: #FFFFFF;
}
header nav ul li.phone a:hover {
  color: #FFFFFF;
  cursor: default;
}
header nav ul li.shop {
  margin-right: 0.5rem;
}
@media screen and (max-width: 768px) {
  header nav ul li.shop {
    width: 50%;
  }
}
header nav ul li.shop a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 4.125em;
  height: 4.125em;
  border-radius: 100%;
  color: #231815;
  background-color: #FFFFFF;
}
header nav ul li.shop a svg {
  width: 1.5rem;
  height: auto;
  margin-bottom: 0.25rem;
}
header nav ul li.shop a svg path {
  fill: #231815;
}
header nav ul li.shop a:hover {
  color: #FFFFFF;
  background-color: #BE8D1B;
}
header nav ul li.shop a:hover path {
  fill: #FFFFFF;
}
@media screen and (max-width: 768px) {
  header nav #globalNav {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    padding: 0 4rem;
    color: #FFFFFF;
    background-color: #660000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
  }
  header nav #globalNav ul {
    flex-wrap: wrap;
  }
  header nav #globalNav ul li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
  header nav #globalNav ul li.phone {
    margin: 1rem 0;
    border-bottom: 0;
  }
  header nav #globalNav ul li.shop {
    display: flex;
    justify-content: flex-end;
    width: 50%;
    margin: 0;
    padding: 0 0.5em;
    border-bottom: 0;
  }
  header nav #globalNav ul li:last-child {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  header nav.active #menuToggle span:nth-of-type(1) {
    top: 29px;
    transform: rotate(45deg);
  }
  header nav.active #menuToggle span:nth-of-type(2) {
    opacity: 0;
  }
  header nav.active #menuToggle span:nth-of-type(3) {
    top: 29px;
    transform: rotate(-45deg);
  }
  header nav.active #globalNav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
header.is-animation {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media print, screen and (min-width: 744px) {
  header.is-animation {
    padding: 0.125rem 0 0.125rem 1rem;
  }
  header.is-animation .sitename {
    width: 4rem;
  }
}
header.is-animation .sp-shop ul li a {
  color: #231815;
}
header.is-animation .sp-shop ul li a path {
  fill: #231815;
}
header.is-animation #menuToggle span {
  background-color: #231815;
}
@media print, screen and (min-width: 744px) {
  header.is-animation li a {
    color: #231815;
  }
  header.is-animation li a .en {
    font-size: 1rem;
  }
  header.is-animation li.phone .en {
    font-size: 1.25rem;
  }
  header.is-animation li.phone .en svg {
    width: 1em;
    height: 1em;
    fill: #231815 !important;
  }
  header.is-animation li.phone a:hover {
    color: #231815 !important;
  }
  header.is-animation li.phone a:hover svg {
    fill: #231815 !important;
  }
  header.is-animation li.shop {
    position: relative;
    margin-right: 0 !important;
  }
}
@media print, screen and (min-width: 744px) and (min-width: 744px) {
  header.is-animation li.shop:before {
    content: "";
    display: block;
    width: 1px;
    height: 70%;
    position: absolute;
    left: 0;
    top: 15%;
    background-color: #CCCCCC;
  }
}
@media print, screen and (min-width: 744px) {
  header.is-animation li.shop a {
    padding: 0 0.25em;
    border-radius: initial;
    background-color: transparent;
  }
  header.is-animation li.shop a:hover {
    color: #BE8D1B;
    background-color: transparent;
  }
  header.is-animation li.shop a:hover path {
    fill: #BE8D1B;
  }
}

body.home header {
  opacity: 0;
  transform: translateY(10px);
}

/* ----------------------------------------------------------
 page - title
---------------------------------------------------------- */
.page .titlebg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  width: 100%;
  height: 30em;
  padding-bottom: 2.5rem;
  background: url(../images/title/title-default.webp) no-repeat center center/cover;
}
@media screen and (max-width: 743px) {
  .page .titlebg {
    height: 70vw;
  }
}
.page .titlebg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
}
.page .titlebg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 1px;
  height: 1.5rem;
  background-color: #FFFFFF;
}
.page .titlebg .title {
  position: relative;
}
@media screen and (max-width: 743px) {
  .page .titlebg .title {
    margin-bottom: 0;
  }
}
.page .titlebg .title span {
  color: #FFFFFF;
}
.page .titlebg .title span.en {
  font-size: 4rem !important;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 743px) {
  .page .titlebg .title span.en {
    font-size: 3rem !important;
  }
}
.page .titlebg .title span.ja {
  font-size: 0.9rem;
}
.page.service .titlebg {
  background-image: url(../images/title/title-service.webp);
}
.page.brands .titlebg {
  background-image: url(../images/title/title-brands.webp);
}
.page.company .titlebg {
  background-image: url(../images/title/title-company.webp);
}
.page.recruit .titlebg {
  background-image: url(../images/title/title-recruit.webp);
}
.page.privacy-policy .titlebg {
  background-image: url(../images/title/title-contact.webp);
  background-position: top center;
}
.page.tsurugi .titlebg {
  background-image: url(../images/title/title-nihonnotsurugi.webp);
}
.page.contact .titlebg {
  background-image: url(../images/title/title-contact.webp);
}
.page.recruit-contact .titlebg {
  background-image: url(../images/title/title-recruit.webp);
}
.page.recruit-contact .titlebg .title .en {
  font-size: 3.5rem !important;
}
@media screen and (max-width: 743px) {
  .page.recruit-contact .titlebg .title .en {
    font-size: 2rem !important;
  }
}
.page .description {
  position: relative;
  padding: 4rem 0;
}
@media screen and (max-width: 743px) {
  .page .description {
    padding: 3rem 0;
  }
}
@media screen and (max-width: 743px) {
  .page .description p {
    text-align: left;
  }
}
.page .description::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1px;
  height: 1rem;
  background-color: #CCCCCC;
}

.page.tsurugi .titlebg::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.page.tsurugi .titlebg h1 {
  position: relative;
  width: 20rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 743px) {
  .page.tsurugi .titlebg h1 {
    width: 50vw;
  }
}

body.privacy-policy .titlebg,
body.recruitment-contact .titlebg,
body.single .titlebg,
body.category .titlebg,
body.date .titlebg,
body.news .titlebg {
  height: 20em;
}
@media screen and (max-width: 743px) {
  body.privacy-policy .titlebg,
  body.recruitment-contact .titlebg,
  body.single .titlebg,
  body.category .titlebg,
  body.date .titlebg,
  body.news .titlebg {
    height: 55vw;
  }
}

/* ----------------------------------------------------------
 page - default page
---------------------------------------------------------- */
.defaultpage .description {
  padding: 2rem 0;
}
.defaultpage .page-contents {
  padding-bottom: 6rem;
}
.defaultpage .page-contents * + ul, .defaultpage .page-contents * + ol {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.defaultpage .page-contents ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.defaultpage .page-contents ul li:before {
  content: "・";
}
.defaultpage .page-contents a {
  display: inline;
}
.defaultpage .page-contents p a {
  text-decoration: underline;
}

/* ----------------------------------------------------------
 footer
---------------------------------------------------------- */
footer .contact {
  padding: 4rem 0;
  text-align: center;
  background-color: #F6F5F4;
}
@media screen and (max-width: 743px) {
  footer .contact .title.subtitle .en {
    font-size: 2.5rem;
  }
}
footer .contact .tel {
  margin: 1.5rem auto;
}
footer .contact .tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}
footer .contact .tel .en {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 2rem;
  font-weight: 400;
}
footer .contact .tel .en svg {
  width: 1.125em;
  height: 1.125em;
  margin-right: 0.125em;
  fill: #231815 !important;
}
footer .contact .link a {
  justify-content: center;
}
footer .contact .link a::after {
  content: none;
}
footer .contact .link a::before {
  content: "";
  display: inline-block;
  margin-right: 0.35em;
  width: 1.25em;
  height: 1.25em;
  background-color: #FFFFFF;
  mask: url(../images/icon/icon-mail.svg) no-repeat center;
  -webkit-mask: url(../images/icon/icon-mail.svg) no-repeat center;
  mask-size: contain;
}
footer .footerlink {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding: 3rem 4rem 3rem 3rem;
  color: #FFFFFF;
  background-color: #660000;
}
@media screen and (max-width: 743px) {
  footer .footerlink {
    padding: 2rem;
  }
}
footer .footerlink .info {
  margin-right: auto;
}
footer .footerlink .info .sitename {
  width: 18em;
  margin-bottom: 2rem;
}
@media screen and (max-width: 743px) {
  footer .footerlink .info .sitename {
    width: 15em;
  }
}
footer .footerlink .info .address {
  font-size: 0.9rem;
  line-height: 1.75em;
}
footer .footerlink .info .address .link {
  display: block;
}
@media screen and (max-width: 743px) {
  footer .footerlink .info .address .link {
    text-align: left;
  }
}
footer .footerlink .info .address .link a {
  display: inline-flex;
  align-items: center;
  width: initial;
  min-width: initial;
  padding: 0;
}
footer .footerlink .info .address .link a::after {
  position: static;
  margin-left: 0.25em;
  padding-top: 0.25em;
  transform: translateY(0.15rem);
}
footer .footerlink .info .address .link a:hover {
  color: #BE8D1B;
  background-color: transparent;
}
footer .footerlink .info .address .link a:hover::after {
  background-color: #BE8D1B;
}
footer .footerlink nav {
  display: flex;
}
footer .footerlink nav ul {
  padding-right: 3rem;
}
footer .footerlink nav ul:nth-of-type(2) {
  padding-right: 2rem;
}
footer .footerlink nav ul:nth-of-type(3) {
  padding-left: 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}
footer .footerlink nav ul li {
  font-size: 0.9rem;
}
footer .footerlink nav ul li a {
  color: #FFFFFF;
}
footer .footerlink nav ul li a:hover {
  color: #BE8D1B;
}
footer .footerlink small {
  width: 100%;
  margin-top: 1rem;
}
footer .footerlink small a {
  color: #FFFFFF;
}
footer .footerlink .pagetop {
  position: absolute;
  top: 3rem;
  right: 2rem;
}
@media screen and (max-width: 743px) {
  footer .footerlink .pagetop {
    top: 2rem;
    right: 1.5rem;
  }
}
footer .footerlink .pagetop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 100%;
  transform: rotate(-90deg);
}
footer .footerlink .pagetop a svg {
  width: 45%;
  height: auto;
}
footer .footerlink .pagetop a:hover {
  border-color: #BE8D1B;
  background-color: #BE8D1B;
}

/* ----------------------------------------------------------
 shopinfo / parts-shopinfo.php
---------------------------------------------------------- */
section.shopinfo article {
  display: flex;
}
@media screen and (max-width: 743px) {
  section.shopinfo article {
    flex-direction: column-reverse;
  }
}
section.shopinfo article .detail {
  padding: 3rem;
  color: #FFFFFF;
  background-color: #660000;
}
@media print, screen and (min-width: 744px) {
  section.shopinfo article .detail {
    width: 50%;
  }
}
@media screen and (max-width: 743px) {
  section.shopinfo article .detail {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
  }
}
section.shopinfo article .detail h3 {
  margin-bottom: 1em;
}
@media print, screen and (min-width: 744px) {
  section.shopinfo article .detail h3 {
    align-items: flex-start;
  }
}
section.shopinfo article .detail h3 .en {
  font-weight: 300;
}
section.shopinfo article .detail p {
  font-size: 0.9rem;
}
@media screen and (max-width: 743px) {
  section.shopinfo article .detail p {
    display: none;
  }
}
section.shopinfo article .detail .link {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 35em;
  margin-top: 2rem;
}
@media screen and (max-width: 743px) {
  section.shopinfo article .detail .link {
    justify-content: center;
    margin: 1rem auto 0.5rem auto;
  }
}
section.shopinfo article .detail .link a {
  width: calc((100% - 0.5rem) / 2);
  margin-bottom: 0.75rem;
  padding: 1em 1.25em;
  color: #660000;
  background-color: #FFFFFF;
  font-size: 0.9rem;
}
@media screen and (max-width: 743px) {
  section.shopinfo article .detail .link a {
    padding: 1em 2em;
  }
}
@media print, screen and (min-width: 744px) {
  section.shopinfo article .detail .link a:nth-last-of-type(1), section.shopinfo article .detail .link a:nth-last-of-type(2) {
    margin-bottom: 0;
  }
}
section.shopinfo article .detail .link a::after {
  background-color: #660000;
}
section.shopinfo article .detail .link a:hover {
  color: #FFFFFF;
  background-color: #BE8D1B;
}
section.shopinfo article .detail .link a:hover::after {
  background-color: #FFFFFF;
}
section.shopinfo article .image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: 2rem;
  background: url(../images/pic-fec.webp) no-repeat center center/cover;
}
@media print, screen and (min-width: 744px) {
  section.shopinfo article .image {
    width: 50%;
  }
}
section.shopinfo article .image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
section.shopinfo article .image > * {
  position: relative;
}
section.shopinfo article .image .logo {
  width: 40%;
}
section.shopinfo article.btoc {
  margin-top: 1rem;
}
@media print, screen and (min-width: 744px) {
  section.shopinfo article.btoc {
    flex-direction: row-reverse;
  }
}
section.shopinfo article.btoc .detail {
  padding: 2rem 3rem;
  background-color: #124a36;
}
@media screen and (max-width: 743px) {
  section.shopinfo article.btoc .detail {
    padding: 1rem;
  }
}
section.shopinfo article.btoc .detail .link a {
  color: #124a36;
}
section.shopinfo article.btoc .detail .link a::after {
  background-color: #124a36;
}
section.shopinfo article.btoc .detail .link a:hover {
  color: #FFFFFF;
  background-color: #BE8D1B;
}
section.shopinfo article.btoc .detail .link a:hover::after {
  background-color: #FFFFFF;
}
section.shopinfo article.btoc .image {
  padding: 1.5rem 2rem;
  background: url(../images/pic-nihonnotsurugi.webp) no-repeat center center/cover;
}
section.shopinfo article.btoc .image .logo {
  width: 60%;
}

body.page section.shopinfo h2 + p {
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (max-width: 743px) {
  body.page section.shopinfo h2 + p {
    text-align: left;
  }
}

/* ----------------------------------------------------------
 to service / parts-service.php
---------------------------------------------------------- */
section.toservice {
  margin: 2rem auto;
  padding: 2rem 0;
  text-align: center;
  background: url(../images/pic-service.webp) no-repeat center center/cover;
}
section.toservice div {
  padding: 3rem 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.5) 0%, #FFFFFF 100%);
  backdrop-filter: blur(6px);
}
@media screen and (max-width: 743px) {
  section.toservice div {
    padding: 3rem 7.5%;
  }
}
section.toservice div h2 {
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.75em;
}
section.toservice div h2 + p {
  margin: 1rem auto;
}
@media screen and (max-width: 743px) {
  section.toservice div h2 + p {
    margin: 2rem auto;
    text-align: left;
  }
}

/* ----------------------------------------------------------
 pickup information / parts-pickup.php
---------------------------------------------------------- */
section.pickup {
  padding: 6rem 0;
}
@media screen and (max-width: 743px) {
  section.pickup .pickup-swiper {
    width: 85%;
    margin: 0 auto;
    padding: 0 0.5rem;
  }
}
section.pickup ul {
  padding: 2rem 0;
  display: flex;
  align-items: stretch;
}
section.pickup ul li {
  border-radius: 0.5rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  background-color: #FFFFFF;
  overflow: hidden;
  height: auto;
  display: flex;
  flex-direction: column;
}
section.pickup ul li a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
section.pickup ul li a::after {
  content: "";
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-color: #660000;
  mask: url("../images/icon/icon-arrow.svg") no-repeat center;
  -webkit-mask: url("../images/icon/icon-arrow.svg") no-repeat center;
  mask-size: contain;
}
section.pickup ul li a figure {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  overflow: hidden;
}
section.pickup ul li a figure img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
section.pickup ul li a div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1rem 1rem 3rem 1rem;
}
section.pickup ul li a div .cat {
  display: inline-flex;
  align-items: center;
  border-radius: 3em;
  padding: 0.125em 1em;
  font-size: 0.9rem;
  color: #FFFFFF;
  background-color: #660000;
}
section.pickup ul li a div time {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #B0A8A0;
  font-weight: 400;
}
section.pickup ul li a div time::before {
  content: "";
  display: inline-block;
  margin-right: 0.25em;
  width: 1.125em;
  height: 1.125em;
  background-color: #B0A8A0;
  mask: url(../images/icon/icon-time.svg) no-repeat center;
  -webkit-mask: url(../images/icon/icon-time.svg) no-repeat center;
  mask-size: contain;
}
section.pickup ul li a div .posttitle {
  width: 100%;
  margin-top: 1em;
  font-size: 0.9rem;
  line-height: 1.5em;
}
section.pickup ul li a:hover {
  opacity: 0.9;
}
section.pickup ul li a:hover img {
  transform: scale(1.05);
}
section.pickup .link {
  margin-top: 2rem;
  text-align: center;
}

/* company
----------------------------------------- */
section.company {
  position: relative;
  padding: 2rem 0;
  background-color: #F6F5F4;
}
@media screen and (max-width: 743px) {
  section.company {
    padding: 4rem 0 2rem 0;
  }
}
section.company:before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 0;
  display: block;
  width: 100%;
  height: 10rem;
  background: url(../images/text-fec.svg) no-repeat center center/contain;
}
@media screen and (max-width: 743px) {
  section.company:before {
    top: initial;
    bottom: 20%;
  }
}
section.company .wrap {
  display: flex;
  align-items: center;
  width: 90%;
}
@media screen and (max-width: 743px) {
  section.company .wrap {
    flex-direction: column;
    width: 85%;
  }
}
section.company .wrap .detail {
  position: relative;
}
@media print, screen and (min-width: 744px) {
  section.company .wrap .detail {
    flex: 0 auto;
    width: 46rem;
    padding: 0 2rem;
  }
}
section.company .wrap .detail h2 {
  margin-bottom: 1rem;
}
@media screen and (max-width: 743px) {
  section.company .wrap .detail h2 {
    margin-bottom: 1.5rem;
  }
}
section.company .wrap .detail h2 .ja {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5em;
}
section.company .wrap .detail .link {
  margin-top: 2rem;
}
@media print, screen and (min-width: 744px) {
  section.company .wrap figure {
    flex: 1 auto;
  }
}
@media screen and (max-width: 743px) {
  section.company .wrap figure {
    margin-top: 2rem;
  }
}

/* ----------------------------------------------------------
 block editor setting
---------------------------------------------------------- */
/* 画像シャドウ
--------------------------------------- */
.wp-block-image.is-style-shadow img {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* 固定ページ
--------------------------------------- */
main.defaultpage .page-contents h1 {
  border-bottom: 1px solid #CCCCCC;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5em;
}
main.defaultpage .page-contents h2 {
  margin-top: 2.5em;
  margin-bottom: 1em;
  padding: 0.5em;
  color: #FFFFFF;
  background-color: #660000;
  font-weight: 500;
  font-size: 1.5rem;
}
@media screen and (max-width: 743px) {
  main.defaultpage .page-contents h2 {
    font-size: 1.25rem;
  }
}
main.defaultpage .page-contents h3 {
  margin-top: 2em;
  margin-bottom: 1em;
  padding: 0.25em 0.75em;
  border-left: 4px solid #BE8D1B;
  background-color: #F4ECD7;
  font-size: 1.25rem;
  font-weight: 500;
}
main.defaultpage .page-contents h4 {
  margin-top: 2.5em;
  margin-bottom: 1em;
  padding-bottom: 0.25em;
  border-bottom: 2px solid #660000;
  color: #660000;
  font-size: 1.125rem;
  font-weight: 500;
}
main.defaultpage .page-contents h4::before {
  content: "●";
  margin-right: 0.25rem;
}
main.defaultpage .page-contents h5 {
  margin-top: 1.75em;
  margin-bottom: 0.75em;
  padding: 0.25em 0.5em;
  color: #231815;
  background-color: #F6F5F4;
  font-size: 1rem;
  font-weight: 500;
}
main.defaultpage .page-contents h6 {
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  padding-bottom: 0.125em;
  border-bottom: 1px dotted #231815;
  color: #231815;
  font-weight: 500;
  font-size: 1rem;
}

/* ----------------------------------------------------------
 home css
---------------------------------------------------------- */
#opening {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #660000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#opening .openinglogo {
  opacity: 0;
  transform: translateY(10px);
}
#opening .openinglogo img {
  width: 15rem;
}

main.home {
  /* firstview
  ----------------------------------------- */
  /* business
  ----------------------------------------- */
  /* works
  ----------------------------------------- */
  /* brand
  ----------------------------------------- */
  /* instagram
  ----------------------------------------- */
  /* news
  ----------------------------------------- */
}
main.home .firstview {
  position: relative;
  width: 100%;
}
@media print, screen and (min-width: 744px) {
  main.home .firstview {
    height: 100vh;
    min-height: 768px;
  }
  main.home .firstview::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 100%);
  }
}
main.home .firstview .main-swiper {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}
@media screen and (max-width: 743px) {
  main.home .firstview .main-swiper {
    height: 100vh;
  }
  main.home .firstview .main-swiper::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 100%);
  }
}
main.home .firstview .main-swiper img {
  height: 100%;
  object-fit: cover;
}
main.home .firstview .outer {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
}
main.home .firstview .outer .inner {
  color: #FFFFFF;
  text-align: center;
}
@media print, screen and (min-width: 744px) {
  main.home .firstview .outer .inner {
    margin-top: -2rem;
  }
}
@media screen and (max-width: 743px) {
  main.home .firstview .outer .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }
}
main.home .firstview .outer .inner .slogan img {
  display: block;
  width: 75%;
  margin: 0 auto;
}
@media screen and (max-width: 743px) {
  main.home .firstview .outer .inner .slogan img {
    width: 85%;
  }
}
main.home .firstview .outer .inner .slogan .ja {
  position: relative;
  padding-left: 0.25em;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 1.5rem;
  font-style: normal;
  letter-spacing: 0.25em;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.95);
}
@media screen and (max-width: 743px) {
  main.home .firstview .outer .inner .slogan .ja {
    font-size: 1rem;
  }
}
main.home .firstview .outer .inner .slogan .ja::before, main.home .firstview .outer .inner .slogan .ja::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 2em;
  height: 1px;
  background-color: #FFFFFF;
}
main.home .firstview .outer .inner .slogan .ja::before {
  left: -2.5em;
}
main.home .firstview .outer .inner .slogan .ja::after {
  right: -2.5em;
}
main.home .firstview .outer .inner .description {
  font-size: 1.25rem;
  line-height: 1.5em;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.95);
}
@media print, screen and (min-width: 744px) {
  main.home .firstview .outer .inner .description {
    position: absolute;
    left: 50%;
    bottom: 10rem;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 743px) {
  main.home .firstview .outer .inner .description {
    padding: 2rem 0;
  }
}
@media screen and (max-width: 743px) {
  main.home .firstview .outer .inner .description {
    font-size: 1rem;
  }
}
main.home .firstview .outer .inner .description::before {
  content: none;
}
main.home .firstview .outer .scroll {
  padding: 0.75em 0;
  color: #FFFFFF;
  animation: scrollFadeDown 1.75s ease-in-out infinite;
}
@media screen and (min-width: 744px) and (max-width: 1259px) {
  main.home .firstview .outer .scroll .en {
    color: transparent;
  }
}
@media print, screen and (min-width: 744px) {
  main.home .firstview .outer .scroll {
    position: absolute;
    right: 2rem;
    bottom: 4rem;
  }
}
@media screen and (max-width: 743px) {
  main.home .firstview .outer .scroll {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scrollFadeDownSP 1.75s ease-in-out infinite;
  }
  @keyframes scrollFadeDownSP {
    0% {
      opacity: 1;
      transform: translateY(-230%);
    }
    100% {
      opacity: 0;
      transform: translateY(-220%);
    }
  }
}
@keyframes scrollFadeDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(0.25rem);
  }
}
main.home .firstview .outer .scroll .en {
  position: relative;
  padding-right: 2.25em;
}
main.home .firstview .outer .scroll .en::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 1.75em;
  height: 1.75em;
  border: 1px solid #FFFFFF;
  border-radius: 100%;
  padding: 0.25em;
}
main.home .firstview .outer .scroll .en::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.35em;
  transform: translateY(-50%) rotate(90deg);
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: #FFFFFF;
  mask: url("../images/icon/icon-arrow.svg") no-repeat center;
  -webkit-mask: url("../images/icon/icon-arrow.svg") no-repeat center;
  mask-size: contain;
}
main.home .firstview .outer .pickup {
  width: 100%;
  text-align: center;
}
@media print, screen and (min-width: 744px) {
  main.home .firstview .outer .pickup {
    position: absolute;
    left: 50%;
    bottom: 4rem;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 743px) {
  main.home .firstview .outer .pickup {
    width: 90%;
    margin: -5rem auto 0 auto;
  }
}
main.home .firstview .outer .pickup a {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0 auto;
  padding: 0.75em 4em 0.75em 2em;
  border-radius: 3em;
  background-color: #FFFFFF;
}
@media print, screen and (min-width: 744px) {
  main.home .firstview .outer .pickup a {
    width: 55rem;
  }
}
@media screen and (max-width: 743px) {
  main.home .firstview .outer .pickup a {
    flex-wrap: wrap;
    padding: 1rem 1.5rem 2rem 1.5rem;
    border-radius: 1em;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  }
}
main.home .firstview .outer .pickup a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25em;
  transform: translateY(-50%);
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: #660000;
  mask: url("../images/icon/icon-arrow.svg") no-repeat center;
  -webkit-mask: url("../images/icon/icon-arrow.svg") no-repeat center;
  mask-size: contain;
}
@media screen and (max-width: 743px) {
  main.home .firstview .outer .pickup a::after {
    top: initial;
    bottom: 1rem;
    width: 0.75em;
    height: 0.75em;
  }
}
main.home .firstview .outer .pickup a h2.en {
  display: inline-block;
  position: relative;
  flex: 0 0 auto;
  margin-right: 0.75em;
  padding-right: 0.75em;
  font-weight: 400;
  color: #660000;
}
main.home .firstview .outer .pickup a h2.en::after {
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  position: absolute;
  top: 15%;
  right: 0;
  background-color: #CCCCCC;
}
main.home .firstview .outer .pickup a time {
  flex: 0 0 auto;
  margin-right: 1em;
  color: #B0A8A0;
  font-weight: 400;
}
main.home .firstview .outer .pickup a p {
  flex: 1 1 auto;
  max-width: 40em;
  font-size: 0.9rem;
  line-height: 1.7em;
  text-align: left;
}
@media screen and (max-width: 743px) {
  main.home .firstview .outer .pickup a p {
    width: 100%;
    max-width: 100%;
    margin-top: 0.5rem;
  }
}
main.home .firstview .outer .pickup a:hover {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
main.home .firstview .outer .pickup a:hover::after {
  background-color: #BE8D1B;
}
main.home .firstview .outer .pickup a:hover h2.en {
  color: #BE8D1B;
}
main.home .business {
  position: relative;
  padding: 4rem 0 0 0;
}
main.home .business::before {
  content: "";
  position: absolute;
  top: 4rem;
  right: -2rem;
  display: block;
  width: 30vw;
  height: 50vw;
  background: url(../images/bg-text.svg) no-repeat center right/contain;
}
@media screen and (max-width: 743px) {
  main.home .business::before {
    top: initial;
    bottom: 0;
    width: 70vw;
    height: 100vw;
    transform: translateY(-45%);
  }
}
@media print, screen and (min-width: 744px) {
  main.home .business .wrap {
    display: flex;
    width: 60rem;
  }
}
@media screen and (max-width: 743px) {
  main.home .business .wrap {
    width: 88%;
  }
}
@media print, screen and (min-width: 744px) {
  main.home .business .wrap .left {
    width: 23rem;
  }
  main.home .business .wrap .left h2 {
    align-items: flex-start;
  }
}
@media print, screen and (min-width: 744px) {
  main.home .business .wrap .right {
    width: calc(100% - 23rem);
  }
}
@media screen and (max-width: 743px) {
  main.home .business .wrap .right {
    margin-top: 3rem;
  }
}
main.home .business .wrap .right h3 {
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5em;
}
@media screen and (max-width: 743px) {
  main.home .business .wrap .right h3 {
    font-size: 1.25rem;
    text-align: center;
  }
}
main.home .bsslider-wrap {
  position: relative;
  opacity: 0;
  width: 100%;
  height: 32rem;
  margin: 6rem auto 0 auto;
  transition: all 1.5s 1s;
}
@media screen and (max-width: 743px) {
  main.home .bsslider-wrap {
    height: 100vw;
    margin-top: 3rem;
  }
}
main.home .bsslider-wrap.active {
  opacity: 1;
}
main.home .bsslider-wrap .bsslider li {
  position: relative;
  width: 17em;
  height: auto;
  aspect-ratio: 3/4;
  margin: 0 2.75rem;
  transition: all 0.4s;
  color: #FFFFFF;
  background-color: #231815;
  overflow: hidden;
}
@media screen and (max-width: 743px) {
  main.home .bsslider-wrap .bsslider li {
    width: 50vw;
    margin: 0 2rem;
  }
}
main.home .bsslider-wrap .bsslider li.left2 {
  margin-top: 3.75rem;
  margin-right: 2.5rem;
  transform-origin: top right;
  transform: rotate(-16deg);
}
main.home .bsslider-wrap .bsslider li.left {
  margin-top: 0.25rem;
  transform-origin: top right;
  transform: rotate(-8deg);
}
main.home .bsslider-wrap .bsslider li.right {
  margin-top: 0.25rem;
  transform-origin: top left;
  transform: rotate(8deg);
}
main.home .bsslider-wrap .bsslider li.right2 {
  margin-top: 3.75rem;
  margin-left: 2.5rem;
  transform-origin: top left;
  transform: rotate(16deg);
}
main.home .bsslider-wrap .bsslider li:before {
  content: "";
  position: absolute;
  bottom: 25%;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(0deg, #231815 0%, rgba(35, 24, 21, 0) 100%);
}
main.home .bsslider-wrap .bsslider li figure {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
main.home .bsslider-wrap .bsslider li figure img {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}
main.home .bsslider-wrap .bsslider li div {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 1em 1.5em 1em;
}
main.home .bsslider-wrap .bsslider li div > * {
  position: relative;
}
main.home .bsslider-wrap .bsslider li div h4 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 0.25rem;
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
}
main.home .bsslider-wrap .bsslider li div h4 .en {
  display: inline-block;
  margin-right: 0.2em;
  font-size: 1.5rem;
}
main.home .bsslider-wrap .bsslider li div p {
  font-size: 0.75rem;
}
main.home .bsslider-wrap .slick-list {
  overflow: visible !important;
}
main.home .bsslider-wrap .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  pointer-events: auto;
}
main.home .bsslider-wrap .arrow::before {
  content: "";
  display: block;
  transform: rotate(45deg);
  width: 2.5rem;
  height: 2.5rem;
  margin-left: 3em;
  border-top: 3px solid rgba(255, 255, 255, 0.7);
  border-right: 3px solid rgba(255, 255, 255, 0.7);
}
main.home .bsslider-wrap .arrow-prev {
  left: 2rem;
  transform: scale(-1, 1);
}
main.home .bsslider-wrap .arrow-next {
  right: 2rem;
}
main.home .works {
  margin-top: -4rem;
  padding-bottom: 6rem;
  text-align: center;
}
@media screen and (max-width: 743px) {
  main.home .works p {
    text-align: left;
  }
}
main.home .works ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1rem auto;
}
@media print, screen and (min-width: 744px) {
  main.home .works ul {
    width: 50em;
  }
}
@media screen and (max-width: 743px) {
  main.home .works ul {
    justify-content: space-between;
  }
}
main.home .works ul li {
  width: 10em;
  margin: 0.25rem;
  padding: 0.25em;
  border-radius: 3em;
  color: #FFFFFF;
  background-color: #660000;
}
@media screen and (max-width: 743px) {
  main.home .works ul li {
    width: 32%;
    margin: 0.25rem 0;
    font-size: 0.8rem;
  }
}
main.home .brand {
  padding: 4rem 0;
  text-align: center;
}
main.home .brand .brand-marquee {
  overflow: hidden;
  width: 100%;
  margin-bottom: 3rem;
}
main.home .brand .brand-marquee .track {
  display: flex;
  width: max-content;
  animation: scroll-left 120s linear infinite;
}
main.home .brand .brand-marquee .slide {
  position: relative;
  flex: 0 0 auto;
  margin-right: 1px;
  width: 10em;
  height: 10em;
  overflow: hidden;
}
main.home .brand .brand-marquee .slide.special-brands {
  width: 20em;
}
main.home .brand .brand-marquee .slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
main.home .brand .brand-marquee .slide figure {
  width: 100%;
  height: 100%;
}
main.home .brand .brand-marquee .slide figure img {
  height: 100%;
  object-fit: cover;
}
main.home .brand .brand-marquee .slide p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}
main.home .brand .brand-marquee .slide p span {
  display: block;
}
main.home .brand .brand-marquee .slide p span.en {
  margin-bottom: 0.125em;
  font-size: 1.3rem;
  line-height: 1.25em;
}
main.home .brand .brand-marquee .slide p span.ja {
  font-size: 0.75rem;
  line-height: 1.5em;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  main.home .brand .brand-marquee .track {
    animation-duration: 100s;
  }
  main.home .brand .brand-marquee .slide {
    width: 8em;
    height: 8em;
  }
  main.home .brand .brand-marquee .slide.special-brands {
    width: 16em;
  }
}
@media screen and (max-width: 743px) {
  main.home .brand h2 + p {
    text-align: left;
  }
}
main.home .brand p.link {
  margin: 2rem auto;
}
main.home .brand .official {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4rem;
}
main.home .brand .official ul {
  margin: 0.5rem auto 2rem auto;
}
@media print, screen and (min-width: 744px) {
  main.home .brand .official ul {
    display: flex;
    width: 60rem;
  }
}
main.home .brand .official ul li {
  overflow: hidden;
}
@media print, screen and (min-width: 744px) {
  main.home .brand .official ul li {
    width: 50%;
  }
}
@media screen and (max-width: 743px) {
  main.home .brand .official ul li {
    margin-bottom: 1rem;
  }
}
main.home .brand .official ul li a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
main.home .brand .official ul li a .detail {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 1em;
  color: #FFFFFF;
  background-color: #011E41;
}
main.home .brand .official ul li a .detail div {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-left: 5em;
}
main.home .brand .official ul li a .detail div::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 4.5em;
  height: 5.5em;
  background: url(../images/logo-londonpottery.svg) no-repeat center bottom/contain;
}
main.home .brand .official ul li a .detail h4 {
  align-items: flex-start;
  margin-bottom: 0;
}
main.home .brand .official ul li a .detail h4 .en {
  font-size: 1.5rem;
  line-height: 1em;
}
main.home .brand .official ul li a:hover {
  opacity: 0.9;
}
main.home .brand .official ul li a:hover img {
  transform: scale(1.05);
}
main.home .brand .official ul li:nth-child(2) {
  margin-left: 1px;
}
main.home .brand .official ul li:nth-child(2) .detail {
  color: #BE8D1B;
  background-color: #F4ECD7;
}
main.home .brand .official ul li:nth-child(2) .detail div::before {
  background: url(../images/logo-grandir.svg) no-repeat center bottom/contain;
}
main.home .brand .official ul li:nth-child(2) .detail > span {
  position: absolute;
  right: 1em;
  bottom: 50%;
  padding: 0 1em;
  border-radius: 2em;
  color: #FFFFFF;
  background-color: #BE8D1B;
  font-size: 0.75rem;
}
main.home .ig {
  padding: 4rem 0;
  background-color: #F6F5F4;
  text-align: center;
}
@media screen and (max-width: 743px) {
  main.home .ig h2 + p {
    text-align: left;
  }
}
main.home .ig .smashbaloon {
  margin: 2rem auto;
}
@media print, screen and (min-width: 744px) {
  main.home .ig .smashbaloon {
    width: 70%;
  }
}
@media screen and (max-width: 743px) {
  main.home .ig .smashbaloon {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
main.home .ig .smashbaloon .igfeed p {
  margin-top: 2rem;
}
main.home .ig .smashbaloon .igfeed p a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 14rem;
  padding: 0.75em 2em;
  border-radius: 3em;
  color: #FFFFFF;
  background-color: #124a36;
}
@media screen and (max-width: 743px) {
  main.home .ig .smashbaloon .igfeed p a {
    min-width: initial;
    width: 16em;
  }
}
main.home .ig .smashbaloon .igfeed p a:hover {
  background-color: #BE8D1B;
}
main.home .ig .smashbaloon .igfeed p a::before {
  content: "";
  display: block;
  width: 1.25em;
  height: 1.25em;
  margin-right: 0.25rem;
  background: url(../images/icon/icon-ig.svg) no-repeat center center/contain;
}
@media screen and (max-width: 743px) {
  main.home .ig .smashbaloon .igfeed:nth-of-type(2) {
    margin-top: 4rem;
  }
}
main.home .ig .smashbaloon .igfeed:nth-of-type(2) p a {
  background-color: #660000;
}
main.home .ig .smashbaloon .igfeed:nth-of-type(2) p a:hover {
  background-color: #BE8D1B;
}
main.home .news {
  padding: 6rem 0;
}
@media print, screen and (min-width: 744px) {
  main.home .news .wrap {
    display: flex;
    justify-content: center;
  }
  main.home .news .wrap h2 {
    align-items: flex-start;
    width: 6rem;
    margin-right: 6rem;
    padding-top: 0.5rem;
  }
}
@media print, screen and (min-width: 744px) {
  main.home .news .wrap div {
    width: 40em;
  }
}
main.home .news .wrap div ul {
  margin-bottom: 3rem;
}
main.home .news .wrap div ul li {
  width: 100%;
  padding: 0.5rem 0;
  border-bottom: 1px solid #CCCCCC;
}
main.home .news .wrap div ul li a {
  display: flex;
  align-items: center;
  padding-right: 0.5em;
}
@media screen and (max-width: 743px) {
  main.home .news .wrap div ul li a {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 1.5em;
  }
}
main.home .news .wrap div ul li a time {
  margin-right: 1em;
  color: #B0A8A0;
}
@media print, screen and (min-width: 744px) {
  main.home .news .wrap div ul li a time {
    width: 6rem;
  }
}
@media print, screen and (min-width: 744px) {
  main.home .news .wrap div ul li a p {
    width: calc(100% - 6rem);
    padding-right: 1.5em;
  }
}
main.home .news .wrap div ul li a::after {
  content: "";
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  margin-left: auto;
  background-color: #660000;
  mask: url("../images/icon/icon-arrow.svg") no-repeat center;
  -webkit-mask: url("../images/icon/icon-arrow.svg") no-repeat center;
  mask-size: contain;
}
@media screen and (max-width: 743px) {
  main.home .news .wrap div ul li a::after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
}
@media print, screen and (min-width: 744px) {
  main.home .news .wrap div .link {
    text-align: right;
  }
}

/* ----------------------------------------------------------
 brands css
---------------------------------------------------------- */
main.brands {
  /* pagetitle
  ----------------------------------------- */
  /* official
  ----------------------------------------- */
  /* other
  ----------------------------------------- */
  /* toservice
  ----------------------------------------- */
}
main.brands section.pagetitle .description {
  text-align: center;
}
main.brands section.pagetitle .description p:nth-of-type(1) {
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5em;
}
@media screen and (max-width: 743px) {
  main.brands section.pagetitle .description p:nth-of-type(1) {
    font-size: 1.25rem;
    text-align: center;
  }
}
main.brands section.official {
  padding: 2rem 0;
}
@media screen and (max-width: 743px) {
  main.brands section.official h2 .en {
    font-size: 1.5rem !important;
  }
}
main.brands section.official article {
  margin-top: 3rem;
  color: #FFFFFF;
  background-color: #011E41;
}
@media print, screen and (min-width: 744px) {
  main.brands section.official article {
    padding: 4rem 0;
  }
}
main.brands section.official article .wrap {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 743px) {
  main.brands section.official article .wrap {
    flex-direction: column-reverse;
    width: 100%;
  }
}
@media print, screen and (min-width: 744px) {
  main.brands section.official article .wrap .detail {
    width: 65%;
    padding-right: 4rem;
  }
}
@media screen and (max-width: 743px) {
  main.brands section.official article .wrap .detail {
    padding: 2rem;
  }
}
main.brands section.official article .wrap .detail > div {
  position: relative;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
  padding-left: 5em;
  padding-bottom: 0.75rem;
}
@media screen and (max-width: 743px) {
  main.brands section.official article .wrap .detail > div {
    justify-content: center;
    align-items: center;
    padding-left: 0;
  }
}
main.brands section.official article .wrap .detail > div:before {
  content: "";
  display: block;
  width: 4em;
  height: 5em;
  background: url(../images/logo-londonpottery.svg) no-repeat center bottom/contain;
}
@media print, screen and (min-width: 744px) {
  main.brands section.official article .wrap .detail > div:before {
    position: absolute;
    left: 0;
    bottom: 0.75rem;
  }
}
@media screen and (max-width: 743px) {
  main.brands section.official article .wrap .detail > div:before {
    width: 3em;
    height: 3.5em;
    margin-right: 0.5rem;
  }
}
main.brands section.official article .wrap .detail > div h3 {
  align-items: flex-start;
  margin-bottom: 0;
}
main.brands section.official article .wrap .detail h4 {
  margin: 1em 0;
  font-size: 1.125rem;
}
main.brands section.official article .wrap .detail h4 + p {
  font-size: 0.9rem;
}
main.brands section.official article .wrap .detail .link {
  margin-top: 2rem;
}
@media screen and (max-width: 743px) {
  main.brands section.official article .wrap .detail .link {
    margin: 1rem auto;
  }
}
main.brands section.official article .wrap .detail .link a {
  color: #011E41;
  background-color: #FFFFFF;
}
@media screen and (max-width: 743px) {
  main.brands section.official article .wrap .detail .link a {
    width: 100%;
  }
}
main.brands section.official article .wrap .detail .link a::after {
  background-color: #011E41;
}
main.brands section.official article .wrap .detail .link a:hover {
  color: #FFFFFF;
  background-color: #BE8D1B;
}
main.brands section.official article .wrap .detail .link a:hover::after {
  background-color: #FFFFFF;
}
main.brands section.official article .wrap figure {
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media print, screen and (min-width: 744px) {
  main.brands section.official article .wrap figure {
    width: 35%;
  }
}
@media screen and (max-width: 743px) {
  main.brands section.official article .wrap figure {
    aspect-ratio: 16/9;
  }
}
main.brands section.official article .wrap figure img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
main.brands section.official article.grandir {
  color: #231815;
  background-color: #F4ECD7;
}
@media print, screen and (min-width: 744px) {
  main.brands section.official article.grandir .wrap {
    flex-direction: row-reverse;
  }
}
@media print, screen and (min-width: 744px) {
  main.brands section.official article.grandir .wrap .detail {
    padding: 0 0 0 4rem;
  }
}
main.brands section.official article.grandir .wrap .detail > div {
  color: #BE8D1B;
  border-bottom: 1px solid #BE8D1B;
}
main.brands section.official article.grandir .wrap .detail > div:before {
  content: "";
  background: url(../images/logo-grandir.svg) no-repeat center bottom/contain;
}
main.brands section.official article.grandir .wrap .detail > div > span {
  position: absolute;
  right: 1em;
  bottom: 50%;
  padding: 0 1em;
  border-radius: 2em;
  color: #FFFFFF;
  background-color: #BE8D1B;
  font-size: 0.75rem;
}
@media screen and (max-width: 743px) {
  main.brands section.official article.grandir .wrap .detail > div > span {
    top: 0;
    left: 50%;
    bottom: initial;
    right: initial;
    display: block;
    width: 80%;
    margin: 0 auto;
    transform: translate(-50%, -150%);
    text-align: center;
  }
}
main.brands section.official article.grandir .wrap .detail .link a {
  color: #BE8D1B;
}
main.brands section.official article.grandir .wrap .detail .link a::after {
  background-color: #BE8D1B;
}
main.brands section.official article.grandir .wrap .detail .link a:hover {
  color: #FFFFFF;
}
main.brands section.official article.grandir .wrap .detail .link a:hover::after {
  background-color: #FFFFFF;
}
main.brands section.other {
  padding: 4rem 0;
  /* モーダル */
}
main.brands section.other h2 + p {
  text-align: center;
}
@media screen and (max-width: 743px) {
  main.brands section.other h2 + p {
    margin-bottom: 2rem;
  }
}
main.brands section.other ul {
  margin-top: 0.5rem;
}
@media print, screen and (min-width: 744px) {
  main.brands section.other ul {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
  }
}
main.brands section.other ul li {
  margin-bottom: 0.5rem;
}
@media print, screen and (min-width: 744px) {
  main.brands section.other ul li {
    width: calc((100% - 6px) / 4);
    margin-right: 2px;
    margin-bottom: 1rem;
  }
}
main.brands section.other ul li a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
main.brands section.other ul li a::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  transition: 0.3s;
}
main.brands section.other ul li a:hover::before {
  background-color: rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}
main.brands section.other ul li a figure {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  overflow: hidden;
}
@media screen and (max-width: 743px) {
  main.brands section.other ul li a figure {
    aspect-ratio: 3.5/1;
  }
}
main.brands section.other ul li a figure img {
  height: 100%;
  object-fit: cover;
}
main.brands section.other ul li a p {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #FFFFFF;
  text-align: center;
}
main.brands section.other ul li a p span {
  display: block;
}
main.brands section.other ul li a p span.en {
  font-size: 1.25rem;
  line-height: 1.5em;
}
main.brands section.other ul li a p span.ja {
  font-size: 0.75rem;
  line-height: 1.5em;
}
main.brands section.other ul li:nth-child(4n) {
  margin-right: 0;
}
main.brands section.other ul li:hover img {
  transform: scale(1.05);
}
@media print, screen and (min-width: 744px) {
  main.brands section.other ul.normalbrands li {
    width: calc((100% - 10px) / 6);
    margin-right: 2px;
  }
}
main.brands section.other ul.normalbrands li:nth-child(6n) {
  margin-right: 0;
}
main.brands section.other .brand-modal {
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  height: 100vh;
  inset: 0;
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}
main.brands section.other .brand-modal.active {
  display: flex;
}
main.brands section.other .brand-modal .modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}
main.brands section.other .brand-modal .modal-close {
  position: absolute;
  z-index: 11;
  top: 25%;
  right: 4rem;
  width: 2.5rem;
  height: 2.5rem;
  color: #FFFFFF;
  background: none;
  border: none;
  cursor: pointer;
  transform: translateY(-12.5vh);
}
@media screen and (max-width: 743px) {
  main.brands section.other .brand-modal .modal-close {
    right: 2rem;
  }
}
main.brands section.other .brand-modal .modal-close:hover {
  opacity: 0.5;
}
main.brands section.other .brand-modal .modal-close::before, main.brands section.other .brand-modal .modal-close::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  background-color: #FFFFFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
}
main.brands section.other .brand-modal .modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
main.brands section.other .brand-modal .modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
main.brands section.other .brand-modal .modal-content {
  position: relative;
  color: #FFFFFF;
  background: transparent;
  max-width: 75rem;
  width: 98%;
  margin: 0 auto;
  overflow-y: auto;
  z-index: 10;
}
@media screen and (max-width: 743px) {
  main.brands section.other .brand-modal .modal-content {
    padding: 0 2rem;
    width: 100%;
    max-width: initial;
  }
}
main.brands section.other .brand-modal .modal-content .swiper-wrapper {
  align-items: center;
}
main.brands section.other .brand-modal .modal-content .swiper-button-next,
main.brands section.other .brand-modal .modal-content .swiper-button-prev {
  color: #FFFFFF !important;
}
main.brands section.other .brand-modal .modal-content .swiper-button-next:hover,
main.brands section.other .brand-modal .modal-content .swiper-button-prev:hover {
  opacity: 0.5;
}
@media screen and (max-width: 743px) {
  main.brands section.other .brand-modal .modal-content .swiper-button-next {
    right: -0.25em !important;
  }
  main.brands section.other .brand-modal .modal-content .swiper-button-prev {
    left: -0.25em !important;
  }
  main.brands section.other .brand-modal .modal-content .swiper-button-next:after,
  main.brands section.other .brand-modal .modal-content .swiper-button-prev:after {
    font-size: 1.35rem !important;
  }
}
main.brands section.other .brand-modal .modal-content .swiper-button-next.swiper-button-disabled,
main.brands section.other .brand-modal .modal-content .swiper-button-prev.swiper-button-disabled {
  opacity: 0 !important;
}
main.brands section.other .brand-modal .modal-content h4 {
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #FFFFFF;
}
@media screen and (max-width: 743px) {
  main.brands section.other .brand-modal .modal-content p {
    font-size: 0.75rem;
  }
}
main.brands section.other .brand-modal .modal-content .modal-slide-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 85%;
  margin: 0 auto;
}
@media print, screen and (min-width: 744px) {
  main.brands section.other .brand-modal .modal-content .modal-slide-inner {
    flex-direction: row;
  }
}
@media print, screen and (min-width: 744px) {
  main.brands section.other .brand-modal .modal-content .modal-slide-inner .detail {
    width: 60%;
    padding-right: 2rem;
  }
}
@media screen and (max-width: 743px) {
  main.brands section.other .brand-modal .modal-content .modal-slide-inner .detail h4 {
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
  }
  main.brands section.other .brand-modal .modal-content .modal-slide-inner .detail h4 .en {
    font-size: 1.25rem;
  }
}
@media print, screen and (min-width: 744px) {
  main.brands section.other .brand-modal .modal-content .modal-slide-inner figure {
    flex-shrink: 0;
    width: 40%;
  }
}
main.brands section.other .brand-modal .modal-content .modal-slide-inner figure img {
  height: auto;
  object-fit: cover;
  aspect-ratio: 3/2;
  overflow: hidden;
}
@media screen and (max-width: 743px) {
  main.brands section.other .brand-modal .modal-content .modal-slide-inner figure img {
    aspect-ratio: 3/2;
  }
}
main.brands section.toservice {
  margin-bottom: 6rem;
}

/* ----------------------------------------------------------
 service css
---------------------------------------------------------- */
main.service {
  /* pagetitle
  ----------------------------------------- */
  /* features
  ----------------------------------------- */
  /* lowprice
  ----------------------------------------- */
  /* import
  ----------------------------------------- */
  /* management
  ----------------------------------------- */
  /* works
  ----------------------------------------- */
  /* pickup
  ----------------------------------------- */
  /* shopinfo
  ----------------------------------------- */
}
main.service section.pagetitle .description {
  text-align: center;
}
main.service section.pagetitle .description p:nth-of-type(1) {
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5em;
}
@media screen and (max-width: 743px) {
  main.service section.pagetitle .description p:nth-of-type(1) {
    font-size: 1.25rem;
    text-align: center;
  }
}
main.service section.features {
  position: relative;
  padding: 6rem 0 4rem 0;
  background-color: #F6F5F4;
}
main.service section.features::before {
  content: "";
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: block;
  width: 25vw;
  height: 45vw;
  background: url(../images/bg-text.svg) no-repeat center right/contain;
}
main.service section.features ol {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 3rem auto;
}
@media print, screen and (min-width: 744px) {
  main.service section.features ol {
    width: 60rem;
  }
}
main.service section.features ol li {
  width: 18rem;
  margin: 0 1rem;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  counter-increment: mycounter;
}
@media screen and (max-width: 743px) {
  main.service section.features ol li {
    width: 80%;
    margin: 0 auto 2rem auto;
  }
}
main.service section.features ol li:nth-child(n+4) {
  margin-top: 2rem;
}
main.service section.features ol li h3 {
  padding: 0.5em 0;
  color: #FFFFFF;
  background-color: #660000;
  font-size: 1.125rem;
  text-align: center;
}
main.service section.features ol li h3::before {
  content: counter(mycounter, decimal-leading-zero) ". ";
  counter-increment: count 1;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: 1.15em;
}
main.service section.features ol li p {
  padding: 0.75em 1em 1em 1em;
}
main.service section.lowprice {
  position: relative;
  padding: 6rem 0;
  color: #FFFFFF;
  background: #231815 url(../images/service/bg-service.webp) no-repeat center center/cover;
}
@media screen and (max-width: 743px) {
  main.service section.lowprice h2 .en {
    text-align: center;
  }
}
main.service section.lowprice::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
main.service section.lowprice .wrap {
  position: relative;
}
@media screen and (max-width: 743px) {
  main.service section.lowprice .wrap {
    flex-direction: column;
  }
}
main.service section.lowprice .wrap .wrap {
  display: flex;
  margin-top: 3rem;
}
@media print, screen and (min-width: 744px) {
  main.service section.lowprice .wrap .wrap figure {
    width: 45%;
  }
}
@media screen and (max-width: 743px) {
  main.service section.lowprice .wrap .wrap figure {
    margin-bottom: 1rem;
  }
}
@media print, screen and (min-width: 744px) {
  main.service section.lowprice .wrap .wrap .detail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 55%;
    padding-left: 2rem;
  }
}
main.service section.lowprice .wrap .wrap .detail h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
main.service section.import {
  padding: 6rem 0;
}
@media print, screen and (min-width: 744px) {
  main.service section.import .wrap > p {
    text-align: center;
  }
}
main.service section.import .wrap .image {
  display: flex;
  align-items: flex-start;
  margin: 3rem auto;
}
@media screen and (max-width: 743px) {
  main.service section.import .wrap .image {
    flex-direction: column;
  }
}
main.service section.import .wrap .image > figure {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
@media print, screen and (min-width: 744px) {
  main.service section.import .wrap .image > figure {
    width: calc(55% - 2rem);
    margin-right: 2rem;
  }
}
main.service section.import .wrap .image .detail {
  position: relative;
  margin-top: 2rem;
  padding: 1rem;
  background-color: #F4ECD7;
}
@media print, screen and (min-width: 744px) {
  main.service section.import .wrap .image .detail {
    width: 45%;
    padding: 2rem;
    border-radius: 1em;
  }
}
main.service section.import .wrap .image .detail::before {
  content: "";
  position: absolute;
  left: -4rem;
  bottom: 5.5rem;
  display: block;
  height: 4rem;
  width: 8rem;
  clip-path: polygon(75% 0, 100% 100%, 0 100%);
  background-color: #F4ECD7;
}
@media screen and (max-width: 743px) {
  main.service section.import .wrap .image .detail::before {
    z-index: 0;
    top: -3rem;
    bottom: initial;
    right: 3rem;
    left: initial;
    width: 4rem;
    height: 6rem;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
  }
}
main.service section.import .wrap .image .detail figure {
  position: relative;
}
main.service section.import .wrap .aacd {
  display: flex;
  width: 85%;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #F6F5F4;
}
@media screen and (max-width: 743px) {
  main.service section.import .wrap .aacd {
    flex-direction: column-reverse;
  }
}
@media print, screen and (min-width: 744px) {
  main.service section.import .wrap .aacd div {
    width: calc(100% - 10rem);
    padding-right: 2rem;
  }
}
main.service section.import .wrap .aacd div h3 {
  border-bottom: 1px solid #CCCCCC;
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  font-size: 1.25rem;
  font-weight: 500;
}
main.service section.import .wrap .aacd div p {
  font-size: 0.9rem;
}
main.service section.import .wrap .aacd div p a {
  display: inline;
  text-decoration: underline;
  color: #660000;
  font-weight: 500;
}
main.service section.import .wrap .aacd div p a:hover {
  color: #BE8D1B;
}
main.service section.import .wrap .aacd figure {
  width: 10rem;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  padding: 1.5rem;
  background-color: #FFFFFF;
}
@media screen and (max-width: 743px) {
  main.service section.import .wrap .aacd figure {
    width: 80%;
    height: 80%;
    margin: 0 auto 1rem auto;
  }
}
main.service section.management {
  padding: 6rem 0;
  background-color: #F4ECD7;
}
main.service section.management .wrap > p {
  text-align: center;
}
main.service section.management .wrap ul {
  margin-top: 3rem;
}
@media print, screen and (min-width: 744px) {
  main.service section.management .wrap ul {
    display: flex;
    justify-content: space-between;
  }
}
main.service section.management .wrap ul li {
  padding: 1.25rem;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
@media print, screen and (min-width: 744px) {
  main.service section.management .wrap ul li {
    width: calc((100% - 4.5rem) / 4);
  }
}
@media screen and (max-width: 743px) {
  main.service section.management .wrap ul li {
    margin-bottom: 2rem;
  }
}
main.service section.management .wrap ul li h3 {
  padding: 0.5em 0 0.25em 0;
  text-align: center;
  font-weight: 500;
}
main.service section.management .wrap ul li:nth-child(n+2) h3 {
  letter-spacing: 0.2em;
  padding-left: 0.2em;
}
main.service section.management .wrap ul li p {
  font-size: 0.9rem;
}
main.service section.works {
  padding: 6rem 0;
}
@media print, screen and (min-width: 744px) {
  main.service section.works h2 + p {
    text-align: center;
  }
}
main.service section.works ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem auto;
  font-size: 0.9rem;
}
@media print, screen and (min-width: 744px) {
  main.service section.works ul {
    width: 50em;
  }
}
main.service section.works ul li {
  width: 10em;
  margin: 0.25rem;
  padding: 0.25em;
  border-radius: 3em;
  color: #FFFFFF;
  background-color: #660000;
  text-align: center;
}
main.service section.works .case-swiper {
  width: 80%;
  margin: 4rem auto 0 auto;
}
@media screen and (max-width: 743px) {
  main.service section.works .case-swiper {
    width: 100%;
  }
  main.service section.works .case-swiper .swiper-button-next:after,
  main.service section.works .case-swiper .swiper-button-prev:after {
    font-size: 2rem !important;
  }
}
main.service section.works .case-swiper .swiper-slide {
  padding: 0.5rem;
  height: auto;
}
main.service section.works .case-swiper .swiper-slide article {
  display: flex;
  margin: 0 auto;
  padding: 2rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
@media print, screen and (min-width: 744px) {
  main.service section.works .case-swiper .swiper-slide article {
    width: calc(100% - 6rem);
  }
}
@media screen and (max-width: 743px) {
  main.service section.works .case-swiper .swiper-slide article {
    flex-direction: column-reverse;
    width: 90%;
    padding: 1rem;
  }
}
@media print, screen and (min-width: 744px) {
  main.service section.works .case-swiper .swiper-slide article .detail {
    width: 65%;
    padding-right: 2rem;
  }
}
main.service section.works .case-swiper .swiper-slide article .detail h3 {
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 0.25rem;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}
main.service section.works .case-swiper .swiper-slide article .detail h3 .en {
  color: #660000;
}
@media screen and (max-width: 743px) {
  main.service section.works .case-swiper .swiper-slide article .detail h3 span {
    display: block;
  }
}
main.service section.works .case-swiper .swiper-slide article .detail p {
  font-size: 0.9rem;
}
@media print, screen and (min-width: 744px) {
  main.service section.works .case-swiper .swiper-slide article .image {
    width: 35%;
  }
}
@media screen and (max-width: 743px) {
  main.service section.works .case-swiper .swiper-slide article .image {
    margin-bottom: 1rem;
  }
}
main.service section.works .case-swiper .swiper-button-next, main.service section.works .case-swiper .swiper-button-prev {
  color: #231815 !important;
}
main.service section.works .case-swiper .swiper-button-next:hover, main.service section.works .case-swiper .swiper-button-prev:hover {
  color: #BE8D1B !important;
}
main.service section.works .case-swiper .swiper-button-next.swiper-button-disabled, main.service section.works .case-swiper .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}
main.service section.pickup {
  background-color: #F6F5F4;
}
main.service section.shopinfo {
  padding-top: 4rem;
}
main.service section.shopinfo h3 .en {
  font-size: 1.75rem;
}

/* ----------------------------------------------------------
 company css
---------------------------------------------------------- */
main.company {
  /* description
  ----------------------------------------- */
  /* message
  ----------------------------------------- */
  /* companyinfo
  ----------------------------------------- */
  /* history
  ----------------------------------------- */
  /* toservice
  ----------------------------------------- */
}
main.company section.pagetitle {
  position: relative;
  padding-bottom: 2rem;
}
main.company section.pagetitle::before {
  content: "";
  position: absolute;
  bottom: -1rem;
  right: -2rem;
  display: block;
  width: 20vw;
  height: 40vw;
  background: url(../images/bg-text.svg) no-repeat bottom right/contain;
}
main.company section.pagetitle .description {
  padding-top: 4rem;
  text-align: center;
}
main.company section.pagetitle .description .scroll-decoration {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 3rem auto;
  height: 9rem;
}
@media screen and (max-width: 743px) {
  main.company section.pagetitle .description .scroll-decoration {
    height: 6rem;
  }
}
main.company section.pagetitle .description .scroll-decoration .scroll-track {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}
main.company section.pagetitle .description .scroll-decoration .scroll-track img {
  width: 9rem;
  height: 9rem;
  object-fit: cover;
  margin-right: 0.25rem;
  flex-shrink: 0;
}
@media screen and (max-width: 743px) {
  main.company section.pagetitle .description .scroll-decoration .scroll-track img {
    width: 6rem;
    height: 6rem;
  }
}
main.company section.pagetitle .description .scroll-decoration::before, main.company section.pagetitle .description .scroll-decoration::after {
  content: "";
  position: absolute;
  top: 0;
  width: 4.5rem;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
main.company section.pagetitle .description .scroll-decoration::before {
  left: 0;
  background: linear-gradient(to right, white 0%, transparent 100%);
}
main.company section.pagetitle .description .scroll-decoration::after {
  right: 0;
  background: linear-gradient(to left, white 0%, transparent 100%);
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
main.company section.pagetitle .description h2 {
  margin-bottom: 3rem;
}
main.company section.pagetitle .description h2 .ja {
  position: relative;
  padding-left: 0.25em;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 1.25rem;
  font-style: normal;
  letter-spacing: 0.25em;
}
main.company section.pagetitle .description h2 .ja::before, main.company section.pagetitle .description h2 .ja::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 2em;
  height: 1px;
  background-color: #CCCCCC;
}
main.company section.pagetitle .description h2 .ja::before {
  left: -2.5em;
}
main.company section.pagetitle .description h2 .ja::after {
  right: -2.5em;
}
@media print, screen and (min-width: 744px) {
  main.company section.pagetitle .description h3 span {
    margin: 2rem auto;
    padding: 0.5em 1em;
    border-radius: 3em;
    color: #FFFFFF;
    background-color: #660000;
    font-weight: 500;
  }
}
@media screen and (max-width: 743px) {
  main.company section.pagetitle .description h3 {
    margin: 2rem auto;
    padding: 0.5em 1em;
    border-radius: 1em;
    color: #FFFFFF;
    background-color: #660000;
    font-weight: 500;
  }
}
main.company section.pagetitle .description p {
  margin-top: 2rem;
}
main.company section.message {
  position: relative;
  padding: 4rem 0;
  color: #FFFFFF;
  background: #231815 url(../images/pic-message.webp) no-repeat center center/cover;
}
main.company section.message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
main.company section.message .wrap {
  position: relative;
  text-align: left;
}
@media print, screen and (min-width: 744px) {
  main.company section.message .wrap {
    max-width: 50rem;
  }
}
@media print, screen and (min-width: 744px) {
  main.company section.message .wrap h2 {
    flex-direction: row;
    align-items: center;
  }
}
main.company section.message .wrap h2 .en {
  margin-right: 1rem;
}
main.company section.message .wrap p.message-text {
  margin: 1em auto 2em auto;
}
main.company section.message .wrap p.message-name {
  text-align: right;
}
@media screen and (max-width: 743px) {
  main.company section.message .wrap p.message-name {
    text-align: center;
  }
}
main.company section.companyinfo {
  padding: 6rem 0;
}
main.company section.companyinfo dl {
  display: flex;
  flex-wrap: wrap;
  margin: 3rem auto 2rem auto;
}
@media print, screen and (min-width: 744px) {
  main.company section.companyinfo dl {
    width: 60rem;
  }
}
@media screen and (max-width: 743px) {
  main.company section.companyinfo dl {
    flex-direction: column;
  }
}
main.company section.companyinfo dl dt {
  color: #660000;
  font-weight: 500;
}
@media print, screen and (min-width: 744px) {
  main.company section.companyinfo dl dt {
    width: 10em;
    padding: 0.75em 0;
    border-bottom: 1px solid #CCCCCC;
  }
}
main.company section.companyinfo dl dd {
  border-bottom: 1px solid #CCCCCC;
}
@media print, screen and (min-width: 744px) {
  main.company section.companyinfo dl dd {
    width: calc(100% - 10em);
    padding: 0.75em 0;
  }
}
@media screen and (max-width: 743px) {
  main.company section.companyinfo dl dd {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
  }
}
main.company section.companyinfo .access {
  display: flex;
  margin: 3rem auto 0 auto;
}
@media print, screen and (min-width: 744px) {
  main.company section.companyinfo .access {
    align-items: flex-start;
    width: 60rem;
  }
}
@media screen and (max-width: 743px) {
  main.company section.companyinfo .access {
    flex-direction: column-reverse;
  }
}
@media print, screen and (min-width: 744px) {
  main.company section.companyinfo .access .map {
    width: 35%;
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 743px) {
  main.company section.companyinfo .access .map {
    margin-top: 2rem;
  }
}
main.company section.companyinfo .access .map iframe {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 1/1 !important;
}
@media print, screen and (min-width: 744px) {
  main.company section.companyinfo .access .detail {
    width: 65%;
    padding-left: 2rem;
  }
}
main.company section.companyinfo .access .detail h3 {
  align-items: center;
  margin-bottom: 0.5rem;
  color: #660000;
}
@media print, screen and (min-width: 744px) {
  main.company section.companyinfo .access .detail h3 {
    flex-direction: row;
  }
  main.company section.companyinfo .access .detail h3 .en {
    margin-right: 1rem;
  }
}
main.company section.companyinfo .access .detail article {
  margin-top: 1rem;
}
main.company section.companyinfo .access .detail article > * {
  padding: 0 1em;
}
main.company section.companyinfo .access .detail article h4 {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  padding: 0.25em 1em;
  border-radius: 3em;
  color: #FFFFFF;
  background-color: #660000;
}
main.company section.companyinfo .access .detail article h4::before {
  content: "";
  display: inline-block;
  width: 2em;
  height: 2em;
  margin-right: 0.25em;
  background-color: #FFFFFF;
  mask: url(../images/icon/icon-bus.svg) no-repeat center;
  -webkit-mask: url(../images/icon/icon-bus.svg) no-repeat center;
  mask-size: contain;
}
main.company section.companyinfo .access .detail article.car h4:before {
  mask: url(../images/icon/icon-car.svg) no-repeat center;
  -webkit-mask: url(../images/icon/icon-car.svg) no-repeat center;
}
main.company section.companyinfo .access .detail article p {
  font-size: 0.9rem;
}
main.company section.companyinfo .access .detail article p a {
  position: relative;
  display: inline-block;
  border-bottom: 1px solid #660000;
  margin-right: 0.25em;
  color: #660000;
}
main.company section.companyinfo .access .detail article p a::after {
  content: "";
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  margin-left: 0.25em;
  background-color: #660000;
  mask: url(../images/icon/icon-link.svg) no-repeat center;
  -webkit-mask: url(../images/icon/icon-link.svg) no-repeat center;
  mask-size: contain;
}
main.company section.companyinfo .access .detail article ul {
  margin-top: 0.5rem;
}
main.company section.companyinfo .access .detail article ul li {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 0.9rem;
}
main.company section.companyinfo .access .detail article ul li::before {
  content: "・";
}
main.company section.history {
  position: relative;
  margin-bottom: 4rem;
  padding: 4rem 0;
  color: #FFFFFF;
  background: #231815 url(../images/pic-history.webp) no-repeat center center/cover;
}
main.company section.history::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
main.company section.history .wrap {
  position: relative;
}
main.company section.history .wrap h2 {
  align-items: flex-start;
}
main.company section.history .wrap h2 .line {
  flex-direction: row;
  align-items: center;
}
main.company section.history .wrap h2 .line .en {
  margin-right: 0.5em;
}
main.company section.history .wrap h2 .line:before {
  width: 25vw;
}
main.company section.history .wrap h2 .line::after {
  width: 100vw;
}
main.company section.history .history-slick .slick-track {
  display: flex;
}
main.company section.history .history-slick .slick-slide {
  border-radius: 0.5rem;
  margin: 0 0.5rem;
  padding: 1rem;
  height: 100%;
  color: #231815;
  background-color: #FFFFFF;
  height: auto !important;
}
main.company section.history .history-slick .slick-slide h3 {
  border-bottom: 1px solid #CCCCCC;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
}
main.company section.history .history-slick .slick-slide p {
  font-size: 0.9rem;
}
main.company section.history .button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 2rem;
}
main.company section.history .button .slick-prev-custom {
  display: block;
  width: 2rem;
  height: 2rem;
  margin: 0 0.25rem;
  border: 1px solid #FFFFFF;
  border-radius: 100%;
  background: url(../images/icon/icon-arrow.svg) no-repeat center center/50%;
  transform: scale(-1, 1);
  cursor: pointer;
}
main.company section.history .button .slick-next-custom {
  display: block;
  width: 2rem;
  height: 2rem;
  margin: 0 0.25rem;
  border: 1px solid #FFFFFF;
  border-radius: 100%;
  background: url(../images/icon/icon-arrow.svg) no-repeat center center/50%;
  cursor: pointer;
}
main.company section.history .button .slick-disabled {
  opacity: 0.3;
}
main.company section.toservice {
  margin: 4rem auto;
}

/* ----------------------------------------------------------
 tsurugi css
---------------------------------------------------------- */
main.tsurugi {
  /* description
  ----------------------------------------- */
  /* shop
  ----------------------------------------- */
  /* online
  ----------------------------------------- */
}
main.tsurugi section.pagetitle {
  background-color: #F6F5F4;
}
@media print, screen and (min-width: 744px) {
  main.tsurugi section.pagetitle .description .wrap {
    width: 55rem;
    display: flex;
    align-items: center;
  }
}
main.tsurugi section.pagetitle .description .wrap .logo {
  width: 22.5rem;
  padding: 1rem;
  background-color: #124a36;
}
@media screen and (max-width: 743px) {
  main.tsurugi section.pagetitle .description .wrap .logo {
    width: 40vw;
    margin: 0 auto 2rem auto;
  }
}
main.tsurugi section.pagetitle .description .wrap .logo p {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
}
@media print, screen and (min-width: 744px) {
  main.tsurugi section.pagetitle .description .wrap .detail {
    padding-left: 2rem;
  }
}
main.tsurugi section.pagetitle .description .wrap .detail h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 743px) {
  main.tsurugi section.pagetitle .description .wrap .detail h2 {
    text-align: center;
  }
}
main.tsurugi section.shop {
  padding: 6rem 0;
}
main.tsurugi section.shop h2 + p {
  text-align: center;
}
main.tsurugi section.shop .wrap {
  max-width: 68.75rem;
}
main.tsurugi section.shop .wrap .flex {
  margin: 3rem auto 2rem auto;
}
@media print, screen and (min-width: 744px) {
  main.tsurugi section.shop .wrap .flex {
    display: flex;
    align-items: center;
  }
}
main.tsurugi section.shop .wrap .flex figure {
  width: 45%;
}
@media screen and (max-width: 743px) {
  main.tsurugi section.shop .wrap .flex figure {
    width: 90%;
    margin: 0 auto 1rem auto;
  }
}
@media print, screen and (min-width: 744px) {
  main.tsurugi section.shop .wrap .flex dl {
    display: flex;
    flex-wrap: wrap;
    width: 55%;
    padding-left: 2rem;
  }
}
@media screen and (max-width: 743px) {
  main.tsurugi section.shop .wrap .flex dl {
    width: 90%;
    margin: 0 auto;
  }
}
main.tsurugi section.shop .wrap .flex dl dt {
  color: #124a36;
  font-weight: 500;
}
@media print, screen and (min-width: 744px) {
  main.tsurugi section.shop .wrap .flex dl dt {
    width: 7em;
    padding: 0.75em 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #CCCCCC;
  }
}
main.tsurugi section.shop .wrap .flex dl dd {
  border-bottom: 1px solid #CCCCCC;
}
@media print, screen and (min-width: 744px) {
  main.tsurugi section.shop .wrap .flex dl dd {
    width: calc(100% - 7em);
    padding: 0.75em 0;
  }
}
@media screen and (max-width: 743px) {
  main.tsurugi section.shop .wrap .flex dl dd {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
  }
}
main.tsurugi section.shop .wrap .access {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
main.tsurugi section.shop .wrap .access h3 {
  width: 100%;
  margin-bottom: 0.5rem;
  color: #124a36;
}
@media print, screen and (min-width: 744px) {
  main.tsurugi section.shop .wrap .access h3 {
    flex-direction: row;
    align-items: center;
  }
  main.tsurugi section.shop .wrap .access h3 .en {
    margin-right: 1rem;
  }
}
main.tsurugi section.shop .wrap .access article {
  margin-top: 1rem;
}
@media print, screen and (min-width: 744px) {
  main.tsurugi section.shop .wrap .access article {
    width: calc(50% - 0.5rem);
  }
}
main.tsurugi section.shop .wrap .access article > * {
  padding: 0 1em;
}
main.tsurugi section.shop .wrap .access article h4 {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  padding: 0.25em 1em;
  border-radius: 3em;
  color: #FFFFFF;
  background-color: #124a36;
}
main.tsurugi section.shop .wrap .access article h4::before {
  content: "";
  display: inline-block;
  width: 2em;
  height: 2em;
  margin-right: 0.25em;
  background-color: #FFFFFF;
  mask: url(../images/icon/icon-bus.svg) no-repeat center;
  -webkit-mask: url(../images/icon/icon-bus.svg) no-repeat center;
  mask-size: contain;
}
main.tsurugi section.shop .wrap .access article.car h4:before {
  mask: url(../images/icon/icon-car.svg) no-repeat center;
  -webkit-mask: url(../images/icon/icon-car.svg) no-repeat center;
}
main.tsurugi section.shop .wrap .access article p {
  font-size: 0.9rem;
}
main.tsurugi section.shop .wrap .access article p a {
  position: relative;
  display: inline-block;
  border-bottom: 1px solid #124a36;
  margin-right: 0.25em;
  color: #124a36;
}
main.tsurugi section.shop .wrap .access article p a::after {
  content: "";
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  margin-left: 0.25em;
  background-color: #124a36;
  mask: url(../images/icon/icon-link.svg) no-repeat center;
  -webkit-mask: url(../images/icon/icon-link.svg) no-repeat center;
  mask-size: contain;
}
main.tsurugi section.shop .wrap .access article ul {
  margin-top: 0.5rem;
}
main.tsurugi section.shop .wrap .access article ul li {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 0.9rem;
}
main.tsurugi section.shop .wrap .access article ul li::before {
  content: "・";
}
main.tsurugi section.shop .map {
  margin-top: 4rem;
  width: 100%;
}
@media screen and (max-width: 743px) {
  main.tsurugi section.shop .map {
    width: 85%;
    margin: 2rem auto 0 auto;
  }
}
main.tsurugi section.shop .map iframe {
  width: 100% !important;
}
@media screen and (max-width: 743px) {
  main.tsurugi section.shop .map iframe {
    height: 100% !important;
    aspect-ratio: 1/1 !important;
  }
}
main.tsurugi section.online {
  margin: 2rem auto 0 auto;
  padding: 2rem 0;
  text-align: center;
  background: url(../images/pic-onlineshop.webp) no-repeat center center/cover;
}
main.tsurugi section.online div {
  padding: 3rem 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.5) 0%, #FFFFFF 100%);
  backdrop-filter: blur(6px);
}
main.tsurugi section.online div h2 {
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.75em;
}
main.tsurugi section.online div h2 + p {
  margin: 1rem auto;
}
main.tsurugi section.online div .link {
  margin: 2rem auto;
}
main.tsurugi section.online div .link a {
  margin: 0 0.5rem;
  background-color: #124a36;
  font-size: 0.9rem;
}
@media screen and (max-width: 743px) {
  main.tsurugi section.online div .link a {
    min-width: initial;
    width: 70%;
    margin: 0 auto 0.5rem auto;
  }
}
main.tsurugi section.online div .link a:hover {
  background-color: #BE8D1B;
}

/* ----------------------------------------------------------
 recruit css
---------------------------------------------------------- */
main.recruit {
  /* pagetitle
  ----------------------------------------- */
  /* message
  ----------------------------------------- */
  /* credo
  ----------------------------------------- */
  /* jobs
  ----------------------------------------- */
  /* entry
  ----------------------------------------- */
}
main.recruit section.pagetitle .description {
  text-align: center;
}
main.recruit section.pagetitle .description p:nth-of-type(1) {
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5em;
}
main.recruit section.message {
  position: relative;
  padding: 6rem 0;
  color: #FFFFFF;
  background: #231815 url(../images/recruit/bg-recruit.webp) no-repeat center center/cover;
}
@media screen and (max-width: 743px) {
  main.recruit section.message {
    padding: 4rem 0;
  }
}
main.recruit section.message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
main.recruit section.message .wrap {
  position: relative;
}
@media screen and (max-width: 743px) {
  main.recruit section.message .wrap h2 .en {
    text-align: center;
  }
}
main.recruit section.message .wrap h2 .ja {
  position: relative;
  padding-left: 0.25em;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 1.25rem;
  font-style: normal;
  letter-spacing: 0.25em;
}
main.recruit section.message .wrap h2 .ja::before, main.recruit section.message .wrap h2 .ja::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 2em;
  height: 1px;
  background-color: #CCCCCC;
}
main.recruit section.message .wrap h2 .ja::before {
  left: -2.5em;
}
main.recruit section.message .wrap h2 .ja::after {
  right: -2.5em;
}
main.recruit section.message .wrap .flex {
  margin-top: 3rem;
}
@media print, screen and (min-width: 744px) {
  main.recruit section.message .wrap .flex {
    display: flex;
    align-items: center;
  }
}
@media print, screen and (min-width: 744px) {
  main.recruit section.message .wrap .flex .detail {
    width: 60%;
    padding-right: 2rem;
  }
}
main.recruit section.message .wrap .flex .detail h3 {
  margin-bottom: 1.5rem;
  font-weight: 500;
  font-size: 1.25rem;
}
@media print, screen and (min-width: 744px) {
  main.recruit section.message .wrap .flex figure {
    width: 40%;
  }
}
@media screen and (max-width: 743px) {
  main.recruit section.message .wrap .flex figure {
    margin-top: 2rem;
  }
}
main.recruit section.credo {
  padding: 6rem 0;
}
@media print, screen and (min-width: 744px) {
  main.recruit section.credo .wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70rem;
  }
}
@media print, screen and (min-width: 744px) {
  main.recruit section.credo .wrap h2 {
    position: relative;
    align-items: flex-start;
    width: 25rem;
  }
}
main.recruit section.credo .wrap h2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2rem;
  display: block;
  width: 15vw;
  height: 20vw;
  background: url(../images/bg-text.svg) no-repeat center center/contain;
}
@media print, screen and (min-width: 744px) {
  main.recruit section.credo .wrap h2::before {
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 743px) {
  main.recruit section.credo .wrap h2::before {
    top: 3rem;
    left: initial;
    right: 1rem;
    width: 30vw;
    height: 40vw;
  }
}
main.recruit section.credo .wrap ol {
  display: flex;
  flex-wrap: wrap;
}
@media print, screen and (min-width: 744px) {
  main.recruit section.credo .wrap ol {
    justify-content: space-between;
    width: 35rem;
  }
}
@media screen and (max-width: 743px) {
  main.recruit section.credo .wrap ol {
    width: 82.5%;
    margin: 1rem auto;
  }
}
main.recruit section.credo .wrap ol li {
  position: relative;
  counter-increment: mycounter;
  border: 2px solid #BE8D1B;
  border-radius: 3em;
  margin-bottom: 1rem;
  padding: 0.5em 1em 0.5em 2em;
  color: #BE8D1B;
  background-color: #FFFFFF;
  text-align: center;
}
@media print, screen and (min-width: 744px) {
  main.recruit section.credo .wrap ol li {
    width: calc((100% - 1rem) / 2);
  }
}
@media screen and (max-width: 743px) {
  main.recruit section.credo .wrap ol li {
    width: 100%;
  }
}
@media print, screen and (min-width: 744px) {
  main.recruit section.credo .wrap ol li:nth-child(even) {
    margin-left: 1rem;
  }
}
@media print, screen and (min-width: 744px) {
  main.recruit section.credo .wrap ol li:nth-child(3), main.recruit section.credo .wrap ol li:nth-child(4) {
    transform: translateX(1rem);
  }
}
main.recruit section.credo .wrap ol li::before {
  content: counter(mycounter, decimal-leading-zero);
  counter-increment: count 1;
  position: absolute;
  top: -1px;
  left: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: calc(100% + 2px);
  aspect-ratio: 1/1;
  border-radius: 100%;
  color: #FFFFFF;
  background-color: #BE8D1B;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: 1.25rem;
  font-style: normal;
}
main.recruit section.jobs {
  padding: 6rem 0;
  background-color: #F4ECD7;
}
main.recruit section.jobs h2 + p {
  text-align: center;
}
main.recruit section.jobs article {
  width: 53rem !important;
  margin: 0 auto 2rem auto;
}
@media screen and (max-width: 743px) {
  main.recruit section.jobs article {
    width: 80% !important;
  }
}
main.recruit section.jobs article a {
  position: relative;
  display: flex;
  border-radius: 0.5rem;
  padding: 1.5rem 2.5rem 1.5rem 1.5rem;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 743px) {
  main.recruit section.jobs article a {
    flex-direction: column;
    padding: 1.5rem;
  }
}
@media print, screen and (min-width: 744px) {
  main.recruit section.jobs article a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 2rem;
    display: block;
    transform: translateY(-50%) rotate(45deg);
    width: 1.5rem;
    height: 1.5rem;
    margin-left: 3em;
    border-top: 2px solid #231815;
    border-right: 2px solid #231815;
    transition: 0.3s;
  }
}
main.recruit section.jobs article a figure {
  width: 8rem;
  overflow: hidden;
}
@media screen and (max-width: 743px) {
  main.recruit section.jobs article a figure {
    width: 100%;
    height: 100%;
    margin-bottom: 1rem;
    aspect-ratio: 16/9;
    overflow: hidden;
  }
}
main.recruit section.jobs article a figure img {
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}
@media print, screen and (min-width: 744px) {
  main.recruit section.jobs article a .detail {
    width: calc(100% - 8rem);
    padding-left: 2rem;
  }
}
@media screen and (max-width: 743px) {
  main.recruit section.jobs article a .detail {
    width: 100%;
  }
}
main.recruit section.jobs article a .detail h3 {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
@media screen and (max-width: 743px) {
  main.recruit section.jobs article a .detail h3 {
    flex-direction: column;
    align-items: flex-start;
  }
}
main.recruit section.jobs article a .detail h3 .cat {
  border-radius: 3em;
  margin-right: 0.5rem;
  padding: 0 1em;
  color: #FFFFFF;
  background-color: #660000;
  font-size: 0.9rem;
}
@media screen and (max-width: 743px) {
  main.recruit section.jobs article a .detail h3 .cat {
    margin-bottom: 0.5rem;
  }
}
main.recruit section.jobs article a .detail h3 .cat.closed {
  background-color: #124a36;
}
main.recruit section.jobs article a .detail p {
  color: #B0A8A0;
  font-size: 0.9rem;
}
main.recruit section.jobs article a:hover img {
  transform: scale(1.05);
}
main.recruit section.jobs article a:hover::after {
  border-color: #BE8D1B;
  transition: 0.3s;
}
main.recruit .entry {
  padding: 4rem 0;
}
@media print, screen and (min-width: 744px) {
  main.recruit .entry {
    text-align: center;
  }
}
main.recruit .entry .link {
  margin: 2rem auto;
}
@media screen and (max-width: 743px) {
  main.recruit .entry .link {
    margin-bottom: 0;
  }
}
main.recruit .entry .link a {
  justify-content: center;
  margin: 0 0.25rem;
  background-color: #124a36;
}
@media screen and (max-width: 743px) {
  main.recruit .entry .link a {
    margin-bottom: 0.5rem;
  }
}
main.recruit .entry .link a::before {
  content: "";
  display: inline-block;
  margin-right: 0.35em;
  width: 1.25em;
  height: 1.25em;
  background-color: #FFFFFF;
  mask: url(../images/icon/icon-tel2.svg) no-repeat center;
  -webkit-mask: url(../images/icon/icon-tel2.svg) no-repeat center;
  mask-size: contain;
}
main.recruit .entry .link a:nth-child(2)::before {
  mask: url(../images/icon/icon-mail.svg) no-repeat center;
  -webkit-mask: url(../images/icon/icon-mail.svg) no-repeat center;
  mask-size: contain;
}
main.recruit .entry .link a::after {
  content: none;
}
main.recruit .entry .link a:hover {
  background-color: #BE8D1B;
}

/* ----------------------------------------------------------
 recruit css / single
---------------------------------------------------------- */
body.single main.recruit {
  /* description
  ----------------------------------------- */
  /* contents
  ----------------------------------------- */
  /* other
  ----------------------------------------- */
}
body.single main.recruit .description {
  padding: 0;
}
body.single main.recruit .description .breadcrumb {
  padding: 1.5rem 0 1rem 0;
  background-color: #F6F5F4;
}
body.single main.recruit .description .breadcrumb ul {
  display: flex;
}
@media screen and (max-width: 743px) {
  body.single main.recruit .description .breadcrumb ul {
    flex-wrap: wrap;
  }
}
body.single main.recruit .description .breadcrumb ul li {
  font-size: 0.9rem;
}
@media screen and (max-width: 743px) {
  body.single main.recruit .description .breadcrumb ul li {
    text-align: left;
  }
}
body.single main.recruit .description .breadcrumb ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
body.single main.recruit .description .breadcrumb ul li a::after {
  display: block;
  transform: rotate(45deg);
  width: 0.5rem;
  height: 0.5rem;
  margin: 0 0.5em;
  border-top: 2px solid #BE8D1B;
  border-right: 2px solid #BE8D1B;
  content: "";
}
body.single main.recruit .description .breadcrumb ul li a:hover {
  color: #BE8D1B;
}
body.single main.recruit .contents {
  padding-top: 6rem;
}
body.single main.recruit .contents article {
  width: 65%;
  max-width: 75rem;
}
@media screen and (max-width: 743px) {
  body.single main.recruit .contents article {
    width: 85%;
  }
}
body.single main.recruit .contents article h1 {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  font-weight: 500;
  font-size: 1.5rem;
}
@media screen and (max-width: 743px) {
  body.single main.recruit .contents article h1 {
    flex-direction: column;
    align-items: flex-start;
    font-size: 1.25rem;
  }
}
body.single main.recruit .contents article h1 .cat {
  border-radius: 3em;
  margin-right: 0.75rem;
  padding: 0.25em 1em;
  color: #FFFFFF;
  background-color: #660000;
  font-size: 1rem;
}
@media screen and (max-width: 743px) {
  body.single main.recruit .contents article h1 .cat {
    margin-bottom: 0.5rem;
    padding: 0 1em;
  }
}
body.single main.recruit .contents article time {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 1rem 0;
  color: #660000;
  font-weight: 400;
}
body.single main.recruit .contents article time::before {
  content: "";
  display: inline-block;
  margin-right: 0.25em;
  width: 1.125em;
  height: 1.125em;
  background-color: #660000;
  mask: url(../images/icon/icon-time.svg) no-repeat center;
  -webkit-mask: url(../images/icon/icon-time.svg) no-repeat center;
  mask-size: contain;
}
body.single main.recruit .contents article dl {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #CCCCCC;
  border-bottom: 0;
}
body.single main.recruit .contents article dl dt {
  border-bottom: 1px solid #937070;
  padding: 1.5em 0;
  color: #FFFFFF;
  background-color: #660000;
  font-weight: 500;
}
@media print, screen and (min-width: 744px) {
  body.single main.recruit .contents article dl dt {
    width: 10em;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 743px) {
  body.single main.recruit .contents article dl dt {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid #660000;
  }
}
body.single main.recruit .contents article dl dd {
  border-bottom: 1px solid #CCCCCC;
  padding: 1.5em;
}
@media print, screen and (min-width: 744px) {
  body.single main.recruit .contents article dl dd {
    width: calc(100% - 10em);
  }
}
@media screen and (max-width: 743px) {
  body.single main.recruit .contents article dl dd {
    padding: 0.5rem 1rem;
  }
}
body.single main.recruit .contents article.closed .cat {
  background-color: #124a36;
}
body.single main.recruit .contents article.closed time {
  color: #124a36;
}
body.single main.recruit .contents article.closed time::before {
  background-color: #124a36;
}
body.single main.recruit .contents article.closed dt {
  border-bottom: 1px solid #61766e;
  background-color: #124a36;
}
body.single main.recruit .other {
  padding: 4rem 0 2rem 0;
  background-color: #F4ECD7;
}
body.single main.recruit .other h2 .line::before, body.single main.recruit .other h2 .line::after {
  background-color: #FFFFFF;
}
@media print, screen and (min-width: 744px) {
  body.single main.recruit .other .job-swiper {
    width: 53rem !important;
  }
}
@media screen and (max-width: 743px) {
  body.single main.recruit .other .job-swiper {
    width: 100%;
  }
}
body.single main.recruit .other .job-swiper article {
  padding: 1rem 3rem;
}
body.single main.recruit .other .job-swiper article a {
  border-radius: 0.5rem;
  padding: 1.5rem;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
@media print, screen and (min-width: 744px) {
  body.single main.recruit .other .job-swiper article a {
    display: flex;
  }
}
@media print, screen and (min-width: 744px) {
  body.single main.recruit .other .job-swiper article a figure {
    width: 8rem;
    overflow: hidden;
  }
}
@media screen and (max-width: 743px) {
  body.single main.recruit .other .job-swiper article a figure {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    margin-bottom: 1rem;
  }
}
body.single main.recruit .other .job-swiper article a figure img {
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}
@media print, screen and (min-width: 744px) {
  body.single main.recruit .other .job-swiper article a .detail {
    width: calc(100% - 8rem);
    padding-left: 2rem;
  }
}
body.single main.recruit .other .job-swiper article a .detail h3 {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
@media screen and (max-width: 743px) {
  body.single main.recruit .other .job-swiper article a .detail h3 {
    flex-direction: column;
    align-items: flex-start;
  }
}
body.single main.recruit .other .job-swiper article a .detail h3 .cat {
  border-radius: 3em;
  margin-right: 0.5rem;
  padding: 0 1em;
  color: #FFFFFF;
  background-color: #660000;
  font-size: 0.9rem;
}
@media screen and (max-width: 743px) {
  body.single main.recruit .other .job-swiper article a .detail h3 .cat {
    margin-bottom: 0.5rem;
  }
}
body.single main.recruit .other .job-swiper article a .detail h3 .cat.closed {
  background-color: #124a36;
}
body.single main.recruit .other .job-swiper article a .detail p {
  color: #B0A8A0;
  font-size: 0.9rem;
}
body.single main.recruit .other .job-swiper article a:hover img {
  transform: scale(1.05);
}
body.single main.recruit .other .job-swiper .swiper-button-next, body.single main.recruit .other .job-swiper .swiper-button-prev {
  color: #231815 !important;
}
body.single main.recruit .other .job-swiper .swiper-button-next:hover, body.single main.recruit .other .job-swiper .swiper-button-prev:hover {
  color: #BE8D1B !important;
}
body.single main.recruit .other .job-swiper .swiper-button-next.swiper-button-disabled, body.single main.recruit .other .job-swiper .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}
body.single main.recruit .other > p {
  margin: 3rem auto 2rem auto;
  text-align: center;
}
body.single main.recruit .other .link {
  margin-top: 1rem;
}
body.single main.recruit .other .link a {
  justify-content: center;
}
body.single main.recruit .other .link a::after {
  right: initial;
  left: 1.25em;
  transform: translate(0, -50%) scale(-1, 1);
}

/* ----------------------------------------------------------
 news / common
---------------------------------------------------------- */
main.news aside .item {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background-color: #F6F5F4;
}
main.news aside .item h2 {
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
  font-weight: 400;
}
main.news aside .item h2::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  margin-right: 0.25em;
  background-color: #BE8D1B;
}
main.news aside .item h2 + * {
  padding: 0 0.5rem;
}
main.news aside .item .form-inner {
  display: flex;
  align-items: stretch;
  position: relative;
  flex: 1;
  background-color: #FFFFFF;
}
main.news aside .item .form-inner::before {
  content: "";
  position: absolute;
  left: 0.5em;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 1rem;
  height: 1rem;
  background: url(../images/icon/icon-search.svg) no-repeat center center/contain;
}
main.news aside .item .form-inner input.search-field {
  padding-left: 2em;
  width: 100%;
  border: 1px solid #CCCCCC;
  border-right: 0;
}
main.news aside .item .form-inner button.search-submit {
  width: 4em;
  padding: 0.5em 0;
  color: #FFFFFF;
  background-color: #660000;
}
main.news aside .item ul li {
  font-size: 0.9rem;
}
main.news aside .item ul li a:hover {
  color: #BE8D1B;
}

/* ----------------------------------------------------------
 news / single
---------------------------------------------------------- */
body.single main.news {
  /* description
  ----------------------------------------- */
  /* contents
  ----------------------------------------- */
  /* shopinfo
  ----------------------------------------- */
}
body.single main.news .description {
  padding: 0;
}
body.single main.news .description .breadcrumb {
  padding: 1.5rem 0 1rem 0;
  background-color: #F6F5F4;
}
body.single main.news .description .breadcrumb ul {
  display: flex;
}
@media screen and (max-width: 743px) {
  body.single main.news .description .breadcrumb ul {
    flex-direction: column;
  }
}
body.single main.news .description .breadcrumb ul li {
  font-size: 0.9rem;
}
body.single main.news .description .breadcrumb ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
body.single main.news .description .breadcrumb ul li a::after {
  display: block;
  transform: rotate(45deg);
  width: 0.5rem;
  height: 0.5rem;
  margin: 0 0.5em;
  border-top: 2px solid #BE8D1B;
  border-right: 2px solid #BE8D1B;
  content: "";
}
body.single main.news .description .breadcrumb ul li a:hover {
  color: #BE8D1B;
}
body.single main.news .description .breadcrumb ul li:last-child a::after {
  content: none;
}
body.single main.news .contents {
  margin-bottom: 4rem;
  padding: 6rem 0;
}
@media screen and (max-width: 743px) {
  body.single main.news .contents {
    padding: 3rem 0;
  }
}
body.single main.news .contents .wrap {
  padding-bottom: 4rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #CCCCCC;
}
@media print, screen and (min-width: 744px) {
  body.single main.news .contents .wrap {
    display: flex;
  }
}
@media print, screen and (min-width: 744px) {
  body.single main.news .contents .wrap article {
    width: calc(100% - 18rem);
    padding-right: 4rem;
  }
}
@media screen and (max-width: 743px) {
  body.single main.news .contents .wrap article {
    margin-bottom: 4rem;
  }
}
body.single main.news .contents .wrap article .cat {
  margin-bottom: 0.5rem;
}
body.single main.news .contents .wrap article .cat span {
  border-radius: 3em;
  padding: 0.125em 1em;
  color: #FFFFFF;
  background-color: #660000;
  font-size: 0.9rem;
}
body.single main.news .contents .wrap article h1 {
  border-bottom: 1px solid #CCCCCC;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5em;
}
body.single main.news .contents .wrap article time {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 1rem 0 2rem 0;
  color: #B0A8A0;
  font-weight: 400;
}
body.single main.news .contents .wrap article time::before {
  content: "";
  display: inline-block;
  margin-right: 0.25em;
  width: 1.125em;
  height: 1.125em;
  background-color: #B0A8A0;
  mask: url(../images/icon/icon-time.svg) no-repeat center;
  -webkit-mask: url(../images/icon/icon-time.svg) no-repeat center;
  mask-size: contain;
}
body.single main.news .contents .wrap article .postcontents {
  /* 画像 */
  /* リンクボタン */
  /* ダウンロードボタン */
}
body.single main.news .contents .wrap article .postcontents a {
  display: inline;
}
body.single main.news .contents .wrap article .postcontents h2 {
  margin-top: 2.5em;
  margin-bottom: 1em;
  padding: 0.5em;
  color: #FFFFFF;
  background-color: #660000;
  font-weight: 500;
  font-size: 1.5rem;
}
body.single main.news .contents .wrap article .postcontents h3 {
  margin-top: 2em;
  margin-bottom: 1em;
  padding: 0.25em 0.75em;
  border-left: 4px solid #BE8D1B;
  background-color: #F4ECD7;
  font-size: 1.25rem;
  font-weight: 500;
}
body.single main.news .contents .wrap article .postcontents h4 {
  margin-top: 2.5em;
  margin-bottom: 1em;
  padding-bottom: 0.25em;
  border-bottom: 2px solid #660000;
  color: #660000;
  font-size: 1.125rem;
  font-weight: 500;
}
body.single main.news .contents .wrap article .postcontents h4::before {
  content: "●";
  margin-right: 0.25rem;
}
body.single main.news .contents .wrap article .postcontents h5 {
  margin-top: 1.75em;
  margin-bottom: 0.75em;
  padding: 0.25em 0.5em;
  color: #231815;
  background-color: #F6F5F4;
  font-size: 1rem;
  font-weight: 500;
}
body.single main.news .contents .wrap article .postcontents h6 {
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  padding-bottom: 0.125em;
  border-bottom: 1px dotted #231815;
  color: #231815;
  font-weight: 500;
  font-size: 1rem;
}
body.single main.news .contents .wrap article .postcontents * + ul,
body.single main.news .contents .wrap article .postcontents * + ol {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
body.single main.news .contents .wrap article .postcontents ul li {
  padding-left: 1em;
  text-indent: -1em;
}
body.single main.news .contents .wrap article .postcontents ul li:before {
  content: "・";
}
body.single main.news .contents .wrap article .postcontents ol {
  list-style: decimal;
  margin-left: 1.5em;
  padding-left: 0;
}
body.single main.news .contents .wrap article .postcontents ol li {
  margin-bottom: 0.5em;
}
body.single main.news .contents .wrap article .postcontents p {
  margin: 1em 0;
}
body.single main.news .contents .wrap article .postcontents p a, body.single main.news .contents .wrap article .postcontents li a {
  display: inline;
  color: #BE8D1B;
  text-decoration: underline;
}
body.single main.news .contents .wrap article .postcontents iframe {
  margin: 1rem auto !important;
}
body.single main.news .contents .wrap article .postcontents .wp-block-image,
body.single main.news .contents .wrap article .postcontents .wp-block-gallery {
  margin: 1.5rem auto;
}
body.single main.news .contents .wrap article .postcontents .wp-block-button {
  margin-bottom: 1.5em;
}
body.single main.news .contents .wrap article .postcontents .wp-block-button .wp-block-button__link {
  display: inline-block;
  padding: 0.75em 2em;
  background-color: #660000;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 9999px;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
body.single main.news .contents .wrap article .postcontents .wp-block-button .wp-block-button__link:hover {
  background-color: #BE8D1B;
  opacity: 0.9;
  text-decoration: none;
}
body.single main.news .contents .wrap article .postcontents .wp-block-button .is-style-outline .wp-block-button__link {
  background-color: transparent;
  color: #660000;
  border: 2px solid #660000;
}
body.single main.news .contents .wrap article .postcontents .wp-block-button .is-style-outline .wp-block-button__link:hover {
  background-color: #660000;
  color: #FFFFFF;
}
body.single main.news .contents .wrap article .postcontents .wp-element-button {
  display: inline-block;
  padding: 0.75em 2em;
  background-color: #660000;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 9999px;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
body.single main.news .contents .wrap article .postcontents .wp-element-button:hover {
  background-color: #BE8D1B;
  opacity: 0.9;
  text-decoration: none;
}
@media print, screen and (min-width: 744px) {
  body.single main.news .contents .wrap aside {
    width: 18rem;
  }
}
body.single main.news .contents .link {
  margin-top: 2rem;
  text-align: center;
}
body.single main.news .contents .link a {
  justify-content: center;
}
body.single main.news .contents .link a::after {
  right: 0;
  left: 1.25em;
  transform: translate(0, -50%) scale(-1, 1);
}
body.single main.news .shopinfo h2 + p {
  margin-bottom: 2rem;
  text-align: center;
}

/* ----------------------------------------------------------
 news / archive
---------------------------------------------------------- */
body.news main.news,
body.category main.news,
body.date main.news,
body.search main.news {
  /* category-list
  ----------------------------------------- */
  /* postlist
  ----------------------------------------- */
}
body.news main.news .category-list,
body.category main.news .category-list,
body.date main.news .category-list,
body.search main.news .category-list {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 743px) {
  body.news main.news .category-list,
  body.category main.news .category-list,
  body.date main.news .category-list,
  body.search main.news .category-list {
    flex-wrap: wrap;
  }
}
body.news main.news .category-list li,
body.category main.news .category-list li,
body.date main.news .category-list li,
body.search main.news .category-list li {
  border-radius: 3em;
  margin: 0 0.25rem;
  overflow: hidden;
}
@media screen and (max-width: 743px) {
  body.news main.news .category-list li,
  body.category main.news .category-list li,
  body.date main.news .category-list li,
  body.search main.news .category-list li {
    margin-bottom: 0.75rem;
  }
}
body.news main.news .category-list li a,
body.category main.news .category-list li a,
body.date main.news .category-list li a,
body.search main.news .category-list li a {
  display: inline-block;
}
body.news main.news .category-list li span,
body.category main.news .category-list li span,
body.date main.news .category-list li span,
body.search main.news .category-list li span {
  padding: 0.25em 1em;
  color: #FFFFFF;
  background-color: #BE8D1B;
}
body.news main.news .category-list li a:hover span,
body.category main.news .category-list li a:hover span,
body.date main.news .category-list li a:hover span,
body.search main.news .category-list li a:hover span {
  background-color: #660000;
}
body.news main.news .category-list li.now span,
body.category main.news .category-list li.now span,
body.date main.news .category-list li.now span,
body.search main.news .category-list li.now span {
  background-color: #660000;
}
body.news main.news .postlist,
body.category main.news .postlist,
body.date main.news .postlist,
body.search main.news .postlist {
  position: relative;
}
body.news main.news .postlist::before,
body.category main.news .postlist::before,
body.date main.news .postlist::before,
body.search main.news .postlist::before {
  content: "";
  position: absolute;
  top: -10rem;
  right: 2rem;
  display: block;
  width: 20vw;
  height: 35vw;
  background: url(../images/bg-text.svg) no-repeat center right/contain;
}
body.news main.news .postlist .wrap,
body.category main.news .postlist .wrap,
body.date main.news .postlist .wrap,
body.search main.news .postlist .wrap {
  padding-bottom: 6rem;
}
body.news main.news .postlist .wrap .postlist-inner,
body.category main.news .postlist .wrap .postlist-inner,
body.date main.news .postlist .wrap .postlist-inner,
body.search main.news .postlist .wrap .postlist-inner {
  display: flex;
  flex-wrap: wrap;
}
body.news main.news .postlist .wrap .postlist-inner article,
body.category main.news .postlist .wrap .postlist-inner article,
body.date main.news .postlist .wrap .postlist-inner article,
body.search main.news .postlist .wrap .postlist-inner article {
  position: relative;
  margin-bottom: 3rem;
  border-radius: 0.5rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
body.news main.news .postlist .wrap .postlist-inner article::after,
body.category main.news .postlist .wrap .postlist-inner article::after,
body.date main.news .postlist .wrap .postlist-inner article::after,
body.search main.news .postlist .wrap .postlist-inner article::after {
  content: "";
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-color: #660000;
  mask: url(../images/icon/icon-arrow.svg) no-repeat center;
  -webkit-mask: url(../images/icon/icon-arrow.svg) no-repeat center;
  mask-size: contain;
}
@media print, screen and (min-width: 744px) {
  body.news main.news .postlist .wrap .postlist-inner article,
  body.category main.news .postlist .wrap .postlist-inner article,
  body.date main.news .postlist .wrap .postlist-inner article,
  body.search main.news .postlist .wrap .postlist-inner article {
    width: calc((100% - 4rem) / 3);
    margin-right: 2rem;
  }
  body.news main.news .postlist .wrap .postlist-inner article:nth-child(3n),
  body.category main.news .postlist .wrap .postlist-inner article:nth-child(3n),
  body.date main.news .postlist .wrap .postlist-inner article:nth-child(3n),
  body.search main.news .postlist .wrap .postlist-inner article:nth-child(3n) {
    margin-right: 0;
  }
}
body.news main.news .postlist .wrap .postlist-inner article figure,
body.category main.news .postlist .wrap .postlist-inner article figure,
body.date main.news .postlist .wrap .postlist-inner article figure,
body.search main.news .postlist .wrap .postlist-inner article figure {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  overflow: hidden;
}
body.news main.news .postlist .wrap .postlist-inner article figure img,
body.category main.news .postlist .wrap .postlist-inner article figure img,
body.date main.news .postlist .wrap .postlist-inner article figure img,
body.search main.news .postlist .wrap .postlist-inner article figure img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
body.news main.news .postlist .wrap .postlist-inner article .detail,
body.category main.news .postlist .wrap .postlist-inner article .detail,
body.date main.news .postlist .wrap .postlist-inner article .detail,
body.search main.news .postlist .wrap .postlist-inner article .detail {
  padding: 1rem 1rem 3rem 1rem;
  background-color: #FFFFFF;
}
body.news main.news .postlist .wrap .postlist-inner article .detail .info,
body.category main.news .postlist .wrap .postlist-inner article .detail .info,
body.date main.news .postlist .wrap .postlist-inner article .detail .info,
body.search main.news .postlist .wrap .postlist-inner article .detail .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
body.news main.news .postlist .wrap .postlist-inner article .detail .info .cat span,
body.category main.news .postlist .wrap .postlist-inner article .detail .info .cat span,
body.date main.news .postlist .wrap .postlist-inner article .detail .info .cat span,
body.search main.news .postlist .wrap .postlist-inner article .detail .info .cat span {
  border-radius: 3em;
  padding: 0.125em 1em;
  color: #FFFFFF;
  background-color: #660000;
  font-size: 0.9rem;
}
body.news main.news .postlist .wrap .postlist-inner article .detail .info time,
body.category main.news .postlist .wrap .postlist-inner article .detail .info time,
body.date main.news .postlist .wrap .postlist-inner article .detail .info time,
body.search main.news .postlist .wrap .postlist-inner article .detail .info time {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #B0A8A0;
  font-weight: 400;
}
body.news main.news .postlist .wrap .postlist-inner article .detail .info time::before,
body.category main.news .postlist .wrap .postlist-inner article .detail .info time::before,
body.date main.news .postlist .wrap .postlist-inner article .detail .info time::before,
body.search main.news .postlist .wrap .postlist-inner article .detail .info time::before {
  content: "";
  display: inline-block;
  margin-right: 0.25em;
  width: 1.125em;
  height: 1.125em;
  background-color: #B0A8A0;
  mask: url(../images/icon/icon-time.svg) no-repeat center;
  -webkit-mask: url(../images/icon/icon-time.svg) no-repeat center;
  mask-size: contain;
}
body.news main.news .postlist .wrap .postlist-inner article .detail h3,
body.category main.news .postlist .wrap .postlist-inner article .detail h3,
body.date main.news .postlist .wrap .postlist-inner article .detail h3,
body.search main.news .postlist .wrap .postlist-inner article .detail h3 {
  font-size: 0.9rem;
  line-height: 1.75em;
}
body.news main.news .postlist .wrap .postlist-inner article:hover,
body.category main.news .postlist .wrap .postlist-inner article:hover,
body.date main.news .postlist .wrap .postlist-inner article:hover,
body.search main.news .postlist .wrap .postlist-inner article:hover {
  opacity: 0.9;
}
body.news main.news .postlist .wrap .postlist-inner article:hover img,
body.category main.news .postlist .wrap .postlist-inner article:hover img,
body.date main.news .postlist .wrap .postlist-inner article:hover img,
body.search main.news .postlist .wrap .postlist-inner article:hover img {
  transform: scale(1.05);
}
body.news main.news .postlist .wrap .pagination,
body.category main.news .postlist .wrap .pagination,
body.date main.news .postlist .wrap .pagination,
body.search main.news .postlist .wrap .pagination {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: 1.25rem;
  font-style: normal;
  text-align: center;
}
body.news main.news .postlist .wrap .pagination .page-numbers,
body.category main.news .postlist .wrap .pagination .page-numbers,
body.date main.news .postlist .wrap .pagination .page-numbers,
body.search main.news .postlist .wrap .pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0.25rem;
  width: 2em;
  height: 2em;
  border-radius: 100%;
  color: #231815;
  background-color: #FFFFFF;
}
body.news main.news .postlist .wrap .pagination .page-numbers:hover,
body.category main.news .postlist .wrap .pagination .page-numbers:hover,
body.date main.news .postlist .wrap .pagination .page-numbers:hover,
body.search main.news .postlist .wrap .pagination .page-numbers:hover {
  color: #FFFFFF;
  background-color: #BE8D1B;
}
body.news main.news .postlist .wrap .pagination .current,
body.category main.news .postlist .wrap .pagination .current,
body.date main.news .postlist .wrap .pagination .current,
body.search main.news .postlist .wrap .pagination .current {
  margin: 0.25rem 0.5rem;
  padding: 0.5em;
  color: #FFFFFF;
  background-color: #660000;
}
body.news main.news .postlist .wrap .pagination .current:hover,
body.category main.news .postlist .wrap .pagination .current:hover,
body.date main.news .postlist .wrap .pagination .current:hover,
body.search main.news .postlist .wrap .pagination .current:hover {
  color: #FFFFFF;
  background-color: #660000;
}
body.news main.news .postlist .wrap .link,
body.category main.news .postlist .wrap .link,
body.date main.news .postlist .wrap .link,
body.search main.news .postlist .wrap .link {
  margin-top: 2rem;
  text-align: center;
}
body.news main.news .postlist .wrap .link a,
body.category main.news .postlist .wrap .link a,
body.date main.news .postlist .wrap .link a,
body.search main.news .postlist .wrap .link a {
  justify-content: center;
}
body.news main.news .postlist .wrap .link a::after,
body.category main.news .postlist .wrap .link a::after,
body.date main.news .postlist .wrap .link a::after,
body.search main.news .postlist .wrap .link a::after {
  right: 0;
  left: 1.25em;
  transform: translate(0, -50%) scale(-1, 1);
}
body.news main.news .postlist .wrap .postnone,
body.category main.news .postlist .wrap .postnone,
body.date main.news .postlist .wrap .postnone,
body.search main.news .postlist .wrap .postnone {
  text-align: center;
}

/* ----------------------------------------------------------
 contact css
---------------------------------------------------------- */
main.contact {
  /* pagetitle
  ----------------------------------------- */
  /* caution
  ----------------------------------------- */
  /* phone
  ----------------------------------------- */
  /* form
  ----------------------------------------- */
}
main.contact section.pagetitle .description {
  padding-bottom: 2rem;
  text-align: center;
}
main.contact section.pagetitle .description p:nth-of-type(1) {
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.75em;
}
main.contact section.caution {
  padding-bottom: 4rem;
}
main.contact section.caution .wrap {
  padding: 2rem;
  border: 2px solid #BE8D1B;
}
@media print, screen and (min-width: 744px) {
  main.contact section.caution .wrap {
    width: 58rem;
    min-width: initial;
    max-width: initial;
  }
}
main.contact section.caution .wrap h2 {
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  color: #BE8D1B;
  text-align: center;
  font-size: 1.5rem;
}
main.contact section.caution .wrap h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 2rem;
  height: 2px;
  margin-left: -1rem;
  background-color: #BE8D1B;
}
main.contact section.caution .wrap ol li {
  position: relative;
  counter-increment: mycounter;
  margin-bottom: 1rem;
  padding-left: 2.25rem;
  font-size: 0.9rem;
}
main.contact section.caution .wrap ol li::before {
  content: counter(mycounter, decimal-leading-zero);
  counter-increment: count 1;
  position: absolute;
  top: -1px;
  left: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  aspect-ratio: 1/1;
  border-radius: 100%;
  color: #FFFFFF;
  background-color: #BE8D1B;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: 1rem;
  font-style: normal;
}
main.contact section.phone {
  padding: 4rem 0;
  background-color: #F6F5F4;
  text-align: center;
}
main.contact section.phone h2 span {
  border-radius: 3em;
  padding: 0.5em 2em;
  color: #FFFFFF;
  background-color: #660000;
}
main.contact section.phone .tel {
  margin: 1.5rem auto 0 auto;
}
main.contact section.phone .tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}
main.contact section.phone .tel .en {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 2rem;
  font-weight: 400;
}
main.contact section.phone .tel .en svg {
  width: 1.125em;
  height: 1.125em;
  margin-right: 0.125em;
  fill: #231815 !important;
}
main.contact section.form {
  padding: 6rem 0;
}
main.contact section.form h2 + p {
  text-align: center;
}
main.contact section.form .formarea dl {
  margin: 6rem auto 3rem auto;
}
@media print, screen and (min-width: 744px) {
  main.contact section.form .formarea dl {
    display: flex;
    flex-wrap: wrap;
    width: 50rem;
  }
}
main.contact section.form .formarea dl dt {
  margin-bottom: 2rem;
  font-weight: 500;
}
@media print, screen and (min-width: 744px) {
  main.contact section.form .formarea dl dt {
    width: 14em;
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 743px) {
  main.contact section.form .formarea dl dt {
    margin-bottom: 0.5rem;
  }
}
main.contact section.form .formarea dl dt span {
  padding-left: 0.5em;
  color: #E20F0F;
}
main.contact section.form .formarea dl dd {
  margin-bottom: 2rem;
}
@media print, screen and (min-width: 744px) {
  main.contact section.form .formarea dl dd {
    width: calc(100% - 14em);
  }
}
main.contact section.form .formarea dl dd input, main.contact section.form .formarea dl dd textarea, main.contact section.form .formarea dl dd select {
  width: 100%;
  padding: 1em;
  border: 1px solid #F6F5F4;
  font-size: 1rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  background-color: #FFFFFF !important;
}
main.contact section.form .formarea dl dd input::placeholder, main.contact section.form .formarea dl dd textarea::placeholder, main.contact section.form .formarea dl dd select::placeholder {
  color: #B0A8A0;
}
@media screen and (max-width: 743px) {
  main.contact section.form .formarea dl dd input::placeholder, main.contact section.form .formarea dl dd textarea::placeholder, main.contact section.form .formarea dl dd select::placeholder {
    font-size: 0.8rem;
  }
}
main.contact section.form .formarea dl dd .select-wrapper {
  position: relative;
}
main.contact section.form .formarea dl dd .select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%) rotate(135deg);
  width: 0.5em;
  height: 0.5em;
  border: solid #B0A8A0;
  border-width: 0.1em 0.1em 0 0;
  pointer-events: none;
}
main.contact section.form .formarea dl dd .select-wrapper select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
}
main.contact section.form .formarea .survey {
  margin: 2rem auto;
  padding: 2rem 2rem 1rem 2rem;
  background-color: #F6F5F4;
}
@media print, screen and (min-width: 744px) {
  main.contact section.form .formarea .survey {
    width: 80%;
  }
}
main.contact section.form .formarea .survey h3 {
  border-radius: 3em;
  padding: 0.5em 1em;
  color: #FFFFFF;
  background-color: #124a36;
  text-align: center;
}
@media screen and (max-width: 743px) {
  main.contact section.form .formarea .survey h3 {
    border-radius: 1rem;
  }
}
main.contact section.form .formarea .survey dl {
  width: 100% !important;
  margin: 2rem auto;
}
@media print, screen and (min-width: 744px) {
  main.contact section.form .formarea .survey dl dt {
    width: 18em;
  }
}
@media print, screen and (min-width: 744px) {
  main.contact section.form .formarea .survey dl dd {
    width: calc(100% - 18em);
  }
}
main.contact section.form .formarea .accept {
  display: flex;
  align-items: center;
  justify-content: center;
}
main.contact section.form .formarea .accept a {
  display: inline;
  text-decoration: underline;
}
main.contact section.form .formarea .accept a:hover {
  color: #BE8D1B;
}
main.contact section.form .formarea .cf7-cf-turnstile {
  margin: 2rem auto !important;
  text-align: center;
}
main.contact section.form .formarea .submitarea {
  margin-top: 2rem;
  text-align: center;
}
main.contact section.form .formarea .submitarea p {
  display: flex;
  flex-direction: column;
  align-items: center;
}
main.contact section.form .formarea .submitarea p input {
  border-radius: 3em;
  padding: 0.75em 2em;
  color: #FFFFFF;
  background-color: #660000;
  font-size: 1.125rem;
}
main.contact section.form .formarea .submitarea p input:hover {
  background-color: #BE8D1B;
}
main.contact section.form .formarea .submitarea p input:disabled {
  opacity: 0.5;
}
main.contact section.form .formarea .submitarea p input:disabled:hover {
  background-color: #660000;
}

/* ----------------------------------------------------------
 recruit contact css
---------------------------------------------------------- */
main.recruit-contact section.flow {
  padding: 2rem 0 6rem 0;
}
@media screen and (max-width: 743px) {
  main.recruit-contact section.flow {
    padding-bottom: 3rem;
  }
}
@media print, screen and (min-width: 744px) {
  main.recruit-contact section.flow .wrap h2 + p {
    text-align: center;
  }
}
main.recruit-contact section.flow .wrap ul {
  margin: 2rem auto;
}
@media print, screen and (min-width: 744px) {
  main.recruit-contact section.flow .wrap ul {
    display: flex;
    justify-content: center;
    width: 60rem;
  }
}
main.recruit-contact section.flow .wrap ul li {
  position: relative;
  border: 2px solid #BE8D1B;
  border-radius: 0.5rem;
  text-align: center;
}
@media print, screen and (min-width: 744px) {
  main.recruit-contact section.flow .wrap ul li {
    width: calc((100% - 6rem) / 4);
    margin-right: 2rem;
  }
  main.recruit-contact section.flow .wrap ul li:last-child {
    margin-right: 0;
  }
  main.recruit-contact section.flow .wrap ul li::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -2rem;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12.5px 0 12.5px 18px;
    border-color: transparent transparent transparent #BE8D1B;
    transform: translate(-25%, -50%);
  }
}
@media screen and (max-width: 743px) {
  main.recruit-contact section.flow .wrap ul li {
    margin-bottom: 2rem;
  }
  main.recruit-contact section.flow .wrap ul li::after {
    content: "";
    position: absolute;
    bottom: -2rem;
    left: 50%;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 18px 12.5px 0 12.5px;
    border-color: #BE8D1B transparent transparent transparent;
    border-style: solid;
    transform: translate(-50%, -25%);
  }
}
main.recruit-contact section.flow .wrap ul li:last-child::after {
  content: none;
}
main.recruit-contact section.flow .wrap ul li h3 {
  border-radius: 0.25rem 0.25rem 0 0;
  padding: 0.5rem 0;
  color: #FFFFFF;
  background-color: #BE8D1B;
  font-size: 1.25rem;
  font-weight: 400;
}
main.recruit-contact section.flow .wrap ul li p {
  padding: 1rem 1.5rem 1rem 1rem;
  font-weight: 500;
  font-size: 1.125rem;
}
@media screen and (max-width: 743px) {
  main.recruit-contact section.flow .wrap ul li p {
    padding: 0.5rem;
  }
}
main.recruit-contact section.flow .wrap ul li p span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5em;
}
@media screen and (max-width: 743px) {
  main.recruit-contact section.flow .wrap ul li p span {
    margin-top: 0.25rem;
  }
}
main.recruit-contact section.phone {
  margin-bottom: 4rem;
  padding: 0;
  background-color: #FFFFFF;
}
main.recruit-contact section.form {
  background-color: #F6F5F4;
}
@media screen and (max-width: 743px) {
  main.recruit-contact section.form {
    padding: 3rem 0;
  }
}
main.recruit-contact section.form .formarea dl {
  margin-top: 3rem;
}