@charset "utf-8";
/*
Theme Name: タムテック
Author: BASARA
Version: 1.0
*/

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  backface-visibility: hidden;
}
*:before,
*:after {
  pointer-events: none;
}
:root {
  --color-font: #343434;
  --color-main: #61c1be;
  --color-yellow: #e8c800;
  --color-blue: #036eb8;
  --color-light-blue: #2ea7e0;
  --color-pink: #e61673;
  --color-brown: #a48b78;
  --color-emerald: #00aebb;
  --color-attention: crimson;
  --color-gray: #898989;
  --width-small: 800px;
  --width-main: 1200px;
  --width-large: 1680px;
  --weight-thin: 300;
  --weight-normal: 400;
  --weight-semibold: 500;
  --weight-bold: 600;
  --weight-black: 900;
}
html {
  margin: 0;
  padding: 0;
  scroll-padding-top: 125px; /* 固定ヘッダーの高さ分などを指定 */
}
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  color: var(--color-font);
  font-size: clamp(1rem, calc(0.895rem + 0.449vw), 1.125rem); /* min: 16px, max: 18px */
  font-weight: var(--weight-normal);
  line-height: 1.8;
  background: #f4f4f4;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
  margin: 0;
  padding: 0;
}
div,
p,
ul,
ul li,
dl,
dt,
dd,
address {
  font-size: 1em;
  font-style: normal;
  list-style: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img,
video,
object {
  max-width: 100%;
  height: auto;
  border: none;
}
img {
  display: block;
  image-rendering: -webkit-optimize-contrast;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
  line-height: 1;
  letter-spacing: 0.025em;
  padding: 0;
  margin: 0;
}
a {
  color: var(--color-link);
  text-decoration: none;
  transition: all ease 0.3s;
}
a:hover {
  opacity: 0.8;
  text-decoration: underline;
}
a[href^="tel:"] {
  text-decoration: none;
  pointer-events: none;
  text-emphasis: none !important;
}
a[href^="fax:"] {
  text-decoration: none;
  pointer-events: none;
}
.pc {
  display: inherit;
}
.tb {
  display: none;
}
.mb {
  display: none;
}
@media only screen and (max-width: 820px) {
  html {
    scroll-padding-top: 90px;
  }
  .pc {
    display: none;
  }
  .tb {
    display: block;
  }
  .mb {
    display: none;
  }
}
@media only screen and (max-width: 468px) {
  body {
    font-size: 15px;
    min-width: 375px;
  }
  a[href^="tel:"] {
    pointer-events: all;
  }
  .pc {
    display: none;
  }
  .tb {
    display: none;
  }
  .mb {
    display: block;
  }
}

/* =========================================================================================
Header
=========================================================================================*/
#header {
  width: 100%;
  height: 100px;
  background: #fff;
  padding: 0;
  margin: 0;
  position: fixed;
  top: 0;
  z-index: 100;
  transition: 0.5s;
}
#header .inner {
  width: calc(100% - 20px - 20px);
  max-width: var(--width-large);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 20px;
  padding: 0;
  position: relative;
}
#header .logo {
  line-height: 1;
  letter-spacing: 0;
  width: 30%;
  max-width: 200px;
}
#header .logo p {
  color: #3e3a39;
  font-size: clamp(0.75rem, calc(0.573rem + 0.345vw), 0.875rem); /* min: 12px, max: 14px */
  font-weight: var(--weight-bold);
  white-space: nowrap;
  margin-bottom: 0.75em;
}

