@charset "UTF-8";
/* Google fonts icon
-------------------------------------- */
/* font size
@include font-size(font-size, 20, 36);
-------------------------------------- */
/* mv-overlay
-------------------------------------- */
/* 
-------------------------------------- */
/* reset
----------------------------------------- */
/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
*:not(dialog) {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  /* 4. Increase line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

/* font
-------------------------------------- */
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/noto-sans-jp-v56-japanese-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/noto-sans-jp-v56-japanese-700.woff2") format("woff2");
}
body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}

/* 
-------------------------------------- */
ul {
  padding: 0;
  list-style: none;
}

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

@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}
/* flex
-------------------------------------- */
.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

/* dl
-------------------------------------- */
.desc-list dl:not(:last-of-type) {
  margin: 0 0 30px;
}
.desc-list dt {
  margin: 0 0 10px;
  font-weight: bold;
}
.desc-list dd {
  margin: 0 0 0 0.5em;
}

.desc-list-table dl {
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .desc-list-table dl {
    flex-direction: column;
  }
  .desc-list-table dl:not(last-child) {
    margin: 0 0 20px;
  }
}
@media screen and (min-width: 768px) {
  .desc-list-table dl {
    gap: 1em;
  }
}
.desc-list-table dt {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px 0;
  padding: 7px 10px;
  background: #f1f1f1;
  font-size: 0.9em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .desc-list-table dt {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .desc-list-table dt {
    width: 30%;
  }
}
.desc-list-table dd {
  flex: 1;
  margin: 5px 0;
  padding: 5px 0;
}

/* 
-------------------------------------- */
.link-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 4rem 0;
}
@media screen and (max-width: 767px) {
  .link-box {
    flex-direction: column;
  }
}

/* 
-------------------------------------- */
.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 280px;
  padding: 10px 12px 10px 20px;
  background: #fff;
  color: var(--color-main);
  border: 1px solid var(--color-main);
  border-radius: 10px;
  text-decoration: none;
  transition: color 0.35s ease, background-color 0.35s ease;
  cursor: pointer;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: -1;
}
.btn::after {
  font-family: "Material Symbols Outlined";
  content: "\e941";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--color-main);
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}
.btn:hover {
  color: #fff;
}
.btn:hover::before {
  transform: scaleX(1);
}
.btn:hover::after {
  background: #fff;
  color: var(--color-main);
  transform: translateX(4px);
}
.btn.revers {
  background: var(--color-main);
  color: #fff;
  border: 1px solid var(--color-main);
}
.btn.revers::before {
  background: #fff;
}
.btn.revers::after {
  background: #fff;
  color: var(--color-main);
}
.btn.revers:hover {
  color: var(--color-main);
}
.btn.revers:hover::after {
  background: var(--color-main);
  color: #fff;
}

.gray-box {
  padding: 20px;
  background: #eee;
}

/* icon
-------------------------------------- */
.icon {
  position: relative;
  padding: 0 0 0 2.5em;
}
.icon::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  line-height: 1;
  white-space: nowrap;
}
.icon:not(:last-of-type) {
  margin: 0 0 10px;
}

[class*=icon-]::before {
  font-family: "Material Symbols Outlined";
  font-size: 28px;
  text-decoration: none;
  line-height: 1;
}

.icon-address::before {
  content: "\e0c8";
  color: #EA4335;
}
.icon-train::before {
  content: "\e570";
  color: #0065B1;
}
.icon-car::before {
  content: "\e531";
  color: #F57C00;
}
.icon-email::before {
  content: "\e158";
}
.icon-tel::before {
  content: "\e0b0";
  font-size: 1em;
  font-weight: normal;
}

/* to top
-------------------------------------- */
.to-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 45px;
  aspect-ratio: 1;
  background: #333;
  border-radius: 50%;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(80px);
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s;
}
.to-top::before {
  font-family: "Material Symbols Outlined";
  content: "\e986";
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.to-top.js-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* 
-------------------------------------- */
.header {
  width: 100%;
  padding: 20px;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .header {
    position: fixed;
  }
}
.header_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 20px 30px;
  border-radius: 25px;
  box-shadow: 0 0 5px #ccc;
}
.header .logo {
  max-width: 240px;
}
.header .logo img {
  display: block;
}

