@charset "UTF-8";
html {
  font-size: 16px;
}
@media (max-width: 1400px) {
  html {
    font-size: 1.1428571429vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* フォントカラーは、使用頻度が多いものを選択する */
body {
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #000000;
  line-height: 1;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

/* コンテンツ量が少なく短いページでもフッターを最下部に表示する ---- */
.content-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* コンテンツ量が少なく短いページでもフッターを最下部に表示する ここまで ---- */
/* YouTubeのframeborder属性の変わり(HTML5の標準仕様で廃止されているため) */
iframe {
  border: none;
}

/* ジャギー対策 */
img {
  image-rendering: auto;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

img:not([alt]) {
  filter: blur(10px);
}

input,
button,
select,
textarea {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: none;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.inner {
  width: 100%;
  max-width: 90.625rem;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  .about__inner.inner {
    max-width: 33.75rem;
  }
}

.about__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .about__container {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}

.about__item {
  position: relative;
  display: grid;
  grid-template-columns: 170fr 526fr;
  gap: 1.25rem;
  border-top: 1px solid #73a7b4;
  padding-block: 2rem 1.875rem;
}
@media screen and (max-width: 768px) {
  .about__item {
    padding-block: 1.5625rem 0.9375rem;
    grid-template-columns: 6.25rem 1fr;
    gap: 0.625rem;
  }
}

.about__item::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 3.1875rem;
  height: 1px;
  background-color: #0a4354;
}

.about__term {
  font-size: max(1rem, 12px);
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #0a4354;
  line-height: 2.125;
  letter-spacing: 0.1em;
}

.about__description,
.about__description-tel {
  font-size: max(1rem, 12px);
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #000000;
  line-height: 2.125;
  letter-spacing: 0.1em;
}

.about__description-tel {
  display: inline-block;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .about__description-tel:hover {
    opacity: 0.6;
  }
}
.about__btn-wrapper {
  text-align: center;
  margin-top: 3.75rem;
}

/* ---------- MVのマスクアニメーション -------------------------- */
.js-mv-mask {
  mask-image: linear-gradient(90deg, #ffffff 0% 50%, transparent 100%);
  mask-size: 200% 100%;
  mask-repeat: no-repeat;
  mask-position: 200% 0%;
}

.js-mv-mask.is-open {
  animation: mask 0.5s linear forwards;
}

@keyframes mask {
  0% {
    mask-position: 200% 0%;
  }
  100% {
    mask-position: 0% 0%;
  }
}
/* ---------- MVのマスクアニメーション ここまで ----------------- */
/* ---------- 各セクションのマスクアニメーション -------------------------- */
.js-mask {
  mask-image: linear-gradient(90deg, #ffffff 0% 50%, transparent 100%);
  mask-size: 200% 100%;
  mask-repeat: no-repeat;
  mask-position: 200% 0%;
}

.js-mask.is-open {
  animation: mask 1s linear forwards;
}

@keyframes mask {
  0% {
    mask-position: 200% 0%;
  }
  100% {
    mask-position: 0% 0%;
  }
}
/* ---------- 各セクションのマスクアニメーション ここまで ----------------- */
/* ---------- パララックスの指定 | ここから ---------- */
.js-parallax {
  overflow: hidden;
}
.js-parallax img {
  display: block;
  height: 120%;
  max-width: unset;
}

/* ---------- パララックスの指定 | ここまで ---------- */
/* ---------- 1文字ずつ文字がフェードイン | ここから ---------- */
.js-fadeinTexts-01,
.js-fadeinTexts-02 {
  overflow: hidden;
}

.js-fadeinTexts-01 span,
.js-fadeinTexts-02 span {
  display: inline-block;
}

/* ---------- 1文字ずつ文字がフェードイン | ここまで ---------- */
/* ---------- 読み込み時のチラつき防止 | ここから ---------- */
.js-pop-up {
  opacity: 0;
}

/* ---------- 読み込み時のチラつき防止 | ここまで ---------- */
.body-bg {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: clip;
}

.body-bg__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
  z-index: -10;
}

.body-bg__img::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  z-index: -9;
}

.body-bg__img::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  background-image: url(../../assets/images/common/body-bg-pc.jpg);
  background-size: cover;
  background-position: top center;
  width: 100%;
  height: 100%;
  z-index: -8;
}
@media screen and (max-width: 768px) {
  .body-bg__img::after {
    background-image: url(../../assets/images/common/body-bg-sp.jpg);
  }
}

.btn-products {
  position: fixed;
  bottom: 2.125rem;
  right: 2.125rem;
  width: 14.9375rem;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  right: -100%;
  transition: right 0.6s ease, opacity 0.6s ease;
}
@media screen and (max-width: 768px) {
  .btn-products {
    display: none;
  }
}

.btn-products__link {
  display: inline-block;
  transition: all 0.3s;
}

.btn-products__link img {
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .btn-products__link:hover img {
    filter: brightness(1.2);
  }
}
/* ----- ボタンタイプ共通設定 ここから ----- */
.btn {
  display: inline-block;
  transition: all 0.3s;
  text-align: center;
  cursor: pointer;
}
.btn__text {
  display: inline-block;
  transition: all 0.3s;
}

/* ----- ボタンタイプ共通設定 ここまで ----- */
/* ---------- 『詳しくみる』ボタン | ここから ---------- */
.btn__text-01 {
  position: relative;
  font-size: 1.25rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 600;
  color: #0a4354;
  letter-spacing: 0.1em;
  padding-right: 3.5625rem;
}

.btn__text-01::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  mask-image: url(../../assets/images/common/arrow-right.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #0a4354;
  width: 2.3125rem;
  aspect-ratio: 37/8.3;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .btn.btn-01:hover {
    opacity: 0.6;
  }
  .btn.btn-01:hover .btn__text-01::before {
    animation: arrow-slide 1s ease-in-out infinite alternate;
  }
}
@keyframes arrow-slide {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(-0.625rem);
  }
  100% {
    transform: translateY(-50%) translateX(0);
  }
}
/* ---------- 『詳しくみる』ボタン | ここまで ---------- */
/* ---------- 『お問い合わせはこちら』ボタン | ここから ---------- */
.btn-02 {
  padding: 1.0625rem 2.625rem;
  background-image: radial-gradient(circle at 50% 0, #0a4354 0%, #0a4354 65%, #73a7b4 65%, #73a7b4 100%);
  background-size: 100% 530%;
  background-repeat: no-repeat;
  background-position: 50% 0%;
  border-radius: 0.625rem;
  transition: all 0.3s ease-out;
}

.btn__text-02 {
  position: relative;
  font-size: 1.25rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

@media (any-hover: hover) {
  .btn.btn-02:hover {
    background-position: 50% 100%;
  }
}
/* ---------- 『お問い合わせはこちら』ボタン | ここまで ---------- */
/* ---------- 『送信する』ボタン | ここから ---------- */
.btn.btn-contact {
  position: relative;
  width: 100%;
  max-width: 11.25rem;
  height: 100%;
  max-height: 3.75rem;
  border-radius: 0.625rem;
  background-image: linear-gradient(to bottom, #1a519b 0%, #00bbcb 100%);
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .btn.btn-contact:hover {
    filter: brightness(1.3);
  }
}
.btn-contact__submit {
  position: relative;
  font-size: 1.25rem;
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.04em;
  padding: 1.25rem 0;
}
@media screen and (max-width: 768px) {
  .btn-contact__submit {
    font-size: max(1rem, 12px);
    transition: all 0.3s;
  }
}

/* ---------- 『送信する』ボタン | ここまで ---------- */
.commitment {
  position: relative;
}

.commitment::before,
.commitment::after {
  content: "";
  position: absolute;
  z-index: -1;
  mix-blend-mode: screen;
}

.commitment::before {
  top: 0.375rem;
  right: calc(50% + 34.125rem);
  background-image: url(../../assets/images/company/commitment-bubble-01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 43.75rem;
  aspect-ratio: 700/1264;
  animation: bubble-01 3.5s ease-in-out infinite;
  will-change: transform, opacity;
}
@media screen and (max-width: 768px) {
  .commitment::before {
    top: -5rem;
    right: auto;
    left: -12.5rem;
    width: 18.75rem;
  }
}

.commitment::after {
  top: 1.875rem;
  left: calc(50% + 22.1875rem);
  background-image: url(../../assets/images/company/commitment-bubble-02.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 39.1875rem;
  aspect-ratio: 627/492;
  animation: bubble-02 3.5s ease-in-out infinite;
  animation-delay: 1s;
  will-change: transform, opacity;
}
@media screen and (max-width: 768px) {
  .commitment::after {
    top: 61.25rem;
    left: auto;
    right: -18.125rem;
    width: 21.875rem;
  }
}

.commitment__inner {
  max-width: 66.25rem;
}

.commitment__text-wrapper {
  margin-top: 3.4375rem;
}
@media screen and (max-width: 768px) {
  .commitment__text-wrapper {
    margin-top: 2.8125rem;
  }
}

.commitment__text {
  font-size: 1.25rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #000000;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .commitment__text {
    font-size: max(1rem, 12px);
  }
}

.commitment__img {
  max-width: 42.5rem;
  width: 100%;
  margin-inline: auto;
  margin-top: 4.75rem;
}
@media screen and (max-width: 768px) {
  .commitment__img {
    margin-top: 3.75rem;
  }
}

.commitment__sub-section {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .commitment__sub-section {
    margin-top: 5rem;
  }
}

.commitment__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 3.9375rem; /* 上下の余白 */
  column-gap: 3.75rem; /* 左右の余白 */
}
@media screen and (max-width: 768px) {
  .commitment__items {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 3.75rem; /* 上下の余白 */
    column-gap: 0; /* 左右の余白 */
  }
}

.commitment__item {
  position: relative;
  border-left: 2px solid #73a7b4;
  padding-left: 2.125rem;
}
@media screen and (max-width: 768px) {
  .commitment__item {
    padding-left: 1.5625rem;
  }
}

.commitment__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2px;
  width: 2px;
  height: 2.5rem;
  background-color: #0a4354;
}

.commitment__item-title {
  font-size: 1.5625rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #0a4354;
  line-height: 1.56;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .commitment__item-title {
    font-size: 1.25rem;
  }
}

.commitment__item-text {
  font-size: max(1rem, 12px);
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.875;
  letter-spacing: 0.05em;
  margin-top: 0.75rem;
}

.contact {
  position: relative;
  padding-bottom: 9.0625rem;
}
@media screen and (max-width: 768px) {
  .contact {
    padding-bottom: 6.25rem;
  }
}

.contact::before,
.contact::after {
  content: "";
  position: absolute;
  z-index: -1;
  mix-blend-mode: screen;
}

.contact::before {
  content: "";
  position: absolute;
  top: 24.25rem;
  right: calc(50% + 33.75rem);
  background-image: url(../../assets/images/common/contact-bubble-01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 33.3125rem;
  aspect-ratio: 533/986;
  animation: bubble-01 3.5s ease-in-out infinite;
  will-change: transform, opacity;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .contact::before {
    top: -10.625rem;
    right: auto;
    left: -9.375rem;
    width: 18.75rem;
  }
}

.contact::after {
  top: 5.625rem;
  left: calc(50% + 36.875rem);
  background-image: url(../../assets/images/common/contact-bubble-02.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 14.875rem;
  aspect-ratio: 238/741;
  animation: bubble-02 3.5s ease-in-out infinite;
  animation-delay: 1s;
  will-change: transform, opacity;
}
@media screen and (max-width: 768px) {
  .contact::after {
    top: 31.25rem;
    left: auto;
    right: -15.625rem;
    width: 18.75rem;
  }
}

.contact__inner {
  max-width: 66.25rem;
}

.contact__text-wrapper {
  margin-top: 3.4375rem;
}
@media screen and (max-width: 768px) {
  .contact__text-wrapper {
    margin-top: 2.8125rem;
  }
}

.contact__text {
  font-size: 1.25rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #000000;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .contact__text {
    font-size: max(1rem, 12px);
  }
}

.contact__form {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .contact__form {
    margin-top: 3.125rem;
  }
}

.contact__btn-wrapper {
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .contact__btn-wrapper {
    text-align: center;
  }
}

.contact__note-items {
  margin-top: 1.875rem;
}

.contact__note-item {
  font-size: 1rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.3;
  letter-spacing: 0.04em;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 768px) {
  .contact__note-item {
    font-size: max(0.875rem, 12px);
  }
}

.contact__note-item:nth-child(n+2) {
  margin-top: 1.25rem;
}

.domain {
  position: relative;
}

.domain::before,
.domain::after {
  content: "";
  position: absolute;
  z-index: -1;
  mix-blend-mode: screen;
}

.domain::before {
  top: 14.375rem;
  right: calc(50% + 38.75rem);
  background-image: url(../../assets/images/company/domain-bubble-01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 39.1875rem;
  aspect-ratio: 627/492;
  animation: bubble-01 3.5s ease-in-out infinite;
  will-change: transform, opacity;
}
@media screen and (max-width: 768px) {
  .domain::before {
    top: -3.75rem;
    right: auto;
    left: -10rem;
    width: 25rem;
  }
}

.domain::after {
  top: -13.125rem;
  left: calc(50% + 36.875rem);
  background-image: url(../../assets/images/company/domain-bubble-02.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 14.875rem;
  aspect-ratio: 238/741;
  animation: bubble-02 3.5s ease-in-out infinite;
  animation-delay: 1s;
  will-change: transform, opacity;
}
@media screen and (max-width: 768px) {
  .domain::after {
    top: 31.25rem;
    left: auto;
    right: -15.625rem;
    width: 18.75rem;
  }
}

.domain__inner {
  position: relative;
  max-width: 66.25rem;
}

.domain__inner::before {
  content: "";
  position: absolute;
  top: 94.1875rem;
  right: calc(50% + 33.75rem);
  background-image: url(../../assets/images/company/domain-bubble-03.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 33.3125rem;
  aspect-ratio: 533/986;
  animation: bubble-01 3.5s ease-in-out infinite;
  will-change: transform, opacity;
  mix-blend-mode: screen;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .domain__inner::before {
    top: 94.375rem;
    right: auto;
    left: -9.375rem;
    width: 18.75rem;
  }
}

.domain__items {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .domain__items {
    margin-top: 3.75rem;
  }
}

.domain__item {
  font-size: 1.25rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 600;
  color: #0a4354;
  line-height: 1.3;
  letter-spacing: 0.04em;
  padding: 1.6875rem 2rem;
  border-radius: 1.25rem;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  .domain__item {
    font-size: max(1rem, 12px);
    padding: 0.9375rem 1.25rem;
    border-radius: 0.625rem;
  }
}

.domain__text-wrapper {
  margin-top: 5rem;
}

.domain__text {
  font-size: 1.25rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #000000;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .domain__text {
    font-size: max(1rem, 12px);
  }
}

.domain__text:nth-child(n+2) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .domain__text:nth-child(n+2) {
    margin-top: 1.875rem;
  }
}

.domain__sub-section {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .domain__sub-section {
    margin-top: 5rem;
  }
}

.domain__heading {
  font-size: 1.625rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 600;
  color: #0a4354;
  line-height: 1.5384615385;
  letter-spacing: 0.04em;
}

.domain__products-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 3.125rem; /* 上下の余白 */
  column-gap: 3.75rem; /* 左右の余白 */
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .domain__products-items {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 4.375rem; /* 上下の余白 */
    column-gap: 0; /* 左右の余白 */
    margin-top: 1.875rem;
  }
}

.domain__products-img {
  width: 100%;
  margin-inline: auto;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .domain__products-img {
    width: 90%;
    border-radius: 0.625rem;
  }
}

.domain__products-img img {
  width: 100%;
  aspect-ratio: 5/3;
  object-fit: cover;
}

.domain__products-title {
  font-size: 1.25rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #000000;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .domain__products-title {
    font-size: max(1rem, 12px);
  }
}

.domain__products-list {
  margin-top: 0.4375rem;
}

.domain__products-list-item {
  font-size: max(1rem, 12px);
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.3;
  letter-spacing: 0.05em;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 768px) {
  .domain__products-list-item {
    font-size: max(0.875rem, 12px);
  }
}

.domain__products-list-item:nth-child(n+2) {
  margin-top: 0.5rem;
}

.domain__offer-wrapper {
  background-color: rgba(191, 224, 237, 0.42);
  padding: 3.75rem 3.4375rem;
  margin-top: 2.1875rem;
  border-radius: 1.25rem;
}
@media screen and (max-width: 768px) {
  .domain__offer-wrapper {
    padding: 1.5625rem 1.5625rem;
    margin-top: 1.875rem;
    border-radius: 0.625rem;
  }
}

.domain__offer-item {
  position: relative;
  font-size: max(1rem, 12px);
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.3;
  letter-spacing: 0.05em;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .domain__offer-item {
    font-size: max(0.875rem, 12px);
  }
}

.domain__offer-item:nth-child(n+2) {
  margin-top: 1.1875rem;
}

.domain__offer-item::before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
  font-size: max(1rem, 12px);
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #0a4354;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .domain__offer-item::before {
    font-size: max(0.875rem, 12px);
  }
}

.flow {
  position: relative;
  padding-bottom: 10.875rem;
}
@media screen and (max-width: 768px) {
  .flow {
    padding-bottom: 6.25rem;
  }
}

.flow::before {
  content: "";
  position: absolute;
  top: -1.875rem;
  right: calc(50% + 38.75rem);
  background-image: url(../../assets/images/oem-odm/flow-bubble-01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 24.875rem;
  aspect-ratio: 398/619.4;
  z-index: -1;
  mix-blend-mode: screen;
  animation: bubble-01 3.5s ease-in-out infinite;
  will-change: transform, opacity;
}
@media screen and (max-width: 768px) {
  .flow::before {
    top: -4.375rem;
    right: auto;
    left: -8.125rem;
    width: 18.75rem;
  }
}

.flow__sub-section {
  margin-top: 6.875rem;
}
@media screen and (max-width: 768px) {
  .flow__sub-section {
    margin-top: 5rem;
  }
}

.flow__items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 2.8125rem; /* 上下の余白 */
}

.flow__item {
  position: relative;
  display: grid;
  grid-template-columns: 3rem 1fr;
  column-gap: 1.6875rem; /* 左右の余白 */
}
@media screen and (max-width: 768px) {
  .flow__item {
    column-gap: 0.9375rem; /* 左右の余白 */
  }
}

.flow__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 2.9375rem;
  left: 1.5rem;
  width: 1px;
  height: calc(100% - 3rem);
  height: 100%;
  background-color: #0a4354;
}

.flow__item-number {
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-family: "georgia", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #0a4354;
  letter-spacing: -0.028em;
  width: 3rem;
  height: 3rem;
  border: 1px solid #0a4354;
  border-radius: 100vmax;
}

.flow__item-info {
  padding-top: 0.625rem;
}

.flow__item-title {
  font-size: max(1.25rem, 12px);
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #0a4354;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.flow__item-text {
  font-size: max(1rem, 12px);
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.875;
  letter-spacing: 0.05em;
  margin-top: 0.875rem;
}

.flow__text-wrapper {
  margin-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .flow__text-wrapper {
    margin-top: 3.75rem;
  }
}

.flow__text {
  font-size: 1.25rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #000000;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .flow__text {
    font-size: max(1rem, 12px);
  }
}

