/* フォント L M B */
/* font-family: "dnp-shuei-gothic-gin-std", sans-serif;
font-weight: 400 500 600;
font-style: normal; */

/* 全体設定 ------------------------------------------------- */
:root{
  --color-main:#8FC31F;
  --color-white:#ffffff;
  --color-black:#1f2937;
  --color-darkgray: #484848;
  --muted:#6b7280;
  --line:#DDDDDD;
  --field:#EFF1F5;

  --font-main: "dnp-shuei-gothic-gin-std", sans-serif;

  --radius:18px;
}
*{box-sizing:border-box;}
body{
  margin:0;
  font-family: "dnp-shuei-gothic-gin-std", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  color:var(--color-black);
  background:var(--color-white);
}
a {
  outline: none;
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}
a:focus {
  outline: none;
}
ul {
  padding: 0;
  margin: 0;
}
li {
  list-style: none;
}
main {
  overflow: hidden;
}
img {
  width: 100%;
  height: auto;
}
table {
  border-collapse: collapse;
}
h1,h2,h3,h4,h5 {
  margin: 0;
}
p {
  margin: 0;
  padding: 0;
}
.noscroll {
  overflow: hidden;
  height: 100%;
}
.inner {
  width: 80%;
  max-width: 1140px;
  margin: auto;
  padding: 90px 0;
}

/* ボタン */
.btn-wrap {
  text-align: center;
}
.default-btn {
  display: inline-block;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 1;
  padding: 24px 30px;
  min-width: 320px;
  transition: all .3s;
  border-radius: 0;
}
a:visited.default-btn {
  color: var(--color-white);
}
.default-btn.color-main {
  background-color: var(--color-main);
}
.default-btn.color-main:hover {
  background-color: var(--color-darkgray);
}
.default-btn.color-black {
  background-color: var(--color-darkgray);
}
.default-btn.color-black:hover {
  background-color: var(--color-main);
}

