@charset "UTF-8";

/*!
  Theme Name: technocrats-theme2025 framework
  Author: Ori
  Author URI: http://shikiori.com/
  Description: technocrats-theme2025 framework
  Version: 2.0
  Date: 2025.08.21
  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 */
/* ============================================ */

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

foundation/base.scss

***************************/
:root {
  --white: #fff;
  --black: #111111;
  --gray: #F2F4F5;
  --l-gray: #EEEEEE;
  --green: #006600;
  --font: "IBM Plex Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --ibm: "IBM Plex Sans JP", sans-serif;
  --jakarta: "Plus Jakarta Sans", sans-serif;
}

* {
  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;
  font-weight: 500;
}

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;
}

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%;
}

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

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-fixed {
  z-index: 999;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  padding: 20px;
}

.header__nav_toggle {
  cursor: pointer;
  display: inline-block;
  background: var(--black);
  border-radius: 3px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  text-align: center;
  position: relative;
  z-index: 7;
}

.header__nav_toggle_bar {
  position: relative;
  text-align: center;
  -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: 24px;
  height: 2px;
  margin: 0 auto;
  background-color: var(--white);
  box-shadow: 0 0 5px 2px var(--green);
  outline: 1px solid transparent;
  transition-property: background-color, transform;
  transition-duration: 0.5s;
}

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

.header__nav_toggle_bar {
  width: 24px;
}

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

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

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

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

.header__nav_toggle_bar {
  background-color: transparent;
  box-shadow: 0 0 5px transparent;
}

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

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

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

.header__nav_list {
  background: #EAFBEB;
  border-radius: 3px;
  padding-left: 10px;
  padding-right: 10px;
}

.header__nav_item a {
  font-size: 15px;
  padding: 15px 20px;
  display: inline-block;
}

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

.header__nav_wrap {
  gap: 5px;
}

@media screen and (max-width: 1024px) {
  .header__logo {
    z-index: 10;
  }

  .header__nav {
    max-width: min(100%, 1000px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #EAFBEB;
    z-index: 6;
    transition: 0.5s;
    flex-direction: column;
  }

  .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_wrap {
    margin: 5px 0 0 0;
    padding: 0;
    text-align: center;
    position: relative;
    top: 100%;
    transform: translateY(-100%);
    opacity: 0;
  }

  .header__nav_wrap {
    flex-direction: column;
  }

  .header__nav_list {
    flex-direction: column;
  }

  .header.-is-open .header__nav_wrap {
    opacity: 1;
    top: 35%;
    transform: translateY(-35%);
  }

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

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

  .header.-is-open .header__nav_item:nth-child(2) a {
    transition-delay: 0.2s;
  }

  .header.-is-open .header__nav_item:nth-child(3) a {
    transition-delay: 0.4s;
  }

  .header.-is-open .header__nav_item:nth-child(4) a {
    transition-delay: 0.6s;
  }

  .header.-is-open .header__nav_item:nth-child(5) a {
    transition-delay: 0.8s;
  }
}

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

layout/_footer.scss

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

footer

////////////////////////*/
/* .js-pagetop {
  font-size: 3rem;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 500;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: var(--black);
}

.js-pagetop a {
  display: block;
  color: var(--white);
} */

.footer {
  padding-top: 100px;
}

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

.footer_contact {
  background: url(img/common/contact_bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 90px 0 100px;
}

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

.footer_contact .btn03 {
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: bold;
  margin-left: auto;
  width: 100%;
  max-width: 450px;
}

.footer_contact .btn03 span::after {
  height: 48px;
}

@media screen and (min-width: 960px) {
  .footer_contact .btn03 {
    padding-top: 30px;
    padding-bottom: 30px;
    font-size: 18px;
  }

  .footer_contact .btn03 span::after {
    height: 58px;
  }
}

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

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

.tel_wrap {
  gap: 10px;
  align-items: baseline;
  line-height: 1.5;
  justify-content: flex-start;
}

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

.tel_text {
  font-size: 24px;
  font-family: var(--jakarta);
}

@media screen and (min-width: 390px) {
  .tel_text {
    font-size: 30px;
  }
}

.tel_num {
  font-size: 30px;
  font-family: var(--jakarta);
  font-weight: 400;
}

@media screen and (min-width: 390px) {
  .tel_num {
    font-size: 9.5vw;
  }
}

@media screen and (min-width: 540px) {
  .tel_num {
    font-size: 54px;
  }
}

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

@media screen and (min-width: 1100px) {
  .tel_num {
    font-size: 54px;
  }
}

.bg_gray {
  background: #F2F4F5;
}

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

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

.footer__nav_wrapper {
  padding: 90px 0 80px;
}

.footer__nav_list {
  gap: 5px 20px;
}

@media screen and (min-width: 960px) {
  .footer__nav_list {
    gap: 5px 60px;
    width: 100%;
    max-width: 591px;
  }
}

.footer__btn_box {
  width: 100%;
  max-width: 360px;
}

.footer__btn_box .btn02 {
  max-width: 100%;
}

.footer__access_wrap {
  border-top: 1px solid #E1E6E8;
  margin-top: 50px;
  padding-top: 60px;
}

.green-deco {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.green-deco::before {
  content: "";
  width: 7px;
  height: 7px;
  display: block;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 5px 3px var(--green);
}

.footer__access_wrap {
  font-size: 15px;
}

.footer__copyright {
  font-size: 10px;
  font-weight: bold;
  color: #AFB6B9;
  letter-spacing: 0.05em;
  margin-top: 60px;
  display: block;
}


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

layout/_pager.scss

***************************/
.wp-pagenavi {
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px 5px;
  flex-wrap: wrap;
}

.wp-pagenavi a,
.wp-pagenavi span {
  color: var(--black);
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  font-family: var(--jakarta);
  margin: 0 5px;
  line-height: 2;
  width: 40px;
  height: 40px;
  display: block;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
  opacity: 1;
}

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

  .wp-pagenavi a,
  .wp-pagenavi span {
    font-size: 20px;
  }
}

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

  .wp-pagenavi a,
  .wp-pagenavi span {
    height: 62px;
    line-height: 3;
  }
}

.wp-pagenavi_container {
  position: relative;
}

.wp-pagenavi .previouspostslink {
  /* margin-right: auto; */
  width: auto;
  height: auto;
  text-decoration: none;
  border-bottom: none;
  background-color: #111111;
  border-radius: 3px;
  color: #fff;
  font-size: 15px;
  padding: 15px 30px;
  padding-left: 60px;
  transition: all 0.5s;
  position: relative;
  display: inline-block;
  position: relative;
  width: 100%;
  font-weight: bold;
  margin-right: auto;


}

@media screen and (min-width: 615px) {
  .wp-pagenavi .previouspostslink {
    font-size: 16px;
    width: 100%;
    max-width: 233px;
  }
}

@media screen and (min-width: 1100px) {
  .wp-pagenavi .previouspostslink {
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    left: 0;
    line-height: 2;
  }
}

.wp-pagenavi .previouspostslink::before {
  content: "";
  position: absolute;
  background: #303030;
  width: 1px;
  top: 50%;
  transform: translateY(-50%);
  height: 42px;
  left: 56px;
  transition: all 0.5s;
}

.wp-pagenavi .previouspostslink::after {
  content: "";
  background: #ffffff;
  height: calc(tan(60deg) * 7px / 2);
  width: 8px;
  -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 25px;
  z-index: 2;
}

.wp-pagenavi .previouspostslink:hover {
  color: #fff;
  opacity: 1;
  background: var(--green);
}

.wp-pagenavi .previouspostslink:hover span::after {
  background: #107810;
}

.wp-pagenavi .nextpostslink {
  margin-left: auto;
  width: auto;
  height: auto;
  text-decoration: none;
  border-bottom: none;
  background-color: #111111;
  border-radius: 3px;
  color: #fff;
  font-size: 15px;
  padding: 15px 30px;
  padding-right: 60px;
  transition: all 0.5s;
  position: relative;
  display: inline-block;
  position: relative;
  width: 100%;
  font-weight: bold;
}

@media screen and (min-width: 615px) {
  .wp-pagenavi .nextpostslink {
    font-size: 16px;
    width: 100%;
    max-width: 233px;

  }
}

@media screen and (min-width: 1100px) {
  .wp-pagenavi .nextpostslink {
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    right: 0;
    line-height: 2;
  }
}

.wp-pagenavi .nextpostslink::before {
  content: "";
  position: absolute;
  background: #303030;
  width: 1px;
  top: 50%;
  transform: translateY(-50%);
  height: 42px;
  right: 56px;
  transition: all 0.5s;
}

.wp-pagenavi .nextpostslink::after {
  content: "";
  background: #ffffff;
  height: calc(tan(60deg) * 7px / 2);
  width: 8px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
  z-index: 2;
}

.wp-pagenavi .nextpostslink:hover {
  color: #fff;
  opacity: 1;
  background: var(--green);
}

.wp-pagenavi .nextpostslink:hover span::after {
  background: #107810;
}

.wp-pagenavi span.current {
  color: rgba(17, 17, 17, 0.3);
  cursor: default;
  border-bottom: none;
  text-decoration: none;
}

.wp-pagenavi a:hover {
  opacity: 0.8;
}

@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: 14px;
  font-family: var(--jakarta);
  font-style: italic;
  font-weight: 400;
  color: #AFB6B9;
  margin-top: 20px;
}

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