/*globalnavi*/
#header #g-navi-area {
  width: 100%;
  height: 100%;
}
#header #g-navi-list {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: right;
}
#header #g-navi {
  width: 100%;
}
#header #g-navi > ul {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: right;
  gap: 15px 0.75em;
}
#header #g-navi > ul li {
  font-weight: var(--weight-bold);
}
#header #g-navi > ul li a {
  color: var(--color-link);
  font-size: clamp(0.875rem, calc(-0.239rem + 1.818vw), 1.125rem); /* min: 14px, max: 18px */
  text-align: center;
  white-space: nowrap;
  line-height: initial;
  display: block;
  min-width: 100px;
  background: #e6f4fd;
  padding: 0.375em 0.75em;
}
#header #g-navi > ul li:nth-of-type(even) a {
  background: #d3edfb;
}
#header #g-navi > ul li a:hover {
  color: #fff;
  background: var(--color-blue);
  text-decoration: none;
}
/*ドロップダウン*/
#header #g-navi ul li.has-child {
  position: relative;
}
/*hoverしたら表示*/
#header #g-navi ul li.has-child:hover > ul,
#header #g-navi ul li.has-child ul li:hover > ul,
#header #g-navi ul li.has-child:active > ul,
#header #g-navi ul li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}
/*2階層目以降*/
#header #g-navi ul ul {
  display: block;
  background: #fff;
  border-top: 2px solid var(--color-blue);
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
  /*アニメーション設定*/
  transition: 0.3s;
}
#header #g-navi ul ul li + li {
  border-top: 1px solid var(--color-gray);
}
#header #g-navi ul ul li a {
  color: var(--color-font);
  font-weight: var(--weight-normal);
  min-width: auto;
  background: #fff !important;
  padding: 0.25em 1em;
}
#header #g-navi ul ul li a:hover {
  color: var(--color-blue);
  background: #d4ecea !important;
  opacity: 1;
}
/* SNSアイコン */
#header ul.sns {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 10px;
}
#header ul.sns li {
  width: 40px;
  height: auto;
}
/* display */
#header .g-navi-logo,
#header .openbtn,
#header #g-navi-sp {
  display: none; /*PCでは非表示*/
}
@media only screen and (max-width: 1200px) {
  #header #g-navi > ul li a {
    min-width: 3.5em;
  }
}
@media only screen and (max-width: 980px) {
  #header {
    height: 65px;
    padding: 0;
  }
  #header .inner {
    justify-content: space-between;
    padding-right: 50px;
  }
  #header .logo {
    width: 110px;
  }
  /* HAMBURGER MENU -------------------------------------------------*/
  #header .openbtn {
    color: #fff;
    font-size: 12px;
    line-height: 1;
    width: 65px;
    height: 65px;
    background: var(--color-blue);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding-top: 2px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    transition: 0.3s;
  }
  #header .openbtn span {
    width: 50%;
    height: 2px;
    background: #fff;
    border-radius: 10px;
    transform-origin: 50% 40%;
    transition: 0.5s;
  }
  #header .openbtn.active {
    background: var(--color-blue);
    gap: 0;
    padding-top: 12px;
  }
  #header .openbtn.active span:nth-of-type(1) {
    display: none;
  }
  #header .openbtn.active span:nth-of-type(2) {
    width: 55%;
    transform: rotate(32.5deg);
  }
  #header .openbtn.active span:nth-of-type(3) {
    width: 55%;
    transform: rotate(-32.5deg) translateY(-2px);
    margin-bottom: 15px;
  }
  #header #g-navi-area {
    width: 350px !important;
    height: 100vh;
    background: var(--color-blue);
    border-radius: 0;
    display: initial;
    padding: 0;
    position: fixed;
    z-index: 99;
    top: 0;
    right: -120%;
    transition: all 0.5s;
  }
  #header #g-navi-area.panelactive {
    /*アクティブクラスがついたら位置を0に*/
    right: 0;
  }
  #header #g-navi-area #g-navi-list {
    /*ナビの数が増えた場合縦スクロール*/
    width: 100%;
    height: 100vh;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 5vh;
    padding: 100px 25px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    z-index: 999;
  }
  #header #g-navi-area #g-navi-list .g-navi-logo {
    display: inline-block;
    width: 100%;
  }
  #header .g-navi-logo a:hover {
    text-decoration: none;
  }
  #header .g-navi-logo a p {
    color: #ffffff;
    font-size: clamp(0.75rem, calc(0.573rem + 0.345vw), 0.875rem); /* min: 12px, max: 14px */
    font-weight: var(--weight-bold);
    white-space: nowrap;
    margin-bottom: 0.75em;
  }

  /*globalnavi ----------------------------------------------------------*/
  #header #g-navi-area {
    width: 350px !important;
    height: 100vh;
    background: var(--color-blue);
    border-radius: 0;
    display: initial;
    padding: 0;
    position: fixed;
    z-index: 99;
    top: 65px;
    right: -120%;
    transition: all 0.5s;
  }
  #header #g-navi-area.panelactive {
    /*アクティブクラスがついたら位置を0に*/
    right: 0;
  }
  #header #g-navi-area #g-navi-list {
    /*ナビの数が増えた場合縦スクロール*/
    width: 100%;
    height: calc(100vh - 70px);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 5vh;
    padding: 30px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    z-index: 999;
  }
  /* #g-navi */
  #header #g-navi {
    height: auto;
    align-items: start;
  }
  #header #g-navi ul {
    width: 100%;
    flex-direction: column;
    align-items: start;
    justify-content: left;
    padding: 0;
    margin: auto;
    position: relative;
    z-index: 999;
    gap: 1em;
  }
  #header #g-navi ul li {
    font-size: 1.25em;
    text-align: left;
    font-weight: var(--weight-bold);
    width: 100%;
  }
  #header #g-navi ul li a {
    color: var(--color-blue);
    background: #fff;
    border: none;
    padding: 0.5em 1em;
  }
  #header #g-navi ul li a:hover {
    background: rgba(255, 255, 255, 0.7);
    opacity: 1;
  }
  /*2階層目以降*/
  #header #g-navi ul ul {
    line-height: 1.4;
    position: static;
    transform: none;
    border-radius: 0;
    width: 100%;
    min-width: auto;
    /*表示*/
    display: none; /* JSのslideToggleで制御するため、初期状態は非表示にする */
    visibility: visible; /* visibilityでの制御を解除 */
    opacity: 1;
    /* 重要：JSの動きと干渉させないために transition をオフにする */
    transition: none !important;
  }
  /* 親メニューの矢印アイコンの挙動を調整 */
  #header #g-navi ul li.has-child::before,
  #header #g-navi ul li.has-child::after {
    content: "";
    width: 0.75em;
    height: 2px;
    background: var(--color-blue);
    mask: none !important;
    position: absolute;
    top: 0.75em;
    right: 0.25em;
    z-index: 1;
    object-position: center;
    transition: transform 0.3s; /* 矢印の回転だけはCSSでOK */
  }
  #header #g-navi ul li.has-child::after {
    transform: rotate(90deg); /* 開いた時に矢印を回す */
  }
  #header #g-navi ul li.has-child.active::after {
    transform: rotate(180deg); /* 開いた時に矢印を回す */
  }
  #header #g-navi ul ul li + li {
    border-top: 1px solid var(--color-gray);
  }
  #header #g-navi ul ul li a,
  #header #g-navi ul ul li span {
    display: block;
    padding: 0.5em;
  }
  /* #g-navi-sp */
  #header #g-navi-sp {
    display: block;
    width: 100%;
  }
  #header #g-navi-sp ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5em 1.5em;
    margin: auto;
  }
  #header #g-navi-sp ul li {
    font-size: 1rem;
    position: relative;
  }
  #header #g-navi-sp ul li a {
    color: #fff;
  }
  /* SNSアイコン */
  #header ul.sns {
    gap: 12px;
    margin-right: 10px;
  }
  #header ul.sns li {
    width: 35px;
  }
}
@media only screen and (max-width: 468px) {
  #header .site-title {
    margin-left: 10px;
  }
  #header #g-navi-area {
    width: 100% !important;
    right: -150%;
  }
  #header #g-navi-area #g-navi-list {
    min-width: 375px;
  }
}

