@charset "UTF-8";
body {
  width: 100%;
  overflow-x: clip;
  margin: 0;
  padding: 0;
}
body * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  vertical-align: top;
}

img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

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

li {
  list-style: none;
  margin: 0;
  padding: 0;
}

summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

/* アニメーション */
.animation {
  position: relative;
  transform: translateY(60px);
  opacity: 0;
  transition: all 0.45s ease-in;
}

.animation.is_in {
  transform: translateY(0);
  opacity: 1;
}

/* Header styles */
header {
  width: 100%;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
}

p {
  line-height: 1.5;
}

@media screen and (max-width: 1079px) {
  .header_inner {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 0;
    height: 60px;
    background-color: #fff;
  }
  .logo_block img {
    height: 40px;
    width: 193px;
    position: absolute;
    z-index: 10;
    top: 10px;
    left: 10px;
  }
  .hum_btn {
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    background: #169100;
    position: fixed;
    z-index: 18;
    right: 0px;
    top: 0px;
  }
  .icon_hum {
    width: 40%;
    height: 3px;
    background-color: #fff;
    position: relative;
    transition: all 0.3s ease-in-out;
  }
  .icon_hum::before,
  .icon_hum::after {
    content: "";
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    left: 0;
    transition: all 0.3s ease-in-out;
  }
  .icon_hum::before {
    top: -8px;
  }
  .icon_hum::after {
    top: 8px;
  }
  /* Open menu */
  .hum_btn.is_opened .icon_hum {
    background-color: transparent;
  }
  .hum_btn.is_opened .icon_hum::before {
    transform: rotate(45deg);
    top: 0;
  }
  .hum_btn.is_opened .icon_hum::after {
    transform: rotate(-45deg);
    top: 0;
  }
  .nav_block {
    position: fixed;
    top: 0;
    right: -110%;
    width: 100%;
    /* 親コンテナは画面全体をカバー */
    height: 100%;
    background-color: rgba(248, 248, 239, 0.72);
    transition: all 0.3s ease-in-out;
    display: flex;
    /* 子要素を揃えるためにflexを使用 */
    justify-content: flex-end;
    /* 子要素を右寄せ */
    z-index: 1;
  }
  .nav_block.is_opened {
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 100%;
    position: absolute;
    /* 表示時に右端に固定 */
  }
  .nav_contents {
    width: 100%;
    /* 子コンテンツの幅を70%に設定 */
    background-color: #fff;
    /* 背景色（任意） */
    height: 100vh;
    /* 親の高さに合わせる */
    padding: 20px;
    display: flex;
    flex-direction: column;
    /* 上下の余白調整 */
  }
  .nav_contents a {
    font-size: 16px;
    letter-spacing: 0.08em;
    text-decoration: none;
    font-weight: 500;
    line-height: 0.7619047619;
    color: #000;
  }
  .nav_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
    position: relative;
  }
  .recruit_btn a {
    display: block;
    margin-top: 20px;
    padding: 23px 15px;
    background-color: #169100;
    color: #fff;
    text-align: center;
    border-radius: 4px;
  }
}
@media screen and (min-width: 1080px) {
  header {
    padding: 30px 30px 0;
  }
  .header_inner {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 120px;
    padding-left: 30px;
    max-width: 1500px;
    margin: 0 auto;
  }
  .logo_block {
    width: 255px;
    aspect-ratio: 200/33;
  }
  .hum_btn {
    display: none;
  }
  .nav_block {
    position: relative;
    right: initial;
    width: 100%;
    height: auto;
    background-color: transparent;
    transition: unset;
  }
  .nav_contents {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 40px;
  }
  .nav_contents a {
    text-decoration: none;
    font-weight: 600;
    line-height: 0.7619047619;
    color: #000;
  }
  .nav_list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0 min(1.875vw, 36px);
  }
  .nav_list li {
    line-height: 1;
  }
  .nav_list a {
    display: inline-block;
    font-size: min(0.8854166667vw, 16px);
    padding: 40px 24px 40px 0;
    position: relative;
  }
  .nav_list a::after {
    content: "";
    display: inline-block;
    width: min(0.8854166667vw, 18px);
    aspect-ratio: 18/12;
    background: url(../img/icon_arrow_grn.svg) no-repeat center/100% auto;
    position: absolute;
    top: calc((100% - min(0.625vw, 12px)) / 2);
    right: -4px;
  }
  .nav_list li:last-child a::after {
    display: none;
  }
  .recruit_btn a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 10px 82px;
    color: #fff;
    text-align: center;
    border-radius: 0 50px 50px 0;
    font-size: min(1.3020833333vw, 17px);
    position: relative; /* 擬似要素および内部要素の配置のため */
    gap: min(1.875vw, 48px);
    background-color: #169100;
    overflow: hidden; /* 背景スライドがはみ出さないように */
    z-index: 1; /* テキストとアイコンを背景スライドの上に表示 */
    border-radius: 0 50px 50px 0; /* 重複していた border-radius を統一 */
    /* 背景スライド用の内部要素 */
    /* 既存の ::before 擬似要素（アイコン） */
    /* 既存の ::after 擬似要素（小さな矢印アイコン） */
    /* ホバー時のスタイル調整 */
  }
  .recruit_btn a .bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #126000; /* スライドインする背景色 */
    transform: translateX(-100%); /* 初期状態は左外に配置 */
    transition: transform 0.5s ease; /* transform を使用したアニメーション */
    z-index: 0; /* 背景として配置 */
  }
  .recruit_btn a:hover .bg-slide {
    transform: translateX(0); /* ホバー時にスライドイン */
  }
  .recruit_btn a::before {
    content: "";
    display: block;
    width: min(1.5104166667vw, 29px);
    aspect-ratio: 29/20;
    background: url(../img/icon_header_recruit.svg) no-repeat center/100% auto;
    position: absolute; /* relative から absolute に変更 */
    left: 20px; /* 固定位置に設定（必要に応じて調整） */
    z-index: 2; /* アイコンを背景スライドの上に表示 */
  }
  .recruit_btn a::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: solid 4px #fff;
    border-right: solid 4px #fff;
    transform: rotate(45deg);
    position: absolute; /* relative から absolute に変更 */
    right: 20px; /* 固定位置に設定（必要に応じて調整） */
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    z-index: 2; /* 矢印アイコンを背景スライドの上に表示 */
  }
  .recruit_btn a:hover {
    background-color: #169100; /* 元の背景色を維持 */
    color: white;
    border-color: #169100; /* ボーダーの色のみ変更 */
  }
  .recruit_btn .textbox {
    display: inline-flex;
    flex-direction: column;
    position: relative;
    top: -8px;
    z-index: 3; /* テキストを最前面に表示 */
  }
  .recruit_btn .en {
    line-height: 2;
    font-size: 20px;
    font-family: "Open Sans", serif;
  }
  .recruit_btn .ja {
    font-size: min(0.625vw, 12px);
    display: block;
    text-align: center;
    line-height: 1;
  }
}
footer {
  background-color: #f8f8ef;
  padding: 110px 20px;
}
footer .footer_inner {
  max-width: 1540px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto auto;
  grid-column-gap: min(3.6363636364vw, 100px);
  justify-content: center;
}
footer .footer_logo {
  grid-area: 1/1/2/2;
}
footer .footer_logo a {
  display: block;
  width: min(14.6363636364vw, 345px);
}
footer .footer_address {
  grid-area: 2/1/3/2;
  width: min(24.5454545455vw, 540px);
  margin-top: 70px;
}
footer .footer_address .flex_block {
  display: flex;
  gap: min(1.2727272727vw, 28px);
}
footer .footer_address .flex_block .name {
  font-size: min(0.8181818182vw, 18px);
  font-weight: 700;
  padding-bottom: 6px;
}
footer .footer_address .flex_block .address {
  font-size: min(0.6363636364vw, 14px);
}
footer .footer_contact {
  grid-area: 1/2/2/3;
  width: min(49.0909090909vw, 1080px);
}
footer .footer_contact dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 min(1.6363636364vw, 36px);
}
footer .footer_contact dl dt {
  font-weight: 900;
}
footer .footer_contact dl dt .en {
  font-family: Arial, Helvetica, sans-serif;
  font-size: min(2.2727272727vw, 50px);
  display: block;
}
footer .footer_contact dl dt .ja {
  font-size: min(1.1818181818vw, 26px);
  color: #169100;
  font-weight: 700;
}
footer .footer_contact dl dd a.btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  color: #fff;
  background-color: #169100;
  font-size: min(0.8181818182vw, 18px);
  font-weight: 700;
  display: flex;
  align-items: center;
  padding: min(1.8181818182vw, 40px) min(5.4545454545vw, 120px) min(1.8181818182vw, 40px) min(5.4545454545vw, 120px);
  border-radius: 100px;
  transition: background-color 0.5s ease;
  /* 既存の ::after 擬似要素（小さな矢印アイコン） */
}
footer .footer_contact dl dd a.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #126000;
  transition: left 0.5s ease;
  z-index: -1;
}
footer .footer_contact dl dd a.btn::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: solid 4px #fff;
  border-right: solid 4px #fff;
  transform: rotate(45deg);
  position: absolute; /* relative から absolute に変更 */
  right: 20px; /* 固定位置に設定（必要に応じて調整） */
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  z-index: 2; /* 矢印アイコンを背景スライドの上に表示 */
}
footer .footer_contact dl dd a.btn:hover::before {
  left: 0;
}
footer .footer_contact dl dd a.btn:hover {
  background-color: #169100;
}
footer .footer_sitemap {
  grid-area: 2/2/4/3;
  width: min(49.0909090909vw, 1080px);
  margin-top: min(3.8636363636vw, 85px);
  border-top: solid 1px #000;
  padding: min(2.5vw, 55px) min(1.6363636364vw, 40px) 0;
  display: flex;
  gap: min(1.6363636364vw, 36px);
}
footer .footer_sitemap a {
  color: #000;
  text-decoration: none;
  line-height: 1.6875;
}
footer .footer_sitemap .title {
  font-weight: 700;
  font-size: min(0.8181818182vw, 18px);
  transition: all 0.5s;
}
footer .footer_sitemap .title i {
  display: none;
}
footer .footer_sitemap .title a {
  transition: all 0.5s;
}
footer .footer_sitemap .title:hover a {
  color: #169100;
}
footer .footer_sitemap .title.last {
  padding-top: 20px;
}
footer .footer_sitemap ul {
  margin-top: 10px;
}
footer .footer_sitemap ul li a {
  padding-left: 20px;
  position: relative;
  font-size: min(0.7272727273vw, 16px);
  transition: all 0.5s;
}
footer .footer_sitemap ul li a:hover {
  color: #169100;
}
footer .footer_sitemap ul li a::before {
  content: "";
  display: block;
  width: 7px;
  height: 1px;
  background-color: #707070;
  position: absolute;
  top: 50%;
  left: 0;
}
footer .copyrights {
  grid-area: 3/1/4/2;
  margin-top: 104px;
}
footer .copyrights p {
  font-size: min(0.5454545455vw, 12px);
  color: #838a91;
}

