@charset "UTF-8";
:root {
  --cl-text: #333;
  --cl-text-gray: #BFBFBF;
  --cl-white: #fff;
  --cl-primary: #00ACFF;
  --cl-secondary: #E2F5FF;
  --cl-d-blue: #00248D;
  --cl-border: #E3EAFF;
  --cl-d-border: #A1A1A1;
  --cl-m-border: #E0E0E0;
  --cl-bg-gray: #FBFBFB;
  --cl-alert: #FF4027;
  --font-en: "Inter", sans-serif;
  --transition: 0.3s ease-in-out;
}

/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
}

html {
  color: var(--cl-text);
  background: var(--cl-white);
  font-size: 16px;
  line-height: 1.8;
  overflow-wrap: break-word;
}

body {
  background: var(--cl-white);
  margin: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
select,
textarea,
button {
  color: inherit;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

#wrapper {
  position: relative;
}

.inner-block {
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

.ib {
  display: inline-block;
}

@font-face {
  src: url(../font/NotoSansJP-Regular.woff) format("woff"), url(../font/NotoSansJP-Regular.otf) format("opentype");
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-display: swap;
}
@font-face {
  src: url(../font/NotoSansJP-Medium.woff) format("woff"), url(../font/NotoSansJP-Medium.otf) format("opentype");
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-display: swap;
}
@font-face {
  src: url(../font/NotoSansJP-Bold.woff) format("woff"), url(../font/NotoSansJP-Bold.otf) format("opentype");
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-display: swap;
}
@font-face {
  src: url(../font/Inter-VariableFont_opsz,wght.woff) format("woff"), url(../font/Inter-VariableFont_opsz,wght.otf) format("opentype");
  font-family: "Inter";
  font-weight: 500;
  font-display: swap;
}
.c-en {
  font-family: var(--font-en);
}

.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-header
----------------------------------- */
.c-header-wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: var(--cl-white);
  z-index: 101;
}

.c-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 100;
}
.c-header .logo a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-header .logo .txt {
  font-size: 12px;
  margin-left: 15px;
  font-weight: 500;
}
.c-nav .nav-list a {
  display: block;
  font-weight: 700;
}
.c-nav .nav-list a .link-inn {
  display: block;
  position: relative;
}
.c-nav .nav-list a .link-inn::before {
  background: var(--cl-primary);
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
}
.c-nav .language-btn-wrap .lang-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 33px;
}
.c-nav .language-btn-wrap .lang-list li + li {
  position: relative;
}
.c-nav .language-btn-wrap .lang-list li + li::before {
  background: var(--cl-border);
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  position: absolute;
  top: 8px;
  left: -17px;
}
.c-nav .language-btn-wrap .lang-list li a {
  color: var(--cl-text-gray);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}
.c-nav .language-btn-wrap .lang-list li.is-active a {
  color: var(--cl-primary);
  text-decoration: none;
}
.c-nav .btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.c-nav-btn {
  background: var(--cl-secondary);
  border-radius: 5px;
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 101;
  margin: auto;
}
.c-nav-btn .inn {
  display: block;
  position: relative;
  margin: auto;
  width: 30px;
  height: 20px;
}
.c-nav-btn .line {
  background: var(--cl-primary);
  display: block;
  position: absolute;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  width: 100%;
  height: 2px;
}
.c-nav-btn .line:nth-child(1) {
  top: 0;
}
.c-nav-btn .line:nth-child(2) {
  top: 9px;
}
.c-nav-btn .line:nth-child(3) {
  top: 18px;
}
.c-nav-btn.is-open .line:nth-child(1), .c-nav-btn.is-open .line:nth-child(3) {
  top: 9px;
}
.c-nav-btn.is-open .line:nth-child(1) {
  rotate: -45deg;
}
.c-nav-btn.is-open .line:nth-child(2) {
  opacity: 0;
}
.c-nav-btn.is-open .line:nth-child(3) {
  rotate: 45deg;
}

/* --------------------------------
c-footer
----------------------------------- */
.c-footer {
  background: var(--cl-text);
  color: var(--cl-white);
  padding-block: 100px;
}
.c-footer .top-link-wrap .detail-area .logo .txt {
  font-size: 12px;
  margin-left: 15px;
}
.c-footer .top-link-wrap .detail-area .address {
  font-size: 14px;
  font-weight: bold;
  line-height: 160%;
  margin-top: 40px;
}
.c-footer .top-link-wrap .btn-area .btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.c-footer .top-link-wrap .btn-area .link-list {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 32px;
  gap: 10px 80px;
}
.c-footer .top-link-wrap .btn-area .link-list a {
  font-size: 14px;
  font-weight: 700;
}
.c-footer .bottom-link-wrap {
  margin-top: 40px;
}
.c-footer .bottom-link-wrap .sub-link-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px 40px;
}
.c-footer .bottom-link-wrap .sub-link-list li {
  line-height: 1;
}
.c-footer .bottom-link-wrap .sub-link-list li a {
  font-size: 12px;
  font-weight: 700;
}
.c-footer .bottom-link-wrap .sub-link-list li + li {
  position: relative;
}
.c-footer .bottom-link-wrap .sub-link-list li + li::before {
  background: var(--cl-white);
  content: "";
  display: block;
  width: 1px;
  height: 12px;
  position: absolute;
  top: 5px;
  left: -20px;
  margin: auto;
}
.c-footer .bottom-link-wrap .copyright {
  font-size: 12px;
}

#pagetop {
  right: 60px;
  bottom: 0;
  z-index: 10;
}
#pagetop a {
  background: var(--cl-primary);
  border-radius: 5px 5px 0 0;
  display: block;
  width: 60px;
  height: 60px;
  position: relative;
}
#pagetop a .inn {
  color: var(--cl-white);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  line-height: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  padding-top: 24px;
}
#pagetop a .inn::before {
  -webkit-mask: url(../img/common/ico-arrow.svg) no-repeat center center/contain;
          mask: url(../img/common/ico-arrow.svg) no-repeat center center/contain;
  background: var(--cl-white);
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  rotate: -90deg;
}

.c-ttl01.center {
  text-align: center;
}
.c-ttl01.center .en {
  margin-inline: auto;
}
.c-ttl01 {
  margin-bottom: 40px;
}
.c-ttl01 .en,
.c-ttl01 .ja {
  display: block;
}
.c-ttl01 .en {
  color: var(--cl-primary);
  font-weight: bold;
  font-family: var(--font-en);
  font-size: 16px;
  line-height: 1;
  margin-bottom: 16px;
  padding-left: 20px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
}
.c-ttl01 .en::before {
  border: 4px solid var(--cl-primary);
  border-radius: 50%;
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 1px;
  left: 0;
  margin: auto;
}
.c-ttl01 .ja {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 120%;
}
.c-ttl01.mv-ttl .en {
  color: var(--cl-d-blue);
  padding-left: 0;
}
.c-ttl01.mv-ttl .en::before {
  content: unset;
}

.c-ttl02 {
  font-size: 24px;
  padding-left: 22px;
  position: relative;
  margin-bottom: 24px;
  letter-spacing: 0.09em;
}
.c-ttl02::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 4px solid var(--cl-primary);
}

.c-btn01 {
  background: var(--cl-primary);
  border-radius: 5px;
  display: inline-block;
  padding: 25px 40px 25px 60px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}
.c-btn01 .btn-inn {
  color: var(--cl-white);
  display: inline-block;
  padding-right: 34px;
  position: relative;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.c-btn01 .btn-inn::before {
  -webkit-mask: url(../img/common/ico-arrow.svg) no-repeat center left/contain;
          mask: url(../img/common/ico-arrow.svg) no-repeat center left/contain;
  background: var(--cl-white);
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  margin: auto;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.c-btn01.btn-secondary {
  background: var(--cl-secondary);
  border: 1px solid var(--cl-primary);
}
.c-btn01.btn-secondary .btn-inn {
  color: var(--cl-primary);
}
.c-btn01.btn-secondary .btn-inn::before {
  background: var(--cl-primary);
}
.c-btn01.ico-back .btn-inn {
  padding-right: 0;
  padding-left: 34px;
}
.c-btn01.ico-back .btn-inn::before {
  -webkit-mask-image: url(../img/common/ico-undo.svg);
          mask-image: url(../img/common/ico-undo.svg);
  right: auto;
  left: 0;
}

.c-btn02 {
  font-size: 14px;
  font-weight: bold;
  padding-right: 24px;
  position: relative;
}
.c-btn02::before {
  -webkit-mask: url(../img/common/ico-arrow.svg) no-repeat center left/contain;
          mask: url(../img/common/ico-arrow.svg) no-repeat center left/contain;
  background: var(--cl-primary);
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  margin: auto;
}

.c-anchor-btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--cl-secondary);
  padding: 20px 8px;
  padding-right: clamp(8px, 1.0416666667vw, 20px);
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
}
.c-anchor-btn {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transition-property: background, color;
  transition-property: background, color;
}
.c-anchor-btn:focus-visible {
  background: var(--cl-d-blue);
  color: var(--cl-white);
}
.c-anchor-btn:focus-visible .inn-txt::before {
  background: var(--cl-white);
}
.c-anchor-btn .inn-txt {
  display: inline-block;
  padding-right: 2.125em;
  position: relative;
}
.c-anchor-btn .inn-txt::before {
  position: absolute;
  content: "";
  -webkit-mask: url("../img/common/ico-arrow02.svg") no-repeat center/contain;
          mask: url("../img/common/ico-arrow02.svg") no-repeat center/contain;
  background: var(--cl-primary);
  rotate: 90deg;
  width: auto;
  height: 1.5em;
  aspect-ratio: 1;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transition-property: background;
  transition-property: background;
}