.flow__btn-wrapper {
  margin-top: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .flow__btn-wrapper {
    text-align: center;
    margin-top: 3.125rem;
  }
}

.footer {
  padding-block: 2.8125rem 5.4375rem;
  border-top: 1px solid #0a4354;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-block: 2.8125rem;
  }
}

.footer__inner.inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__inner.inner {
    flex-direction: column;
    align-items: center;
  }
}

.footer__brand {
  padding-left: 3.125rem;
}
@media screen and (max-width: 768px) {
  .footer__brand {
    padding-left: 0;
  }
}

.footer__logo {
  max-width: 13.75rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    max-width: 12.5rem;
  }
}

.footer__logo-link {
  display: block;
  transition: all 0.3s;
}

.footer__logo-link img {
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .footer__logo-link:hover {
    opacity: 0.6;
  }
}
.footer__copyright {
  display: inline-block;
  font-size: max(0.75rem, 12px);
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #374b57;
  letter-spacing: 0.2em;
  margin-top: 4.875rem;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    margin-top: 3.125rem;
  }
}

.footer__nav {
  display: flex;
  justify-content: space-between;
  gap: 3.125rem;
  max-width: 32.1875rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    flex-direction: column;
    gap: 0.9375rem;
    max-width: none;
    text-align: center;
    margin-top: 3.125rem;
  }
}

.footer__menu-item:nth-child(n+2) {
  margin-top: 1.25rem;
}

.footer__menu-item-link {
  position: relative;
  display: inline-block;
  font-size: 1.125rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.3888888889;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .footer__menu-item-link {
    font-size: max(1rem, 12px);
  }
}

.footer__menu-item-link::before,
.footer__menu-item-link::after {
  content: "";
  position: absolute;
  border-bottom: 1px solid #73a7b4;
  display: block;
  transition: all 0.3s ease;
  width: 0;
}

.footer__menu-item-link::before {
  left: 0;
  bottom: -0.3125rem;
}

.footer__menu-item-link::after {
  right: 0;
  top: -0.3125rem;
}

@media (any-hover: hover) {
  .footer__menu-item-link:hover::before,
  .footer__menu-item-link:hover::after {
    width: 100%;
  }
}
.form__item:nth-child(n+2) {
  margin-top: 1.375rem;
}

.form__label {
  position: relative;
  display: inline-block;
  font-size: 1.25rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #0a4354;
  letter-spacing: 0.04em;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .form__label {
    font-size: max(1rem, 12px);
  }
}

.form__label::before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.25rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #0a4354;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .form__label::before {
    font-size: max(1rem, 12px);
  }
}

/* 必須 */
.form__required {
  display: inline-block;
  font-size: max(0.875rem, 12px);
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-align: center;
  background-color: #be0000;
  border-radius: 0.1875rem;
  padding: 0.25rem 0.1875rem;
  margin-left: 0.75rem;
}

.form__data {
  margin-top: 0.9375rem;
  width: 100%;
}

.form__data-select {
  position: relative;
}

.form__data-select::before {
  content: "";
  position: absolute;
  right: 2.1875rem;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../../assets/images/common/arrow-down.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 0.375rem;
  height: 1.4375rem;
}
@media screen and (max-width: 768px) {
  .form__data-select::before {
    right: 0.625rem;
  }
}

.form__note {
  font-size: max(0.875rem, 12px);
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #0a4354;
  letter-spacing: 0.04em;
  margin-top: 0.4375rem;
  padding-left: 1.25rem;
}

/* ---------- フォーム共通設定 | ここから ---------- */
.form__input,
.form__select,
.form__textarea {
  padding: 0.8125rem 1.5rem;
  padding: 1rem 1.5rem;
  width: 100%;
  background-color: #ffffff;
  border-radius: 0.625rem;
  border: 1px solid #ffffff;
}
@media screen and (max-width: 768px) {
  .form__input,
  .form__select,
  .form__textarea {
    padding: 0.8125rem 1.25rem;
  }
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border: 1px solid #0a4354;
}

.form__select {
  font-size: 1rem;
  font-weight: 400;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #000000;
  line-height: 1.75;
}

.form__textarea {
  padding: 1rem 1.25rem;
  background-color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #000000;
  line-height: 1.75;
  border-radius: 0.25rem;
  width: 100%;
  height: 8.75rem;
}
@media screen and (max-width: 768px) {
  .form__textarea {
    height: 15.625rem;
  }
}

/* プレースホルダー */
::placeholder {
  font-size: max(1rem, 12px);
  font-family: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: rgba(10, 67, 84, 0.5);
  letter-spacing: 0.04em;
}

/* ---------- フォーム共通設定 | ここまで ---------- */
/* ---------- チェックボックス（共通） | ここから ---------- */
.wpcf7-form-control.wpcf7-checkbox {
  display: flex;
  flex-direction: column;
}

.wpcf7-list-item:nth-child(n+2) {
  margin-top: 0.1875rem;
}

.wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.3;
  padding-left: 2.5rem;
}

/* チェックボックス */
.wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 0.375rem;
  left: 0;
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  border: solid 1px #000000;
  transition: 0.3s ease;
}

/* チェックマーク */
.wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 0.5625rem;
  left: 0.125rem;
  transform: rotate(-45deg);
  width: 0.5625rem;
  height: 0.3125rem;
  border-left: 2px solid #0a4354;
  border-bottom: 2px solid #0a4354;
  opacity: 0;
}

input[type=checkbox]:checked + .wpcf7-list-item-label:after {
  opacity: 1;
}

.wpcf7-file {
  width: 100%;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7 form.sent .wpcf7-response-output {
  font-size: 1rem;
  font-weight: 500;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #0a4354;
  line-height: 1.75;
  text-align: center;
  border: none;
}

/* ---------- チェックボックス（共通） | ここまで ---------- */
/* ---------- プライバシーポリシー | ここから ---------- */
.form__privacy {
  width: max-content;
  margin-top: 3.125rem;
  margin-inline: auto;
}

/* プライバシーポリシー */
.form__privacy .wpcf7-list-item-label {
  font-size: 1.125rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.3;
  padding-left: 2.375rem;
}
@media screen and (max-width: 768px) {
  .form__privacy .wpcf7-list-item-label {
    font-size: 1rem;
    padding-left: 1.875rem;
  }
}

/* プライバシーポリシーのチェックボックス */
.form__privacy .wpcf7-list-item-label::before {
  top: 0;
  left: 0;
  width: 1.5625rem;
  height: 1.5625rem;
  border-radius: 0.125rem;
}
@media screen and (max-width: 768px) {
  .form__privacy .wpcf7-list-item-label::before {
    width: 1.25rem;
    height: 1.25rem;
  }
}

/* プライバシーポリシーのチェックマーク */
.form__privacy .wpcf7-list-item-label::after {
  top: 0.3125rem;
  left: 0.3125rem;
  width: 1rem;
  height: 0.625rem;
}
@media screen and (max-width: 768px) {
  .form__privacy .wpcf7-list-item-label::after {
    top: 0.375rem;
    left: 0.1875rem;
    width: 0.75rem;
    height: 0.4375rem;
  }
}

.form__privacy .wpcf7-list-item-label a {
  display: inline-block;
  font-size: 1.125rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.3;
  transition: all 0.3s;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}
@media screen and (max-width: 768px) {
  .form__privacy .wpcf7-list-item-label a {
    font-size: 1rem;
  }
}

.form__privacy .wpcf7-list-item-label a:hover {
  opacity: 0.6;
}

/* ---------- プライバシーポリシー | ここまで ---------- */
/* ---------- エラー時のプレースフォルダー | ここから ---------- */
.wpcf7-not-valid:not(.form__radio) {
  font-size: 0.875rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  line-height: 1;
  color: #be0000;
  background-color: rgba(201, 72, 0, 0.2);
  border: 1px solid #be0000;
}

.wpcf7-not-valid:not(.form__radio)::placeholder {
  color: #ffffff;
}

.wpcf7-not-valid-tip {
  font-size: 0.875rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  line-height: 1;
  color: #be0000;
  margin-top: 0.625rem;
}

/* ---------- エラー時のプレースフォルダー | ここまで ---------- */
.fv-lower {
  position: relative;
  border-bottom: 1px solid #73a7b4;
  padding-top: 13.4375rem;
  padding-bottom: 5.9375rem;
}
@media screen and (max-width: 768px) {
  .fv-lower {
    padding-top: 10rem;
    padding-bottom: 4.375rem;
  }
}

.fv-lower::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../../assets/images/common/fv-lower-img.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 1920/926.3;
  opacity: 0.3;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .fv-lower__title {
    text-align: center;
  }
}

.fv-lower__title-01 {
  font-size: 2.25rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #0a4354;
  line-height: 1.9444444444;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .fv-lower__title-01 {
    font-size: 1.5rem;
  }
}

.fv-lower__title-02 {
  font-size: 5.625rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.3;
  letter-spacing: 0.04em;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .fv-lower__title-02 {
    font-size: 1.875rem;
    margin-top: 0.3125rem;
  }
}

.group {
  position: relative;
}

.group::before,
.group::after {
  content: "";
  position: absolute;
  z-index: -1;
  mix-blend-mode: screen;
}

.group::before {
  content: "";
  position: absolute;
  top: 31.5rem;
  right: calc(50% + 33.75rem);
  background-image: url(../../assets/images/company/group-bubble-01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 33.3125rem;
  aspect-ratio: 533/986;
  animation: bubble-01 3.5s ease-in-out infinite;
  will-change: transform, opacity;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .group::before {
    top: -10.625rem;
    right: auto;
    left: -9.375rem;
    width: 18.75rem;
  }
}

.group::after {
  top: 42.875rem;
  left: calc(50% + 22.1875rem);
  background-image: url(../../assets/images/company/group-bubble-02.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 39.1875rem;
  aspect-ratio: 627/492;
  animation: bubble-02 3.5s ease-in-out infinite;
  animation-delay: 1s;
  will-change: transform, opacity;
}
@media screen and (max-width: 768px) {
  .group::after {
    top: 87.5rem;
    left: auto;
    right: -18.125rem;
    width: 21.875rem;
  }
}

.group__inner {
  position: relative;
  max-width: 66.25rem;
}

.group__inner::before {
  content: "";
  position: absolute;
  top: 158.5625rem;
  right: calc(50% + 33.75rem);
  background-image: url(../../assets/images/company/group-bubble-03.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 43.75rem;
  aspect-ratio: 700/739;
  animation: bubble-01 3.5s ease-in-out infinite;
  will-change: transform, opacity;
  mix-blend-mode: screen;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .group__inner::before {
    top: 156.25rem;
    right: auto;
    left: -9.375rem;
    width: 18.75rem;
  }
}

.group__title-wrapper {
  margin-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .group__title-wrapper {
    margin-top: 5rem;
  }
}

.group__sub-title {
  font-size: 1.875rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.3333333333;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .group__sub-title {
    font-size: max(1.625rem, 12px);
  }
}

.group__title-ja {
  max-width: 40.8125rem;
  width: 100%;
  margin-top: 4.0625rem;
}
.group__title-en {
  max-width: 19.9375rem;
  width: 100%;
  margin-top: 3.375rem;
}
@media screen and (max-width: 768px) {
  .group__title-en {
    width: 80%;
    margin-top: 3.125rem;
  }
}

.group__text-wrapper {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .group__text-wrapper {
    margin-top: 3.75rem;
  }
}

.group__text {
  font-size: 1.25rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #0a4354;
  line-height: 3;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 768px) {
  .group__text {
    font-size: max(1rem, 12px);
  }
}

.group__text:nth-child(n+2) {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .group__text:nth-child(n+2) {
    margin-top: 2.8125rem;
  }
}

.group__map-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.75rem;
  margin-top: 11.5625rem;
}
@media screen and (max-width: 768px) {
  .group__map-items {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 6.25rem;
  }
}

.group__map-item {
  background-color: #ffffff;
  border-radius: 1.25rem;
  overflow: hidden;
}

.group__map {
  width: 100%;
}

.group__map iframe {
  width: 100%;
  aspect-ratio: 5/3;
}

.group__body {
  padding: 2.1875rem 2.1875rem;
}
@media screen and (max-width: 768px) {
  .group__body {
    padding: 1.25rem 1.25rem;
  }
}

.group__company {
  padding-bottom: 1.5625rem;
  border-bottom: 1px solid #73a7b4;
}

.group__company-name {
  font-size: 1.625rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #0a4354;
  line-height: 1.5384615385;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .group__company-name {
    font-size: 1.25rem;
  }
}

.group__company-details {
  margin-top: 0.3125rem;
}

.group__company-detail {
  position: relative;
  font-size: max(1rem, 12px);
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #0a4354;
  line-height: 1.875;
  letter-spacing: 0.05em;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .group__company-detail {
    font-size: max(0.875rem, 12px);
  }
}

.group__company-detail::before {
  content: "◎";
  position: absolute;
  top: 0;
  left: 0;
  font-size: max(1rem, 12px);
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #0a4354;
  line-height: 1.875;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .group__company-detail::before {
    font-size: max(0.875rem, 12px);
  }
}

.group__info {
  margin-top: 1.75rem;
}
@media screen and (max-width: 768px) {
  .group__info {
    margin-top: 0.9375rem;
  }
}

.group__address,
.group__tel,
.group__tel a {
  font-size: max(1rem, 12px);
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.875;
  letter-spacing: 0.05em;
}

.group__tel a {
  display: inline-block;
  transition: all 0.3s;
}

.group__company-url a {
  display: inline-block;
  font-size: max(1rem, 12px);
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.875;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  word-break: break-all;
}

@media (any-hover: hover) {
  .group__tel a:hover,
  .group__company-url a:hover {
    opacity: 0.6;
  }
}
.header {
  background-color: transparent;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 2.5rem 0;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 0.625rem 0;
  }
}

/* スクロールするとヘッダーの色が変化する */
.header.headerChange {
  background-color: #ffffff;
  box-shadow: 0px 0px 5px 0px rgba(10, 67, 84, 0.8);
  padding: 0.46875rem 0;
}
.header__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  transition: all 0.3s;
  padding-inline: 2.125rem 0.875rem;
  max-width: 120rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .header__inner {
    align-items: center;
    padding-inline: 1.25rem;
  }
}

.header__inner.headerChange {
  align-items: center;
}

.header__logo-link {
  display: block;
  width: 14rem;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .header__logo-link {
    width: 11.25rem;
  }
}