/* =========================================================================================
Footer
=========================================================================================*/
#footer {
  padding-block: 20px 20px;
}
#footer .inner {
}
/* info */
#footer .info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
#footer .info .logo {
  width: clamp(12.5rem, calc(7.002rem + 18.797vw), 18.75rem); /* min: 200px, max: 300px */
}
#footer .info .logo img {
  width: 100%;
  max-width: 300px;
  margin: auto;
}
#footer .info address p {
  line-height: 1.4;
  display: flex;
  flex-wrap: wrap;
  gap: 0 1em;
}
#footer .info .copyright {
  display: block;
  margin-top: 0.25em;
}
@media only screen and (max-width: 820px) {
  #footer .inner {
    grid-template-columns: auto;
    gap: 50px;
  }
  #footer .info {
    width: fit-content;
    display: block;
    margin-inline: auto;
  }
  #footer .info .logo {
    width: 100%;
  }
  #footer .info address {
    margin-top: 20px;
    font-size: var(--font-size-small);
  }
  #footer .info address p {
    justify-content: center;
  }
  #footer .info .copyright {
    text-align: center;
    margin-top: 10px;
    font-size: 0.6875rem;
  }
}
@media only screen and (max-width: 468px) {
}

/* =========================================================================================
Page Top
=========================================================================================*/
#page-top {
  display: none; /*最初は非表示*/
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
#page-top a {
  color: rgba(0, 0, 0, 0);
  line-height: 1;
  text-decoration: none;
  font-weight: var(--weight-bold);
  text-indent: -9999px;
  width: 60px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-blue);
  position: relative;
  border-radius: 5px;
  box-sizing: border-box;
}
#page-top a:before,
#page-top a::after {
  content: "";
  width: 4px;
  height: 20px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: calc(50% - 2.5px);
  transform-origin: 50% 1.5px;
  translate: 0 -40%;
  transition: 0.3s;
}
#page-top a::before {
  transform: rotate(45deg);
}
#page-top a::after {
  transform: rotate(-45deg);
}
#page-top a:hover::before,
#page-top a:hover::after {
  background-color: var(--color-blue);
}
#page-top a:hover {
  background: #fff;
  opacity: 1;
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
  #page-top a {
    width: 40px;
  }
  #page-top a:before,
  #page-top a::after {
    height: 13px;
  }
}

/* =========================================================================================
Layout
=========================================================================================*/
#wrapper {
  padding: 0;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
#contents {
  padding-block: 100px 0;
  margin: 0 auto;
  position: relative;
}
#main {
  margin: 0;
  padding: 0;
}
section {
  position: relative;
  padding-block: 100px;
  margin: 0;
}
.inner {
  max-width: var(--width-main);
  width: calc(100% - 40px - 40px); /*左右の余白40pxずつ*/
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 980px) {
  #contents {
    padding-block: 65px 0;
  }
}
@media only screen and (max-width: 820px) {
  section {
    padding-block: 60px;
  }
  .inner {
    width: calc(100% - 30px - 30px);
  }
}
@media only screen and (max-width: 468px) {
  section {
    padding-block: 35px;
  }
  .inner {
    width: calc(100% - 20px - 20px);
  }
}