.c-back-btn {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  color: var(--cl-d-blue);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transition-property: color, -webkit-text-decoration;
  transition-property: color, -webkit-text-decoration;
  transition-property: color, text-decoration;
  transition-property: color, text-decoration, -webkit-text-decoration;
  border-bottom: 1px solid currentColor;
  padding-bottom: 8px;
}
.c-back-btn:focus-visible {
  color: var(--cl-primary);
  border-color: transparent;
}
.c-back-btn .btn-inn {
  padding-left: 2.125em;
  position: relative;
}
.c-back-btn .btn-inn::before {
  position: absolute;
  content: "";
  -webkit-mask: url("../img/common/ico-undo.svg") no-repeat center/contain;
          mask: url("../img/common/ico-undo.svg") no-repeat center/contain;
  background: currentColor;
  width: auto;
  height: 1.5em;
  aspect-ratio: 1;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transition-property: background;
  transition-property: background;
}

.c-section + .c-section {
  margin-top: 100px;
}

.c-section02 {
  padding-block: 100px;
}
.c-section02.pt-0 {
  padding-top: 100px;
  margin-top: -100px;
}

.c-cl-primary {
  color: var(--cl-primary);
}

.c-bg-gray {
  background: var(--cl-bg-gray);
}

.c-link-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin: 40px auto 0;
  max-width: 1040px;
}
.c-link-area .box {
  text-align: center;
}
.c-link-area .box .txt {
  font-size: 14px;
  margin-top: 10px;
}
.c-link-area .box + .box {
  position: relative;
}
.c-link-area .box + .box::before {
  background: var(--cl-border);
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -20px;
}
.c-link-area .num {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-link-area .tag {
  background: var(--cl-secondary);
  color: var(--cl-primary);
  font-family: var(--font-en);
  font-weight: bold;
  display: inline-block;
  line-height: 1;
  padding: 7px;
}
.c-link-area .num-txt {
  color: var(--cl-primary);
  font-size: 32px;
  font-weight: bold;
  padding-left: 10px;
  line-height: 1;
}
.c-link-area .small {
  color: var(--cl-primary);
  font-weight: bold;
  -webkit-align-self: end;
      -ms-flex-item-align: end;
          align-self: end;
}

.c-breadcrumb-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 8px;
}
.c-breadcrumb-list > li {
  font-size: 14px;
  line-height: 160%;
}
.c-breadcrumb-list > li a {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transition-property: color, -webkit-text-decoration;
  transition-property: color, -webkit-text-decoration;
  transition-property: color, text-decoration;
  transition-property: color, text-decoration, -webkit-text-decoration;
  -webkit-text-decoration: underline transparent;
          text-decoration: underline transparent;
}
.c-breadcrumb-list > li a:focus-visible {
  color: var(--cl-primary);
  -webkit-text-decoration-color: currentColor;
          text-decoration-color: currentColor;
}
.c-breadcrumb-list > li:not(:first-child) {
  padding-left: 2em;
  position: relative;
}
.c-breadcrumb-list > li:not(:first-child)::before {
  position: absolute;
  content: "";
  background: url("../img/common/ico-arrow02.svg") no-repeat center/contain;
  width: auto;
  height: 1.6em;
  aspect-ratio: 1;
  top: 0;
  left: 0;
}

.c-anchor-link-area {
  margin-top: 24px;
}

.c-anchor-link-list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.c-anchor-link-list > li {
  width: 100%;
}
.c-anchor-link-list > li:not(:first-child) {
  position: relative;
}
.c-anchor-link-list > li:not(:first-child)::before {
  position: absolute;
  content: "";
  background: var(--cl-m-border);
  width: 1px;
  height: calc(100% - 16px);
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.c-ttl-cont-wrap {
  display: grid;
  grid-template-columns: min(30%, 308px) 1fr;
  gap: 24px;
}

.c-company-flow-list {
  margin-top: 40px;
}
.c-company-flow-list .contents-wrap {
  padding: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  background: var(--cl-bg-gray);
}
.c-company-flow-list .contents-wrap .img-area {
  width: 100%;
}
.c-company-flow-list .contents-wrap .img-area img {
  width: 100%;
}
.c-company-flow-list .contents-wrap .ttl {
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
}
.c-company-flow-list .contents-wrap .desc {
  margin-top: 16px;
  font-size: 14px;
  line-height: 150%;
}
.c-slider .slider-parts {
  margin-top: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
  padding-inline: 24px;
}
.c-slider .swiper-button-next,
.c-slider .swiper-button-prev {
  -webkit-mask: url("../img/common/ico-arrow02.svg") no-repeat center center/contain;
          mask: url("../img/common/ico-arrow02.svg") no-repeat center center/contain;
  background: var(--cl-primary);
  width: 32px;
  height: 32px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transition-property: background;
  transition-property: background;
}
.c-slider .swiper-button-prev {
  rotate: 180deg;
}
.c-slider .swiper-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-slider .swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: var(--cl-primary);
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 50%;
}
.c-slider .swiper-pagination .swiper-pagination-bullet-active {
  width: 8px;
  border-width: 4px;
  height: 8px;
  background: #fff;
  border: 2px solid var(--cl-primary);
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  position: relative;
}
.c-slider .swiper-pagination .swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--cl-primary);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-animation: pulseCircle 3s ease-out infinite;
          animation: pulseCircle 3s ease-out infinite;
}
@-webkit-keyframes pulseCircle {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(2.0833);
            transform: translate(-50%, -50%) scale(2.0833);
    opacity: 0;
  }
}
@keyframes pulseCircle {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(2.0833);
            transform: translate(-50%, -50%) scale(2.0833);
    opacity: 0;
  }
}

.c-alphabet-list {
  list-style: none;
  padding: 0;
  counter-reset: alphabet;
}
.c-alphabet-list li {
  counter-increment: alphabet;
  position: relative;
  padding-left: 28px;
  letter-spacing: 0.09em;
}
.c-alphabet-list li::before {
  content: counter(alphabet, lower-alpha) ". ";
  position: absolute;
  left: 1px;
  font-weight: 500;
  color: var(--cl-primary);
}

.c-dots-list > li {
  padding-left: 14px;
  position: relative;
  line-height: 1.8em;
}
.c-dots-list > li::before {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 4px;
  height: 4px;
  background-color: var(--cl-primary);
  top: 12px;
  border-radius: 50%;
}

