@charset "UTF-8";
/*
 Theme Name:   My Child Theme
 Template:     parent-theme-folder-name
*/
.pc {
  display: block;
}

.sp {
  display: none;
}

@media (width <= 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
html {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-size: calc(2 * (100vw - 2000px) / 1603 + 16px);
  padding: 0;
}

a {
  text-decoration: none;
  color: #3F3E3E;
}

li {
  list-style: none;
}

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

.animate {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.animate-active {
  opacity: 1;
  transform: translateY(0);
}

#mission {
  scroll-margin-top: 120px;
}

#one {
  scroll-margin-top: 320px;
}

#company, #flow, #price, #other {
  scroll-margin-top: 120px;
}

footer {
  background-color: #f7f7f7;
  border-top: 1px solid #FB0000;
}
footer .footerwarp {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 2em;
  padding: 80px 20px 0 20px;
}
@media (width <= 768px) {
  footer .footerwarp {
    flex-direction: column;
  }
}
footer .footerwarp .l-grp {
  max-width: calc(70 * (100vw - 2000px) / 1625 + 190px);
}
footer .footerwarp .r-grp ul {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4em;
  font-weight: bold;
  font-size: 14px;
}
@media (width <= 768px) {
  footer .footerwarp .r-grp ul {
    padding-left: 0;
    margin-top: 30px;
  }
}
footer .snswarp {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
  margin-top: 50px;
  padding-bottom: 50px;
}
footer .snswarp .shre {
  max-width: 80px;
}
footer .snswarp .snsicon {
  max-width: 50px;
}
footer .copy {
  background-color: #FB0000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 50px;
  padding-right: 50px;
}
@media (width <= 550px) {
  footer .copy {
    flex-direction: column;
    padding: 0;
    padding: 15px 0;
  }
}
footer .copy .poricywarp {
  font-size: 14px;
  display: flex;
  gap: 2em;
}
footer .copy .poricywarp a {
  color: white;
}
footer .copy .copyright p {
  color: white;
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 5px;
}

header {
  display: flex;
  justify-content: flex-start;
  padding-left: calc(30 * (100vw - 2000px) / 1002 + 50px);
  height: 85px;
  align-items: center;
  margin-top: 0px;
  margin-bottom: 20px;
  position: fixed;
  z-index: 99;
  width: 100%;
}
@media (width <= 992px) {
  header {
    width: 100%;
    margin-top: 0;
  }
}
header .logo {
  max-width: calc(40 * (100vw - 2000px) / 900 + 190px);
}
@media (width <= 550px) {
  header .logo {
    margin-left: 20px;
  }
}
header ul {
  display: flex;
  gap: calc(34 * (100vw - 2000px) / 900 + 50px);
  font-weight: bold;
}
@media (width <= 992px) {
  header ul {
    display: none;
  }
}
header ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
}
header ul li a {
  color: #3F3E3E;
}
header ul .mail {
  background-color: #FB0000;
  width: 180px;
  height: 85px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
header ul .mail .mail-list {
  flex-direction: column;
}
header ul .mail .mail-list img {
  max-width: 40px;
}

.open {
  background-color: white;
}

:root {
  --bg-dim: rgba(0, 0, 0, 0.45);
  --panel: rgba(18, 22, 32, 0.78);
  --txt: #fff;
  --muted: #b8c0d0;
  --radius: 16px;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  --accent: #36a3ff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #111;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ヘッダー */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 16px;
  display: none;
  border: 1px solid black;
  border-radius: 15px;
  margin-right: 20px;
}
@media (width <= 992px) {
  .site-header {
    display: flex;
    position: fixed;
    z-index: 9999999;
    right: 0;
    top: 18px;
  }
}
.site-header .logo {
  font-weight: 700;
}

/* ハンバーガー */
.hamburger {
  width: 44px;
  height: 25px;
  display: grid;
  place-items: unset;
  background: transparent;
  border: none;
  cursor: pointer;
}
.hamburger .bar {
  width: 22px;
  height: 2px;
  background: #111;
  display: block;
}
.hamburger .bar + .bar {
  margin-top: 5px;
}
.hamburger .bar + .bar:last-child {
  width: 45px;
}
.hamburger .bar + .bar:nth-child(1) {
  width: 35px;
}
.hamburger .bar + .bar:nth-child(2) {
  width: 25px;
}

/* オーバーレイ */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: var(--bg-dim);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
.nav-overlay[hidden] {
  display: none;
}

/* パネル */
.nav-panel {
  position: relative;
  width: min(960px, 92vw);
  height: min(82vh, 580px);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--txt);
  box-shadow: var(--shadow);
  padding: 28px 22px 24px;
  overflow: auto;
}
.nav-panel .close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