/* =========================
   ハンバーガー共通
========================= */
.menu-btn-check {
  display: none;
}

.submenu-check {
  display: none;
}

.submenu-title {
  display: block;
  cursor: pointer;
}

/* PC
-------------------------------------- */
@media screen and (min-width: 768px) {
  .menu-btn {
    display: none;
  }
  .menu-content {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }
  .menu-content > ul {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .menu-content > ul > li {
    position: relative;
  }
  .menu-content > ul > li > a,
  .menu-content > ul > li > .submenu-title {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    text-decoration: none;
    white-space: nowrap;
  }
  /* 矢印 */
  .has-submenu > .submenu-title::after {
    content: "▼";
    color: var(--color-main);
    font-size: 10px;
    margin: 0 0 0 8px;
  }
  .has-submenu:hover > .submenu {
    display: flex;
  }
  .submenu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 10px 10px 10px 5px;
    margin: 0;
    list-style: none;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border-top: solid 3px var(--color-main);
  }
  .submenu li {
    width: 100%;
  }
  .submenu li a {
    display: block;
    padding: 12px 15px;
    white-space: nowrap;
  }
  .submenu li a:hover {
    background: #f1f1f1;
  }
  .submenu li a::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin: 0 10px 0 0;
    border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) var(--color-main);
    border-style: solid;
    border-width: 5px 0 5px 5px;
  }
}
/* SP
-------------------------------------- */
@media screen and (max-width: 767px) {
  .header {
    padding: 20px;
    background: #fff;
  }
  .header_wrap {
    padding: 0;
    background: none;
    box-shadow: none;
  }
  /* ハンバーガー */
  .menu-btn {
    display: flex;
    position: fixed;
    top: 15px;
    right: 20px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    z-index: 101;
    cursor: pointer;
  }
  .menu-btn span,
  .menu-btn span::before,
  .menu-btn span::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: 0.3s;
  }
  .menu-btn span::before {
    transform: translateY(-8px);
  }
  .menu-btn span::after {
    transform: translateY(8px);
  }
  /* 開いた時 */
  .menu-btn-check:checked ~ .menu-btn span {
    background: transparent;
  }
  .menu-btn-check:checked ~ .menu-btn span::before {
    background: #fff;
    transform: rotate(45deg);
  }
  .menu-btn-check:checked ~ .menu-btn span::after {
    background: #fff;
    transform: rotate(-45deg);
  }
  /* メニュー */
  .menu-content {
    position: fixed;
    top: 0;
    left: 100%;
    width: 70%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    transition: 0.3s;
    z-index: 100;
  }
  .menu-content > ul {
    display: block;
    padding: 90px 20px 40px;
    margin: 0;
    list-style: none;
  }
  .menu-btn-check:checked ~ .menu-content {
    left: 30%;
  }
  .menu-content > ul > li > a,
  .menu-content > ul > li > .submenu-title {
    display: block;
    padding: 18px;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
  }
  .menu-list > li:not(:last-of-type) {
    border-bottom: solid 1px rgba(255, 255, 255, 0.4392156863);
  }
  /* SP アコーディオン */
  .submenu {
    display: none;
    margin: 0 0 0 50px;
    list-style: none;
  }
  .submenu li {
    list-style: disc;
    color: #fff;
  }
  .submenu li a {
    display: block;
    padding: 15px 15px 15px 0;
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
  }
  .submenu-check:checked + .submenu-title::after {
    content: "−";
  }
  .submenu-check:checked ~ .submenu {
    display: block;
  }
  .submenu-title::after {
    content: "+";
    float: right;
  }
}
/* index
-------------------------------------- */
.index .contents {
  margin: 70px auto 0;
}
.index h2,
.index h3 {
  text-align: center;
}
.index .lead h2 {
  margin: 0 0 70px;
}
.index .lead h2::before {
  content: attr(data-en);
  display: block;
  color: var(--color-acc);
  font-size: 20px;
  font-style: italic;
  text-transform: uppercase;
}
.index .lead h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%) rotate(30deg);
  width: 1px;
  height: 40px;
  background-color: var(--color-acc);
}
.index .lead {
  margin: 0 0 100px;
}
.index {
  /* mv
  -------------------------------------- */
}
.index .mv {
  max-width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .index .mv {
    height: 60vh;
  }
}
@media screen and (min-width: 768px) {
  .index .mv {
    height: 70vh;
  }
}
.index .mv div {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
  z-index: 2;
}
.index .mv figure {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.index .mv picture {
  width: 100%;
  height: 100%;
}
.index .mv img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.index {
  /* news
  -------------------------------------- */
}
.index .news {
  background: var(--color-sub);
}
@media screen and (max-width: 767px) {
  .index .news {
    padding: 50px 10px;
  }
}
@media screen and (min-width: 768px) {
  .index .news {
    padding: 50px 10px;
  }
}
.index .news h2 {
  color: #fff;
}
.index .news .wrap {
  display: flex;
}
@media screen and (max-width: 767px) {
  .index .news .wrap {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .index .news .wrap {
    gap: 50px;
  }
}
.index .news .wrap .news_contents {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.index .news dl {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  padding: 15px 20px;
  border-radius: 15px;
}
@media screen and (max-width: 767px) {
  .index .news dl {
    gap: 10px;
  }
}
@media screen and (min-width: 768px) {
  .index .news dl {
    gap: 20px;
  }
}
.index .news dl dt {
  font-size: 0.9em;
  font-weight: bold;
}
.index .news dl dd b {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 5px;
  padding: 0 10px;
  background: var(--color-main);
  color: #fff;
  font-size: 0.8em;
  font-weight: normal;
  border-radius: 25px;
}
.index {
  /* map
  -------------------------------------- */
}
.index .map {
  padding: 50px 0 0;
  background-image: linear-gradient(to right, #eee 1px, transparent 1px), linear-gradient(to bottom, #eee 1px, white 1px);
  background-size: 20px 20px;
  background-position: center;
}
.index .map .map_wrap > div {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 20px;
}
@media screen and (max-width: 767px) {
  .index .map .map_wrap > div {
    justify-content: flex-start;
    width: 90%;
    margin: 0 auto 20px;
  }
}
@media screen and (min-width: 768px) {
  .index .map .map_wrap > div {
    justify-content: center;
  }
}
.index .map .map_wrap > div dl {
  margin: 0 0 20px;
}
@media screen and (min-width: 768px) {
  .index .map .map_wrap > div dl {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 29em;
    padding: 0 50px;
  }
}
@media screen and (max-width: 767px) {
  .index .map .map_wrap > div dl:nth-of-type(2) {
    width: 100%;
    padding: 15px 0 0;
    border-top: solid 1px #999;
  }
}
@media screen and (min-width: 768px) {
  .index .map .map_wrap > div dl:nth-of-type(2) {
    border-left: solid 1px #999;
  }
}
.index .map .map_wrap > div dt {
  margin: 0 0 15px;
  font-weight: bold;
}
.index .map iframe {
  display: block;
  width: 100%;
  height: 350px;
}
.index .map .link-box {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .index .map .link-box {
    justify-content: flex-start;
  }
}

/* 共通
-------------------------------------- */
@media screen and (max-width: 767px) {
  body:not(.index) .contents {
    padding: 70px 0;
  }
}
@media screen and (min-width: 768px) {
  body:not(.index) .contents {
    padding: 150px 0;
  }
}

.mv_under {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv_under {
    height: 150px;
  }
}
@media screen and (min-width: 768px) {
  .mv_under {
    height: 300px;
    padding: 50px 0 0;
  }
}
.mv_under::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--color-sub) 1px, transparent 1px), linear-gradient(90deg, var(--color-sub) 1px, transparent 1px), linear-gradient(135deg, rgba(40, 45, 50, 0.2) 0%, rgba(10, 15, 20, 0.4) 100%);
  background-size: 3px 3px, 3px 3px, 100% 100%;
  background-color: rgba(20, 25, 30, 0.1);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}
.mv_under > * {
  position: relative;
  z-index: 2;
}

/* aboutus
-------------------------------------- */
@media screen and (max-width: 767px) {
  .aboutus .access .flex-wrap {
    flex-direction: column;
  }
}
.aboutus .access .flex-wrap:not(:last-of-type) {
  margin: 0 0 30px;
  padding: 0 0 30px;
  border-bottom: solid 1px #ddd;
}
@media screen and (min-width: 768px) {
  .aboutus .access dl {
    width: 420px;
  }
}
.aboutus .access dl:not(:last-of-type) {
  margin: 0 0 30px;
}
.aboutus .access dt {
  font-weight: bold;
  margin: 0 0 15px;
}
.aboutus .access .map {
  flex: 1;
  width: 100%;
  max-height: 300px;
  aspect-ratio: 16/9;
}
.aboutus .access .map iframe {
  width: 100%;
  height: 100%;
}

/* traning
-------------------------------------- */
.traning blockquote {
  position: relative;
  margin: 30px 0 0;
  padding: 15px 15px 15px 35px;
  box-sizing: border-box;
  font-size: 0.9em;
  font-style: italic;
  color: #555;
  background: #f1f1f1;
}
.traning blockquote:before {
  display: inline-block;
  position: absolute;
  top: -5px;
  left: -15px;
  content: "“";
  font-family: sans-serif;
  color: var(--color-main);
  font-size: 55px;
  line-height: 1;
  z-index: 2;
}
.traning blockquote:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  border-width: 0 0 40px 40px;
  border-style: solid;
  border-color: transparent #ffffff;
}
.traning blockquote dt {
  font-weight: bold;
  margin: 0 0 10px;
}
.traning blockquote cite {
  display: block;
  margin: 20px 0 0;
}

