@charset "UTF-8";

/*!
  Theme Name: kurata-create-theme2025 framework
  Author: Ori
  Author URI: http://shikiori.com/
  Description: kurata-create-theme2025 framework
  Version: 2.0
  Date: 2025.07.25
  License: GNU General Public License v2 or later
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */

@charset "UTF-8";

@font-face {
  font-family: "GenEiChikuMin";
  src: url("fonts/GenEiChikugoMin3-R.ttf") format("truetype");
}

/***************************

foundation/base.scss

***************************/
:root {
  --white: #fff;
  --black: #111111;
  --gray: #AAAAAA;
  --l-gray: #EEEEEE;
  --green: #658600;
  --l-green: #9FBF40;
  --font: 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --cardo: "Cardo", serif;
  --heebo: "Heebo", sans-serif;
  --genei: "GenEiChikuMin", sans-serif;
  --green-gra: linear-gradient(207deg, #9FBF40 0%, #309E83 100%);
}

* {
  box-sizing: border-box;
  word-break: break-all;
  word-wrap: break-word;
}

html {
  /*overflow:auto;*/
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  font-size: 16px;
  color: var(--black);
  font-family: var(--font);
  font-weight: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 2;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 1s;
  -moz-transition: 1s;
  -webkit-transition: 1s;
  -o-transition: 1s;
  -ms-transition: 1s;
}

a:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.75;
}

a:active,
a:hover {
  outline-width: 0;
}

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