.header__logo-link img {
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .header__logo-link:hover {
    opacity: 0.6;
  }
}
.header__drawer {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__drawer {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .header__pc-nav {
    height: inherit;
    display: none;
  }
}

.history {
  position: relative;
}

.history::before,
.history::after {
  content: "";
  position: absolute;
  z-index: -1;
  mix-blend-mode: screen;
}

.history::before {
  top: 1.875rem;
  right: calc(50% + 38.4375rem);
  background-image: url(../../assets/images/company/history-bubble-01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 39.1875rem;
  aspect-ratio: 627/1195;
  animation: bubble-01 3.5s ease-in-out infinite;
  will-change: transform, opacity;
}
@media screen and (max-width: 768px) {
  .history::before {
    top: -26.875rem;
    right: auto;
    left: -14.375rem;
    width: 21.875rem;
  }
}

.history::after {
  top: -23.4375rem;
  left: calc(50% + 36.6875rem);
  background-image: url(../../assets/images/company/history-bubble-02.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 14.875rem;
  aspect-ratio: 238/741;
  animation: bubble-02 3.5s ease-in-out infinite;
  animation-delay: 1s;
  will-change: transform, opacity;
}
@media screen and (max-width: 768px) {
  .history::after {
    top: 23.125rem;
    left: auto;
    right: -6.875rem;
    width: 9.375rem;
  }
}

.history__text-wrapper {
  margin-top: 3.4375rem;
}

.history__text {
  font-size: 1.25rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #000000;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .history__text {
    font-size: max(1rem, 12px);
  }
}

/* スライド */
.history__swiper {
  margin-left: 0;
  margin-right: calc(50% - 50vw);
  width: 100vw;
  max-width: clamp(82.5rem, 23.438rem + 49.22vw, 102.188rem); /* 1320 ~ 1635 | 1920 ~ 2560 */
  margin-top: 6.5625rem;
}
@media screen and (max-width: 1920px) {
  .history__swiper {
    max-width: clamp(67.188rem, 21.25rem + 51.04vw, 82.5rem); /* 1075 ~ 1320 | 1440 ~ 1920 */
  }
}
@media screen and (max-width: 1440px) {
  .history__swiper {
    max-width: clamp(35.688rem, 0.402rem + 73.51vw, 66.563rem); /* 571 ~ 1065 | 768 ~ 1440 */
  }
}
@media screen and (max-width: 768px) {
  .history__swiper {
    width: 100%;
    max-width: none;
  }
}

.history__slide {
  position: relative;
  padding-right: 4rem;
}
@media screen and (max-width: 768px) {
  .history__slide {
    padding-inline: 0.9375rem;
  }
}

.history__slide::before,
.history__slide::after {
  content: "";
  position: absolute;
  background-color: #0a4354;
}

.history__slide::before {
  top: 8.125rem;
  left: 0;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 100vmax;
}
@media screen and (max-width: 768px) {
  .history__slide::before {
    top: 6.6875rem;
    width: 0.9375rem;
    height: 0.9375rem;
  }
}

.history__slide::after {
  top: 8.75rem;
  left: 0.125rem;
  width: calc(100% - 0.125rem);
  height: 1px;
}
@media screen and (max-width: 768px) {
  .history__slide::after {
    top: 7.125rem;
  }
}

.history__western {
  font-size: 2.875rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #0a4354;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .history__western {
    font-size: max(1.875rem, 12px);
  }
}

.history__western span {
  font-size: 1.25rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .history__western span {
    font-size: 1rem;
  }
}

.history__japanese {
  font-size: max(1rem, 12px);
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #0a4354;
  letter-spacing: 0.04em;
  margin-top: 1.5625rem;
}

.history__info {
  margin-top: 6.5625rem;
}
@media screen and (max-width: 768px) {
  .history__info {
    margin-top: 5rem;
  }
}

.history__info-title {
  font-size: max(1.25rem, 12px);
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 600;
  color: #0a4354;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.history__info-text {
  font-size: max(1rem, 12px);
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.875;
  letter-spacing: 0.05em;
  margin-top: 2.8125rem;
}

@media screen and (max-width: 768px) {
  .hamburger {
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #bfe0ed;
    border-radius: 0.625rem;
    filter: drop-shadow(0px 0px 4px #73a7b4);
    transition: all 0.3s;
    z-index: 100;
  }
}

@media screen and (max-width: 768px) {
  .hamburger span {
    position: absolute;
    left: 0.4375rem;
    transform: translateY(-50%);
    width: 1.625rem;
    height: 0.1875rem;
    background-color: #0a4354;
    transition: all 0.3s;
  }
}

@media (any-hover: hover) {
  .hamburger:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 768px) {
  .hamburger span:first-child {
    top: 30%;
  }
}

@media screen and (max-width: 768px) {
  .hamburger span:nth-child(2) {
    top: 50%;
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  .hamburger span:nth-child(3) {
    top: 70%;
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  .hamburger.is-active span:nth-child(3) {
    width: 1.875rem;
  }
}

@media screen and (max-width: 768px) {
  .hamburger.is-active span:first-child {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
}

@media screen and (max-width: 768px) {
  .hamburger.is-active span:nth-child(2) {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .hamburger.is-active span:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
}

@media screen and (max-width: 768px) {
  .hamburger__open-btn.is-active {
    display: none;
  }
}

.intro {
  position: relative;
  margin-top: -46.6875rem;
  padding-top: 12rem;
}
@media screen and (max-width: 768px) {
  .intro {
    margin-top: 0;
    padding-top: 0;
  }
}

.intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../../assets/images/top/intro-bg.png);
  background-size: 100% 126.55rem;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 1920/2024.8;
  z-index: -1;
}
@media screen and (max-width: 1920px) {
  .intro::before {
    background-size: contain;
    width: 120rem;
  }
}
@media screen and (max-width: 768px) {
  .intro::before {
    top: 26.875rem;
    background-size: 100% 100%;
    width: 81.25rem;
  }
}

.intro__container {
  position: relative;
}

.intro__text {
  font-size: 1.25rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #000000;
  line-height: 3;
  letter-spacing: 0.075em;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: anywhere;
  padding-bottom: 18.125rem;
}
@media screen and (max-width: 768px) {
  .intro__text {
    font-size: max(1rem, 12px);
    padding-bottom: 9.375rem;
  }
}

.intro__img {
  position: absolute;
}

.intro__img-01 {
  top: 1.5625rem;
  right: calc(50% + 23rem);
  width: 38.25rem;
}
@media screen and (max-width: 1440px) {
  .intro__img-01 {
    right: calc(50% + 18.75rem);
  }
}
@media screen and (max-width: 768px) {
  .intro__img-01 {
    right: calc(50% + 5.625rem);
    width: 12.5rem;
  }
}

.intro__img-02 {
  top: 25.5rem;
  right: calc(50% + 24.8125rem);
  width: 23.5625rem;
}
@media screen and (max-width: 1440px) {
  .intro__img-02 {
    right: calc(50% + 20rem);
  }
}
@media screen and (max-width: 768px) {
  .intro__img-02 {
    top: 37.5rem;
    width: 11.25rem;
    right: calc(50% + 8.125rem);
  }
}

.intro__img-03 {
  top: -1.875rem;
  left: calc(50% + 27.1875rem);
  width: 31.625rem;
}
@media screen and (max-width: 1440px) {
  .intro__img-03 {
    left: calc(50% + 23.75rem);
  }
}
@media screen and (max-width: 768px) {
  .intro__img-03 {
    width: 12.5rem;
    left: calc(50% + 6.25rem);
  }
}

.intro__img-04 {
  top: 14.375rem;
  left: calc(50% + 32.25rem);
  width: 21.5625rem;
}
@media screen and (max-width: 1440px) {
  .intro__img-04 {
    left: calc(50% + 24.375rem);
  }
}
@media screen and (max-width: 768px) {
  .intro__img-04 {
    top: 25rem;
    left: calc(50% + 8.75rem);
    width: 12.5rem;
  }
}

.intro__img-05 {
  top: 22.25rem;
  left: calc(50% + 19.5rem);
  width: 29.9375rem;
}
@media screen and (max-width: 1440px) {
  .intro__img-05 {
    left: calc(50% + 18.125rem);
  }
}
@media screen and (max-width: 768px) {
  .intro__img-05 {
    top: 55rem;
    left: calc(50% + 5rem);
    width: 12.5rem;
  }
}

.intro__title {
  position: relative;
  max-width: 73rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .intro__title {
    max-width: 31.25rem;
  }
}

.intro__title::before,
.intro__title::after {
  content: "";
  position: absolute;
  z-index: -1;
  mix-blend-mode: screen;
}

.intro__title::before {
  top: -12.5rem;
  right: calc(50% + 41.125rem);
  background-image: url(../../assets/images/top/intro-bubble-01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 22.8125rem;
  aspect-ratio: 364.7/777.8;
  animation: bubble-01 3.5s ease-in-out infinite;
  will-change: transform, opacity;
}
@media screen and (max-width: 768px) {
  .intro__title::before {
    width: 9.375rem;
  }
}

@keyframes bubble-01 {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-15px) scale(1.08);
    opacity: 0.95;
  }
}
.intro__title::after {
  top: 24.1875rem;
  left: calc(50% + 28.125rem);
  background-image: url(../../assets/images/top/intro-bubble-02.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 39.1875rem;
  aspect-ratio: 627/492;
  animation: bubble-02 3.5s ease-in-out infinite;
  animation-delay: 1s;
  will-change: transform, opacity;
}
@media screen and (max-width: 768px) {
  .intro__title::after {
    width: 12.5rem;
  }
}

@keyframes bubble-02 {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-15px) scale(1.06);
    opacity: 0.95;
  }
}
/* 会社概要ページイントロ下の余白 */
.lower-main.lower-main-company {
  margin-top: 14.6875rem;
}
@media screen and (max-width: 768px) {
  .lower-main.lower-main-company {
    margin-top: 9.375rem;
  }
}

/* OEM・ODMページイントロ下の余白 */
.lower-main.lower-main-oem-odm {
  margin-top: 11.4375rem;
}
@media screen and (max-width: 768px) {
  .lower-main.lower-main-oem-odm {
    margin-top: 8.125rem;
  }
}

@media screen and (max-width: 768px) {
  .lower-main__inner.inner {
    max-width: 33.75rem;
  }
}

.lower-main__container {
  display: grid;
  grid-template-columns: 20rem 1fr;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .lower-main__container {
    display: block;
  }
}

.lower-main__side {
  position: relative;
}
@media screen and (max-width: 768px) {
  .lower-main__side {
    display: none;
  }
}

.merit {
  position: relative;
}

.merit::before,
.merit::after {
  content: "";
  position: absolute;
  z-index: -1;
  mix-blend-mode: screen;
}

.merit::before {
  content: "";
  top: 14.375rem;
  right: calc(50% + 38.75rem);
  background-image: url(../../assets/images/oem-odm/merit-bubble-01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 39.1875rem;
  aspect-ratio: 627/492;
  animation: bubble-01 3.5s ease-in-out infinite;
  will-change: transform, opacity;
}
@media screen and (max-width: 768px) {
  .merit::before {
    top: -3.75rem;
    right: auto;
    left: -12.5rem;
    width: 25rem;
  }
}

.merit::after {
  top: -7.1875rem;
  left: calc(50% + 20.3125rem);
  background-image: url(../../assets/images/oem-odm/merit-bubble-02.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 39.1875rem;
  aspect-ratio: 627/492;
  animation: bubble-02 3.5s ease-in-out infinite;
  animation-delay: 1s;
  will-change: transform, opacity;
}
@media screen and (max-width: 768px) {
  .merit::after {
    top: 41.25rem;
    left: auto;
    right: -18.125rem;
    width: 25rem;
  }
}

.merit__sub-section {
  margin-top: 5.3125rem;
}
@media screen and (max-width: 768px) {
  .merit__sub-section {
    margin-top: 3.75rem;
  }
}

.merit__items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 2.5rem; /* 上下の余白 */
}

.merit__item {
  display: grid;
  grid-template-columns: 332fr 728fr;
  row-gap: 2.5rem; /* 上下の余白 */
  background-color: #ffffff;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .merit__item {
    grid-template-columns: repeat(1, 1fr);
  }
}

.merit__item-img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .merit__item-img {
    width: 90%;
    margin-inline: auto;
    border-radius: 0.625rem;
    overflow: hidden;
    height: auto;
    margin-top: 1.875rem;
  }
}

.merit__item-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 332/258;
  object-fit: cover;
}

.merit__item-text-wrapper {
  padding: 2.5rem 2.375rem;
}
@media screen and (max-width: 768px) {
  .merit__item-text-wrapper {
    padding: 1.25rem;
  }
}

.merit__item-heading {
  font-size: 1.625rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 600;
  color: #0a4354;
  line-height: 1.3846153846;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .merit__item-heading {
    font-size: 1.375rem;
  }
}

.merit__item-text {
  font-size: max(1rem, 12px);
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.875;
  letter-spacing: 0.05em;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .merit__item-text {
    margin-top: 1.875rem;
  }
}

.mv {
  position: relative;
  height: 85.25rem;
}
@media screen and (max-width: 768px) {
  .mv {
    height: 100svh;
  }
}

.mv__img {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .mv__img {
    height: 100svh;
  }
}

.mv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%;
}
@media screen and (max-width: 768px) {
  .mv__img img {
    height: 100svh;
    object-position: 30% 0%;
  }
}

.mv__title-wrapper {
  position: absolute;
  top: 18.75rem;
  left: calc(50% - 3.9375rem);
}
@media screen and (max-width: 768px) {
  .mv__title-wrapper {
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 28.125rem;
  }
}

.mv__title-ja {
  width: 47.125rem;
}
@media screen and (max-width: 768px) {
  .mv__title-ja {
    width: 100%;
  }
}

.mv__title-en {
  width: 33.9375rem;
  margin-top: 4.5rem;
}
@media screen and (max-width: 768px) {
  .mv__title-en {
    width: 80%;
    margin-top: 3.125rem;
  }
}

.news {
  position: relative;
  padding-bottom: 12.5rem;
}
@media screen and (max-width: 768px) {
  .news {
    padding-bottom: 9.375rem;
  }
}

.news::before,
.news::after {
  content: "";
  position: absolute;
  z-index: -1;
  mix-blend-mode: screen;
}

.news::before {
  top: 0;
  right: calc(50% + 30rem);
  background-image: url(../../assets/images/top/news-bubble-01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 25rem;
  aspect-ratio: 932/1182;
  animation: bubble-01 3.5s ease-in-out infinite;
  will-change: transform, opacity;
}
@media screen and (max-width: 768px) {
  .news::before {
    right: auto;
    left: -12.5rem;
    width: 18.75rem;
  }
}

.news::after {
  top: 3.125rem;
  left: calc(50% + 46.875rem);
  background-image: url(../../assets/images/top/news-bubble-02.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 15.625rem;
  aspect-ratio: 803/1711;
  animation: bubble-02 3.5s ease-in-out infinite;
  animation-delay: 1s;
  will-change: transform, opacity;
}
@media screen and (max-width: 768px) {
  .news::after {
    top: 9.375rem;
    left: auto;
    right: -7.5rem;
    width: 12.5rem;
  }
}

@media screen and (max-width: 768px) {
  .news__inner {
    max-width: 33.75rem;
  }
}

.news__pagination {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .news__pagination {
    margin-top: 5rem;
  }
}

.news-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.875rem;
}
@media screen and (max-width: 768px) {
  .news-card {
    grid-template-columns: repeat(1, 1fr);
    gap: 3.75rem;
  }
}

.news-card__link {
  display: block;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .news-card__link:hover .news-card__img img {
    transform: scale(1.1);
    filter: brightness(1.05);
  }
  .news-card__link:hover .news-card__category {
    color: #000000;
    background-color: rgba(191, 224, 237, 0.4);
  }
  .news-card__link:hover .news-card__time {
    color: rgba(10, 67, 84, 0.6);
  }
  .news-card__link:hover .news-card__title {
    color: rgba(0, 0, 0, 0.6);
  }
}
.news-card__meta {
  margin-top: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .news-card__meta {
    margin-top: 1.5625rem;
  }
}

.news-card__category-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.news-card__category {
  display: inline-block;
  font-size: 0.875rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #0a4354;
  line-height: 1.3;
  letter-spacing: 0.05em;
  padding: 0.25rem 1.5625rem;
  border: 1px solid #0a4354;
  background-color: #ffffff;
  border-radius: 100vmax;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .news-card__category {
    padding: 0.125rem 0.625rem;
    font-size: max(0.75rem, 12px);
  }
}

.news-card__time {
  display: block;
  font-size: max(0.875rem, 12px);
  font-family: "georgia", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #0a4354;
  text-align: right;
  margin-top: 0.625rem;
  transition: all 0.3s;
}

.news-card__img {
  width: 100%;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .news-card__img {
    border-radius: 0.625rem;
  }
}

.news-card__img img {
  width: 100%;
  aspect-ratio: 304/216;
  object-fit: cover;
  will-change: transform, filter;
  transition: all 0.3s;
}

.news-card__title {
  font-size: max(1rem, 12px);
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.875;
  letter-spacing: 0.1em;
  margin-top: 0.9375rem;
  transition: all 0.3s;
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .oem-odm__inner.inner {
    max-width: 33.75rem;
  }
}

.oem-odm__heading {
  font-size: 2.25rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 600;
  color: #0a4354;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .oem-odm__heading {
    font-size: 1.5rem;
  }
}

.oem-odm__container {
  position: relative;
  margin-top: 3.125rem;
}

.oem-odm__text {
  font-size: 1.25rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #0a4354;
  line-height: 2.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .oem-odm__text {
    font-size: max(1rem, 12px);
  }
}

.oem-odm__text:nth-child(n+2) {
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .oem-odm__text:nth-child(n+2) {
    margin-top: 2.5rem;
  }
}

.oem-odm__img {
  position: absolute;
  top: -0.8125rem;
  right: -1.5625rem;
  width: 44.25rem;
}
@media screen and (max-width: 768px) {
  .oem-odm__img {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 3.125rem;
    width: 100%;
  }
}

.pagination,
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination a {
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .pagination a:hover {
    opacity: 0.6;
  }
}
.page-numbers {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #000000;
  transition: all 0.3s;
}

.page-numbers:not(.prev.page-numbers):not(.next.page-numbers) {
  padding: 0 0.9375rem;
}

/* 現在表示されているページ */
.page-numbers.current {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.875rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #000000;
}

.page-numbers.dots {
  min-width: 0;
  padding: 0;
  border: none;
}

.page-numbers:not(.current):not(.dots):hover,
.next.page-numbers:hover,
.prev.page-numbers:hover {
  filter: brightness(1.1);
  color: #000000;
}

.next.page-numbers,
.prev.page-numbers {
  position: relative;
  display: block;
  width: 2.3125rem;
  height: auto;
  aspect-ratio: 37/8.3;
}
@media screen and (max-width: 768px) {
  .next.page-numbers,
  .prev.page-numbers {
    width: 1.5625rem;
  }
}

.next.page-numbers::after,
.prev.page-numbers::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  margin: auto;
  width: 100%;
  height: 100%;
}

/* 前への矢印カスタマイズ */
.next.page-numbers::after {
  background-image: url(../../assets/images/common/arrow-right.svg);
}

/* 次への矢印カスタマイズ */
.prev.page-numbers::after {
  background-image: url(../../assets/images/common/arrow-left.svg);
}