@media screen and (max-width: 1079px) {
  footer {
    background-color: #f8f8ef;
    padding: 45px 25px;
  }
  footer .footer_inner {
    max-width: unset;
    display: flex;
    flex-direction: column;
  }
  footer .page-top {
    position: fixed;
    order: 6;
    background: #169100;
    color: white;
    bottom: 0;
    top: auto;
    right: -4px;
  }
  footer .page-top::after {
    color: #fff;
  }
  footer .footer_logo {
    order: 3;
    padding-top: 50px;
  }
  footer .footer_logo a {
    width: min(46.1538461538vw, 200px);
    margin-inline: auto;
    text-align: left;
  }
  footer .footer_address {
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 24px;
    order: 4;
  }
  footer .footer_address .flex_block {
    display: flex;
    gap: min(4.1025641026vw, 20px);
  }
  footer .footer_address .flex_block .name {
    font-size: min(3.5897435897vw, 14px);
    font-weight: 700;
  }
  footer .footer_address .flex_block .address {
    font-size: min(3.3333333333vw, 13px);
  }
  footer .footer_contact {
    width: 100%;
    order: 1;
  }
  footer .footer_contact dl {
    display: flex;
    flex-direction: column;
    margin-top: 0px;
  }
  footer .footer_contact dl dt .en {
    font-size: min(8.2051282051vw, 36px);
  }
  footer .footer_contact dl dt .ja {
    width: 100%;
    font-size: min(5.1282051282vw, 22px);
  }
  footer .footer_contact dl dd {
    margin-top: 16px;
    width: 90%;
  }
  footer .footer_contact dl dd a.btn {
    font-size: max(12px, min(4.1025641026vw, 20px));
    padding: 20px;
    text-align: center;
    justify-content: center;
  }
  footer .footer_contact dl dd a.btn::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    margin-left: min(7.1794871795vw, 36px);
  }
  footer .footer_sitemap {
    width: 100%;
    margin-top: 32px;
    border-top: 0;
    padding: 0;
    flex-direction: column;
    gap: 18px;
    order: 2;
  }
  footer .footer_sitemap .title.last {
    border-top: 1px solid #d7d7d7;
    padding-top: 20px;
    margin-top: 20px;
  }
  footer .footer_sitemap p {
    position: relative;
  }
  footer .footer_sitemap .sitemap_content {
    border-bottom: 1px solid #d7d7d7;
    padding-bottom: 20px;
    /* ドロップダウンが開いた時のスタイル */
  }
  footer .footer_sitemap .sitemap_content i {
    display: inline-block;
    color: #169100;
    position: absolute;
    top: 13%;
    right: 0px;
  }
  footer .footer_sitemap .sitemap_content .dropdown-menu {
    display: block;
    max-height: 0;
    opacity: 0;
  }
  footer .footer_sitemap .sitemap_content .dropdown-menu {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  footer .footer_sitemap .sitemap_content .dropdown-menu li {
    padding: 10px 0;
    background: white;
    /* border-bottom: 1px solid #ddd; */
    transform: translateY(-5px);
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    margin-top: 10px;
    border-radius: 50px;
  }
  footer .footer_sitemap .sitemap_content .dropdown-menu li a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    padding-left: 20px;
    display: block;
  }
  footer .footer_sitemap .sitemap_content .dropdown-menu li a:hover {
    color: #169100;
  }
  footer .footer_sitemap .sitemap_content .dropdown-menu li a::before {
    content: "\f0a9";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    background-color: #fff;
    position: inherit;
    margin-right: 10px;
  }
  footer .footer_sitemap .sitemap_content.active .dropdown-menu {
    max-height: 500px; /* 大きめに設定してアニメーション */
    opacity: 1;
  }
  footer .footer_sitemap .sitemap_content.active li {
    transform: translateY(0);
    opacity: 1;
  }
  footer .footer_sitemap .sitemap_content.active .title i {
    transform: rotate(45deg); /* プラスアイコンを回転させて× */
  }
  footer .footer_sitemap a {
    color: #000;
    text-decoration: none;
    line-height: 1.6875;
  }
  footer .footer_sitemap .title {
    font-size: min(3.5897435897vw, 16px);
  }
  footer .footer_sitemap ul {
    margin-top: 10px;
  }
  footer .footer_sitemap ul li a {
    padding-left: 20px;
    position: relative;
    font-size: min(3.3333333333vw, 15px);
  }
  footer .copyrights {
    margin-top: 33px;
    order: 5;
    margin-bottom: 20px;
  }
  footer .copyrights p {
    font-size: min(2.8205128205vw, 11px);
    text-align: center;
  }
}
main {
  position: relative;
  z-index: 0;
}