p {
  margin: 0;
  line-height: 2.25;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.04em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-align: left;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

figcaption,
figure,
main {
  display: block;
}
.main{
  overflow: hidden;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

::-webkit-file-upload-button {
  -webkit-appearance: none;
  font: inherit;
}

[hidden] {
  display: none;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
}

.wrapper {
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 5%;
}

@font-face {
  font-family: "GenEiChikuMin";
  src: url("fonts/GenEiChikugoMin3-R.ttf") format("truetype");
}

/***************************

foundation/_animation.scss

***************************/
.mv_fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

.mv_title.mv_fadeUp {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*==================================================
ふわっ
===================================*/
/* その場で */
.fadeIn {
  -webkit-animation-name: fadeInAnime;
  animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 下から */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 上から */
.fadeDown {
  -webkit-animation-name: fadeDownAnime;
  animation-name: fadeDownAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 左から */
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
  animation-name: fadeLeftAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 右から */
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
  animation-name: fadeRightAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

/*==================================================
    ボンッ、ヒュッ
    ===================================*/
/* 拡大 */
.zoomIn {
  -webkit-animation-name: zoomInAnime;
  animation-name: zoomInAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* 縮小 */
.zoomOut {
  -webkit-animation-name: zoomOutAnime;
  animation-name: zoomOutAnime;
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes zoomOutAnime {
  from {
    transform: scale(1.04);
    opacity: 1;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomOutAnime {
  from {
    transform: scale(1.04);
    opacity: 1;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.zoomInTrigger,
.zoomOutTrigger {
  opacity: 0;
}

/*==================================================
    じわっ
    ===================================*/
/* ぼかしから出現 */
.blur {
  -webkit-animation-name: blurAnime;
  animation-name: blurAnime;
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes blurAnime {
  from {
    filter: blur(5px);
    transform: scale(1.01);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    filter: blur(5px);
    transform: scale(1.01);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

.blurTrigger {
  opacity: 0;
}

@-webkit-keyframes textSlideIn {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@keyframes textSlideIn {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.textSlideIn {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
}

.textSlideIn.is-animated {
  -webkit-animation-name: textSlideIn;
  animation-name: textSlideIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes textSlideDown {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@keyframes textSlideDown {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.textSlideDown {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
}

.textSlideDown.is-animated {
  -webkit-animation-name: textSlideDown;
  animation-name: textSlideDown;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes clipPath {
  0% {
    opacity: 0;
    -webkit-clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
    clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
  }

  100% {
    opacity: 1;
    -webkit-clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
    clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
  }
}

@keyframes clipPath {
  0% {
    opacity: 0;
    -webkit-clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
    clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
  }

  100% {
    opacity: 1;
    -webkit-clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
    clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
  }
}

.clipPathTrigger {
  opacity: 0;
}

.clipPathTrigger.is-animated {
  -webkit-animation: clipPath 1s cubic-bezier(0.74, 0.01, 0.29, 0.97) forwards;
  animation: clipPath 1s cubic-bezier(0.74, 0.01, 0.29, 0.97) forwards;
}

/***************************

layout/_header.scss

***************************/
header.-is-open.-is-fixed {
  background-color: var(--white);
}

.header.-is-fixed {
  box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.6);
  z-index: 998;
  background-color: var(--white);
  height: 80px;
}

.header.-is-fixed .header__nav_item .header__nav_link {
  color: var(--black);
}

.header.-is-fixed .header__logo_type01 {
  display: none;
}

.header.-is-fixed .header__logo_type02 {
  display: block;
}

.header.-is-fixed.is-open .header__nav_item .header__nav_link {
  color: var(--black);
}

.header__logo_type01 {
  display: block;
}

.header__logo_type02 {
  display: none;
}

.header.-is-open .header__logo_type01 {
  display: none;
}

.header.-is-open .header__logo_type02 {
  display: block;
}

.header.-is-open .header__nav_item .header__nav_link {
  color: var(--black);
}

.header.-is-open .header__nav {
  overflow-y: scroll !important;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  width: 100%;
  padding: 15px;
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header__nav_toggle {
  cursor: pointer;
  display: inline-block;
  background: none;
  border: none;
  outline: none;
  text-align: center;
  position: relative;
  z-index: 7;
}

.header__nav_toggle_bar {
  position: relative;
  margin: 8px 6px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.header__nav_toggle_bar,
.header__nav_toggle_bar::before,
.header__nav_toggle_bar::after {
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--white);
  outline: 1px solid transparent;
  transition-property: background-color, transform;
  transition-duration: 0.5s;
}

.header.-is-fixed .header__nav_toggle_bar,
.header.-is-fixed .header__nav_toggle_bar::before,
.header.-is-fixed .header__nav_toggle_bar::after {
  background-color: var(--black);
}

.header.-is-open .header__nav_toggle_bar,
.header.-is-open .header__nav_toggle_bar::before,
.header.-is-open .header__nav_toggle_bar::after {
  background-color: var(--black);
}

.header__nav_toggle_bar::before,
.header__nav_toggle_bar::after {
  position: absolute;
  content: "";
}

.header__nav_toggle_bar {
  width: 30px;
}

.header__nav_toggle_bar::after {
  width: 30px;
}

.header__nav_toggle_bar::before {
  top: -8px;
}

.header__nav_toggle_bar::after {
  top: 8px;
}

.header__nav_toggle_title {
  font-size: 10px;
  font-size: 1rem;
  display: block;
  padding-top: 5px;
  width: 4em;
  white-space: nowrap;
}

.header.-is-open .header__nav_toggle_bar {
  background-color: transparent;
}

.header.-is-open .header__nav_toggle_bar::before {
  transform: translateY(8px) rotate(135deg);
}

.header.-is-open .header__nav_toggle_bar::after {
  transform: translateY(-8px) rotate(-135deg);
  width: 30px;
}

.header::before {
  content: "";
  background: url(img/common/menu_deco.png);
  background-repeat: no-repeat;
  width: 228px;
  height: 137px;
  position: absolute;
  right: 0;
  top: 0;
  opacity: 1;
}

@media screen and (max-width: 1200px) {
  .header::before {
    width: 150px;
    height: 100px;
  }

  .header.-is-open::before {
    opacity: 0;
  }
}

.header.-is-fixed::before {
  opacity: 0;
}

@media screen and (min-width: 1200px) {
  .header__nav_toggle {
    display: none;
  }
}

.header__logo {
  display: inline-block;
  -webkit-margin-before: 0;
  margin-block-start: 0;
  -webkit-margin-after: 0;
  margin-block-end: 0;
}

.header__nav_item .header__nav_link {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.04em;
  color: var(--white);
  padding: 15px 20px;
  position: relative;
  display: flex;
  align-items: center;
}

.header__nav_item .header__nav_link::after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  border-radius: 50%;
  background: transparent;
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: all 0.5s;
}

.header__nav_item .header__nav_link:hover::after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  border-radius: 50%;
  background: var(--white);
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.header__nav_item .header__nav_link.current::after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  border-radius: 50%;
  background: var(--white);
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.header.-is-open .header__nav_item .header__nav_link:hover::after {
  background: var(--green);
  bottom: 10px;
}

.header.-is-open .header__nav_item .header__nav_link.current::after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  border-radius: 50%;
  background: var(--green);
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.header.-is-open .header__nav_item.--contact a {
  color: var(--white);
}

.header.-is-open .header__nav_item.--contact a:before {
  content: "";
  width: 100%;
  height: 80px;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transition: 0.5s;
  background: #309E83;
  background: linear-gradient(207deg, #9FBF40 0%, #309E83 100%);
  border-radius: 0;
}

.header.-is-open .header__nav_item.--contact a::after {
  content: "";
  width: 100%;
  height: 80px;
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  background: #309E83;
  background: linear-gradient(90deg, #9FBF40 0%, #309E83 100%) !important;
  border-radius: 0;
}

.header.-is-open .header__nav_item.--contact a:hover {
  opacity: 1;
}

.header.-is-open .header__nav_item.--contact a:hover::before {
  opacity: 0;
}

.header.-is-fixed .header__nav_item .header__nav_link:hover::after {
  background: var(--green);
}

.header.-is-fixed .header__nav_item .header__nav_link.current::after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  border-radius: 50%;
  background: var(--green);
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.header.-is-fixed .header__nav_item.--contact a {
  color: var(--white);
}

.header.-is-fixed .header__nav_item.--contact a:before {
  content: "";
  width: 100%;
  height: 80px;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transition: 0.5s;
  background: #309E83;
  background: linear-gradient(207deg, #9FBF40 0%, #309E83 100%);
  border-radius: 0;
}

.header.-is-fixed .header__nav_item.--contact a::after {
  content: "";
  width: 100%;
  height: 80px;
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  background: #309E83;
  background: linear-gradient(90deg, #9FBF40 0%, #309E83 100%) !important;
  border-radius: 0;
}

.header.-is-fixed .header__nav_item.--contact a:hover {
  opacity: 1;
}

.header.-is-fixed .header__nav_item.--contact a:hover::before {
  opacity: 0;
}

.header__nav_item.is_parent {
  position: relative;
}

.header__nav__btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px;
  background: url(img/common/arrow-down.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center center;
}

.header__nav__btn.active {
 background: url(img/common/arrow-up.svg);
   padding: 20px;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center center;
}

.header.-is-open .header__nav_item.is_child {
  display: none;
}

.header__nav_item.is_child.open {
  display: block;
}

.header__nav_link.green {
  color: var(--green) !important;
}

.header.-is-open .header__nav_item.is_child.open {
  display: flex;
  flex-wrap: wrap;
  /* background: #9FBF40; */

}
.header.-is-open .header__nav_item.is_child.open li{
  width: 100%;
  max-width: 50%;
}

.header.-is-open .header__nav_item.is_child.open a {
  font-size: 14px;
}


@media screen and (min-width: 1200px) {
  .header__logo {
    width: 100%;
    max-width: 240px;
  }

  .header {
    padding: 0;
    padding-left: 15px;
  }

  .header__nav__btn {
    display: none;
  }
}

@media screen and (max-width: 1199px) {
  .header__logo {
    z-index: 10;
    width: 100%;
    max-width: 200px;
  }

  .header__nav_list {
    top: 38%;
    transform: translateY(-35%);
  }

  .header__nav {
    /* max-width: min(100%, 300px); */
    /* max-width: min(100%, 360px); */
    max-width: min(100% , 1200px);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 0;
    background: var(--white);
    z-index: 6;
    transition: 0.5s;
  }

  .header.-is-open .header__nav {
    height: 100vh;
    position: absolute;
    overflow: hidden;
    transition-property: height, visibility;
    transition-duration: 0.35s;
    transition-timing-function: ease;
  }

  .header__nav_list {
    flex-direction: column;
    margin: 80px 0 0 0;
    padding: 0;
    text-align: center;
    position: relative;
    top: 100%;
    transform: translateY(-100%);
    opacity: 0;
  }


  .header.-is-open .header__nav_list {
    top: 40%;
    transform: translateY(-50%);
  }

  .header.-is-open .header__nav_list {
    opacity: 1;
  }

  .header__nav_item .header__nav_link {
    display: block;
    opacity: 0;
    visibility: hidden;
    padding: 15px 0;
  }

  .header.-is-open .header__nav_item .header__nav_link {
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease;
  }

  .header.-is-open .header_bg {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(43, 43, 43, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}



@media screen and (max-width: 540px) {
  .header__nav {
    max-width: min(100%, 1100px);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 0;
    background: var(--white);
    z-index: 6;
    transition: 0.5s;
  }

  /* 
  .header.-is-open .header__nav_list {
    top: 60%;
    transform: translateY(-35%);
  } */

  .header.-is-open .header__nav_link {
    padding: 10px 0;
  }

  .header.-is-open .header__sub_nav_link {
    padding: 10px 20px;
  }

  .header.-is-open .header__nav_item.is_child {
    display: none;
  }
}



.header__nav_item.--contact .header__nav_link {
  position: relative;
  z-index: 0;
  width: 225px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  text-decoration: none;
  overflow: hidden;
  transition: 0.5s;
  gap: 3px;
}

@media screen and (max-width: 1199px) {
  .header__nav_item {
    width: 100%;
  }

  .header__nav_item.--contact .header__nav_link {
    width: 100%;
  }
}

.header__nav_item.is_child .header__nav_link {
  color: var(--black);
}

@media screen and (min-width: 1200px) {
  .header__nav_item.is_parent {
    position: relative;
    padding-bottom: 180px;
    margin-bottom: -180px;
  }

  .header__nav_item.is_parent i {
    margin-left: 5px;
  }

  .header__nav_item.is_parent:hover .is_child {
    display: flex;
    flex-direction: column;
  }

  .header__nav_item.is_parent:hover i::before {
    content: "\ea78";
  }

  .header__nav_item.is_child {
    position: absolute;
    top: 50px;
    left: -40px;
    background: var(--white);
    border-radius: 2px;
    padding-bottom: 10px;
    width: 200px;
    display: none;
    box-shadow: 4px 2px 18px 2px rgba(0, 0, 0, 0.15);
  }
}

.header__sub_nav_link {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.04em;
  padding: 15px 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__sub_nav_link::after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  border-radius: 50%;
  background: transparent;
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: all 0.5s;
}

.header__sub_nav_link:hover::after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  border-radius: 50%;
  background: var(--green);
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.header__sub_nav_link.current::after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  border-radius: 50%;
  background: var(--green);
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

@media screen and (min-width: 1025px) {
  .header__sub_nav_link {
    display: block;
    padding: 10px 28px;
  }

  .header__sub_nav_link::after {
    content: "";
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 50%;
    background: var(--green);
    position: absolute;
    left: 14px;
    bottom: 0;
    right: auto;
    margin: 0;
    opacity: 0;
  }

  .header__sub_nav_link:hover::after {
    background: var(--green);
    left: 14px;
    bottom: 23px;
    margin: 0;
    opacity: 1;
  }

  .header__sub_nav_link.current::after {
    background: var(--green);
    left: 14px;
    bottom: 23px;
    margin: 0;
    opacity: 1;
  }
}

/***************************

layout/_footer.scss

***************************/
/*////////////////////////

footer

////////////////////////*/
.footer_contact {
  background: url(img/common/footer_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  padding: 70px 0;
}

@media screen and (min-width: 768px) {
  .footer_contact {
    padding: 90px 0;
  }
}

.footer_contact_wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

@media screen and (min-width: 1200px) {
  .footer_contact_wrap {
    gap: 10px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer_contact_text {
  font-family: var(--genei);
  letter-spacing: 0.08em;
  font-size: 18px;
  line-height: 1.7;
}

.footer_contact_text br {
  display: none;
}

@media screen and (min-width: 768px) {
  .footer_contact_text {
    font-size: 22px;
  }

  .footer_contact_text br {
    display: block;
  }
}

.tel_contact {
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .tel_contact {
    flex-wrap: nowrap;
    justify-content: flex-end;
  }
}

.tel_contact_wrap {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.tel {
  font-weight: bold;
  font-family: var(--heebo);
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.tel span {
  font-size: 16px;
  letter-spacing: 0.04em;
  font-weight: bold;
  font-family: var(--heebo);
}

.tel.type01 {
  font-size: 34px;
}

@media screen and (min-width: 540px) {
  .tel.type01 {
    font-size: 40px;
  }
}

@media screen and (min-width: 768px) {
  .tel.type01 {
    font-size: 48px;
  }
}

.tel.type01 a {
  transition: all 0.5s;
}

.tel.type01 a:hover {
  opacity: 0.6;
}

.tel.type02 {
  font-size: 21px;
}

@media screen and (min-width: 768px) {
  .tel.type02 {
    font-size: 24px;
  }
}

.footer {
  background: var(--black);
  padding-top: 60px;
}

@media screen and (min-width: 768px) {
  .footer {
    padding-top: 80px;
  }
}

.footer__nav_wrapper {
  padding-bottom: 40px;
  flex-direction: column;
  gap: 30px;
}

@media screen and (min-width: 768px) {
  .footer__nav_wrapper {
    padding-bottom: 50px;
    flex-direction: row;
  }
}

.footer__address_container {
  width: 100%;
  max-width: 300px;
}

.footer__nav_text {
  font-size: 14px !important;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.footer__nav_list {
  gap: 5px 20px;
}

@media screen and (min-width: 768px) {
  .footer__nav_list {
    justify-content: flex-end;
  }
}

.footer__nav_item a {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.footer__last_contents {
  border-top: 1px solid #888888;
  padding: 30px 0;
  align-items: center;
}

.footer__copyright {
  color: #868686;
  font-size: 10px;
  left: 0.04em;
  line-height: 1.2;
}

/***************************

layout/_lity.scss

***************************/
/*! Lity - v2.3.1 - 2018-04-20
* http://sorgalla.com/lity/
* Copyright (c) 2015-2018 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  transform: scale(0.8);
}

.lity-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close:active {
  top: 1px;
}

/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}

/***************************

layout/_pager.scss

***************************/
.wp-pagenavi {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
  color: #CCCCCC;
  font-size: 15px;
  font-weight: bold;
  font-family: var(--cardo);
  margin: 5px;
  width: 40px;
  height: 40px;
  line-height: 2.5;
  display: block;
  text-decoration: none;
  padding: 0;
  opacity: 1;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  line-height: 2.5;
}

.wp-pagenavi span.current {
  color: var(--green);
  cursor: default;
}

.wp-pagenavi a:hover {
  opacity: 0.8;
  color: var(--green);
}

@media screen and (max-width: 768px) {
  .wp-pagenavi .extend {
    display: none;
  }

  .wp-pagenavi .extend+.larger {
    display: none;
  }
}

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

  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 40px;
  }
}

/***************************

layout/_breadcrumbs.scss

***************************/
.breadcrumbs {
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: bold;
  color: #00050B;
  padding: 15px 0;
  border-bottom: 1px solid #DDDDDD;
  line-height: 1.2;
}

.breadcrumbs li:before {
  font-family: "Font Awesome 6 Free";
  content: "\f054";
  margin: 5px 10px;
  color: #658500;
  font-size: 8px;
}

.breadcrumbs li:first-child:before {
  display: none;
}

.breadcrumbs a {
  color: #CCCCCC;
}

.breadcrumbs a:hover {
  color: var(--green);
}

/***************************

layout/_page-title.scss

***************************/
.title01 {
  font-family: var(--genei);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .title01 {
    font-size: 32px;
  }
}

@media screen and (min-width: 960px) {
  .title01 {
    font-size: 40px;
  }
}

@media screen and (min-width: 768px) {
  .title01.type02 {
    font-size: 28px;
  }
}

@media screen and (min-width: 960px) {
  .title01.type02 {
    font-size: 32px;
  }
}

.title01 span {
  font-family: var(--cardo);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.title02 {
  font-family: var(--genei);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .title02 {
    font-size: 32px;
    margin-bottom: 60px;
  }
}

.title03 {
  font-family: var(--genei);
  font-size: 21px;
  letter-spacing: 0.08em;
  font-weight: 400;
  line-height: 1.4;
  border-top: 2px solid #DDDDDD;
  padding-top: 20px;
  position: relative;
  margin-bottom: 40px;
}

.title03::before {
  content: "";
  width: 29px;
  height: 2px;
  display: block;
  background: #90A748;
  position: absolute;
  top: -2px;
  left: 0;
}

@media screen and (min-width: 768px) {
  .title03 {
    font-size: 28px;
    margin-bottom: 50px;
  }
}

.title04 {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}

.title04::before {
  content: "";
  width: 9px;
  height: 2px;
  background: #90A748;
  display: block;
}

@media screen and (min-width: 768px) {
  .title04 {
    font-size: 21px;
    margin-bottom: 25px;
  }
}

.title05 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.7;
  border-bottom: 2px solid #DDDDDD;
  padding-bottom: 15px;
  padding-top: 5px;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .title05 {
    font-size: 21px;
    margin-bottom: 50px;
  }
}

.title06 {
  font-family: var(--genei);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 960px) {
  .title06 {
    font-size: 28px;
  }
}

.title06 span {
  font-family: var(--cardo);
  font-size: 16px;
  letter-spacing: 0.08em;
}

.title07 {
  font-family: var(--genei);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media screen and (min-width: 540px){
.title07{
  font-size: 21px;
}
}
@media screen and (min-width: 960px) {
  .title07 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.title07.deco {
  display: grid;
  grid-template-columns: 9px 1fr;
  gap: 5px;
  align-items: baseline;
}

.title07.deco::before {
  content: "";
  width: 9px;
  height: 9px;
  display: block;
  background: var(--green);
  border-radius: 50%;
  display: block;
}

.title08 {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

@media screen and (min-width: 960px) {
  .title08 {
    font-size: 21px;
  }
}

.title08.deco {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.title08.deco::after {
  content: "";
  background: #90A748;
  width: 15px;
  height: 2px;
  display: block;
}

.title09 {
  font-size: 21px;
  letter-spacing: 0.04em;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .title09 {
    font-size: 24px;
  }
}

.title10 {
  font-size: 24px;
  font-family: var(--genei);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
  background: var(--green-gra);
  color: var(--white);
  border-radius: 57px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px;
  gap: 15px;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .title10 {
    font-size: 32px;
    margin-bottom: 50px;
  }
}

.title10::before {
  content: "";
  background: var(--white);
  width: 74px;
  height: 74px;
  display: block;
  border-radius: 50%;
}

@media screen and (min-width: 768px) {
  .title10::before {
    width: 94px;
    height: 94px;
  }
}

.title10 img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 25px;
  width: 43px;
}

@media screen and (min-width: 768px) {
  .title10 img {
    top: 50%;
    transform: translateY(-50%);
    left: 30px;
    width: auto;
  }
}

.title11 {
  color: #90A748;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.title11 .ja {
  font-size: 21px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.4;
  display: grid;
  grid-template-columns: 9px 1fr;
  align-items: center;
  gap: 5px;
}

.title11 .ja::before {
  content: "";
  width: 9px;
  height: 2px;
  background: #90A748;
  display: block;
}

@media screen and (min-width: 768px) {
  .title11 {
    margin-bottom: 40px;
  }
}

.title11 .en {
  font-family: var(--cardo);
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.08em;
}

.title12 {
  font-size: 28px;
  letter-spacing: 0.04em;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 20px;
}

@media screen and (min-width: 960px) {
  .title12 {
    font-size: 32px;
  }
}

.title12 span {
  font-size: 18px;
}

@media screen and (min-width: 960px) {
  .title12 span {
    font-size: 21px;
  }
}

/***************************

object/component/_box.scss

***************************/
.container_l {
  max-width: 1450px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.container_m {
  max-width: 1350px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.container_s {
  max-width: 1190px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

/***************************

object/component/_button.scss

***************************/
.btn01 {
  font-size: 18px;
  color: var(--green);
  font-weight: bold;
  background: var(--white);
  padding: 13px 20px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.btn01:hover {
  color: var(--white);
  background-color: var(--green);
  opacity: 1;
}

.btn02 {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.btn02 i {
  color: var(--green);
}

.btn02:hover {
  opacity: 0.6;
}

.btn03 {
  position: relative;
}

.btn03::after {
  content: "";
  width: 45px;
  height: 45px;
  border: 1px solid var(--white);
  display: block;
  border-radius: 50%;
  transition: all 0.5s;
}

@media screen and (min-width: 768px) {
  .btn03::after {
    width: 65px;
    height: 65px;
  }
}

.btn03 i {
  font-size: 20px;
  position: absolute;
  bottom: 4px;
  left: 13px;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .btn03 i {
    font-size: 28px;
    bottom: 6px;
    left: 19px;
  }
}

.btn03:hover {
  opacity: 1;
}

.btn03:hover::after {
  background: var(--white);
}

.btn03:hover i {
  color: var(--green);
}

.btn03.--black::after {
  content: "";
  width: 45px;
  height: 45px;
  border: 2px solid rgba(2, 5, 11, 0.2);
  display: block;
  border-radius: 50%;
  transition: all 0.5s;
}

@media screen and (min-width: 768px) {
  .btn03.--black::after {
    width: 65px;
    height: 65px;
  }
}

.btn03.--black i {
  font-size: 20px;
  position: absolute;
  bottom: 4px;
  left: 13px;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .btn03.--black i {
    font-size: 28px;
    bottom: 6px;
    left: 19px;
  }
}

.btn03.--black:hover {
  opacity: 1;
}

.btn03.--black:hover::after {
  background: var(--white);
  border: 2px solid var(--green);
}

.btn03.--black:hover i {
  color: var(--green);
}

a:has(.btn03):hover {
  opacity: 1;
}

a:has(.btn03):hover .btn03::after {
  background: var(--white);
}

a:has(.btn03):hover .btn03 i {
  color: var(--green);
}

a:has(.btn03.--black):hover {
  opacity: 1;
}

a:has(.btn03.--black):hover .btn03::after {
  background: var(--green);
  border: 2px solid var(--green);
}

a:has(.btn03.--black):hover .btn03 i {
  color: var(--white);
}

.btn04 {
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 16px;
  font-weight: bold;
  padding: 20px;
  padding-right: 30px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  max-width: 250px;
}

.btn04:hover {
  color: var(--white);
  background: var(--green);
}

.btn05 {
  color: var(--white);
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.btn05:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transition: 0.5s;
  background: #309E83;
  background: linear-gradient(207deg, #9FBF40 0%, #309E83 100%);
  border-radius: 0;
}

.btn05::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  background: #309E83;
  background: linear-gradient(90deg, #9FBF40 0%, #309E83 100%) !important;
  border-radius: 0;
}

.btn05:hover {
  opacity: 1;
  color: var(--white);
}

.btn05:hover::before {
  opacity: 0;
}

@-webkit-keyframes slideInBack {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  49% {
    transform: translateX(-32px);
    opacity: 0;
  }

  50% {
    transform: translateX(32px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInBack {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  49% {
    transform: translateX(-32px);
    opacity: 0;
  }

  50% {
    transform: translateX(32px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes slideIn2 {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  49% {
    transform: translateX(24px);
    opacity: 0;
  }

  50% {
    transform: translateX(-24px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideIn2 {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  49% {
    transform: translateX(24px);
    opacity: 0;
  }

  50% {
    transform: translateX(-24px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/***************************

object/component/_form.scss

***************************/
.form__container {
  margin-top: 50px;
}

@media screen and (min-width: 960px) {
  .form__container {
    margin-top: 70px;
  }
}

.contact_dt {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (min-width: 768px) {
  .contact_dt {
    max-width: 275px;
    justify-content: space-between;
  }
}

.contact_unit {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .contact_unit {
    flex-direction: row;
    position: relative;
  }

  .contact_unit::before {
    content: "";
    width: 275px;
    height: 100%;
    background: #F8F8F8;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}

input {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 20px;
  background: #F8F8F8;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  width: 100%;
  max-width: 370px;
  padding: 20px;
  background: #F8F8F8;
  background-image: url("img/common/arrow-down-s-line.svg");
  background-repeat: no-repeat;
  background-size: 17px auto;
  /* 画像のサイズ（幅 高さ）*/
  background-position: right 20px center;
  /* 画像の位置 */
}

select::-ms-expand {
  display: none;
}

textarea {
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 20px;
  height: 100%;
  background: #F8F8F8;
}

input::-webkit-input-placeholder {
  color: #AAAAAA;
  font-weight: 500;
  font-size: 16px;
  font-family: var(--font);
}

input:-moz-placeholder {
  color: #9F9FAA;
  font-weight: 500;
  font-size: 16px;
  font-family: var(--font);
}

input::-moz-placeholder {
  color: #9F9FAA;
  font-weight: 500;
  font-size: 16px;
  font-family: var(--font);
}

input:-ms-input-placeholder {
  color: #9F9FAA;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font);
}

.contact-form {
  border-bottom: 1px solid #DDDDDD;
  padding-bottom: 40px;
}

@media screen and (min-width: 960px) {
  .contact-form {
    padding-bottom: 80px;
  }
}

.required {
  color: var(--white);
  background-color: #0F0F1E;
  font-size: 13px;
  font-weight: bold;
  padding: 3px 6px;
  margin-right: 10px;
}

.contact_dt {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: #F8F8F8;
  padding: 20px 20px;
  border-bottom: 1px solid #F8F8F8;
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .contact_dt {
    margin-top: 0;
    border-bottom: 1px solid #fff;
  }
}

.contact_dd {
  margin: 20px 0 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #CCCCCC;
}

@media screen and (min-width: 768px) {
  .contact_dd {
    padding-left: 20px;
  }
}

.span-required {
  background: #90A748;
  color: var(--white);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.04em;
  border-radius: 2px;
  padding: 4px 13px;
  line-height: 1.2;
  margin-right: 8px;
}

.span-required.--gray {
  background: var(--gray);
  color: var(--white);
}

.contact_dd {
  width: 100%;
}

.contact_dd ::-moz-placeholder {
  color: #BABABA;
}

.contact_dd ::placeholder {
  color: #BABABA;
}

.w-100 {
  max-width: 100%;
}

textarea {
  height: 185px;
}

.contact-form__check {
  padding-top: 40px;
  text-align: center;
}

.privacypolicy-check .wpcf7-checkbox .wpcf7-list-item-label {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: auto;
  display: flex;
  align-items: center;
  font-size: 16px;
  width: 100%;
  max-width: 286px;
  margin: 0 auto;
}

.privacypolicy-check input {
  background: transparent;
}

.privacypolicy-check .wpcf7-checkbox .wpcf7-list-item-label a {
  margin-left: 10px;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacypolicy-check .wpcf7-checkbox .wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #929BA4;
  content: "";
  display: block;
  border-radius: 0;
  left: 5px;
  top: 50%;
  width: 19px;
  height: 19px;
}

.privacypolicy-check .wpcf7-checkbox .wpcf7-list-item-label::after {
  border-right: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
  content: "";
  display: block;
  height: 12px;
  left: 6px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 13px;
  transform: rotate(45deg);
  width: 8px;
}

.privacypolicy-check input[type=checkbox]:checked+.wpcf7-list-item-label::after {
  opacity: 1;
}

.privacypolicy-check input[type=checkbox] {
  border: none;
}

.contact-btn_wrap {
  width: 100%;
  max-width: 276px;
  margin: 0 auto;
  position: relative;
  margin-top: 60px;
}

.contact-btn_wrap .wpcf7-submit {
  text-align: left;
  color: var(--white);
  font-size: 16px;
  font-weight: bold;
  padding: 30px;
  cursor: pointer;
  transition: all 0.5s;
  position: relative;
  z-index: 2;
  background: transparent;
}

.contact-btn_wrap:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transition: 0.5s;
  background: #309E83;
  background: linear-gradient(207deg, #9FBF40 0%, #309E83 100%);
  border-radius: 0;
  z-index: 1;
}

.contact-btn_wrap::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  background: #309E83;
  background: linear-gradient(90deg, #9FBF40 0%, #309E83 100%) !important;
  border-radius: 0;
}

.contact-btn_wrap i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  color: var(--white);
  font-size: 20px;
  z-index: 6;
}

.contact-btn_wrap:hover:before {
  opacity: 0;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  color: #AAAAAA;
}

option:first-child {
  color: #AAAAAA;
}

option:nth-child(n+2) {
  color: #111111;
}

input[type=radio] {
  display: none;
}

.checkbox_dd .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 10px 30px;
}

@media screen and (min-width: 540px) {
  .checkbox_dd .wpcf7-radio {
    flex-direction: row;
  }
}

.checkbox_dd .wpcf7-radio .wpcf7-list-item-label {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.checkbox_dd .wpcf7-radio .wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #CCCCCC;
  content: "";
  display: block;
  border-radius: 50%;
  left: 5px;
  top: 50%;
  width: 19px;
  height: 19px;
}

.checkbox_dd .wpcf7-radio .wpcf7-list-item-label::after {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: var(--green);
  display: block;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5px;
}

.checkbox_dd input[type=radio]:checked+.wpcf7-list-item-label::after {
  opacity: 1;
}

/***************************

object/object/project/_home.scss

***************************/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background: var(--green-gra);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-animation: fadeOut 1.5s 2.5s forwards;
  animation: fadeOut 1.5s 2.5s forwards;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.loading__logo {
  opacity: 0;
  -webkit-animation: logo_fade 1.8s 0.5s forwards;
  animation: logo_fade 1.8s 0.5s forwards;
  padding: 20px;
  width: 100%;
  max-width: 500px;
}

.loading__logo img {
  width: 100%;
  margin: 0 auto;
}

@-webkit-keyframes logo_fade {
  0% {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
    transform: translateY(60px);
  }

  40% {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
    transform: translateY(0);
  }

  80% {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    filter: blur(0);
  }
}

@keyframes logo_fade {
  0% {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
    transform: translateY(60px);
  }

  40% {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
    transform: translateY(0);
  }

  80% {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    filter: blur(0);
  }
}

.top_mv {
  position: relative;
  height: 90vh;
}

.top_mv .top-mySwiper2 img {
  height: 90vh;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@media screen and (min-width: 768px) {
  .top_mv {
    height: 100vh;
  }

  .top_mv .top-mySwiper2 img {
    height: 100vh;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.top_mv_textbox {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 5;
  color: #fff;
  width: 100%;
}

.top-mySwiper2 .swiper-slide img {
  width: 100%;
}

.top-mySwiper .swiper-slide img {
  width: 100%;
  max-width: 165px;
  border: 1px solid #BDBDAE;
}

.top-swiper_container {
  position: absolute;
  bottom: 30px;
  right: 0;
  width: 100%;
  max-width: 550px;
  z-index: 3;
}

.top_mv_title {
  font-family: var(--genei);
  font-weight: 400;
  font-size: 6vw;
  line-height: 1.4;
  text-shadow: 0px 0px 20px rgba(52, 87, 49, 0.35);
}

@media screen and (min-width: 768px) {
  .top_mv_title {
    font-size: 45px;
  }
}

.top_mv_text {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 2.2;
  margin-top: 30px;
  width: 100%;
  max-width: 610px;
}

@media screen and (min-width: 768px) {
  .top_mv_text {
    font-size: 18px;
  }
}

.top_anniversary {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  margin-bottom: 100px;
}

.top_anniversary .bg_type01_item01 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.top_anniversary .bg_type01_item02 {
  color: #F2F5F1;
  font-family: var(--cardo);
  font-weight: 500;
  line-height: 1.2;
  font-size: 8vw;
  letter-spacing: 0.08em;
  margin-top: 20px;
  text-align: right;
  margin-right: -20px;
}

@media screen and (min-width: 1260px) {
  .top_anniversary .bg_type01_item02 {
    font-size: 120px;
    margin-top: 60px;
  }
}

@media screen and (min-width: 768px) {
  .top_anniversary {
    margin-bottom: 120px;
    padding-top: 150px;
  }
}

.top_anniversary_contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

@media screen and (min-width: 1024px) {
  .top_anniversary_contents {
    flex-direction: row;
    /* justify-content: space-between; */
    /* align-items: flex-start; */
    justify-content: center;
    align-items: center;
  }
}

.movie {
  width: 100%;
  height: 100%;
  /* aspect-ratio: 3/2; */
  aspect-ratio: 773/435;
  margin-top: auto;
  margin-bottom: auto;
}

.movie iframe {
  width: 100%;
  height: 100%;
}

.movie img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  width: 100%;
}

.movie video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
}

.top_anniversary_textbox {
  width: 100%;
  /* max-width: 484px; */
  max-width: 616px;
}

.top_anniversary_textbox .title01 {
  margin-bottom: 60px;
}

.top_anniversary_img {
  text-align: right;
  margin-bottom: 30px;
}

.service_link_list {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 1024px) {
  .service_link_list {
    flex-direction: row;
  }
}

.service_link_text_box {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.service_link_text_box .title01 {
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .service_link_text_box .title01 {
    margin-bottom: 40px;
  }
}

.service_link_text_box .btn03 {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .service_link_text_box .btn03 {
    margin-top: 40px;
  }
}

@media screen and (min-width: 1024px) {
  .service_link_text_box .last {
    margin-top: 55px;
  }
}

.service_link_item {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .service_link_item {
    width: 50%;
  }

  .service_link_item:last-child {
    width: 100%;
  }
}

@media screen and (min-width: 1024px) {
  .service_link_item {
    width: 33.3333333333%;
  }

  .service_link_item:last-child {
    width: 33.3333333333%;
  }
}

.service_link_item a {
  display: block;
  padding: 0 20px;
  padding-top: 80px;
  padding-bottom: 80px;
}

@media screen and (min-width: 1024px) {
  .service_link_item a {
    padding: 0 40px;
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.service_link_item.item01 {
  background: url(img/top/top_link_bg01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}

.service_link_item.item02 {
  background: url(img/top/top_link_bg02.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}

.service_link_item.item03 {
  background: url(img/top/top_link_bg03.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}

.bg_type02 {
  position: relative;
}

.bg_type02 .bg_type02_item01 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 50%;
}

@media screen and (min-width: 768px) {
  .bg_type02 .bg_type02_item01 {
    width: auto;
  }
}

.bg_type02 .bg_type02_item02 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 70%;
}

@media screen and (min-width: 768px) {
  .bg_type02 .bg_type02_item02 {
    width: auto;
  }
}

.top_news {
  padding-top: 100px;
}

@media screen and (min-width: 768px) {
  .top_news {
    padding-top: 120px;
  }
}

.top_news_title_wrap {
  padding-bottom: 60px;
}

.top_news_list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

@media screen and (min-width: 768px) {
  .top_news_list {
    flex-direction: row;
  }
}

.top_news_item {
  background: var(--white);
  box-shadow: 20px 20px 40px rgba(17, 17, 17, 0.1);
}

.top_news_item .news_link {
  padding: 40px 30px;
  padding-right: 25px;
  display: block;
}

@media screen and (min-width: 768px) {
  .top_news_item {
    width: 100%;
    max-width: 33.3333333333%;
  }
}

.news_link .news_title {
  display: inline;
  background-image: linear-gradient(90deg, #658500, #658500);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  text-decoration: none;
  transition: all 0.5s;
}

.news_link:hover .news_title {
  background-size: 100% 1px;
  color: var(--green);
}

.news_link:hover .news_btn {
  border: 1px solid var(--l-green);
  background: var(--l-green);
  color: var(--white);
}

.top_news_item+.top_news_item {
  border-top: 1px solid #F0F0F0;
}

@media screen and (min-width: 960px) {
  .top_news_item+.top_news_item {
    border-top: none;
    border-left: 1px solid #F0F0F0;
  }
}

.news_title {
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.75;
  font-weight: 500;
}

.date {
  font-weight: bold;
  font-size: 13px;
  color: var(--gray);
  font-family: var(--heebo);
  letter-spacing: 0.04em;
}

.news_btn {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid #DDDDDD;
  border-radius: 3px;
  display: inline-block;
  padding: 5px 10px;
  transition: all 0.5s;
}

.top_recruit {
  padding-top: 100px;
  padding-bottom: 400px;
}

@media screen and (min-width: 768px) {
  .top_recruit {
    padding-top: 120px;
    padding-bottom: 130px;
  }
}

.top_recruit .top_recruit_bg {
  background: url(img/top/recruit_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right -60px;
  padding: 35px 20px;
  padding-top: 250px;
}

@media screen and (min-width: 768px) {
  .top_recruit .top_recruit_bg {
    background-position: center center;
    padding: 35px 50px;
    margin-top: 0;
  }
}

.top_recruit_textbox {
  background: var(--green-gra);
  width: 100%;
  max-width: 406px;
  margin: 0 auto;
  margin-bottom: -300px;
}

@media screen and (min-width: 768px) {
  .top_recruit_textbox {
    margin-left: 0;
    margin-bottom: 0;
  }
}

.top_recruit_textbox a {
  padding: 40px;
  display: block;
}

@media screen and (min-width: 768px) {
  .top_recruit_textbox a {
    padding: 60px;
  }
}

/***************************

下層共通

***************************/
.page_mv_container {
  position: relative;
}

.page_mv_text_box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}

.page_mv_img {
  height: 350px;
  position: relative;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .page_mv_img {
    height: auto;
  }
}

.page_mv_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.sec_first {
  padding-top: 100px;
}

@media screen and (min-width: 768px) {
  .sec_first {
    padding-top: 130px;
  }
}

.sec_last {
  padding-bottom: 100px;
}

@media screen and (min-width: 768px) {
  .sec_last {
    padding-bottom: 120px;
  }
}

.sec_top {
  padding-top: 80px;
}

@media screen and (min-width: 768px) {
  .sec_top {
    padding-top: 110px;
  }
}

.sec_bottom {
  padding-bottom: 80px;
}

@media screen and (min-width: 768px) {
  .sec_bottom {
    padding-bottom: 110px;
  }
}

.bd-green {
  border: 2px dotted rgba(94, 165, 86, 0.6);
  padding: 20px 20px;
  display: inline-block;
}

.text {
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: 16px;
}

/***************************

object/object/project/_news.scss

***************************/
.news_item {
  padding: 20px 0;
  border-top: 1px solid #CCCCCC;
}

@media screen and (min-width: 768px) {
  .news_item .news_link {
    display: flex;
    gap: 60px;
  }
}

.news_item .date {
  width: 100%;
  max-width: 76px;
}

.news_item:last-child {
  border-bottom: 1px solid #CCCCCC;
}

.news_detail_contents {
  padding-bottom: 40px;
  border-bottom: 2px solid #DDDDDD;
}

@media screen and (min-width: 768px) {
  .news_detail_contents {
    padding-bottom: 60px;
  }
}

.btn_news {
  grid-area: a;
}

.btn_prev {
  grid-area: b;
}

.btn_next {
  grid-area: c;
}

.news_detail_contents02 {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "b  c""a a";
  align-items: center;
  gap: 5px;
}

@media screen and (min-width: 768px) {
  .news_detail_contents02 {
    margin-top: 60px;
  }
}

@media screen and (min-width: 768px) {
  .news_detail_contents02 {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "b a c";
    gap: 0;
  }
}

.news_detail_contents02 .btn_news {
  display: flex;
  align-items: center;
  justify-content: center;
}

.news_detail_contents02 .btn_prev {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
}

.news_detail_contents02 .btn_prev a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.news_detail_contents02 .btn_prev a i {
  color: var(--green);
}

.news_detail_contents02 .btn_next {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
}

.news_detail_contents02 .btn_next a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.news_detail_contents02 .btn_next a i {
  color: var(--green);
}

/***************************

object/object/project/_privacy.scss

***************************/
.privacy p {
  line-height: 1.8;
}

/***************************

object/object/project/_company.scss

***************************/
.company02_wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

@media screen and (min-width: 960px) {
  .company02_wrap {
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
    gap: 5px;
  }
}

@media screen and (min-width: 960px) {
  .company02_textbox {
    width: 100%;
    max-width: 65%;
  }
}

@media screen and (min-width: 1200px) {
  .company02_textbox {
    width: 100%;
    max-width: 728px;
  }
}

.company03_wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.company03_wrap .title08 {
  font-weight: 500;
}

@media screen and (min-width: 960px) {
  .company03_wrap {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 5px;
  }
}

@media screen and (min-width: 960px) {
  .company03_textbox {
    width: 100%;
    max-width: 65%;
  }
}

@media screen and (min-width: 1200px) {
  .company03_textbox {
    width: 100%;
    max-width: 796px;
  }
}

.company03_name {
  margin-top: 30px;
}

@media screen and (min-width: 960px) {
  .company03_name {
    margin-top: 50px;
  }
}

.list_type01_title {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: #F8F8F8;
  padding: 20px 20px;
  border-bottom: 1px solid #F8F8F8;
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .list_type01_title {
    max-width: 275px;
    margin-top: 0;
    border-bottom: 1px solid #fff;
  }
}

@media screen and (min-width: 768px) {
  .list_type01_box:last-child .list_type01_title {
    border-bottom: 1px solid #F8F8F8;
  }
}

.list_type01_wrap {
  margin: 20px 0 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #CCCCCC;
}

@media screen and (min-width: 768px) {
  .list_type01_wrap {
    padding-left: 20px;
    width: 100%;
  }
}

.list_type01_wrap p {
  line-height: 1.75;
}

.list_type01_box {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .list_type01_box {
    flex-direction: row;
    position: relative;
  }

  .list_type01_box::before {
    content: "";
    width: 275px;
    height: 100%;
    background: #F8F8F8;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}

.list_type01_contents {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (min-width: 768px) {
  .list_type01_contents {
    flex-direction: row;
    justify-content: space-between;
  }
}

.list_type01_contents li {
  line-height: 1.75;
}

.list_type01_contents a:hover {
  opacity: 0.6;
  color: #7A9724;
}

.list_type01_img img {
  width: 100%;
}

.timeline_dt {
  color: #658500;
  font-size: 24px;
  font-family: var(--genei);
  line-height: 1.4;
  position: relative;
}

.timeline_dt span {
  font-size: 16px;
}

.timeline_dt::before {
  content: "";
  width: 9px;
  height: 9px;
  display: block;
  background: var(--green-gra);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -30px;
}

.timeline_item {
  padding-bottom: 50px;
  position: relative;
}

.timeline_item::before {
  content: "";
  background: #CCCCCC;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 4px;
}

.timeline_item:last-child {
  padding-bottom: 10px;
}

.timeline_dl {
  padding-left: 30px;
}

/***************************

object/object/project/_contact.scss

***************************/
.contact_box {
  background: #F8F8F8;
  margin-top: 40px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 540px) {
  .contact_box {
    padding: 40px;
  }
}

@media screen and (min-width: 768px) {
  .contact_box {
    margin-top: 60px;
    padding: 40px 60px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.contact_box .contact_box_text {
  padding-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.contact_box .tel_contact {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .contact_box .contact_box_text {
    width: 100%;
    max-width: 55%;
    padding-bottom: 0;
  }

  .contact_box .tel_contact {
    width: 100%;
    max-width: 40%;
    margin-top: 0;
  }

  .contact_box .tel.type01 {
    font-size: 31px;
  }
}

@media screen and (min-width: 1200px) {
  .contact_box .tel.type01 {
    font-size: 48px;
  }
}

.contact_box .tel {
  background: var(--green-gra);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact_box a {
  transition: all 0.5s;
  background: var(--green-gra);
  -webkit-background-clip: text;
}

.contact_box a:hover {
  opacity: 0.6;
  background: var(--green-gra);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact_box {
  position: relative;
}

.contact_box::after {
  content: "";
  width: calc(100% - 40px);
  height: 10px;
  background-image: radial-gradient(#BFBFBF 20%, transparent 20%), radial-gradient(#BFBFBF 20%, transparent 20%);
  background-size: 10px 10px;
  background-position: 0 0, 0 10px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .contact_box::after {
    width: 10px;
    height: calc(100% - 40px);
    background-image: radial-gradient(#BFBFBF 20%, transparent 20%), radial-gradient(#BFBFBF 20%, transparent 20%);
    background-size: 10px 10px;
    background-position: 0 0, 0 10px;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 11%;
  }
}

/***************************

object/object/project/_service.scss

***************************/
.service01_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media screen and (min-width: 1024px) {
  .service01_wrap {
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between !important;
    margin-right: calc(40% - 40vw);
  }
}

@media screen and (min-width: 1024px) {
  .service01_wrap:has(.service01_img) .service01_textbox {
    width: 100%;
    max-width: 480px;
  }
}

.service01_wrap.reverse {
  margin-top: 100px;
}

@media screen and (min-width: 1024px) {
  .service01_wrap.reverse {
    flex-direction: row;
    justify-content: flex-start;
    margin-right: 0;
    margin-left: calc(40% - 40vw);
  }
}

@media screen and (min-width: 1024px) and (min-width: 1024px) {
  .service01_wrap.reverse {
    margin-top: 115px;
  }
}

@media screen and (min-width: 1300px) {
  .service01_wrap.reverse {
    gap: 70px;
  }
}

.service01_img {
  box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.1);
}

.service_link_list.type02 {
  gap: 40px;
}

.service_link_list.type02 .service_link_item {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .service_link_list.type02 .service_link_item {
    width: calc(50% - 40px);
  }
}

@media screen and (min-width: 1024px) {
  .service_link_list.type02 .service_link_item {
    width: calc(33.3333333333% - 40px);
  }
}

.service_link_list.type02 .service_link_item a {
  padding: 0;
}

.service_link_list.type02 .service_link_item a:hover .service_link_img img {
  width: 100%;
  transform: scale(1.05);
}

.service_link_list.type02 .service_link_img {
  overflow: hidden;
}

.service_link_list.type02 .service_link_img img {
  width: 100%;
  transition: all 0.5s;
}

.service_link_list.type02 .service_link_text_box {
  margin-top: 30px;
  max-width: 100%;
  position: static;
}

.bd_green {
  padding: 15px;
  border: 1px dotted #5EA556;
}

.product_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media screen and (min-width: 768px) {
  .product_list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }
}

.product_img img {
  width: 100%;
}

.product_title {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-top: 10px;
  line-height: 1.7;
}

@media screen and (min-width: 540px) {
  .product_title {
    font-size: 18px;
    margin-top: 20px;
  }
}

.maker_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px 40px;
}

@media screen and (min-width:540px) {
  .maker_list {
    flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .maker_list {
    justify-content: flex-start;
  }
}

.facility03 .maker_list {
  /* gap: 20px; */
  gap: 20px 40px;
}

@media screen and (min-width: 768px) {
  .facility03 .maker_list {
    /* justify-content: space-between; */
    justify-content: flex-start;
  }
}

.deco_list {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .deco_list {
    margin-top: 40px;
  }
}

.exterior04 .btn_wrap {
  margin-top: 40px;
  width: 100%;
  max-width: 250px;
}

@media screen and (min-width: 768px) {
  .exterior04 .btn_wrap {
    margin-top: 50px;
  }
}

.catalog_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.catalog_wrap:has(.catalog_img) .catalog_text_box {
  width: 100%;
  max-width: 717px;
}

@media screen and (min-width: 1024px) {
  .catalog_wrap {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.service_gallery_list {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.automatic-door05_btn_wrap {
  text-align: center;
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .automatic-door05_btn_wrap {
    margin-top: 50px;
  }
}

.box_type01_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

@media screen and (min-width: 960px) {
  .box_type01_list {
    justify-content: space-between;
  }
}

.box_type01_item {
  width: 100%;
  box-shadow: 0 0 23px rgba(92, 112, 111, 0.1);
  padding: 30px;
}

@media screen and (min-width: 540px) {
  .box_type01_item {
    width: 100%;
    max-width: calc(50% - 30px);
  }
}

@media screen and (min-width: 960px) {
  .box_type01_item {
    width: 100%;
    max-width: calc(33.3333333333% - 30px);
    padding: 40px 39px;
  }
}

.deco_check {
  text-indent: -2rem;
  padding-left: 2rem;
}

.deco_check::before {
  content: "";
  background: url(img/common/deco_check.png);
  width: 16px;
  height: 12px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 5px;
}

.box_type01_img {
  text-align: center;
}

.box_type01_title {
  color: #90A748;
  margin-top: 20px;
}

.box_type01_text {
  line-height: 2;
}

.box_type02_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

@media screen and (min-width: 960px) {
  .box_type02_list {
    justify-content: space-between;
  }
}

.box_type02_item {
  border: 1px solid #CCCCCC;
  width: 100%;

  padding: 30px 17px;
}

@media screen and (min-width: 540px) {

  .box_type02_item {
    max-width: calc(50% - 20px);
  }
}

@media screen and (min-width: 768px) {
  .box_type02_item {
    width: 100%;
    max-width: calc(33.3333333333% - 20px);
  }
}

@media screen and (min-width: 960px) {
  .box_type02_item {
    width: 100%;
    max-width: calc(25% - 20px);
  }
}

.box_type02_item p {
  line-height: 2;
}

/***************************

object/object/project/_partner.scss

***************************/
.partner01_dl {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

@media screen and (min-width: 960px) {
  .partner01_dl {
    margin-top: 70px;
    flex-direction: row;
    justify-content: space-between;
  }
}

.partner01_box {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  gap: 20px;
}

.partner01_dt {
  background: var(--green-gra);
  border-radius: 5px;
  color: var(--white);
  font-size: 18px;
  font-weight: bold;
  line-height: 1.7;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 140px;
}

.deco_check.type02::before {
  background: url(img/common/deco_check02.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 17px;
  height: 17px;
}

.partner01_btnbox {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .partner01_btnbox {
    margin-top: 50px;
  }
}

.partner01_btnbox .btn05 {
  width: 100%;
  max-width: 293px;
  margin: 0 auto;
  margin-top: 5px;
}

.job_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
}

@media screen and (min-width: 768px) {
  .job_box {
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 80px;
  }
}

.job_img {
  width: 100%;
}

.job_img img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .job_img {
    max-width: 357px;
  }
}

.beginner_btn {
  background: #309E83;
  border-radius: 5px;
  color: var(--white);
  font-weight: bold;
  font-size: 21px;
  display: inline-block;
  padding: 5px 20px;
  margin-top: 20px;
}

.beginner_btn_img {
  display: inline-block;
  margin-right: 5px;
}

.partner02_btnbox {
  width: 100%;
  max-width: 295px;
  margin: 0 auto;
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .partner02_btnbox {
    margin-top: 50px;
  }
}

.partner05 .footer_contact_wrap {
  background: #F8F8F8;
  padding: 30px;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .partner05 .footer_contact_wrap {
    padding: 40px;
  }
}

.partner05 .tel_contact {
  align-items: center;
}

.partner05 .footer_contact_text {
  font-size: 18px;
}

.partner05 .tel.type01 {
  font-size: 30px;
  background: var(--green-gra);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.partner05 .tel.type01 a {
  transition: all 0.5s;
  background: var(--green-gra);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.partner05 .tel.type01 a:hover {
  opacity: 0.6;
  background: var(--green-gra);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (min-width: 375px) {
  .partner05 .tel.type01 {
    font-size: 36px;
  }
}

@media screen and (min-width: 415px) {
  .partner05 .tel.type01 {
    font-size: 40px;
  }
}

@media screen and (min-width: 640px) {
  .partner05 .tel.type01 {
    font-size: 48px;
  }
}

/***************************

object/object/project/_recruit.scss

***************************/
.recruit01 .bd_green {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .recruit01 .bd_green {
    padding: 20px 30px;
  }
}

.recruit02_movie_list {
  gap: 50px;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .recruit02_movie_list {
    flex-wrap: nowrap;
  }
}

.recruit02_movie_item {
  width: 100%;
}

.youtube {
  position: relative;
  height: 0;
  margin-bottom: 20px;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.recruit02_title {
  font-size: 15px;
  font-weight: bold;
  text-align: center;
}

.recruit03 .btn03 {
  margin-top: 0;
}

.recruit03_btn_wrap {
  position: relative;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.25);
}

.recruit03_btn_wrap .btn05 {
  font-size: 28px;
  font-family: var(--genei);
  font-weight: 400;
  line-height: 1.45;
  padding: 40px 30px;
  padding-right: 60px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

@media screen and (min-width: 768px) {
  .recruit03_btn_wrap .btn05 {
    font-size: 40px;
    padding: 80px 30px;
  }
}

.recruit03_btn_wrap .btn05 span {
  font-size: 16px;
  font-family: var(--cardo);
  font-weight: 400;
}

.recruit03_btn_wrap::after {
  content: "";
  width: 35px;
  height: 35px;
  background: url(img/common/btn.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  transition: all 0.5s;
}

@media screen and (min-width: 768px) {
  .recruit03_btn_wrap::after {
    width: 65px;
    height: 65px;
    right: 30px;
  }
}

.recruit03_btn_wrap:hover::after {
  background: url(img/common/btn_w.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.flow_list {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .flow_list {
    margin-top: 40px;
    justify-content: flex-start;
  }
}

.flow_item {
  background: #90A748;
  color: var(--white);
  width: 100%;
  max-width: calc(50% - 35px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 80px;
  line-height: 1.5;
}

.flow_item p {
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .flow_item {
    max-width: calc(25% - 35px);
    min-height: 104px;
  }
}

@media screen and (min-width: 960px) {
  .flow_item {
    max-width: calc(25% - 35px);
  }
}

@media screen and (min-width: 1024px) {
  .flow_item {
    max-width: calc(16.6666666667% - 35px);
  }
}

.flow_item {
  position: relative;
}

.flow_item::after {
  content: "";
  width: 11px;
  height: 19px;
  display: block;
  background: url(img/recruit/recruitment/flow_check.png);
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.flow_item:last-child::after {
  display: none;
}

.recruitment_list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.recruitment_item {
  text-align: center;
}

.recruitment_item figcaption {
  font-size: 13px;
  line-height: 1.5;
  margin-top: 10px;
}

.accordion_list {
  margin-bottom: 50px;
}

.accordion_list:last-of-type {
  margin-bottom: 0;
}

.accordion_title {
  position: relative;
  background: var(--green-gra);
  color: var(--white);
  font-size: 18px;
  font-weight: bold;
  padding: 20px;
  padding-right: 50px;
}

@media screen and (min-width: 768px) {
  .accordion_title {
    padding: 30px;
    padding-right: 50px;
  }
}

.accordion_title::before {
  content: "";
  width: 19px;
  height: 3px;
  background: var(--white);
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
}

.accordion_title::after {
  content: "";
  width: 3px;
  height: 19px;
  background: var(--white);
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 33px;
  transition: all 0.5s;
}

.accordion_title.active::after {
  opacity: 0;
  background: transparent;
}

.accordion_title.active::before {
  background: var(--white);
}

.accordion_contents {
  display: none;
}

.accordion_contents_box {
  margin-top: 40px;
}

.other_recruitment_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 100px;
  padding-top: 40px;
  margin-bottom: 50px;
}

.other_recruitment_img {
  position: relative;
}

.other_recruitment_img::before {
  content: "マイナビでも募集中！";
  font-size: 16px;
  font-weight: bold;
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}

.recruitment01 .mt-40-60 p,
.recruitment02 .mt-40-60 p {
  line-height: 1.75;
}

.message01 .title02 {
  margin-bottom: 30px;
}

.message01_wrap {
  position: relative;
}

.message01_textbox {
  padding: 60px 0;
  gap: 30px;
}

.message01_textbox p {
  line-height: 1.7;
}

.message01_textbox dl {
  line-height: 1.8;
  gap: 10px;
}

@media screen and (min-width: 960px) {
  .message01_textbox {
     padding: 60px 20px;
    width: 100%;
    max-width: 640px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: linear-gradient(90deg, #fff 70%, transparent);
    flex-direction: column;
  }
}

.message01_title {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
}

.green_box {
  background: var(--l-green);
  color: var(--white);
  padding-left: 5px;
  padding-right: 5px;
}

.message01_textbox .dot {
  margin-left: 10px;
  line-height: 1.8;
}

.dot {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.dot::before {
  content: "";
  background: var(--green-gra);
  width: 5px;
  height: 5px;
  display: block;
  border-radius: 50%;
}

.profile_date {
  width: 100%;
  /* max-width: 60px; */
  max-width: 70px;
  line-height: 1.8 !important;
}

.interview_list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

@media screen and (min-width: 600px) {
  .interview_list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
}

@media screen and (min-width: 960px) {
  .interview_list {
    gap: 40px;
  }
}

.interview_item {
  width: 100%;
}

@media screen and (min-width: 600px) {
  .interview_item {
    max-width: calc(50% - 30px);
  }
}

@media screen and (min-width: 960px) {
  .interview_item {
    max-width: calc(33.3333333333% - 40px);
  }
}

.interview_link {
  position: relative;
  display: block;
}

.interview_link figure {
  position: relative;
  display: block;
}

.interview_link::before {
  content: "";
  transition: all 0.5s;
}

.interview02_link {
  position: relative;
  display: block;
}

.interview02_item {
  position: relative;
}

.interview_link:hover {
  opacity: 1;
}

.interview_link:hover::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(39, 63, 45, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
}

.interview_link:hover::after {
  content: "";
  width: 100%;
  height: 65px;
  background: url(img/common/btn.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 5;
}

.interview_text_box {
  position: absolute;
  bottom: 20px;
  left: 0;
  background: linear-gradient(90deg, #fff 70%, transparent);
  width: 100%;
  padding: 20px;
  z-index: 6;
}

.interview_img {
  width: 100%;
}

.interview_img img {
  width: 100%;
}

.interview_job {
  font-size: 15px;
  line-height: 1.8;
}

.interview_name {
  font-weight: bold;
  letter-spacing: 0.04em;
  font-size: 28px;
  margin-right: 10px;
  line-height: 1.7;
}

.interview_date {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
}

.interview02_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media screen and (min-width: 960px) {
  .interview02_list {
    flex-direction: row;
  }
}

.interview02_link {
  position: relative;
}

.interview02_link::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(39, 63, 45, 0.29);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: all 0.5s;
}

.interview02_link .btn03 {
  position: absolute;
  top: auto;
  bottom: 15px;
  right: 15px;
  z-index: 5;
}

.interview02_link .btn03 i {
  color: var(--white);
}

.interview02_link .btn03::after {
  background: transparent;
}

.interview02_link:hover::before {
  background: rgba(39, 63, 45, 0.6);
}

.interview02_link:hover .btn03 {
  position: absolute;
  top: auto;
  bottom: 15px;
  right: 15px;
  z-index: 5;
}

.interview02_link:hover .btn03 i {
  color: var(--white) !important;
}

.interview02_link:hover .btn03::after {
  background: transparent !important;
}

.interview02_textbox {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  z-index: 7;
}

.interview02_textbox .title06 {
  align-items: center;
  color: var(--white);
  font-size: 30px;
}

.interview02_textbox .title06 span {
  font-size: 16px;
}

@media screen and (min-width: 960px) {
  .interview02_textbox .title06 {
    font-size: 40px;
  }

  .interview02_textbox .title06 span {
    font-size: 16px;
  }
}

.crosstalk01 .bd-green {
  width: 100%;
}

.crosstalk01_box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

@media screen and (min-width: 960px) {
  .crosstalk01_box.bd-green {
    padding: 40px;
  }
}

.crosstalk01_box_item {
  width: 100%;
  max-width: calc(50% - 30px);
  text-align: center;
}

@media screen and (min-width: 960px) {
  .crosstalk01_box_item {
    max-width: calc(33.3333333333% - 30px);
  }
}

.crosstalk01_box_item figure {
  width: 100%;
  max-width: 276px;
  margin: 0 auto;
}

.crosstalk01_box_item .interview_name {
  text-align: center;
}

.crosstalk01 {
  counter-reset: number 0;
}

.crosstalk01 .title02 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.crosstalk01 .title02:before {
  counter-increment: number 1;
  content: "0"counter(number);
  font-size: 16px;
  color: var(--green);
  width: 100%;
  max-width: 25px;
}

@media screen and (min-width: 1024px) {
  .crosstalk01 .service01_wrap {
    justify-content: space-between;
  }
}

@media screen and (min-width: 1024px) {
  .crosstalk01 .service01_wrap:has(.service01_img) .service01_textbox {
    max-width: 670px;
  }
}

.crosstalk01_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.crosstalk01_item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
}

.crosstalk01_left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
  max-width: 79px;
}

.crosstalk01_right p {
  line-height: 1.75;
  letter-spacing: 0.04em;
}

.crosstalk01_img {
  width: 79px;
}

.crosstalk01_img img {
  border-radius: 50%;
}

.crosstalk01_name {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.btn_crosstalk .btn04 {
  margin: 0 auto;
}

.interview_detail01 .interview_text_box {
  width: 100%;
  max-width: 410px;
  background: transparent;
  position: static;
}

@media screen and (min-width: 540px) {
  .interview_detail01 .interview_text_box {
    position: absolute;
    bottom: 20px;
    left: auto;
    right: 0;
    padding-left: 90px;
    background: linear-gradient(-90deg, #fff 30%, transparent);
  }
}

.interview_detail_box p {
  line-height: 1.8;
}

.interview_detail_textbox {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .interview_detail_textbox {
    margin-top: 40px;
  }
}

.interview_detail_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

@media screen and (min-width: 768px) {
  .interview_detail_wrap {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.interview_detai_img {
  width: 100%;
  max-width: 556px;
}

@media screen and (min-width: 768px) {
  .interview_detail_textwrap {
    width: 100%;
    max-width: 542px;
  }
}

.interview_detail_item {
  padding: 40px 20px;
}

@media screen and (min-width: 768px) {
  .interview_detail_item {
    padding: 60px 30px;
  }
}

.career_item {
  display: grid;
  grid-template-columns: 93px 1fr;
  align-items: flex-start;
  gap: 25px;
  position: relative;
}

.career_item::before {
  content: "";
  width: 100%;
  height: 100%;
  border-left: 1px dotted #90A748;
  display: block;
  position: absolute;
  top: 0;
  left: 50px;
  z-index: -1;
}

.career_contents {
  padding-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .career_contents {
    padding-bottom: 50px;
  }
}

.career_title {
  background: #90A748;
  border-radius: 13px;
  line-height: 1.1;
  color: var(--white);
  text-align: center;
  display: inline-block;
  padding: 5px;
}

.interview_detail_list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (min-width: 960px) {
  .interview_detail_list {
    flex-direction: row;
    justify-content: space-between;
  }
}

.interview_detail_item {
  width: 100%;
}

@media screen and (min-width: 960px) {
  .interview_detail_item {
    max-width: calc(50% - 40px);
  }
}

.interview_detail_item .timeline_item::before {
  top: 15px;
}

.interview_detail_item .timeline_item:last-of-type::before {
  display: none;
}

.interview_detail_item .timeline_dt img {
  margin-right: 5px;
}

.other_interview_detail_list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (min-width: 960px) {
  .other_interview_detail_list {
    flex-direction: row;
  }
}

.other_interview_detail_item {
  width: 100%;
}

@media screen and (min-width: 960px) {
  .other_interview_detail_item {
    max-width: calc(50% - 20px);
  }
}

.other_interview_detail_link {
  width: 100%;
  background: #F8F8F8;
  padding: 20px;
  display: grid;
  grid-template-columns: 80px 1fr 34px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .other_interview_detail_link {
    padding: 25px;
    grid-template-columns: 141px 1fr 65px;
    gap: 5px;
  }

  .other_interview_detail_link .other_interview_detail_textbox {
    margin-left: 30px;
  }
}

.other_interview_detail_link::after {
  content: "";
  width: 34px;
  height: 34px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 18px;
  border: 2px solid rgba(2, 5, 11, 0.2);
  border-radius: 50%;
  transition: all 0.5s;
}

@media screen and (min-width: 768px) {
  .other_interview_detail_link::after {
    width: 65px;
    height: 65px;
    right: 25px;
  }
}

.other_interview_detail_link i {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .other_interview_detail_link i {
    font-size: 20px;
  }
}

.other_interview_detail_link:hover {
  opacity: 1;
}

.other_interview_detail_link:hover::after {
  background: rgba(2, 5, 11, 0.2);
}

.other_interview_detail_link:hover i {
  color: var(--white);
  z-index: 6;
}

/***************************

object/utility/display.scss

***************************/
.relative {
  position: relative;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.none {
  display: none;
}

.flexbox {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-row-rev {
  flex-direction: row-reverse;
}

.flex-col {
  flex-direction: col;
}

.flex-col-rev {
  flex-direction: col-reverse;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  justify-content: flex-start;
}

.flex-justify-end {
  justify-content: flex-end;
}

.flex-justify-center {
  justify-content: center;
}

.flex-justify-between {
  justify-content: space-between;
}

.flex-justify-around {
  justify-content: space-around;
}

.flex-align-start {
  align-items: flex-start;
}

.flex-align-end {
  align-items: flex-end;
}

.flex-align-center {
  align-items: center;
}

.flex-align-baseline {
  align-items: baseline;
}

.flex-item {
  flex: 0 1 auto;
}

.flex-item0 {
  flex: 0 0 auto;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

/***************************

object/utility/_background.scss

***************************/
/***************************

object/utility/_link.scss

***************************/
.link--under-line {
  text-decoration: underline;
}

.link--under-line:hover {
  text-decoration: none;
}

/***************************

object/utility/_text.scss

***************************/
.fv {
  writing-mode: vertical-rl;
  letter-spacing: 3px;
}

.t-center {
  text-align: center;
}

.t-left {
  text-align: left;
}

.t-right {
  text-align: right;
}

@media screen and (min-width: 451px) {
  .t-center_pc {
    text-align: center;
  }

  .t-left_pc {
    text-align: left;
  }

  .t-right_pc {
    text-align: right;
  }
}

.vat {
  vertical-align: top;
}

.vam {
  vertical-align: middle;
}

.vab {
  vertical-align: bottom;
}

.f-bold {
  font-weight: bold;
}

.f-normal {
  font-weight: normal;
}

.indent--1 {
  text-indent: -1em;
  padding-left: 1em;
}

.indent--2 {
  text-indent: -2em;
  padding-left: 2em;
}

.indent--3 {
  text-indent: -3em;
  padding-left: 3em;
}

.indent--4 {
  text-indent: -4em;
  padding-left: 4em;
}

.indent--5 {
  text-indent: -5em;
  padding-left: 5em;
}

.fc--gray {
  color: var(--gray);
}

.fc--black {
  color: var(--black);
}

.fc--white {
  color: var(--white);
}

.fc--red {
  color: red;
}

.fc--green {
  color: var(--green);
}

.txtdeco-none {
  text-decoration: none;
}

.fz-10 {
  font-size: 10px;
}

.fz-11 {
  font-size: 11px;
}

.fz-12 {
  font-size: 12px;
}

.fz-13 {
  font-size: 13px;
}

.fz-14 {
  font-size: 14px;
}

.fz-15 {
  font-size: 15px;
}

.fz-16 {
  font-size: 16px;
}

.fz-17 {
  font-size: 17px;
}

.fz-18 {
  font-size: 18px;
}

.fz-19 {
  font-size: 19px;
}

.fz-20 {
  font-size: 20px;
}

.fz-21 {
  font-size: 21px;
}

.fz-22 {
  font-size: 22px;
}

.fz-23 {
  font-size: 23px;
}

.fz-24 {
  font-size: 24px;
}

.fz-25 {
  font-size: 25px;
}

.fz-26 {
  font-size: 26px;
}

.fz-27 {
  font-size: 27px;
}

.fz-28 {
  font-size: 28px;
}

.fz-29 {
  font-size: 29px;
}

.fz-30 {
  font-size: 30px;
}

.fz-31 {
  font-size: 31px;
}

.fz-32 {
  font-size: 32px;
}

.fz-33 {
  font-size: 33px;
}

.fz-34 {
  font-size: 34px;
}

.fz-35 {
  font-size: 35px;
}

.fz-36 {
  font-size: 36px;
}

/***************************

object/utility/spases.scss

***************************/
.m-0 {
  margin: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mb10 {
  margin-bottom: 10px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb150 {
  margin-bottom: 150px;
}

.mb300 {
  margin-bottom: 10px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mr-0 {
  margin-right: 0px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.ml-0 {
  margin-left: 0px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pl-0 {
  padding-left: 0px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

.mt-40-60 {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .mt-40-60 {
    margin-top: 60px;
  }
}

.mb-40-60 {
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .mb-40-60 {
    margin-bottom: 60px;
  }
}

/***************************

object/utility/_font.scss

***************************/
.fv {
  writing-mode: vertical-rl;
  letter-spacing: 3px;
}

.uppercase {
  text-transform: uppercase;
}

.letterspace01 {
  letter-spacing: normal;
}

.letterspace02 {
  letter-spacing: 0.04em;
}

.letterspace03 {
  letter-spacing: 0.08em;
}

.lineheight01 {
  line-height: 1.3;
}

.vertical {
  writing-mode: vertical-rl;
}

.wpcf7-spinner {
  display: none;
}

/* 250822 */
.automatic-door-work {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.automatic-door-work.col_2 {
  grid-template-columns: repeat(2, 1fr);
}

.automatic-door-work_box .image {
  width: 100%;
  margin-bottom: 20px;
}

.automatic-door-work_box .image img {
  width: 100%;
}

.automatic-door-work_box .work-link {
  position: relative;
  display: flex;
  justify-content: space-between;
  ;
  border: 1px solid #61ac65;
  border-left-width: 5px;
  padding: 10px 10px 10px 20px;
  font-weight: bold;
  font-size: 2.2rem;
  gap: 20px;
}

.automatic-door-work_box .work-link:not(:last-child) {
  margin-bottom: 10px;
}

.automatic-door-work_box .work-link i {
  font-size: 2.2rem;
  color: #61ac65;
}

@media screen and (max-width: 768px) {
  .automatic-door-work {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .exterior02 .automatic-door-work.col_2 {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 500px) {
  .automatic-door-work {
    grid-template-columns: 100%;
    gap: 20px;
  }
}

/* 250909 */
.bd-gray {
  padding: 20px;
  border: 1px solid #eee;
}

.product_item a .product_img {
  overflow: hidden;
}

.product_item a .product_img img {
  transition: all 0.5s;
}

.product_item a:hover {
  opacity: 1;
}

.product_item a:hover .product_img img {
  transform: scale(1.05);
}

.list_type01_img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/2;
}

.list_type01_img img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .list_type01_img {
    max-width: 300px;
    max-height: 200px;
  }
}

.list_type01_img iframe {
  width: 100%;
  height: 100%;
}

/* 250925 */
/***************************

object/object/project/_workstyle.scss

***************************/
.wrkstyle_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

@media screen and (min-width: 1024px) {
  .wrkstyle_list {
    gap: 40px;
  }
}

.wrkstyle_item {
  background: #F8F8F8;
  padding: 10px;
  width: 100%;
  aspect-ratio: 360/320;
}

@media screen and (min-width: 390px) {
  .wrkstyle_item {
    padding: 20px;
  }
}

@media screen and (min-width: 768px) {
  .wrkstyle_item {
    max-width: 48%;
    padding: 15px;
  }
}

@media screen and (min-width: 1200px) {
  .wrkstyle_item {
    max-width: 360px;
  }
}

@media screen and (min-width: 768px) {
  .wrkstyle_item.type02 {
    max-width: 100%;
    aspect-ratio: 3/2;
  }
}

@media screen and (min-width: 768px) {
  .wrkstyle_item.type02 {
    aspect-ratio: 3/1;
  }
}

@media screen and (min-width: 1200px) {
  .wrkstyle_item.type02 {
    max-width: 48%;
    aspect-ratio: 559/326;
  }
}

.wrkstyle_box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: auto;
  margin-bottom: auto;
  width: 100%;
  height: 100%;
}

.wrkstyle_img {
  margin-bottom: 20px;
}

.wrkstyle_date {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.7;
  background: linear-gradient(200deg, #9FBF40, #309E83);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wrkstyle_date span {
  font-size: 20px;
}

.wrkstyle_date span.fz-14 {
  font-size: 14px;
}

.wrkstyle_date.fz-28 {
  font-size: 28px;
}

.wrkstyle_text {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.8;
}

.wrkstyle_subtext {
  font-size: 14px;
}



.top-mySwiper-service {
  box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 750px;
}

/* 251008 */
.service_movie{
  width: 100%;
  text-align: center;
  margin-top: 80px;
}
.service_movie video{
  width: 100%;
  max-width: 900px;
}

/*# sourceMappingURL=style.css.map */