.next.page-numbers {
  margin-left: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .next.page-numbers {
    margin-left: 1.25rem;
  }
}

.prev.page-numbers {
  margin-right: 0.9375rem;
}

.pc-nav__items {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pc-nav__item {
  position: relative;
}

.pc-nav__item-link {
  position: relative;
  display: inline-block;
  padding-inline: 1.25rem;
  transition: all 0.3s;
}

.pc-nav__item-link::before,
.pc-nav__item-link::after {
  content: "";
  position: absolute;
  border-bottom: 1px solid #73a7b4;
  display: block;
  transition: all 0.3s ease;
  width: 0;
}

.pc-nav__item-link::before {
  left: 0;
  bottom: -0.3125rem;
}

.pc-nav__item-link::after {
  right: 0;
  top: -0.3125rem;
}

@media (any-hover: hover) {
  .pc-nav__item-link:hover::before,
  .pc-nav__item-link:hover::after {
    width: 100%;
  }
}
.pc-nav__item-link-en {
  font-size: 12px;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: rgba(10, 67, 84, 0.4);
  text-transform: uppercase;
}

.pc-nav__item-link-ja {
  font-size: max(1rem, 12px);
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.05em;
  margin-top: 0.5625rem;
}

.section-title.section-title-top-business {
  text-align: center;
}

.section-title__en {
  font-size: 1.625rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #0a4354;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .section-title__en {
    font-size: 1.375rem;
  }
}

.section-title__ja {
  font-size: 2.875rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.5217391304;
  letter-spacing: 0.04em;
  margin-top: 1.375rem;
}
@media screen and (max-width: 768px) {
  .section-title__ja {
    font-size: 1.75rem;
    margin-top: 0.9375rem;
  }
}

.section-title__ja.section-title__ja--merit {
  font-size: clamp(2.625rem, 1.854rem + 0.85vw, 2.875rem); /* 42 ~ 46 | 1450 ~ 1920 */
}
@media screen and (max-width: 768px) {
  .section-title__ja.section-title__ja--merit {
    font-size: 1.625rem;
  }
}

.side-menu {
  position: sticky;
  top: 6.25rem;
}

.side-menu__items {
  display: inline-flex;
  flex-direction: column;
  gap: 2.5rem;
}

.side-menu__item {
  position: relative;
}

.side-menu__item-link {
  position: relative;
  display: inline-block;
  font-size: 1.25rem;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.04em;
  transition: all 0.3s;
}

.side-menu__item.is-current {
  padding-left: 1.25rem;
}

.side-menu__item.is-current::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.9375rem;
  height: 1.5px;
  background-color: #0a4354;
}

.side-menu__item.is-current .side-menu__item-link {
  color: #0a4354;
}

@media (any-hover: hover) {
  .side-menu__item-link:hover {
    color: rgba(10, 67, 84, 0.6);
  }
}
.sp-nav {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-nav {
    display: none;
    position: absolute;
    top: -0.625rem;
    left: 0;
    right: 0;
    width: 100%;
    height: 100dvh;
    overflow: scroll;
    background-color: #f9fcfd;
    padding: 6.25rem 0;
  }
}

@media screen and (max-width: 768px) {
  .sp-nav.is-active {
    display: block;
  }
}

/* スクロールバー非表示 | ここから -------------- */
@media screen and (max-width: 768px) {
  .sp-nav {
    -ms-overflow-style: none; /* IE, Edge 対応 */
    scrollbar-width: none; /* Firefox 対応 */
  }
}

@media screen and (max-width: 768px) {
  .sp-nav::-webkit-scrollbar {
    display: none; /* Chrome, Safari 対応 */
    /* スクロールバー非表示 | ここまで -------------- */
  }
}

@media screen and (max-width: 768px) {
  .sp-nav__inner {
    max-width: 23.4375rem;
    width: 100%;
    margin: auto;
    padding: 0 0.9375rem;
  }
}

@media screen and (max-width: 768px) {
  .sp-nav__logo {
    max-width: 12.5rem;
    width: 100%;
    margin: auto;
    transition: all 0.3s;
  }
}

.sp-nav__logo-link {
  display: block;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .sp-nav__logo-link:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 768px) {
  .sp-nav__items {
    margin-top: 3.125rem;
    display: flex;
    flex-direction: column;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .sp-nav__item:nth-child(n+2) {
    margin-top: 1.875rem;
  }
}

@media screen and (max-width: 768px) {
  .sp-nav__item-link {
    display: inline-block;
    transition: all 0.3s;
  }
}

@media (any-hover: hover) {
  .sp-nav__item-link:hover {
    opacity: 0.6;
  }
}
.sp-nav__item-link-en {
  font-size: 12px;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: rgba(10, 67, 84, 0.4);
  text-transform: uppercase;
}

.sp-nav__item-link-ja {
  font-size: max(1rem, 12px);
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.05em;
  margin-top: 0.5625rem;
}

/* ---------- ページネーション、前へ・次へボタンを横並びにする | ここから ---------- */
.slide-pagination-wrapper-top-products {
  display: flex;
  justify-content: center;
  gap: 2.375rem;
  margin-top: 1.3020833333vw;
}
@media screen and (max-width: 1920px) {
  .slide-pagination-wrapper-top-products {
    margin-top: 1.5625rem;
  }
}

.slide-pagination-wrapper-history {
  display: flex;
  justify-content: center;
  gap: 1.875rem;
  max-width: 66.5625rem;
  width: 100%;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .slide-pagination-wrapper-history {
    margin-top: 3.125rem;
  }
}

.swiper-pagination {
  position: static;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  width: auto;
}

.swiper-pagination-bullets {
  display: flex;
  align-items: center;
}

.swiper-button-prev,
.swiper-button-next {
  position: static;
  margin-top: initial;
}

/* ---------- ページネーション、前へ・次へボタンを横並びにする | ここまで ---------- */
/* ------------- 前へ次への矢印カスタマイズ 共通部分 ------------- */
.swiper-container {
  position: relative;
}

.swiper-button-prev,
.swiper-button-next {
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    opacity: 0.6;
  }
}
.swiper-button-prev-top-products::after,
.swiper-button-next-top-products::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  margin: auto;
  width: 100%;
  height: 100%;
}

.swiper-button-prev-history::after,
.swiper-button-next-history::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
  margin: auto;
  width: 2.3125rem;
  height: auto;
  aspect-ratio: 37/8.3;
}

/* ------------- 前へ次への矢印カスタマイズ 共通部分 ここまで ------------- */
/* ------------- 前へ次への矢印カスタマイズ ------------- */
/* ===== トップページ - 製品について｜ ここから ===== */
.swiper-button-prev-top-products,
.swiper-button-next-top-products {
  width: 2.3125rem;
  height: auto;
  aspect-ratio: 37/8.3;
}

/* 前への矢印カスタマイズ */
.swiper-button-prev-top-products::after {
  background-image: url(../../assets/images/common/arrow-left.svg);
}

/* 次への矢印カスタマイズ */
.swiper-button-next-top-products::after {
  background-image: url(../../assets/images/common/arrow-right.svg);
}

/* ===== トップページ - 製品について｜ ここまで ===== */
/* ===== 会社概要ページ - 会社沿革｜ ここから ===== */
.swiper-button-prev-history,
.swiper-button-next-history {
  position: relative;
  width: 2.3125rem;
  height: auto;
  aspect-ratio: 37/8.3;
}

/* 前への矢印カスタマイズ */
.swiper-button-prev-history::after {
  background-image: url(../../assets/images/common/arrow-left.svg);
}

/* 次への矢印カスタマイズ */
.swiper-button-next-history::after {
  background-image: url(../../assets/images/common/arrow-right.svg);
}

.swiper-button-prev-history.is-disabled,
.swiper-button-next-history.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* ===== 会社概要ページ - 会社沿革｜ ここまで ===== */
/* ------------- 前へ次への矢印カスタマイズ ここまで ------------- */
/* ------------- ページネーションカスタマイズ ここから ------------- */
/* ===== トップページ - 製品について｜ ここから ===== */
.swiper-pagination.swiper-pagination-top-products {
  position: relative;
  bottom: auto; /* デフォルトの指定を解除 */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
}

/* ページネーションの基本スタイル */
.swiper-pagination.swiper-pagination-top-products > .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background-color: #0a4354;
  border: 1px solid #0a4354;
  border-radius: 100vmax;
  transition: all 0.3s;
  opacity: 1;
}

/* 選択されているページネーション */
.swiper-pagination.swiper-pagination-top-products > .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ffffff;
  pointer-events: none;
}

@media (any-hover: hover) {
  .swiper-pagination.swiper-pagination-top-products > .swiper-pagination-bullet:hover {
    opacity: 0.6;
  }
}
/* ===== トップページ - 製品について｜ ここまで ===== */
/* ===== トップページ - 製品について｜ ここから ===== */
.swiper-pagination.swiper-pagination-history {
  position: relative;
  bottom: auto; /* デフォルトの指定を解除 */
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.875rem;
}

/* ページネーションの基本スタイル */
.swiper-pagination.swiper-pagination-history > .swiper-pagination-bullet {
  font-size: max(1rem, 12px);
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.04em;
  width: max-content;
  height: auto;
  margin: 0;
  transition: all 0.3s;
  opacity: 1;
  background-color: transparent;
}

/* 選択されているページネーション */
.swiper-pagination.swiper-pagination-history > .swiper-pagination-bullet.swiper-pagination-bullet-active {
  position: relative;
  background-color: #ffffff;
  pointer-events: none;
}

@media (any-hover: hover) {
  .swiper-pagination.swiper-pagination-history > .swiper-pagination-bullet:hover {
    opacity: 0.6;
  }
}
/* ===== トップページ - 製品について｜ ここまで ===== */
/* ------------- ページネーションカスタマイズ ここまで ------------- */
/* ----------  | ここから ---------- */
.history-tabs {
  width: 100%;
}

.history-tabs__list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.625rem;
}

.history-tabs__item {
  display: inline-block;
  font-size: max(1rem, 12px);
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: rgba(10, 67, 84, 0.5);
  line-height: 2;
  letter-spacing: 0.04em;
  padding: 0.625rem 0;
  cursor: pointer;
  width: 10%;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .history-tabs__item {
    width: 14.2857142857%;
  }
}
@media screen and (max-width: 768px) {
  .history-tabs__item {
    padding: 0.3125rem 0;
    width: 25%;
  }
}
@media screen and (max-width: 500px) {
  .history-tabs__item {
    width: 33.3333333333%;
  }
}

.history-tabs__item span {
  font-weight: 600;
}

.history-tabs__item.active {
  position: relative;
  color: #0a4354;
}

.history-tabs__item.active::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0a4354;
  border-radius: 100vmax;
  width: 0.4375rem;
  height: 0.4375rem;
}