/* worker
-------------------------------------- */
.workers .contents ul {
  list-style: disc;
  margin: 0 0 20px;
  padding: 10px;
  background: #eee;
}
.workers .contents ul li {
  margin: 0 0 0 1.5em;
}

.specific .desc-list-table ol {
  padding: 0 0 0 1.5em;
  list-style: decimal-leading-zero;
}

/* member
-------------------------------------- */
.member .member-list {
  display: flex;
  flex-direction: column;
}
.member .member-list > dl {
  display: flex;
  padding: 15px;
}
@media screen and (max-width: 767px) {
  .member .member-list > dl {
    flex-direction: column;
  }
}
.member .member-list > dl:nth-of-type(odd) {
  background: #eee;
}
.member .member-list > dl > dt {
  margin: 0 0 10px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .member .member-list > dl > dt {
    width: 30%;
  }
}
@media screen and (min-width: 768px) {
  .member .member-list > dl > dd {
    flex: 1;
  }
}
.member .member-desc-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 0 0.5em;
  font-size: 0.9em;
}
.member .member-desc-list dt {
  width: 4em;
}
.member .member-desc-list dd {
  width: calc(100% - 6em);
}

/* privacy
-------------------------------------- */
.privacy ol li ol li ol li {
  list-style: disc;
}