/*font*/
.mincho {
  font-family: "Shippori Mincho B1", serif;
}
/* =========================================================================================
Btn / WP-block-button
=========================================================================================*/
.btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0;
}
.wp-block-buttons {
  display: flex;
  align-items: stretch;
}
.btn a,
.wp-block-button a {
  color: #fff;
  font-weight: var(--weight-bold);
  text-align: center;
  background: var(--color-main);
  border: 1px solid var(--color-main);
  border-radius: 100px;
  position: relative;
  transition: 0.3s;
}
.btn a {
  min-width: 200px;
  padding: 0.375em 2em 0.35em 1.25em;
}
.wp-block-button a {
  height: 100%;
  min-width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em 2.5em 0.5em 1.25em;
}
.btn a::after,
.wp-block-button a::after {
  content: "";
  background: #fff;
  width: 1.25em;
  aspect-ratio: 1 / 1;
  position: absolute;
  right: 0.75em;
  top: 50%;
  translate: 0 -50%;
  z-index: 1;
  -webkit-mask-image: url(assets/images/common/arrow_mask.svg);
  mask-image: url(assets/images/common/arrow_mask.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: 0.3s;
}
.btn a:hover,
.wp-block-button a:hover {
  color: var(--color-main);
  background-color: #fff;
  text-decoration: none;
  opacity: 1;
}
.btn a:hover::after,
.wp-block-button a:hover::after {
  background: var(--color-main);
}

/*color-white*/
.btn a.white {
  color: var(--color-font);
  background-color: #fff;
}
.btn a.white:hover {
  color: #fff;
  background-color: var(--color-font);
  border-color: #fff;
}
.btn a.white::after {
  background: var(--color-font);
}
.btn a.white:hover:after {
  background: #fff;
}

/*color-contact*/
.btn a.contact span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
.btn a.contact span::before /*アイコン表示*/ {
  content: "";
  width: 1.5em;
  aspect-ratio: 35 / 24;
  background: url(assets/images/common/icon_mail.svg) no-repeat center;
  background-size: contain;
  display: block;
}
.btn a.contact::after {
  display: none;
}

/*size*/
.btn a.large {
  font-size: clamp(1.25rem, calc(0.829rem + 1.798vw), 1.75rem); /* min: 20px, max: 28px */
  font-weight: var(--weight-bold);
  min-width: 600px;
}

/*wp-block-button*/
.wp-block-buttons + .wp-block-buttons {
  margin-top: 0.5em;
}

@media only screen and (max-width: 820px) {
  .btn a.large {
    min-width: 100%;
  }
}
@media only screen and (max-width: 468px) {
  .btn {
    justify-content: center !important;
  }
  .btn a {
    min-width: 80% !important;
  }
}

/* =========================================================================================
Breadcrumbs
=========================================================================================*/
.breadcrumbs {
  color: var(--color-font);
  text-align: left;
  line-height: 1.4;
  padding-block: 10px;
}
.breadcrumbs a {
  color: var(--color-font);
  padding-right: 1.5em;
  position: relative;
}
.breadcrumbs a.home {
  padding-left: 1.5em;
}
.breadcrumbs a.home::before {
  content: "";
  width: 1em;
  aspect-ratio: 1 / 1;
  background: url(assets/images/common/icon_home.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -40%;
}
.breadcrumbs a::after {
  content: "";
  width: 0.75em;
  aspect-ratio: 1 /1;
  background: url(assets/images/common/arrow.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0.2em;
  translate: 0 -40%;
}
@media only screen and (max-width: 820px) {
  .breadcrumbs {
    font-size: 0.9rem;
  }
}
@media only screen and (max-width: 468px) {
  .breadcrumbs {
    font-size: 0.8rem;
  }
}

/* =========================================================================================
Post list
=========================================================================================*/
/*common*/
.post-list {
  width: 100%;
  margin: 0;
  padding: 0;
}
.post-list ul {
  width: 100%;
  margin: 0;
  padding: 0;
}
.post-list ul a {
  color: var(--color-font);
  display: inline-block;
}
.post-list ul a:hover {
  text-decoration: none;
}
.post-list ul li {
  width: 100%;
}
.post-list .no-post {
  text-align: center;
  display: block;
  padding: 5vh 1em;
}

/*column*/
.post-list.column ul {
  margin-bottom: 20px;
}
.post-list.column ul li {
  line-height: 1.5;
  background-image: radial-gradient(circle, var(--color-font) 1px, transparent 1px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 8px 2px;
  padding: 0.75em 0;
}
.post-list.column ul li:last-child {
  border-bottom: none;
}
.post-list.column ul li article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  justify-content: left;
  gap: 0 1em;
}
.post-list.column .date {
  color: var(--color-font);
  line-height: 1.4;
}
.post-list.column .title {
  font-weight: var(--weight-normal);
  line-height: 1.4;
}
@media only screen and (max-width: 820px) {
  .post-list.column ul li article {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
  .post-list.column .date {
    width: auto !important;
  }
  .post-list.column .title {
    width: 100% !important;
  }
}
@media only screen and (max-width: 468px) {
}

/* row */
.post-list.row ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 100px 7.5%;
  margin-bottom: 50px;
}
.post-list.row li {
  position: relative;
  z-index: 1;
}
.post-list.row li:only-child {
  max-width: 380px;
}

.post-list.row li article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 0.25em;
}
.post-list.row li article a {
  display: block;
}
.post-list.row .thumbnail img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 2 / 1;
}
.post-list.row .thumbnail .new {
  color: #fff;
  font-size: small;
  background: var(--color-main);
  padding: 2px 10px 0;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
}
.post-list.row .date {
  width: 100%;
}
.post-list.row .cat {
  font-size: 0.8rem;
  width: fit-content;
  height: auto;
}
.post-list.row .cat a {
  text-align: center;
  display: block;
  background: var(--color-gray);
  padding: 0.25em 0.65em 0.25em 0.5em;
}
.post-list.row .title {
  font-size: 1.25em;
  font-weight: var(--weight-bold);
  line-height: 1.5;
}

@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
  .post-list.row ul {
    grid-template-columns: auto;
  }
}

/* =========================================================================================
Archive-Page
=========================================================================================*/
.post-content {
  padding-block: 50px;
}
.post-content section {
  padding-top: 25px;
}
.post-content .post-list {
  border-top: none;
  border-bottom: none;
  padding: 0;
}
@media only screen and (max-width: 820px) {
  .post-content {
    padding-block: 25px;
  }
}
@media only screen and (max-width: 468px) {
  .post-content {
    padding-block: 20px;
  }
}