/* ----------  | ここまで ---------- */
.top-about {
  margin-top: 7.875rem;
  padding-bottom: 9.125rem;
}
@media screen and (max-width: 768px) {
  .top-about {
    margin-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
}

.top-about__inner {
  max-width: 120rem;
  width: 100%;
  margin-inline: auto;
  padding-left: 16.25rem;
}
@media screen and (max-width: 1920px) {
  .top-about__inner {
    padding-left: clamp(6.25rem, -24.601rem + 34.04vw, 16.25rem);
  }
}
@media screen and (max-width: 1440px) {
  .top-about__inner {
    padding-left: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .top-about__inner {
    max-width: 33.75rem;
    width: 100%;
    padding-inline: 1.25rem;
    margin-inline: auto;
  }
}

.top-about__container {
  display: grid;
  grid-template-columns: 808fr 732fr;
  gap: 7.5rem;
}
@media screen and (max-width: 768px) {
  .top-about__container {
    grid-template-columns: repeat(1, 1fr);
    gap: 5rem;
  }
}

.top-about__img {
  width: 100%;
  border-radius: 1.25rem;
  aspect-ratio: 808/455;
  overflow: hidden;
  order: 2;
}
@media screen and (max-width: 1920px) {
  .top-about__img {
    border-radius: 1.25rem 0 0 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .top-about__img {
    order: 1;
    width: 90%;
    border-radius: 1.25rem;
    margin-inline: auto;
    margin-top: 3.125rem;
  }
}

.top-about__img img {
  width: 100%;
  object-fit: cover;
}

.top-about__info {
  order: 1;
}
@media screen and (max-width: 768px) {
  .top-about__info {
    order: 2;
  }
}

.top-about__info-text {
  font-size: max(1rem, 12px);
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #000000;
  line-height: 2.125;
  letter-spacing: 0.1em;
  margin-top: 2.1875rem;
}

.top-top-about__btn-wrapper {
  margin-top: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .top-top-about__btn-wrapper {
    text-align: center;
    margin-top: 3.125rem;
  }
}

.top-business {
  margin-top: 8.75rem;
}
@media screen and (max-width: 768px) {
  .top-business {
    margin-top: 6.25rem;
  }
}

.top-business__inner {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-business__inner {
    padding-inline: 0.625rem;
    max-width: 32.5rem;
    margin-inline: auto;
  }
}

.top-business__img {
  max-width: 120rem;
  width: 100%;
  margin-inline: auto;
  margin-top: 3.9375rem;
  padding-right: 16.25rem;
}
@media screen and (max-width: 1920px) {
  .top-business__img {
    padding-right: clamp(6.25rem, -24.601rem + 34.04vw, 16.25rem);
  }
}
@media screen and (max-width: 1440px) {
  .top-business__img {
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .top-business__img {
    max-width: 31.25rem;
    margin-inline: auto;
  }
}

.top-company {
  margin-top: 11.875rem;
}
@media screen and (max-width: 768px) {
  .top-company {
    margin-top: 6.25rem;
  }
}

.top-company__inner {
  max-width: 120rem;
  width: 100%;
  margin-inline: auto;
  padding-right: 16.25rem;
}
@media screen and (max-width: 1920px) {
  .top-company__inner {
    padding-right: clamp(6.25rem, -24.601rem + 34.04vw, 16.25rem);
  }
}
@media screen and (max-width: 1440px) {
  .top-company__inner {
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .top-company__inner {
    max-width: 33.75rem;
    width: 100%;
    padding-inline: 1.25rem;
    margin-inline: auto;
  }
}

.top-company__container {
  display: grid;
  grid-template-columns: 808fr 732fr;
  gap: 7.5rem;
}
@media screen and (max-width: 768px) {
  .top-company__container {
    grid-template-columns: repeat(1, 1fr);
    gap: 5rem;
  }
}

.top-company__img {
  width: 100%;
  aspect-ratio: 808/455;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media screen and (max-width: 1920px) {
  .top-company__img {
    border-radius: 0 1.25rem 1.25rem 0;
  }
}
@media screen and (max-width: 768px) {
  .top-company__img {
    width: 90%;
    border-radius: 1.25rem;
    margin-inline: auto;
    margin-top: 3.125rem;
  }
}

.top-company__img img {
  width: 100%;
  object-fit: cover;
}

.top-company__info-text {
  font-size: max(1rem, 12px);
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #000000;
  line-height: 2.125;
  letter-spacing: 0.1em;
  margin-top: 2.1875rem;
}

.top-top-company__btn-wrapper {
  margin-top: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .top-top-company__btn-wrapper {
    text-align: center;
    margin-top: 3.125rem;
  }
}

.top-news {
  position: relative;
  margin-top: 11.25rem;
}
@media screen and (max-width: 768px) {
  .top-news {
    margin-top: 6.25rem;
  }
}

.top-news::before,
.top-news::after {
  content: "";
  position: absolute;
  z-index: -1;
  mix-blend-mode: screen;
}

.top-news::before {
  top: -9.375rem;
  right: calc(50% + 18.75rem);
  background-image: url(../../assets/images/top/news-bubble-01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 58.25rem;
  aspect-ratio: 932/1182;
  animation: bubble-01 3.5s ease-in-out infinite;
  will-change: transform, opacity;
}
@media screen and (max-width: 768px) {
  .top-news::before {
    right: auto;
    left: -12.5rem;
    width: 18.75rem;
  }
}

@keyframes bubble-01 {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-15px) scale(1.08);
    opacity: 0.95;
  }
}
.top-news::after {
  top: -36.875rem;
  left: calc(50% + 30rem);
  background-image: url(../../assets/images/top/news-bubble-02.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 50.1875rem;
  aspect-ratio: 803/1711;
  animation: bubble-02 3.5s ease-in-out infinite;
  animation-delay: 1s;
  will-change: transform, opacity;
}
@media screen and (max-width: 768px) {
  .top-news::after {
    top: 6.25rem;
    left: auto;
    right: -11.25rem;
    width: 15.625rem;
  }
}

@keyframes bubble-02 {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-15px) scale(1.06);
    opacity: 0.95;
  }
}
@media screen and (max-width: 768px) {
  .top-news__inner.inner {
    max-width: 33.75rem;
  }
}

.top-news__container {
  display: grid;
  grid-template-columns: 369fr 1004fr;
}
@media screen and (max-width: 1440px) {
  .top-news__container {
    grid-template-columns: 300fr 1100fr;
  }
}
@media screen and (max-width: 768px) {
  .top-news__container {
    grid-template-columns: repeat(1, 1fr);
    gap: 5rem;
  }
}

.top-news__btn-wrapper {
  margin-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .top-news__btn-wrapper {
    margin-top: 3.125rem;
  }
}

.top-products {
  position: relative;
  margin-top: 2rem;
}
.top-products::before {
  content: "";
  position: absolute;
  top: 9.375vw;
  left: -26.0416666667vw;
  background-image: url(../../assets/images/top/products-bubble-01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 44.21875vw;
  aspect-ratio: 849.4/994.4;
  z-index: -1;
  animation: bubble-02 3.5s ease-in-out infinite;
  animation-delay: 1s;
  will-change: transform, opacity;
}
@media screen and (max-width: 768px) {
  .top-products::before {
    top: 26.6666666667vw;
    left: -10.6666666667vw;
    width: 80vw;
  }
}

@keyframes bubble-02 {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-15px) scale(1.06);
    opacity: 0.95;
  }
}
@media screen and (max-width: 768px) {
  .top-products__inner.inner {
    max-width: 33.75rem;
  }
}

.top-products__wrapper {
  display: flex;
  gap: 2.625rem;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .top-products__wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}

.top-products__swiper {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .top-products__swiper {
    margin-top: 3.125rem;
  }
}

.top-products-swiper-slide {
  height: auto;
}

.top-products-swiper-slide__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 6.9375rem 3.3333333333vw 1.5rem 4.5833333333vw;
  transition: all 0.3s;
}
@media screen and (max-width: 1440px) {
  .top-products-swiper-slide__link {
    padding: 5.625rem 2.5rem 1.25rem 3.75rem;
  }
}
@media screen and (max-width: 768px) {
  .top-products-swiper-slide__link {
    padding: 4.375rem 0.9375rem 0.625rem 1.875rem;
  }
}
@media screen and (max-width: 375px) {
  .top-products-swiper-slide__link {
    padding: 4.375rem 0.625rem 0.625rem 0.625rem;
  }
}

.top-products-swiper-slide__container {
  position: relative;
  padding: 3.3854166667vw 13.28125vw 4.0625vw 7.1354166667vw;
  height: 100%;
}
@media screen and (max-width: 1440px) {
  .top-products-swiper-slide__container {
    padding: 3.125rem 8.75rem 3.75rem 6.25rem;
  }
}
@media screen and (max-width: 768px) {
  .top-products-swiper-slide__container {
    padding: 3.75rem 1.875rem 5rem 1.25rem;
  }
}

.top-products-swiper-slide__container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../../assets/images/top/products-slide-bg-pc.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top-products-swiper-slide__container::before {
    border-radius: 1.25rem;
    background-image: linear-gradient(to bottom, #1a519b 0%, #00bbcb 100%);
  }
}

.top-products-swiper-slide__title-en {
  font-size: 0.8333333333vw;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1920px) {
  .top-products-swiper-slide__title-en {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .top-products-swiper-slide__title-en {
    font-size: 12px;
  }
}

.top-products-swiper-slide__number {
  position: relative;
  font-size: 0.8333333333vw;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: 0.1em;
  padding-right: 1.0416666667vw;
}
@media screen and (max-width: 1920px) {
  .top-products-swiper-slide__number {
    font-size: 12px;
    padding-right: 0.9375rem;
  }
}

.top-products-swiper-slide__title-ja {
  font-size: 2.9166666667vw;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.1em;
  margin-top: 2.6041666667vw;
}
@media screen and (max-width: 1920px) {
  .top-products-swiper-slide__title-ja {
    font-size: 3.5rem;
    margin-top: 3.125rem;
  }
}
@media screen and (max-width: 768px) {
  .top-products-swiper-slide__title-ja {
    font-size: 1.5rem;
    margin-top: 2.5rem;
  }
}

.top-products-swiper-slide__text {
  font-size: 0.8333333333vw;
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #ffffff;
  line-height: 2.125;
  letter-spacing: 0.1em;
  margin-top: 2.0833333333vw;
}
@media screen and (max-width: 1920px) {
  .top-products-swiper-slide__text {
    font-size: max(1rem, 12px);
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .top-products-swiper-slide__text {
    margin-top: 1.875rem;
  }
}

.top-products-swiper-slide__img-top {
  position: absolute;
  top: 0;
  right: 0;
  width: 15.7291666667vw;
}
@media screen and (max-width: 1440px) {
  .top-products-swiper-slide__img-top {
    width: 12.5rem;
  }
}
@media screen and (max-width: 768px) {
  .top-products-swiper-slide__img-top {
    width: 6.25rem;
  }
}

.top-products-swiper-slide__img-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 9.9479166667vw;
}
@media screen and (max-width: 1440px) {
  .top-products-swiper-slide__img-bottom {
    width: 7.5rem;
  }
}
@media screen and (max-width: 768px) {
  .top-products-swiper-slide__img-bottom {
    width: 5rem;
  }
}

/* ---------- 『製品について｜詳しくみる』ボタン | ここから ---------- */
.top-products-swiper-slide__btn {
  position: absolute;
  bottom: 1.1458333333vw;
  right: 1.3020833333vw;
}
@media screen and (max-width: 1920px) {
  .top-products-swiper-slide__btn {
    bottom: 1.375rem;
    right: 1.5625rem;
  }
}

.top-products-swiper-slide__btn-text {
  position: relative;
  font-size: max(1.0416666667vw, 12px);
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 600;
  color: #0a4354;
  letter-spacing: 0.1em;
  padding-right: 2.96875vw;
}
@media screen and (max-width: 768px) {
  .top-products-swiper-slide__btn-text {
    font-size: max(1rem, 12px);
    color: #ffffff;
    padding-right: 1.875rem;
  }
}

.top-products-swiper-slide__btn-text::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  mask-image: url(../../assets/images/common/arrow-right.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #0a4354;
  width: 1.9270833333vw;
  aspect-ratio: 37/8.3;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .top-products-swiper-slide__btn-text::before {
    width: 1.25rem;
    background-color: #ffffff;
  }
}

@media (any-hover: hover) {
  .top-products-swiper-slide__link:hover {
    opacity: 0.8;
  }
  .top-products-swiper-slide__link:hover .top-products-swiper-slide__btn-text::before {
    animation: arrow-slide-03 1s ease-in-out infinite alternate;
  }
}
@keyframes arrow-slide-03 {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(-0.5208333333vw);
  }
  100% {
    transform: translateY(-50%) translateX(0);
  }
}
/* ---------- 『製品について｜詳しくみる』ボタン | ここまで ---------- */
/* ------------------------ */
/* 改行用、SP・PC非表示用の設定 */
/* ------------------------ */
/* ---------- 改行 〜 more：以上、less：以下 | ここから ---------- */
/* 768px以下で改行 */
.br-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .br-sp {
    display: block;
  }
}

/* 768px以上で改行 */
@media screen and (max-width: 768px) {
  .br-pc {
    display: none;
  }
}

/* ---------- 改行 | ここまで ---------- */
/* ---------- 表示・非表示 〜 more：以上、less：以下 | ここから ---------- */
/* PCのとき非表示 */
.pc-none {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc-none {
    display: block;
  }
}

/* SPのとき非表示 */
@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
}

/* ---------- 表示・非表示 〜 more：以上、less：以下 | ここまで ---------- */
/* ---------- margin-topの設定 | ここから ---------- */
.mt-pc-1 {
  margin-top: 0.0625rem;
}

.mt-pc-2 {
  margin-top: 0.125rem;
}

.mt-pc-3 {
  margin-top: 0.1875rem;
}

.mt-pc-4 {
  margin-top: 0.25rem;
}

.mt-pc-5 {
  margin-top: 0.3125rem;
}

.mt-pc-6 {
  margin-top: 0.375rem;
}

.mt-pc-7 {
  margin-top: 0.4375rem;
}

.mt-pc-8 {
  margin-top: 0.5rem;
}

.mt-pc-9 {
  margin-top: 0.5625rem;
}

.mt-pc-10 {
  margin-top: 0.625rem;
}

.mt-pc-11 {
  margin-top: 0.6875rem;
}

.mt-pc-12 {
  margin-top: 0.75rem;
}

.mt-pc-13 {
  margin-top: 0.8125rem;
}

.mt-pc-14 {
  margin-top: 0.875rem;
}

.mt-pc-15 {
  margin-top: 0.9375rem;
}

.mt-pc-16 {
  margin-top: 1rem;
}

.mt-pc-17 {
  margin-top: 1.0625rem;
}

.mt-pc-18 {
  margin-top: 1.125rem;
}

.mt-pc-19 {
  margin-top: 1.1875rem;
}

.mt-pc-20 {
  margin-top: 1.25rem;
}

.mt-pc-21 {
  margin-top: 1.3125rem;
}

.mt-pc-22 {
  margin-top: 1.375rem;
}

.mt-pc-23 {
  margin-top: 1.4375rem;
}

.mt-pc-24 {
  margin-top: 1.5rem;
}

.mt-pc-25 {
  margin-top: 1.5625rem;
}

.mt-pc-26 {
  margin-top: 1.625rem;
}

.mt-pc-27 {
  margin-top: 1.6875rem;
}

.mt-pc-28 {
  margin-top: 1.75rem;
}

.mt-pc-29 {
  margin-top: 1.8125rem;
}

.mt-pc-30 {
  margin-top: 1.875rem;
}

.mt-pc-31 {
  margin-top: 1.9375rem;
}

.mt-pc-32 {
  margin-top: 2rem;
}

.mt-pc-33 {
  margin-top: 2.0625rem;
}

.mt-pc-34 {
  margin-top: 2.125rem;
}