.pc {
  display: block;
}

.ylw {
  color: #f3c94e;
}

.grn {
  color: #169100;
}

.n_grn {
  color: #4edda6;
}

.aqua {
  color: #8dc7ec;
}

.toppage .mv_wrap {
  position: relative;
  z-index: 0;
}
.toppage .mv_block {
  position: relative;
  z-index: 0;
}
.toppage .mv_block .bg_movie {
  width: 100%;
  aspect-ratio: 2200/1237;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.toppage .mv_block .bg_movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.toppage .mv_block .mv_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 2200/1237;
}
.toppage .mv_block .mv_content .main {
  width: min(31.7727272727vw, 700px);
  transform: rotate(3deg);
}
.toppage .news_block {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: min(1.8181818182vw, 40px);
  padding: min(2.7272727273vw, 60px) min(4.5454545455vw, 100px);
  border-radius: 7px 0 0 0;
}
.toppage .news_block .title_block p {
  color: #169100;
  font-weight: 700;
  font-size: 19px;
}
.toppage .news_block .news_content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 0;
  transition: all 0.5s;
}
.toppage .news_block .news_content a {
  position: absolute;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s;
}
.toppage .news_block .news_content:hover {
  color: #169100;
}
.toppage .news_block .date {
  font-size: min(0.7272727273vw, 16px);
  font-weight: 600;
  margin-right: min(1.8181818182vw, 40px);
}
.toppage .news_block .title {
  font-size: min(0.7272727273vw, 16px);
  line-height: 1;
  display: flex;
  align-items: center;
}
.toppage .news_block .title::after {
  content: "";
  display: inline-block;
  width: 27px;
  height: 27px;
  background: url(../img/icon_cricle_arrow_grn.svg) no-repeat center/100% auto;
  margin-left: min(2.9545454545vw, 65px);
}
.toppage .flex_block {
  display: flex;
}
.toppage .with_handwrite_title h2 {
  position: relative;
  z-index: 0;
}
.toppage .with_handwrite_title h2 .en {
  font-family: "Arial Black", sans-serif;
  font-size: min(3.1818181818vw, 70px);
  font-weight: 900;
  letter-spacing: 0.025em;
}
.toppage .with_handwrite_title h2 .ja {
  display: block;
  font-size: min(1.1818181818vw, 26px);
  color: #169100;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.3846153846;
}
.toppage .about_us {
  margin-top: min(6.2272727273vw, 137px);
}
.toppage .about_us .about_us_inner {
  max-width: 1540px;
  width: 80%;
  margin-inline: auto;
}
.toppage .about_us .about_us_inner .flex_block {
  align-items: center;
  justify-content: space-between;
}
.toppage .about_us .about_us_inner .flex_block ._text {
  width: calc(100% - min(28.6363636364vw, 630px));
}
.toppage .about_us .about_us_inner .flex_block ._image {
  width: min(26.5vw, 585px);
}
.toppage .about_us .about_us_inner .flex_block ._image figure {
  position: relative;
}
.toppage .about_us .about_us_inner .flex_block ._image figure::before {
  content: "";
  display: block;
  width: min(15.9090909091vw, 350px);
  aspect-ratio: 350/220;
  background: url(../img/top/aboutus_image0101.svg) no-repeat top center/100% auto;
  position: absolute;
  top: min(-2.4545454545vw, -54px);
  left: min(-2.5909090909vw, -57px);
  z-index: 1;
}
.toppage .about_us .about_us_inner .flex_block ._image figure::after {
  content: "";
  display: block;
  width: min(19.0909090909vw, 420px);
  aspect-ratio: 420/155;
  background: url(../img/top/aboutus_image0102.svg) no-repeat top center/100% auto;
  position: absolute;
  bottom: min(-1.5909090909vw, -35px);
  right: min(-1.0909090909vw, -24px);
  z-index: 1;
}
.toppage .about_us .about_us_inner .handwrite {
  width: min(12.2727272727vw, 270px);
  aspect-ratio: 270/125;
  position: absolute;
  left: min(8.4090909091vw, 185px);
  top: 0;
  mix-blend-mode: lighten;
}
.toppage .about_us .about_us_inner .subtitle {
  font-size: min(1.6363636364vw, 36px);
  font-weight: 700;
  color: #169100;
  margin-top: min(2.3636363636vw, 52px);
}
.toppage .about_us .about_us_inner .subtitle + p {
  margin-top: 40px;
  font-size: min(0.8181818182vw, 20px);
  font-weight: 600;
}
.toppage .our_service {
  background-color: #f8f8ef;
  margin-top: 175px;
}
.toppage .our_service .our_service_inner {
  position: relative;
  max-width: 1540px;
  width: 80%;
  margin-inline: auto;
  padding: min(5.9090909091vw, 130px) 0;
}
.toppage .our_service .our_service_inner .with_handwrite_title {
  position: absolute;
  top: min(-2.0454545455vw, -45px);
  right: min(3.9090909091vw, 86px);
  width: -moz-fit-content;
  width: fit-content;
}
.toppage .our_service .our_service_inner .with_handwrite_title .handwrite {
  display: block;
  width: min(8.1818181818vw, 180px);
  position: absolute;
  right: min(-3.6363636364vw, -80px);
  top: min(0.8181818182vw, 18px);
}
.toppage .service_contents {
  display: flex;
  gap: 47px;
}
.toppage .menu_content {
  background-color: #fff;
  border-radius: 17px;
  padding: 90px 52px;
}
.toppage .menu_content.s-make::before {
  content: "";
  display: block;
  width: max(84px, min(5.5454545455vw, 122px));
  aspect-ratio: 120/136;
  background: url(../img/top/service_image01.svg) no-repeat top center/100% auto;
  position: absolute;
  top: min(-2.2727272727vw, -50px);
  left: 50%;
  transform: translateX(-50%);
}
.toppage .menu_content.s-save::before {
  content: "";
  display: block;
  width: max(84px, min(5.5454545455vw, 122px));
  aspect-ratio: 120/138;
  background: url(../img/top/service_image03.svg) no-repeat top center/100% auto;
  position: absolute;
  top: min(-2.2727272727vw, -50px);
  left: 47%;
  transform: translateX(-50%);
}
.toppage .menu_content.s-grow::before {
  content: "";
  display: block;
  width: max(84px, min(5.5454545455vw, 122px));
  aspect-ratio: 134/128;
  background: url(../img/top/service_image02.svg) no-repeat top center/100% auto;
  position: absolute;
  top: min(-2.2727272727vw, -50px);
  left: 50%;
  transform: translateX(-50%);
}
.toppage .menu_content .title h3 {
  font-size: min(1.8636363636vw, 41px);
  line-height: 1;
  display: flex;
  align-items: flex-end;
  position: relative;
  letter-spacing: 0.045em;
}
.toppage .menu_content .title .color {
  font-size: min(3.2727272727vw, 57px);
}
.toppage .menu_content .title .ylw {
  position: relative;
}
.toppage .menu_content .title .grn {
  position: relative;
}
.toppage .menu_content .title h3:has(.aqua) {
  position: relative;
}
.toppage .menulink {
  margin-top: 6px;
}
.toppage .menulink a {
  padding: 27px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: min(1.875vw, 24px);
  transition: all 0.5s;
}
.toppage .menulink a::after {
  content: "";
  display: block;
  width: min(1.2272727273vw, 27px);
  aspect-ratio: 1/1;
}
.toppage .menulink a:hover {
  color: #169100;
}
.toppage .menulink a.ico_aqua:hover {
  color: #8dc7ec;
}
.toppage .menulink a.ico_yel:hover {
  color: #f3c94e;
}
.toppage .menulink .ico_yel::after {
  background: url(../img/icon_cricle_arrow_ylw.svg) no-repeat center/100% auto;
}
.toppage .menulink .ico_grn::after {
  background: url(../img/icon_cricle_arrow_grn.svg) no-repeat center/100% auto;
}
.toppage .menulink .ico_aqua::after {
  background: url(../img/icon_cricle_arrow_aqua.svg) no-repeat center/100% auto;
}
.toppage .menulink .desc {
  font-size: max(14px, min(1.875vw, 16px));
}
.toppage .left_menu {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 33.5714285714%;
}
.toppage .right_menu {
  width: calc(66.4285714286% - 30px);
}
.toppage .right_menu .menu_content {
  height: 100%;
}
.toppage .right_menu .title h3 {
  justify-content: center;
}
.toppage ._links {
  display: flex;
  flex-wrap: wrap;
  gap: min(5.9090909091vw, 136px) 30px;
  margin-top: 70px;
}
.toppage ._links .menulink {
  width: calc((100% - 30px) / 2);
}
.toppage .image_swiper_wrap {
  margin-top: 60px;
  width: 100%;
  overflow-x: clip;
}
.toppage .image_swiper .swiper-slide {
  overflow: clip;
  border-radius: 25px;
}
.toppage .image_swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.toppage .image_swiper ._542 {
  width: min(24.6363636364vw, 542px);
  aspect-ratio: 542/368;
  margin: 0 20px;
}
.toppage .image_swiper ._612 {
  width: min(27.8181818182vw, 612px);
  aspect-ratio: 612/368;
  margin: 0 20px;
}
.toppage .image_swiper ._384 {
  width: min(17.4545454545vw, 348px);
  aspect-ratio: 384/368;
  margin: 0 20px;
}
.toppage .company {
  margin-top: 66px;
}
.toppage .company .with_handwrite_title {
  margin-bottom: min(2.9545454545vw, 65px);
}
.toppage .company .with_handwrite_title h2 {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.toppage .company .with_handwrite_title h2 .handwrite {
  width: min(8.8636363636vw, 195px);
  position: absolute;
  top: min(2.5454545455vw, 56px);
  left: min(14.5454545455vw, 320px);
}
.toppage .company .flex_block {
  align-items: flex-start;
  justify-content: space-between;
}
.toppage .company .flex_block ._text {
  width: calc(100% - 48.0909090909%);
  margin-top: min(3.2727272727vw, 72px);
  background-color: #f8f8ef;
  padding: min(5.6818181818vw, 125px) 40px min(6.5909090909vw, 145px) min(9.5454545455vw, 210px);
  position: relative;
}
.toppage .company .flex_block ._text::after {
  content: "";
  display: block;
  width: min(24.9090909091vw, 548px);
  aspect-ratio: 548/186;
  background: url(../img/top/company_image02.svg) no-repeat top center/100% auto;
  position: absolute;
  left: 50%;
  bottom: min(-2.8181818182vw, -62px);
  transform: translateX(-50%);
}
.toppage .company .flex_block ._image {
  width: 48.0909090909%;
}
.toppage .company .flex_block ._image figure {
  aspect-ratio: 1100/765;
  overflow: clip;
  border-radius: 27px;
}
.toppage .company .flex_block ._image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.toppage .news {
  margin-top: 75px;
  margin-bottom: 75px;
}
.toppage .news .news_inner {
  max-width: 1380px;
  width: 80%;
  margin-inline: auto;
}
.toppage .news .flex_block {
  justify-content: space-between;
}
.toppage .news ._summary {
  width: 32.3188405797%;
}
.toppage .news ._list {
  width: 61.231884058%;
}
.toppage .news ._list ul li {
  border-bottom: dashed 1px #c4c4c4;
  padding: min(1.8181818182vw, 40px) min(1.7272727273vw, 38px) min(1.8181818182vw, 40px) min(3.0909090909vw, 68px);
}
.toppage .news ._list ul li a {
  display: block;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  position: relative;
}
.toppage .news ._list ul li a::after {
  content: "";
  display: block;
  width: min(1.2272727273vw, 27px);
  aspect-ratio: 1/1;
  background: url(../img/icon_cricle_arrow_grn.svg) no-repeat center/100% auto;
  position: absolute;
  top: calc((100% - min(1.2272727273vw, 27px)) / 2);
  right: 0;
}
.toppage .news ._list ul li a .date {
  font-size: 16px;
  margin-right: min(2.7272727273vw, 60px);
}
.toppage .news .sort_wrap {
  margin-top: 43px;
}
.toppage .news .sort_wrap ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px 7px;
}
.toppage .news .sort_wrap ul li {
  width: -moz-fit-content;
  width: fit-content;
}
.toppage .news .sort_wrap ul li a {
  padding: 10px min(1.8181818182vw, 44px);
  text-decoration: none;
  color: #000;
  border: solid 1px #000;
  font-size: min(0.6363636364vw, 14px);
  font-weight: 700;
  border-radius: 100px;
  padding: 15px 30px;
  transition: all 0.5s;
}
.toppage .news .sort_wrap ul li a:hover {
  background-color: #169100;
  color: #fff;
  border: solid 1px #169100;
}
.toppage .news .sort_wrap ul li .active {
  background-color: #169100;
  color: #fff;
  border: solid 1px #169100;
}
.toppage .recruit {
  margin-top: 120px;
  background: url(../img/top/recruit_bg_image.png) no-repeat top center/cover;
  aspect-ratio: 2200/756;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.toppage .recruit::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(129, 132, 155, 0.68);
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  top: 0;
}
.toppage .recruit .recruit_inner {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 1;
}
.toppage .recruit .recruit_inner .with_handwrite_title h2 {
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: min(2.7272727273vw, 60px);
}
.toppage .recruit .recruit_inner .with_handwrite_title h2 .handwrite {
  width: min(10.0454545455vw, 210px);
  position: absolute;
  left: 50%;
  top: min(3.2727272727vw, 72px);
  transform: translateX(-50%);
}
.toppage .recruit .recruit_inner .with_handwrite_title p {
  font-size: min(1.1363636364vw, 25px);
  font-weight: 600;
  color: #fff;
  line-height: 1.44;
}