.c-paging-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-inline: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.c-paging-area .page-numbers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  aspect-ratio: 1/1;
  border: 1px solid var(--cl-primary);
  border-radius: 5px;
  color: var(--cl-primary);
  font-weight: bold;
  line-height: 1;
  background: var(--cl-secondary);
  -webkit-transition: background var(--transition), color var(--transition);
  transition: background var(--transition), color var(--transition);
}
.c-paging-area .page-numbers:focus-visible:not(.current):not(.dots):not(.prev):not(.next) {
  background: var(--cl-primary);
  color: var(--cl-white);
  cursor: pointer;
}
.c-paging-area .current, .c-paging-area .dots {
  border: none;
  background: var(--cl-white);
}
.c-paging-area .prev,
.c-paging-area .next {
  background: var(--cl-primary);
  color: var(--cl-white);
  -webkit-transition: background var(--transition);
  transition: background var(--transition);
  font-size: 0px;
  line-height: 0;
}
.c-paging-area .prev:focus-visible,
.c-paging-area .next:focus-visible {
  background: var(--cl-white);
  color: var(--cl-primary);
}
.c-paging-area .prev::before,
.c-paging-area .next::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  -webkit-mask: url("../img/common/ico-arrow.svg");
          mask: url("../img/common/ico-arrow.svg");
  background: currentColor;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transition: background var(--transition);
  transition: background var(--transition);
}
.c-paging-area .prev::before {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.c-link {
  color: var(--cl-primary);
  text-decoration: underline;
}
.c-link:hover {
  color: var(--cl-d-blue);
}

/* --------------------------------
c-table
----------------------------------- */
.c-tbl01 {
  width: 100%;
}
.c-tbl01 tr {
  display: grid;
  grid-template-columns: clamp(120px, 40%, 216px) 1fr;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.c-tbl01 tr:last-child th, .c-tbl01 tr:last-child td {
  padding-bottom: 0;
}
.c-tbl01 tr + tr {
  border-top: 1px solid var(--cl-bg-gray);
}
.c-tbl01 th, .c-tbl01 td {
  font-size: 16px;
}
.c-tbl01 th {
  text-align: left;
  vertical-align: baseline;
  font-weight: 700;
  line-height: 100%;
}
.c-tbl01 td {
  line-height: 180%;
}

.c-history-tbl {
  width: 100%;
}
.c-history-tbl tr {
  display: grid;
  grid-template-columns: clamp(100px, 40%, 196px) 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 16px;
  margin-left: 12px;
  padding-left: 24px;
  position: relative;
}
.c-history-tbl tr:first-child {
  margin-bottom: 10px;
}
.c-history-tbl tr:first-child::after {
  height: calc(50% + 12px);
  top: auto;
  bottom: -12px;
}
.c-history-tbl tr:last-child {
  margin-top: 10px;
}
.c-history-tbl tr:last-child::after {
  height: calc(50% + 12px);
  top: -12px;
}
.c-history-tbl tr:not(:first-child):not(:last-child) {
  padding-block: 9px;
}
.c-history-tbl tr::before {
  position: absolute;
  content: "";
  z-index: 2;
  border: 4px solid var(--cl-primary);
  background: var(--cl-white);
  border-radius: 50%;
  width: 12px;
  height: 12px;
  aspect-ratio: 1;
  top: 0;
  bottom: 0;
  right: 100%;
  margin: auto;
}
.c-history-tbl tr::after {
  position: absolute;
  content: "";
  background: var(--cl-d-border);
  width: 2px;
  height: 100%;
  right: calc(100% + 5px);
  top: 0;
}
.c-history-tbl th {
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
}
.c-history-tbl th .sub-txt {
  font-size: 12px;
  color: var(--cl-d-border);
  line-height: 100%;
}
.c-history-tbl th .main-txt {
  line-height: 100%;
  display: block;
  margin-top: 4px;
}
.c-history-tbl td {
  font-size: 16px;
  line-height: 180%;
}

.c-tbl02 {
  width: 100%;
}
.c-tbl02 tr {
  display: grid;
  grid-template-columns: clamp(150px, 40%, 200px) 1fr;
  border-top: 1px solid var(--cl-m-border);
  border-bottom: 1px solid var(--cl-m-border);
}
.c-tbl02 tr + tr {
  border-top: none;
}
.c-tbl02 tr th, .c-tbl02 tr td {
  height: 100%;
  padding: 20px 16px 15px;
  font-size: 16px;
}
.c-tbl02 tr td {
  padding-top: 16px;
  background-color: #fff;
  line-height: 180%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.c-tbl02 tr th {
  text-align: left;
  vertical-align: baseline;
  background-color: var(--cl-secondary);
  font-weight: 700;
  line-height: 100%;
  height: 100%;
}
.c-tbl02 tr .flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.c-tbl02 tr .flex-box.time, .c-tbl02 tr .flex-box.pay {
  gap: 20px;
}
.c-tbl02 tr .flex-box.time + .time, .c-tbl02 tr .flex-box.pay + .time {
  margin-top: 0;
}
.c-tbl02 tr .flex-box.time p:nth-child(1) {
  width: 132px;
}
.c-tbl02 tr .ttl-tip {
  background-color: var(--cl-secondary);
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  padding: 4px 5px;
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.c-cta-section {
  background: var(--cl-secondary);
  padding-block: 80px;
}
.c-cta-section .inn {
  background: var(--cl-white);
  padding: 80px 20px;
}
.c-cta-section .c-link-area .box {
  text-align: center;
}
.c-cta-section .c-link-area .box .txt {
  font-size: 14px;
  margin-top: 10px;
  font-weight: 500;
}

/* --------------------------------
c-mv-section
----------------------------------- */
.c-mv-section:not(.lower) {
  height: 100%;
}
.c-mv-section .contents-wrap {
  padding: 16px;
  display: grid;
  grid-template-columns: min(42%, 667px) 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.c-mv-section .contents-wrap .ttl-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  height: 100%;
  background: var(--cl-bg-gray);
  padding-left: clamp(20px, 5.4166666667vw, 104px);
  padding-right: 20px;
  padding-block: 40px;
}
.c-mv-section .contents-wrap .ttl-area .mv-ttl {
  margin-bottom: 0;
}
.c-mv-section .contents-wrap .ttl-area .c-breadcrumb-list {
  padding-block: 16px;
}
.c-mv-section .contents-wrap .img-area {
  height: 100%;
}
.c-mv-section .contents-wrap .img-area img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.c-mv-section.lower {
  padding: 16px;
}
.c-mv-section.lower .contents-wrap {
  padding: 0;
  background: var(--cl-bg-gray);
  position: relative;
  grid-template-columns: 1fr 24.0625vw;
}
.c-mv-section.lower .ttl-area {
  padding-left: clamp(20px, 5.4166666667vw, 104px);
  padding-block: 75px;
  gap: 36px;
  z-index: 1;
  position: relative;
  background: none;
}
.c-mv-section.lower .ttl-area .c-ttl01 .en {
  margin-bottom: 12px;
}
.c-mv-section.lower .img-area {
  z-index: 0;
  width: 24.0625vw;
  width: 100%;
  height: auto;
  top: 0;
  bottom: auto;
  right: 9.7395833333vw;
  margin: 0 auto auto;
  -o-object-fit: none;
     object-fit: none;
  aspect-ratio: 462/328;
}
.c-mv-section.lower .img-area img {
  display: block;
  height: 100%;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.home-mv-section {
  position: relative;
}
.home-mv-section .inner-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 51.25vw;
  height: 21.1458333333vw;
  padding: 1.0416666667vw 2.0833333333vw;
  position: absolute;
  margin: auto;
  z-index: 1;
}
.home-mv-section .sub-ttl {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1.6666666667vw;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1.0416666667vw;
  letter-spacing: 0.1em;
}
.home-mv-section .sub-ttl .ico {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 10px;
  width: 2.0833333333vw;
}
.home-mv-section .main-ttl {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 2.5vw;
  font-weight: bold;
  line-height: 160%;
  letter-spacing: 0.1em;
}
.home-mv-section .main-ttl .large {
  font-size: 2.9166666667vw;
  line-height: 160%;
}
.home-mv-section .main-ttl .large.palt {
  margin: 0 -0.5em 0 -0.5em;
}
.home-mv-section .bg img {
  width: 100%;
}

.home-news-section {
  padding-top: 100px;
}
.home-news-section .c-ttl01 {
  margin-bottom: 0;
}
.home-news-section .ttl-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.home-news-section .news-list li {
  border-top: 1px solid var(--cl-border);
}
.home-news-section .news-list li:last-child {
  border-bottom: 1px solid var(--cl-border);
}
.home-news-section .news-list .inn {
  padding: 16px 64px 16px 24px;
  position: relative;
  display: block;
}
.home-news-section .news-list a.inn {
  padding-right: 60px;
}
.home-news-section .news-list a::before {
  -webkit-mask: url(../img/common/ico-arrow.svg) no-repeat center left/contain;
          mask: url(../img/common/ico-arrow.svg) no-repeat center left/contain;
  background: var(--cl-primary);
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 24px;
  margin: auto;
}
.home-news-section .news-list a.ico-pdf::before {
  -webkit-mask-image: url(../img/common/ico-pdf.svg);
          mask-image: url(../img/common/ico-pdf.svg);
  width: 20px;
  height: 22px;
}
.home-news-section .news-list .date {
  color: var(--cl-primary);
  font-size: 12px;
  font-weight: bold;
  font-family: var(--font-en);
}
.home-news-section .news-list .ttl {
  font-size: 14px;
}

.home-about-section .ttl-wrap,
.home-products-section .ttl-wrap {
  background: var(--cl-bg-gray);
  padding: 80px;
}
.home-about-section .img img,
.home-products-section .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-about-section .btn-wrap,
.home-products-section .btn-wrap {
  margin-top: 40px;
  text-align: center;
}

.home-products-section {
  overflow: hidden;
}
.home-products-section .swiper {
  margin-top: 16px;
}
.home-products-section .swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
.home-products-section .swiper .swiper-slide {
  border: 1px solid var(--cl-border);
  width: 306px;
  aspect-ratio: 1/1;
  position: relative;
}
.home-products-section .swiper .img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.home-products-section .swiper .txt {
  padding: 30px 30px 10px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.home-products-section .swiper .txt.clr-white {
  color: var(--cl-white);
}

.home-recruit-section {
  padding-block: 85px;
}
.home-recruit-section {
  position: relative;
  z-index: 2;
}
.home-recruit-section .bg-img {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
}
.home-recruit-section .bg-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-recruit-section .inn {
  background: var(--cl-white);
  padding: 80px 40px;
  max-width: 960px;
  margin: auto;
}
.home-recruit-section .btn-wrap {
  margin-top: 40px;
  text-align: center;
}

/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.company-access-section .map-area {
  width: 100%;
  height: 390px;
}
.company-access-section .map-area iframe {
  height: 100%;
  width: 100%;
  border: 0;
}
.company-access-section .access-txt-area {
  margin-top: 16px;
  background: var(--cl-bg-gray);
  padding: 40px clamp(20px, 3.3333333333vw, 40px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.company-access-section .access-txt-area .access-each .ttl {
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
}
.company-access-section .access-txt-area .access-each .desc {
  margin-top: 16px;
  font-size: 14px;
  line-height: 150%;
}

/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.privacy .privacy-list > li {
  padding-block: 40px;
  border-bottom: 1px solid var(--cl-border);
}
.privacy .privacy-list > li:nth-child(1) {
  padding-block: 0 40px;
}
.privacy .privacy-list > li:nth-last-child(1) {
  border: none;
}
.privacy .privacy-list > li .c-alphabet-list + .txt, .privacy .privacy-list > li .txt + .txt {
  margin-top: 24px;
}
.privacy .privacy-list > li .txt {
  line-height: 1.8;
}
.privacy .privacy-list > li .txt + .c-alphabet-list {
  margin-top: 24px;
}
.privacy .privacy-list > li .c-ttl02 {
  margin-bottom: 12px;
}

/* -----------------------------------------------
* contact Module
* contact ページ用
-------------------------------------------------- */
.contact-section .contact-inner-wrap {
  margin-top: 40px;
}
.contact-section .c-contact-step {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.contact-section .c-contact-step li {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  color: var(--cl-primary);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px 12px;
}
.contact-section .c-contact-step li .step-txt {
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  font-family: var(--font-en);
}
.contact-section .c-contact-step li .inn-txt {
  padding: 26px 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  border-radius: 5px;
  background: var(--cl-secondary);
  position: relative;
}
.contact-section .c-contact-step li.active {
  color: var(--cl-d-blue);
}
.contact-section .c-contact-step li.active .inn-txt {
  color: var(--cl-white);
  background: var(--cl-d-blue);
}
.contact-section .c-contact-step li:nth-child(1) {
  z-index: 2;
}
.contact-section .c-contact-step li:nth-child(2).active .inn-txt::before {
  background: var(--cl-d-blue);
}
.contact-section .c-contact-step li:nth-child(2) .inn-txt::before, .contact-section .c-contact-step li:nth-child(2) .inn-txt::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  margin: auto;
  width: 24px;
  height: 8px;
  background: var(--cl-secondary);
}
.contact-section .c-contact-step li:nth-child(2):has(+ .active) .inn-txt::after {
  background: var(--cl-d-blue);
}
.contact-section .note-txt-block {
  padding: 24px;
  margin-top: 24px;
  text-align: center;
  border-radius: 5px;
  background: var(--cl-bg-gray);
  font-size: 16px;
  line-height: 180%;
}
.contact-section .note-txt-block.cl-alert {
  color: var(--cl-alert);
}
.contact-section .note-txt-block.bg-blue {
  background: var(--cl-secondary);
}
.contact-section .note-txt-block.privacy-block {
  margin-top: 40px;
}
.contact-section .note-txt-block.privacy-block .q-wrap {
  padding: 0;
  border-top: 0;
  border-bottom: 0;
}
.contact-section .note-txt-block.privacy-block .input-area {
  margin-bottom: 16px;
}
.contact-section .note-txt-block.privacy-block .input-area label {
  font-weight: 700;
}
.contact-section .note-txt-block.privacy-block p a {
  font-weight: 700;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transition-property: -webkit-text-decoration;
  transition-property: -webkit-text-decoration;
  transition-property: text-decoration;
  transition-property: text-decoration, -webkit-text-decoration;
  -webkit-text-decoration: underline currentColor;
          text-decoration: underline currentColor;
}
.contact-section .note-txt-block.privacy-block p a:focus-visible {
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}
.contact-section .q-wrap {
  padding: 16px 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px 20px;
  border-bottom: 1px solid var(--cl-m-border);
}
.contact-section .q-wrap:first-child {
  border-top: 1px solid var(--cl-m-border);
}
.contact-section .label-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.contact-section .input-area {
  width: 100%;
}
.contact-section .input-area.privacy {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.contact-section .input-area.privacy .checkbox-group {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.contact-section .input-area.privacy .checkbox-group .wpcf7-checkbox {
  grid-template-columns: 100%;
}
.contact-section .contact-label {
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
}
.contact-section .required-txt {
  padding: 4px 6px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: var(--cl-white);
  font-size: 10px;
  font-weight: 700;
  line-height: 160%;
  border-radius: 2px;
  background: var(--cl-d-blue);
  border: 1px solid var(--cl-d-blue);
  position: absolute;
  right: 0;
  margin: auto;
}
.contact-section .required-txt.not-required {
  background: var(--cl-bg-gray);
  border: 1px solid var(--cl-border);
  color: var(--cl-text);
}
.contact-section .error-txt {
  color: var(--cl-alert);
  font-size: 10px;
  font-weight: 700;
}
.contact-section input[type=text],
.contact-section input[type=tel],
.contact-section input[type=email],
.contact-section textarea,
.contact-section select {
  padding: 16px;
  width: 100%;
  font-size: 16px !important;
  border: 1px solid var(--cl-m-border);
  border-radius: 5px;
  background: var(--cl-white);
}
.contact-section input[type=text].errored,
.contact-section input[type=tel].errored,
.contact-section input[type=email].errored,
.contact-section textarea.errored,
.contact-section select.errored {
  border: 1px solid var(--cl-alert);
  margin-bottom: 4px;
}
.contact-section .radio-group, .contact-section .checkbox-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px 21px;
  height: 100%;
}
.contact-section .radio-group .wpcf7-radio, .contact-section .radio-group .wpcf7-checkbox, .contact-section .checkbox-group .wpcf7-radio, .contact-section .checkbox-group .wpcf7-checkbox {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px 24px;
}
.contact-section .radio-group label, .contact-section .checkbox-group label {
  font-size: 14px;
  line-height: 1.2;
  min-height: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-left: 30px;
}
.contact-section .radio-group label::before, .contact-section .radio-group label::after, .contact-section .checkbox-group label::before, .contact-section .checkbox-group label::after {
  content: "";
  position: absolute;
}
.contact-section .radio-group label::before, .contact-section .checkbox-group label::before {
  top: 0px;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid var(--cl-border);
  border-radius: 15px;
  background: var(--cl-white);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.contact-section .radio-group label::after, .contact-section .checkbox-group label::after {
  top: 5px;
  left: 5px;
  width: 14px;
  height: 14px;
  border-radius: 15px;
  background: var(--cl-d-blue);
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.contact-section .radio-group label:has(input:checked)::after, .contact-section .checkbox-group label:has(input:checked)::after {
  opacity: 1;
}
.contact-section .radio-group label:has(input:checked)::before, .contact-section .checkbox-group label:has(input:checked)::before {
  background: var(--cl-white);
}
.contact-section .radio-group + .error-txt, .contact-section .checkbox-group + .error-txt {
  margin-top: 8px;
}
.contact-section .checkbox-group label::before {
  border-radius: 0;
}
.contact-section .checkbox-group label::after {
  top: 3px;
  width: 8px;
  height: 14px;
  background: transparent;
  border-right: 2px solid var(--cl-d-blue);
  border-bottom: 2px solid var(--cl-d-blue);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  left: 8px;
  border-radius: 0;
}
.contact-section .select-wrap {
  position: relative;
}
.contact-section .select-wrap select {
  cursor: pointer;
}
.contact-section .select-wrap::before {
  z-index: 1;
  content: "";
  border: solid var(--cl-d-blue);
  border-width: 0 3px 3px 0;
  display: inline-block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: -3px;
  right: 20px;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(45deg) translate3d(0, 0, 0);
          transform: rotate(45deg) translate3d(0, 0, 0);
  pointer-events: none;
}
.contact-section .wpcf7-response-output {
  display: none !important;
}
.contact-section .wpcf7-not-valid-tip {
  display: none !important;
}
.contact-section .btn-wrap {
  margin: 40px auto 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
.contact-section .contact-btn {
  display: block;
  text-align: center;
  background: var(--cl-d-blue);
  color: var(--cl-white);
  font-weight: 700;
  padding: 10px 40px;
  border-radius: 40px;
  border: 1px solid var(--cl-d-blue);
  min-width: 280px;
  max-width: 500px;
  padding: 20px 70px;
  font-size: 18px;
}
.contact-section .contact-btn.back-btn {
  border: 1px solid var(--cl-d-blue);
  background: var(--cl-white);
  color: var(--cl-d-blue);
}
.contact-section .submit-btn {
  color: var(--cl-white);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background var(--transition);
  transition: background var(--transition);
}
.contact-section .submit-btn input {
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  cursor: pointer;
}
.contact-section .confirm-block .q-wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contact-section .confirm-block .label-area {
  padding-top: 0;
}
.contact-section .btn-wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 280px;
  margin-inline: auto;
}
.contact-section .btn-wrap .c-btn01 {
  width: 100%;
}
.contact-section .input-block .input-area.input-tel input, .contact-section .input-block .input-area.input-fax input {
  max-width: 526px;
}
.contact-section .input-block .input-area.input-postcode input {
  max-width: 166px;
}
.contact-section .wpcf7-spinner {
  display: none !important;
}
.contact-section .wpcf7-response-output {
  display: none !important;
}

/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.recruit .recruit-mv-section {
  position: relative;
  width: 100%;
}
.recruit .recruit-mv-slider {
  width: 100%;
}
.recruit .recruit-mv-slider .swiper {
  width: 100%;
  position: relative;
}
.recruit .recruit-mv-slider .swiper::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
  left: 0;
  top: 0;
  z-index: 2;
  background-image: linear-gradient(30deg, rgba(15, 65, 66, 0.3019607843), rgba(158, 217, 218, 0.2) 80%);
}
.recruit .recruit-mv-slider .swiper::after {
  background: url(../img/recruit/mv-deco.svg) no-repeat center center/cover;
  content: "";
  display: block;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 55.3645833333vw;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 1063/743;
  opacity: 0.5;
}
.recruit .recruit-mv-slider .swiper .slide-content {
  position: absolute;
  z-index: 4;
  bottom: 100px;
  color: #fff;
  padding: 0 100px;
  max-width: 1200px;
}
.recruit .recruit-mv-slider .swiper .slide-content h1 {
  font-size: 4.1666666667vw;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 4px;
  letter-spacing: 0.09em;
}
.recruit .recruit-mv-slider .swiper .slide-content .subtitle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-size: 1.875vw;
  font-weight: 500;
  letter-spacing: 0.09em;
}
.recruit .recruit-mv-slider .swiper .slide-content .subtitle .subtitle-icon {
  width: 40px;
  height: 35px;
}
.recruit .recruit-mv-slider .swiper .slide-content .subtitle .subtitle-icon img {
  position: relative;
  width: 100%;
}
.recruit .recruit-mv-slider .swiper .swiper-slide {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.recruit .recruit-mv-slider .swiper .swiper-slide img {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.recruit .recruit-mv-slider .swiper-pagination {
  position: absolute;
  bottom: 60px;
  right: 80px;
  width: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  z-index: 100;
}
.recruit .recruit-mv-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--cl-primary);
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 50%;
}
.recruit .recruit-mv-slider .swiper-pagination .swiper-pagination-bullet-active {
  width: 24px;
  height: 24px;
  background: #fff;
  border: 8px solid var(--cl-primary);
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  position: relative;
}
.recruit .recruit-mv-slider .swiper-pagination .swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-animation: pulseCircle 3s ease-out infinite;
          animation: pulseCircle 3s ease-out infinite;
}
@keyframes pulseCircle {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(2.0833);
            transform: translate(-50%, -50%) scale(2.0833);
    opacity: 0;
  }
}
.recruit .recruit-mv-slider .swiper .swiper-slide {
  opacity: 0.5;
  -webkit-transition: opacity 1.5s ease-in-out;
  transition: opacity 1.5s ease-in-out;
}
.recruit .recruit-mv-slider .swiper .swiper-slide-active {
  opacity: 1;
}
.recruit .recruit-mv-slider .swiper .swiper-slide {
  position: relative;
  width: 100%;
}
.recruit .c-anchor-link-area {
  margin-top: 50px;
  margin-bottom: 50px;
}
.recruit .home-about-section {
  padding-bottom: 100px;
}
.recruit .home-about-section .inner-block {
  display: grid;
  grid-template-columns: 1fr 520px;
}
.recruit .home-about-section .inner-block .ttl-wrap {
  width: 100%;
}
.recruit .home-about-section .inner-block .img {
  width: 100%;
  aspect-ratio: 1/1;
}
.recruit .home-about-section .inner-block .img img {
  height: 100%;
}
.recruit .home-about-section .c-ttl01 .ja {
  line-height: 110%;
}
.recruit .home-about-section .img img {
  height: auto;
}
.recruit .employee-section {
  background-color: var(--cl-bg-gray);
}
.recruit .employee-section .desc {
  text-align: center;
}
.recruit .employee-section .employee-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.recruit .employee-section .employee-list > li {
  margin-top: 0;
  margin-bottom: auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 160px minmax(57px, auto) auto;
  gap: 16px;
  max-width: 346px;
  width: 100%;
  text-align: center;
}
.recruit .employee-section .employee-list > li .ttl {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.4em;
}
.recruit .employee-section .btn-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.recruit .flow-section .inner-block02 {
  max-width: 1760px;
  padding-inline: 20px;
  margin: 0 auto;
}
.recruit .flow-section .c-company-flow-list {
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.recruit .flow-section .js--flow-slider .swiper-slide {
  height: auto;
}
.recruit .flow-section .js--flow-slider .contents-wrap {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.recruit .flow-section .js--flow-slider .img-area {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.recruit .flow-section .js--flow-slider .txt-area {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.recruit .recruit-section .contents-wrap {
  padding: 80px clamp(20px, 6.25vw, 80px);
  background: var(--cl-bg-gray);
  display: grid;
  grid-template-columns: 1fr clamp(240px, 40.625vw, 520px);
  grid-template-areas: "ttl ttl" "txt img";
  gap: 40px 16px;
}
.recruit .recruit-section .contents-wrap .c-ttl01 {
  grid-area: ttl;
  margin-bottom: 0;
}
.recruit .recruit-section .contents-wrap .txt-area {
  grid-area: txt;
  align-self: center;
}
.recruit .recruit-section .contents-wrap .txt-area .txt + .txt {
  margin-top: 16px;
}
.recruit .recruit-section .contents-wrap .txt-area .txt {
  font-size: 16px;
  line-height: 180%;
}
.recruit .recruit-section .contents-wrap .txt-area .txt .small {
  font-size: 14px;
}
.recruit .recruit-section .contents-wrap .txt-area .btn-wrap {
  justify-self: center;
  margin-top: 40px;
  margin-right: 24px;
}
.recruit .recruit-section .contents-wrap .img {
  grid-area: img;
}

/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.products .maker {
  padding-block: 0 100px;
}
.products .maker .txt {
  text-align: center;
  font-weight: bold;
}
.products .products-list {
  width: 100%;
  gap: 20px;
  height: auto;
  vertical-align: bottom;
  padding-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.products .products-list:last-child {
  padding-bottom: 0;
}
.products .products-list li {
  background-color: var(--cl-secondary);
  padding: 15px;
  gap: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.products .products-list li img {
  width: 70px;
}
.products .products-list li .product-ttl {
  font-size: 16px;
  line-height: 180%;
  font-weight: normal;
}
.products .maker-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-bottom: 40px;
}
.products .maker-list .maker-box {
  width: 100%;
  height: auto;
  position: relative;
}
.products .maker-list .maker-box::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  background-color: var(--cl-primary);
  top: 0;
  left: 20px;
}
.products .maker-list .maker-box .maker-link {
  background-color: var(--cl-secondary);
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.products .maker-list .maker-box .maker-link .maker-ttl {
  font-size: 16px;
  line-height: 140%;
  font-weight: bold;
}
.products .maker-list .maker-box .maker-link .link-txt {
  display: inline-block;
  font-size: 14px;
  padding-bottom: 14px;
  position: relative;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.products .maker-list .maker-box .maker-link .link-txt::before {
  position: absolute;
  content: "";
  width: 146px;
  height: 1px;
  background-color: var(--cl-d-border);
  bottom: 0;
  left: 0;
}
.products .maker-list .maker-box .maker-link .link-txt::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  -webkit-mask: url("/img/common/ico-arrow.svg");
          mask: url("/img/common/ico-arrow.svg");
  background: var(--cl-d-border);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  top: 0;
  left: 120px;
}
.products .maker-list .maker-box:hover .link-txt {
  color: var(--cl-primary);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.products .maker-list .maker-box:hover .link-txt::before {
  background-color: var(--cl-primary);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.products .maker-list .maker-box:hover .link-txt::after {
  background: var(--cl-primary);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.news .news-list {
  padding-bottom: 40px;
}
.news .news-list li {
  border-top: 1px solid var(--cl-border);
}
.news .news-list li:last-child {
  border-bottom: 1px solid var(--cl-border);
}
.news .news-list .inn {
  padding: 24px 88px 24px 24px;
  position: relative;
  display: block;
}
.news .news-list a.inn {
  padding-right: 60px;
}
.news .news-list a::before {
  -webkit-mask: url(../img/common/ico-arrow.svg) no-repeat center left/contain;
          mask: url(../img/common/ico-arrow.svg) no-repeat center left/contain;
  background: var(--cl-primary);
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 24px;
  margin: auto;
}
.news .news-list a.ico-pdf::before {
  -webkit-mask-image: url(../img/common/ico-pdf.svg);
          mask-image: url(../img/common/ico-pdf.svg);
  width: 20px;
  height: 22px;
}
.news .news-list .date {
  color: var(--cl-primary);
  font-weight: bold;
  font-family: var(--font-en);
}
.news .news-list .ttl {
  font-weight: 400;
}

/* -----------------------------------------------
* 404 Module
* 404 ページ用
-------------------------------------------------- */
.error-section .txt {
  font-size: 16px;
  line-height: 180%;
}
.error-section .btn-wrap {
  margin-top: 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 14px;
  }
  body {
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  #wrapper {
    min-width: 320px;
  }
  .pc {
    display: none !important;
  }
  .c-header .logo img {
    width: 147px;
  }
  .c-header .logo .txt {
    font-size: 10px;
    margin-left: 20px;
  }
  .c-nav .c-link-area {
    margin-top: 20px;
  }
  .c-nav .btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-nav-btn {
    width: 40px;
    height: 40px;
    right: 10px;
  }
  .c-nav-btn .inn {
    width: 18px;
    height: 14px;
  }
  .c-nav-btn .line:nth-child(2) {
    top: 6px;
  }
  .c-nav-btn .line:nth-child(3) {
    top: 12px;
  }
  .c-nav-btn.is-open .line:nth-child(1), .c-nav-btn.is-open .line:nth-child(3) {
    top: 6px;
  }
  .c-footer {
    padding-block: 40px;
  }
  .c-footer .top-link-wrap .btn-area {
    padding-top: 40px;
  }
  .c-footer .top-link-wrap .btn-area .btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-footer .top-link-wrap .btn-area .link-list {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 40px;
    gap: 8px 16px;
  }
  .c-footer .bottom-link-wrap {
    margin-top: 16px;
  }
  .c-footer .bottom-link-wrap .sub-link-list {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px 20px;
  }
  .c-footer .bottom-link-wrap .sub-link-list li + li::before {
    top: 3px;
    left: -10px;
  }
  .c-footer .bottom-link-wrap .copyright {
    margin-top: 40px;
    text-align: center;
  }
  #pagetop {
    right: 20px;
  }
  #pagetop a {
    width: 50px;
    height: 50px;
  }
  #pagetop a .inn {
    font-size: 12px;
  }
  .c-ttl01 {
    margin-bottom: 16px;
  }
  .c-ttl01 .en {
    margin-bottom: 8px;
    font-size: 12px;
  }
  .c-ttl01 .ja {
    font-size: 24px;
  }
  .c-ttl02 {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .c-btn01 {
    padding: 16px 20px 16px 40px;
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
    font-size: 14px;
  }
  .c-anchor-btn {
    font-size: 14px;
    padding-block: 16px;
  }
  .c-section + .c-section {
    margin-top: 40px;
  }
  .c-section02 {
    padding-block: 40px;
  }
  .c-section02.pt-0 {
    padding-top: 40px;
    margin-top: -40px;
  }
  .c-link-area .box {
    max-width: 290px;
    width: 100%;
    margin: auto;
  }
  .c-link-area .num {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .c-breadcrumb-list > li {
    font-size: 12px;
  }
  .c-anchor-link-area {
    margin-top: 12px;
  }
  .c-anchor-link-list {
    grid-template-columns: 1fr 1fr;
  }
  .c-anchor-link-list > li {
    height: 100%;
  }
  .c-anchor-link-list > li a {
    height: 100%;
  }
  .c-anchor-link-list > li .c-anchor-btn {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c-anchor-link-list > li .inn-txt {
    vertical-align: middle;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .c-anchor-link-list > li:not(:first-child):nth-child(2n+1)::before {
    content: unset;
  }
  .c-anchor-link-list > li:not(:first-child):nth-child(n+3)::after {
    position: absolute;
    content: "";
    background: var(--cl-m-border);
    top: 0;
    left: 0;
    margin: auto;
    width: calc(100% - 16px);
    height: 1px;
    right: 0;
  }
  .c-ttl-cont-wrap {
    grid-template-columns: 100%;
    gap: 16px;
  }
  .c-ttl-cont-wrap .c-ttl01 {
    margin-bottom: 0;
  }
  .c-company-flow-list {
    margin-top: 24px;
  }
  .c-alphabet-list li {
    padding-left: 20px;
    font-size: 12px;
  }
  .c-paging-area {
    gap: 8px;
  }
  .c-tbl01 tr {
    grid-template-columns: 100%;
    row-gap: 8px;
    padding-block: 8px;
  }
  .c-tbl01 tr:first-child {
    padding-top: 0;
  }
  .c-tbl01 tr:last-child {
    padding-bottom: 0;
  }
  .c-tbl01 td {
    font-size: 14px;
  }
  .c-history-tbl tr {
    grid-template-columns: 100%;
  }
  .c-history-tbl tr:first-child {
    margin-bottom: 8px;
  }
  .c-history-tbl tr:first-child::after {
    height: calc(100% - 11px);
  }
  .c-history-tbl tr:last-child {
    margin-top: 8px;
  }
  .c-history-tbl tr:last-child::after {
    height: 50%;
  }
  .c-history-tbl tr:not(:first-child):not(:last-child) {
    padding-block: 8px;
  }
  .c-history-tbl tr::before {
    top: 15px;
    bottom: auto;
    border-width: 3px;
  }
  .c-history-tbl th .sub-txt {
    font-weight: 500;
  }
  .c-history-tbl th .main-txt {
    font-size: 14px;
  }
  .c-history-tbl td {
    font-size: 14px;
  }
  .c-tbl02 tr {
    grid-template-columns: 1fr;
  }
  .c-tbl02 tr th, .c-tbl02 tr td {
    font-size: 14px;
  }
  .c-tbl02 tr td {
    gap: 8px;
  }
  .c-tbl02 tr .flex-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .c-tbl02 tr .flex-box.time, .c-tbl02 tr .flex-box.pay {
    gap: 0;
  }
  .c-tbl02 tr .ttl-tip {
    font-size: 14px;
  }
  .c-cta-section {
    padding-block: 40px 74px;
  }
  .c-cta-section .inn {
    padding-block: 40px;
  }
  .c-cta-section .c-link-area {
    gap: 33px;
    margin-top: 16px;
  }
  .c-cta-section .c-link-area .box + .box::before {
    top: -18px;
    width: calc(100% + 40px);
    left: -20px;
  }
  .c-mv-section:not(.lower) .contents-wrap {
    min-height: 179px;
  }
  .c-mv-section .contents-wrap {
    grid-template-columns: min(60%, 667px) 1fr;
    gap: clamp(12px, 4.2666666667vw, 16px);
  }
  .c-mv-section .contents-wrap .ttl-area {
    padding: 30px clamp(12px, 5.3333333333vw, 20px);
    gap: 16px;
  }
  .c-mv-section .contents-wrap .ttl-area .mv-ttl .ja {
    font-size: clamp(20px, 6.4vw, 24px);
  }
  .c-mv-section .contents-wrap .ttl-area .c-breadcrumb-list {
    padding-block: 0;
    font-size: 12px;
  }
  .c-mv-section.lower .contents-wrap {
    display: block;
  }
  .c-mv-section.lower .ttl-area {
    gap: 15px;
    padding-block: 30px;
  }
  .c-mv-section.lower .ttl-area .c-ttl01 .en {
    font-size: 12px;
  }
  .c-mv-section.lower .img-area {
    position: absolute;
    width: 34.6666666667vw;
    right: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .home-mv-section .inner-block {
    width: 100vw;
    height: 45.3333333333vw;
    padding: 4.2666666667vw 0 4.2666666667vw 5.3333333333vw;
    bottom: 38.4vw;
    left: 0;
  }
  .home-mv-section .sub-ttl {
    font-size: 4.2666666667vw;
  }
  .home-mv-section .sub-ttl .ico {
    margin-right: 5px;
    width: 5.3333333333vw;
  }
  .home-mv-section .main-ttl {
    line-height: 140%;
    font-size: 5.8666666667vw;
  }
  .home-mv-section .main-ttl .large {
    line-height: 140%;
    font-size: 7.4666666667vw;
  }
  .home-news-section {
    padding-top: 40px;
  }
  .home-news-section .c-ttl01 {
    margin-bottom: 0;
  }
  .home-news-section .ttl-wrap {
    margin-bottom: 16px;
  }
  .home-news-section .ttl-wrap .btn-wrap {
    margin-left: auto;
    margin-top: auto;
  }
  .home-news-section .news-list .inn {
    padding: 8px 20px;
  }
  .home-news-section .news-list a.inn {
    padding-right: 50px;
  }
  .home-news-section .news-list a::before {
    right: 20px;
  }
  .home-news-section .news-list .date {
    margin-bottom: 8px;
  }
  .home-about-section .img,
  .home-products-section .img {
    aspect-ratio: 1/1;
  }
  .home-about-section .btn-wrap,
  .home-products-section .btn-wrap {
    margin-top: 16px;
  }
  .home-products-section .column-wrap {
    padding-inline: 20px;
  }
  .home-products-section .swiper .swiper-slide {
    width: 168px;
  }
  .home-products-section .swiper .txt {
    font-size: 12px;
    padding: 16px 16px 8px;
    line-height: 1.6;
  }
  .home-recruit-section {
    padding-block: 80px;
  }
  .home-recruit-section .inn {
    padding: 40px 20px;
  }
  .home-recruit-section .btn-wrap {
    margin-top: 16px;
  }
  .company-access-section .map-area {
    height: 240px;
  }
  .company-access-section .access-txt-area {
    grid-template-columns: 100%;
    padding: 20px;
  }
  .company-access-section .access-txt-area .access-each:last-child {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--cl-border);
  }
  .privacy .privacy-list > li {
    padding-block: 16px;
  }
  .privacy .privacy-list > li:nth-child(1) {
    padding-block: 0 20px;
  }
  .privacy .privacy-list > li .c-alphabet-list + .txt, .privacy .privacy-list > li .txt + .txt {
    margin-top: 8px;
  }
  .privacy .privacy-list > li .txt {
    font-size: 14px;
  }
  .privacy .privacy-list > li .txt + .c-alphabet-list {
    margin-top: 8px;
  }
  .privacy .privacy-list > li .c-ttl02 {
    margin-bottom: 8px;
  }
  .contact .c-mv-section .contents-wrap .img-area img {
    -o-object-position: 47% center;
       object-position: 47% center;
  }
  .contact.complete .note-txt-block {
    text-align: left;
  }
  .contact-section {
    padding-bottom: 74px;
  }
  .contact-section .c-contact-step {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .contact-section .c-contact-step li {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact-section .c-contact-step li .step-txt {
    text-align: center;
  }
  .contact-section .c-contact-step li .inn-txt {
    width: 100%;
    padding: 16px;
    font-size: 16px;
  }
  .contact-section .c-contact-step li:nth-child(2) .inn-txt::before, .contact-section .c-contact-step li:nth-child(2) .inn-txt::after {
    width: 4px;
    height: 30px;
  }
  .contact-section .c-contact-step li:nth-child(2) .inn-txt::before {
    top: auto;
    bottom: 100%;
  }
  .contact-section .c-contact-step li:nth-child(2) .inn-txt::after {
    top: 100%;
    bottom: auto;
  }
  .contact-section .note-txt-block {
    font-size: 14px;
  }
  .contact-section .note-txt-block.privacy-block .input-area label {
    font-size: 16px;
  }
  .contact-section .note-txt-block:not(.privacy-block) {
    padding: 16px;
  }
  .contact-section .q-wrap {
    padding: 20px 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 12px 20px;
  }
  .contact-section .label-area {
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 10px;
    width: 100%;
  }
  .contact-section .contact-label {
    font-size: 16px;
  }
  .contact-section input[type=text],
  .contact-section input[type=tel],
  .contact-section input[type=email],
  .contact-section textarea,
  .contact-section select {
    padding: 16px 10px;
  }
  .contact-section .radio-group, .contact-section .checkbox-group {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact-section .radio-group .wpcf7-radio, .contact-section .radio-group .wpcf7-checkbox, .contact-section .checkbox-group .wpcf7-radio, .contact-section .checkbox-group .wpcf7-checkbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .contact-section .btn-wrap {
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact-section .contact-btn {
    width: 100%;
  }
  .contact-section .submit-btn input {
    font-size: 14px !important;
  }
  .recruit .recruit-mv-slider .swiper::after {
    background: url(../img/recruit/mv-deco_sp.svg) no-repeat center center/cover;
    aspect-ratio: 314/269;
    width: 83.7333333333vw;
    height: auto;
  }
  .recruit .recruit-mv-slider .swiper .slide-content {
    padding: 0 30px 0 20px;
    bottom: 18%;
  }
  .recruit .recruit-mv-slider .swiper .slide-content h1 {
    font-size: 9.6vw;
    margin-bottom: 10px;
  }
  .recruit .recruit-mv-slider .swiper .slide-content .subtitle {
    font-size: 4.8vw;
    gap: 5px;
  }
  .recruit .recruit-mv-slider .swiper .slide-content .subtitle .subtitle-icon {
    width: 28px;
    height: 24px;
  }
  .recruit .recruit-mv-slider .swiper .swiper-slide {
    height: 70vh;
    max-height: 610px;
    width: 100% !important;
  }
  .recruit .recruit-mv-slider .swiper .swiper-slide img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .recruit .recruit-mv-slider .swiper-pagination {
    right: 20px;
    bottom: 40px;
    gap: 24px;
  }
  .recruit .recruit-mv-slider .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  .recruit .recruit-mv-slider .swiper-pagination .swiper-pagination-bullet-active {
    width: 16px;
    border-width: 4px;
    height: 16px;
  }
  .recruit .recruit-mv-slider .swiper-pagination .swiper-pagination-bullet-active::before {
    width: 16px;
    height: 16px;
  }
  .recruit .c-anchor-link-area {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .recruit .home-about-section {
    padding-bottom: 40px;
  }
  .recruit .home-about-section .ttl-wrap {
    padding: 40px 20px;
  }
  .recruit .employee-section .desc {
    text-align: left;
  }
  .recruit .employee-section .employee-list {
    display: block;
    margin-bottom: 16px;
  }
  .recruit .employee-section .employee-list > li {
    max-width: 400px;
    margin: 0 auto;
    gap: 8px;
    grid-template-rows: auto;
  }
  .recruit .employee-section .employee-list > li + li {
    margin-top: 16px;
  }
  .recruit .employee-section .employee-list > li .ttl {
    font-size: 18px;
  }
  .recruit .employee-section .employee-list > li img {
    max-width: 120px;
  }
  .recruit .recruit-section .contents-wrap {
    grid-template-columns: 100%;
    grid-template-areas: "ttl" " img" " txt";
    row-gap: 24px;
    padding: 40px 20px;
  }
  .recruit .recruit-section .contents-wrap .txt-area .txt {
    font-size: 14px;
    line-height: 150%;
  }
  .recruit .recruit-section .contents-wrap .txt-area .btn-wrap {
    margin-top: 16px;
    margin-right: 0;
  }
  .recruit .recruit-section .contents-wrap .img {
    max-width: 500px;
    margin-inline: auto;
  }
  .products .maker {
    padding-block: 0 40px;
  }
  .products .products-list li .product-ttl {
    font-size: 14px;
  }
  .products .maker-list { /* スマホ */
    grid-template-columns: 1fr;
    gap: clamp(12px, 3vw, 20px);
    margin: 0;
    padding: 0 0 clamp(20px, 4vw, 40px);
  }
  .products .maker-list .maker-box {
    width: 100%;
  }
  .products .maker-list .maker-box .maker-link {
    padding: 24px 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: clamp(10px, 2vw, 16px);
    min-width: 0;
    width: 100%;
  }
  .products .maker-list .maker-box .maker-link .maker-ttl {
    font-size: 14px;
  }
  .products .maker-list .maker-box .maker-link .link-txt {
    font-size: clamp(10px, 3.2vw, 12px);
    padding-bottom: 9px;
    padding-right: 26px;
    color: var(--cl-primary);
    white-space: nowrap;
  }
  .products .maker-list .maker-box .maker-link .link-txt::before {
    width: 100%;
    background-color: var(--cl-primary);
  }
  .products .maker-list .maker-box .maker-link .link-txt::after {
    right: 0;
    left: auto;
    background-color: var(--cl-primary);
  }
  .news .news-list {
    padding-bottom: 24px;
  }
  .news .news-list .inn {
    padding: 8px 20px;
  }
  .news .news-list a.inn {
    padding-right: 50px;
  }
  .news .news-list a::before {
    right: 20px;
  }
  .news .news-list .date {
    margin-bottom: 8px;
    font-size: 12px;
  }
  .news .news-list .ttl {
    font-size: 14px;
  }
  .error-section .txt {
    font-size: 14px;
    max-width: 500px;
    margin-inline: auto;
  }
  .error-section .btn-wrap {
    margin-top: 24px;
    width: auto;
    max-width: 500px;
  }
}
@media only screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  .inner-block {
    max-width: 1240px;
  }
  a,
  a::before,
  a::after,
  button,
  button::before,
  button::after {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
  .sp {
    display: none !important;
  }
  .c-footer .top-link-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .c-footer .top-link-wrap .detail-area .logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c-footer .top-link-wrap .btn-area .btn-wrap .c-btn01 {
    width: 230px;
  }
  .c-footer .bottom-link-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .c-ttl01.mv-ttl .ja {
    font-size: clamp(36px, 4vw, 48px);
  }
  .c-anchor-link-list > li {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .c-company-flow-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .c-company-flow-list li {
    height: 100%;
  }
  .c-company-flow-list li .contents-wrap {
    height: 100%;
  }
  .c-slider.sp-slider .slider-parts {
    display: none;
  }
  .c-link.tel {
    color: var(--cl-text);
    text-decoration: none;
  }
  .c-tbl01 tr th, .c-tbl01 tr td {
    padding-bottom: 24px;
  }
  .c-tbl01 tr + tr th, .c-tbl01 tr + tr td {
    padding-top: 24px;
  }
  .c-tbl01 td {
    padding-left: 24px;
  }
  .c-tbl02 tr .flex-box.time p:nth-child(2n), .c-tbl02 tr .flex-box.pay p:nth-child(2n) {
    position: relative;
  }
  .c-tbl02 tr .flex-box.time p:nth-child(2n)::before, .c-tbl02 tr .flex-box.pay p:nth-child(2n)::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 1px;
    height: 16px;
    background-color: var(--cl-border);
  }
  .c-cta-section .txt {
    text-align: center;
  }
  .c-mv-section:not(.lower) .ttl-area,
  .c-mv-section:not(.lower) .img-area {
    min-height: 360px;
  }
  .home-mv-section .inner-block {
    top: 0;
    bottom: 0;
    left: 10.5208333333vw;
  }
  .home-news-section .inner-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .home-news-section .ttl-wrap {
    width: 26%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home-news-section .ttl-wrap .btn-wrap {
    margin-top: auto;
  }
  .home-news-section .news-area {
    padding-left: 40px;
    width: 74%;
  }
  .home-news-section .news-list .inn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .home-news-section .news-list .date {
    width: 80px;
  }
  .home-news-section .news-list .ttl {
    padding-left: 16px;
    width: calc(100% - 80px);
  }
  .home-about-section .inner-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .home-about-section .ttl-wrap {
    width: 55%;
  }
  .home-about-section .img {
    padding-left: 16px;
    width: 45%;
  }
  .home-products-section .column-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 16px;
  }
  .home-products-section .ttl-wrap,
  .home-products-section .img {
    width: calc((100% - 16px) / 2);
  }
  .home-products-section .ttl-wrap .inn {
    max-width: 510px;
  }
  .home-recruit-section .txt {
    text-align: center;
  }
  .company-access-section .access-txt-area .access-each:first-child {
    padding-right: clamp(20px, 3.3333333333vw, 40px);
  }
  .company-access-section .access-txt-area .access-each:last-child {
    padding-left: clamp(20px, 3.3333333333vw, 40px);
    border-left: 1px solid var(--cl-border);
  }
  .contact-section .c-contact-step li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact-section .c-contact-step li:nth-child(2) .inn-txt::before {
    right: 100%;
  }
  .contact-section .c-contact-step li:nth-child(2) .inn-txt::after {
    left: 100%;
  }
  .contact-section .q-wrap.radiobtn-wrap {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact-section .label-area {
    padding-top: 15px;
    width: 220px;
  }
  .contact-section .label-area.pt-0 {
    padding-top: 0;
  }
  .contact-section .contact-label {
    max-width: 160px;
  }
  .contact-section .radio-group .wpcf7-radio, .contact-section .radio-group .wpcf7-checkbox, .contact-section .checkbox-group .wpcf7-radio, .contact-section .checkbox-group .wpcf7-checkbox {
    margin-top: 7px;
  }
  .contact-section .contact-btn:hover {
    background: var(--cl-white);
    color: var(--cl-d-blue);
  }
  .contact-section .confirm-block .q-wrap {
    padding: 24px;
  }
  .contact-section .btn-wrap .c-btn01 {
    padding-block: 34px;
  }
  .recruit .recruit-mv-slider .swiper::before {
    aspect-ratio: 1920/808;
  }
  .recruit .recruit-mv-slider .swiper .swiper-slide {
    aspect-ratio: 1920/808;
    height: 100%;
  }
  .recruit .recruit-mv-slider .swiper .swiper-slide img {
    width: 100%;
  }
  .recruit .home-about-section .ttl-wrap {
    padding: 35px 100px 35px 80px;
    width: calc(100% - 520px);
  }
  .recruit .home-about-section .img {
    width: 520px;
  }
  .news .news-list .inn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .news .news-list .date {
    width: 90px;
    font-size: 16px;
  }
  .news .news-list .ttl {
    padding-left: 16px;
    width: calc(100% - 80px);
    font-size: 16px;
  }
  .error-section {
    padding-block: 120px;
  }
  .error-section .txt {
    text-align: center;
  }
}
@media only screen and (min-width: 1201px) {
  .c-header-wrap {
    padding: 0 8px 0 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .c-header-wrap .tab-m {
    display: none !important;
  }
  .c-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: auto;
  }
  .c-nav .nav-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .c-nav .nav-list li.is-active a {
    color: var(--cl-primary);
  }
  .c-nav .nav-list li.is-active a .link-inn::before {
    opacity: 1;
  }
  .c-nav .nav-list a {
    padding-inline: 1.8229166667vw;
  }
  .c-nav .nav-list a .link-inn {
    padding-block: 37px;
  }
  .c-nav .language-btn-wrap {
    margin-left: 1.8229166667vw;
  }
  .c-nav .btn-wrap {
    margin-left: 4.1666666667vw;
  }
  .c-nav-btn {
    display: none;
  }
}
@media only screen and (max-width: 1200px) {
  .c-header-wrap .tab-w {
    display: none !important;
  }
  .c-header {
    background: var(--cl-white);
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    padding: 20px 40px;
  }
  .c-nav {
    background: var(--cl-white);
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: calc(var(--vh) * 100);
    z-index: 99;
    padding: 100px 20px 50px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    overflow-y: scroll;
    opacity: 0;
    pointer-events: none;
  }
  .c-nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .c-nav .nav-list {
    max-width: 350px;
    margin: auto;
  }
  .c-nav .nav-list a {
    padding: 12px 20px;
    position: relative;
  }
  .c-nav .nav-list a::before {
    border: solid var(--cl-primary);
    border-width: 0 2px 2px 0;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 8px;
    height: 8px;
    margin: auto;
    rotate: -45deg;
  }
  .c-nav .language-btn-wrap {
    max-width: 350px;
    margin: auto;
  }
  .c-nav .btn-wrap {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 20px;
  }
  .recruit .home-about-section .ttl-wrap {
    width: 100%;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 767px) {
  .c-header {
    padding: 14px 60px 14px 20px;
  }
}
@media only screen and (min-width: 1201px) and (max-width: 1600px) {
  .c-header .logo img {
    width: 150px;
  }
  .c-header .logo a {
    display: block;
  }
  .c-header .logo .txt {
    display: block;
    margin: 10px 0 0 0;
  }
  .c-nav .nav-list a {
    font-size: 14px;
  }
  .c-nav .btn-wrap {
    margin-left: 2.5vw;
  }
}
@media only screen and (max-width: 767px) and (max-width: 375px) {
  .c-header .logo img {
    width: 39.2vw;
  }
  .c-header .logo .txt {
    margin-left: 5.3333333333vw;
  }
}
@media (any-hover: hover) {
  .c-nav .nav-list a:hover {
    color: var(--cl-primary);
  }
  .c-nav .language-btn-wrap .lang-list li a:hover {
    text-decoration: none;
  }
  .c-footer .top-link-wrap .btn-area .link-list a:hover {
    color: var(--cl-primary);
  }
  .c-footer .bottom-link-wrap .sub-link-list li a:hover {
    color: var(--cl-primary);
  }
  #pagetop a:hover {
    background: var(--cl-d-blue);
  }
  .c-btn01:hover {
    background: var(--cl-d-blue);
  }
  .c-btn01.btn-secondary:hover {
    background: var(--cl-d-blue);
    border-color: var(--cl-d-blue);
  }
  .c-btn01.btn-secondary:hover .btn-inn {
    color: var(--cl-white);
  }
  .c-btn01.btn-secondary:hover .btn-inn::before {
    background: var(--cl-white);
  }
  .c-btn02:hover {
    color: var(--cl-primary);
  }
  .c-anchor-btn:hover {
    background: var(--cl-d-blue);
    color: var(--cl-white);
  }
  .c-anchor-btn:hover .inn-txt::before {
    background: var(--cl-white);
  }
  .c-back-btn:hover {
    color: var(--cl-primary);
    border-color: transparent;
  }
  .c-breadcrumb-list > li a:hover {
    color: var(--cl-primary);
    -webkit-text-decoration-color: currentColor;
            text-decoration-color: currentColor;
  }
  .c-slider .swiper-button-next:hover,
  .c-slider .swiper-button-prev:hover {
    background: var(--cl-d-blue);
  }
  .c-paging-area .page-numbers:not(.current):not(.dots):not(.prev):not(.next):hover {
    background: var(--cl-primary);
    color: var(--cl-white);
    cursor: pointer;
  }
  .c-paging-area .prev:hover,
  .c-paging-area .next:hover {
    background: var(--cl-white);
    color: var(--cl-primary);
  }
  .home-news-section .news-list a:hover {
    background: var(--cl-secondary);
  }
  .contact-section .note-txt-block.privacy-block p a:hover {
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
  .news .news-list a:hover {
    background: var(--cl-secondary);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .c-footer .top-link-wrap .detail-area .logo {
    display: block;
  }
  .c-footer .top-link-wrap .detail-area .logo img {
    width: 150px;
  }
}
@media only screen and (max-width: 1000px) {
  .c-footer .top-link-wrap .detail-area .logo .txt {
    display: block;
    margin: 10px 0 0 0;
    width: 100%;
  }
}
@media only screen and (max-width: 1150px) {
  .c-link-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-link-area .box + .box::before {
    max-width: 400px;
    width: 100%;
    height: 1px;
    top: -20px;
    right: 0;
    left: 0;
    margin: auto;
  }
}
@media only screen and (max-width: 375px) {
  .c-link-area .tag {
    padding: 1.8666666667vw;
  }
  .c-link-area .num-txt {
    padding-left: 2.6666666667vw;
    font-size: 8.5333333333vw;
  }
  .c-link-area .small {
    font-size: 3.7333333333vw;
  }
}
@media only screen and (max-width: 375px) and (max-width: 350px) {
  .c-link-area .num-txt {
    font-size: 8vw;
  }
}
@media only screen and (max-width: 500px) {
  .c-paging-area .page-numbers {
    width: 30px;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1500px) {
  .c-mv-section.lower .contents-wrap {
    padding-right: 186px;
  }
}
@media only screen and (max-width: 1100px) {
  .home-about-section .ttl-wrap,
  .home-products-section .ttl-wrap {
    padding: 50px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .recruit .recruit-mv-slider .swiper .slide-content {
    padding: 0 80px;
    bottom: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1200px) and (max-width: 1000px) {
  .recruit .recruit-mv-slider .swiper .slide-content {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 900px) {
  .recruit .c-anchor-link-area .c-anchor-link-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 1070px) {
  .recruit .home-about-section .inner-block {
    display: block;
  }
}
@media only screen and (min-width: 768px) and (max-width: 870px) {
  .recruit .flow-section .c-company-flow-list {
    margin-top: 0;
  }
}
@media (max-width: 831px) {
  .products .products-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .products .products-list li {
    padding: 10px;
    gap: 8px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width: 831px) and (max-width: 767px) {
  .products .products-list {
    gap: 16px;
  }
}
@media screen and (min-width: 832px) and (max-width: 1200px) {
  .products .maker-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 768px) and (max-width: 920px) {
  .products .maker-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */