@charset "UTF-8";
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  letter-spacing: 0.05em;
}

a {
  cursor: pointer;
  color: inherit;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

div:has(> .wp-block-column-vk-link, > .wp-block-group-vk-link) {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

div:has(> .wp-block-column-vk-link, > .wp-block-group-vk-link):hover {
  opacity: 0.8;
}

@media screen and (max-width: 767.9px) {
  .header__main.wp-block-group {
    padding-bottom: 16px !important;
  }
}

.wp-block-template-part:has(.header__fixed) {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  margin-top: 0;
  translate: 0 -101%;
  -webkit-transition: translate 0.3s ease;
  transition: translate 0.3s ease;
}
.wp-block-template-part:has(.header__fixed) .header__top {
  display: none;
}
@media screen and (max-width: 767.9px) {
  .wp-block-template-part:has(.header__fixed) .header__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.wp-block-template-part:has(.header__fixed).is-active {
  translate: 0 0; /* 表示する */
}

.header__inner.wp-block-group {
  display: grid;
  gap: 19px;
}
@media screen and (max-width: 767.9px) {
  .header__inner.wp-block-group {
    grid-template-columns: auto auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
    padding-inline: 0 !important;
  }
}

.header__top.wp-block-group {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
  width: 100%;
  white-space: nowrap;
}
@media screen and (max-width: 767.9px) {
  .header__top.wp-block-group {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

@media screen and (max-width: 767.9px) {
  p.header__logo-middle {
    font-size: 11px !important;
  }
}

@media screen and (max-width: 767.9px) {
  p.header__logo-small {
    font-size: 9px !important;
  }
}

@media screen and (max-width: 767.9px) {
  form.header__search {
    display: none;
  }
}

.header__search input {
  clip-path: inset(0 0 0 100%);
  -webkit-transition: clip-path 0.3s ease-in;
  transition: clip-path 0.3s ease-in;
}

.header__search button {
  margin-left: 0;
  background-color: transparent;
  scale: -1 1;
}

.header__search:hover input,
.header__search:focus-within input {
  clip-path: inset(0 0 0 0);
}

nav.header__nav {
  width: 100%;
}

ul.header__nav.wp-block-navigation {
  width: 100%;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}

ul.header__nav.wp-block-navigation::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50%;
  width: 100vw;
  height: 1px;
  background-color: #fff;
}

li.header__nav-item a {
  width: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: 21px;
  padding-inline: 8px;
  position: relative;
  white-space: nowrap;
}

li.header__nav-item a::after {
  content: "";
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  translate: 0 -50%;
  scale: 0 1;
  height: 3px;
  background-color: #fff;
  -webkit-transition: scale 0.3s ease;
  transition: scale 0.3s ease;
}

li.header__nav-item a:hover::after {
  scale: 1 1;
}

li.header__nav-item.current-menu-item a::after {
  scale: 1 1;
}

/* デフォルトのブレークポイント無効化. */
@media (min-width: 600px) {
  /* メニューを非表示. */
  .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
    display: none;
  }
  /* Openボタン（ハンバーガーボタン）を表示. */
  .wp-block-navigation__responsive-container-open:not(.always-shown) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
/* 新しいブレークポイント設定. */
@media (min-width: 768px) { /* ※ここの数値を設定したい値に変更する. */
  /* メニューを表示. */
  .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
    background-color: inherit;
    display: block;
    position: relative;
    width: 100%;
    z-index: auto;
  }
  /* Openボタン（ハンバーガーボタン）を非表示. */
  .wp-block-navigation__responsive-container-open:not(.always-shown) {
    display: none;
  }
}
/* --------------------------------------------------
   カラムブロックのブレークポイント調整
   (例: 768pxを境界にする)
-------------------------------------------------- */
/* 【スマホ・タブレット縦】767px以下なら「強制的に縦積み」 */
@media (max-width: 767.9px) {
  /* 親枠：折り返しを許可 */
  .wp-block-columns:not(.is-not-stacked-on-mobile) {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  /* 子要素：幅を100%にして、横のマージンを消す */
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    -ms-flex-preferred-size: 100% !important;
        flex-basis: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    /* 縦積み時の上下の余白（お好みで調整） */
    margin-bottom: 2em;
  }
  /* 最後の要素だけ下の余白を消す */
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column:last-child {
    margin-bottom: 0;
  }
}
/* 【PC・タブレット横】768px以上なら「強制的に横並び」 */
@media (min-width: 768px) {
  /* 親枠：折り返しを禁止（横並び維持） */
  .wp-block-columns:not(.is-not-stacked-on-mobile) {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  /* 子要素：WordPress標準の幅計算を優先するため、あえて指定しない
     (flex-basisなどはWPがインラインスタイルで入れているため触らなくてOK) 
  */
}
/* モーダルが開いたときの設定 */
.wp-block-navigation__responsive-container.is-menu-open {
  position: fixed !important; /* 親のヘッダーに関係なく画面基準にする */
  top: 0 !important; /* 画面の一番上から開始 */
  left: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  z-index: 9999 !important; /* ヘッダーよりも確実に上に表示 */
  padding-left: 0;
}

@media screen and (max-width: 767.9px) {
  .wp-block-navigation__responsive-container-close {
    top: 24px;
    right: 24px;
  }
}

footer {
  margin-top: 0;
}

@media screen and (max-width: 767.9px) {
  .footer__logo {
    text-align: center;
  }
}

@media screen and (max-width: 767.9px) {
  .footer__logo img {
    width: 69.7674418605% !important;
    height: auto;
    aspect-ratio: 295/69;
  }
}

.footer__link--wrapper.wp-block-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 18px;
}
@media screen and (max-width: 767.9px) {
  .footer__link--wrapper.wp-block-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer__link-item a {
  text-decoration: none;
  display: block;
  padding-left: 30px;
  position: relative;
}

.footer__link-item a::before {
  content: "";
  width: 10px;
  height: 8px;
  position: absolute;
  left: 0;
  top: 0.5lh;
  translate: 0 -50%;
  background: url("../img/icon_triangle.svg") no-repeat center center/contain;
}

@media screen and (max-width: 767.9px) {
  .lower__title {
    font-size: 20px !important;
  }
}

.lower__container.wp-block-column {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767.9px) {
  .lower__container.wp-block-column {
    padding-inline: 0 !important;
  }
}

.lower__container.wp-block-column::after {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  width: 50vw;
  height: 100%;
  background-color: #fff;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .lower__container.wp-block-column::after {
    width: 110vw;
    translate: -50%;
  }
}

.lower__menu.wp-block-group {
  position: sticky;
  top: 140px !important;
  z-index: 1 !important;
}
@media screen and (max-width: 767.9px) {
  .lower__menu.wp-block-group {
    margin-top: 40px !important;
  }
}

@media screen and (max-width: 767.9px) {
  .top-news {
    padding-top: 61px !important;
    padding-bottom: 112px !important;
  }
}

.news__container.wp-block-query {
  margin-top: 0;
}

.news__container.wp-block-query > .wp-block-group {
  border-radius: 0 0 30px 30px;
}

.news__inner.wp-block-post-template {
  max-height: 512px;
  overflow-y: scroll;
}

.news__btn.wp-block-group {
  max-width: 445px;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .news__btn.wp-block-group {
    max-width: 289px;
  }
}

.fv {
  overflow-x: hidden;
}
@media screen and (max-width: 767.9px) {
  .fv {
    padding-top: 70px !important;
    padding-bottom: 40px !important;
  }
}

@media screen and (max-width: 767.9px) {
  .fv__main.wp-block-columns {
    padding-left: 0px !important;
  }
  .fv__main.wp-block-columns > .wp-block-column:has(.fv__text--wrapper) {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767.9px) {
  .fv__text--wrapper {
    gap: 18px !important;
    padding-top: 0 !important;
  }
}

@media screen and (max-width: 767.9px) {
  .fv__main-text {
    width: 82.5581395349%;
  }
}

@media screen and (max-width: 767.9px) {
  p.fv__sub-text {
    display: none !important;
  }
}

p.fv__sub-text--sp {
  font-size: 22px !important;
}
@media screen and (min-width: 1024px) {
  p.fv__sub-text--sp {
    display: none !important;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1023.9px) {
  p.fv__sub-text--sp {
    display: none !important;
  }
}

@media screen and (max-width: 767.9px) {
  .fv__img {
    width: 118.6046511628%;
    position: relative;
    left: 50%;
    translate: -50% 0;
  }
}

@media screen and (max-width: 767.9px) {
  .top-search__wrapper {
    margin-top: 0 !important;
    padding-block: 12px !important;
  }
}

@media screen and (max-width: 767.9px) {
  .top-search .wp-block-search__inside-wrapper {
    width: 100% !important;
  }
}

.top-search input {
  border: none;
  border-radius: 29px 0 0 29px;
  padding-left: 70px;
  background-image: url("../img/icon_search_gray.svg");
  background-repeat: no-repeat;
  background-position: 24px center;
  background-size: 30px 30px;
}
@media screen and (max-width: 767.9px) {
  .top-search input {
    font-size: 12px;
    padding-left: 45px;
    background-position: 17px center;
    background-size: 20px 20px;
  }
}

.top-search button {
  margin-left: 0;
  padding-inline: 68px;
  background-color: #4067D2;
  border-radius: 0 29px 29px 0;
}
@media screen and (max-width: 767.9px) {
  .top-search button {
    font-size: 14px;
    padding-inline: 23px;
  }
}

@media screen and (max-width: 767.9px) {
  .top-company {
    padding-top: 44px !important;
  }
}

.company__link-item {
  width: 100%;
}

.company__link-item a {
  text-decoration: none;
  display: block;
  padding: 19px 23px 18px;
}

@media screen and (max-width: 767.9px) {
  .company__history-head.wp-block-column {
    -ms-flex-preferred-size: 76px !important;
        flex-basis: 76px !important;
    padding-right: 21px;
  }
}

@media screen and (max-width: 767.9px) {
  .company__grid.wp-block-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767.9px) {
  .company__map iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 393/295;
  }
}

.supplier__list-items.wp-block-group {
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media screen and (max-width: 767.9px) {
  .supplier__list-items.wp-block-group {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}

.supplier__list-items.wp-block-group p {
  padding-left: 20px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .supplier__list-items.wp-block-group p {
    font-size: 12px;
  }
}

.supplier__list-items.wp-block-group p::before {
  position: absolute;
  content: "";
  top: 0.5lh;
  translate: 0 -50%;
  left: 0;
  width: 12px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #4A4A4A;
}

.supplier__head {
  row-gap: 9px !important;
}
@media screen and (max-width: 767.9px) {
  .supplier__head {
    row-gap: 5px !important;
  }
}

@media screen and (max-width: 767.9px) {
  .supplier__head p {
    font-size: 12px !important;
    padding-inline: 4px !important;
  }
}

@media screen and (max-width: 767.9px) {
  .supplier__list-img figure {
    float: initial !important;
    margin-inline: auto !important;
  }
}

.contact__list {
  display: grid;
  margin-top: 35.5px;
}
@media screen and (max-width: 767.9px) {
  .contact__list {
    margin-top: 10px;
  }
}

.contact__list-item {
  display: grid;
  grid-template-columns: 263px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 20px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .contact__list-item {
    grid-template-columns: initial;
    gap: 20px;
    padding-block: 23px;
  }
}

.contact__list-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #DBDBDB;
  z-index: 1;
}
@media screen and (max-width: 767.9px) {
  .contact__list-item::before {
    height: 1px;
  }
}

.contact__list-item::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 263px;
  height: 2px;
  background-color: #68D5EE;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .contact__list-item::after {
    height: 1px;
    width: 76px;
  }
}

.contact__list-head {
  font-size: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  font-weight: 600;
}
@media screen and (max-width: 767.9px) {
  .contact__list-head {
    font-size: 16px;
  }
}

.contact__list-head .is-required::after {
  position: absolute;
  content: "必須";
  font-size: 18px;
  color: #fff;
  top: 50%;
  right: -15px;
  translate: 100% -50%;
  background-color: #4067D2;
  padding: 6px 20px 5px;
  font-size: 18px;
  white-space: nowrap;
  border-radius: 18px;
  font-weight: 700;
  line-height: 1.3333333333;
}
@media screen and (max-width: 767.9px) {
  .contact__list-head .is-required::after {
    font-size: 13px;
    padding-inline: 16px;
  }
}

.contact__list-body {
  margin-left: 51px;
}
@media screen and (max-width: 767.9px) {
  .contact__list-body {
    margin-left: 0;
  }
}

.contact__list-body input {
  font-size: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 24px;
  background-color: #F4F4F4;
  border: none;
  border-radius: 24px;
}
@media screen and (max-width: 767.9px) {
  .contact__list-body input {
    font-size: 16px;
    padding-block: 15px;
  }
}

.contact__input--text,
.contact__input--mail {
  width: 100%;
}

.contact__input--zipcode,
.contact__input--tel {
  width: 251px;
}
@media screen and (max-width: 767.9px) {
  .contact__input--zipcode,
  .contact__input--tel {
    width: 283px;
  }
}

.contact__input--textarea {
  width: 100%;
  height: 172px;
  background-color: #F4F4F4;
  border: none;
  border-radius: 24px;
  padding: 10px 24px;
  font-size: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767.9px) {
  .contact__input--textarea {
    font-size: 16px;
    height: 178px;
    padding-block: 15px;
  }
}

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

.contact__list-body .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18.75%;
}
@media screen and (max-width: 767.9px) {
  .contact__list-body .wpcf7-radio {
    gap: 9.4147582697%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.contact__list-body .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 29px;
}
@media screen and (max-width: 767.9px) {
  .contact__list-body .wpcf7-list-item label {
    gap: 20px;
  }
}

.contact__list-body input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  margin: 0;
  padding: 0;
  width: 47px;
  height: auto;
  aspect-ratio: 1;
  background-color: #F4F4F4;
  border-radius: 11px;
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .contact__list-body input[type=radio] {
    width: 32px;
  }
}

.contact__list-body input[type=radio]:checked {
  background-color: #F4F4F4;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FE66CB' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='20 6 9 17 4 12'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}

.contact__list-body input[type=radio]:focus-visible {
  outline: 2px solid #333;
  outline-offset: 2px;
}

.contact__input--select {
  width: 251px;
  padding: 12px 16px;
  border: none;
  border-radius: 24px;
  background-color: #F4F4F4;
  font-size: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 14px;
}
@media screen and (max-width: 767.9px) {
  .contact__input--select {
    width: 283px;
    font-size: 16px;
  }
}

.contact__btn--wrapper {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 39.3805309735% 39.3805309735%;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .contact__btn--wrapper {
    grid-template-columns: initial;
    margin-top: 52px;
    margin-bottom: 70px;
    gap: 16px;
  }
}
.contact__btn--wrapper .wpcf7-spinner {
  position: absolute;
  bottom: -20px;
  left: 50%;
  translate: -50% 0;
}

.contact__btn {
  padding: 26px;
  border-radius: 39px;
  font-size: 22px;
  font-weight: 300;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  border: none;
  line-height: 1.2272727273;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .contact__btn {
    width: 289px;
    padding: 16px;
    font-size: 14px;
  }
}

.contact__btn:hover {
  opacity: 0.8;
}

.contact__submit {
  background-color: #4067D2;
}

.contact__reset {
  background-color: #C2C2C2;
}

/* スクリーンリーダー用テキストの非表示設定 */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.js-tab-content {
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.js-tab-content.is-active {
  display: block;
  opacity: 1;
}

.editor-styles-wrapper .js-tab-content {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}