/* ボタン */
.linkbox {
  margin-top: min(2.2727272727vw, 50px);
}
.linkbox.pc_center {
  text-align: center;
}
.linkbox a {
  display: inline-block;
  padding: min(1.909091vw, 32px) min(3.9545454545vw, 92px);
  text-decoration: none;
  color: #000;
  font-size: min(3.636364vw, 16px);
  font-weight: 500;
  line-height: 1.0125;
  position: relative; /* 追加: 擬似要素の配置のため */
  overflow: hidden; /* 追加: 擬似要素がはみ出さないように */
  transition: all 0.5s;
  z-index: 1; /* 追加: テキストを擬似要素の上に表示 */
  /* 背景スライド用の擬似要素 */
  /* ホバー時の背景スライド */
  /* ホバー時のテキストとボーダーの色変更 */
}
.linkbox a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%; /* 初期状態は左外に配置 */
  width: 100%;
  height: 100%;
  background-color: #169100; /* スライドして表示する色 */
  transition: left 0.5s ease; /* スライドアニメーション */
  z-index: -1; /* 背景として配置 */
}
.linkbox a.border {
  border: solid 1px #000;
  border-radius: 50px;
}
.linkbox a.icon_bk::before {
  content: "\f0a9";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  padding: 0 10px 0 0px;
  color: #169100;
  position: absolute;
  right: min(1.2727272727vw, 30px);
  transition: all 0.5s;
  z-index: 2; /* アイコンをテキストの上に表示 */
}
.linkbox a.icon_grn::before {
  content: "\f0a9";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  padding: 0 10px 0 0px;
  color: #169100;
  background: none;
  transition: all 0.5s;
  display: block;
  position: absolute;
  right: min(1.2727272727vw, 30px);
  z-index: 2; /* アイコンをテキストの上に表示 */
}
.linkbox a.bg_wh {
  border-radius: 50px;
  background-color: #fff;
  font-weight: bold;
}
.linkbox a:hover::after {
  left: 0; /* 背景色をスライドイン */
}
.linkbox a:hover {
  color: white;
}
.linkbox a:hover.border {
  border: solid 1px #fff;
}
.linkbox a:hover.icon_bk::before {
  position: absolute;
  right: min(1.2727272727vw, 30px);
  color: #fff;
  z-index: 2; /* アイコンをテキストの上に表示 */
}
.linkbox a:hover.icon_grn::before {
  position: absolute;
  right: min(1.2727272727vw, 30px);
  color: #fff;
  z-index: 2; /* アイコンをテキストの上に表示 */
}