.mt-pc-35 {
  margin-top: 2.1875rem;
}

.mt-pc-36 {
  margin-top: 2.25rem;
}

.mt-pc-37 {
  margin-top: 2.3125rem;
}

.mt-pc-38 {
  margin-top: 2.375rem;
}

.mt-pc-39 {
  margin-top: 2.4375rem;
}

.mt-pc-40 {
  margin-top: 2.5rem;
}

.mt-pc-41 {
  margin-top: 2.5625rem;
}

.mt-pc-42 {
  margin-top: 2.625rem;
}

.mt-pc-43 {
  margin-top: 2.6875rem;
}

.mt-pc-44 {
  margin-top: 2.75rem;
}

.mt-pc-45 {
  margin-top: 2.8125rem;
}

.mt-pc-46 {
  margin-top: 2.875rem;
}

.mt-pc-47 {
  margin-top: 2.9375rem;
}

.mt-pc-48 {
  margin-top: 3rem;
}

.mt-pc-49 {
  margin-top: 3.0625rem;
}

.mt-pc-50 {
  margin-top: 3.125rem;
}

.mt-pc-51 {
  margin-top: 3.1875rem;
}

.mt-pc-52 {
  margin-top: 3.25rem;
}

.mt-pc-53 {
  margin-top: 3.3125rem;
}

.mt-pc-54 {
  margin-top: 3.375rem;
}

.mt-pc-55 {
  margin-top: 3.4375rem;
}

.mt-pc-56 {
  margin-top: 3.5rem;
}

.mt-pc-57 {
  margin-top: 3.5625rem;
}

.mt-pc-58 {
  margin-top: 3.625rem;
}

.mt-pc-59 {
  margin-top: 3.6875rem;
}

.mt-pc-60 {
  margin-top: 3.75rem;
}

.mt-pc-61 {
  margin-top: 3.8125rem;
}

.mt-pc-62 {
  margin-top: 3.875rem;
}

.mt-pc-63 {
  margin-top: 3.9375rem;
}

.mt-pc-64 {
  margin-top: 4rem;
}

.mt-pc-65 {
  margin-top: 4.0625rem;
}

.mt-pc-66 {
  margin-top: 4.125rem;
}

.mt-pc-67 {
  margin-top: 4.1875rem;
}

.mt-pc-68 {
  margin-top: 4.25rem;
}

.mt-pc-69 {
  margin-top: 4.3125rem;
}

.mt-pc-70 {
  margin-top: 4.375rem;
}

.mt-pc-71 {
  margin-top: 4.4375rem;
}

.mt-pc-72 {
  margin-top: 4.5rem;
}

.mt-pc-73 {
  margin-top: 4.5625rem;
}

.mt-pc-74 {
  margin-top: 4.625rem;
}

.mt-pc-75 {
  margin-top: 4.6875rem;
}

.mt-pc-76 {
  margin-top: 4.75rem;
}

.mt-pc-77 {
  margin-top: 4.8125rem;
}

.mt-pc-78 {
  margin-top: 4.875rem;
}

.mt-pc-79 {
  margin-top: 4.9375rem;
}

.mt-pc-80 {
  margin-top: 5rem;
}

.mt-pc-81 {
  margin-top: 5.0625rem;
}

.mt-pc-82 {
  margin-top: 5.125rem;
}

.mt-pc-83 {
  margin-top: 5.1875rem;
}

.mt-pc-84 {
  margin-top: 5.25rem;
}

.mt-pc-85 {
  margin-top: 5.3125rem;
}

.mt-pc-86 {
  margin-top: 5.375rem;
}

.mt-pc-87 {
  margin-top: 5.4375rem;
}

.mt-pc-88 {
  margin-top: 5.5rem;
}

.mt-pc-89 {
  margin-top: 5.5625rem;
}

.mt-pc-90 {
  margin-top: 5.625rem;
}

.mt-pc-91 {
  margin-top: 5.6875rem;
}

.mt-pc-92 {
  margin-top: 5.75rem;
}

.mt-pc-93 {
  margin-top: 5.8125rem;
}

.mt-pc-94 {
  margin-top: 5.875rem;
}

.mt-pc-95 {
  margin-top: 5.9375rem;
}

.mt-pc-96 {
  margin-top: 6rem;
}

.mt-pc-97 {
  margin-top: 6.0625rem;
}

.mt-pc-98 {
  margin-top: 6.125rem;
}

.mt-pc-99 {
  margin-top: 6.1875rem;
}

.mt-pc-100 {
  margin-top: 6.25rem;
}

.mt-pc-101 {
  margin-top: 6.3125rem;
}

.mt-pc-102 {
  margin-top: 6.375rem;
}

.mt-pc-103 {
  margin-top: 6.4375rem;
}

.mt-pc-104 {
  margin-top: 6.5rem;
}

.mt-pc-105 {
  margin-top: 6.5625rem;
}

.mt-pc-106 {
  margin-top: 6.625rem;
}

.mt-pc-107 {
  margin-top: 6.6875rem;
}

.mt-pc-108 {
  margin-top: 6.75rem;
}

.mt-pc-109 {
  margin-top: 6.8125rem;
}

.mt-pc-110 {
  margin-top: 6.875rem;
}

.mt-pc-111 {
  margin-top: 6.9375rem;
}

.mt-pc-112 {
  margin-top: 7rem;
}

.mt-pc-113 {
  margin-top: 7.0625rem;
}

.mt-pc-114 {
  margin-top: 7.125rem;
}

.mt-pc-115 {
  margin-top: 7.1875rem;
}

.mt-pc-116 {
  margin-top: 7.25rem;
}

.mt-pc-117 {
  margin-top: 7.3125rem;
}

.mt-pc-118 {
  margin-top: 7.375rem;
}

.mt-pc-119 {
  margin-top: 7.4375rem;
}

.mt-pc-120 {
  margin-top: 7.5rem;
}

.mt-pc-121 {
  margin-top: 7.5625rem;
}

.mt-pc-122 {
  margin-top: 7.625rem;
}

.mt-pc-123 {
  margin-top: 7.6875rem;
}

.mt-pc-124 {
  margin-top: 7.75rem;
}

.mt-pc-125 {
  margin-top: 7.8125rem;
}

.mt-pc-126 {
  margin-top: 7.875rem;
}

.mt-pc-127 {
  margin-top: 7.9375rem;
}

.mt-pc-128 {
  margin-top: 8rem;
}

.mt-pc-129 {
  margin-top: 8.0625rem;
}

.mt-pc-130 {
  margin-top: 8.125rem;
}

.mt-pc-131 {
  margin-top: 8.1875rem;
}

.mt-pc-132 {
  margin-top: 8.25rem;
}

.mt-pc-133 {
  margin-top: 8.3125rem;
}

.mt-pc-134 {
  margin-top: 8.375rem;
}

.mt-pc-135 {
  margin-top: 8.4375rem;
}

.mt-pc-136 {
  margin-top: 8.5rem;
}

.mt-pc-137 {
  margin-top: 8.5625rem;
}

.mt-pc-138 {
  margin-top: 8.625rem;
}

.mt-pc-139 {
  margin-top: 8.6875rem;
}

.mt-pc-140 {
  margin-top: 8.75rem;
}

.mt-pc-141 {
  margin-top: 8.8125rem;
}

.mt-pc-142 {
  margin-top: 8.875rem;
}

.mt-pc-143 {
  margin-top: 8.9375rem;
}

.mt-pc-144 {
  margin-top: 9rem;
}

.mt-pc-145 {
  margin-top: 9.0625rem;
}

.mt-pc-146 {
  margin-top: 9.125rem;
}

.mt-pc-147 {
  margin-top: 9.1875rem;
}

.mt-pc-148 {
  margin-top: 9.25rem;
}

.mt-pc-149 {
  margin-top: 9.3125rem;
}

.mt-pc-150 {
  margin-top: 9.375rem;
}

.mt-pc-151 {
  margin-top: 9.4375rem;
}

.mt-pc-152 {
  margin-top: 9.5rem;
}

.mt-pc-153 {
  margin-top: 9.5625rem;
}

.mt-pc-154 {
  margin-top: 9.625rem;
}

.mt-pc-155 {
  margin-top: 9.6875rem;
}

.mt-pc-156 {
  margin-top: 9.75rem;
}

.mt-pc-157 {
  margin-top: 9.8125rem;
}

.mt-pc-158 {
  margin-top: 9.875rem;
}

.mt-pc-159 {
  margin-top: 9.9375rem;
}

.mt-pc-160 {
  margin-top: 10rem;
}

.mt-pc-161 {
  margin-top: 10.0625rem;
}

.mt-pc-162 {
  margin-top: 10.125rem;
}

.mt-pc-163 {
  margin-top: 10.1875rem;
}

.mt-pc-164 {
  margin-top: 10.25rem;
}

.mt-pc-165 {
  margin-top: 10.3125rem;
}

.mt-pc-166 {
  margin-top: 10.375rem;
}

.mt-pc-167 {
  margin-top: 10.4375rem;
}

.mt-pc-168 {
  margin-top: 10.5rem;
}

.mt-pc-169 {
  margin-top: 10.5625rem;
}

.mt-pc-170 {
  margin-top: 10.625rem;
}

.mt-pc-171 {
  margin-top: 10.6875rem;
}

.mt-pc-172 {
  margin-top: 10.75rem;
}

.mt-pc-173 {
  margin-top: 10.8125rem;
}

.mt-pc-174 {
  margin-top: 10.875rem;
}

.mt-pc-175 {
  margin-top: 10.9375rem;
}

.mt-pc-176 {
  margin-top: 11rem;
}

.mt-pc-177 {
  margin-top: 11.0625rem;
}

.mt-pc-178 {
  margin-top: 11.125rem;
}

.mt-pc-179 {
  margin-top: 11.1875rem;
}

.mt-pc-180 {
  margin-top: 11.25rem;
}

.mt-pc-181 {
  margin-top: 11.3125rem;
}

.mt-pc-182 {
  margin-top: 11.375rem;
}

.mt-pc-183 {
  margin-top: 11.4375rem;
}

.mt-pc-184 {
  margin-top: 11.5rem;
}

.mt-pc-185 {
  margin-top: 11.5625rem;
}

.mt-pc-186 {
  margin-top: 11.625rem;
}

.mt-pc-187 {
  margin-top: 11.6875rem;
}

.mt-pc-188 {
  margin-top: 11.75rem;
}

.mt-pc-189 {
  margin-top: 11.8125rem;
}

.mt-pc-190 {
  margin-top: 11.875rem;
}

.mt-pc-191 {
  margin-top: 11.9375rem;
}

.mt-pc-192 {
  margin-top: 12rem;
}

.mt-pc-193 {
  margin-top: 12.0625rem;
}

.mt-pc-194 {
  margin-top: 12.125rem;
}

.mt-pc-195 {
  margin-top: 12.1875rem;
}

.mt-pc-196 {
  margin-top: 12.25rem;
}

.mt-pc-197 {
  margin-top: 12.3125rem;
}

.mt-pc-198 {
  margin-top: 12.375rem;
}

.mt-pc-199 {
  margin-top: 12.4375rem;
}

.mt-pc-200 {
  margin-top: 12.5rem;
}