/* bussiness
-------------------------------------- */
.business .flex-box {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.business .flex-box li {
  display: flex;
  flex-direction: column;
  border: solid 1px #eee;
  border-radius: 10px;
  box-shadow: 2px 2px 5px #eee;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .business .flex-box li {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .business .flex-box li {
    width: calc(50% - 1rem);
  }
}
.business .flex-box li {
  /* aタグをカード全体に広げ、矢印の基準位置（relative）にする */
}
.business .flex-box li a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.business .flex-box li h3 {
  margin: 0 0 15px;
  padding: 10px 15px;
  background: var(--color-main);
  border-radius: 10px 10px 0 0;
  color: #fff;
}
.business .flex-box li p {
  flex: 1;
  /* 右下にアイコンを置くため、下部の余白（padding-bottom）を広めに確保 */
  padding: 0 15px 40px;
  font-size: 0.9em;
}
.business .flex-box li {
  /* 右下隅の ＿\ 型リンクマーク（疑似要素で実装） */
}
.business .flex-box li a::after {
  content: "";
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 12px;
  height: 12px;
  /* 下線と右線で ＿\ の形を表現 */
  border-bottom: 2px solid var(--color-main);
  border-right: 2px solid var(--color-main);
  transform: rotate(-45deg);
  transition: transform 0.3s ease, right 0.3s ease, bottom 0.3s ease;
}
.business .flex-box li {
  /* ホバー時にリンクマークが右斜め上へ少し動く */
}
.business .flex-box li a:hover::after {
  transform: rotate(-45deg) translate(4px, 4px);
}
.business .flex-box .box:not(:last-of-type) {
  padding: 0 0 50px;
  border-bottom: solid 1px #ccc;
}