@media screen and (max-width: 1079px) {
  /* ボタン */
  .linkbox {
    margin-top: min(9.2307692308vw, 36px);
  }
  .linkbox.pc_center {
    text-align: center;
  }
  .linkbox a {
    display: inline-block;
    padding: min(9.076923vw, 20px) min(10.7692307692vw, 42px);
    font-size: min(3.8461538462vw, 17px);
  }
  .linkbox a.border {
    border: solid 1px #000;
    border-radius: 50px;
    width: 100%;
    text-align: center;
  }
  .linkbox a.icon_bk::before {
    width: min(2.0512820513vw, 8px);
    height: auto;
    aspect-ratio: 1/1;
    right: min(4.1025641026vw, 16px);
    top: 36%;
  }
  .linkbox a.icon_grn::before {
    width: min(2.0512820513vw, 8px);
    height: auto;
    aspect-ratio: 1/1;
    right: min(4.1025641026vw, 16px);
    top: 35%;
  }
  .toppage {
    margin-top: 60px;
    /* ボタン */
  }
  .toppage .mv_block .bg_movie {
    aspect-ratio: 390/680;
    height: 50vh;
    width: 100vw;
  }
  .toppage .mv_block .mv_content {
    aspect-ratio: 390/680;
    height: 50vh;
    width: 100vw;
  }
  .toppage .mv_block .mv_content .main {
    width: min(82.0512820513vw, 260px);
    position: relative;
    top: -15px;
  }
  .toppage .news_block {
    width: calc(100% - min(6.4102564103vw, 25px));
    display: flex;
    padding: min(10.2564102564vw, 0px) min(5.1282051282vw, 40px);
    left: 0;
    right: 0;
    bottom: -28px;
    margin: 0 auto;
    border-radius: 10px 10px 0 0;
    align-items: baseline;
  }
  .toppage .news_block::after {
    content: "";
    display: inline-block;
    width: 21px;
    height: auto;
    background: url(../img/icon_cricle_arrow_grn.svg) no-repeat center/100% auto;
    aspect-ratio: 1/1;
    margin-left: auto;
    top: 15px;
    position: absolute;
    right: 13px;
  }
  .toppage .news_block .title_block p {
    font-size: 13px;
  }
  .toppage .news_block .news_content {
    margin: 5px 0 18px 10px;
    white-space: nowrap; /* ここから */
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .toppage .news_block .news_content .title {
    white-space: nowrap; /* テキストを1行で表示 */
    overflow: hidden; /* はみ出した部分を非表示に */
    text-overflow: ellipsis; /* ドット（三点リーダー）を表示 */
    display: block; /* 幅を持たせるために必要 */
    width: 50%; /* 必要に応じて適切な幅を設定 */
    height: 44px;
  }
  .toppage .news_block .date {
    font-size: min(3.5897435897vw, 12px);
    margin-right: 12px;
  }
  .toppage .news_block .title {
    font-size: min(3.8461538462vw, 13px);
  }
  .toppage .flex_block {
    display: flex;
    flex-direction: column;
  }
  .toppage .with_handwrite_title h2 {
    text-align: center;
    width: auto !important;
  }
  .toppage .with_handwrite_title h2 .en {
    font-size: min(10.7692307692vw, 42px);
  }
  .toppage .with_handwrite_title h2 .ja {
    font-size: min(6.1538461538vw, 32px);
    line-height: 1.5;
  }
  .toppage .linkbox {
    margin-top: min(9.2307692308vw, 36px);
  }
  .toppage .linkbox.pc_center {
    text-align: center;
  }
  .toppage .linkbox a {
    display: inline-block;
    padding: min(9.076923vw, 20px) min(10.7692307692vw, 42px);
    font-size: min(3.8461538462vw, 17px);
  }
  .toppage .linkbox a.border {
    border: solid 1px #000;
    border-radius: 50px;
    width: 100%;
    text-align: center;
  }
  .toppage .linkbox a.icon_bk::before {
    width: min(2.0512820513vw, 8px);
    height: auto;
    aspect-ratio: 1/1;
    right: min(4.1025641026vw, 16px);
    top: 36%;
  }
  .toppage .linkbox a.icon_grn::before {
    width: min(2.0512820513vw, 8px);
    height: auto;
    aspect-ratio: 1/1;
    right: min(4.1025641026vw, 16px);
    top: 35%;
  }
  .toppage .about_us {
    margin-top: min(10.2564102564vw, 40px);
  }
  .toppage .about_us .about_us_inner {
    width: 100%;
    max-width: 960px;
    margin-inline: auto;
    padding: 0 25px;
  }
  .toppage .about_us .about_us_inner .flex_block {
    align-items: center;
    justify-content: flex-start;
  }
  .toppage .about_us .about_us_inner .flex_block ._text {
    width: 100%;
    order: 2;
    margin-top: 30px;
  }
  .toppage .about_us .about_us_inner .flex_block ._image {
    width: 100%;
    margin-top: min(15.3846153846vw, 60px);
    order: 1;
  }
  .toppage .about_us .about_us_inner .flex_block ._image figure {
    position: relative;
  }
  .toppage .about_us .about_us_inner .flex_block ._image figure::before {
    content: "";
    display: block;
    width: min(46.1538461538vw, 210px);
    top: min(-6.1538461538vw, -32px);
    left: min(-0.7692307692vw, -16px);
    z-index: 1;
  }
  .toppage .about_us .about_us_inner .flex_block ._image figure::after {
    width: min(53.8461538462vw, 240px);
    bottom: min(-7.6923076923vw, -30px);
    right: min(-0.7692307692vw, -16px);
    z-index: 1;
  }
  .toppage .about_us .about_us_inner .handwrite {
    width: min(38.4615384615vw, 200px);
    left: min(46.1538461538vw, 160px);
    top: 13px;
    mix-blend-mode: lighten;
  }
  .toppage .about_us .about_us_inner .subtitle {
    font-size: min(5.3846153846vw, 24px);
    margin-top: min(10.2564102564vw, 48px);
  }
  .toppage .about_us .about_us_inner .subtitle + p {
    margin-top: 20px;
    font-size: min(3.8461538462vw, 15px);
    font-weight: 600;
  }
  .toppage .our_service {
    padding: 60px 25px;
  }
  .toppage .our_service .our_service_inner {
    max-width: 960px;
    width: 100%;
    padding: 0;
  }
  .toppage .our_service .our_service_inner .with_handwrite_title {
    position: absolute;
    top: min(4.6153846154vw, -100px);
    right: 0;
    width: -moz-fit-content;
    width: fit-content;
    left: 0;
    margin: 0 auto;
  }
  .toppage .our_service .our_service_inner .with_handwrite_title .handwrite {
    width: min(25.641025641vw, 130px);
    right: -25px;
    top: min(4.6153846154vw, 18px);
  }
  .toppage .service_contents {
    flex-direction: column;
    gap: min(10.2564102564vw, 48px);
  }
  .toppage .menu_content {
    background-color: #fff;
    border-radius: 17px;
    padding: 42px 25px 32px;
  }
  .toppage .menu_content .title h3 {
    font-size: min(6.1538461538vw, 28px);
  }
  .toppage .menu_content .title .color {
    font-size: min(9.2307692308vw, 36px);
  }
  .toppage .menu_content .title .ylw::before {
    width: min(20.5128205128vw, 120px);
    top: min(-20.5128205128vw, -92px);
  }
  .toppage .menu_content .title .grn::before {
    width: min(18.4615384615vw, 100px);
    top: min(-20.5128205128vw, -92px);
  }
  .toppage .menu_content .title h3:has(.aqua)::before {
    display: none;
  }
  .toppage .menu_content .title .aqua {
    position: relative;
  }
  .toppage .menulink {
    margin-top: 6px;
  }
  .toppage .menulink a {
    padding: 28px 0 16px 0;
    gap: unset;
    font-size: min(4.6153846154vw, 20px);
  }
  .toppage .menulink a::after {
    content: "";
    display: block;
    width: min(4.6153846154vw, 24px);
    aspect-ratio: 1/1;
    margin-left: 12px;
    position: absolute;
    right: 27px;
  }
  .toppage .menulink .desc {
    font-size: max(12px, min(3.5897435897vw, 15px));
  }
  .toppage .menulink + .menulink {
    border-top: dotted 1px #ccc;
  }
  .toppage .left_menu {
    gap: min(10.2564102564vw, 48px);
    width: 100%;
  }
  .toppage .right_menu {
    width: 100%;
  }
  .toppage .right_menu .menu_content {
    height: 100%;
  }
  .toppage .right_menu .title h3 {
    justify-content: flex-start;
  }
  .toppage ._links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 0;
  }
  .toppage ._links .menulink {
    width: 100%;
  }
  .toppage .image_swiper_wrap {
    margin-top: 60px;
    width: 100%;
    overflow-x: clip;
  }
  .toppage .image_swiper .swiper-slide {
    overflow: clip;
    border-radius: 25px;
    margin: 0 10px;
  }
  .toppage .image_swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .toppage .image_swiper ._542 {
    width: min(50vw, 280px);
    aspect-ratio: 195/150;
  }
  .toppage .image_swiper ._612 {
    width: min(64.8717948718vw, 320px);
    aspect-ratio: 253/150;
  }
  .toppage .image_swiper ._384 {
    width: min(38.4615384615vw, 210px);
    aspect-ratio: 150/150;
  }
  .toppage .company {
    margin-top: 66px;
  }
  .toppage .company .with_handwrite_title {
    margin-bottom: min(4.5454545455vw, 100px);
  }
  .toppage .company .with_handwrite_title h2 .handwrite {
    width: min(25.641025641vw, 145px);
    position: absolute;
    top: min(7.6923076923vw, 50px);
    left: min(76.9230769231vw, 250px);
  }
  .toppage .company .flex_block ._text {
    width: 100%;
    margin-top: min(18.4615384615vw, 72px);
    padding: 40px 25px 20px;
    position: relative;
  }
  .toppage .company .flex_block ._text::after {
    content: "";
    display: block;
    width: min(61.5384615385vw, 280px);
    bottom: auto;
    top: min(-9.2307692308vw, -42px);
    left: 0px;
    right: 0px;
    margin: auto;
    transform: unset;
  }
  .toppage .company .flex_block ._image {
    width: 100%;
    position: relative;
    margin: 0 0 -60px auto;
    /* top: -60px; */
    margin: 0 auto;
    background: #f8f8ef;
    text-align: center;
    padding: 25px 25px 40px 25px;
  }
  .toppage .company .flex_block ._image figure {
    border-radius: 15px;
  }
  .toppage .news {
    margin-top: 75px;
    padding-inline: 25px;
  }
  .toppage .news .news_inner {
    max-width: 620px;
    width: 100%;
    margin-inline: auto;
  }
  .toppage .news .flex_block {
    justify-content: space-between;
  }
  .toppage .news ._summary {
    width: 100%;
  }
  .toppage .news ._list {
    width: 100%;
    margin-top: 24px;
  }
  .toppage .news ._list ul li {
    border-bottom: dashed 1px #c4c4c4;
    padding: min(2.5641025641vw, 10px);
  }
  .toppage .news ._list ul li a {
    font-size: 13px;
    display: flex;
  }
  .toppage .news ._list ul li a::after {
    width: min(4.1025641026vw, 18px);
    top: calc((100% - min(4.1025641026vw, 18px)) / 2);
  }
  .toppage .news ._list ul li a .date {
    font-size: 14px;
    margin-right: min(2.7272727273vw, 60px);
  }
  .toppage .news ._list ul li a .title {
    padding-right: 22px;
  }
  .toppage .news .sort_wrap {
    margin-top: 28px;
  }
  .toppage .news .sort_wrap ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 7px;
  }
  .toppage .news .sort_wrap ul li {
    width: -moz-fit-content;
    width: fit-content;
  }
  .toppage .news .sort_wrap ul li a {
    padding: 10px 16px;
    color: #000;
    border: solid 1px #000;
    font-size: min(2.8205128205vw, 12px);
  }
  .toppage .recruit {
    margin-top: 0px;
    background: url(../img/top/recruit_bg_image.png) no-repeat top center/cover;
    aspect-ratio: 390/420;
  }
  .toppage .recruit .recruit_inner .with_handwrite_title h2 {
    color: #fff;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    margin-bottom: min(10.7692307692vw, 48px);
  }
  .toppage .recruit .recruit_inner .with_handwrite_title h2 .handwrite {
    width: min(37.1794871795vw, 160px);
    position: absolute;
    left: 50%;
    top: min(10.7692307692vw, 42px);
    transform: translateX(-50%);
  }
  .toppage .recruit .recruit_inner .with_handwrite_title p {
    font-size: min(4.6153846154vw, 18px);
  }
}
@media screen and (max-width: 680px) {
  .our_service {
    margin-top: 100px;
  }
}
.subpage .page_title {
  position: relative;
  z-index: 0;
  aspect-ratio: 2200/655;
  overflow: clip;
}
.subpage .mv_image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.subpage .mv_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.subpage .mv_image::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.28);
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
}
.subpage .mv_title {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: min(4.6818181818vw, 103px);
}
.subpage .mv_title h2 {
  position: relative;
}
.subpage .mv_title h2 .en {
  font-family: Arial, Helvetica, sans-serif;
  font-size: min(3.1818181818vw, 78px);
  display: block;
  color: #fff;
}
.subpage .mv_title h2 .handwrite {
  position: absolute;
}
.subpage .subpage_contents_wrap {
  margin-top: min(2.8181818182vw, 64px);
  margin-bottom: min(5.4545454545vw, 120px);
}
.subpage .subpage_contents_wrap section {
  margin-top: min(5.9090909091vw, 130px);
}
.subpage .subpage_contents_wrap .section_headline h3 .en {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: min(1.8181818182vw, 44px);
  font-weight: 900;
}
.subpage .subpage_contents_wrap .section_headline h3 .ja {
  font-size: min(0.9090909091vw, 24px);
  font-weight: 600;
}
.subpage .subpage_contents_wrap .section_headline h3.center {
  text-align: center;
}
.subpage .subpage_contents_wrap .section_headline h3.right {
  text-align: right;
}
.subpage .subpage_contents_wrap .section_headline .subtitle {
  font-size: min(2.0909090909vw, 46px);
  font-weight: 600;
  margin-top: min(1.9090909091vw, 42px);
}
.subpage .subpage_contents_wrap .section_headline .subtitle.center {
  text-align: center;
}
.subpage .subpage_contents_wrap .section_headline .lead {
  font-size: min(0.8181818182vw, 18px);
  margin-top: min(1.9090909091vw, 42px);
  max-width: 700px;
  margin-inline: auto;
}
.subpage .subpage_contents_wrap .section_headline .lead.center {
  text-align: center;
}