.breadcrumbs li:before {
  content: "－";
  margin: 0 10px;
  color: var(--green);
}

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

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

.breadcrumbs a:hover {
  color: #AFB6B9;
}

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

layout/_page-title.scss

***************************/
.hdg-type01-en {
  font-family: var(--jakarta);
  font-style: italic;
  line-height: 1.4;
  font-size: 14vw;
  font-weight: 400;
  color: var(--green);
}

@media screen and (min-width: 768px) {
  .hdg-type01-en {
    font-size: 84px;
  }
}

.hdg-type01-ja {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.hdg-type02 {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .hdg-type02 {
    flex-direction: row;
    gap: 40px;
    align-items: baseline;
    margin-bottom: 50px;
  }
}

.hdg-type02-en {
  font-family: var(--jakarta);
  font-style: italic;
  line-height: 1.4;
  font-size: 10vw;
  font-weight: 400;
  color: var(--green);
}

@media screen and (min-width: 768px) {
  .hdg-type02-en {
    font-size: 60px;
  }
}

.hdg-type02-ja {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.deco_container {
  z-index: 2;
}

@media screen and (min-width: 1300px) {
  .deco_container {
    background: #fff;
  }
}

.deco_left {
  position: relative;
}

.deco_left::after {
  content: "";
  width: 42px;
  height: 1px;
  display: block;
  background: var(--green);
  position: absolute;
  top: -30px;
  left: 0;
  z-index: 0;
}

@media screen and (min-width: 540px) {
  .deco_left::after {
    width: 50px;
  }
}

@media screen and (min-width: 1300px) {
  .deco_left::after {
    width: 50%;
    top: 50%;
    transform: translateY(-50%);
  }
}

.deco_left .deco_container {
  position: relative;
}

.deco_left .deco_container::before {
  content: "";
  width: 75px;
  height: 75px;
  display: block;
  background: url(img/common/deco_title.png);
  position: absolute;
  top: -67px;
  left: 0;
}

@media screen and (min-width: 540px) {
  .deco_left .deco_container::before {
    left: 10px;
  }
}

@media screen and (min-width: 1300px) {
  .deco_left .deco_container::before {
    top: 50%;
    transform: translateY(-50%);
    left: -30px;
  }
}

body {
  counter-reset: number 0;
}

.title01 {
  font-size: 24px;
  font-weight: bold;
}

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

.title01 .num {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 60px;
}

.title01 .num::before {
  counter-increment: number 1;
  content: "0"counter(number);
}

.title01 .num::after {
  content: "";
  background: var(--green);
  width: 28px;
  height: 1px;
  display: block;
}

.title01 span {
  font-size: 14px;
  font-weight: var(--jakarta);
  color: var(--green);
  font-style: italic;
  font-weight: 600;
}

.title01 span.bd_wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.title02 {
  font-size: 21px;
  font-weight: bold;
  line-height: 1.38;
}

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

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

object/component/_box.scss

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

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

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

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

object/component/_button.scss

***************************/
.btn01 {
  border-radius: 3px;
  background: var(--black);
  padding: 15px 36px;
  display: inline-block;
}

.btn01 span {
  font-size: 15px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn01 span::before {
  content: "";
  width: 7px;
  height: 7px;
  display: block;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 5px 2px var(--green);
}

.btn01:hover {
  background: var(--green);
}

.btn02 {
  background-color: #111111;
  border-radius: 3px;
  color: #fff;
  font-size: 15px;
  width: 100%;
  max-width: 300px;
  padding: 15px 36px;
  padding-right: 86px;
  transition: all 0.5s;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.btn02 span::after {
  content: "";
  position: absolute;
  background: #303030;
  width: 1px;
  top: 50%;
  transform: translateY(-50%);
  height: 42px;
  right: 76px;
  transition: all 0.5s;
}

.btn02::before {
  content: "";
  width: 7px;
  height: 7px;
  display: block;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 5px 2px var(--green);
}

.btn02::after {
  content: "";
  background: #ffffff;
  height: calc(tan(60deg) * 7px / 2);
  width: 8px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 36px;
  z-index: 2;
}

.btn02:hover {
  color: #fff;
  opacity: 1;
  background: var(--green);
}

.btn02:hover span::after {
  background: #107810;
}

.btn03 {
  background-color: #111111;
  border-radius: 3px;
  color: #fff;
  font-size: 15px;
  padding: 15px 30px;
  padding-right: 86px;
  transition: all 0.5s;
  position: relative;
  display: block;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 320px;
  font-weight: bold;
}

.btn03 span {
  padding-right: 0;
}

@media screen and (min-width: 540px) {
  .btn03 span {
    padding-right: 20px;
  }
}

.btn03 span::after {
  content: "";
  position: absolute;
  background: #303030;
  width: 1px;
  top: 50%;
  transform: translateY(-50%);
  height: 42px;
  right: 76px;
  transition: all 0.5s;
}

.btn03::after {
  content: "";
  background: #ffffff;
  height: calc(tan(60deg) * 7px / 2);
  width: 8px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 36px;
  z-index: 2;
}

.btn03:hover {
  color: #fff;
  opacity: 1;
  background: var(--green);
}

.btn03:hover span::after {
  background: #107810;
}

.btn04 {
  background-color: #111111;
  border-radius: 3px;
  color: #fff;
  font-size: 15px;
  padding: 15px 30px;
  padding-left: 86px;
  transition: all 0.5s;
  position: relative;
  display: inline-block;
  position: relative;
  font-weight: bold;
}

.btn04 span {
  padding-left: 0;
}

@media screen and (min-width: 540px) {
  .btn04 span {
    padding-left: 20px;
  }
}

.btn04 span::after {
  content: "";
  position: absolute;
  background: #303030;
  width: 1px;
  top: 50%;
  transform: translateY(-50%);
  height: 42px;
  left: 76px;
  transition: all 0.5s;
}

.btn04::after {
  content: "";
  background: #ffffff;
  height: calc(tan(60deg) * 7px / 2);
  width: 8px;
  -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 36px;
  z-index: 2;
}

.btn04:hover {
  color: #fff;
  opacity: 1;
  background: var(--green);
}

.btn04:hover span::after {
  background: #107810;
}

.btn05 {
  background-color: #111111;
  border-radius: 3px;
  color: #fff;
  font-size: 15px;
  transition: all 0.5s;
  position: relative;
  display: inline-block;
  gap: 10px;
  position: relative;
  width: 100%;
}

.btn05::before {
  content: "";
  width: 7px;
  height: 7px;
  display: block;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 5px 2px var(--green);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}

@media screen and (min-width: 540px) {
  .btn05::before {
    left: 50px;
  }
}

.btn05::after {
  content: "";
  background: #ffffff;
  height: calc(tan(60deg) * 7px / 2);
  width: 8px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  z-index: 2;
}

@media screen and (min-width: 420px) {
  .btn05::after {
    right: 28px;
  }
}

@media screen and (min-width: 540px) {
  .btn05::after {
    right: 35px;
  }
}

.btn05 .wpcf7-form-control {
  background: var(--black);
  color: #fff;
  font-family: var(--ibm);
  border: none;
  font-size: 15px;
  font-weight: bold;
  width: 100%;
  text-align: left;
  white-space: normal;
  padding: 30px 30px;
  transition: all 0.5s;
  cursor: pointer;
}

@media screen and (min-width: 540px) {
  .btn05 .wpcf7-form-control {
    padding: 45px 70px;
    font-size: 18px;
  }
}

.contact-btn_wrap {
  position: relative;
  width: 100%;
  max-width: 600px;
}

.contact-btn_wrap::after {
  content: "";
  position: absolute;
  background: #303030;
  width: 1px;
  top: 50%;
  transform: translateY(-50%);
  height: 42px;
  right: 36px;
  transition: all 0.5s;
}

@media screen and (min-width: 420px) {
  .contact-btn_wrap::after {
    right: 56px;
  }
}

@media screen and (min-width: 540px) {
  .contact-btn_wrap::after {
    right: 76px;
  }
}

.contact-btn_wrap:hover::after {
  background: #107810;
}

.contact-btn_wrap:hover .wpcf7-form-control {
  background: var(--green);
}

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

object/component/_form.scss

***************************/
input {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 18px 20px;
  border: 1px solid #E1E6E8;
  background: #F2F4F5;
}

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

textarea {
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 3px;
  padding: 18px 20px;
  border: 1px solid #E1E6E8;
  background: #F2F4F5;
  width: 100%;
  padding: 20px;
  height: 240px;
}

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

:-moz-placeholder {
  color: #AFB6B9;
  font-weight: 500;
  font-size: 16px;
  font-family: var(--ibm);
}

::-moz-placeholder {
  color: #AFB6B9;
  font-weight: 500;
  font-size: 16px;
  font-family: var(--ibm);
}

:-ms-input-placeholder {
  color: #AFB6B9;
  font-weight: 500;
  font-size: 16px;
  font-family: var(--ibm);
}

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

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

.wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.wpcf7-checkbox .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;
}

.wpcf7-checkbox .wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #666666;
  border-radius: 3px;
  content: "";
  display: block;
  left: 5px;
  top: 50%;
  width: 32px;
  height: 32px;
}

.wpcf7-checkbox .wpcf7-list-item-label::after {
  content: "";
  left: 6px;
  margin-top: -9px;
  width: 7px;
  height: 11px;
  border-right: 3px solid #E6E6E6;
  border-bottom: 3px solid #E6E6E6;
  transform: rotate(45deg);
  position: absolute;
  top: 18px;
  left: 12px;
}

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

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

.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;
}

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

.wpcf7-radio .wpcf7-list-item-label::after {
  content: "";
  width: 18px;
  height: 18px;
  background: var(--green);
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: 7px;
  opacity: 0;
}

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

input[type=checkbox]:checked+.wpcf7-list-item-label::after {
  opacity: 1;
  border-right: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
}

.contact_unit {
  padding: 30px 0;
  border-bottom: 1px solid #D8DFE8;
}

.contact_unit:first-of-type {
  margin-top: 40px;
  border-top: 1px solid #D8DFE8;
}

.span-required {
  background: var(--green);
  color: var(--white);
  border-radius: 2px;
  padding: 4px 6px;
  font-size: 12px;
  font-weight: bold;
  margin-right: 10px;
  letter-spacing: 0.05em;
}

.span-required.--gray {
  background: #E1E6E8;
  color: #777777;
}

.contact_dt {
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: bold;
  margin-bottom: 20px;
}

.form_privacy_wrap {
  padding: 20px;
  border: 1px solid #D1D5DB;
  border-radius: 4px;
  background: var(--white);
  margin-top: 90px;
  height: 320px;
  overflow-y: scroll;
}

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

.form_privacy_wrap p {
  font-size: 15px;
}

.form_privacy_list dt {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.form_privacy_list dd p {
  font-size: 15px;
}

.contact_dd.--yubin {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact_dd.--yubin input {
  max-width: 180px;
}

.contact-form__check {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.contact-form__check p br {
  display: none;
}

@media screen and (min-width: 768px) {
  .contact-form__check p br {
    display: block;
  }
}

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

object/object/project/_home.scss

***************************/
.top_mv {
  position: relative;
  margin-top: 100px;
  padding-top: 30px;
}

@media screen and (min-width: 540px) {
  .top_mv {
    margin-top: 170px;
    padding-top: 80px;
  }
}

@media screen and (min-width: 1130px) {
  .top_mv {
    margin-top: 170px;
    padding-top: 100px;
  }
}

.top_mv_textbox {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 6;
  padding: 0 30px;
  overflow: hidden;
  width: 100%;
}

.top_mv_deco {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

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

.top_mv_title {
  font-family: var(--jakarta);
  color: var(--green);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  font-size: 34px;
}

@media screen and (min-width: 540px) {
  .top_mv_title {
    font-size: 10vw;
  }
}

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

.top_mv_lead_title {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-top: 30px;
  text-shadow: 0 0 10px #fff;
}

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

.top_mv_text {
  font-size: 16px;
  letter-spacing: 0.05em;
  width: 100%;
  max-width: 624px;
  margin-top: 10px;
  text-shadow: 0 0 5px #fff;
}

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

.top-mySwiper2 {
  height: 400px;
  position: relative;

}

@media screen and (min-width: 540px) {
  .top-mySwiper2 {
    height: 600px;
    position: relative;

  }
}

@media screen and (min-width: 960px) {
  .top-mySwiper2 {
    height: 900px;
  }
}

@media screen and (min-width: 1200px) {
  .top-mySwiper2 {
    height: auto;
  }
}

.top-mySwiper2 .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.top-mySwiper2::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(transparent, transparent, rgba(26, 199, 38, 0.15));
  z-index: 3;
  pointer-events: none;
}

.top-mySwiper2::before {
  content: "";
  background: url(img/top/mv_deco.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
}

@media screen and (min-width: 540px) {
  .top-mySwiper2::before {
    content: "";
    background: url(img/top/mv_deco.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 180px;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
  }
}

.swiper-pagination {
  left: auto !important;
  right: 0 !important;
  text-align: right;
  padding-right: 30px;
  margin-bottom: 20px;
  z-index: 10;
}

.swiper-pagination-bullet {
  background: #fff;
  margin: 0 8px !important;
}

.swiper-pagination-bullet-active {
  box-shadow: 0 0 0 5px rgba(0, 102, 0, 0.75);
}

.top_about {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media screen and (min-width: 768px) {
  .top_about {
    padding-top: 170px;
    padding-bottom: 100px;
  }
}

.top_about .fz-18 {
  margin-top: 40px;
  margin-bottom: 60px;
}

@media screen and (min-width: 768px) {
  .top_about .fz-18 {
    margin-top: 60px;
    margin-bottom: 80px;
  }
}

.top_about_flex {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

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

.top_about_textbox {
  width: 100%;
  max-width: 488px;
}

.container_m {
  position: relative;
}

@media screen and (min-width: 1600px) {
  .top_about_img {
    width: 100%;
    max-width: 800px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -200px;
  }
}

.top_business {
  padding: 80px 0;
  position: relative;
}

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

.top_business::after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--white);
  display: block;
  -webkit-clip-path: polygon(95% 0, 100% 0%, 100% 100%, 85% 100%);
  clip-path: polygon(95% 0, 100% 0%, 100% 100%, 85% 100%);
  position: absolute;
  bottom: 0;
  right: 0;
}

.top_business .container_m {
  position: relative;
  z-index: 1;
}

.top_business .container_l {
  position: relative;
  z-index: 1;
}

.top_business_title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px 10px;
  border-bottom: 1px solid #E1E6E8;
  padding-bottom: 30px;
  margin-bottom: 50px;
}

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

.top_business_title p {
  font-size: 16px;
  letter-spacing: 0.05em;
  width: 100%;
  max-width: 660px;
}

.top_business_list {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.top_business_item .top_business_textbox {
  position: relative;
  box-shadow: 5px 5px 16px rgba(0, 0, 0, 0.16);
}

.top_business_item.--right .top_business_textbox::after {
  content: "";
  background: url(img/top/business_deco.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 280px;
  height: 280px;
  display: block;
  position: absolute;
  bottom: -6px;
  right: -6px;
  z-index: -1;
}

@media screen and (min-width: 1200px) {
  .top_business_item.--right .top_business_textbox::after {
    width: 340px;
    height: 340px;
    display: block;
    position: absolute;
    bottom: -6px;
    right: -6px;
    z-index: -1;
  }
}

@media screen and (min-width: 1200px) {
  .top_business_item.--right .top_business_textbox {
    width: 100%;
    max-width: 720px;
    margin-left: -120px;
    position: relative;
  }

  .top_business_item.--right .top_business_point {
    position: relative;
  }

  .top_business_item.--right .top_business_point::after {
    content: "";
    width: 178px;
    height: 1px;
    display: block;
    background: var(--green);
    position: absolute;
    bottom: 12px;
    left: -188px;
  }

  .top_business_item.--right .top_business_point::before {
    content: "";
    background: url(img/top/business_point.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 75px;
    height: 75px;
    display: block;
    position: absolute;
    top: -21px;
    left: -227px;
    z-index: 2;
  }
}

.top_business_item.--left .top_business_textbox::after {
  content: "";
  background: url(img/top/business_deco.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 280px;
  height: 280px;
  display: block;
  position: absolute;
  bottom: -6px;
  left: -6px;
  z-index: -1;
  transform: rotate(90deg);
}

@media screen and (min-width: 1200px) {
  .top_business_item.--left .top_business_textbox::after {
    width: 340px;
    height: 340px;
    display: block;
    position: absolute;
    bottom: -6px;
    left: -6px;
    z-index: -1;
    transform: rotate(90deg);
  }
}

@media screen and (min-width: 1200px) {
  .top_business_item.--left .top_business_figure {
    flex-direction: row-reverse;
  }

  .top_business_item.--left .top_business_textbox {
    width: 100%;
    max-width: 720px;
    margin-right: -120px;
    position: relative;
  }

  .top_business_item.--left .top_business_point {
    position: relative;
  }

  .top_business_item.--left .top_business_point::after {
    content: "";
    width: 614px;
    height: 1px;
    display: block;
    background: var(--green);
    position: absolute;
    bottom: 12px;
    right: -188px;
    left: auto;
  }

  .top_business_item.--left .top_business_point::before {
    content: "";
    background: url(img/top/business_point.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 75px;
    height: 75px;
    display: block;
    position: absolute;
    top: -21px;
    right: -227px;
    left: auto;
    z-index: 2;
  }
}

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

@media screen and (min-width: 1200px) {
  .top_business_figure {
    flex-direction: row;
    align-items: center;
  }
}

.top_business_textbox {
  background: var(--white);
  border-radius: 3px;
  padding: 40px 30px;
}

@media screen and (min-width: 768px) {
  .top_business_textbox {
    padding: 75px 100px;
    padding-bottom: 80px;
  }
}

.top_business_list .top_business_point {
  font-size: 14px;
  font-family: var(--jakarta);
  font-weight: 500;
  font-style: italic;
  position: relative;
}

.top_business_list .top_business_point::after {
  content: "";
  width: 1px;
  height: 161px;
  display: block;
  background: var(--green);
  position: absolute;
  bottom: 25px;
  left: 38px;
}

@media screen and (min-width: 540px) {
  .top_business_list .top_business_point::after {
    height: 230px;
  }
}

@media screen and (min-width: 768px) {
  .top_business_list .top_business_point::after {
    height: 360px;
  }
}

.top_business_list .top_business_point::before {
  content: "";
  background: url(img/top/business_point.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 75px;
  height: 75px;
  display: block;
  position: absolute;
  top: -200px;
  left: 0;
  z-index: 2;
}

@media screen and (min-width: 540px) {
  .top_business_list .top_business_point::before {
    top: -260px;
  }
}

@media screen and (min-width: 768px) {
  .top_business_list .top_business_point::before {
    top: -400px;
  }
}

.top_business_text {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.75;
}

.top_business_other {
  margin-top: 80px;
}

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

.container_m:has(.top_business_other) {
  padding-left: 0;
  padding-right: 0;
}

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

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

@media screen and (min-width: 1024px) {
  .top_business_other_figure {
    gap: 80px;
  }
}

.top_news {
  padding: 80px 0;
}

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

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

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

.top_news_title_box {
  width: 100%;
  max-width: 240px;
}

.top_news .news_list {
  width: 100%;
  max-width: 750px;
}

.news_link {
  padding: 20px 0;
  display: block;
  border-bottom: 1px solid #E1E6E8;
}

@media screen and (min-width: 690px) {
  .news_link {
    padding: 30px 0;
  }
}

.date {
  color: var(--green);
  font-family: var(--jakarta);
  font-size: 15px;
  font-weight: bold;
  margin-right: 25px;
}

.cat {
  border: 1px solid #E1E6E8;
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 3px;
  line-height: 1.5;
}

.news_title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-right: 35px;
}

.news_link .news_title::after {
  content: "";
  width: 29px;
  height: 29px;
  display: block;
  background: var(--white);
  border: 1px solid var(--green);
  border-radius: 50%;
  transition: all 0.5s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 1;
}

.news_link .news_title::before {
  content: "";
  background: var(--green);
  height: calc(tan(60deg) * 7px / 2);
  width: 8px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  z-index: 2;
}

.news_link:hover .news_title::after {
  background: var(--green);
}

.news_link:hover .news_title::before {
  background: var(--white);
}

.top_recruit_textbox {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (min-width: 768px) {
  .top_recruit_textbox {
    margin-top: 50px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.swiper-wrapper {
  transition-timing-function: linear;
}

.slider-wrapper {
  display: flex;
  overflow: hidden;
}

.scroll-infinity {
  margin-bottom: -30px;
}

@media screen and (min-width: 768px) {
  .scroll-infinity {
    margin-bottom: -60px;
  }
}

.slider--left {
  -webkit-animation: scroll-left 60s infinite linear 0.5s both;
  animation: scroll-left 60s infinite linear 0.5s both;
  display: flex;
  align-items: center;
}

.swiper-slide_img {
  display: block;
  width: 100%;
  min-width: 540px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .swiper-slide_img {
    min-width: 960px;
  }
}

.swiper-slide_img img {
  width: 100%;
}

.swiper-slide_img.type02 {
  padding: 0 60px;
}

@-webkit-keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.top_recruit {
  overflow: hidden;
}

.deco_right {
  position: relative;
}

.deco_right::before {
  content: "";
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent 50%, var(--green) 50%);
  display: block;
  position: absolute;
  bottom: 30px;
  right: 0;
  z-index: -1;
}

.deco_right .container_m {
  position: relative;
}

.deco_right .container_m::before {
  content: "";
  width: calc(100% - 30px + 10px);
  height: 100px;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  background: #fff;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .deco_right .container_m::before {
    left: auto;
    right: 20px;
  }
}

.deco_right .container_m::after {
  content: "";
  background: url(img/common/deco_item.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 33px;
  height: 33px;
  display: block;
  position: absolute;
  bottom: 13px;
  right: 0px;
  z-index: 2;
}

.top_recruit_textbox {
  position: relative;
  z-index: 5;
}

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

object/object/project/_company.scss

***************************/
.message01_box {
  display: flex;
  flex-direction: column;
  gap: 20px 30px;
  align-items: center;
}

.message01_box .title01 {
  margin-bottom: 20px;
}

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

  .message01_box .title01 {
    margin-bottom: 40px;
  }
}

.message01_img {
  width: 100%;
  max-width: 500px;
}

.message01_img img {
  border-radius: 3px;
}

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

.box_type01 {
  padding: 20px;
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .box_type01 {
    margin-top: 50px;
    padding: 40px 50px 30px;
  }
}

.president_name {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  margin-bottom: 10px;
}

.president_text {
  line-height: 1.5;
}

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

.list_type03_list.column-2 {
  flex-wrap: nowrap;
  flex-direction: column;
}

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

.list_type03_list.column-2 .list_type03_item {
  width: 100%;
  max-width: 100%;
}

.list_type03_item {
  border-top: 1px solid #E1E6E8;
  border-bottom: 1px solid #E1E6E8;
  padding: 80px 0 30px;
  position: relative;
  width: 100%;
}

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

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

.list_type03_item::after {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--green);
  position: absolute;
  top: -1px;
  right: 0;
}

.list_type03_item.num::before {
  counter-increment: number 1;
  content: "0"counter(number);
  color: var(--green);
  font-family: var(--jakarta);
  font-style: italic;
  position: absolute;
  top: 0;
  right: 2px;
  font-size: 16px;
}

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

.list_type03_title {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 30px;
}

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

.list_type03_text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.list_type04_item {
  border-bottom: 1px solid #E1E6E8;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
}

@media screen and (min-width: 768px) {
  .list_type04_item {
    flex-direction: row;
    padding: 30px 0;
  }
}

.list_type04_dt {
  letter-spacing: 0.05em;
}

.list_type04_dt br {
  display: none;
}

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

  .list_type04_dt br {
    display: block;
  }
}

.list_type04_dd {
  width: 100%;
}

.list_type04_dd p {
  font-weight: 500;
}

.list_type04_flex {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.list_type04_flex:nth-child(even) {
  padding: 20px 0;
  margin: 20px 0;
  border-top: 1px solid #E1E6E8;
  border-bottom: 1px solid #E1E6E8;
}

@media screen and (min-width: 768px) {
  .list_type04_flex:nth-child(even) {
    padding: 30px 0;
    margin: 30px 0;
  }
}

.list_type04_textbox {
  margin-right: auto;
}

.list_type04_img {
  width: 100%;
  max-width: 210px;
}

.map_box {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.map_wrap {
  width: 100%;
}

@media screen and (min-width: 1050px) {
  .map_wrap {
    width: 100%;
    max-width: 420px;
  }
}

.map {
  position: relative;
  width: 100%;
  padding-top: 40%;
}

@media screen and (min-width: 1050px) {
  .map {
    padding-top: 66.6666%;
  }
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.history_item {
  background: #F2F4F5;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.history_item:nth-child(even) {
  background: #fff;
}

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

.history_year {
  font-family: var(--jakarta);
  font-style: italic;
  color: var(--green);
  font-weight: 400;
  padding: 8px 30px;
  font-size: 26px;
  width: 100%;
  border-bottom: 2px solid #fff;
}

@media screen and (min-width: 540px) {
  .history_year {
    border-right: 2px solid #fff;
    border-bottom: none;
    max-width: 131px;
    text-align: center;
    padding: 15px 10px;
  }
}

.history_textbox {
  padding: 25px 30px;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.75;
}

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

object/object/project/_business.scss

***************************/
.sec_first {
  margin-top: 80px;
}

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

.main {
  overflow: hidden;
}

.page_deco_container {
  position: relative;
  z-index: 6;
  display: flex;
  margin-top: 140px;
  margin-bottom: -30px;
}

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

.page_deco_container .page_deco_wrap {
  position: relative;
}

.page_deco_container .page_deco_wrap::before {
  content: "";
  background: var(--gray);
  width: calc(80% - 30px);
  height: 10px;
  display: block;
  position: absolute;
  bottom: 8px;
  left: 15px;
  right: 0;
  z-index: -1;
}

.page_deco_container .container_l {
  width: 100%;
  position: relative;
}

.page_deco_container .container_l::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #006600;
  display: block;
  position: absolute;
  top: 14px;
  right: -60px;
  z-index: -1;
}

.page_deco_container::before {
  content: "";
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, var(--green) 50%, transparent 50%);
  position: absolute;
  top: 69px;
  left: 0;
  display: block;
  z-index: -1;
}

.mv_page {
  padding: 66px 0 0;
  margin-bottom: 80px;
  position: relative;
}

.mv_page .hdg-type01 {
  position: relative;
  z-index: 5;
}

@media screen and (min-width: 1500px) {
  .mv_page {
    padding: 66px 0 0;
    margin-bottom: 110px;
  }
}

.mv_page:has(.mv_img) {
  margin-bottom: 200px;
}

@media screen and (min-width: 768px) {
  .mv_page:has(.mv_img) {
    padding-bottom: 20px;
  }
}

@media screen and (min-width: 1500px) {
  .mv_page:has(.mv_img) {
    padding: 100px 0 80px;
    margin-bottom: 120px;
  }
}

.mv_page .mv_page_container {
  position: relative;
  z-index: 8;
}

.mv_page .mv_page_container:has(.mv_img) {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (min-width: 1024px) {
  .mv_page .mv_page_container:has(.mv_img) {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .mv_page::after {
    content: "";
    height: 101%;
    background: var(--white);
    display: block;
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 30%;
    -webkit-clip-path: polygon(50% 0, 100% 0%, 100% 100%, 34% 100%);
    clip-path: polygon(50% 0, 100% 0%, 100% 100%, 34% 100%);
  }
}

.mv_img_wrap {
  position: relative;
  z-index: 5;
}

.mv_img_wrap .breadcrumbs .container_l {
  padding: 0;
}

.mv_img_wrap:has(.mv_img) {
  margin-right: calc(50% - 50vw);
  margin-left: auto;
  margin-bottom: -80px;
}

.mv_img_wrap:has(.mv_img) .breadcrumbs .container_l {
  padding: 0 15px;
}

@media screen and (min-width: 1500px) {
  .mv_img_wrap:has(.mv_img) {
    margin-top: -150px;
  }
}

@media screen and (min-width: 1600px) {
  .mv_img_wrap:has(.mv_img) {
    margin-top: -180px;
  }
}

.mv_img_wrap img {
  width: 100%;
}

@media screen and (min-width: 540px) {
  .mv_img_wrap img {
    max-width: 580px;
  }
}

@media screen and (min-width: 1024px) {
  .mv_img_wrap img {
    max-width: 800px;
  }
}

@media screen and (min-width: 1600px) {
  .mv_img_wrap img {
    max-width: 1011px;
  }
}

.mv_page_wrap:has(.page-anchor) {
  width: 100%;
}

@media screen and (min-width: 1080px) {
  .mv_page_wrap:has(.page-anchor) {
    max-width: 50%;
  }
}

@media screen and (min-width: 1700px) {
  .mv_page_wrap:has(.page-anchor) {
    max-width: 30%;
  }
}

.mv_img {
  position: relative;
}

.mv_img::before {
  content: "";
  background: url(img/common/mv_bg.png);
  width: 300px;
  height: 180px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -3px;
  left: -3px;
  z-index: -1;
}

@media screen and (min-width: 1400px) {
  .mv_img::before {
    width: 1012px;
    height: 612px;
  }
}

.page-anchor {
  display: flex;
  align-items: center;
  gap: 10px 20px;
  flex-wrap: wrap;
  margin-top: 40px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .page-anchor {
    margin-top: 90px;
    gap: 10px 35px;
  }
}

.page-anchor a {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (min-width: 768px) {
  .page-anchor a {
    font-size: 16px;
  }
}

.page-anchor a::after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background: url(img/common/anchor_btn.png);
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (min-width: 768px) {
  .page-anchor a::after {
    width: 20px;
    height: 20px;
  }
}

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

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

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

.feature_textbox .title01 {
  margin-bottom: 20px;
}

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

.business_gallery_list {
  display: grid;
  justify-items: center;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .business_gallery_list {
    grid-template-columns: 1fr 1fr;
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

.business_service_01 {
  margin-top: 40px;
}

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

.lead_textbox {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.lead_textbox .title02 br {
  display: none;
}

@media screen and (min-width: 768px) {
  .lead_textbox {
    flex-direction: row;
    align-items: center;
    margin-bottom: 60px;
  }

  .lead_textbox .title02 {
    width: 100%;
    max-width: 370px;
  }

  .lead_textbox .title02 br {
    display: block;
  }

  .lead_textbox p {
    width: 100%;
    max-width: 800px;
    letter-spacing: 0.05em;
    line-height: 1.75;
  }
}

.business_service_02,
.business_service_03 {
  margin-top: 90px;
}

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

  .business_service_02,
  .business_service_03 {
    margin-top: 110px;
  }
}

.list_type01_list {
  margin-top: 20px;
  margin-bottom: 40px;
}

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

.list_type01_item {
  border-top: 1px solid #E1E6E8;
  padding: 20px 0;
}

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

.list_type01_item:last-child {
  border-bottom: 1px solid #E1E6E8;
}

.list_type01_item:has(.list_type01_img) {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

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

  .list_type01_item:has(.list_type01_img) .list_type01_textbox {
    width: 100%;
    max-width: 845px;
  }
}

.list_type01_img {
  width: 100%;
  max-width: 320px;
}

.list_type01_img img {
  border-radius: 3px;
}

.list_type02_list {
  margin-top: 30px;
}

.list_type02_list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.list_type02_item {
  width: 100%;
  background: #F2F4F5;
}

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

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

@media screen and (min-width: 1250px) {
  .list_type02_item {
    max-width: 380px;
  }
}

.list_type02_dl {
  border-radius: 3px;
  padding: 25px;
  width: 100%;
}

.list_type02_dt {
  letter-spacing: 0.05em;
  position: relative;
}

.list_type02_dt::after {
  content: "";
  width: 3px;
  height: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -25px;
  background: var(--green);
  display: block;
}

.green-deco02 {
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.green-deco02::before {
  content: "";
  border-radius: 2px;
  width: 8px;
  height: 8px;
  background: var(--green);
  display: inline-block;
  margin-right: 10px;
}

.list_type02_dd ul {
  margin-left: 20px;
}

.list_type02_dd ul li {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 3px;
}

.list_type02_dd ul li:last-child {
  margin-bottom: 0;
}

.gallery_list {
  margin-top: 30px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

/* @media screen and (min-width: 768px) {
  .service_03_link_list {
    margin-bottom: 140px;
  }
} */

.gallery_item {
  width: 100%;
}

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

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

@media screen and (min-width: 1250px) {
  .gallery_item {
    max-width: 380px;
  }
}

.gallery_item .gallery_img img {
  width: 100%;
}

.gallery_item .btn02 {
  max-width: 100%;
  margin-top: 20px;
}

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

object/object/project/_news.scss

***************************/
@media screen and (min-width: 768px) {
  .cat_wrap {
    width: 100%;
    max-width: 200px;
  }
}

.cat_list {
  display: flex;
  flex-direction: row;
  gap: 25px;
}

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

.news_wrap {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

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

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

.cat_item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.cat_item::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--white);
  border-radius: 50%;
  transition: all 0.5s;
  display: block;
}

.cat_item.active {
  color: var(--green);
  font-weight: bold;
}

.cat_item.active::before {
  box-shadow: 0 0 3px 3px var(--green);
}

.cat_item:hover {
  color: var(--green);
  font-weight: bold;
}

.cat_item:hover::before {
  box-shadow: 0 0 3px 3px var(--green);
}

.news_wrap .news_title {
  margin-bottom: 18px;
}

.news_wrap .news_list a {
  margin-top: 10px;
  background-color: #111111;
  border-radius: 3px;
  color: #fff;
  font-size: 15px;
  padding: 15px 30px;
  padding-right: 86px;
  transition: all 0.5s;
  position: relative;
  display: inline-block;
  position: relative;
  font-weight: bold;
}


.news_wrap .news_list a span {
  padding-right: 0;
}

@media screen and (min-width: 540px) {
  .news_wrap .news_list a span {
    padding-right: 20px;
  }
}

.news_wrap .news_list a span::after {
  content: "";
  position: absolute;
  background: #303030;
  width: 1px;
  top: 50%;
  transform: translateY(-50%);
  height: 42px;
  right: 76px;
  transition: all 0.5s;
}

.news_wrap .news_list a::after {
  content: "";
  background: #ffffff;
  height: calc(tan(60deg) * 7px / 2);
  width: 8px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 36px;
  z-index: 2;
}

.news_wrap .news_list a:hover {
  color: #fff;
  opacity: 1;
  background: var(--green);
}

.news_wrap .news_list a:hover span::after {
  background: #107810;
}

.news_wrap .news_list a[href$='.pdf'] {
  margin-top: 10px;
  background-color: #111111;
  border-radius: 3px;
  color: #fff;
  font-size: 15px;
  padding: 15px 30px;
  padding-right: 86px;
  transition: all 0.5s;
  position: relative;
  display: inline-block;
  position: relative;
  font-weight: bold;
}

.news_wrap .news_list a[href$='.pdf'] span {
  padding-right: 0;
}

@media screen and (min-width: 540px) {
  .news_wrap .news_list a[href$='.pdf'] span {
    padding-right: 20px;
  }
}

.news_wrap .news_list a[href$='.pdf'] span::after {
  content: "";
  position: absolute;
  background: #303030;
  width: 1px;
  top: 50%;
  transform: translateY(-50%);
  height: 42px;
  right: 66px;
  transition: all 0.5s;
}

.news_wrap .news_list a[href$='.pdf']::after {
  content: "";
  background: url(img/common/ico_pdf.png);
  width: 16px;
  height: 18px;
  -webkit-clip-path: none;
  clip-path: none;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 29px;
  z-index: 2;
}

.news_wrap .news_list a[href$='.pdf']:hover {
  color: #fff;
  opacity: 1;
  background: var(--green);
}

.news_wrap .news_list a[href$='.pdf']:hover span::after {
  background: #107810;
}

.news_wrap .news_list a[href$='.pdf']:has(img),
.news_wrap .news_list a:has(img) {
  background: transparent;
  padding: 0;
  border-radius: 0;
  transition: all 0.5s;
}

.news_wrap .news_list a:has(img):hover {
  opacity: 0.5;
}

.news_wrap .news_list .news_item {
  border-bottom: 1px solid #E1E6E8;
  padding: 20px 0;
}

@media screen and (min-width: 768px) {
  .news_wrap .news_list .news_item {
    padding: 30px 0;
  }
}

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

object/object/project/_contact.scss

***************************/
.tel_wrap_container {
  border: 1px solid #E1E6E8;
  border-left: none;
  border-right: none;
  padding: 25px 20px 30px;
}

.tel_wrap_container .flexbox {
  gap: 10px 85px;
}

@media screen and (max-width: 540px) {
  .tel_wrap_container .tel_text {
    font-size: 22px;
  }

  .tel_wrap_container .tel_num {
    font-size: 32px;
  }
}

.contact_thanks .tel_wrap_container {
  margin-top: 30px;
}

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

.contact01 p,
.contact02 p {
  left: 0.05em;
}

.contact01 .title02,
.contact02 .title02 {
  margin-top: 80px;
  margin-bottom: 20px;
}

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

  .contact01 .title02,
  .contact02 .title02 {
    margin-top: 110px;
    margin-bottom: 35px;
  }
}

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

object/object/project/_recruit.scss

***************************/
.--recruit .mv_page.bg_gray {
  background: linear-gradient(90deg, #006600, #ACFF58);
}

.--recruit .page_deco_container .page_deco_wrap::before {
  background: transparent;
}

.--recruit .page_deco_container::before {
  background: linear-gradient(90deg, var(--green) 10%, transparent 10%);
}

.--recruit .hdg-type01-ja,
.--recruit .hdg-type01-en,
.--recruit .page-anchor {
  color: var(--white);
}

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

.message01_box .title01 {
  margin-bottom: 20px;
}

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

  .message01_box .title01 {
    margin-bottom: 40px;
  }
}

.recruit_message01_img {
  margin-left: calc(50% - 50vw);
  width: 100%;
  max-width: 875px;
}

.--recruit .message01_box .president_name {
  justify-content: flex-end;
  margin-top: 20px;
}

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

.list_type03_item.deco_01::before {
  content: "";
  background: url(img/recruit/culture_deco01.png);
  width: 19px;
  height: 19px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 10px;
  right: 0;
  font-size: 16px;
}

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

.list_type03_item.deco_02::before {
  content: "";
  background: url(img/recruit/culture_deco02.png);
  width: 19px;
  height: 19px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 10px;
  right: 0;
  font-size: 16px;
}

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

.philosophy_01 {
  margin-top: 80px;
}

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

.philosophy_box {
  padding: 20px;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 0 30px;
}

@media screen and (min-width: 768px) {
  .philosophy_box {
    padding: 25px;
  }
}

.philosophy_box ul {
  width: 100%;
  max-width: 185px;
}

.list_type05_item {
  border-top: 1px solid #E1E6E8;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.list_type05_item:last-child {
  border-bottom: 1px solid #E1E6E8;
}

.list_type05_item .list_type05__title {
  width: 100%;
  max-width: 250px;
}

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

  .list_type05_item .list_type05_textbox {
    width: 100%;
    max-width: 845px;
  }
}

.support_lead_title {
  margin-top: 30px;
  margin-bottom: 5px;
}

.support02,
.support03 {
  margin-top: 50px;
}

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

  .support02,
  .support03 {
    margin-top: 100px;
  }
}

.support_img {
  margin-top: 30px;
}

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

.box_type02_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;

}

@media screen and (min-width: 540px) {
  .box_type02_list {
    gap: 20px;
  }
}

.box_type02_item {
  border-radius: 3px;
  padding: 22px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  /* height: 150px; */
  max-width: calc(50% - 5px);
  aspect-ratio: 1/1;
}

.box_type02_img img {
  width: 50px;
}

@media screen and (min-width: 390px) {
  .box_type02_item {
    max-width: calc(50% - 10px);
  }
}

@media screen and (min-width: 540px) {
  .box_type02_item {
    padding: 22px 10px;
    height: auto;
    /* height: 224px; */
  }

  .box_type02_img img {
    width: auto;
  }
}

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

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

.box_type02_title {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.75;
}

@media screen and (min-width: 540px) {
  .box_type02_title {
    font-size: 16px;
  }
}

.flow_dl {
  padding: 20px;
}

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

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

.flow_item {
  background: #F2F4F5;
  display: grid;
  grid-template-columns: 80px 1fr;
}

.flow_item.bg_green {
  background: var(--green);
}

.flow_item.bg_green .flow_num {
  color: var(--white);
}

@media screen and (min-width: 540px) {
  .flow_item {
    grid-template-columns: 100px 1fr;
  }
}

.flow_num {
  font-size: 26px;
  font-style: italic;
  font-family: var(--jakarta);
  color: var(--green);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 3px solid #fff;
  position: relative;
}

.flow_num::after {
  content: "";
  width: 46px;
  height: 18px;
  background: var(--green);
  display: block;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

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

.faq_box {
  border-top: 1px solid #D8DFE8;
}

.faq_box:last-child {
  border-bottom: 1px solid #D8DFE8;
}

.faq_title {
  font-size: 16px;
  font-weight: bold;
  padding: 20px 0;
  position: relative;
  transition: all 0.5s;
  padding-right: 30px;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
}

.faq_title span {
  font-size: 26px;
  color: var(--green);
  font-family: var(--jakarta);
  font-style: italic;
  font-weight: 500;
}

@media screen and (min-width: 540px) {
  .faq_title {
    padding: 20px 0;
    padding-right: 30px;
    font-size: 18px;
  }
}

.faq_title::before {
  content: "";
  width: 24px;
  height: 3px;
  background: var(--green);
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.faq_title::after {
  content: "";
  width: 3px;
  height: 24px;
  background: var(--green);
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

.faq_title.active {
  padding-bottom: 20px;
}

.faq_title.active::after {
  background: transparent;
}

.faq_contents {
  display: none;
}

.faq_contents_box {
  gap: 15px;
  padding-bottom: 30px;
  padding-left: 50px;
}

.recruit_info {
  padding-top: 100px;
  padding-bottom: 100px;
}

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

.bg_gray .deco_container {
  background: #F2F4F5;
}

.tab-list-company {
  display: flex;
}

.tab-item-company {
  border-bottom: 3px solid #E1E6E8;
  text-align: center;
  width: 100%;
  color: #AFB6B9;
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
}

.tab-item-company.current {
  border-bottom: 3px solid #006600;
  color: var(--green);
}

.tab-content-company {
  margin-top: 30px;
}

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

.tab-content-company:nth-of-type(n+2) {
  display: none;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .tab-list {
    margin-bottom: 60px;
  }
}

.tab-list .tab-item-list01 {
  width: 100%;
  padding: 15px;
  text-align: center;
  border-radius: 3px;
  color: var(--green);
  border: 1px solid var(--green);
  background: var(--white);
  cursor: pointer;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.tab-list .tab-item-list01.tab-active {
  background: var(--green);
  color: var(--white);
}

@media screen and (min-width: 768px) {
  .tab-list .tab-item-list01 {
    max-width: calc(50% - 20px);
  }
}

@media screen and (min-width: 960px) {
  .tab-list .tab-item-list01 {
    max-width: calc(33.3333333333% - 20px);
  }
}

@media screen and (min-width: 1200px) {
  .tab-list .tab-item-list01 {
    max-width: 280px;
  }
}

.bg_whitebox {
  background: var(--white);
  border-radius: 3px;
  padding: 0 20px;
}

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

.entry_wrap {
  margin-top: 80px;
}

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

.entry_wrap .entry_btn {
  margin-top: 30px;
  display: inline-block;
}

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

.interview_swiper_container {
  position: relative;
}

.interview_swiper_container .interview-pagination {
  position: absolute;
  top: -80px !important;
  left: 0 !important;
  right: 0 !important;
  text-align: right;
  height: 50px !important;
  width: 100% !important;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
  z-index: 10;
}

.interview_swiper_container .swiper-pagination-bullet {
  background: #000;
}

.interview_swiper_container .swiper-pagination-bullet-active {
  background: #fff;
}

.recruit-open {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 6;
  cursor: pointer;
}

.recruit-interview-list .swiper-slide {
  opacity: 0.3;
  transform: scale(0.8);
  transition: 0.7s;
}

.recruit-interview-list .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

body.modaal-noscroll {
  padding-right: 15px;
  /* スクロールバーの幅に合わせて調整 */
}

body.modaal-noscroll .header {
  padding-right: 35px;
}

.recruit-interview-imgbox {
  position: relative;
}

.recruit-interview-imgbox img {
  border-radius: 3px;
  width: 100%;
}

.recruit-interview-imgbox::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(45deg, transparent, transparent 60%, rgba(0, 102, 0, 0.5));
  z-index: 3;
  border-radius: 3px;
}

.recruit-interview_position {
  position: absolute;
  top: 18px;
  right: 15px;
  z-index: 5;
  writing-mode: vertical-rl;
  letter-spacing: 0.05em;
}

.recruit-interview-textbox {
  position: absolute;
  bottom: 40px;
  left: 30px;
  width: 80%;
}

@media screen and (min-width: 768px) {
  .recruit-interview-textbox {
    max-width: 326px;
  }
}

.recruit-interview_join {
  background: var(--green);
  display: inline-block;
  line-height: 1.5;
  padding: 2px 7px 1px;
}

.recruit-interview_name {
  font-size: 21px;
  letter-spacing: 0.05em;
  display: inline;
  line-height: 2;
  background: linear-gradient(transparent, #fff 0%);
  display: inline;
  padding: 0 5px;
  border-radius: 3px;
}

@media screen and (min-width: 768px) {
  .recruit-interview_name {
    font-size: 26px;
  }
}

.recruit-interview-item {
  position: relative;
}

.recruit-interview-contents {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
}

.modaal-content-container,
.modaal-container {
  background: transparent;
  box-shadow: none;
}

.modaal-inline {
  margin-right: 30px;
}

.modaal-content.modaal-focus {
  width: 100%;
  max-width: 570px;
  margin: 0 auto;
}

.recruit-interview-box {
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  width: 100%;
  max-width: 570px;
  background: var(--white);
  padding: 30px;
  padding-bottom: 70px;
  border-radius: 6px 0 6px 6px;
  box-shadow: 0 0 30px 10px rgba(0, 102, 0, 0.4);
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .recruit-interview-box {
    padding: 50px;
    padding-bottom: 70px;
  }
}

.recruit-interview-box .title02 {
  margin-bottom: 20px;
  margin-top: 30px;
}

.recruit-interview-box .recruit-interview-box_position {
  position: absolute;
  top: -30px;
  right: 0;
  padding: 5px 20px;
  padding-left: 30px;
  padding-bottom: 0;
  background: url(img/recruit/interview_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.voice {
  position: relative;
  z-index: 10;
}

.recruit-close {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 73px;
  height: 73px;
  background: #F2F4F5;
  border-radius: 6px;
}

.modaal-content-container {
  position: relative;
  /* その他のスタイルはそのまま */
  width: 100%;
  max-width: 570px;
  padding: 10px;
}

.modaal-container {
  width: 100%;
  max-width: 570px;
}

/* 閉じるボタンに absolute を設定し、位置を調整 */
.modaal-close {
  position: absolute;
  top: auto;
  z-index: 1000;
  /* right: 30px;
  bottom: 30px; */
    right: 10px;
  bottom: 10px;
  /* デフォルトの非表示設定を上書き */
  display: block !important;
  /* 必要に応じて、アイコンのスタイルを調整 */
  width: 72px;
  height: 72px;
  border-radius: 3px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.modaal-close:hover {
  background: transparent;
}

.modaal-close:hover::after,
.modaal-close:hover:before {
  background: var(--black);
}

.modaal-close:after,
.modaal-close:before {
  background: var(--black);
  top: 25px;
  left: 33px;
}

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

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;
}

.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;
}

.fz-18 {
  font-size: 16px;
  letter-spacing: 0.05em;
}

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

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

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

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

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

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

.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: #F2F4F5;
}

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

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

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

.fc--red {
  color: red;
}

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

.link_border {
  text-decoration: underline;
  letter-spacing: 0.05em;
}

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

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;
}

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

object/utility/_font.scss

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

.uppercase {
  text-transform: uppercase;
}

.letterspace01 {
  letter-spacing: 2px;
}

.letterspace02 {
  letter-spacing: 4px;
}

.letterspace03 {
  letter-spacing: 1px;
}

.lineheight01 {
  line-height: 1.3;
}

.vertical {
  writing-mode: vertical-rl;
}

.wpcf7-spinner {
  display: none;
}

.news_list_wrap {
  width: 100%;
}

/* 250826 */
.js-pagetop {

  position: fixed;
  bottom: 20px;
  right: 10px;

  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  z-index: 10;
}

.js-pagetop a {
  display: block;
  border: 1px solid var(--green);
  border-radius: 50%;
  background: var(--white);
}

.js-pagetop a::before {
  content: "";
  background: var(--green);
  height: calc(tan(60deg) * 10px / 2);
  width: 10px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  display: inline-block;
  z-index: 2;
  transform: rotate(-90deg);
}

.js-pagetop a:hover {
  background: var(--green);
  opacity: 1;
}

.js-pagetop a:hover::before {
  background: var(--white);
}


.service_03_link_list {
  gap: 10px;
  width: 100%;
  /* margin-bottom: 80px; */
}
.service_03_link_list.--last{
  margin-bottom: 80px;
}

@media screen and (min-width: 768px) {
  .service_03_link_list.--last {
    margin-bottom: 140px;
  }
}

.service_03_link_list li {
  max-width: 380px;
  width: 100%;
}

.service_03_link_list a {
  max-width: 100%;
}

.business_service_03 .list_type01_list {
  margin-bottom: 0;
}

.br_sp {
  display: block;
}

@media screen and (min-width: 768px) {
  .br_sp {
    display: none;
  }
}
/* 250829 */
.modaal-inner-wrapper{
  padding-left: 10px;
  padding-right: 10px;
}

/*# sourceMappingURL=style.css.map */