/*pagination*/
.pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-block: 25px;
}
.pagination .page-numbers li {
  margin: 0;
}
.pagination .page-numbers li::before {
  display: none;
}
.pagination .page-numbers li:first-child {
  flex-grow: 2;
}
.pagination .page-numbers li:first-child span {
  float: right;
}
.pagination .page-numbers li:first-child a {
  float: none;
}
.pagination .page-numbers li:last-child {
  flex-grow: 2;
}
.pagination .page-numbers li:last-child a {
  float: right;
}
.pagination .page-numbers li a,
.pagination .page-numbers li span,
.pagination .page-numbers li .current {
  color: #fff;
  line-height: 1;
  width: 50px;
  aspect-ratio: 1 / 1;
  background: var(--color-main);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid var(--color-main);
  padding: 0.25em 1em;
}
.pagination .page-numbers li .current {
  color: var(--color-main);
  background: #fff;
}
.pagination .page-numbers li .prev,
.pagination .page-numbers li .next {
  color: rgba(0, 0, 0, 0);
  text-indent: -9999px;
  background: var(--color-main);
  padding: 0;
  position: relative;
}
.pagination .page-numbers li .prev::before,
.pagination .page-numbers li .prev::after,
.pagination .page-numbers li .next::before,
.pagination .page-numbers li .next::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 35%;
  width: 0.9em;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 1px) 50%;
}
.pagination .page-numbers li .prev::before,
.pagination .page-numbers li .next::before {
  transform: rotate(45deg);
}
.pagination .page-numbers li .prev::after,
.pagination .page-numbers li .next::after {
  transform: rotate(-45deg);
}
.pagination .page-numbers li .prev::before,
.pagination .page-numbers li .prev::after {
  right: 62.5%;
  scale: -1;
}
.pagination .page-numbers li a:hover {
  text-decoration: none;
}

@media only screen and (max-width: 820px) {
  .pagination .page-numbers {
    gap: 10px;
  }
  .pagination .page-numbers li a,
  .pagination .page-numbers li span,
  .pagination .page-numbers li .current {
    width: 40px;
  }
  .pagination .page-numbers li .prev::before,
  .pagination .page-numbers li .prev::after,
  .pagination .page-numbers li .next::before,
  .pagination .page-numbers li .next::after {
    width: 0.75em;
  }
}
@media only screen and (max-width: 468px) {
}

/* =========================================================================================
Single-Page
=========================================================================================*/
body.single article .inner {
  max-width: var(--width-small);
}
body.single .entry-header {
  position: relative;
}
body.single .entry-header .inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  align-items: center;
  padding-block: 0 1em;
  border-bottom: 1px solid;
}
body.single .entry-header .date {
  text-align: left;
  display: inline-block;
}
body.single .entry-header .icon {
  display: flex;
  align-items: start;
  justify-content: left;
  flex-wrap: wrap;
  gap: 5px;
  padding: 1em 0;
}
body.single .entry-header .icon a,
body.single .entry-header .icon span {
  font-size: 0.8rem;
  text-align: center;
  height: auto;
  background: var(--color-gray);
  display: inline-block;
  padding: 0.25em 1em;
}
body.single .entry-header .icon a:hover {
  text-decoration: none;
}
body.single .entry-header .title {
  font-size: clamp(1.25rem, calc(0.618rem + 2.697vw), 2rem); /* min: 20px, max: 32px */
  text-align: left;
  line-height: 1.4;
  width: 100%;
  margin: 0;
}
body.single .entry-content section:nth-last-of-type(1) {
  padding-bottom: 100px;
}
@media only screen and (max-width: 820px) {
  body.single .entry-content section:nth-last-of-type(1) {
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 468px) {
  body.single .entry-content section:nth-last-of-type(1) {
    padding-bottom: 25px;
  }
}

/*single-navi*/
body.single .single-navi {
  display: flex;
  justify-content: center;
}
body.single .single-navi div:nth-child(2) {
  border-left: 1px solid;
}
body.single .single-navi .prev-navi a,
body.single .single-navi .next-navi a {
  position: relative;
}
body.single .single-navi .prev-navi a {
  text-align: left;
  padding-left: 1.5em;
  margin-right: 1.25em;
}
body.single .single-navi .next-navi a {
  text-align: right;
  padding-right: 1.5em;
  margin-left: 1.25em;
}
body.single .single-navi .prev-navi a::before,
body.single .single-navi .prev-navi a::after,
body.single .single-navi .next-navi a::before,
body.single .single-navi .next-navi a::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 1em;
  height: 2px;
  background-color: var(--color-font);
  transform-origin: calc(100% - 1px) 50%;
}
body.single .single-navi .prev-navi a::before,
body.single .single-navi .next-navi a::before {
  transform: rotate(45deg);
}
body.single .single-navi .prev-navi a::after,
body.single .single-navi .next-navi a::after {
  transform: rotate(-45deg);
}
body.single .single-navi .prev-navi a::before,
body.single .single-navi .prev-navi a::after {
  left: 0;
  transform-origin: 0 50%;
}

@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/* =========================================================================================
  Editer
=========================================================================================*/
/*見出し全体*/
* + .mid-bg,
* + .mid-l,
* + .mid-m,
* + .mid-s {
  margin-top: 1.5em;
}
/*見出し大（背景あり）*/
.mid-bg {
  color: var(--color-main);
  font-size: clamp(1.625rem, calc(0.888rem + 3.146vw), 2.5rem); /* min: 26px, max: 40px */
  font-weight: var(--weight-black);
  line-height: 1.5;
  letter-spacing: 0.25em;
  text-indent: 0.25em;
  text-align: center;
  width: fit-content;
  min-width: 500px;
  background: #fff;
  border-radius: 100px;
  border: 6px solid var(--color-main);
  padding: 0.175em 1em;
  margin: 0 auto 0.5em;
}
.mid-bg.green {
  color: #73ac2d;
  border-color: #73ac2d;
}
@media only screen and (max-width: 820px) {
  .mid-bg {
    min-width: auto;
    border-width: 4px;
  }
}
@media only screen and (max-width: 468px) {
}