.about_us .mv_title h2 .handwrite {
  width: min(12.2727272727vw, 166px);
  left: min(8.0909090909vw, 180px);
  top: min(0.4545454545vw, 15px);
}

.company .mv_title h2 .handwrite {
  width: min(7.2727272727vw, 180px);
  left: min(113.6363636364vw, 250px);
  top: min(1.3636363636vw, 45px);
}

.service .mv_title h2 .handwrite {
  width: min(7.2727272727vw, 104px);
  left: min(113.6363636364vw, 160px);
  top: min(1.3636363636vw, 45px);
}

.recruit .mv_title h2 .handwrite {
  width: min(7.2727272727vw, 147px);
  left: min(113.6363636364vw, 160px);
  top: min(2.7272727273vw, 45px);
}

@media screen and (max-width: 1079px) {
  .service .mv_title h2 .handwrite {
    width: min(41.0256410256vw, 104px);
    left: min(641.0256410256vw, 95px);
    top: min(5.1282051282vw, 10px);
  }
  .subpage .page_title {
    aspect-ratio: 390/299;
  }
  .subpage .mv_title {
    padding-top: 60px;
  }
  .subpage .mv_title h2 .en {
    font-size: min(10.2564102564vw, 44px);
    display: block;
    color: #fff;
  }
  .subpage .subpage_contents_wrap {
    margin-top: min(10.2564102564vw, 48px);
    margin-bottom: min(25.641025641vw, 100px);
    padding: 0 25px;
  }
  .subpage .subpage_contents_wrap section {
    margin-top: min(15.3846153846vw, 60px);
  }
  .subpage .subpage_contents_wrap .section_headline h3 .en {
    font-size: min(8.2051282051vw, 36px);
    font-weight: 900;
  }
  .subpage .subpage_contents_wrap .section_headline h3 .ja {
    font-size: min(4.6153846154vw, 18px);
    margin-top: 10px;
  }
  .subpage .subpage_contents_wrap .section_headline .subtitle {
    font-size: min(6.1538461538vw, 28px);
    margin-top: min(7.1794871795vw, 36px);
  }
  .subpage .subpage_contents_wrap .section_headline .subtitle.center {
    text-align: center;
  }
  .subpage .subpage_contents_wrap .section_headline .lead {
    font-size: min(3.8461538462vw, 16px);
    margin-top: min(5.1282051282vw, 20px);
  }
  .about_us .mv_title h2 .handwrite {
    width: min(44.8717948718vw, 210px);
    left: 50%;
    top: min(2.5641025641vw, 15px);
    transform: translateX(-25%);
  }
}
img.blur {
  opacity: 0;
  transition: transform 0.5s linear;
  animation-duration: 1.5s;
  animation-fill-mode: both;
}