/* タイトル */
.default-title {
  text-align: center;
  position: relative;
  padding-top: 25px;
}
.default-title::before {
  content: "";
  display: block;
  width: 120px;
  height: 5px;
  background-color: var(--color-white);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.default-title .main-title {
  color: var(--color-white);
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  line-height: 1;
}
.default-title .sub-title {
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 1;
  margin-top: 10px;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media only screen and (min-width: 1081px) {
  .tb,
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}
@media only screen and (max-width: 1080px) and (min-width: 768px) {
  .pc,
  .sp {
    display: none;
  }
  .tb {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .pc,
  .tb {
    display: none;
  }
  .sp {
    display: block;
  }
}
@media only screen and (max-width: 1080px) {
  .inner {
    width: 90%;
    padding: 70px 0;
  }
  .default-title .main-title {
    font-size: 2rem;
  }
  .default-btn {
    padding: 20px;
    min-width: 280px;
  }
}

@media only screen and (max-width: 767px) {
  .inner {
    padding: 50px 0;
  }
  .default-btn {
    min-width: 260px;
  }
  .default-title::before {
    width: 100px;
  }
  .default-title .main-title {
    font-size: 1.5rem;
  }
  .default-title .sub-title {
    font-size: 1.2rem;
  }
}
/* ヘッダー ------------------------------------------------- */
/* ハンバーガーボタン：最初は隠す（スクロールで表示） */
.hum-menu{
  position: fixed;
  right: 16px;
  top: 16px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,1);
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  z-index: 1001;
  cursor: pointer;
  padding: 0;

  /* 最初は隠す */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

/* スクロール後に表示 */
.hum-menu.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hum-menu span{
  display:block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background:#111;
  transition: transform .25s ease, opacity .25s ease;
}

/* 開いた時の×印 */
.hum-menu.is-open span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.hum-menu.is-open span:nth-child(2){ opacity: 0; }
.hum-menu.is-open span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

/* メニュー（オーバーレイ） */
.nav-menu{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}

.nav-menu.is-open{
  opacity: 1;
  visibility: visible;
}

.nav-menu nav{
  position: absolute;
  right: 0;
  top: 0;
  width: min(86vw, 360px);
  height: 100%;
  background: #fff;
  padding: 22px 18px;
  transform: translateX(10px);
  transition: transform .2s ease;
}

.nav-menu.is-open nav{
  transform: translateX(0);
}

.nav-menu ul{
  list-style:none;
  padding:0;
  margin:0;
}

.nav-menu a{
  display:block;
  padding: 14px 10px;
  border-bottom: 1px solid #eee;
  text-decoration:none;
  color:#111;
  font-weight:700;
}
.nav-menu a span{
  font-weight:600;
  opacity:.7;
}

/* スクロールトップ ------------------------------------------------- */
.scroll-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 65px;
  height: 65px;
  border: 0;
  border-radius: 50%;
  background: var(--color-black);
  z-index: 1001;
  cursor: pointer;
  padding: 0;
  transform: translateY(6px);

  /* 最初は隠す */
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease, background-color .3s ease;
}
/* スクロール後に表示 */
.scroll-top.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top span {
  font-size: 0.8rem;
  font-weight: 400;
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 17px;
  line-height: 1;
  color: var(--color-white);
}
.scroll-top::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 1px solid var(--color-white);
  border-top: 1px solid var(--color-white);
  position: absolute;
  left: calc(50% - 2px);
  top: 17px;
  transform: rotate(-45deg) translateX(-50%);
}
.scroll-top:hover {
  background-color: var(--color-darkgray);
}

@media only screen and (max-width: 767px) {
  .scroll-top {
    right: 12px;
    bottom: 12px;
    width: 55px;
    height: 55px;
  }
  .scroll-top span {
    font-size: 0.7rem;
    bottom: 14px;
  }
  .scroll-top::before {
    width: 8px;
    height: 8px;
    top: 14px;
  }
}

/* キービジュアル ------------------------------------------------- */
.key-visual .kv-pc img {
  aspect-ratio: 1366 / 662;
}
.key-visual .kv-sp img {
  aspect-ratio: 375 / 442;
}
@media only screen and (max-width: 1080px) {

}

@media only screen and (max-width: 767px) {

}
/* FEATURE ------------------------------------------------- */
.feature {
  padding: 40px 0;
}
.box-wrap {
  position: relative;
  margin: 0 auto;
  max-width: 1440px;
}
.box-wrap .big-text {
  position: absolute;
  letter-spacing: 0.3rem;
  writing-mode: vertical-rl;
  text-orientation: sideways;
  font-size: 5rem;
  color: var(--color-main);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 600;
  line-height: 1;
  z-index: 1;
}
.box-wrap.left .big-text {
  top: 30px;
  right: 50px;
}
.box-wrap.right .big-text {
  top: 70px;
  left: 50px;
}
.box-wrap .big-text::before {
  content: "";
  width: 7px;
  height: 20px;
  background-color: var(--color-main);
  position: absolute;
  top: -30px;
  left: 30px;
  display: block;
}
.box-wrap .big-text::after {
  content: "";
  width: 7px;
  height: 50px;
  background-color: var(--color-main);
  position: absolute;
  bottom: -60px;
  left: 30px;
  display: block;
}
.box-wrap.left {
  padding-right: 160px;
}
.box-wrap .box-image {
  position: relative;
}
.box-wrap .box-image img {
  max-width: 800px;
  min-width: 400px;
  width: 60%;
}
.box-wrap.left .box-image img {
  margin-left: auto;
}
.box-wrap.right .box-image img {
  margin-right: auto;
}
.box-wrap .box-image .box-text {
  background-color: var(--color-main);
  color: var(--color-white);
  font-size: 1.8rem;
  font-weight: 600;
  padding: 20px 80px;
  width: fit-content;
  position: absolute;
}
.box-wrap.left .box-image .box-text {
  left: 0;
  padding-left: 160px;
}
.box-wrap.right .box-image .box-text {
  right: 0;
  padding-right: 50px;
  padding-left: 50px;
}
.box-wrap.left .box-image .box-text.box-1 {
  top: 60px;
}
.box-wrap.left .box-image .box-text.box-2 {
  top: 160px;
}
.box-wrap.right .box-image .box-text.box-1 {
  top: 90px;
  width: 45%;
  padding-left: 110px;
}
.box-wrap.right .box-image .box-text.box-2 {
  top: 190px;
  width: 50%;
}
.box-wrap.left .box-image .box-text.line {
  padding-right: 140px;
}
.box-wrap.left .box-image .box-text.line::before {
  content: "";
  width: 60px;
  height: 3px;
  background-color: var(--color-white);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 60px;
}
.box-wrap.right .box-image .box-text.line::before {
  content: "";
  width: 40px;
  height: 3px;
  background-color: var(--color-white);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 40px;
}
.bottom-content {
  width: 80%;
  max-width: 1140px;
  margin: 60px auto 0;
}
.sub-default {
  padding-top: 20px;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}
.sub-default h3 {
  color: var(--color-main);
  font-size: 1.5rem;
  font-weight: 600;
}
.sub-default h3::before {
  content: "";
  width: 110px;
  height: 5px;
  background-color: var(--color-main);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
.sub-desc {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 2;
}
.sub-desc.color-main {
  color: var(--color-main);
}

@media only screen and (max-width: 1080px) {
  .box-wrap .big-text {
    font-size: 3rem;
  }
  .box-wrap.left {
    padding-right: 80px;
  }
  .box-wrap.left .big-text {
    top: 20px;
    right: 20px;
  }
  .box-wrap .big-text::before {
    width: 4px;
    height: 15px;
    top: -20px;
    left: 20px;
  }
  .box-wrap .big-text::after {
    width: 4px;
    height: 30px;
    bottom: -35px;
    left: 20px;
  }
  .box-wrap.right .big-text {
    top: 60px;
    left: 20px;
  }
  .box-wrap.left .box-image .box-text {
    padding-left: 50px;
  }
  .box-wrap .box-image .box-text {
    font-size: 1.4rem;
    padding: 15px 30px;
  }
  .box-wrap.left .box-image .box-text.box-1 {
    top: 40px;
  }
  .box-wrap.left .box-image .box-text.box-2 {
    top: 120px;
  }
  .box-wrap.left .box-image .box-text.line::before {
    right: 30px;
    width: 50px;
  }
  .box-wrap.left .box-image .box-text.line {
    padding-right: 100px;
  }
  .bottom-content {
    width: 90%;
    margin: 50px auto 0;
  }
  .sub-desc {
    font-size: 1.2rem;
    line-height: 1.8;
  }
  .feature {
    padding: 30px 0;
  }
  .box-wrap.right .box-image .box-text.box-1 {
    top: 50px;
    padding-left: 60px;
  }
  .box-wrap.right .box-image .box-text.line::before {
    width: 30px;
    left: 20px;
  }
  .box-wrap.right .box-image .box-text {
    padding-right: 20px;
    padding-left: 20px;
  }
  .box-wrap.right .box-image .box-text.box-2 {
    top: 130px;
  }
  .sub-default {
    margin-bottom: 20px;
  }
  .sub-default h3 {
    font-size: 1.4rem;
  }
}

@media only screen and (max-width: 767px) {
  .feature {
    padding: 30px 0 10px;
  }
  .box-wrap .box-image img {
    min-width: unset;
    width: 100%;
  }
  .box-wrap.left {
    padding-right: 50px;
    padding-bottom: 135px;
    padding-left: 10px;
  }
  .box-wrap.left .big-text {
    right: 15px;
  }
  .box-wrap.left .box-image .box-text.box-1 {
    top: unset;
    bottom: -55px;
  }
  .box-wrap.left .box-image .box-text.box-2 {
    top: unset;
    bottom: -135px;
  }
  .box-wrap.left .box-image .box-text {
    padding-left: 30px;
  }
  .box-wrap .box-image .box-text {
    font-size: 1.2rem;
    padding: 10px 30px;
    line-height: 1.3;
  }
  .box-wrap.left .box-image .box-text.line {
    padding-right: 50px;
  }
  .box-wrap.left .box-image .box-text.line::before {
    right: 20px;
    width: 20px;
  }
  .box-wrap.left .box-image .box-text {
    left: -10px;
  }

  .sub-desc {
    font-size: 1rem;
  }
  .bottom-content {
    margin: 30px auto 0;
  }
  .box-wrap.right .box-image .box-text {
    right: -10px;
  }
  .box-wrap.right .box-image .box-text.box-2 {
    top: unset;
    bottom: -110px;
    width: fit-content;
  }
  .box-wrap.right .box-image .box-text.box-1 {
    top: unset;
    width: fit-content;
    bottom: -55px;
    padding-right: 50px;
  }
  .sub-default h3 {
    font-size: 1.2rem;
  }
}
/* POINT ------------------------------------------------- */
.point {
  padding: 60px 0;
}
.box-wrap.right {
  padding-left: 160px;
}

@media only screen and (max-width: 1080px) {
  .point {
    padding: 30px 0;
  }
  .box-wrap.right {
    padding-left: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .point {
    padding: 20px 0;
  }
  .box-wrap.right {
    padding-left: 50px;
    padding-right: 10px;
    padding-bottom: 110px;
  }
  .box-wrap.right .big-text {
    top: 50px;
    left: 15px;
  }
}
/* WORKS ------------------------------------------------- */
.works {
  padding: 60px 0 90px;
}
.works .box-wrap .box-image .box-text {
  font-size: 1.5rem;
}
.works .sub-desc.color-main {
  margin-bottom: 20px;
}
.works .bottom-content ul {
  width: fit-content;
  margin: 30px auto 0;
}
.works .bottom-content ul li {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 10px;
}

@media only screen and (max-width: 1080px) {
  .works {
    padding: 30px 0 70px;
  }
  .works .box-wrap .box-image .box-text {
    font-size: 1.3rem;
  }
  .works .box-wrap.left .box-image .box-text.line {
    padding-right: 60px;
  }
  .works .box-wrap.left .box-image .box-text.line::before {
    right: 20px;
    width: 20px;
  }
  .works .bottom-content ul {
    margin: 20px auto 0;
  }
  .works .bottom-content ul li {
    font-size: 1.1rem;
  }
}

@media only screen and (max-width: 767px) {
  .works {
    padding: 20px 0 40px;
  }
  .works .box-wrap.left {
    padding-bottom: 160px;
  }
  .works .box-wrap .box-image .box-text {
    font-size: 1.2rem;
  }
  .works .box-wrap.left .box-image .box-text.box-1 {
    bottom: -80px;
    padding-right: 30px;
  }
  .works .box-wrap.left .box-image .box-text.box-2 {
    bottom: -160px;
  }
  .works .box-wrap.left .box-image .box-text.line::before {
    display: none;
  }
  .works .bottom-content ul li {
    font-size: 0.9rem;
    text-indent: -14px;
    padding-left: 14px;
  }
}

/* 応募フォームリンク ------------------------------------------------- */
.contact-link {
  background-image: url(../img/contact-link-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  text-align: center;
  padding: 70px 20px;
}
.contact-link::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #8FC31F99;
  position: absolute;
  left: 0;
  top: 0;
}
.contact-link h2 {
  color: var(--color-white);
  font-size: 2.2rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.contact-link h3 {
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}
.contact-link .btn-wrap {
  position: relative;
  z-index: 1;
  margin-top: 50px;
}
.contact-link .triangle {
  background-color: var(--color-main);
  width: 50%;
  height: 50px;
  position: absolute;
}
.contact-link .tri-left {
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  left: 0;
  top: 0;
}
.contact-link .tri-right {
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  right: 0;
  bottom: 0;
}

@media only screen and (max-width: 1080px) {
  .contact-link h2 {
    font-size: 1.8rem;
  }
  .contact-link h3 {
    font-size: 1.1rem;
    margin-top: 30px;
  }
  .contact-link {
    padding: 50px 10px;
  }
  .contact-link .btn-wrap {
    position: relative;
    z-index: 1;
    margin-top: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .contact-link h2 {
    font-size: 1.4rem;
  }
  .contact-link h3 {
    font-size: 1rem;
    margin-top: 20px;
  }
  .contact-link .btn-wrap {
    margin-top: 30px;
  }
  .contact-link {
    padding: 40px 10px;
  }
  .contact-link .triangle {
    width: 80%;
    height: 30px;
  }
}

/* こんな方が向いています ------------------------------------------------- */
.suitable h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--color-main);
}
.point .flex-container,
.suitable .flex-container {
  display: grid;
  gap: 60px 38px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 50px;
}
.point .title-flex,
.suitable .title-flex {
  display: grid;
  gap: 10px;
  grid-template-columns: 45px 1fr;
  align-items: center;
  min-height: 56px;
}
.point .number,
.suitable .number {
  text-align: center;
}
.point .number span,
.suitable .number span {
  background-color: var(--color-main);
  color: var(--color-white);
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 45px;
}
.point .flex-container .desc,
.suitable .flex-container .desc {
  margin-top: 15px;
  line-height: 1.8;
}

@media only screen and (max-width: 1080px) {
  .point .flex-container, 
  .suitable .flex-container {
    gap: 40px 30px;
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
  }
  .suitable h2 {
    font-size: 2rem;
  }
}

@media only screen and (max-width: 767px) {
  .point .flex-container, 
  .suitable .flex-container {
    gap: 30px;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
  .point .title-flex, 
  .suitable .title-flex {
    grid-template-columns: 38px 1fr;
    min-height: 46px;
  }
  .point .number span, 
  .suitable .number span {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
    line-height: 38px;
  }
  .point .title-flex .title h3, 
  .suitable .title-flex .title h3 {
    font-size: 1rem;
    line-height: 1.3;
  }
  .point .flex-container .desc, .suitable .flex-container .desc {
    margin-top: 10px;
    font-size: 0.9rem;
  }
  .suitable h2 {
    font-size: 1.4rem;
  }

}

/* 募集要項 ------------------------------------------------- */
.job {
  background-color: var(--color-main);
}
.job-wrap {
  width: 80%;
  min-width: 800px;
  margin: 50px auto 0;
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 70px 60px;
}
.job-wrap table {
  width: 100%;
  border: none;
}
.job-wrap table th {
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 25px 15px;
  font-size: 1.1rem;
  font-weight: 600;
  vertical-align: middle;
  text-align: left;
  min-width: 110px;
}
.job-wrap table td {
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 25px 15px;
  font-size: 1.1rem;
  font-weight: 600;
}
.job .btn-wrap {
  margin-top: 50px;
}

@media only screen and (max-width: 1080px) {
  .job-wrap {
    width: 100%;
    min-width: unset;
    margin: 40px auto 0;
    padding: 50px 40px;
  }
}

@media only screen and (max-width: 767px) {
  .job-wrap {
    margin: 30px auto 0;
    padding: 20px 20px 40px;
  }
  .job-wrap table th {
    padding: 20px 0;
    font-size: 0.9rem;
    min-width: 70px;
  }
  .job-wrap table td {
    padding: 20px 0;
    font-size: 0.9rem;
  }
  .job .btn-wrap {
    margin-top: 30px;
  }
}

/* よくあるご質問 ------------------------------------------------- */
.faq .default-title .main-title {
  color: var(--color-black);
}
.faq .default-title .sub-title {
  color: var(--color-main);
  font-weight: 600;
  font-size: 1.6rem;
}
.faq .default-title::before {
  background-color: var(--color-main);
}

/* FAQアコーディオン用CSS */
.accordion-container {
  width: 80%;
  margin: 50px auto 30px;
  border-bottom: 1px solid var(--line);
}
.accordion-container .accordion-title {
  position: relative;
  padding: 25px 50px 25px 40px;
  background-color: #fff;
  font-size: 1.2rem;
  font-weight: normal;
  color: #000;
  cursor: pointer;
  transition: 0.3s;
  line-height: 1.5;
  text-indent: -1.6rem;
  padding-left: 2.6rem;
  border-top: 1px solid var(--line);
}
.accordion-container .accordion-title span {
  color: var(--color-main);
  font-size: 1.4rem;
  margin-right: 5px;
}
.accordion-container .accordion-title:hover {
  color: var(--color-main);
}
.accordion-container .accordion-title:hover::before {
  background: var(--color-main);
}
.accordion-container .accordion-title:hover::after {
  background: var(--color-main);
}
.accordion-container .accordion-title:active {
  color: var(--color-main);
}
.accordion-container .accordion-title.open {
  color: var(--color-main);
}
.accordion-container .accordion-title.open::before {
  background: var(--color-main);
  transform: rotate(180deg);
}
.accordion-container .accordion-title.open::after {
  opacity: 0;
}
.accordion-container .accordion-title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 15px;
  height: 2px;
  transform: rotate(90deg);
  background: var(--color-black);
  transition: all 0.2s ease-in-out;
}
.accordion-container .accordion-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 15px;
  height: 2px;
  background: var(--color-black);
  transition: all 0.2s ease-in-out;
}
.accordion-container .accordion-content {
  background-color: #fff;
  padding: 0 40px 25px 16px;
}
.accordion-container .accordion-content p {
  line-height: 1.5;
}
.accordion-container .accordion-content p span {
  color: var(--color-main);
  font-size: 1.4rem;
}

@media only screen and (max-width: 1080px) {
  .accordion-container {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .faq .default-title .sub-title {
    font-size: 1.3rem;
  }
  .accordion-container {
    margin: 30px auto 10px;
  }
  .accordion-container .accordion-title {
    padding: 20px 40px 20px 30px;
    font-size: 1rem;
    text-indent: -1.5rem;
    padding-left: 1.5rem;
  }
  .accordion-container .accordion-title span {
    font-size: 1.2rem;
  }
  .accordion-container .accordion-title::before {
    right: 15px;
  }
  .accordion-container .accordion-title::after {
    right: 15px;
  }
  .accordion-container .accordion-content p span {
    font-size: 1.2rem;
  }
  .accordion-container .accordion-content {
    padding: 0 0px 20px 0;
  }
  .accordion-container .accordion-content p {
    font-size: 0.9rem;
  }
}

/* 応募フォーム ------------------------------------------------- */
.contact{
  background-color: var(--color-main);
}
.card{
  width: 80%;
  min-width: 800px;
  margin: 50px auto 0;
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 70px 60px;
}
.lead {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--color-main);
}
.sub-lead{
  text-align:center;
  line-height: 2;
  font-size: 1.1rem;
  font-weight:600;
  margin-top: 35px;
}
.tel-wrap {
  margin-top: 40px;
  text-align: center;
}
.tel-wrap h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.tel-wrap .tel {
  padding-left: 50px;
  display: inline-block;
  position: relative;
}
.tel-wrap .tel::before {
  content: "";
  width: 45px;
  height: 45px;
  background-image: url(../img/tel.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.tel-wrap .tel a {
  font-size: 2.4rem;
  color: var(--color-main);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 700;
}
.tel-wrap .tel span {
  font-size: 1.1rem;
  font-weight: 600;
}
.section-head{
  text-align:center;
  font-size: 1.5rem;
  font-weight:600;
  margin: 50px auto 0;
}
.alert{
  max-width:640px;
  margin:0 auto 16px;
  padding:12px 14px;
  border-radius:12px;
  font-weight:600;
  text-align:center;
}
.alert.ok{ background:#ecfdf5; color:#065f46; border:1px solid #a7f3d0; }
.alert.ng{ background:#fef2f2; color:#991b1b; border:1px solid #fecaca; }

form{ 
  max-width:640px; 
  margin: 30px auto 0; 
}
.row{
  display:grid;
  grid-template-columns: 160px 1fr;
  gap:12px;
  align-items:center;
  padding:20px 0;
  border-top:1px solid var(--line);
}
form .row:has(+ .actions) {
  border-bottom: 1px solid var(--line);
}
.row:first-of-type{ border-top:0; }

.label{
  font-size: 0.9rem;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:8px;
}
.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:40px;
  padding:2px 8px;
  border-radius: 5px;
  font-size:11px;
  font-weight:600;
  color:#fff;
  background:var(--color-main);
}
.badge.optional{
  background:#9ca3af;
}
.control input[type="text"],
.control input[type="email"],
.control input[type="tel"],
.control select,
.control textarea{
  width:100%;
  border:0;
  background:var(--field);
  border-radius:10px;
  padding:12px 12px;
  outline:none;
  font-size:15px;
}
.control textarea{ min-height:130px; resize:vertical; }
.hint{
  color:var(--muted);
  font-size:12px;
  margin-top:6px;
}
.radios{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  align-items:center;
}
.radio{
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:700;
}
.actions{
  margin-top: 40px;
  display:flex;
  justify-content:center;
}
button{
  appearance:none;
  border:0;
  cursor:pointer;
  background:var(--color-main);
  color:#fff;
  font-weight:800;
  border-radius:10px;
  padding:14px 46px;
  font-size:16px;
}
button:hover{ filter:brightness(.98); }
button:active{ transform:translateY(1px); }
form button:disabled {
  pointer-events: none;
} 

/* エラーメッセージ */
.field-error{
  font-size:12px;
  font-weight:700;
  color:#dc2626;
  line-height: 1.6;
}
.is-invalid{
  outline: 2px solid rgba(220,38,38,.35);
}
button:disabled{
  opacity:.45;
  cursor:not-allowed;
}

@media (max-width:640px){
  .row{ grid-template-columns: 1fr; }
  .label{ justify-content:flex-start; }
}

@media only screen and (max-width: 1080px) {
  .card {
    width: 100%;
    min-width: unset;
    margin: 40px auto 0;
    padding: 50px 40px;
  }
}

@media only screen and (max-width: 767px) {
  .card {
    margin: 30px auto 0;
    padding: 40px 15px;
  }
  .lead {
    font-size: 1.2rem;
  }
  .sub-lead {
    line-height: 1.8;
    font-size: 1rem;
    margin-top: 25px;
  }
  .tel-wrap {
    margin-top: 30px;
  }
  .tel-wrap h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  .tel-wrap .tel {
    padding-left: 10px;
  }
  .tel-wrap .tel a {
    font-size: 1.6rem;
  }
  .tel-wrap .tel span {
    font-size: 1rem;
  }
  .tel-wrap .tel::before {
    width: 30px;
    height: 30px;
    top: 6px;
    transform: translateY(0%);
    left: -20px;
  }
  .section-head {
    font-size: 1.3rem;
    margin: 30px auto 0;
  }
  .contact form {
    max-width: 640px;
    margin: 20px auto 0;
  }
}

/* コピーライト ------------------------------------------------- */
footer .copy {
  text-align: center;
  font-size: 0.8rem;
  line-height: 1;
  color: var(--color-white);
  padding: 20px;
  background-color: var(--color-darkgray);
}