/* メニュー */
.menu {
  list-style: none;
  padding: 20px 6px 4px;
  margin: 0;
  display: grid;
  gap: 12px;
}
.menu a {
  display: block;
  padding: 16px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
}
.menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.menu a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* 低モーション配慮 */
@media (prefers-reduced-motion: no-preference) {
  .nav-overlay {
    animation: fade 0.22s ease-out;
  }
  .nav-panel {
    transform: scale(0.985);
    animation: pop 0.22s ease-out forwards;
  }
  @keyframes fade {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes pop {
    to {
      transform: scale(1);
    }
  }
}
/* ダミーコンテンツ */
.hero {
  height: 40vh;
  background: #f3f5f8;
  display: grid;
  place-items: center;
}

.content {
  padding: 24px;
}

/* スクロールバー幅差による横揺れ対策 */
@supports (scrollbar-gutter: stable) {
  html {
    scrollbar-gutter: stable both-edges;
  }
}
@font-face {
  font-family: "Alata";
  src: url("../fonts/alata-regular.woff2") format("woff2"), url("../fonts/alata-regular.woff") format("woff"), url("../fonts/alata-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
body {
  overflow-x: hidden;
  height: 100vh;
}

.firstView {
  display: flex;
}
.firstView .fvimg {
  width: 100%;
  position: relative;
}
.firstView .fvimg img {
  height: 750px;
}
@media (width <= 992px) {
  .firstView .fvimg img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.firstView .fvimg h2 {
  font-size: 70px;
  color: white;
  line-height: 1.2;
  position: absolute;
  bottom: 15%;
  left: calc(180 * (100vw - 2000px) / 1625 + 200px);
  font-weight: normal;
}
.firstView .fvimg h2 img {
  max-width: calc(200 * (100vw - 2000px) / 1625 + 520px);
  width: 100%;
  height: auto;
}
.firstView .fvimg .fvbuttonwarp {
  display: flex;
  gap: 2em;
  position: absolute;
  bottom: 13%;
  left: 10%;
  width: 100%;
}
@media (width <= 550px) {
  .firstView .fvimg .fvbuttonwarp {
    flex-direction: column;
    bottom: 8%;
    gap: 1em;
  }
}
.firstView .fvimg .fvbuttonwarp .l-button {
  border: 2px solid red;
  background-color: white;
  border-radius: 45px;
  max-width: 230px;
  width: 100%;
  max-height: 44px;
  width: 100%;
  display: flex;
  justify-content: center;
  box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.35);
}
.firstView .fvimg .fvbuttonwarp .l-button .fvbutton {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  color: red;
  font-weight: bold;
}
.firstView .fvimg .fvbuttonwarp .l-button .fvbutton img {
  max-width: 20px;
  height: 20px;
}
.firstView .fvimg .fvbuttonwarp a {
  border-radius: 45px;
  max-width: 230px;
  max-height: 44px;
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: red;
  box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.35);
}
.firstView .fvimg .fvbuttonwarp a .fvbutton-r {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  color: white;
  font-weight: bold;
}
.firstView .fvimg .fvbuttonwarp a .fvbutton-r img {
  max-width: 20px;
}
.firstView .text {
  max-width: 15%;
  margin: 0 auto;
}
.firstView .text h2 {
  height: 100%;
  font-size: 25px;
  writing-mode: vertical-rl;
  margin-top: 50px;
  letter-spacing: 15px;
  line-height: 4;
}

.kv {
  padding: 0px 0 28px;
}
@media (max-width: 560px) {
  .kv {
    padding: 28px 0 24px;
  }
}

.slick-slider,
.slick-list,
.slick-track {
  height: 100%;
}

.slide {
  padding: 24px 12px;
}

.card {
  background: #fff;
  display: grid;
  grid-template-columns: 46% 1fr;
  gap: 28px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 36px;
  box-shadow: 0 6px 5px rgba(0, 0, 0, 0.35);
}
.card__media {
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  margin: 0;
}
.card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__body .eyecatch {
  color: #FB0000;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 6px;
  font-size: clamp(12px, 1.6vw, 16px);
}
.card__body .ttl {
  margin: 0 0 10px;
  font-size: clamp(18px, 2.4vw, 28px);
  line-height: 1.35;
  font-weight: 800;
  color: #333;
}
.card__body .txt {
  color: #555;
  line-height: 1.9;
  font-size: clamp(13px, 1.5vw, 16px);
  margin: 0;
}
.card__body .buttonflex {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: start;
  margin-top: 50px;
}
@media (width <= 768px) {
  .card__body .buttonflex {
    padding-bottom: 20px;
    flex-direction: column;
  }
}
.card__body .buttonflex .cardButton {
  background-color: #f6f6f6;
  display: inline-block;
  align-items: center;
  justify-content: center;
  color: black;
  font-weight: bold;
  background-color: #f6f6f6;
  border-radius: 3px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  padding: 10px 20px;
  border-radius: 12px;
  display: flex;
  position: relative;
}
.card__body .buttonflex .cardButton:hover {
  background-color: rgb(148, 148, 148);
}
.card__body .buttonflex .cardButton a {
  display: block;
}
.card__body .buttonflex .cardButton img {
  max-width: 25px;
  padding-left: 10px;
}
.card .button {
  text-align: end;
}
.card .button a {
  color: white;
  text-align: center;
  max-width: 200px;
  margin-top: 30px;
  position: relative;
  padding: 10px 0;
  display: inline-block;
  width: 200px;
  background-image: linear-gradient(90deg, #fd2c2c, #ffbebe);
}

.slick-slide {
  transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease;
  opacity: 0.45;
  filter: grayscale(10%) saturate(85%);
}
.slick-slide:not(.slick-center) .card {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.slick-center {
  transform: scale(1);
  opacity: 1;
  filter: none;
}

.slick-prev,
.slick-next {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  display: grid;
  place-items: center;
  z-index: 2;
}
.slick-prev:hover,
.slick-next:hover {
  background: rgba(0, 0, 0, 0.3);
}
.slick-prev:before,
.slick-next:before {
  content: "";
  display: block;
  width: 0.55em;
  height: 0.55em;
  border: solid rgba(0, 0, 0, 0.55);
  border-width: 0 4px 4px 0;
  transform: rotate(135deg);
  position: absolute;
}

.slick-prev {
  left: 17%;
}

.slick-next {
  right: 17%;
}

.slick-next:before {
  transform: rotate(-45deg);
}

.slick-dots {
  bottom: -18px;
}
.slick-dots li {
  margin: 0 4px;
}
.slick-dots li button:before {
  font-size: 10px;
  color: #bbb;
  opacity: 1;
}
.slick-dots li.slick-active button:before {
  color: #FB0000;
}

@media (max-width: 900px) {
  .card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }
  .slick-prev {
    left: 4%;
  }
  .slick-next {
    right: 4%;
  }
}
@media (max-width: 560px) {
  .slick-prev,
  .slick-next {
    width: 44px;
    height: 44px;
  }
}
.sectionwidth {
  margin: 32px auto 48px;
  max-width: 1200px;
}
.sectionwidth h2 {
  font-size: calc(10 * (100vw - 2000px) / 1625 + 30px);
  margin: 0 0 12px;
  color: #3F3E3E;
  margin-bottom: 30px;
}
.sectionwidth h2 span {
  font-size: calc(3 * (100vw - 2000px) / 1625 + 16px);
}
.sectionwidth .brandstitle {
  margin-bottom: 0;
}
.sectionwidth .brandstext {
  margin-top: 0;
  font-size: calc(3 * (100vw - 2000px) / 1625 + 16px);
}

.padding {
  padding: 0 20px;
}

/* tabs */
.tabs {
  display: flex;
  grid-auto-flow: column;
  gap: 10px;
  align-items: end;
}
.tabs .tab {
  font-size: 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 2px solid #fb0000;
  border-bottom: 0;
  background: #fff;
  color: #3F3E3E;
  padding: 12px 18px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  max-width: 200px;
  width: 100%;
}
@media (width <= 550px) {
  .tabs .tab {
    max-width: calc(86 * (100vw - 550px) / 175 + 249px);
    border-radius: 12px;
    border-bottom: 3px solid #FB0000;
    padding: 12px 10px;
  }
}
.tabs .tab.is-active {
  background: #fb0000;
  color: #fff;
  border-color: #fb0000;
}
.tabs .sarch {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (width <= 992px) {
  .tabs .sarch {
    flex-direction: column;
  }
}
.tabs .sarch img {
  width: 20px;
  height: 20px;
}

/* panels */
.panels {
  border-top: 3px solid #fb0000;
  padding: 35px 20px;
  background-color: #f7f7f7;
  border-radius: 0 0 12px 12px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}

.panel[hidden] {
  display: none;
}

/* logo grid */
.logos-grid {
  list-style: none;
  margin: 0;
  padding: 8px;
  display: flex;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(var(--cell), 1fr));
  justify-items: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.logos-grid li {
  display: grid;
  place-items: center;
  padding: 10px 6px;
  font-weight: bold;
  background-color: #fff;
  border-radius: 35px;
  box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.35);
}
.logos-grid li:hover {
  background-color: rgb(148, 148, 148);
}
.logos-grid li a {
  padding-left: 5px;
  padding-right: 5px;
}
.logos-grid .logos {
  background-color: #fff;
  max-width: calc(44 * (100vw - 2000px) / 1625 + 164px);
  width: 100%;
  min-height: 95px;
  border-radius: 6px;
  box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.35);
}
@media (max-width: 536px) {
  .logos-grid .logos {
    max-width: calc(65 * (100vw - 536px) / 161 + 200px);
  }
}
.logos-grid .logos:hover {
  background-color: rgb(148, 148, 148);
}
.logos-grid .logos img {
  max-width: calc(20 * (100vw - 2000px) / 1625 + 120px);
  max-height: 54px;
  width: auto;
  height: auto;
}
.logos-grid .logos a {
  display: flex;
  align-items: center;
  max-width: 100%;
  width: 100%;
  height: 100%;
  text-align: center;
  align-self: center;
  justify-content: center;
}

.logo-grid {
  list-style: none;
  margin: 0;
  padding: 8px;
  display: flex;
  justify-content: start;
  grid-template-columns: repeat(auto-fit, minmax(var(--cell), 1fr));
  justify-items: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.logo-grid li {
  display: grid;
  place-items: center;
  padding: 10px 6px;
  font-weight: bold;
  background-color: #fff;
  border-radius: 35px;
  box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.35);
}
.logo-grid li:hover {
  background-color: rgb(148, 148, 148);
}
.logo-grid li a {
  padding-left: 5px;
  padding-right: 5px;
}
.logo-grid .logos {
  background-color: #fff;
  min-width: calc(54 * (100vw - 2000px) / 1625 + 174px);
  min-height: 95px;
  border-radius: 6px;
  box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.35);
}
@media (max-width: 536px) {
  .logo-grid .logos {
    width: calc(80 * (100vw - 536px) / 161 + 200px);
  }
}
.logo-grid .logos:hover {
  background-color: rgb(148, 148, 148);
}
.logo-grid .logos img {
  max-width: calc(10 * (100vw - 2000px) / 1625 + 120px);
  max-height: 54px;
  width: auto;
  height: auto;
}
.logo-grid .logos a {
  display: flex;
  align-items: center;
  max-width: 100%;
  width: 100%;
  height: 100%;
  text-align: center;
  align-self: center;
  justify-content: center;
}

/* responsive */
@media (max-width: 720px) {
  .tabs {
    grid-auto-flow: row;
    gap: 8px;
  }
}
@media (max-width: 720px) and (width <= 550px) {
  .tabs {
    flex-wrap: wrap;
    padding-bottom: 5px;
  }
}
@media (max-width: 720px) {
  .panels {
    padding: 16px 14px;
  }
}
/* ====== モバイルだけロゴのズレを解消（PCは触らない）====== */
@media (max-width: 720px) {
  /* パネル内の左右余白が広すぎる場合の調整（任意） */
  .panels {
    padding: 16px 12px !important;
  }
  /* ロゴ一覧（モバイルのみグリッドにして左右の空白をなくす） */
  .logos-grid {
    /* 旧 flex 指定が残っていても潰せるように */
    display: grid !important;
    /* 2列で均等割り。gapはお好みで */
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    /* “中央寄せで左右に空白”を防ぐ */
    justify-content: stretch !important;
    align-content: start !important;
    place-content: start !important;
    /* リスト余白のリセット */
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }
  /* liの余白が子要素を押し広げないように */
  .logos-grid > li {
    margin: 0 !important;
    padding: 0 !important;
  }
  /* カードの箱：幅100%でアスペクトを固定してはみ出しを防ぐ */
  .logos-grid .logos {
    width: 100% !important;
    max-width: none !important; /* 既存の calc 指定が残っていても無効化 */
    min-width: 0 !important;
    aspect-ratio: 16/9; /* かんたんに縦横比を固定 */
    border-radius: 10px;
    overflow: hidden; /* 角丸から画像がはみ出さない */
    box-sizing: border-box;
  }
  /* クリック領域＝カード全体。内側余白はここでだけ持つ */
  .logos-grid .logos > a {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    padding: 12px; /* 画像と枠の余白 */
    box-sizing: border-box;
  }
  /* 画像は必ず枠に収まるように */
  .logos-grid .logos img {
    display: block; /* ベースライン起因のズレ防止 */
    max-width: 85%;
    max-height: 60%;
    width: auto;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain; /* 収める */
  }
}
.sectionwidth.top {
  margin-top: 80px;
}
.sectionwidth.top.back {
  margin-top: 30px;
}
@media (width <= 1200px) {
  .sectionwidth.top .pickupwarp {
    overflow-x: auto;
    white-space: nowrap;
  }
}
.sectionwidth.top .pickupwarp::-webkit-scrollbar {
  background: #e2e0e0;
  width: 5px;
  height: 5px;
}
.sectionwidth.top .pickupwarp::-webkit-scrollbar-thumb {
  background: red;
  border-radius: 45px;
  max-width: 10px;
}
.sectionwidth.top .pickupwarp ul {
  display: flex;
  gap: 30px;
  padding-left: 0;
}
@media (width <= 768px) {
  .sectionwidth.top .pickupwarp ul {
    margin-bottom: 30px;
  }
}
.sectionwidth.top .pickupwarp ul li {
  width: 100%;
}
.sectionwidth.top .pickupwarp ul li a img {
  min-width: 200px;
  width: 100%;
  max-height: calc(0 * (100vw - 2000px) / 1625 + 150px);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sectionwidth.top .pickupwarp ul li .tab {
  display: flex;
  gap: 10px;
  align-self: center;
  margin-bottom: 0;
  margin-top: 10px;
}
.sectionwidth.top .pickupwarp ul li .tab span {
  border: 1px solid #FB0000;
  border-radius: 45px;
  display: flex;
  justify-content: center;
  max-width: 80px;
  width: 100%;
}

.mission {
  margin-top: 100px !important;
  position: relative;
  max-width: 100%;
}
.mission .l-bg {
  position: absolute;
}
.mission .l-bg img {
  max-width: calc(340 * (100vw - 2000px) / 1625 + 420px);
}
.mission .r-bg {
  position: absolute;
  right: 0;
}
.mission .r-bg img {
  max-width: 265px;
}
.mission .r-bg .bg1 {
  width: calc(170 * (100vw - 2000px) / 1625 + 270px);
  position: absolute;
  top: calc(-280 * (100vw - 2000px) / 1625 + 20px);
  right: calc(200 * (100vw - 2000px) / 1625 + 200px);
}
.mission .r-bg .bg2 {
  width: 30px;
  position: absolute;
  top: 300px;
  right: 200px;
}
@media (width <= 992px) {
  .mission .r-bg .bg2 {
    display: none;
  }
}
.mission .missionImg {
  max-width: 600px;
  margin: 0 auto;
}
.mission .missionImg img {
  position: relative;
  z-index: 98;
}
.mission .missionText {
  max-width: 600px;
  margin: 0 auto;
}
.mission .missionText p {
  text-align: center;
  color: #3F3E3E;
  line-height: 1.7;
  position: relative;
  z-index: 999;
}
.mission .button {
  border: 2px solid #FB0000;
  border-radius: 25px;
  text-align: center;
  max-width: calc(70 * (100vw - 2000px) / 1625 + 320px);
  margin: 0 auto;
  margin-top: 50px;
  position: relative;
  font-weight: bold;
}
.mission .button a {
  display: block;
  padding: 10px 0px;
}
.mission .button a:hover {
  background-color: #FB0000;
  border-radius: 25px;
  color: white;
  transition: 0.2s;
}

.topics {
  width: min(1160px, 92vw);
  margin: 0 auto 48px;
}
.topics h2 {
  font-size: calc(10 * (100vw - 2000px) / 1625 + 30px);
  margin: 0 0 12px;
  color: #3F3E3E;
  margin-bottom: 30px;
}
.topics h2 span {
  font-size: calc(3 * (100vw - 2000px) / 1625 + 16px);
}

/* tabs */
.topics-tabs {
  display: flex;
  gap: 12px;
  align-items: end;
  margin: 8px 0 0px;
  background: #fff;
}
@media (width <= 550px) {
  .topics-tabs {
    flex-wrap: wrap;
    padding-bottom: 5px;
  }
}
.topics-tabs .tab {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 2px solid #FB0000;
  border-bottom: 0;
  background: #fff;
  color: #444;
  padding: 12px 18px;
  font-weight: 700;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  outline-offset: 2px;
}
@media (width <= 550px) {
  .topics-tabs .tab {
    max-width: calc(80 * (100vw - 550px) / 175 + 245px);
    width: 100%;
    border: 2px solid #FB0000;
    border-radius: 12px;
  }
}
.topics-tabs .tab.is-active {
  background: #FB0000;
  color: #fff;
  border-color: #FB0000;
}

/* cards grid */
.topics-list {
  border-top: 3px solid #FB0000;
  padding-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 40px;
}
@media (max-width: 1200px) {
  .topics-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .topics-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
@media (max-width: 560px) {
  .topics-list {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

.topic-card {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 18px;
  min-width: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  will-change: opacity, transform;
}
.topic-card.is-hidden {
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  display: none;
}
.topic-card .thumb {
  aspect-ratio: 16/10;
  border-radius: 8px;
  margin: 0 0 14px;
}
@media (width <= 550px) {
  .topic-card .thumb {
    display: none;
  }
}
.topic-card .thumb img {
  max-height: 162px;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 12px;
}
.topic-card .meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.topic-card .meta time {
  font-weight: normal;
  color: #333;
  font-size: 15px;
}
.topic-card .meta .chip {
  display: inline-grid;
  place-items: center;
  padding: 2px 10px;
  font-size: 12px;
  border: 2px solid #FB0000;
  border-radius: 999px;
  color: #FB0000;
  background: #fff;
}
.topic-card .title {
  font-size: 16px;
  margin: 0 0 6px;
  font-weight: normal;
}
.topic-card .excerpt {
  color: #555;
  line-height: 1.8;
  margin: 0;
}

.sectionbackground {
  background-color: #efeded;
  margin-top: 150px;
  padding-top: 30px;
  padding-bottom: 30px;
  border-radius: 150px 0 0 150px;
  position: relative;
  margin-bottom: 100px;
}
@media (width <= 768px) {
  .sectionbackground {
    border-radius: 0;
  }
}
.sectionbackground .bg1 {
  position: absolute;
  top: calc(-50 * (100vw - 2000px) / 1625 - 100px);
  left: 30px;
}
.sectionbackground .bg1 img {
  max-width: calc(120 * (100vw - 2000px) / 1625 + 260px);
}
.sectionbackground .bg2 {
  position: absolute;
  top: calc(-70 * (100vw - 2000px) / 1625 - 100px);
  right: 0;
}
.sectionbackground .bg2 img {
  max-width: calc(90 * (100vw - 2000px) / 1625 + 140px);
}
.sectionbackground .suzuyawarp {
  display: flex;
  gap: 2em;
  overflow-x: auto;
  white-space: nowrap;
  padding: 0 20px;
}
.sectionbackground .suzuyawarp::-webkit-scrollbar {
  background: #fefefe;
  width: 5px;
  height: 5px;
}
.sectionbackground .suzuyawarp::-webkit-scrollbar-thumb {
  background: red;
  border-radius: 45px;
  max-width: 10px;
}
.sectionbackground .suzuyawarp .suzuyacard {
  min-width: 365px;
}
@media (width <= 768px) {
  .sectionbackground .suzuyawarp .suzuyacard {
    margin-bottom: 30px;
  }
}
.sectionbackground .suzuyawarp .suzuyacard .cardimg img {
  vertical-align: bottom;
  height: 208px;
  -o-object-fit: cover;
     object-fit: cover;
}
.sectionbackground .suzuyawarp .suzuyacard .bottominner {
  background-color: white;
  min-height: 370px;
  padding: 0 20px;
  padding-bottom: 20px;
}
.sectionbackground .suzuyawarp .suzuyacard .bottominner .bottomname {
  margin-top: 0;
  text-align: center;
  padding-top: 20px;
  font-weight: bold;
  color: #3F3E3E;
  font-size: 18px;
}
.sectionbackground .suzuyawarp .suzuyacard .bottominner .flex {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.sectionbackground .suzuyawarp .suzuyacard .bottominner .flex.siryo {
  flex-wrap: wrap;
}
.sectionbackground .suzuyawarp .suzuyacard .bottominner .flex .icon {
  border: 1px solid black;
  border-radius: 100px;
  max-width: 90px;
  width: 100%;
  height: 90px;
  position: relative;
}
.sectionbackground .suzuyawarp .suzuyacard .bottominner .flex .icon img {
  max-width: 20px;
  position: absolute;
  right: 50%;
  transform: translate(10px, 10px);
}
.sectionbackground .suzuyawarp .suzuyacard .bottominner .flex .icon .icontext {
  text-align: center;
  position: relative;
  top: 30%;
}
.sectionbackground .suzuyawarp .suzuyacard .bottominner .flex .icon .icontext.siryo {
  top: 25%;
  font-size: 14px;
}
.sectionbackground .suzuyawarp .suzuyacard .bottominner .flex .icon .icontext.top {
  top: 10%;
}
.sectionbackground .suzuyawarp .suzuyacard .bottominner .buttonflex {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}
@media (width <= 768px) {
  .sectionbackground .suzuyawarp .suzuyacard .bottominner .buttonflex {
    padding-bottom: 50px;
  }
}
.sectionbackground .suzuyawarp .suzuyacard .bottominner .buttonflex .cardButton {
  background-color: #f6f6f6;
  display: inline-block;
  align-items: center;
  justify-content: center;
  color: black;
  font-weight: bold;
  background-color: #f6f6f6;
  border-radius: 3px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  padding: 10px 20px;
  border-radius: 45px;
  display: flex;
  position: relative;
}
.sectionbackground .suzuyawarp .suzuyacard .bottominner .buttonflex .cardButton:hover {
  background-color: rgb(148, 148, 148);
}
.sectionbackground .suzuyawarp .suzuyacard .bottominner .buttonflex .cardButton a {
  display: block;
}
.sectionbackground .suzuyawarp .suzuyacard .bottominner .buttonflex .cardButton img {
  max-width: 25px;
  padding-left: 10px;
}

.news {
  position: relative;
  margin-bottom: 100px;
}
.news .bg1 {
  position: absolute;
  top: calc(170 * (100vw - 2000px) / 1625 + 50%);
  transform: translateY(-50%);
}
.news .bg1 img {
  max-width: calc(250 * (100vw - 2000px) / 1625 + 350px);
}
.news .bg2 {
  position: absolute;
  right: 0;
  bottom: calc(70 * (100vw - 2000px) / 1625 + 0px);
}
.news .bg2 img {
  max-width: calc(200 * (100vw - 2000px) / 1625 + 300px);
}
.news .newswarp {
  position: relative;
}
.news .newswarp .bg1 {
  position: absolute;
}
.news .newswarp .newstext {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid rgb(202, 202, 202);
  margin-bottom: 15px;
}
@media (width <= 992px) {
  .news .newswarp .newstext {
    flex-direction: column;
    gap: 0;
  }
}
.news .newswarp .newstext .newsflex {
  display: flex;
  gap: 1.5em;
}
.news .newswarp .newstext .newsflex .days {
  color: #3F3E3E;
}
@media (width <= 992px) {
  .news .newswarp .newstext .newsflex .days {
    margin-bottom: 5px;
    margin-top: 5px;
  }
}
.news .newswarp .newstext .newsflex .tag {
  border: 1px solid #FB0000;
  min-width: 100px;
  max-height: 28px;
  border-radius: 45px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (width <= 992px) {
  .news .newswarp .newstext .newsflex .tag {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
.news .newswarp .newstext .text {
  font-weight: bold;
  color: #3F3E3E;
}

.contact {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 150px;
  margin-bottom: calc(100 * (100vw - 2000px) / 1625 + 150px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
@media (width <= 550px) {
  .contact {
    flex-direction: column;
  }
}
.contact .l-grp {
  position: relative;
}
.contact .l-grp img {
  position: absolute;
  top: -50px;
  left: 50px;
  z-index: 1;
}
@media (width <= 550px) {
  .contact .l-grp img {
    max-width: 180px;
    left: 80px;
  }
}
.contact .l-grp h2 {
  font-size: calc(15 * (100vw - 2000px) / 1625 + 50px);
  line-height: 0.7;
  margin-top: 0;
  position: relative;
  z-index: 10;
}
.contact .l-grp h2 span {
  font-size: calc(3 * (100vw - 2000px) / 1625 + 16px);
  color: #3F3E3E;
}
.contact .l-grp .contacttext {
  position: relative;
  z-index: 10;
}
.contact .r-grp {
  text-align: center;
}
.contact .r-grp a {
  font-size: 25px;
}
.contact .r-grp a span {
  font-size: 18px;
}
.contact .r-grp p {
  margin-top: 0;
  font-size: 10px;
  text-align: center;
}
.contact .r-grp .contactbutton {
  background-color: #FB0000;
  margin-top: 20px;
}
.contact .r-grp .contactbutton a {
  display: block;
  width: calc(120 * (100vw - 2000px) / 1625 + 370px);
  padding: 20px 0;
  font-size: 16px;
  color: white;
  background-image: linear-gradient(90deg, #fd2c2c, #ffbebe);
}

@media (width <= 992px) {
  .page-header {
    display: none;
  }
}
.page-header img {
  max-height: 360px;
}

.page-inner {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 100px;
}
@media (width <= 1200px) {
  .page-inner {
    padding: 0 20px;
    margin-top: 80px;
  }
}
.page-inner .aboutTitle {
  text-align: center;
  margin-bottom: 50px;
}
.page-inner .aboutTitle h2 {
  font-size: calc(10 * (100vw - 2000px) / 1625 + 30px);
  line-height: 1;
}
.page-inner .aboutTitle h2 span {
  font-size: 18px;
  color: #FB0000;
}
.page-inner .abouttext {
  margin-bottom: 50px;
}
.page-inner .abouttext h2 {
  border-bottom: 3px solid #FB0000;
  font-size: calc(7 * (100vw - 2000px) / 1625 + 25px);
}
.page-inner .facewarp .facetitle h2 {
  border-bottom: 3px solid #FB0000;
  display: inline-block;
}
.page-inner .facewarp .l-warp {
  display: flex;
  gap: 30px;
  margin-bottom: 100px;
}
@media (width <= 768px) {
  .page-inner .facewarp .l-warp {
    flex-direction: column;
  }
}
.page-inner .facewarp .l-warp img {
  max-width: calc(110 * (100vw - 2000px) / 1625 + 360px);
  height: -moz-fit-content;
  height: fit-content;
}
@media (width <= 768px) {
  .page-inner .facewarp .l-warp img {
    max-width: 100%;
  }
}
.page-inner .facewarp .l-warp .textwarp .warptitle .title {
  color: #FB0000;
  border-bottom: 1px solid #FB0000;
  padding-bottom: 5px;
}
.page-inner .facewarp .l-warp .textwarp .warptitle .textgrp h2 {
  font-size: calc(7 * (100vw - 2000px) / 1625 + 25px);
}
.page-inner .facewarp .l-warp .textwarp .bottom {
  margin-top: 50px;
}
.page-inner .facewarp .r-warp {
  flex-direction: row-reverse;
}
@media (width <= 768px) {
  .page-inner .facewarp .r-warp {
    flex-direction: column-reverse;
  }
}
.page-inner .mission .missionimg {
  max-width: 600px;
  margin: 0 auto;
}
.page-inner .mission p {
  text-align: center;
}
.page-inner .selecter {
  margin-bottom: 10px;
}
.page-inner .selecter select {
  height: 30px;
}
.page-inner .selecter select option {
  font-size: 16px;
}

.short {
  margin-top: 50px;
}

.common_header {
  border-bottom: 1px solid #c4c4c4;
  padding-top: calc(100 * (100vw - 2000px) / 1625 + 200px);
}
.common_header .pageTitle {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
}
.common_header .pageTitle img {
  max-width: 30px;
  height: auto;
}

.company {
  padding-top: calc(70 * (100vw - 2000px) / 1625 + 100px);
}

.allmaker {
  margin-top: calc(100 * (100vw - 2000px) / 1625 + 150px);
}
.allmaker h2 {
  font-size: calc(7 * (100vw - 2000px) / 1625 + 25px);
  margin-bottom: 50px;
}

.makerwarp {
  display: flex;
  gap: 50px;
  margin-bottom: 100px;
}
@media (width <= 768px) {
  .makerwarp {
    flex-direction: column;
  }
}
.makerwarp .l-warp {
  background-color: #f7f6f6;
  min-width: calc(90 * (100vw - 2000px) / 1002 + 390px);
  height: calc(60 * (100vw - 2000px) / 1002 + 260px);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.35);
  padding: 0 30px;
}
@media (width <= 768px) {
  .makerwarp .l-warp {
    height: calc(50 * (100vw - 768px) / 393 + 200px);
  }
}
.makerwarp .l-warp img {
  max-width: calc(100 * (100vw - 2000px) / 1232 + 300px);
  height: calc(20 * (100vw - 2000px) / 1002 + 70px);
  text-align: center;
}
.makerwarp .l-warp .nichiha-logo {
  max-width: calc(107 * (100vw - 2000px) / 1232 + 307px);
  height: auto;
}
.makerwarp .l-warp .tajima-logo {
  max-width: calc(107 * (100vw - 2000px) / 1232 + 307px);
  height: auto;
}
.makerwarp .l-warp .inagaki-logo {
  max-width: calc(100 * (100vw - 2000px) / 1232 + 347px);
  height: auto;
}
.makerwarp .l-warp .kmew-logo {
  max-width: calc(120 * (100vw - 2000px) / 1232 + 347px);
  height: auto;
}
.makerwarp .l-warp .ig-logo {
  max-width: calc(81 * (100vw - 2000px) / 1002 + 331px);
  height: auto;
}
.makerwarp .r-warp .name {
  font-size: 20px;
  font-weight: bold;
  margin-top: 0;
}
.makerwarp .r-warp .flexbutton {
  display: flex;
  gap: 1em;
}
.makerwarp .button {
  max-width: calc(70 * (100vw - 2000px) / 1625 + 320px);
  width: 100%;
  border: 1px solid #3f3e3e;
  border-radius: 34px;
  margin-left: auto;
  margin-top: 50px;
}
@media (width <= 768px) {
  .makerwarp .button {
    margin: 0 auto;
    margin-top: 20px;
  }
}
.makerwarp .button a {
  display: block;
  text-align: center;
  padding: 10px 0;
}

.brandform .formtextwarp {
  text-align: center;
}
.brandform .formtextwarp h2 {
  font-size: 25px;
  margin-bottom: 0;
}
.brandform .formtextwarp p {
  margin-top: 0;
  color: #3F3E3E;
}
.brandform .brandformwarp {
  background-color: #d9d9d9;
  border-radius: 10px;
}
.brandform .brandformwarp .inner {
  max-width: 80%;
  margin: 0 auto;
  padding: 20px 0;
}
.brandform .brandformwarp .inner .felld p {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (width <= 768px) {
  .brandform .brandformwarp .inner .felld p {
    font-size: 14px;
  }
}
.brandform .brandformwarp .inner .felld p span {
  color: #FB0000;
  font-size: 14px;
}
@media (width <= 768px) {
  .brandform .brandformwarp .inner .felld p span {
    font-size: 12px;
  }
}
.brandform .brandformwarp .inner .felld .input {
  max-width: 60%;
  width: 100%;
  border: 0;
  height: 35px;
  border-radius: 5px;
  font-size: 16px;
  background-color: #fff8f8;
  text-indent: 1em;
}
.brandform .brandformwarp .inner .felld .textarea {
  max-width: 100%;
  width: 100%;
  border: 0;
  height: 150px;
  border-radius: 5px;
  font-size: 16px;
  background-color: #fff8f8;
  text-indent: 1em;
  padding-top: 1em;
  resize: none;
}
.brandform .brandformwarp .inner .submit .button {
  display: block;
  text-align: center;
  padding: 10px 0;
  font-weight: bold;
  max-width: 250px;
  width: 100%;
  margin: 0 auto;
  background-color: #fff8f8;
  border-radius: 35px;
  margin-top: 30px;
  margin-bottom: 20px;
  border: 1px solid #333;
}

.single-page-header {
  background-color: #f5f4f4;
  padding-top: calc(20 * (100vw - 2000px) / 1625 + 150px);
  padding-bottom: 10px;
}
.single-page-header .makerlogowarp {
  max-width: 1200px;
  margin: 0 auto;
}
.single-page-header .makerlogowarp .makerlogo {
  max-width: calc(120 * (100vw - 2000px) / 1625 + 300px);
  height: auto;
  margin: 0 auto;
}
.single-page-header .makerlogowarp .makerlogo img {
  height: auto;
}
.single-page-header .makerlogowarp p {
  text-align: end;
  font-weight: bold;
  font-size: calc(11 * (100vw - 2000px) / 1625 + 25px);
  color: #3F3E3E;
  padding-right: 20px;
}

.makerinto .makername {
  font-weight: bold;
  font-size: 20px;
}

.kindtype {
  display: flex;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px;
  gap: 15px;
}
@media (width <= 550px) {
  .kindtype {
    margin-bottom: 0;
  }
}
.kindtype img {
  max-width: 13px;
  height: 33px;
}
.kindtype .type {
  font-size: 20px;
  font-weight: bold;
}

.materialwarp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #c4c4c4;
  padding-bottom: 40px;
  padding-top: 30px;
}
@media (width <= 550px) {
  .materialwarp {
    flex-direction: column-reverse;
  }
}
.materialwarp .material {
  max-width: 500px;
}
.materialwarp .material .name {
  font-weight: bold;
  font-size: calc(2 * (100vw - 2000px) / 1625 + 18px);
  margin-top: 0;
}
.materialwarp .material .material__actions a {
  border-bottom: 1px solid blue;
  color: blue;
}
.materialwarp .material .support-badges {
  display: flex;
  gap: 1em;
  padding: 0;
}
.materialwarp .material .support-badges .support-badges__item img {
  max-width: 60px;
}
.materialwarp .phot {
  max-width: 250px;
  width: 100%;
  max-height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  padding-left: 20px;
}
@media (width <= 550px) {
  .materialwarp .phot {
    padding-left: 0;
    margin-bottom: 30px;
    max-height: initial;
    -o-object-fit: cover;
       object-fit: cover;
    text-align: center;
  }
}
.materialwarp .phot img {
  max-width: 250px;
  width: 100%;
  max-height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}

.greetingwarp .greeting {
  font-weight: bold;
  font-size: calc(2 * (100vw - 2000px) / 1625 + 18px);
}
.greetingwarp .name {
  text-align: end;
}
.greetingwarp .name .c-name {
  font-weight: bold;
  line-height: 1.5;
}

.profile {
  max-width: 1030px;
  margin: 0 auto;
  margin-bottom: 50px;
}
.profile h2 {
  text-align: center;
}
.profile table {
  border-collapse: collapse;
  border: 1px solid #d9d9d9;
}
.profile table .right {
  min-width: calc(100 * (100vw - 2000px) / 1625 + 220px);
  padding: 20px 0;
  background-color: #f7f3f3;
  text-indent: 1em;
  font-weight: bold;
  border: 1px solid #d9d9d9;
}
.profile table .left {
  width: 100%;
  padding: 20px;
  border: 1px solid #d9d9d9;
}

.features {
  display: flex;
  align-items: center;
  gap: 10px;
}
.features img {
  max-width: 10px;
  height: 30px;
}

.featureswarp {
  max-width: 1050px;
  margin: 0 auto;
}
.featureswarp .featurestext {
  font-weight: bold;
  font-size: calc(2 * (100vw - 2000px) / 1625 + 18px);
}
.featureswarp .button {
  max-width: calc(70 * (100vw - 2000px) / 1625 + 320px);
  margin: 0 auto;
  margin-top: 100px;
  margin-bottom: 100px;
  border-radius: 45px;
  border: 3px solid #FB0000;
  text-align: center;
  font-weight: bold;
}
.featureswarp .button a {
  display: block;
  padding: 10px 0;
}

.thankswarp {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: calc(70 * (100vw - 2000px) / 1625 + 150px);
  padding-left: 20px;
  padding-right: 20px;
}
.thankswarp h2 {
  font-size: calc(10 * (100vw - 2000px) / 1625 + 50px);
  color: #FB0000;
  text-align: center;
  line-height: 1;
}
@media (width <= 768px) {
  .thankswarp h2 {
    line-height: 0.7;
  }
}
.thankswarp h2 span {
  font-size: calc(4 * (100vw - 2000px) / 1625 + 18px);
  color: #3F3E3E;
}
.thankswarp p {
  text-align: center;
  line-height: 1.7;
  margin-bottom: 30px;
}
.thankswarp .time {
  font-weight: bold;
}
.thankswarp .telwarp .teltext {
  background-color: #FB0000;
  max-width: 300px;
  margin: 0 auto;
  color: white;
  margin-bottom: 30px;
}
.thankswarp .telwarp .number {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.thankswarp .telwarp .number a {
  display: flex;
  align-items: center;
  gap: 20px;
}
.thankswarp .telwarp .number a img {
  max-width: 30px;
  height: -moz-fit-content;
  height: fit-content;
}
.thankswarp .telwarp .number a p {
  margin: 0;
  font-size: 30px;
  font-weight: bold;
}
.thankswarp .button {
  max-width: calc(70 * (100vw - 2000px) / 1625 + 320px);
  margin: 0 auto;
  margin-bottom: 100px;
  border-radius: 45px;
  border: 3px solid #FB0000;
  text-align: center;
  font-weight: bold;
}
.thankswarp .button a {
  display: block;
  padding: 10px 0;
}

.columnwarp {
  display: flex;
  gap: 2em;
  align-items: center;
  border-bottom: 1px solid #c4c4c4;
  padding-bottom: 50px;
  margin-top: 50px;
}
@media (width <= 768px) {
  .columnwarp {
    flex-direction: column;
  }
}
.columnwarp:nth-child(1) {
  margin-top: 0px;
}
.columnwarp:last-child {
  border-bottom: 0;
}
.columnwarp .img img {
  max-width: calc(100 * (100vw - 2000px) / 1625 + 360px);
  min-width: calc(100 * (100vw - 2000px) / 1625 + 360px);
  height: 211px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width <= 768px) {
  .columnwarp .img img {
    max-width: calc(200 * (100vw - 550px) / 175 + 550px);
  }
}
.columnwarp .columntext .daysgrp {
  display: flex;
  gap: 2em;
  align-items: center;
  margin-bottom: 30px;
}
.columnwarp .columntext .daysgrp .days {
  color: #a7a7a7;
  margin-top: 0;
  margin-bottom: 0;
}
.columnwarp .columntext .daysgrp .ctg {
  margin-top: 0;
  background-color: #c3bbbb;
  border-radius: 45px;
  padding: 5px 20px;
  margin-bottom: 0;
}
.columnwarp .columntext .text .title {
  font-weight: bold;
  font-size: calc(2 * (100vw - 2000px) / 1625 + 18px);
}

.column_common_header {
  border-bottom: 1px solid #c4c4c4;
  padding-top: 200px;
}
.column_common_header .pageTitle {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
}
.column_common_header .pageTitle img {
  max-width: 20px;
  height: -moz-fit-content;
  height: fit-content;
}
.column_common_header .pageTitle .pagename {
  font-size: 25px;
}
.column_common_header h1 {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
}

.column-page-inner {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 50px;
  padding: 0 20px;
}
.column-page-inner .days p {
  font-weight: bold;
  font-size: 14px;
}
.column-page-inner h2 {
  font-size: calc(5 * (100vw - 2000px) / 1625 + 30px);
  position: relative;
  padding-left: 25px;
}
.column-page-inner h2::before {
  content: "";
  background-image: url("../imag/indenticon.png");
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: contain;
  height: 33px;
  top: 50%;
  transform: translateY(-50%);
}
.column-page-inner .button {
  max-width: calc(70 * (100vw - 2000px) / 1625 + 320px);
  margin: 0 auto;
  border: 2px solid #FB0000;
  border-radius: 45px;
  margin-top: 100px;
}
.column-page-inner .button a {
  display: block;
  text-align: center;
  font-weight: bold;
  padding: 8px 0;
}

.yearswarp {
  padding-left: 50px;
}
@media (width <= 768px) {
  .yearswarp {
    padding-left: 0;
  }
}
.yearswarp a {
  border-bottom: 1px solid #3f3e3e;
  position: relative;
  padding-left: 30px;
  padding-bottom: 5px;
  padding-right: 10px;
  font-size: 18px;
  font-weight: bold;
}
.yearswarp a::before {
  content: "";
  background-image: url("../imag/cursor.png");
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 15px;
  position: absolute;
  inset: 0;
  top: 50%;
  transform: translateY(-50%);
}

.yaers {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
}
.yaers img {
  max-width: 13px;
  height: 33px;
}
.yaers p {
  font-size: calc(5 * (100vw - 2000px) / 1625 + 25px);
  font-weight: bold;
}

.newswarp-single {
  display: flex;
  gap: 2em;
  padding-top: 20px;
  padding-bottom: 20px;
}
.newswarp-single:first-child {
  border-top: 1px solid #c4c4c4;
}
@media (width <= 768px) {
  .newswarp-single {
    flex-direction: column;
    gap: 10px;
  }
}
.newswarp-single .newsinfo {
  display: flex;
  align-items: center;
  gap: 2em;
}
.newswarp-single .newsinfo .days {
  color: #a7a7a7;
}
@media (width <= 768px) {
  .newswarp-single .newsinfo .days {
    margin-top: 0;
  }
}
.newswarp-single .newsinfo .categry {
  background-color: #c3bbbb;
  border-radius: 45px;
  padding: 0 20px;
}
@media (width <= 768px) {
  .newswarp-single .newsinfo .categry {
    margin-top: 0;
  }
}
.newswarp-single .newstext {
  font-weight: bold;
}
@media (width <= 768px) {
  .newswarp-single .newstext {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.questionwarp {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
}
@media (width <= 992px) {
  .questionwarp {
    grid-template-columns: repeat(2, 1fr);
  }
}
.questionwarp a {
  border-left: 1px solid #3f3e3e;
  position: relative;
  padding-left: 30px;
  padding-bottom: 5px;
  padding-right: 10px;
  font-size: calc(4 * (100vw - 2000px) / 1625 + 18px);
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  padding-right: 30px;
}
@media (width <= 992px) {
  .questionwarp a {
    border-bottom: 1px solid #3f3e3e;
    border-left: 0;
    border-right: 0;
    margin-right: 5px;
    margin-left: 5px;
  }
}
.questionwarp a::before {
  content: "";
  background-image: url("../imag/cursor.png");
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 15px;
  position: absolute;
  inset: 0;
  left: 50%;
  top: 55px;
}
.questionwarp a:last-child {
  border-right: 1px solid #3f3e3e;
}
@media (width <= 992px) {
  .questionwarp a:last-child {
    border-right: 0;
  }
}

.questions {
  max-width: 1150px;
  margin: 0 auto;
}
.questions:nth-child(5) {
  border-bottom: 1px solid #c4c4c4;
  padding-bottom: 20px;
}
.questions:nth-child(9) {
  border-bottom: 1px solid #c4c4c4;
  padding-bottom: 20px;
}
.questions:nth-child(13) {
  border-bottom: 1px solid #c4c4c4;
  padding-bottom: 20px;
}
.questions:nth-child(18) {
  border-bottom: 1px solid #c4c4c4;
  padding-bottom: 20px;
}
.questions .question {
  font-weight: bold;
  font-size: calc(2 * (100vw - 2000px) / 1625 + 18px);
  padding-left: 1em;
  text-indent: -1.5em;
}
.questions .question::before {
  content: "Q.";
  color: #2c87fd;
  padding-right: 5px;
}
.questions .ansewr {
  padding-left: 1em;
  text-indent: -1.5em;
}
.questions .ansewr::before {
  content: "A.";
  color: #FB0000;
  font-weight: bold;
  font-size: 18px;
  padding-right: 5px;
}

.flowstep {
  display: flex;
  gap: 10px;
  align-items: end;
  margin-top: 50px;
}
.flowstep:first-child {
  margin-top: 0;
}
.flowstep img {
  max-width: 13px;
  height: 33px;
}
.flowstep .step {
  font-weight: bold;
  font-size: calc(7 * (100vw - 2000px) / 1625 + 25px);
  line-height: 1.2;
  margin: 0;
}
.flowstep .step span {
  font-size: 13px;
}

.flowwarp {
  display: flex;
  gap: calc(20 * (100vw - 2000px) / 1625 + 40px);
  align-items: center;
  max-width: 1150px;
  margin: 0 auto;
  margin-top: 30px;
}
.flowwarp img {
  max-width: calc(30 * (100vw - 2000px) / 1625 + 110px);
}
.flowwarp .flowtext .flowtitle {
  font-weight: bold;
  margin-bottom: 0;
  font-size: calc(1 * (100vw - 2000px) / 1625 + 16px);
}
.flowwarp .flowtext .text {
  margin-top: 5px;
}
.flowwarp .flowtext .text span {
  font-size: 14px;
}

.commentwarp {
  margin-bottom: 30px;
}
.commentwarp .commenttitle {
  font-weight: bold;
  margin-bottom: 0;
  font-size: calc(4 * (100vw - 2000px) / 1625 + 18px);
}
.commentwarp .commenttext {
  margin-top: 8px;
  padding-left: 3em;
  text-indent: -1em;
}

.formwarp {
  padding-top: calc(50 * (100vw - 2000px) / 1625 + 150px);
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 100px;
  padding-left: 20px;
  padding-right: 20px;
}
.formwarp .formtitle {
  font-size: calc(10 * (100vw - 2000px) / 1625 + 50px);
  color: #FB0000;
  text-align: center;
  line-height: 1;
}
@media (width <= 768px) {
  .formwarp .formtitle {
    line-height: 0.7;
  }
}
.formwarp .formtitle span {
  font-size: calc(4 * (100vw - 2000px) / 1625 + 18px);
  color: #3F3E3E;
}
.formwarp .formstep {
  height: 120px;
  background: center/contain no-repeat url("../imag/formstep.png");
}
.formwarp:has(.mw_wp_form_confirm) .formstep {
  background-image: url("../imag/formstep2.png");
}
.formwarp:has(.mw_wp_form_complete) .formstep {
  background-image: url("/imag/formstep-complete.png");
}
.formwarp p {
  text-align: center;
  margin-top: 30px;
  margin-bottom: calc(20 * (100vw - 2000px) / 1625 + 50px);
}
.formwarp .p-country-name {
  display: none;
}
.formwarp .forminner .formwarper {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #a5a3a3;
  padding-bottom: 20px;
  padding-top: 20px;
}
@media (width <= 768px) {
  .formwarp .forminner .formwarper {
    flex-direction: column;
    align-items: initial;
    padding-top: 20px;
  }
}
.formwarp .forminner .formwarper p {
  margin: 0;
}
.formwarp .forminner .formwarper .formgrp {
  display: flex;
  max-width: 150px;
  width: 100%;
  flex-shrink: 0;
  text-align: start;
  margin-right: 80px;
}
@media (width <= 768px) {
  .formwarp .forminner .formwarper .formgrp {
    margin-bottom: 10px;
  }
}
.formwarp .forminner .formwarper .formgrp .tag {
  background-color: #FB0000;
  border-radius: 45px;
  color: white;
  max-width: 70px;
  width: 100%;
  flex-shrink: 0;
  margin-right: 30px;
}
.formwarp .forminner .formwarper .formgrp .tagrow {
  background-color: #c4c4c4;
  border-radius: 45px;
  color: white;
  max-width: 70px;
  width: 100%;
  flex-shrink: 0;
  margin-right: 30px;
}
.formwarp .forminner .formwarper .formgrp .none {
  opacity: 0;
}
@media (width <= 768px) {
  .formwarp .forminner .formwarper .formgrp .none {
    display: none;
  }
}
.formwarp .forminner .formwarper .formgrp .formname {
  font-weight: bold;
  flex-shrink: 0;
  text-align: start;
  margin-right: 10px;
}
@media (width <= 768px) {
  .formwarp .forminner .formwarper .formgrp .formname {
    font-size: 14px;
  }
}
.formwarp .forminner .formwarper .center {
  text-align: center;
  margin-right: 0;
}
@media (width <= 768px) {
  .formwarp .forminner .formwarper .center {
    justify-content: flex-start !important;
    padding-top: 10px;
  }
}
@media (width <= 768px) {
  .formwarp .forminner .formwarper .radio {
    flex-direction: column;
  }
}
.formwarp .forminner .formwarper .forms {
  display: flex;
  align-items: baseline;
  gap: 1em;
  flex: 1;
  width: 100%;
}
.formwarp .forminner .formwarper .forms .radios {
  font-size: 14px;
}
.formwarp .forminner .formwarper .forms .input {
  border: 0;
  background-color: #f1eeee;
  width: 100%;
  box-sizing: border-box;
  height: calc(5 * (100vw - 2000px) / 1625 + 40px);
  font-size: 16px;
  text-indent: 1em;
}
.formwarp .forminner .formwarper .forms .half {
  max-width: 40%;
}
@media (width <= 768px) {
  .formwarp .forminner .formwarper .forms .half {
    max-width: 60%;
  }
}
.formwarp .forminner .formwarper .forms .textarea {
  width: 100%;
  height: 150px;
  background-color: #f1eeee;
  border: 0;
  resize: none;
}
.formwarp .forminner .formwarper .forms .mwform-zip-field {
  display: flex;
  align-items: center;
  width: 50%;
}
.formwarp .forminner .none {
  border-bottom: 0;
}
@media (width <= 768px) {
  .formwarp .forminner .none {
    padding-bottom: 0;
  }
}
.formwarp .forminner .top {
  align-items: start;
}
.formwarp .button .a {
  display: block;
  text-align: center;
  padding: 10px 0;
  color: white;
  font-weight: bold;
  max-width: calc(70 * (100vw - 2000px) / 1625 + 320px);
  width: 100%;
  background-color: #FB0000;
  margin: 0 auto;
  margin-top: 50px;
  border: 0;
  font-size: 16px;
  border-radius: 5px;
}

.background {
  background-image: url(../imag/background-img.png);
  background-size: cover;
}
@media (width <= 1200px) {
  .background {
    background-image: none;
  }
}

.policywarp .warp {
  margin-bottom: 30px;
}
.policywarp .warp h2 {
  font-size: 20px;
}

/* ===== モーダル（CSSのみ / :target を利用） ===== */
.c-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
}
.c-modal:target {
  display: flex;
}
.c-modal__content {
  position: relative;
  max-width: min(96vw, 1100px);
  max-height: 90vh;
  display: grid;
  place-items: center;
  border-radius: 10px;
}
.c-modal__content img {
  max-width: 100%;
  max-height: 90vh;
  height: auto;
  width: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.c-modal__overlay {
  position: absolute;
  inset: 0;
}
.c-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  font-size: 26px;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  text-decoration: none;
  z-index: 1;
}

/* サムネイル側 */
.phot__link {
  display: inline-block;
}
.phot__link img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

/* ===== 検索UI & フィルタ結果 ===== */
.product-search {
  margin: 24px 0 16px;
  display: grid;
  gap: 10px;
  /* ラベルは固定幅を解除して、折返し時は上段に */
  /* 555px 以下は 2 列。ボタンの max-width を外して列幅いっぱいに */
}
.product-search__row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.product-search__thickness {
  padding-left: 2px;
}
.product-search .product-search__row > * {
  min-width: 0;
  box-sizing: border-box;
}
@media (max-width: 977px) {
  .product-search .product-search__row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr)); /* 既存に minmax(0,1fr) を付与 */
    gap: 10px;
  }
  .product-search .product-search__row .ps-label {
    grid-column: 1/-1;
    width: auto; /* ← 既存の width:140px を小画面で解除 */
    margin: 0 0 6px;
  }
}
@media (max-width: 555px) {
  .product-search .product-search__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    /* ボタンを列幅いっぱい＆はみ出し防止 */
    /* 入力欄も列幅いっぱいに（必要なら 2 列またぎ） */
  }
  .product-search .product-search__row .ps-label {
    grid-column: 1/-1;
    width: auto;
    margin: 0 0 6px;
  }
  .product-search .product-search__row .ps-btn {
    width: 100%;
    max-width: none !important; /* ← 既存の 150px/250px を無効化 */
    justify-self: stretch;
  }
  .product-search .product-search__row .ps-input {
    width: 100%;
    max-width: none;
    grid-column: 1/-1;
  }
}

.ps-label {
  width: 140px;
  font-weight: 700;
  margin-right: 6px;
}

.ps-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 2px solid #fb0000;
  background: #fff;
  color: #333;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  /* 共通ボタン調整 */
  max-width: 150px;
  width: 100%;
  border: 2px solid gray;
  border-radius: 0px;
  color: #222;
  transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s;
}
.ps-btn:hover {
  background: #fb0000;
  color: #fff;
}
.ps-btn.is-active {
  background: #fb0000;
  color: #fff;
}
.ps-btn--thin {
  border-color: #999;
}
@media (max-width: 555px) {
  .ps-btn {
    max-width: 250px;
  }
}
.ps-btn:hover {
  background: #ffe5e3;
  border-color: #fb0000;
  color: #111;
}
.ps-btn:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(251, 0, 0, 0.25);
}
.ps-btn.is-active, .ps-btn[aria-pressed=true] {
  background: #fb0000;
  border-color: #fb0000;
  color: #fff;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.22), 0 0 0 2px rgba(251, 0, 0, 0.1);
}
.ps-btn.is-inactive {
  opacity: 0.2;
}
.ps-btn--thin {
  border-color: #9aa0a6;
}
.ps-btn--thin:hover {
  background: #f0f3f5;
  border-color: #9aa0a6;
}
.ps-btn--thin.is-active, .ps-btn--thin[aria-pressed=true] {
  background: #fb0000;
  border-color: #fb0000;
  color: #fff;
}
.ps-btn:disabled, .ps-btn[aria-disabled=true] {
  cursor: not-allowed;
  opacity: 0.45;
  background: #f6f7f8;
  border-color: #e5e7eb;
  color: #9aa0a6;
  box-shadow: none;
}

#ps-reset {
  border-color: red;
}

.ps-input {
  min-width: calc(400 * (100vw - 2000px) / 1020 + 600px) !important;
  padding: 8px 10px;
  border: 2px solid #9aa0a6;
  border-radius: 2px;
  outline: none;
}
.ps-input:focus {
  border-color: #fb0000;
}

/* 件数表示 */
.ps-result {
  margin: 8px 0 14px;
  font-weight: 700;
  color: #333;
  border-bottom: 1px solid black;
  padding-bottom: 20px;
}

/* 該当ゼロのメッセージ */
.ps-empty {
  margin: 10px 0;
  padding: 12px;
  background: #fff4f4;
  border: 1px solid #f5c2c2;
  border-radius: 8px;
  display: none;
}
.ps-empty.is-show {
  display: block;
}

/* マッチしないカードを隠す */
.materialwarp.is-hidden {
  display: none;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
}
.materialwarp.is-focus {
  animation: twinkle 1.2s ease;
}

@keyframes twinkle {
  0% {
    box-shadow: 0 0 0 0 rgba(251, 0, 0, 0);
  }
  20% {
    box-shadow: 0 0 0 6px rgba(251, 0, 0, 0.15);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(251, 0, 0, 0);
  }
}
.materialwarp[hidden] {
  display: none !important;
}

.materialwarp {
  scroll-margin-top: 150px;
}

.btn-download {
  color: blue;
  border-bottom: 1px solid blue;
}/*# sourceMappingURL=style.css.map */