.img-blur {
  animation-name: imageBlur;
  opacity: 1;
  transition: 0.8s;
}
@keyframes imageBlur {
  from {
    opacity: 0;
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
/* ドロップダウンメニューのスタイル */
header {
  position: fixed;
}

/* ナビゲーションスタイル */
.nav_block {
  position: relative;
}

.nav_list li {
  position: relative;
}

/* ドロップダウンメニュー */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  list-style: none;
  padding: 10px 0;
  min-width: 150px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  border-radius: 4px;
  z-index: 999;
}

.dropdown li {
  width: 100%;
}

.dropdown a {
  padding: 10px 20px;
  color: #333;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown a:hover {
  color: #007bff;
}

/* ドロップダウン表示 */
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* レスポンシブデザイン */
@media (max-width: 1079px) {
  .hum_btn {
    display: block;
  }
  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding-left: 20px;
  }
  .has-dropdown .dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .has-dropdown.active .dropdown {
    max-height: 500px; /* 適宜調整 */
    background-color: #f8f8ef;
  }
  /* ナビゲーションスタイル */
  .nav_block {
    position: relative;
  }
  .nav_list li {
    position: relative;
  }
  .nav_list li ul.dropdown > li > a {
    font-size: 16px;
    padding: 10px 0 10px 20px;
  }
  .nav_list li > a {
    font-size: 20px;
    font-weight: bold;
    width: 100%;
    display: block;
  }
}
/* リセットと基本スタイル */
header {
  position: fixed;
}