/* contact
-------------------------------------- */
.contact .formTable select,
.contact .formTable input,
.contact .formTable textarea {
  width: 100%;
  border: none;
  background: #f5f5f5;
  padding: 10px;
  border-radius: 10px;
}
.contact .formTable select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.contact .formTable ::-moz-placeholder {
  font-size: 0.9em;
}
.contact .formTable ::placeholder {
  font-size: 0.9em;
}
.contact .formTable dl {
  margin: 0 0 30px;
}
.contact .formTable dl dt {
  margin: 0 0 10px;
  color: #000;
  font-size: 0.9em;
  font-weight: bold;
}
.contact .formTable dl dt strong {
  margin: 0 0.5em 0 0;
  padding: 2px 5px;
  background: red;
  font-size: 0.8em;
  color: #fff;
}
.contact .formTable dl dt strong.any {
  background: none;
  color: #0052e7;
  border: solid 1px;
}
.contact .formTable dl dt span {
  color: #999;
  margin: 0 0 0 0.5em;
  font-size: 0.9em;
}
.contact .formTable .arrow {
  position: relative;
  display: block;
  border-radius: 10px;
}
.contact .formTable .arrow select {
  width: 100%;
  padding: 10px 40px 10px 15px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background: #f5f5f5;
}
.contact .formTable .arrow select:focus {
  outline: none;
}
.contact .formTable .arrow select option {
  border: none;
}
.contact .formTable .arrow::before {
  content: "";
  position: absolute;
  top: 24.4px;
  right: 20px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  pointer-events: none;
  transform: translateY(-70%) rotate(135deg);
  transition: transform 0.2s ease;
}
.contact .formTable .arrow.is-open::before {
  transform: translateY(-30%) rotate(-45deg);
}
.contact .formTable .arrow::after {
  display: none;
}
.contact .formTable input:not(:-moz-placeholder), .contact .formTable textarea:not(:-moz-placeholder) {
  background: rgba(0, 102, 204, 0.1254901961);
}
.contact .formTable .arrow select:valid,
.contact .formTable input:not(:placeholder-shown),
.contact .formTable textarea:not(:placeholder-shown) {
  background: rgba(0, 102, 204, 0.1254901961);
}
.contact .progressBar {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 40px;
  padding: 0;
  list-style: none;
  max-width: 800px;
}
.contact .progressBar-step {
  position: relative;
  flex: 1;
  text-align: center;
}
.contact .progressBar-step::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #e0e0e0;
  z-index: 1;
}
.contact .progressBar-step:last-child::after {
  display: none;
}
.contact .progressBar-num {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  z-index: 2;
}
.contact .progressBar-text {
  display: block;
  color: #888;
  font-size: 13px;
  line-height: 1.4;
}
.contact .progressBar-step.is-active .progressBar-num {
  background: var(--color-main);
}
.contact .progressBar-step.is-active .progressBar-text {
  color: #000;
  font-weight: bold;
}
.contact .progressBar-step.is-complete .progressBar-num {
  background: #28a745;
}
.contact .progressBar-step.is-complete::after {
  background: #28a745;
}
.contact button:disabled,
.contact .btn:disabled {
  opacity: 0.4 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}