/*見出し大*/
.mid-l {
  font-size: clamp(1.625rem, calc(0.888rem + 3.146vw), 2.5rem); /* min: 26px, max: 40px */
  font-weight: var(--weight-thin);
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
}
.mid-l small {
  font-size: clamp(1rem, calc(0.895rem + 0.449vw), 1.125rem); /* min: 16px, max: 18px */
  letter-spacing: 0;
  text-align: center;
  width: 100%;
  display: block;
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/*見出し中*/
.mid-m {
  color: var(--color-main);
  font-size: clamp(1.5rem, calc(0.868rem + 2.697vw), 2.25rem); /* min: 24px, max: 36px */
  text-align: center;
  font-weight: var(--weight-bold);
  line-height: 1.6;
  margin-bottom: 1em;
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}
/*見出し小*/
.mid-s {
  font-size: clamp(1.375rem, calc(1.164rem + 0.899vw), 1.625rem); /* min: 22px, max: 26px */
  font-weight: var(--weight-bold);
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.75em;
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/* =========================================================================================
  Editer 見出し（wp-block-heading）
=========================================================================================*/
* + .wp-block-heading {
  margin-top: 1.5em;
}
.wp-block-heading {
  font-weight: var(--weight-bold);
  line-height: 1.5;
  margin-bottom: 1em;
}
h1.wp-block-heading {
  font-size: clamp(2.5rem, calc(1.447rem + 4.494vw), 3.75rem); /* min: 40px, max: 60px */
}
h2.wp-block-heading {
  font-size: clamp(1.875rem, calc(1.348rem + 2.247vw), 2.5rem); /* min: 30px, max: 40px */
}
h3.wp-block-heading {
  font-size: clamp(1.5rem, calc(1.079rem + 1.798vw), 2rem); /* min: 24px, max: 32px */
}
h4.wp-block-heading {
  font-size: clamp(1.25rem, calc(0.934rem + 1.348vw), 1.625rem); /* min: 20px, max: 26px */
}
h5.wp-block-heading {
  font-size: clamp(1rem, calc(0.789rem + 0.899vw), 1.25rem); /* min: 16px, max: 20px */
}
h6.wp-block-heading {
  font-size: clamp(0.875rem, calc(0.77rem + 0.449vw), 1rem); /* min: 14px, max: 16px */
}

/* =========================================================================================
  Editer 段落（p）
=========================================================================================*/
.entry-content .inner > p + p {
  margin-top: 1em;
}

/* =========================================================================================
  Editer 画像（wp-block-image）
=========================================================================================*/
.wp-block-image {
  margin-bottom: 1em;
}

/* =========================================================================================
  Editer 区切り（wp-block-separator）
=========================================================================================*/
hr,
.wp-block-separator {
  width: 90%;
  height: 4px;
  max-width: var(--width-main);
  background-color: unset;
  border: none;
  background-image: repeating-linear-gradient(to right, #a2d7d4, #a2d7d4 4px, transparent 4px, transparent 10px);
  margin: auto;
}
.wp-block-separator.is-style-dots:before {
  font-size: 3em;
  letter-spacing: 1em;
  padding-left: 1em;
}
hr.black {
  background-image: repeating-linear-gradient(to right, var(--color-font), var(--color-font) 4px, transparent 4px, transparent 10px);
}

/* =========================================================================================
  Editer テーブル（wp-block-table / wp-block-flexible-table-block-table）
=========================================================================================*/
.entry-content table {
  width: 100%;
  border-spacing: 0;
  border-left: 1px solid;
}
.entry-content table caption,
.wp-block-flexible-table-block-table figcaption {
  color: var(--color-font);
  font-size: clamp(1.125rem, calc(1.02rem + 0.449vw), 1.25rem); /* min: 18px, max: 20px */
  text-align: left;
  border-left: 1px solid;
  padding: 0.25em 0.5em;
}
.entry-content th,
.entry-content td {
  text-align: left;
  vertical-align: top;
  border: none;
  padding: 0.5em;
}
.entry-content th {
  color: var(--color-font);
  white-space: nowrap;
  padding-inline: 1em;
  position: relative;
  z-index: 2;
}
.entry-content th::after {
  content: "";
  background: #000;
  opacity: 0.05;
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
/* 色展開 */
.entry-content table tr:nth-of-type(odd) {
  background: #d4ecea;
}
.entry-content table.orange tr:nth-of-type(odd) {
  background: #f3ebd3;
}
.entry-content table.yellow tr:nth-of-type(odd) {
  background: #e8e7b6;
}
.entry-content table.red tr:nth-of-type(odd) {
  background: #f0dadb;
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
  .entry-content th {
    padding-inline: 0.5em;
  }
}

/* scroll-table*/
.entry-content .scroll-table {
  width: 100%;
  overflow: auto;
}
.entry-content .scroll-table table {
  width: auto;
  min-width: 800px;
}
/* =========================================================================================
  Editer リスト（wp-block-list）
=========================================================================================*/
/* 通常のリスト-----------------------------------------------------------------*/
ul.list,
ul.wp-block-list {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  margin: 0.5em 0;
}
ul.list li,
ul.wp-block-list li {
  line-height: 1.5;
  padding-left: 0.75em;
  position: relative;
}
ul.list li::before,
ul.wp-block-list li::before {
  content: "";
  background: var(--color-gray);
  width: 0.6em;
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  position: absolute;
  top: 0.5em;
  left: 0;
  z-index: 1;
}

/* 行頭四角のリスト ----------------------------------------------------------*/
ul.list.square > li:before {
  content: "";
  width: 0.6em;
  background: var(--color-main);
  border-radius: 0;
  top: 0.5em;
}
ul.list.square.green > li:before {
  background: #90bb3d;
}

/* 行頭※のリスト（注釈）------------------------------------------------------*/
ul.list.note li,
ul.wp-block-list.note li {
  padding-left: 0.85em;
}
ul.list.note li:before,
ul.wp-block-list.note li:before {
  content: "※";
  background: none !important;
  position: absolute;
  top: 0;
  left: -0.15em;
  z-index: 1;
}

/* 行頭チェックマークのリスト -------------------------------------------------*/
ul.list.check li,
ul.wp-block-list.check li {
  padding-left: 1.1em;
}
ul.list.check li:before,
ul.wp-block-list.check li:before {
  content: "";
  display: block;
  width: 0.8em;
  height: 0.5em;
  background: none;
  border-left: 3px solid var(--color-main);
  border-bottom: 3px solid var(--color-main);
  border-radius: 0;
  position: absolute;
  top: 0.45em;
  left: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* 行頭数字リスト -----------------------------------------------------------*/
ol.list,
ol.wp-block-list {
  list-style-position: outside;
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  margin: 0.5em 0 0.5em 1.1em;
}
ol.list li,
ol.wp-block-list li {
  line-height: 1.5;
  position: relative;
}

/* 行頭数字リスト（〇付） ---------------------------------------------------*/
ol.list.circle,
ol.wp-block-list.circle {
  list-style: none;
  counter-reset: number;
}
ol.list.circle li::before,
ol.wp-block-list.circle li::before {
  color: #fff;
  font-size: 0.8em;
  text-align: center;
  line-height: 1.25;
  counter-increment: number;
  content: counter(number);
  width: 1.375em;
  aspect-ratio: 1 / 1;
  background: var(--color-main);
  border-radius: 50%;
  position: absolute;
  top: 0.325em;
  left: -1.6em;
}

/* =========================================================================================
  Editer 詳細（wp-block-details）
=========================================================================================*/
.wp-block-details {
  border: 1px solid;
  padding: 1em 1.5em;
  margin-block: 1em;
}
.wp-block-details summary {
  color: var(--color-main);
  font-weight: var(--weight-semibold);
  list-style: none; /* 標準仕様でマーカーを消す */
  padding-right: 1.5em;
  position: relative;
  z-index: 1;
}
.wp-block-details summary::before,
.wp-block-details summary::after {
  content: "";
  background-color: var(--color-main);
  border-radius: 10px;
  pointer-events: none; /* クリック判定を邪魔しないように */
  position: absolute;
  top: 0.875em;
  right: 0;
  z-index: 5;
  transition: transform 0.3s ease;
}
.wp-block-details summary::after {
  width: 1em;
  height: 2px;
  margin-top: -1px; /* 完全に中央にするための微調整（太さの半分） */
  right: 0;
}
.wp-block-details summary::before {
  width: 2px;
  height: 1em;
  margin-top: -0.5em;
  right: calc(0.5em - 1px); /* 横棒の中心に来るように位置調整 */
}
.wp-block-details[open] summary {
  margin-bottom: 0.5em;
}
.wp-block-details[open] summary::before {
  transform: rotate(90deg);
}

/* =========================================================================================
  Editer グリッド（is-layout-grid）
=========================================================================================*/
.is-layout-grid {
  column-gap: 5%;
  row-gap: clamp(1.25rem, calc(0.344rem + 3.867vw), 3.438rem);
}
@media only screen and (max-width: 820px) {
  .is-layout-grid {
    column-gap: 20px;
  }
}
@media only screen and (max-width: 468px) {
  .is-layout-grid {
    column-gap: 10px;
  }
}

/* =========================================================================================
  Editer メディアとテキスト（wp-block-media-text）
=========================================================================================*/
@media only screen and (max-width: 600px) {
  .wp-block-media-text .wp-block-media-text__content {
    margin: 0;
    padding: 1em 0;
  }
}

/* =========================================================================================
FORM
=========================================================================================*/
.grecaptcha-badge {
  /*visibility: hidden;*/
} /*reCAPTCHAバッジ（ロゴマーク）を消す ※設定がうまくいったことを確認してからこのCSSを有効化すること*/

.entry-content form {
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}
.entry-content form ::placeholder {
  color: #ccc;
}
.entry-content form input[type="text"],
.entry-content form input[type="tel"],
.entry-content form input[type="email"],
.entry-content form input[type="url"],
.entry-content form textarea,
.entry-content form select {
  width: 100%;
  background: #fefefe;
  border: 1px solid var(--color-gray);
  padding: 0.75em 1em;
  transition: 0.3s;
}
.entry-content form input:focus,
.entry-content form textarea:focus {
  border: 1px solid var(--color-gray);
}
.entry-content form .wpcf7-radio {
  /*ラジオボタンの位置調整*/
  margin-top: 1em;
  display: block;
}
.entry-content form .wpcf7-radio .wpcf7-list-item.first {
  /*ラジオボタンの一番最初のmargin調整*/
  margin: 0;
}
.entry-content form select {
  width: fit-content;
  min-width: 300px;
  padding-right: 4em;
  background: #fff url(assets/images/common/icon_dropdown.svg) no-repeat;
  background-position: right 1em center;
  background-size: 1em;
}
.entry-content form .post-add input {
  max-width: 150px;
}
.entry-content form .select-pref select {
  min-width: 100px;
}
.entry-content form input[type="submit"],
.entry-content form input[type="button"] {
  color: #fff;
  font-weight: var(--weight-bold);
  background-color: var(--color-font);
  padding: 0.75em 1.5em;
  line-height: 1.4;
  letter-spacing: 0.25em;
  text-indent: 0.25em;
  border-radius: 100px;
  min-width: 320px;
  border: none;
  transition: 0.3s;
}
.entry-content form input[type="submit"] {
  background-color: var(--color-main);
}
.entry-content form input[type="button"] {
  background-color: #555;
}
.entry-content form input[type="submit"]:hover,
.entry-content form input[type="button"]:hover {
  opacity: 0.8;
}
.entry-content form .btn-area {
  margin-top: 3em;
}
.entry-content form .btn-area p {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  width: 100%;
}
.entry-content form .btn-area p br {
  display: none;
}
.entry-content form .btn-area .wpcf7-spinner {
  position: absolute;
  right: -80px;
  top: 30%;
}
@media only screen and (max-width: 820px) {
  .entry-content form .btn-area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
  }
  .entry-content form .btn-area p {
    position: relative;
  }
  .entry-content form .btn-area .wpcf7-spinner {
    position: absolute;
    right: -80px;
    top: 30%;
  }
}
@media only screen and (max-width: 468px) {
  .entry-content form input[type="submit"],
  .entry-content form input[type="button"] {
    width: 100%;
    min-width: 100%;
  }
}

/*問い合わせ画面*/
.entry-content .contact-bg {
  padding-block: 50px;
  margin: 0;
}
.entry-content .contact-bg .privacy {
  text-align: center;
  margin-bottom: 2em;
}
.entry-content .contact-bg .privacy .wpcf7-list-item {
  margin: 0;
}
.entry-content .contact-bg .privacy a {
  text-decoration: underline;
}
.entry-content .contact-bg .center {
  text-align: center;
  margin-top: 3em;
}
.entry-content form dl {
  width: 100%;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px 20px;
  padding-bottom: 70px;
  margin: 0 auto;
}
.entry-content form dt {
  font-weight: var(--normal-font-weight);
  text-align: left;
  line-height: 1.6;
}
.entry-content form dt label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.875em;
}
.entry-content form dt span {
  font-size: small;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.25em;
  text-indent: 0.25em;
  display: inline-block;
  background: var(--color-attention);
  border-radius: 2px;
  padding: 0.6em 0.25em 0.5em;
  margin-left: 0.5em;
}
.entry-content form dd p {
  display: block;
}
.entry-content form small {
  display: block;
  line-height: 1.7;
}

@media only screen and (max-width: 820px) {
  .entry-content .contact-bg {
    padding: 20px 0 50px;
  }
  .entry-content form dl {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .entry-content form dt {
    text-align: left;
    width: 100%;
  }
  .entry-content form dt label {
    justify-content: left;
  }
  .entry-content form dt span {
    font-size: 0.8rem;
    padding: 0.15em 0.2em 0.2em;
    margin-left: 0.75em;
  }
  .entry-content form dd {
    width: 100%;
    margin-bottom: 1em;
  }
}
@media only screen and (max-width: 468px) {
  .entry-content .contact-bg {
    padding-top: 0;
  }
}

/*入力確認画面*/
.entry-content .confirm-bg {
  width: 100%;
  max-width: 680px;
  padding: 0;
  margin: 0 auto;
}
.entry-content .confirm-bg .center {
  text-align: center;
  margin-top: 3em;
}
.entry-content form .confirm-bg dl {
  width: 100%;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  padding-bottom: 40px;
}
.entry-content form .confirm-bg dt,
.entry-content form .confirm-bg dd {
  font-weight: var(--weight-normal);
  text-align: left;
  line-height: 1.6;
  border-bottom: 1px solid var(--color-gray);
  padding: 1em;
  margin: 0;
}
.entry-content form .confirm-bg dt {
  font-weight: var(--weight-bold);
}

@media only screen and (max-width: 820px) {
  .entry-content form .confirm-bg dl {
    display: flex;
    flex-wrap: wrap;
  }
  .entry-content form .confirm-bg dt {
    border-bottom: none;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 468px) {
}

/*送信完了画面*/
body.contact-completion .entry-content .inner {
  max-width: var(--width-small);
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 468px) {
}

/* =========================================================================================
Parts（company_link）
=========================================================================================*/
.parts-company_link {
  padding: 10px 0;
  position: relative;
  z-index: 10;
}
.parts-company_link .inner {
  padding: 30px 50px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 0px 10px 0px rgba(136, 136, 136, 1);
  max-width: var(--width-large);
}
.parts-company_link ul {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: center;
  gap: 40px 6%;
}
.parts-company_link ul li {
  width: 15%;
}
.parts-company_link ul li img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}
.parts-company_link ul li.large {
  width: 24%;
}
.parts-company_link ul li.large img {
  width: 100%;
  aspect-ratio: unset;
  object-fit: contain;
  margin-block: 5px 10px;
}
.parts-company_link ul li figcaption {
  font-size: clamp(0.625rem, calc(0.309rem + 1.348vw), 1rem); /* min: 10px, max: 16px */
  text-align: center;
  line-height: 1.4;
  margin-top: 0.5em;
}
.parts-company_link a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 980px) {
  .parts-company_link .inner {
    padding: 30px 0;
  }
  .parts-company_link ul {
    gap: 20px 6%;
  }
  .parts-company_link ul li {
    width: 25%;
  }
  .parts-company_link ul li.large {
    width: 90%;
    max-width: 500px;
  }
}
@media only screen and (max-width: 820px) {
  .parts-company_link .inner {
    padding: 20px 15px;
  }
  .parts-company_link ul {
    gap: 20px 10px;
  }
  .parts-company_link ul li {
    width: 30%;
  }
}
@media only screen and (max-width: 468px) {
}