/* ドロップダウンメニュー */
.dropdown {
  position: absolute;
  top: 90%;
  left: -10%;
  background-color: #fff;
  list-style: none;
  padding: 10px 0;
  min-width: 360px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  border-radius: 10px;
  z-index: 999;
}

.dropdown li {
  width: 100%;
}

.dropdown a {
  padding: 10px 20px;
  color: #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav_list .dropdown a:after {
  background: none;
}

.nav_list .dropdown a:before,
.nav_list .dropdown li:last-child a:before {
  content: "\f0a9";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  padding: 0 10px 0 0px;
  color: #fff;
  background: none;
  transition: all 0.5s;
}

.nav_list .dropdown li:hover a:before,
.nav_list .dropdown li:last-child:hover a:before {
  color: #ffd000;
}

.dropdown a:hover {
  color: #ffd000;
  width: 100%;
}

/* ドロップダウン表示 */
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  background-color: #169100;
}

/* レスポンシブデザイン */
@media screen and (max-width: 1079px) {
  .nav_list .dropdown a:before,
  .nav_list .dropdown li:last-child a:before {
    color: #000;
  }
  .hum_btn {
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 18;
    right: 0px;
    top: 0px;
  }
  .nav_contents {
    padding: 60px 19px;
    background-color: #f8f8ef;
    overflow-y: auto; /* 縦方向にスクロール可能にする */
  }
  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding-left: 20px;
  }
  .dropdown li {
    padding: 10px 0;
    background: white;
    margin-bottom: 10px;
    border-radius: 50px;
  }
  .dropdown a {
    color: #000;
  }
  .has-dropdown .dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .has-dropdown.active .dropdown {
    max-height: 500px; /* 適宜調整 */
    padding: 15px 0;
  }
  .has-dropdown:hover .dropdown {
    background-color: rgba(255, 255, 255, 0);
  }
}
.c-btn,
.c-bnr,
.c-txt {
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}

.c-btn {
  background: #ff701e;
  border: 2px solid #ff701e;
  border-radius: 60px;
  color: #fff;
  display: block;
  font-weight: bold;
  max-width: 300px;
  padding: 15px 40px;
  text-align: center;
}

.c-btn.slide.skew::after {
  transform: skewY(-10deg) scale(1, 0);
  height: 140px;
}

.c-btn.slide.skew:hover::after {
  transform: skewY(-10deg) scale(1, 1);
}

.page-top {
  text-decoration: none;
  position: fixed; /* ページトップボタンは通常固定位置に配置 */
  right: 13px;
  top: -40px; /* ページの下部からの距離を設定 */
  background: #f8f8ef;
  width: 150px;
  text-align: center;
  border-radius: 5px 5px 0 0;
  color: #000;
  padding: 10px;
  font-size: 16px; /* フォントサイズを明示的に設定 */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer; /* カーソルをポインターに変更 */
  transition: transform 0.3s ease, background-color 0.3s ease; /* アニメーションのトランジション設定 */
  font-family: "Open Sans", serif;
  /* ボタンの初期スタイル */
  background-color: #f8f8ef;
  /* ホバー時のスタイル */
}
.page-top::after {
  content: "\f106"; /* Font Awesomeのアイコンコード */
  font-family: "Font Awesome 6 Free"; /* Font Awesomeのフォントファミリー */
  font-weight: 900;
  color: #169100;
  background: none;
  transition: color 0.3s ease, transform 0.3s ease; /* アイコンのアニメーション */
  padding-left: 15px;
  font-size: 16px; /* アイコンのサイズを調整 */
  display: inline-block;
  transform: translateY(0); /* 初期状態 */
}
.page-top:hover {
  transform: translateY(5px); /* ボタンを5px下に移動 */
  background-color: #e0e0d6; /* 背景色を若干変更（オプション） */
}
.page-top:hover::after {
  color: #ffffff; /* アイコンの色を変更 */
  transform: translateY(2px); /* アイコンも少し下に移動 */
}

/* アニメーションキー フレーム */
@keyframes scrollSlider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
video {
  width: 100%;
  height: auto;
  display: block;
}

#fallback-image {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  display: none; /* 初期状態では非表示 */
}

.section-inner {
  max-width: 1050px;
  width: 80%;
  margin: 10px auto;
}

.profile,
.access {
  padding: 40px 20px;
  background-color: #fff;
}
.profile .section-title,
.access .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #169100;
  text-align: center;
  margin-bottom: 10px;
}
.profile .subtitle,
.access .subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
}

.profile-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  font-size: 1rem;
  color: #333;
}
.profile-table tr {
  border-bottom: 1px solid #b2b2b2;
}
.profile-table th,
.profile-table td {
  padding: 43px 10px;
}
.profile-table th .flex,
.profile-table td .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 0;
}
.profile-table th .flex .ttl,
.profile-table td .flex .ttl {
  width: 20%;
}
.profile-table th .flex .cont,
.profile-table td .flex .cont {
  width: 80%;
}
.profile-table th {
  width: 30%;
  font-weight: 700;
  text-align: left;
}
.profile-table td {
  width: 70%;
}
.profile-table img {
  margin-top: 10px;
  max-width: 100px;
  flex-basis: 100%;
}

.access .map {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #aaa;
  font-size: 1.2rem;
}

.access {
  padding: 40px 20px;
}
.access .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #169100;
  text-align: center;
  margin-bottom: 10px;
}
.access .subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
}
.access .map-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.access .map-block .map-item {
  padding: 20px;
  border-radius: 8px;
}
.access .map-block .map-item .map-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}
.access .map-block .map-item .address {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
}
.access .map-block .map-item .map {
  width: 100%;
  height: 500px;
}
.access .map-block .map-item .map iframe {
  border-radius: 8px;
  border: none;
}

.comingsoon {
  width: 80%;
  max-width: 1070px;
  margin: 0 auto;
  text-align: center;
  padding: 100px 0 200px;
}
.comingsoon .en {
  font-family: Arial, Helvetica, sans-serif;
  font-size: max(26px, min(2.2727272727vw, 50px));
  display: block;
  color: #169100;
  font-weight: bold;
}
.comingsoon .jan {
  font-size: max(16px, min(1.1818181818vw, 26px));
  padding: 20px 0;
  font-weight: 700;
}

@media screen and (max-width: 1079px) {
  .comingsoon {
    padding: 0;
  }
  .company .mv_title h2 .handwrite {
    width: min(22.7272727273vw, 320px);
    left: min(36.3636363636vw, 450px);
    top: min(6.8181818182vw, 70px);
  }
  .section-inner {
    width: 100%;
  }
  .section-inner .profile-table th .flex,
  .section-inner .profile-table td .flex {
    gap: 10px;
  }
  .section-inner .profile-table th .flex .ttl,
  .section-inner .profile-table td .flex .ttl {
    flex-basis: 100%;
  }
  .section-inner .profile-table th .flex .cont,
  .section-inner .profile-table td .flex .cont {
    flex-basis: 100%;
  }
  .access {
    padding: 20px 0;
  }
  .access .map-block .map-item {
    padding: 0;
  }
}
#profile,
#access {
  padding-top: 200px;
  margin-top: -200px;
}

.small {
  font-size: 6px;
  flex-basis: 100%;
  position: relative;
  top: -12px;
}

.swiper-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.swiper-wrapper > * {
  flex-shrink: 0;
  width: 100%; /* スライドの幅を指定 */
}/*# sourceMappingURL=common.css.map */