.contact .privacy-check p {
  padding: 10px;
  background: #f5f5f5;
  border-radius: 10px;
}
.contact .privacy-check .privacy-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}
.contact .privacy-check .privacy-link {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 10px 0 0 30px;
}
.contact .privacy-check .privacy-link::after {
  font-family: "Material Symbols Outlined";
  content: "\f8ce";
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-main);
  border-radius: 5px;
  border: solid 1px;
  padding: 2px;
  aspect-ratio: 1;
  line-height: 1;
  font-size: 12px;
  color: #fff;
}
.contact .privacy-check .privacy-link a {
  color: var(--color-main);
}
.contact .confirm {
  margin: 50px auto;
}
.contact .confirm #formWrap {
  width: 700px;
  margin: 0 auto;
}
.contact .confirm table.formTable {
  border-spacing: 0 10px;
  width: 100%;
  margin: 30px auto 50px;
  font-size: 0.9em;
}
.contact .confirm table.formTable td,
.contact .confirm table.formTable th {
  padding: 10px;
}
.contact .confirm table.formTable th {
  width: 25%;
  background: rgba(0, 102, 204, 0.1254901961);
  font-weight: bold;
  text-align: left;
  border-radius: 5px;
}
.contact .confirm p.error_messe {
  margin: 5px 0;
  color: red;
}
.contact .confirm {
  /*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
}
@media screen and (max-width: 572px) {
  .contact .confirm #formWrap {
    width: 95%;
    margin: 0 auto;
  }
  .contact .confirm table.formTable th,
  .contact .confirm table.formTable td {
    width: auto;
    display: block;
  }
  .contact .confirm table.formTable th {
    margin-top: 5px;
    border-bottom: 0;
  }
  .contact .confirm form input[type=submit],
  .contact .confirm form input[type=reset],
  .contact .confirm form input[type=button] {
    display: block;
    width: 100%;
    height: 40px;
  }
}
.contact {
  /* チェックアイコンのスタイル */
}
.contact .valid-check {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  color: var(--color-main);
  margin-left: 8px;
  vertical-align: middle;
}
.contact {
  /* 正常入力時の枠線（青色） */
}
.contact input.valid,
.contact select.valid,
.contact textarea.valid {
  border: 2px solid var(--color-main) !important;
}
.contact {
  /* エラー時の枠線（赤色） */
}
.contact input.error,
.contact select.error,
.contact textarea.error {
  border: 2px solid #ff0000 !important;
  background-color: #fff6f6;
}
.contact .error-message {
  color: #ff0000;
  font-size: 0.85rem;
  margin-top: 5px;
  display: block;
}