@media screen and (max-width: 768px) {
  .mt-sp-1 {
    margin-top: 0.0625rem;
  }
  .mt-sp-2 {
    margin-top: 0.125rem;
  }
  .mt-sp-3 {
    margin-top: 0.1875rem;
  }
  .mt-sp-4 {
    margin-top: 0.25rem;
  }
  .mt-sp-5 {
    margin-top: 0.3125rem;
  }
  .mt-sp-6 {
    margin-top: 0.375rem;
  }
  .mt-sp-7 {
    margin-top: 0.4375rem;
  }
  .mt-sp-8 {
    margin-top: 0.5rem;
  }
  .mt-sp-9 {
    margin-top: 0.5625rem;
  }
  .mt-sp-10 {
    margin-top: 0.625rem;
  }
  .mt-sp-11 {
    margin-top: 0.6875rem;
  }
  .mt-sp-12 {
    margin-top: 0.75rem;
  }
  .mt-sp-13 {
    margin-top: 0.8125rem;
  }
  .mt-sp-14 {
    margin-top: 0.875rem;
  }
  .mt-sp-15 {
    margin-top: 0.9375rem;
  }
  .mt-sp-16 {
    margin-top: 1rem;
  }
  .mt-sp-17 {
    margin-top: 1.0625rem;
  }
  .mt-sp-18 {
    margin-top: 1.125rem;
  }
  .mt-sp-19 {
    margin-top: 1.1875rem;
  }
  .mt-sp-20 {
    margin-top: 1.25rem;
  }
  .mt-sp-21 {
    margin-top: 1.3125rem;
  }
  .mt-sp-22 {
    margin-top: 1.375rem;
  }
  .mt-sp-23 {
    margin-top: 1.4375rem;
  }
  .mt-sp-24 {
    margin-top: 1.5rem;
  }
  .mt-sp-25 {
    margin-top: 1.5625rem;
  }
  .mt-sp-26 {
    margin-top: 1.625rem;
  }
  .mt-sp-27 {
    margin-top: 1.6875rem;
  }
  .mt-sp-28 {
    margin-top: 1.75rem;
  }
  .mt-sp-29 {
    margin-top: 1.8125rem;
  }
  .mt-sp-30 {
    margin-top: 1.875rem;
  }
  .mt-sp-31 {
    margin-top: 1.9375rem;
  }
  .mt-sp-32 {
    margin-top: 2rem;
  }
  .mt-sp-33 {
    margin-top: 2.0625rem;
  }
  .mt-sp-34 {
    margin-top: 2.125rem;
  }
  .mt-sp-35 {
    margin-top: 2.1875rem;
  }
  .mt-sp-36 {
    margin-top: 2.25rem;
  }
  .mt-sp-37 {
    margin-top: 2.3125rem;
  }
  .mt-sp-38 {
    margin-top: 2.375rem;
  }
  .mt-sp-39 {
    margin-top: 2.4375rem;
  }
  .mt-sp-40 {
    margin-top: 2.5rem;
  }
  .mt-sp-41 {
    margin-top: 2.5625rem;
  }
  .mt-sp-42 {
    margin-top: 2.625rem;
  }
  .mt-sp-43 {
    margin-top: 2.6875rem;
  }
  .mt-sp-44 {
    margin-top: 2.75rem;
  }
  .mt-sp-45 {
    margin-top: 2.8125rem;
  }
  .mt-sp-46 {
    margin-top: 2.875rem;
  }
  .mt-sp-47 {
    margin-top: 2.9375rem;
  }
  .mt-sp-48 {
    margin-top: 3rem;
  }
  .mt-sp-49 {
    margin-top: 3.0625rem;
  }
  .mt-sp-50 {
    margin-top: 3.125rem;
  }
  .mt-sp-51 {
    margin-top: 3.1875rem;
  }
  .mt-sp-52 {
    margin-top: 3.25rem;
  }
  .mt-sp-53 {
    margin-top: 3.3125rem;
  }
  .mt-sp-54 {
    margin-top: 3.375rem;
  }
  .mt-sp-55 {
    margin-top: 3.4375rem;
  }
  .mt-sp-56 {
    margin-top: 3.5rem;
  }
  .mt-sp-57 {
    margin-top: 3.5625rem;
  }
  .mt-sp-58 {
    margin-top: 3.625rem;
  }
  .mt-sp-59 {
    margin-top: 3.6875rem;
  }
  .mt-sp-60 {
    margin-top: 3.75rem;
  }
  .mt-sp-61 {
    margin-top: 3.8125rem;
  }
  .mt-sp-62 {
    margin-top: 3.875rem;
  }
  .mt-sp-63 {
    margin-top: 3.9375rem;
  }
  .mt-sp-64 {
    margin-top: 4rem;
  }
  .mt-sp-65 {
    margin-top: 4.0625rem;
  }
  .mt-sp-66 {
    margin-top: 4.125rem;
  }
  .mt-sp-67 {
    margin-top: 4.1875rem;
  }
  .mt-sp-68 {
    margin-top: 4.25rem;
  }
  .mt-sp-69 {
    margin-top: 4.3125rem;
  }
  .mt-sp-70 {
    margin-top: 4.375rem;
  }
  .mt-sp-71 {
    margin-top: 4.4375rem;
  }
  .mt-sp-72 {
    margin-top: 4.5rem;
  }
  .mt-sp-73 {
    margin-top: 4.5625rem;
  }
  .mt-sp-74 {
    margin-top: 4.625rem;
  }
  .mt-sp-75 {
    margin-top: 4.6875rem;
  }
  .mt-sp-76 {
    margin-top: 4.75rem;
  }
  .mt-sp-77 {
    margin-top: 4.8125rem;
  }
  .mt-sp-78 {
    margin-top: 4.875rem;
  }
  .mt-sp-79 {
    margin-top: 4.9375rem;
  }
  .mt-sp-80 {
    margin-top: 5rem;
  }
  .mt-sp-81 {
    margin-top: 5.0625rem;
  }
  .mt-sp-82 {
    margin-top: 5.125rem;
  }
  .mt-sp-83 {
    margin-top: 5.1875rem;
  }
  .mt-sp-84 {
    margin-top: 5.25rem;
  }
  .mt-sp-85 {
    margin-top: 5.3125rem;
  }
  .mt-sp-86 {
    margin-top: 5.375rem;
  }
  .mt-sp-87 {
    margin-top: 5.4375rem;
  }
  .mt-sp-88 {
    margin-top: 5.5rem;
  }
  .mt-sp-89 {
    margin-top: 5.5625rem;
  }
  .mt-sp-90 {
    margin-top: 5.625rem;
  }
  .mt-sp-91 {
    margin-top: 5.6875rem;
  }
  .mt-sp-92 {
    margin-top: 5.75rem;
  }
  .mt-sp-93 {
    margin-top: 5.8125rem;
  }
  .mt-sp-94 {
    margin-top: 5.875rem;
  }
  .mt-sp-95 {
    margin-top: 5.9375rem;
  }
  .mt-sp-96 {
    margin-top: 6rem;
  }
  .mt-sp-97 {
    margin-top: 6.0625rem;
  }
  .mt-sp-98 {
    margin-top: 6.125rem;
  }
  .mt-sp-99 {
    margin-top: 6.1875rem;
  }
  .mt-sp-100 {
    margin-top: 6.25rem;
  }
  .mt-sp-101 {
    margin-top: 6.3125rem;
  }
  .mt-sp-102 {
    margin-top: 6.375rem;
  }
  .mt-sp-103 {
    margin-top: 6.4375rem;
  }
  .mt-sp-104 {
    margin-top: 6.5rem;
  }
  .mt-sp-105 {
    margin-top: 6.5625rem;
  }
  .mt-sp-106 {
    margin-top: 6.625rem;
  }
  .mt-sp-107 {
    margin-top: 6.6875rem;
  }
  .mt-sp-108 {
    margin-top: 6.75rem;
  }
  .mt-sp-109 {
    margin-top: 6.8125rem;
  }
  .mt-sp-110 {
    margin-top: 6.875rem;
  }
  .mt-sp-111 {
    margin-top: 6.9375rem;
  }
  .mt-sp-112 {
    margin-top: 7rem;
  }
  .mt-sp-113 {
    margin-top: 7.0625rem;
  }
  .mt-sp-114 {
    margin-top: 7.125rem;
  }
  .mt-sp-115 {
    margin-top: 7.1875rem;
  }
  .mt-sp-116 {
    margin-top: 7.25rem;
  }
  .mt-sp-117 {
    margin-top: 7.3125rem;
  }
  .mt-sp-118 {
    margin-top: 7.375rem;
  }
  .mt-sp-119 {
    margin-top: 7.4375rem;
  }
  .mt-sp-120 {
    margin-top: 7.5rem;
  }
  .mt-sp-121 {
    margin-top: 7.5625rem;
  }
  .mt-sp-122 {
    margin-top: 7.625rem;
  }
  .mt-sp-123 {
    margin-top: 7.6875rem;
  }
  .mt-sp-124 {
    margin-top: 7.75rem;
  }
  .mt-sp-125 {
    margin-top: 7.8125rem;
  }
  .mt-sp-126 {
    margin-top: 7.875rem;
  }
  .mt-sp-127 {
    margin-top: 7.9375rem;
  }
  .mt-sp-128 {
    margin-top: 8rem;
  }
  .mt-sp-129 {
    margin-top: 8.0625rem;
  }
  .mt-sp-130 {
    margin-top: 8.125rem;
  }
  .mt-sp-131 {
    margin-top: 8.1875rem;
  }
  .mt-sp-132 {
    margin-top: 8.25rem;
  }
  .mt-sp-133 {
    margin-top: 8.3125rem;
  }
  .mt-sp-134 {
    margin-top: 8.375rem;
  }
  .mt-sp-135 {
    margin-top: 8.4375rem;
  }
  .mt-sp-136 {
    margin-top: 8.5rem;
  }
  .mt-sp-137 {
    margin-top: 8.5625rem;
  }
  .mt-sp-138 {
    margin-top: 8.625rem;
  }
  .mt-sp-139 {
    margin-top: 8.6875rem;
  }
  .mt-sp-140 {
    margin-top: 8.75rem;
  }
  .mt-sp-141 {
    margin-top: 8.8125rem;
  }
  .mt-sp-142 {
    margin-top: 8.875rem;
  }
  .mt-sp-143 {
    margin-top: 8.9375rem;
  }
  .mt-sp-144 {
    margin-top: 9rem;
  }
  .mt-sp-145 {
    margin-top: 9.0625rem;
  }
  .mt-sp-146 {
    margin-top: 9.125rem;
  }
  .mt-sp-147 {
    margin-top: 9.1875rem;
  }
  .mt-sp-148 {
    margin-top: 9.25rem;
  }
  .mt-sp-149 {
    margin-top: 9.3125rem;
  }
  .mt-sp-150 {
    margin-top: 9.375rem;
  }
  .mt-sp-151 {
    margin-top: 9.4375rem;
  }
  .mt-sp-152 {
    margin-top: 9.5rem;
  }
  .mt-sp-153 {
    margin-top: 9.5625rem;
  }
  .mt-sp-154 {
    margin-top: 9.625rem;
  }
  .mt-sp-155 {
    margin-top: 9.6875rem;
  }
  .mt-sp-156 {
    margin-top: 9.75rem;
  }
  .mt-sp-157 {
    margin-top: 9.8125rem;
  }
  .mt-sp-158 {
    margin-top: 9.875rem;
  }
  .mt-sp-159 {
    margin-top: 9.9375rem;
  }
  .mt-sp-160 {
    margin-top: 10rem;
  }
  .mt-sp-161 {
    margin-top: 10.0625rem;
  }
  .mt-sp-162 {
    margin-top: 10.125rem;
  }
  .mt-sp-163 {
    margin-top: 10.1875rem;
  }
  .mt-sp-164 {
    margin-top: 10.25rem;
  }
  .mt-sp-165 {
    margin-top: 10.3125rem;
  }
  .mt-sp-166 {
    margin-top: 10.375rem;
  }
  .mt-sp-167 {
    margin-top: 10.4375rem;
  }
  .mt-sp-168 {
    margin-top: 10.5rem;
  }
  .mt-sp-169 {
    margin-top: 10.5625rem;
  }
  .mt-sp-170 {
    margin-top: 10.625rem;
  }
  .mt-sp-171 {
    margin-top: 10.6875rem;
  }
  .mt-sp-172 {
    margin-top: 10.75rem;
  }
  .mt-sp-173 {
    margin-top: 10.8125rem;
  }
  .mt-sp-174 {
    margin-top: 10.875rem;
  }
  .mt-sp-175 {
    margin-top: 10.9375rem;
  }
  .mt-sp-176 {
    margin-top: 11rem;
  }
  .mt-sp-177 {
    margin-top: 11.0625rem;
  }
  .mt-sp-178 {
    margin-top: 11.125rem;
  }
  .mt-sp-179 {
    margin-top: 11.1875rem;
  }
  .mt-sp-180 {
    margin-top: 11.25rem;
  }
  .mt-sp-181 {
    margin-top: 11.3125rem;
  }
  .mt-sp-182 {
    margin-top: 11.375rem;
  }
  .mt-sp-183 {
    margin-top: 11.4375rem;
  }
  .mt-sp-184 {
    margin-top: 11.5rem;
  }
  .mt-sp-185 {
    margin-top: 11.5625rem;
  }
  .mt-sp-186 {
    margin-top: 11.625rem;
  }
  .mt-sp-187 {
    margin-top: 11.6875rem;
  }
  .mt-sp-188 {
    margin-top: 11.75rem;
  }
  .mt-sp-189 {
    margin-top: 11.8125rem;
  }
  .mt-sp-190 {
    margin-top: 11.875rem;
  }
  .mt-sp-191 {
    margin-top: 11.9375rem;
  }
  .mt-sp-192 {
    margin-top: 12rem;
  }
  .mt-sp-193 {
    margin-top: 12.0625rem;
  }
  .mt-sp-194 {
    margin-top: 12.125rem;
  }
  .mt-sp-195 {
    margin-top: 12.1875rem;
  }
  .mt-sp-196 {
    margin-top: 12.25rem;
  }
  .mt-sp-197 {
    margin-top: 12.3125rem;
  }
  .mt-sp-198 {
    margin-top: 12.375rem;
  }
  .mt-sp-199 {
    margin-top: 12.4375rem;
  }
  .mt-sp-200 {
    margin-top: 12.5rem;
  }
}
/* ---------- margin-topの設定 | ここまで ---------- */
/* ---------- 下層ページFV下の余白 | ここから ---------- */
.mt-lower-top {
  margin-top: 5rem;
}

/* ---------- 下層ページFV下の余白 | ここまで ---------- */
/* ---------- 会社概要ページ lower-main__content内 の sectionの余白 | ここから ---------- */
.mt-company-section {
  margin-top: 14.5rem;
}
@media screen and (max-width: 768px) {
  .mt-company-section {
    margin-top: 9.375rem;
  }
}

/* ---------- 会社概要ページ lower-main__content内 の sectionの余白 | ここまで ---------- */
/* ---------- 会社概要ページ lower-main__content内 の sectionの余白 | ここから ---------- */
.mt-oem-odm-section {
  margin-top: 9.375rem;
}
@media screen and (max-width: 768px) {
  .mt-oem-odm-section {
    margin-top: 9.375rem;
  }
}

/* ---------- 会社概要ページ lower-main__content内 の sectionの余白 | ここまで ---------- *//*# sourceMappingURL=style.css.map */