@charset "UTF-8";
/***********************
/* Foundation
************************/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */ /* 3 */
  tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 * 3. Show the overflow in Edge 18- and IE.
 */
hr {
  color: inherit; /* 1 */
  height: 0; /* 2 */
  overflow: visible; /* 3 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */
nav li::before {
  content: "​";
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
  -ms-overflow-style: scrollbar; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
table {
  border-collapse: collapse; /* 1 */
  border-color: inherit; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
  resize: block; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * Remove the tapping delay in IE 10.
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy=true] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/* サイト全体で使う色やサイズ関連の変数 */
:root {
  --main-text-color: #242627;
  --link-text-color: #CC5B40;
  --white: #fff;
  --bg-color: #889BA8;
  --bg-color2: #E2E7ED;
  --bg-color3: #F2F4F7;
  --border-color: rgba(36, 38, 39, .2);
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.08em;
  font-size: 16px;
  line-height: 1.8;
  color: var(--main-text-color);
  overflow-x: hidden;
}

a {
  color: var(--main-text-color);
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
figure {
  margin: 0;
}

img {
  max-width: 100%;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  font-weight: 600;
}

dl, dt, dd {
  margin: 0;
  padding: 0;
}

button {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  border: none;
  background-color: inherit;
  cursor: pointer;
}

sup {
  font-size: 0.5em;
}

p:first-of-type {
  margin-top: 0;
}
p:last-of-type {
  margin-bottom: 0;
}

/***********************
/* Layout
************************/
.container {
  max-width: 1280px;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.container--thin {
  max-width: 980px;
}

.section {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.section.content {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .section.content {
    padding-top: 0;
  }
}

.top-section {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  background-color: var(--white);
}
@media screen and (max-width: 767px) {
  .top-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.bg-color {
  background-color: var(--bg-color2);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(36, 38, 39, 0.85);
  transition: all 0.5s;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 15px;
  }
}
.header.is-top:has(+ .front) {
  background-color: inherit;
}

.footer {
  background-image: url("../images/common/bg_footer.png");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer {
    background-image: url("../images/common/bg_footer_sp.png");
  }
}
.footer-onlinestore {
  padding-top: 120px;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .footer-onlinestore {
    padding-top: 50px;
  }
}
.footer-onlinestore__inner {
  margin-top: 80px;
}
.footer-contact {
  padding-top: 120px;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .footer-contact {
    padding-top: 80px;
  }
}
.footer-contact__inner {
  -webkit-backdrop-filter: blur(30px) brightness(70%);
          backdrop-filter: blur(30px) brightness(70%);
  padding: 40px 80px;
  color: var(--white);
  display: grid;
  justify-content: space-around;
  gap: 30px;
}
@media screen and (max-width: 1129px) {
  .footer-contact__inner {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 767px) {
  .footer-contact__inner {
    padding: 30px;
    flex-direction: column;
  }
}
.footer-contact__item:nth-of-type(1) {
  grid-column: 1/2;
  grid-row: 1/2;
}
.footer-contact__item:nth-of-type(2) {
  grid-column: 2/3;
  grid-row: 1/2;
}
@media screen and (max-width: 1129px) {
  .footer-contact__item:nth-of-type(2) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.footer-contact__item:nth-of-type(3) {
  grid-column: 3/4;
  grid-row: 1/2;
}
@media screen and (max-width: 1129px) {
  .footer-contact__item:nth-of-type(3) {
    grid-column: 2/3;
    grid-row: 1/3;
  }
}
@media screen and (max-width: 767px) {
  .footer-contact__item:nth-of-type(3) {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}

#gotop {
  position: fixed;
  bottom: 13px;
  right: 13px;
  z-index: 50;
  transition: bottom 0.5s;
}
@media screen and (max-width: 767px) {
  #gotop {
    right: 0;
  }
}
.contact + .footer + #gotop {
  bottom: 102px;
}

.top-bg {
  position: fixed;
  width: 100vw;
  height: 100dvh;
  top: 0;
  left: 0;
  z-index: -1;
}

.concept {
  background-color: inherit;
  margin-top: calc(100vh - 174.4px);
  padding-top: 294.4px;
  position: relative;
  background-image: url("../images/common/bg_concept.png");
  background-position: center top;
  background-size: 1366px 866.37px;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1367px) {
  .concept {
    background-size: cover;
    margin-top: calc(100vh - 12.767vw);
    padding-top: calc(12.767vw + 120px);
  }
}
@media screen and (max-width: 891px) {
  .concept {
    background-image: url("../images/common/bg_concept_sp.png");
    background-size: 100% auto;
    margin-top: calc(100dvh - 19.33vw);
    padding-top: calc(19.33vw + 120px);
  }
}
@media screen and (max-width: 767px) {
  .concept {
    padding-top: calc(19.33vw + 80px);
  }
}
.concept .container {
  position: relative;
}

.news {
  position: relative;
}
.news::before {
  content: "";
  width: 1366px;
  height: 246px;
  background-image: url("../images/common/bg_news.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1367px) {
  .news::before {
    width: 100%;
    height: 18.0087847731vw;
    top: -5.8565153734vw;
  }
}
@media screen and (max-width: 767px) {
  .news::before {
    background-image: url("../images/common/bg_news_sp.svg");
    background-size: 100%;
    width: calc(100% + 2px);
    height: 18.72vw;
    top: -8.7466666667vw;
  }
}
.news__wrapper {
  display: flex;
  gap: 80px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .news__wrapper {
    flex-direction: column;
    gap: 50px;
  }
}
.news .section__heading {
  flex-basis: 2.5em;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .news .section__heading {
    flex-basis: unset;
    flex-shrink: unset;
  }
}

.top-goods {
  background-color: var(--bg-color2);
  position: relative;
  overflow: hidden;
  padding-top: 268.5px;
}
@media screen and (max-width: 767px) {
  .top-goods {
    padding-top: 180px;
  }
}
.top-goods::before, .top-goods::after {
  content: "";
  display: block;
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 0;
}
.top-goods::before {
  width: 1195.06px;
  height: 1197.7px;
  background-image: url("../images/common/bg_top-goods_1.png");
  top: -335.1px;
  right: -248px;
}
@media screen and (max-width: 767px) {
  .top-goods::before {
    width: 442.34px;
    height: 455.81px;
    background-image: url("../images/common/bg_top-goods_1_sp.png");
    top: -73.8px;
    right: -97.3px;
  }
}
.top-goods::after {
  width: 1260.72px;
  height: 1254.43px;
  background-image: url("../images/common/bg_top-goods_2.png");
  bottom: -399.5px;
  left: -407.81px;
}
@media screen and (max-width: 767px) {
  .top-goods::after {
    width: 593.65px;
    height: 590.69px;
    background-image: url("../images/common/bg_top-goods_2_sp.png");
    bottom: -169px;
    left: -202.83px;
  }
}
.top-goods__marquee {
  position: absolute;
  top: -0.14em;
  left: 0;
  width: 100%;
  font-size: 12.5rem;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 0;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  gap: 0.25em;
}
@media screen and (max-width: 767px) {
  .top-goods__marquee {
    font-size: 8.75rem;
  }
}
.top-goods__marquee-inner {
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  0% {
    translate: 0;
  }
  100% {
    translate: calc(-100% - 0.25em);
  }
}
.instagram__heading__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .instagram__heading__wrapper {
    align-items: flex-start;
  }
}
.instagram__icon {
  width: 40px;
}
@media screen and (max-width: 767px) {
  .instagram__icon {
    margin-top: 18px;
    width: 30px;
  }
}
.instagram__icon img {
  max-width: unset;
  width: 100%;
}
.instagram__feed {
  position: relative;
  margin-top: 120px;
  height: 240px;
}
@media screen and (max-width: 767px) {
  .instagram__feed {
    margin-top: 80px;
    height: 164px;
  }
}
.instagram__feed a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.main {
  position: relative;
  overflow: hidden;
}
.main.contact::before {
  content: "";
  display: block;
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
  width: 1221.75px;
  height: 1458.32px;
  background-image: url("../images/common/bg_contact_3.png");
  top: 1672.5px;
  left: -417.88px;
}
@media screen and (max-width: 767px) {
  .main.contact::before {
    width: 679.53px;
    height: 811.11px;
    background-image: url("../images/common/bg_contact_3_sp.png");
    top: 1931.11px;
    left: -239.77px;
  }
}

.main.goods {
  position: relative;
}
.main.goods::before, .main.goods::after {
  content: "";
  display: block;
  background-position: center top;
  background-size: 100%;
  background-repeat: repeat-y;
  position: absolute;
  height: 100%;
  top: 0;
  z-index: -1;
}
.main.goods::before {
  width: 988.96px;
  background-image: url("../images/common/bg_goods_3.png");
  left: -220px;
}
@media screen and (max-width: 767px) {
  .main.goods::before {
    background-image: url("../images/common/bg_goods_3_sp.png");
    width: 438.79px;
    left: -127.49px;
  }
}
.main.goods::after {
  width: 1317.98px;
  background-image: url("../images/common/bg_goods_4.png");
  right: -368px;
}
@media screen and (max-width: 767px) {
  .main.goods::after {
    background-image: url("../images/common/bg_goods_4_sp.png");
    width: 540.43px;
    right: -134px;
  }
}

.history {
  position: relative;
}
.history::before, .history::after {
  content: "";
  display: block;
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
}
.history::before {
  width: 1608.13px;
  height: 1669.4px;
  background-image: url("../images/common/bg_company_3.png");
  top: -548.2px;
  right: -637.1px;
}
@media screen and (max-width: 767px) {
  .history::before {
    width: 738.46px;
    height: 766.6px;
    background-image: url("../images/common/bg_company_3_sp.png");
    top: -263.8px;
    right: -296.3px;
  }
}
.history::after {
  width: 1608.13px;
  height: 1669.4px;
  background-image: url("../images/common/bg_company_4.png");
  bottom: -562.2px;
  left: -593.07px;
}
@media screen and (max-width: 767px) {
  .history::after {
    width: 811px;
    height: 841.9px;
    background-image: url("../images/common/bg_company_4_sp.png");
    bottom: -290.5px;
    left: -304px;
  }
}

.main.exhibition .content {
  position: relative;
}
.main.exhibition .content::after {
  content: "";
  display: block;
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
  width: 1634.83px;
  height: 1697.12px;
  background-image: url("../images/common/bg_exhibition_3.png");
  bottom: -743.6px;
  right: -646.9px;
}
@media screen and (max-width: 767px) {
  .main.exhibition .content::after {
    width: 634.58px;
    height: 658.75px;
    background-image: url("../images/common/bg_exhibition_3_sp.png");
    bottom: -258px;
    right: -224.4px;
  }
}

.commitment {
  position: relative;
}
.commitment::before {
  content: "";
  width: 1366px;
  height: 246px;
  background-image: url("../images/common/bg_news.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1367px) {
  .commitment::before {
    width: 100%;
    height: 18.0087847731vw;
    top: -5.8565153734vw;
  }
}
@media screen and (max-width: 767px) {
  .commitment::before {
    background-image: url("../images/common/bg_news_sp.svg");
    background-size: 100%;
    width: calc(100% + 2px);
    height: 18.72vw;
    top: -8.7466666667vw;
  }
}

.service {
  position: relative;
  overflow: hidden;
}
.service::before, .service::after {
  content: "";
  display: block;
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 1;
}
.service::before {
  width: 1941.45px;
  height: 2015.42px;
  background-image: url("../images/common/bg_business_2.png");
  top: -781.7px;
  left: -767.73px;
}
@media screen and (max-width: 767px) {
  .service::before {
    width: 777.83px;
    height: 807.47px;
    background-image: url("../images/common/bg_business_2_sp.png");
    top: -284.2px;
    left: -289.98px;
  }
}
.service::after {
  width: 1569.06px;
  height: 1628.84px;
  background-image: url("../images/common/bg_business_3.png");
  bottom: -657px;
  right: -592.6px;
}
@media screen and (max-width: 767px) {
  .service::after {
    width: 843.04px;
    height: 875.16px;
    background-image: url("../images/common/bg_business_3_sp.png");
    bottom: -357.6px;
    right: -324.2px;
  }
}

.flow {
  position: relative;
  overflow: hidden;
}
.flow::before, .flow::after {
  content: "";
  display: block;
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 1;
}
.flow::before {
  width: 1078.8px;
  height: 1240.62px;
  background-image: url("../images/common/bg_business_4.png");
  top: 481.2px;
  left: -371.9px;
}
@media screen and (max-width: 767px) {
  .flow::before {
    width: 893.39px;
    height: 968.77px;
    background-image: url("../images/common/bg_business_4_sp.png");
    top: 1019.5px;
    left: -405.86px;
  }
}
.flow::after {
  width: 641px;
  height: 583px;
  background-image: url("../images/common/bg_business_5.png");
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .flow::after {
    width: 401px;
    height: 365px;
    background-image: url("../images/common/bg_business_5_sp.png");
  }
}

/***********************
/* Plugins
************************/
/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
      scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-onlinestore .swiper-slide {
  width: -webkit-fit-content;
  width: fit-content;
}
.swiper-onlinestore .swiper-slide img {
  height: 153px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .swiper-onlinestore .swiper-slide img {
    height: 110px;
  }
}
.swiper-onlinestore__button {
  max-width: 1280px;
  width: 100%;
  height: 20px;
  padding-left: 40px;
  padding-right: 40px;
  margin-inline: auto;
  margin-top: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .swiper-onlinestore__button {
    padding-left: 0;
    padding-right: 0;
  }
}
.swiper-onlinestore__button-prev, .swiper-onlinestore__button-next {
  padding: 0 40px 0 0;
}
.swiper-onlinestore__button-next {
  padding: 0 0 0 40px;
  border-left: 1px solid var(--white);
}

/***********************
/* Object
************************/
/* Component */
.header .nav a {
  color: var(--white);
  text-decoration: none;
}

@media screen and (min-width: 1233px) {
  .header .nav__list {
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
  }
  .header .nav__btn {
    display: none;
  }
  .header .is-visible-sp {
    display: none;
  }
  .header .is-visible-pc {
    display: block;
  }
}
@media screen and (max-width: 1232px) {
  .header .nav {
    background-color: var(--bg-color);
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    min-height: 100vh;
    padding: 80px;
    text-align: center;
    transition: all 0.5s;
  }
  .header .nav__list {
    margin: 0 0 80px;
    padding: 0;
    font-size: 1.125rem;
    line-height: 1.4444444444;
  }
  .header .nav__item + .nav__item {
    margin-top: 40px;
  }
  .header .nav .nav__btn {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  .header .nav.is-open {
    opacity: 1;
    left: 0;
  }
  .header .is-visible-sp {
    display: block;
  }
  .header .is-visible-pc {
    display: none;
  }
}
.text-heading {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .text-heading {
    font-size: 1.1875rem;
    margin-bottom: 30px;
  }
}

.footer-contact {
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .footer-contact {
    font-size: 0.9375rem;
  }
}
.footer-contact__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .footer-contact__title {
    font-size: 1.0625rem;
    margin-bottom: 10px;
  }
}
.footer-contact__title--lv2 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .footer-contact__title--lv2 {
    font-size: 0.9375rem;
  }
}
.footer-contact__btn + .footer-contact__title--lv2 {
  margin-top: 20px;
}
.footer-contact a {
  color: var(--white);
}

.copy {
  color: var(--white);
  text-align: center;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .copy {
    padding: 30px;
  }
}

.section__heading {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .section__heading {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
}
.section__heading--jp {
  font-size: 1.25rem;
  line-height: 1.28;
  color: var(--main-text-color);
}
@media screen and (max-width: 767px) {
  .section__heading--jp {
    font-size: 1.0625rem;
  }
}
.news .section__heading {
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
.news .section__heading .section__heading--en {
  width: 130px;
}
@media screen and (max-width: 767px) {
  .news .section__heading .section__heading--en {
    width: 97.56px;
  }
}
.top-goods .section__heading .section__heading--en, .goods .section__heading .section__heading--en {
  width: 322px;
}
@media screen and (max-width: 767px) {
  .top-goods .section__heading .section__heading--en, .goods .section__heading .section__heading--en {
    width: 201.31px;
  }
}
@media screen and (max-width: 767px) {
  .instagram .section__heading {
    gap: 0;
  }
}
.instagram .section__heading .section__heading--en {
  width: 458px;
}
@media screen and (max-width: 767px) {
  .instagram .section__heading .section__heading--en {
    width: 286.41px;
  }
}
.footer-onlinestore .section__heading .section__heading--en {
  width: 651px;
}
@media screen and (max-width: 767px) {
  .footer-onlinestore .section__heading .section__heading--en {
    width: 331.09px;
  }
}
.footer-onlinestore .section__heading .section__heading--jp {
  color: var(--white);
}
@media screen and (max-width: 767px) {
  .footer-contact .section__heading {
    flex-direction: column-reverse;
  }
}
.footer-contact .section__heading .section__heading--en {
  width: 421px;
}
@media screen and (max-width: 767px) {
  .footer-contact .section__heading .section__heading--en {
    width: 213.92px;
  }
}
.footer-contact .section__heading .section__heading--jp {
  color: var(--white);
}
.exhibition .section__heading .section__heading--en {
  width: 518px;
}
@media screen and (max-width: 767px) {
  .exhibition .section__heading .section__heading--en {
    width: 323.8px;
  }
}
.business .section__heading .section__heading--en {
  width: 434.77px;
}
@media screen and (max-width: 767px) {
  .business .section__heading .section__heading--en {
    width: 271.73px;
  }
}
.business .section__heading .section__heading--jp {
  color: var(--white);
}
.company .section__heading .section__heading--en {
  width: 470.04px;
}
@media screen and (max-width: 767px) {
  .company .section__heading .section__heading--en {
    width: 293.77px;
  }
}
.contact .section__heading .section__heading--en {
  width: 420.82px;
}
@media screen and (max-width: 767px) {
  .contact .section__heading .section__heading--en {
    width: 263.01px;
  }
}
.section__heading__lv2 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-bottom: 80px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section__heading__lv2 {
    flex-direction: column;
    align-items: start;
    gap: 10px;
    margin-bottom: 50px;
  }
}
.section__heading__lv2--jp {
  font-size: 1.25rem;
  line-height: 1.28;
  color: var(--main-text-color);
}
@media screen and (max-width: 767px) {
  .section__heading__lv2--jp {
    font-size: 1.0625rem;
  }
}
.commitment .section__heading__lv2 {
  background-color: rgba(255, 255, 255, 0.8);
  width: -webkit-fit-content;
  width: fit-content;
  padding: 10px 0;
  margin: -10px 0 70px 0;
}
@media screen and (max-width: 767px) {
  .commitment .section__heading__lv2 {
    margin-bottom: 40px;
  }
}
.commitment .section__heading__lv2 .section__heading__lv2--en {
  width: 468px;
}
@media screen and (max-width: 767px) {
  .commitment .section__heading__lv2 .section__heading__lv2--en {
    width: 330.35px;
  }
}
.service .section__heading__lv2 .section__heading__lv2--en {
  width: 254.21px;
}
@media screen and (max-width: 767px) {
  .service .section__heading__lv2 .section__heading__lv2--en {
    width: 179.44px;
  }
}
.profile .section__heading__lv2 .section__heading__lv2--en {
  width: 255.08px;
}
@media screen and (max-width: 767px) {
  .profile .section__heading__lv2 .section__heading__lv2--en {
    width: 180.06px;
  }
}
.history .section__heading__lv2 .section__heading__lv2--en {
  width: 274.26px;
}
@media screen and (max-width: 767px) {
  .history .section__heading__lv2 .section__heading__lv2--en {
    width: 193.59px;
  }
}
.locations .section__heading__lv2 .section__heading__lv2--en {
  width: 362.16px;
}
@media screen and (max-width: 767px) {
  .locations .section__heading__lv2 .section__heading__lv2--en {
    width: 255.65px;
  }
}
.section__lead {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 20px !important;
}
@media screen and (max-width: 767px) {
  .section__lead {
    font-size: 1.0625rem;
  }
}

.sub-section__heading {
  background-color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  display: grid;
  place-content: center;
  height: 75px;
  width: 100%;
  padding: 10px 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .sub-section__heading {
    font-size: 1.1875rem;
    height: 67px;
    margin-bottom: 30px;
  }
}
.sub-section__heading--black {
  color: var(--white);
  background-color: var(--bg-color);
}
.flow .sub-section__heading {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .flow .sub-section__heading {
    margin-bottom: 40px;
  }
}
.sub-section__heading__lv2 {
  background-color: var(--white);
  font-size: 1.25rem;
  font-weight: 500;
  display: grid;
  place-content: center;
  height: 55px;
  padding: 10px 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .sub-section__heading__lv2 {
    font-size: 1.125rem;
    justify-content: start;
    height: 51px;
    margin-bottom: 30px;
  }
}
.sub-section__lead {
  text-align: center;
  font-size: 1.125rem;
  margin-bottom: 80px !important;
}
@media screen and (max-width: 767px) {
  .sub-section__lead {
    font-size: 1rem;
    margin-bottom: 50px !important;
    text-align: left;
  }
}

.page-heading {
  padding-top: 190px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .page-heading {
    padding-top: 136px;
    padding-bottom: 80px;
  }
}
.main.goods .page-heading {
  position: relative;
}
.main.goods .page-heading::before, .main.goods .page-heading::after {
  content: "";
  display: block;
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
}
.main.goods .page-heading::before {
  width: 1615.64px;
  height: 1562.44px;
  background-image: url("../images/common/bg_goods_1.png");
  top: -543.64px;
  left: -508px;
}
@media screen and (max-width: 767px) {
  .main.goods .page-heading::before {
    width: 561.69px;
    height: 619.13px;
    background-image: url("../images/common/bg_goods_1_sp.png");
    top: -96px;
    left: -206px;
  }
}
.main.goods .page-heading::after {
  width: 1282.62px;
  height: 1331.49px;
  background-image: url("../images/common/bg_goods_2.png");
  top: -437.65px;
  right: -441.8px;
}
@media screen and (max-width: 767px) {
  .main.goods .page-heading::after {
    width: 465.78px;
    height: 483.53px;
    background-image: url("../images/common/bg_goods_2_sp.png");
    top: -132.44px;
    right: -182.8px;
  }
}
.main.exhibition .page-heading {
  position: relative;
}
.main.exhibition .page-heading::before, .main.exhibition .page-heading::after {
  content: "";
  display: block;
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
}
.main.exhibition .page-heading::before {
  width: 1662.98px;
  height: 1726.34px;
  background-image: url("../images/common/bg_exhibition_1.png");
  top: -607.59px;
  left: -629.87px;
}
@media screen and (max-width: 767px) {
  .main.exhibition .page-heading::before {
    width: 528.77px;
    height: 501.12px;
    background-image: url("../images/common/bg_exhibition_1_sp.png");
    top: -158.6px;
    left: -156.77px;
  }
}
.main.exhibition .page-heading::after {
  width: 1569.06px;
  height: 1628.84px;
  background-image: url("../images/common/bg_exhibition_2.png");
  top: -548.33px;
  right: -576.5px;
}
@media screen and (max-width: 767px) {
  .main.exhibition .page-heading::after {
    width: 465px;
    height: 458.01px;
    background-image: url("../images/common/bg_exhibition_2_sp.png");
    top: -9.96px;
    right: -194px;
  }
}
.main.company .page-heading {
  position: relative;
}
.main.company .page-heading::before, .main.company .page-heading::after {
  content: "";
  display: block;
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
}
.main.company .page-heading::before {
  width: 1646.79px;
  height: 1709.53px;
  background-image: url("../images/common/bg_company_1.png");
  top: -612.58px;
  left: -567.87px;
}
@media screen and (max-width: 767px) {
  .main.company .page-heading::before {
    width: 568.15px;
    height: 589.8px;
    background-image: url("../images/common/bg_company_1_sp.png");
    top: -160.19px;
    left: -217.2px;
  }
}
.main.company .page-heading::after {
  width: 1113.21px;
  height: 1357.31px;
  background-image: url("../images/common/bg_company_2.png");
  top: -281px;
  right: -540px;
}
@media screen and (max-width: 767px) {
  .main.company .page-heading::after {
    width: 395.7px;
    height: 571.79px;
    background-image: url("../images/common/bg_company_2_sp.png");
    top: -39px;
    right: -175.8px;
  }
}
.main.contact .page-heading {
  position: relative;
}
.main.contact .page-heading::before, .main.contact .page-heading::after {
  content: "";
  display: block;
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
}
.main.contact .page-heading::before {
  width: 1202.08px;
  height: 1315.39px;
  background-image: url("../images/common/bg_contact_1.png");
  top: -468.39px;
  left: -392.06px;
}
@media screen and (max-width: 767px) {
  .main.contact .page-heading::before {
    width: 491.18px;
    height: 509.2px;
    background-image: url("../images/common/bg_contact_1_sp.png");
    top: -120.03px;
    left: -195px;
  }
}
.main.contact .page-heading::after {
  width: 966.85px;
  height: 1001.22px;
  background-image: url("../images/common/bg_contact_2.png");
  top: -350px;
  right: -243px;
}
@media screen and (max-width: 767px) {
  .main.contact .page-heading::after {
    width: 316px;
    height: 349.85px;
    background-image: url("../images/common/bg_contact_2_sp.png");
    top: -86px;
    right: -121px;
  }
}
.main.business .page-heading {
  background-image: url("../images/common/bg_business_1.png");
  background-position: center top;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .main.business .page-heading {
    background-image: url("../images/common/bg_business_1_sp.png");
  }
}
.main.business .page-heading::before, .main.business .page-heading::after {
  content: "";
  display: block;
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .main.business .page-heading::before, .main.business .page-heading::after {
    opacity: 0.7;
  }
}
.main.business .page-heading::before {
  width: 255px;
  height: 255px;
  background-image: url("../images/common/business_photo_1.png");
  top: 56px;
  left: calc(50% + 39px);
}
@media screen and (max-width: 767px) {
  .main.business .page-heading::before {
    width: 130px;
    height: 130px;
    top: 26px;
    left: calc(50% - 7.5px);
  }
}
.main.business .page-heading::after {
  width: 178px;
  height: 178px;
  background-image: url("../images/common/business_photo_2.png");
  top: 240px;
  left: calc(50% + 542px);
}
@media screen and (max-width: 1365px) {
  .main.business .page-heading::after {
    left: unset;
    right: -37px;
  }
}
@media screen and (max-width: 767px) {
  .main.business .page-heading::after {
    width: 96px;
    height: 96px;
    top: 206px;
    left: calc(50% + 105.5px);
    right: unset;
  }
}
.main.business .page-heading .container {
  position: relative;
  z-index: 1;
}
.main.business .page-heading .container::before, .main.business .page-heading .container::after {
  content: "";
  display: block;
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .main.business .page-heading .container::before, .main.business .page-heading .container::after {
    opacity: 0.7;
  }
}
.main.business .page-heading .container::before {
  width: 220px;
  height: 220px;
  background-image: url("../images/common/business_photo_3.png");
  top: 208px;
  left: -5px;
}
@media screen and (max-width: 767px) {
  .main.business .page-heading .container::before {
    width: 132px;
    height: 132px;
    top: 107.92px;
    left: -30px;
  }
}
.main.business .page-heading .container::after {
  width: 330px;
  height: 330px;
  background-image: url("../images/common/business_photo_4.png");
  top: 318px;
  left: calc(50% + 260px);
}
@media screen and (max-width: 1365px) {
  .main.business .page-heading .container::after {
    right: 92px;
    left: unset;
  }
}
@media screen and (max-width: 767px) {
  .main.business .page-heading .container::after {
    width: 164px;
    height: 164px;
    top: 242.94px;
    right: 24px;
  }
}
.main.business .page-heading .section__heading {
  position: relative;
  z-index: 2;
}
.main.business .page-heading .section__heading__lead {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  font-size: 1.5rem;
  margin-top: 120px;
  text-shadow: 2px 2px 6px rgba(36, 38, 39, 0.2);
}
@media screen and (max-width: 767px) {
  .main.business .page-heading .section__heading__lead {
    font-size: 1.1875rem;
    text-align: left;
    margin-top: 80px;
  }
}
.page-heading__lead {
  text-align: center;
  font-size: 1.125rem;
  line-height: 2.7777777778;
  margin-top: 120px !important;
  margin: 104px 0 -13px 0 !important;
}
@media screen and (max-width: 767px) {
  .page-heading__lead {
    font-size: 1rem;
    line-height: 2.5;
    margin: 68px 0 -12px 0 !important;
    text-align: left;
  }
}

.text {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .text {
    font-size: 0.9375rem;
  }
}
.text:first-of-type {
  margin-top: 0;
}
.text:last-of-type {
  margin-bottom: 0;
}

.text-l {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .text-l {
    font-size: 1rem;
  }
}

.text-white {
  color: var(--white);
}

.text-red {
  color: var(--link-text-color);
}

.text__comment {
  padding-left: 1em;
  text-indent: -1em;
  margin: 0;
  font-size: 0.875rem;
}
.text__comment::before {
  content: "※";
}
.text + .text__comment {
  margin-top: 20px;
}

.text-l__comment {
  padding-left: 1em;
  text-indent: -1em;
  margin: 0;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .text-l__comment {
    font-size: 0.9375rem;
  }
}
.text-l__comment::before {
  content: "※";
}
.text + .text-l__comment {
  margin-top: 20px;
}

.concept__lead {
  line-height: 2.0833333333;
  margin: -13px 0 47px 0 !important;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  color: var(--white);
}
@media screen and (max-width: 767px) {
  .concept__lead {
    line-height: 2.5;
    margin: -10.5px 0 29.5px 0 !important;
    font-size: 1.1875rem;
    text-align: left;
    white-space: nowrap;
  }
}
.concept__content {
  line-height: 2.7777777778;
  margin: -16px 0 !important;
  font-size: 1.125rem;
  text-align: center;
  color: var(--white);
}
@media screen and (max-width: 767px) {
  .concept__content {
    line-height: 2.5;
    margin: -12px 0 !important;
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-align: left;
  }
}

.exhibition .content__meta {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .exhibition .content__meta {
    font-size: 1.0625rem;
  }
}
.exhibition .content__title {
  font-size: 1.5rem;
  font-weight: 500;
  padding-bottom: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}
@media screen and (max-width: 767px) {
  .exhibition .content__title {
    font-size: 1.1875rem;
    margin-bottom: 30px;
  }
}
.exhibition .content__lead {
  font-size: 1.125rem;
  margin: 40px 0 80px;
}
@media screen and (max-width: 767px) {
  .exhibition .content__lead {
    font-size: 1rem;
    margin: 30px 0 50px;
  }
}
.exhibition .content__figure {
  gap: 10px;
}
.exhibition .content__figure .column-2 {
  width: calc(50% - 5px);
}
@media screen and (max-width: 767px) {
  .exhibition .content__figure .column-2 {
    width: 100%;
  }
}
.exhibition .content__text {
  margin-bottom: 0;
}
.exhibition .content__text + .content__figure {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .exhibition .content__text + .content__figure {
    margin-top: 50px;
  }
}
.exhibition .content__figure + .content__text {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .exhibition .content__figure + .content__text {
    margin-top: 30px;
  }
}

.btn {
  display: block;
  padding: 18px 60px 18px 20px;
  font-size: 1.125rem;
  text-align: center;
  text-decoration: none;
  border: 1px solid var(--main-text-color);
  color: var(--main-text-color);
  position: relative;
  white-space: nowrap;
  width: -webkit-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 1rem;
    white-space: unset;
  }
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 40px;
  height: 1px;
  background-color: var(--main-text-color);
}
.btn--back {
  padding: 18px 20px 18px 60px;
}
.btn--back::after {
  right: unset;
  left: 0;
}
.btn__icon {
  margin-left: 8px;
  vertical-align: baseline;
}
.btn__icon--pdf {
  margin-left: 8px;
  vertical-align: -2px;
}
.btn--white {
  border: 1px solid var(--white);
  color: var(--white);
}
.btn--white::after {
  background-color: var(--white);
}
.footer-contact__btn--recruit .btn {
  background-color: #8EA5B5;
  padding-right: 20px;
}

.flag .btn {
  margin-top: 40px;
  padding: 12px 60px 12px 14px;
  font-size: 1rem;
  width: -webkit-fit-content;
  width: fit-content;
}

.flow-contact .btn {
  margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
  .flow-contact .btn {
    margin-top: 20px;
    width: 100%;
  }
}

.concept__btn {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .concept__btn {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
  }
}
.concept__btn .btn {
  width: 235px;
}
@media screen and (max-width: 767px) {
  .concept__btn .btn {
    width: 220px;
  }
}

.goods__btn {
  display: flex;
  justify-content: center;
}
.goods__btn .btn {
  width: -webkit-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .goods__btn .btn {
    width: 100%;
  }
}

.contact__btn {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .contact__btn {
    margin-top: 50px;
    gap: 30px;
  }
}

.open__btn {
  display: block;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: fit-content;
  font-weight: 500;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .open__btn {
    margin-top: 30px;
  }
}
.open__btn .open__icon {
  vertical-align: -2px;
  margin-left: 10px;
}
.open__btn .open__icon line {
  stroke: var(--main-text-color);
  stroke-width: 1px;
  fill: none;
}
.open__btn .open {
  display: inline;
}
.open__btn .close {
  display: none;
}
.is-open .open__btn .open__icon .y {
  stroke: none;
}
.is-open .open__btn .open {
  display: none;
}
.is-open .open__btn .close {
  display: inline;
}

.page-link ul {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0 0 30px 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .page-link ul {
    display: block;
  }
}
.page-link ul > li {
  flex: calc((100% - 80px) / 3) 0 0;
  height: 115px;
  font-size: 1.5rem;
  font-weight: 500;
  background-color: var(--white);
  border-bottom: 2px solid var(--bg-color);
}
@media screen and (max-width: 767px) {
  .page-link ul > li {
    font-size: 1.1875rem;
    width: 100%;
    height: 88px;
  }
}
.page-link ul > li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-bottom: 18px;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-link ul > li a {
    padding-bottom: 0;
  }
}
.page-link ul > li a::after {
  content: "";
  display: block;
  width: 16px;
  height: 8px;
  background-image: url("../images/common/icon_arrow_down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 31px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .page-link ul > li a::after {
    bottom: unset;
    top: 50%;
    left: unset;
    right: 51.5px;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .page-link ul > li + li {
    margin-top: 20px;
  }
}

.news {
  line-height: 1.6;
}
.news__dl {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}
.news__dl:first-of-type {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .news__dl {
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.news__meta {
  flex-basis: 6em;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .news__meta {
    flex-basis: unset;
    flex-shrink: unset;
  }
}
.news__title {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}
.news__text {
  margin: 0;
}
.news__text + .news__title {
  margin-top: 1.8em;
}
.news__accordion__inner {
  height: 0;
  overflow: hidden;
}
.news__accordion .news__dl:first-of-type {
  padding-top: 30px;
}
.news__accordion.is-open .news__accordion__inner {
  height: 100%;
}

.history__dl {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  align-items: center;
}
@media screen and (max-width: 767px) {
  .history__dl {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.history__dl:first-of-type {
  border-top: 1px solid var(--border-color);
}
@media screen and (max-width: 767px) {
  .history__dl {
    flex-direction: column;
    gap: 16px;
    align-items: start;
  }
}
.history__dt {
  font-size: 1.125rem;
  font-weight: 500;
  padding: 20px 0 20px 40px;
  flex: 128px 0 0;
  text-align: center;
  line-height: 1.3333333333;
}
@media screen and (max-width: 767px) {
  .history__dt {
    flex: unset;
    text-align: left;
    padding: 0;
    font-size: 1rem;
  }
}
.history__dt--sub {
  font-size: 1rem;
  white-space: nowrap;
}
.history__dd {
  padding: 20px 40px;
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .history__dd {
    padding: 0;
    font-size: 0.9375rem;
  }
}

.flow__wrapper {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .flow__wrapper {
    padding-bottom: 50px;
  }
}
.flow__dl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .flow__dl {
    display: block;
  }
}
.flow__dl + .flow__dl {
  margin-top: 15px;
  position: relative;
}
.flow__dl + .flow__dl::before {
  content: "";
  display: block;
  position: absolute;
  top: -15px;
  left: 78px;
  width: 10px;
  height: 15px;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .flow__dl + .flow__dl::before {
    content: none;
  }
}
.flow__dt {
  width: 166px;
  height: 166px;
  flex: 166px 0 0;
  display: grid;
  place-content: center;
  background-color: #FFFDF2;
  border: 1px solid var(--bg-color);
  border-radius: 50%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .flow__dt {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
  }
}
.flow__dt__num {
  width: 54px;
  margin-bottom: 5px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .flow__dt__num {
    width: 42px;
  }
}
.flow__dt__title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  height: 52px;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767px) {
  .flow__dt__title {
    font-size: 1.0625rem;
    height: 47px;
  }
}
.flow__dd {
  line-height: 1.6;
}

.profile .table th {
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  background-color: var(--white);
  border-bottom: 1px solid var(--bg-color2);
  padding: 15px 40px;
  width: 235px;
}
@media screen and (max-width: 767px) {
  .profile .table th {
    display: block;
    width: 100%;
    font-size: 1rem;
    padding: 10px 20px;
    text-align: left;
  }
}
.profile .table td {
  border-bottom: 1px solid var(--white);
  padding: 15px 40px;
}
@media screen and (max-width: 767px) {
  .profile .table td {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .profile .table tr:last-of-type td {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.profile ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.profile ul > li {
  padding-left: 1em;
  text-indent: -1em;
}
.profile ul > li::before {
  content: "・";
}
.profile ul > li .inline-blick {
  text-indent: 0;
  padding-left: 1em;
}
.profile ul + .text__comment {
  padding-left: 0;
}

.columns {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .columns {
    flex-direction: column;
  }
}
.locations .columns {
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .locations .columns {
    gap: 30px;
  }
}

.column {
  width: 100%;
}
.column img {
  max-width: unset;
  width: 100%;
}

.column-2 {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .column-2 {
    width: 100%;
  }
}
.locations .column-2 {
  width: calc(50% - 20px);
}
@media screen and (max-width: 767px) {
  .locations .column-2 {
    width: 100%;
  }
}
.commitment .column-2 {
  width: calc(50% - 20px);
}
@media screen and (max-width: 767px) {
  .commitment .column-2 {
    width: 100%;
  }
}
.commitment .column-2.commitment__figure {
  display: flex;
  gap: 3px;
}
.commitment .column-2.commitment__figure figure {
  flex: 1;
}

.column-3 {
  width: 33%;
}
@media screen and (max-width: 767px) {
  .column-3 {
    width: 100%;
  }
}

.commitment .columns {
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .commitment .columns {
    gap: 30px;
  }
}

.card__image {
  background-color: var(--white);
}
.card__image img {
  aspect-ratio: 1/1;
  object-fit: contain;
  width: 100%;
}
.card__content {
  padding: 20px 20px 0;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .card__content {
    padding: 20px 0 0;
  }
}
.card__title {
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .card__title {
    font-size: 1rem;
  }
}
.card__price {
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .card__price {
    font-size: 1rem;
    margin-top: 10px;
  }
}
.card__price--sub {
  font-size: 1rem;
  font-weight: 400;
}
.card__number {
  margin-top: 20px;
}

.flag {
  display: flex;
  align-items: start;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .flag {
    display: block;
  }
}
.flag__image {
  display: flex;
  justify-content: center;
  gap: 3px;
  flex: calc(50% - 20px) 0 0;
}
@media screen and (max-width: 767px) {
  .flag__image {
    margin-bottom: 30px;
  }
}
.flag__image figure {
  flex: calc(50% - 1.5px) 0 0;
  background-color: var(--bg-color3);
}
.flag__image figure img {
  aspect-ratio: 1/1;
  object-fit: contain;
  width: 100%;
}
.flag__image .flag__image--2 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-color3);
}
.flag__image .flag__image--2 figure {
  flex: 50% 0 0;
}
.flag__image .flag__image--2 img {
  aspect-ratio: 1/2;
  object-fit: contain;
  width: 100%;
}
.flag__content {
  flex: calc(50% - 20px) 0 0;
}
.flag__title {
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .flag__title {
    font-size: 1rem;
  }
}
.flag__price {
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .flag__price {
    font-size: 1rem;
    margin-top: 10px;
  }
}
.flag__price--sub {
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .flag__price--sub {
    font-size: 1rem;
  }
}
.flag__number {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .flag__number {
    margin-top: 15px;
  }
}
.flag__text {
  margin-top: 40px !important;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .flag__text {
    margin-top: 30px !important;
  }
}

.goods__new {
  position: relative;
}
.goods__new::before {
  content: "NEW";
  position: absolute;
  top: 0;
  left: 0;
  width: 91px;
  height: 81px;
  background-color: #CC5B40;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--white);
  padding: 10px;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 0);
          clip-path: polygon(0 0, 0 100%, 100% 0);
  z-index: 3;
}

.goods__sold {
  position: relative;
}
.goods__sold::before {
  content: "SOLD OUT";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 103px;
  height: 42px;
  background-color: #CC5B40;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--white);
  display: grid;
  place-content: center;
}

.top-goods__wrapper {
  gap: 80px 3px;
}
@media screen and (max-width: 767px) {
  .top-goods__wrapper {
    gap: 50px;
  }
}

.goods__wrapper .flag {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}
@media screen and (max-width: 767px) {
  .goods__wrapper .flag {
    padding: 50px 0;
  }
}
.goods__wrapper .flag:first-of-type {
  padding-top: 0;
}
.sub-section__heading + .goods__wrapper {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .sub-section__heading + .goods__wrapper {
    margin-top: 50px;
  }
}

.content-footer {
  background-color: var(--bg-color2);
  margin-top: 10px;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .content-footer {
    padding: 80px 0;
  }
}
.content-footer__inner {
  display: flex;
  gap: 3px;
}
@media screen and (max-width: 767px) {
  .content-footer__inner {
    flex-wrap: wrap;
  }
}
.content-footer__title {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .content-footer__title {
    text-align: left;
  }
}
.content-footer__qr {
  background-color: var(--white);
  text-align: center;
  width: 100%;
  height: calc(100% - 46px);
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767px) {
  .content-footer__qr {
    height: 100%;
  }
}
.content-footer__qr img {
  width: min(50%, 100px);
}
@media screen and (max-width: 767px) {
  .content-footer__qr img {
    width: min(60%, 100px);
  }
}
.content-footer__qr__title {
  height: 46px;
  padding: 10px;
  background-color: var(--bg-color);
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}
.content-footer__qr__wrapper {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .content-footer__qr__wrapper {
    flex: calc(50% - 1.5px);
  }
}
.content-footer__image {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .content-footer__image {
    flex: calc(50% - 1.5px);
  }
}
.company .content-footer {
  background-image: url("../images/common/bg_company_5.png");
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

.service-aside {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 40px 60px;
  margin-top: 80px;
}
@media screen and (max-width: 835px) {
  .service-aside {
    padding: 30px;
    margin-top: 50px;
  }
}
.service-aside__title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--bg-color);
  margin-bottom: 40px;
}
@media screen and (max-width: 835px) {
  .service-aside__title {
    font-size: 1.1875rem;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
.service-aside .text__lead {
  margin-bottom: 60px;
}
@media screen and (max-width: 835px) {
  .service-aside .text__lead {
    margin-bottom: 40px;
  }
}
.service-aside__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.service-aside__item {
  position: relative;
  overflow-x: hidden;
  flex: calc(50% - 20px) 0 0;
}
@media screen and (max-width: 835px) {
  .service-aside__item {
    flex: 100% 0 0;
  }
}
.service-aside__heading {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  width: -webkit-fit-content;
  width: fit-content;
  padding-right: 20px;
  position: relative;
  margin-bottom: 20px;
}
@media screen and (max-width: 835px) {
  .service-aside__heading {
    padding-right: 10px;
    font-size: 1.0625rem;
  }
}
.service-aside__heading::before {
  content: "■ ";
  color: var(--bg-color);
}
.service-aside__heading::after {
  content: "";
  width: 700px;
  height: 1px;
  display: block;
  position: absolute;
  right: -700px;
  top: 50%;
  border-top: 2px dotted var(--bg-color);
}
.service-aside__content {
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (max-width: 835px) {
  .service-aside__content {
    font-size: 0.9375rem;
  }
}
.service-aside__content ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.service-aside__content ul > li {
  padding-left: 1em;
  text-indent: -1em;
  font-weight: 500;
}
.service-aside__content ul > li::before {
  content: "・";
}
.service-aside__content ul + .text {
  margin-top: 10px;
}
.service-aside__content .text + ul {
  margin-top: 20px;
}
.service-aside__figure {
  margin-bottom: 20px;
}

.flow-contact__title {
  height: 96px;
  display: grid;
  place-content: center;
  background-color: var(--bg-color);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 835px) {
  .flow-contact__title {
    height: 92px;
    font-size: 1.0625rem;
  }
}
.flow-contact__wrapper {
  background-color: var(--bg-color2);
  padding: 40px;
  text-align: center;
}
@media screen and (max-width: 835px) {
  .flow-contact__wrapper {
    padding: 30px;
    text-align: left;
  }
}

.contact-step {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0 0 80px;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .contact-step {
    margin-bottom: 50px;
  }
}
.contact-step__item {
  -webkit-clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
          clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
  background-color: #D1D8DD;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  padding: 10px 19px 10px 10px;
  width: 33%;
  height: 70px;
  display: grid;
  place-content: center;
  flex-shrink: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact-step__item {
    font-size: 1.0625rem;
    height: 65px;
  }
}
.contact-step__item::before {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  -webkit-clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
          clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
  background-color: #E2E7ED;
}
.contact-step__item span {
  position: relative;
  opacity: 0.5;
}
.contact-step__item.active::before {
  background-color: var(--white);
}
.contact-step__item.active span {
  opacity: 1;
}

input[type=text],
textarea,
select {
  -webkit-appearance: none;
          appearance: none;
  border-radius: 0;
  background-color: var(--white);
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #707070;
}

textarea {
  height: 250px;
  margin-bottom: -7px;
}
@media screen and (max-width: 767px) {
  textarea {
    height: 236px;
  }
}

input[type=checkbox] {
  -webkit-appearance: none;
          appearance: none;
  border-radius: 0;
  position: relative;
  width: 26px;
  height: 26px;
  border: 1px solid #707070;
  vertical-align: -6px;
  margin-right: 10px;
}
input[type=checkbox]:checked:before {
  position: absolute;
  top: 0px;
  left: 8px;
  transform: rotate(50deg);
  width: 8px;
  height: 20px;
  border-right: 2px solid var(--main-text-color);
  border-bottom: 2px solid var(--main-text-color);
  content: "";
}

input[type=radio] {
  -webkit-appearance: none;
          appearance: none;
  position: relative;
  width: 26px;
  height: 26px;
  border: 1px solid var(--main-text-color);
  border-radius: 9999px;
  cursor: pointer;
  vertical-align: -6px;
  margin-right: 10px;
}
input[type=radio]:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 14px;
  height: 14px;
  margin: auto;
  border-radius: 9999px;
  background-color: var(--main-text-color);
}

.contact-item__select__wrapper {
  position: relative;
}
.contact-item__select__wrapper::before {
  position: absolute;
  content: "";
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: calc(50% - 30px);
  transform: translate(50%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-bottom: 1px solid var(--main-text-color);
  border-right: 1px solid var(--main-text-color);
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .contact-item__select__wrapper::before {
    left: unset;
    right: 22px;
  }
}

select {
  -webkit-appearance: none;
          appearance: none;
  padding: 12px 15px 10px;
  color: var(--main-text-color);
  font-size: 1em;
  cursor: pointer;
  position: relative;
}
select:focus {
  outline: 2px solid #2589d0;
}

.contact-input {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .contact-input {
    padding-top: 50px;
  }
}

.contact-item {
  display: flex;
  gap: 80px;
  padding: 40px 0;
  border-bottom: 1px dashed rgba(36, 38, 39, 0.4);
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .contact-item {
    display: block;
    padding: 30px 0;
    font-size: 0.9375rem;
  }
}
.contact-item--solid {
  border-bottom: 2px solid rgba(36, 38, 39, 0.2);
}
.contact-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: -6px;
}
.contact-item__label {
  font-weight: 500;
  flex: 13em 0 0;
}
@media screen and (max-width: 767px) {
  .contact-item__label {
    margin-bottom: 20px;
  }
}
.contact-item__input {
  flex-grow: 1;
}
.contact-item__check__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
}
@media screen and (max-width: 767px) {
  .contact-item__check__wrapper {
    gap: 30px;
  }
}
.contact-item__check__wrapper + input {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .contact-item__check__wrapper + input {
    margin-top: 30px;
  }
}
.contact-item .text__comment {
  line-height: 1.6;
  margin-top: 5px;
}

.input-half,
input.input-half {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .input-half,
  input.input-half {
    width: 100%;
  }
}

.required {
  color: var(--link-text-color);
}

.text-error {
  font-size: 0.875rem;
  color: var(--link-text-color);
  display: block;
  width: 100%;
  margin-top: 7px !important;
  margin-bottom: 0;
}

.privacypolicy {
  border: 1px solid var(--main-text-color);
  width: 100%;
  height: 250px;
  overflow-y: scroll;
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .privacypolicy {
    margin: 30px 0;
    height: 236px;
  }
}
.privacypolicy__inner {
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .privacypolicy__inner {
    padding: 20px;
  }
}
.privacypolicy h1 {
  font-size: 1rem;
  margin-bottom: 30px;
}
.privacypolicy h2, .privacypolicy h3, .privacypolicy h4, .privacypolicy p, .privacypolicy ol {
  font-size: 0.875rem;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .privacypolicy h2, .privacypolicy h3, .privacypolicy h4, .privacypolicy p, .privacypolicy ol {
    font-size: 0.875rem;
  }
}
.privacypolicy p {
  margin-bottom: 1.6em;
}
.privacypolicy ol {
  padding-left: 2.5em;
  margin-bottom: 1.6em;
}
.privacypolicy ol > li p {
  margin-bottom: 0;
}
.privacypolicy__check {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .privacypolicy__check {
    text-align: left;
  }
  .privacypolicy__check .wpcf7-list-item {
    padding-left: 26px;
    text-indent: -26px;
  }
}

.gmap {
  margin-bottom: 20px;
}
.gmap iframe {
  aspect-ratio: 1/1;
  width: 100%;
  filter: grayscale(1);
}

/* Project */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: transform 6s linear;
}
.slide.is-active {
  opacity: 1;
}
.slide.is-active img {
  transform: scale(1.05);
}

/* Utility */
.is-visible-pc {
  display: block;
}

.is-visible-sp {
  display: none;
}

.br-pc {
  display: inline;
}

.br-sp {
  display: none;
}

.br-tb {
  display: none;
}

@media screen and (max-width: 1024px) {
  .br-tb {
    display: inline;
  }
}
@media screen and (max-width: 767px) {
  .is-visible-pc {
    display: none;
  }
  .is-visible-sp {
    display: block;
  }
  .br-pc {
    display: none;
  }
  .br-sp {
    display: inline;
  }
  .br-tb {
    display: none;
  }
}
.text-center {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .text-center--pc {
    text-align: center;
  }
}

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

.text-left {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .text-left--sp {
    text-align: left;
  }
}

.nowrap {
  white-space: nowrap;
}

.pt0 {
  padding-top: 0;
}

.pb0 {
  padding-bottom: 0;
}

.pb80 {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .pb80 {
    padding-bottom: 50px;
  }
}