/* footer
-------------------------------------- */
.footer {
  background: var(--color-sub);
}
.footer .footer_nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: auto;
  padding: 50px 20px;
}
@media screen and (max-width: 767px) {
  .footer .footer_nav {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .footer .footer_nav {
    max-width: 980px;
  }
}
.footer .footer_nav dt {
  margin: 0 0 15px;
}
.footer .footer_nav dd:nth-of-type(1), .footer .footer_nav dd:nth-of-type(3), .footer .footer_nav dd:nth-of-type(5) {
  margin: 0 0 10px;
}
.footer .footer_nav .company {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: #fff;
  color: #000;
  border-radius: 20px;
}
.footer .footer_nav .company .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  font-weight: bold;
}
.footer .footer_nav .company .icon-email {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer .footer_nav .company .icon-tel {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2rem;
  font-weight: bold;
}
.footer .navigation {
  color: #fff;
  flex: 1;
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 480px) {
  .footer .navigation {
    flex-direction: column;
    gap: 30px;
  }
}
.footer .navigation > li {
  width: 45%;
}
@media screen and (max-width: 480px) {
  .footer .navigation > li {
    width: auto;
  }
}
.footer .navigation li:not(.headline) {
  font-size: 0.9em;
  text-indent: 0.5em;
}
.footer .navigation .headline {
  font-weight: bold;
  border-bottom: solid 1px;
}
.footer .navigation .headline + li {
  margin: 5px 0 0;
}
.footer .navigation a {
  color: #fff;
}
.footer .copyright {
  padding: 20px 0;
  background: #fff;
  font-size: 0.8em;
  text-align: center;
}

/* 
-------------------------------------- */
:root {
  --color-main: #0066CC;
  --color-sub: #0066CC80;
  --color-bg: #F4F7F9;
  --color-font: #223344;
  --color-form-bg: #FFFFFF;
  --color-acc: #02235f;
}

html.color-a {
  --color-main: #2E8B57;
  --color-sub: #2E8B5780;
  --color-bg: #F7FAF8;
  --color-font: #2D3732;
  --color-form-bg: #FFFFFF;
  --color-acc: #177317;
}

html.color-b {
  --color-main: #D95D39;
  --color-sub: #fd825e;
  --color-bg: #FDFBF7;
  --color-font: #4A3B32;
  --color-form-bg: #FFFFFF;
  --color-acc: #f59958;
}

/* ボタン単体のローカル変数として、属性ごとに本来の色を定義します */
.theme-switch-btn[data-theme=default] {
  --btn-theme-color: #0066CC;
  /* ブルー */
}

.theme-switch-btn[data-theme=color-a] {
  --btn-theme-color: #2E8B57;
  /* グリーン */
}

.theme-switch-btn[data-theme=color-b] {
  --btn-theme-color: #D95D39;
  /* オレンジ */
}

/* 共通スタイル定義 */
/* 非選択時（白背景、自身のテーマカラーの枠線＆文字色） */
.theme-switch-btn {
  background-color: #fff;
  border: 1px solid var(--btn-theme-color);
  color: var(--btn-theme-color);
}

/* 選択中（アクティブ：自身のテーマカラーで背景塗りつぶし＆白抜き文字） */
.theme-switch-btn.active {
  background-color: var(--btn-theme-color);
  border: 1px solid var(--btn-theme-color);
  color: #fff;
}

/* ホバー時はお好みで少し背景を明るくするなどの演出が可能です */
.theme-switch-btn:hover:not(.active) {
  background-color: #f5f5f5;
}

figure.mv-a {
  display: block;
}

figure.mv-b {
  display: none;
}

figure.mv-c {
  display: none;
}

html.color-a figure.mv-a {
  display: none;
}
html.color-a figure.mv-b {
  display: block;
}
html.color-a figure.mv-c {
  display: none;
}

html.color-b figure.mv-a {
  display: none;
}
html.color-b figure.mv-b {
  display: none;
}
html.color-b figure.mv-c {
  display: block;
}

/* 
-------------------------------------- */
.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

/* 
-------------------------------------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
  color: #333;
  background-color: #fff;
  box-sizing: border-box;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
}

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

p:not(:last-of-type) {
  margin: 0 0 2.5rem;
}

/* font-size
-------------------------------------- */
h1 {
  font-size: clamp(1.1875rem, 0.8388429752rem + 1.4876033058vw, 1.75rem);
}

h2 {
  font-size: clamp(1.25rem, 1.0950413223rem + 0.6611570248vw, 1.5rem);
}

h3 {
  font-size: clamp(1.125rem, 1.0475206612rem + 0.3305785124vw, 1.25rem);
}

div,
p,
dt,
dd,
li,
a {
  font-size: clamp(0.875rem, 0.7975206612rem + 0.3305785124vw, 1rem);
}

/* h1
-------------------------------------- */
.index h1 {
  position: absolute;
  color: #fff;
  font-style: italic;
  line-height: 1.4;
  letter-spacing: 2.4px;
  text-shadow: 2px 2px 5px #000;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .index h1 {
    top: 50%;
    transform: translateY(-50%);
    padding: 0 5px 0 10px;
  }
}
@media screen and (min-width: 768px) {
  .index h1 {
    bottom: calc(50% - 100px);
    left: 10%;
  }
}
.index h1 b {
  font-size: 1.2em;
}
.index h1 b.color {
  color: #fff900;
}

.typing span {
  display: inline-block;
  opacity: 0;
  transform: translateY(7.5px);
  animation: fadeUp 0.4s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body:not(.index) h1 {
  position: relative;
  margin: auto;
  color: #fff;
  font-style: italic;
  text-align: center;
}
body:not(.index) h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: #fff;
}

h2 {
  position: relative;
  padding: 0 0 50px;
  font-style: italic;
  overflow: hidden;
}
h2[data-line]:not([data-line=""])::before {
  content: attr(data-line);
  display: block;
  color: var(--color-main);
  font-size: 18px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding-left: 55px;
}
h2[data-line]:not([data-line=""])::after {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 40px;
  height: 1px;
  background: var(--color-main);
}
h2[data-center]:not([data-center=""])::before {
  content: attr(data-center);
  position: absolute;
  top: 2.5em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6em;
  font-weight: bold;
  letter-spacing: 0.15em;
  color: var(--color-main);
  white-space: nowrap;
  pointer-events: none;
}

h3 {
  margin: 0 0 30px;
}

/* wrap
-------------------------------------- */
.wrap {
  max-width: 980px;
  width: calc(100% - 20px);
  margin: 0 auto;
}

.wrap_wide {
  width: 100%;
  margin: 0 auto;
}

.box:not(:last-of-type) {
  margin: 0 0 100px;
}/*# sourceMappingURL=style.css.map */