@charset "UTF-8";

/*!
  Theme Name: terao-const-theme2025 framework
  Author: Ori
  Author URI: http://shikiori.com/
  Description: terao-const-theme2025 framework
  Version: 2.0
  Date: 2025.07.23
  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 */
/* ============================================ */
/* @font-face {
  font-family: "ShipporiGochic";
  src: url("webfonts/ShipporiGothicB2-Bold.ttf") format("truetype");
  font-weight: 500;
} */
/***************************

foundation/base.scss

***************************/
:root {
  --white: #FFFFFF;
  --black: #111111;
  --font: font-family: "IBM Plex Sans JP", serif, "Albert Sans", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", 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;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow: hidden;
  font-size: 14px;
  color: var(--black);
  font-family: "IBM Plex Sans JP", serif;
  font-weight: 500;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  width: 100%;
  letter-spacing: 0.08em;
}

a {
  color: var(--black);
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 0.6s;
  transition-timing-function: ease-out;
}

a:hover {
  color: var(--black);
  text-decoration: none;
  opacity: 0.65;
}

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

p {
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.08em;
}
@media (min-width: 751px) {
  p {
    font-size: 16px;
  }
}
@media (min-width: 1025px) {
  p {
    font-size: 18px;
  }
}

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

ul,
ol {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
dd,
dt,
dl {
  margin: 0;
}

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

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

button,
input,
optgroup,
select,
textarea {
  font-family: var(--hiragino_gothic);
  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;
  -moz-appearance: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  border: 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;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -moz-appearance: none;
  -webkit-appearance: none;
  outline-offset: -2px;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -moz-appearance: none;
  -webkit-appearance: none;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #eee;
}

::-webkit-scrollbar-thumb {
  background: var(--white);
  border-radius: 5px;
}

@media screen and (min-width: 651px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 650px) {
  a[href^="tel:"] {
    display: inline-block;
  }
}
.bg-w {
  background-color: #fff;
}

.c-black {
  color: #111111;
}

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

foundation/_animation.scss

***************************/
/*==================================================
ふわっ
===================================*/
/* その場で */
.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: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-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);
  }
}
/* 上から */
.fadeDown {
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -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: 1s;
          animation-duration: 1s;
  -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: 1s;
          animation-duration: 1s;
  -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: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

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

@keyframes zoomOutAnime {
  from {
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.zoomInTrigger,
.zoomOutTrigger {
  opacity: 0;
}

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

@-webkit-keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.blurTrigger {
  opacity: 0;
}

.fadeanime {
  -webkit-animation: fadein 3s forwards;
          animation: fadein 3s forwards;
}

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

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.en-ugoki {
  -webkit-animation: en-ugoki 3s forwards;
          animation: en-ugoki 3s forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes en-ugoki {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes en-ugoki {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/***************************

layout/_header.scss

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

 header

////////////////////////*/
.header.-is-fixed {
  z-index: 999;
  background-color: #fff;
  position: fixed;
  transition: all 0.5s;
}
@media screen and (min-width: 1040px) {
  .header.-is-fixed {
    padding: 15px 50px 15px 50px;
  }
}
.header.-is-fixed .link_contact::after {
  transition: all 0.5s;
  background-image: url(img/common/btn-green.png);
}

.header_container {
  position: relative;
}

.header {
  position: relative;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  padding: 25px 10px 15px 15px;
  background-color: transparent;
  transition: all 0.5s;
}
@media screen and (min-width: 1024px) {
  .header {
    padding: 40px 15px;
  }
}
@media screen and (min-width: 1040px) {
  .header {
    padding: 33px 15px 33px 15px;
  }
}
@media screen and (min-width: 1300px) {
  .header {
    padding: 30px 50px 30px 50px;
  }
}

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

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

.header__nav_toggle_bar,
.header__nav_toggle_bar::before,
.header__nav_toggle_bar::after {
  display: block;
  width: 28px;
  height: 2px;
  background-color: #231815;
  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: 28px;
}

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

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

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

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

.header__nav_toggle_title:before {
  content: "MENU";
  color: #58B545;
  font-weight: bold;
  letter-spacing: 0.08em;
}

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

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

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

.header.-is-open .header__nav_toggle_title:before {
  content: "CLOSE";
}

@media screen and (min-width: 1449px) {
  .header__nav_toggle {
    display: none;
  }
  .header__nav_list {
    gap: 0 30px;
  }
}
.header__nav_link {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.08em;
}
.header__nav_link span {
  font-size: 10px;
  color: #58B545;
  font-weight: bold;
}

.header__nav {
  margin-left: 80px;
}

@media screen and (max-width: 1040px) {
  .header__logo {
    z-index: 10;
    width: 125px;
  }
}
@media screen and (max-width: 1450px) {
  .header__logo {
    z-index: 10;
  }
  .header__nav {
    max-width: min(100%, 1500px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--white);
    z-index: 6;
    transition: 0.5s;
    margin-left: 0;
  }
  .header.-is-open .header__nav {
    height: 100vh;
    position: absolute;
    overflow: hidden;
    transition-property: height, visibility;
    transition-duration: 0.35s;
    transition-timing-function: ease;
  }
  .header__nav_list {
    display: flex;
    flex-direction: column;
    margin: 5px 0 0 0;
    padding: 0;
    text-align: center;
    position: relative;
    top: 35%;
    transform: translateY(-35%);
    opacity: 0;
    z-index: -3;
  }
  .header.-is-open .header__nav_list {
    opacity: 1;
    z-index: 10;
  }
  .header.-is-open .header__nav_item {
    height: auto;
  }
  .header__nav_item {
    height: 0;
  }
  .header__nav_item a {
    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;
  }
}
@media screen and (min-width: 1140px) {
  .header__logo {
    width: auto;
  }
}
.header.-is-open .link_contact::after {
  transition: all 0.5s;
  background-image: url(img/common/btn-green.png);
}

@media screen and (min-width: 1024px) {
  .button_nav {
    margin-left: auto;
  }
}

.link_contact {
  color: transparent;
  position: relative;
  z-index: 6;
  margin-right: 20px;
}
@media screen and (min-width: 1024px) {
  .link_contact {
    margin-right: 40px;
  }
}
.link_contact:hover {
  opacity: 0.6;
  color: transparent;
}
.link_contact::after {
  content: "";
  background-image: url(img/common/btn-green.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 68px;
  height: 46px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
}
@media screen and (min-width: 1024px) {
  .link_contact::after {
    background-image: url(img/common/btn-white.png);
  }
}
@media screen and (min-width: 1490px) {
  .link_contact::after {
    background-image: url(img/common/btn-white.png);
    width: 92px;
    height: 62px;
  }
}

.page .link_contact::after {
  transition: all 0.5s;
  background-image: url(img/common/btn-green.png);
}
.page .header__img.sub {
  z-index: -1;
}

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

layout/_footer.scss

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

  footer

  ////////////////////////*/
.footer_contact {
  background-image: url(img/top/contact_bg.jpg);
  padding: 90px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media (min-width: 1025px) {
  .footer_contact {
    padding: 180px 0 150px;
  }
}
.footer_contact .container_l {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
@media (min-width: 751px) {
  .footer_contact .container_l {
    gap: 60px;
  }
}
.footer_contact p {
  font-size: 20px;
  letter-spacing: 0.08em;
}
@media (min-width: 751px) {
  .footer_contact p {
    width: 100%;
    max-width: 420px;
  }
}
.footer_contact .footer_contact__text {
  flex-wrap: wrap;
  width: 100%;
  gap: 30px;
}
@media screen and (min-width: 1270px) {
  .footer_contact .footer_contact__text {
    width: auto;
    gap: 70px;
    flex-wrap: nowrap;
  }
}

.footer_area01 {
  background-color: #ffffff;
  padding: 100px 0 75px;
}
@media (min-width: 751px) {
  .footer_area01 {
    padding: 125px 0 100px;
  }
}
.footer_area01 .container_l {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}
@media (min-width: 751px) {
  .footer_area01 .container_l {
    justify-content: space-between;
  }
}

.sitemap_box {
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.06em;
  display: flex;
  gap: 20px;
  width: 100%;
  justify-content: space-around;
}
@media (min-width: 751px) {
  .sitemap_box {
    width: auto;
    gap: 70px;
    font-size: 16px;
  }
}

.sitemap_list {
  margin-left: 30px;
  position: relative;
}
.sitemap_list::before {
  content: "";
  width: 4px;
  height: 145px;
  background-color: #EEF2F3;
  display: block;
  position: absolute;
  top: 0;
  left: -30px;
}

.sitemap_link {
  display: block;
  padding-bottom: 18px;
}

.footer_company {
  display: grid;
  gap: 30px;
}
.footer_company .footer_company__list {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.06em;
}

.footer_area02 {
  background-color: #EEF2F3;
}
.footer_area02 small {
  font-family: "Albert Sans", serif;
  color: #BAC5C8;
  display: block;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.08em;
  padding: 30px 0;
  padding-bottom: 100px;
}
@media screen and (min-width: 580px) {
  .footer_area02 small {
    padding: 32px 0;
  }
}

.js-pagetop {
  font-size: 14px;
  font-weight: bold;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 500;
  width: 200px;
  height: auto;
  text-align: center;
  background: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
}
.js-pagetop a {
  color: var(--white);
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 34px 0;
}
.js-pagetop img {
  margin-right: 15px;
}

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

layout/_breadcrumbs.scss

***************************/
/******** breadcrumbs ********/
.breadcrumbs {
  font-size: 13px;
  padding: 20px 0 70px;
}
@media (min-width: 751px) {
  .breadcrumbs {
    padding: 20px 0 100px;
  }
}
@media (min-width: 1025px) {
  .breadcrumbs {
    padding: 20px 0 140px;
  }
}

.breadcrumbs li:before {
  content: ">";
  margin: 0 10px;
  color: #111111;
}

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

.breadcrumbs li {
  color: #58B545;
}

.breadcrumbs a {
  color: #111111;
  text-decoration: none;
}

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

@media screen and (max-width: 560px) {
  .breadcrumbs {
    font-size: 1rem;
  }
  .breadcrumbs li:before {
    margin: 0 5px;
  }
}
/***************************

layout/_page-title.scss

***************************/
.title_01 {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
@media (min-width: 751px) {
  .title_01 {
    font-size: 48px;
    line-height: 1.6;
  }
}
.title_01 .en {
  display: block;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #58B545;
}
.title_01.color-w {
  color: #fff;
}
.title_01.color-w .en {
  color: #fff;
}

.title_02 {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.08em;
  display: grid;
  gap: 20px;
}
@media (min-width: 751px) {
  .title_02 {
    font-size: 44px;
    gap: 40px;
  }
}
.title_02 .en {
  font-size: 18px;
  display: block;
  color: #58B545;
  font-weight: bold;
}

.title_03 {
  font-size: 20px;
  background-color: #EEF2F3;
  border-radius: 3px;
  padding: 15px 30px;
  margin-top: 50px;
  margin-bottom: 30px;
  position: relative;
}
@media (min-width: 751px) {
  .title_03 {
    margin-top: 60px;
  }
}
@media (min-width: 1025px) {
  .title_03 {
    font-size: 26px;
    margin-top: 80px;
    margin-bottom: 40px;
  }
}
.title_03::after {
  content: "";
  width: 2px;
  height: 26px;
  background-color: #111111;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.title_04 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}
@media (min-width: 1025px) {
  .title_04 {
    font-size: 36px;
  }
}

.title_05 {
  font-size: 26px;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media (min-width: 751px) {
  .title_05 {
    font-size: 36px;
    margin-bottom: 60px;
  }
}
@media (min-width: 1025px) {
  .title_05 {
    font-size: 40px;
    margin-bottom: 80px;
  }
}
.title_05::after {
  content: "";
  width: 32px;
  height: 4px;
  display: block;
  background: linear-gradient(-90deg, #E8DF07 0%, #8EBD21 50%, #59A831 100%);
  margin-top: 10px;
}
@media (min-width: 1025px) {
  .title_05::after {
    margin-top: 20px;
  }
}

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

layout/_pager.scss

***************************/
/******** pager ********/
.wp-pagenavi_container {
  margin-top: 100px;
}

.previouspostslink {
  position: relative;
}
.previouspostslink::after {
  content: "";
  background-image: url(img/common/arrow-b.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.nextpostslink {
  position: relative;
}
.nextpostslink::after {
  content: "";
  background-image: url(img/common/arrow-b.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: scale(-1, 1);
}

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

.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 16px;
  border-radius: 100%;
  border: 1px solid #EBEBEB;
  background: #EBEBEB;
  color: #5D5D5D;
  margin: 3px;
  width: 40px;
  height: 40px;
  line-height: 2.5;
  display: block;
  text-decoration: none;
  padding: 0;
}
@media (min-width: 751px) {
  .wp-pagenavi a,
.wp-pagenavi span {
    font-size: 18px;
    width: 60px;
    height: 60px;
    line-height: 3.4;
  }
}

.wp-pagenavi .current {
  border: 0;
  color: var(--white);
  background: #58B545;
  font-weight: normal;
}

.wp-pagenavi a:hover {
  border: 1px solid var(--black);
}

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

layout/_swiper.scss

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

object/component/_box.scss

***************************/
[class*=container_] {
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}

.container_l {
  width: min(100%, 1320px);
}

.container_m {
  width: min(100%, 1230px);
}

.container_s {
  width: min(100%, 1130px);
}

.list_type01__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 20px;
}
@media (min-width: 751px) {
  .list_type01__list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px 20px;
  }
}
@media (min-width: 1025px) {
  .list_type01__list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 50px 40px;
  }
}

@media (min-width: 1025px) {
  .works .list_type01__list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px 40px;
  }
}

@media (min-width: 1025px) {
  .business .list_type01__list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px 40px;
  }
}

.list_type01__link .img_box {
  z-index: -1;
  transition: all 0.5s;
}
.list_type01__link:hover {
  opacity: 1;
}
.list_type01__link:hover .img_box {
  overflow: hidden;
  border-radius: 7px;
  position: relative;
}
.list_type01__link:hover .img_box img {
  transform: scale(1.1);
  transition: all 0.5s;
}
.list_type01__link:hover .list_type01__img::after {
  -webkit-animation: slideIn2 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: slideIn2 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.img_box {
  overflow: hidden;
}

.list_type01__img {
  position: relative;
}
.list_type01__img img {
  transition: all 0.5s;
  width: 100%;
}
.list_type01__img::after {
  content: "";
  background-image: url(img/common/arrow-w.png);
  width: 10px;
  height: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  bottom: 0px;
  right: 30px;
  z-index: 2;
}
.list_type01__img::before {
  content: "";
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  background-color: #58B545;
  border-radius: 50%;
  position: absolute;
  bottom: -15px;
  right: 15px;
  transition: all 0.5s;
  z-index: 1;
}

.category_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  margin: 20px 0 20px;
}

.category_item {
  background-color: #EEF2F3;
  border: 1px solid #DDDDDD;
  border-radius: 42px;
  padding: 5px 10px;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list_type01__title {
  font-size: 16px;
  margin-bottom: 5px;
  letter-spacing: 0.08em;
}
@media (min-width: 751px) {
  .list_type01__title {
    font-size: 18px;
  }
}
@media (min-width: 1025px) {
  .list_type01__title {
    font-size: 16px;
  }
}

.list_type01__text {
  font-size: 13px;
  font-weight: 500;
}

.list_type02 {
  background-color: #fff;
  border: 1px solid #DDDDDD;
  border-radius: 16px;
  padding: 40px 30px;
}
@media (min-width: 751px) {
  .list_type02 {
    padding: 50px 60px;
  }
}
@media (min-width: 1025px) {
  .list_type02 {
    width: 100%;
    max-width: 750px;
  }
}

.list_type02 {
  counter-reset: number 0;
}

.list_type02__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.list_type02__item + .list_type02__item {
  border-top: 1px solid #DDDDDD;
  margin-top: 20px;
  padding-top: 20px;
}
@media (min-width: 1025px) {
  .list_type02__item + .list_type02__item {
    margin-top: 40px;
    padding-top: 40px;
  }
}

.list_type02__box {
  width: 145px;
  position: relative;
}
@media (min-width: 751px) {
  .list_type02__box {
    width: auto;
  }
}
@media (min-width: 1025px) {
  .list_type02__box {
    padding-left: 40px;
  }
}
.list_type02__box:before {
  counter-increment: number 1;
  content: "0" counter(number);
  font-family: "Albert Sans", serif;
  color: #58B545;
  font-size: 17px;
  border-bottom: 2px solid #58B545;
  font-weight: bold;
}
@media (min-width: 1025px) {
  .list_type02__box:before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
  }
}

.list_type02__title {
  font-size: 22px;
  margin-top: 20px;
}
@media (min-width: 1025px) {
  .list_type02__title {
    font-size: 26px;
    margin-top: 0;
  }
}

.list_type02__text {
  font-size: 13px;
}
@media (min-width: 1025px) {
  .list_type02__text {
    font-size: 14px;
  }
}

.list_type02__link {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: bold;
  position: relative;
}
.list_type02__link::before {
  content: "";
  width: 40px;
  height: 40px;
  display: block;
  background-color: #58B545;
  border-radius: 50%;
}
.list_type02__link img {
  position: absolute;
  left: 14px;
  top: 15px;
  width: 12px;
}
.list_type02__link:hover {
  opacity: 1;
}
.list_type02__link:hover img {
  -webkit-animation: slideIn2 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: slideIn2 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.disc-green {
  font-size: 16px;
  gap: 10px;
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: 10px 1fr;
  align-items: baseline;
}
.disc-green::before {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  background-color: #58B545;
  border-radius: 50%;
}

.sec_last {
  margin-bottom: 100px;
}
@media (min-width: 751px) {
  .sec_last {
    margin-bottom: 150px;
  }
}
@media (min-width: 1025px) {
  .sec_last {
    margin-bottom: 200px;
  }
}

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

object/component/_form.scss

***************************/
.btn_01 {
  background-color: #222222;
  border-radius: 42px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.08em;
  font-weight: bold;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (min-width: 751px) {
  .btn_01 {
    gap: 60px;
  }
}
.btn_01::after {
  content: "";
  background-image: url(img/common/arrow-g.png);
  width: 12px;
  height: 12px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
}
.btn_01:hover {
  opacity: 1;
  background-color: #58B545;
  color: #fff;
}
.btn_01:hover::after {
  -webkit-animation: slideIn2 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: slideIn2 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.btn_01:hover::after {
  background-image: url(img/common/arrow-w.png);
}
.btn_01.is_blank::after {
  content: "\f08e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #58B545;
  background-image: none;
  width: auto;
  height: auto;
}
.btn_01.is_blank:hover::after {
  color: #fff;
  -webkit-animation: none;
          animation: none;
  transform: none;
  transition: unset;
}

.btn_02 {
  position: relative;
  z-index: 0;
  color: #fff;
  padding: 25px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  text-decoration: none;
  border-radius: 42px;
  overflow: hidden;
  transition: 0.5s;
  letter-spacing: 0.08em;
  font-size: 20px;
}
.btn_02:hover {
  opacity: 1;
  color: #fff;
}
.btn_02:hover img {
  -webkit-animation: slideIn2 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: slideIn2 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.btn_02 img {
  margin-left: 60px;
}

.btn_03 {
  background-color: #fff;
  border-radius: 42px;
  color: #111;
  font-size: 16px;
  letter-spacing: 0.08em;
  font-weight: bold;
  padding: 10px 30px 10px 12px;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 400px;
}
@media (min-width: 751px) {
  .btn_03 {
    font-size: 20px;
  }
}
.btn_03::before {
  content: "";
  background-image: url(img/common/btn-green.png);
  width: 92px;
  height: 62px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.5s;
}
.btn_03:hover {
  opacity: 1;
  color: #fff;
  background: linear-gradient(90deg, #59A831 0%, #8EBD21 50%, #E8DF07 100%);
}
.btn_03:hover::before {
  background-image: url(img/common/btn-white.png);
}

.btn04 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.08em;
  position: relative;
  width: 250px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .btn04 {
    font-size: 16px;
  }
}
.btn04::before {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #58B545;
  display: block;
}
.btn04::after {
  content: "";
  background-image: url(img/common/arrow-w.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  top: 15px;
  left: 15px;
  transform: rotate(180deg);
}
.btn04:hover {
  opacity: 1;
}
.btn04:hover::after {
  -webkit-animation: slideInBack 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: slideInBack 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@-webkit-keyframes slideIn2 {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  49% {
    transform: translateX(24px);
    opacity: 0;
  }
  50% {
    transform: translateX(-24px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideIn2 {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  49% {
    transform: translateX(24px);
    opacity: 0;
  }
  50% {
    transform: translateX(-24px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes slideInBack {
  0% {
    transform: rotate(180deg) translateX(0);
    opacity: 1;
  }
  49% {
    transform: rotate(180deg) translateX(25px);
    opacity: 0;
  }
  50% {
    transform: rotate(180deg) translateX(-25px);
    opacity: 0;
  }
  100% {
    transform: rotate(180deg) translateX(0);
    opacity: 1;
  }
}
@keyframes slideInBack {
  0% {
    transform: rotate(180deg) translateX(0);
    opacity: 1;
  }
  49% {
    transform: rotate(180deg) translateX(25px);
    opacity: 0;
  }
  50% {
    transform: rotate(180deg) translateX(-25px);
    opacity: 0;
  }
  100% {
    transform: rotate(180deg) translateX(0);
    opacity: 1;
  }
}
.gradation-green {
  position: relative;
  z-index: 0;
}
.gradation-green:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  transition: 0.5s;
  background: linear-gradient(90deg, #59A831 0%, #8EBD21 50%, #E8DF07 100%);
}
.gradation-green:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  left: 0;
  background: linear-gradient(90deg, #E8DF07 0%, #8EBD21 50%, #59A831 100%);
}
.gradation-green:hover:before {
  opacity: 0;
}

.link_green {
  color: #58B545;
  border-bottom: 1px solid #58B545;
}
.link_green:hover {
  border-bottom: 1px solid #111;
}

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

object/component/_form.scss

***************************/
/******** form input ********/
table {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
  width: 100%;
}

input[type=date],
input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=password],
input[type=number],
select {
  font-size: 16px;
  background: #F8F8F8;
  border: 1px solid #DDDDDD;
  padding: 30px;
  width: 100%;
  border-radius: 9px;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=date]:focus,
select:focus {
  outline: none;
  border-color: #111;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.select_wrap:has(> select:focus)::before {
  border: 1px solid #111;
  border-left: none;
}

textarea {
  background: #F8F8F8;
  border: 1px solid #DDDDDD;
  padding: 15px;
  resize: vertical;
  width: 100%;
  border-radius: 9px;
  font-size: 26px;
  height: 420px;
}
@media (max-width: 600px) {
  textarea {
    padding: 15px;
    font-size: 16px;
  }
}
@media (min-width: 1025px) {
  textarea {
    padding: 15px;
    font-size: 16px;
    height: 200px;
  }
}

textarea:focus {
  outline: none;
  border-color: #111;
}

input[type=checkbox],
input[type=radio] {
  background: var(--white);
  cursor: pointer;
}

textarea::-moz-placeholder, input::-moz-placeholder {
  color: #BEBEBE;
  font-size: 16px;
}

textarea::placeholder,
input::placeholder {
  color: #BEBEBE;
  font-size: 16px;
}

/* 必須項目*/
.span-required {
  font-size: 14px;
  background-color: #FF9100;
  color: #fff;
  border-radius: 5px;
  max-width: 60px;
  width: 100%;
  padding: 10px 0;
  line-height: 1;
  display: inline-block;
  text-align: center;
  margin-right: 15px;
}
@media (min-width: 751px) {
  .span-required {
    font-size: 15px;
  }
}
@media (min-width: 1025px) {
  .span-required {
    font-size: 14px;
  }
}

/* ラジオボタン*/
input[type=radio] {
  display: none;
}

.checkbox_dd .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1025px) {
  .checkbox_dd .wpcf7-radio {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.checkbox_dd .wpcf7-radio .wpcf7-list-item-label {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}
@media (min-width: 751px) {
  .checkbox_dd .wpcf7-radio .wpcf7-list-item-label {
    font-size: 28px;
    gap: 15px;
  }
}
@media (min-width: 1025px) {
  .checkbox_dd .wpcf7-radio .wpcf7-list-item-label {
    font-size: 16px;
  }
}
.checkbox_dd .wpcf7-radio .wpcf7-list-item-label::before {
  background: #fff;
  border: 2px solid #CCCCCC;
  content: "";
  display: block;
  border-radius: 50%;
  left: 5px;
  top: 50%;
  width: 30px;
  height: 30px;
}
.checkbox_dd .wpcf7-radio .wpcf7-list-item-label::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #111111;
  display: block;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 6.6666666667px;
}
.checkbox_dd .wpcf7-list-item {
  width: 100%;
  background: #F8F8F8;
  border: 1px solid #C6C6C6;
  padding: 20px;
  border-radius: 5px;
}
@media (min-width: 1025px) {
  .checkbox_dd .wpcf7-list-item {
    max-width: 320px;
  }
}
.checkbox_dd input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.checkbox_dd input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.contact_border {
  border-top: 1px solid #DDDDDD;
}

.contact_unit {
  padding: 30px 0;
  display: grid;
  gap: 20px;
}

.contact_dt {
  font-size: 18px;
  letter-spacing: 0.04em;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.contact-form__check {
  margin-top: 40px;
}

.contact-form_wrap {
  margin-top: 70px;
}
.contact-form_wrap .btn_01 {
  padding: 0;
  width: 100%;
  max-width: 438px;
  margin: 0 auto;
  cursor: pointer;
  padding: 0 30px;
  transition: all 0.5s;
}
.contact-form_wrap .btn_01::after {
  width: 12px;
}
.contact-form_wrap input[type=submit] {
  color: #fff;
  font-weight: bold;
  padding: 20px 0;
  width: 100%;
  cursor: pointer;
  transition: all 0.5s;
}
@media (min-width: 751px) {
  .contact-form_wrap input[type=submit] {
    font-size: 22px;
    padding: 30px 0;
  }
}

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

object/component/_mv.scss‗トップページ

***************************/
.mv {
  position: relative;
}
.mv .header__img {
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  margin-left: 36px;
  z-index: 3;
}
@media screen and (min-width: 1024px) {
  .mv .header__img {
    top: -130px;
    margin-left: 50px;
  }
}
@media screen and (min-width: 1040px) {
  .mv .header__img {
    width: 770px;
    top: -143px;
  }
  .mv .header__img img {
    width: 100%;
  }
}

.mv_text {
  writing-mode: vertical-rl;
  padding: 0 8px;
  font-size: 12px;
}
@media (min-width: 751px) {
  .mv_text {
    font-size: 12px;
  }
}
@media (min-width: 1025px) {
  .mv_text {
    font-size: 14px;
    padding: 0 15px;
  }
}

.mv_title {
  position: absolute;
  bottom: 15px;
  left: 68px;
  z-index: 11;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
@media screen and (min-width: 600px) {
  .mv_title {
    font-size: 32px;
  }
}
@media (min-width: 751px) {
  .mv_title {
    font-size: 45px;
    bottom: 30px;
    left: 90px;
  }
}
@media (min-width: 1025px) {
  .mv_title {
    font-size: 64px;
  }
}
@media screen and (min-width: 1300px) {
  .mv_title {
    bottom: 60px;
  }
}

.swiper02 {
  border-radius: 0 0 0 50px;
  overflow: hidden;
  position: relative;
}
.swiper02::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.25));
  display: block;
  z-index: 6;
  border-radius: 0 0 0 50px;
}

.mv_container .swiper-slide {
  overflow: hidden;
  height: 240px;
}
@media (min-width: 390px) {
  .mv_container .swiper-slide {
    height: 250px;
  }
}
@media (min-width: 400px) {
  .mv_container .swiper-slide {
    height: 270px;
  }
}
@media (min-width: 425px) {
  .mv_container .swiper-slide {
    height: 280px;
  }
}
@media (min-width: 470px) {
  .mv_container .swiper-slide {
    height: 300px;
  }
}
@media (min-width: 500px) {
  .mv_container .swiper-slide {
    height: 320px;
  }
}
@media (min-width: 520px) {
  .mv_container .swiper-slide {
    height: 350px;
  }
}
@media (min-width: 600px) {
  .mv_container .swiper-slide {
    height: 380px;
  }
}
@media (min-width: 630px) {
  .mv_container .swiper-slide {
    height: 400px;
  }
}
@media (min-width: 660px) {
  .mv_container .swiper-slide {
    height: 450px;
  }
}
@media (min-width: 763px) {
  .mv_container .swiper-slide {
    height: 500px;
  }
}
@media (min-width: 1024px) {
  .mv_container .swiper-slide {
    height: 500px;
  }
}
@media (min-width: 1040px) {
  .mv_container .swiper-slide {
    height: 680px;
  }
}

.top_slide {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-animation: bg_slide-sp 20s linear infinite;
          animation: bg_slide-sp 20s linear infinite;
}
.top_slide.item01 {
  background-image: url(img/top/mv_01.jpg);
}
.top_slide.item02 {
  background-image: url(img/top/mv_02.jpg);
}
@media (min-width: 751px) {
  .top_slide {
    -webkit-animation: bg_slide-tab 20s linear infinite;
            animation: bg_slide-tab 20s linear infinite;
  }
}
@media screen and (min-width: 1024px) {
  .top_slide {
    -webkit-animation: bg_slide 20s linear infinite;
            animation: bg_slide 20s linear infinite;
  }
}

@-webkit-keyframes bg_slide-sp {
  0% {
    background-position: -100px 0;
  }
  100% {
    background-position: -200px 0;
  }
}

@keyframes bg_slide-sp {
  0% {
    background-position: -100px 0;
  }
  100% {
    background-position: -200px 0;
  }
}
@-webkit-keyframes bg_slide-tab {
  0% {
    background-position: -100px 0;
  }
  100% {
    background-position: -300px 0;
  }
}
@keyframes bg_slide-tab {
  0% {
    background-position: -100px 0;
  }
  100% {
    background-position: -300px 0;
  }
}
@-webkit-keyframes bg_slide {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -200px 0;
  }
}
@keyframes bg_slide {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -200px 0;
  }
}
.swiper_mv {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 0 50px;
  margin-top: 0;
  z-index: -1;
  width: 100%;
}
@media screen and (min-width: 375px) {
  .swiper_mv {
    margin-top: 13.9%;
  }
}
@media screen and (min-width: 500px) {
  .swiper_mv {
    margin-top: 14.9%;
  }
}
@media screen and (min-width: 818px) {
  .swiper_mv {
    margin-top: 119px;
  }
}
@media screen and (min-width: 1024px) {
  .swiper_mv {
    margin-top: -10px;
  }
}
@media screen and (min-width: 1040px) {
  .swiper_mv {
    margin-top: 2px;
  }
}

.mv_box {
  width: 95%;
}
@media screen and (min-width: 1040px) {
  .mv_box {
    width: 85%;
  }
}
@media screen and (min-width: 1400px) {
  .mv_box {
    width: 90%;
  }
}

.swiper-pagination {
  position: absolute;
  text-align: left;
  top: auto !important;
  right: auto !important;
  bottom: -40px !important;
  left: 60px !important;
  width: 300px !important;
}
@media screen and (min-width: 768px) {
  .swiper-pagination {
    bottom: -80px !important;
    left: -130px !important;
    transform: rotate(90deg);
  }
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet:not(:last-child),
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:not(:last-child) {
  margin-right: 0px;
}

.swiper-pagination-bullet {
  width: auto;
  height: auto;
  line-height: 0;
  background: none;
  position: relative;
}
.swiper-pagination-bullet::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 5px;
  background-color: #DDDDDD;
}
.swiper-pagination-bullet svg {
  transform: rotate(-90deg);
}
.swiper-pagination-bullet svg circle {
  fill: transparent;
  stroke: #58B545;
  stroke-width: 1;
  stroke-dasharray: 0 57;
}
.swiper-pagination-bullet-active::before {
  background: #58B545;
}
.swiper-pagination-bullet-active svg circle {
  -webkit-animation: circle 7s forwards;
          animation: circle 7s forwards;
}

@-webkit-keyframes circle {
  0% {
    stroke-dasharray: 0 57;
  }
  100% {
    stroke-dasharray: 57 57;
  }
}

@keyframes circle {
  0% {
    stroke-dasharray: 0 57;
  }
  100% {
    stroke-dasharray: 57 57;
  }
}
.Thumbnail_box .swiperThumbnail {
  position: absolute;
  top: 30px;
  left: auto;
  z-index: 1;
  width: 32%;
  right: 0;
}
@media screen and (min-width: 380px) {
  .Thumbnail_box .swiperThumbnail {
    top: 32px;
  }
}
@media screen and (min-width: 440px) {
  .Thumbnail_box .swiperThumbnail {
    top: 55px;
  }
}
@media screen and (min-width: 510px) {
  .Thumbnail_box .swiperThumbnail {
    top: 66px;
  }
}
@media screen and (min-width: 580px) {
  .Thumbnail_box .swiperThumbnail {
    top: 79px;
  }
}
@media screen and (min-width: 723px) {
  .Thumbnail_box .swiperThumbnail {
    top: 100px;
  }
}
@media screen and (min-width: 800px) {
  .Thumbnail_box .swiperThumbnail {
    width: 490px;
    top: 118px;
    right: -216px;
  }
}
@media screen and (min-width: 1024px) {
  .Thumbnail_box .swiperThumbnail {
    width: 490px;
    top: -10px;
  }
}
@media screen and (min-width: 1040px) {
  .Thumbnail_box .swiperThumbnail {
    width: 660px;
    top: 0;
  }
}

.swiperThumbnail {
  border-radius: 50% 0 0 50%;
  margin: 0;
  padding: 0;
}

.mv_container {
  position: relative;
}

.mv_content {
  position: relative;
  width: 100%;
}
.mv_content::after {
  content: "";
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.25));
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 6;
  border-radius: 0 0 0 60px;
}
@media (min-width: 751px) {
  .mv_content::after {
    border-radius: 0 0 0 120px;
  }
}
.mv_content .container_l {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 7;
  padding-left: 20px;
}
@media (min-width: 751px) {
  .mv_content .container_l {
    padding-left: 30px;
  }
}
@media (min-width: 1025px) {
  .mv_content .container_l {
    padding-left: 50px;
  }
}

.page_title {
  font-size: 30px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  color: #fff;
}
.page_title .en {
  font-size: 16px;
  letter-spacing: 0.08em;
}
@media (min-width: 1025px) {
  .page_title {
    font-size: 48px;
  }
  .page_title .en {
    font-size: 18px;
  }
}

@media (max-width: 400px) {
  .privacy .page_title {
    font-size: 27px;
  }
}

.mv_img {
  margin-top: 2px;
  position: relative;
  z-index: 4;
}
@media (min-width: 1024px) {
  .mv_img {
    margin-top: -10px;
  }
}
.mv_img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 40vh;
  width: 100%;
  border-radius: 0 0 0 60px;
}
@media (min-width: 751px) {
  .mv_img img {
    border-radius: 0 0 0 120px;
  }
}
@media (min-width: 390px) {
  .mv_img img {
    height: 30vh;
  }
}
@media (min-width: 960px) {
  .mv_img img {
    height: 39vh;
  }
}

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

object/component/_top.scss‗トップページ

***************************/
.recruit_banner {
  z-index: 10;
  margin-top: 60px;
  position: relative;
}
@media screen and (min-width: 1260px) {
  .recruit_banner {
    position: absolute;
    bottom: 80px;
    right: 0;
    margin-top: 0;
  }
}
.recruit_banner .flexbox {
  box-shadow: 3px 3px 16px 0px rgba(0, 0, 0, 0.15);
  border-radius: 7px;
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
}
.recruit_banner .flexbox img {
  border-radius: 0 7px 7px 0;
}
.recruit_banner p {
  font-size: 17px;
  padding: 0 15px 0 7px;
}
.recruit_banner .en {
  writing-mode: vertical-rl;
  font-size: 10px;
  color: #58B545;
  letter-spacing: 0.08em;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.recruit_banner .en::after {
  content: "";
  background-image: url(img/top/recruit_icon.png);
  width: 18px;
  height: 16px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
}

.top_about {
  padding: 85px 0 125px;
}
@media (min-width: 751px) {
  .top_about {
    padding: 230px 0 125px;
  }
}
.top_about .container_l {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1025px) {
  .top_about .container_l {
    flex-direction: row-reverse;
    gap: 100px;
  }
}
.top_about .title_02 {
  font-weight: 600;
}
@media (min-width: 751px) {
  .top_about .title_02 {
    max-width: 463px;
    width: 100%;
  }
  .top_about .title_02 br {
    display: none;
  }
}
@media (min-width: 1025px) {
  .top_about .title_02 br {
    display: block;
  }
}
.top_about .about_box {
  margin-top: 30px;
}
@media (min-width: 751px) {
  .top_about .about_box {
    margin-top: 0;
  }
}
@media (min-width: 1025px) {
  .top_about .about_box {
    width: 630px;
  }
}
.top_about .about_box p {
  line-height: 2;
}
.top_about .about_box:first-of-type p {
  margin-top: 30px;
}
.top_about .about_box:last-of-type p {
  margin-bottom: 40px;
}
@media (min-width: 751px) {
  .top_about .about_box:last-of-type p {
    margin-bottom: 40px;
  }
}
.top_about .about_box .btn_01 {
  width: 298px;
}

.top_business {
  position: relative;
}
.top_business::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  content: "";
  background-color: #EEF2F3;
  border-radius: 0 16px 16px 0;
  display: block;
  width: 80%;
  height: 100%;
  z-index: -1;
}
@media (min-width: 1025px) {
  .top_business::after {
    width: 50%;
  }
}
.top_business .btn_01 {
  width: 230px;
  margin-top: 30px;
}
@media (min-width: 1025px) {
  .top_business .btn_01 {
    margin-top: -80px;
  }
}

.business_swiper {
  position: relative;
}
.business_swiper .swiper03 {
  width: 100%;
  overflow: hidden;
  border-radius: 0 16px 16px 0;
}
.business_swiper .container_l {
  position: relative;
}
.business_swiper .flexbox {
  margin-left: calc(50% - 50vw);
  margin-right: 7%;
}
@media screen and (min-width: 1470px) {
  .business_swiper .flexbox {
    margin-right: 0;
  }
}
.business_swiper .swiper-slide img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 286px;
}
@media screen and (min-width: 1470px) {
  .business_swiper .swiper-slide img {
    width: 100%;
    height: 420px;
  }
}
.business_swiper .img_bg {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  left: -20px;
  z-index: 2;
  width: 220px;
}
@media screen and (min-width: 1470px) {
  .business_swiper .img_bg {
    top: 42%;
    transform: translateY(-50%);
    width: 330px;
    left: 0;
  }
}
.business_swiper .img_sakagura {
  text-align: right;
  margin-right: 7%;
  margin-top: -60px;
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 1470px) {
  .business_swiper .img_sakagura {
    margin-right: 0;
  }
}
.business_swiper .business__text {
  writing-mode: vertical-rl;
  display: inline-block;
  margin: auto;
  margin-right: 3%;
  z-index: 2;
  font-size: 29px;
  line-height: 1;
  color: #58B545;
  position: absolute;
  top: 0;
  right: 20px;
}
@media screen and (min-width: 1470px) {
  .business_swiper .business__text {
    font-size: 46px;
    right: 20px;
    margin-right: -5%;
  }
}

.top_business {
  padding: 90px 0 100px;
}
@media (min-width: 1025px) {
  .top_business {
    padding: 130px 0 160px;
  }
}

.top_business_box {
  padding-top: 80px;
}
@media (min-width: 1025px) {
  .top_business_box {
    padding-top: 180px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
}
.top_business_box .top_business_text {
  margin: 40px 0 20px;
}
@media (min-width: 751px) {
  .top_business_box .top_business_text {
    margin-top: 30px;
  }
}
@media (min-width: 1025px) {
  .top_business_box .top_business_text {
    width: 450px;
  }
}

.top_works {
  padding: 100px 0 125px;
}
@media (min-width: 751px) {
  .top_works {
    padding: 160px 0;
  }
}

.works_textbox {
  margin-bottom: 40px;
  gap: 10px;
}

.top_works__linkbox {
  width: 280px;
  margin: 0 auto;
  margin-top: 60px;
}

.top_recruit {
  background-color: #EEF2F3;
  padding-top: 170px;
  padding-bottom: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}
@media screen and (min-width: 1100px) {
  .top_recruit {
    padding-top: 170px;
    padding-bottom: 250px;
  }
}
@media screen and (min-width: 1680px) {
  .top_recruit {
    padding-top: 170px;
    padding-bottom: 210px;
  }
}
.top_recruit .title_02 {
  line-height: 1.7;
}
.top_recruit::after {
  content: "";
  background-image: url(img/top/recruit01.png);
  width: 200px;
  height: 180px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 60px;
  left: -20px;
  z-index: 1;
}
@media (min-width: 751px) {
  .top_recruit::after {
    width: 370px;
    height: 333px;
    top: 60px;
    left: -20px;
  }
}
.top_recruit .container_l {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
@media (min-width: 751px) {
  .top_recruit .container_l {
    gap: 120px;
  }
}
@media (min-width: 1025px) {
  .top_recruit .container_l {
    flex-direction: row;
    justify-content: space-between;
  }
}
.top_recruit .top_recruit__box {
  position: relative;
  z-index: 2;
}
@media (min-width: 1025px) {
  .top_recruit .top_recruit__box {
    width: 100%;
    max-width: 480px;
  }
}
.top_recruit .top_recruit__box .title_02 {
  font-weight: 600;
}
.top_recruit p {
  font-size: 18px;
  margin-top: 26px;
  margin-bottom: 40px;
}
@media (min-width: 1025px) {
  .top_recruit p {
    font-size: 20px;
    margin-top: 36px;
    margin-bottom: 50px;
  }
}
.top_recruit .btn_02 {
  width: 100%;
  max-width: 270px;
}
.top_recruit .recruit__img {
  position: relative;
}
.top_recruit .recruit__img img {
  border-radius: 15px;
  position: relative;
  z-index: 1;
}
.top_recruit .recruit__img::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #59A831 0%, #8EBD21 50%, #E8DF07 100%);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 15px;
  transform: rotate(10deg);
  display: block;
}
.top_recruit .img_box02 {
  position: relative;
}
.top_recruit .img_box02 .img_te {
  position: absolute;
  bottom: 0;
  right: 20px;
  z-index: 3;
}

.recruit__img-left {
  position: absolute;
  bottom: 90px;
  left: 0;
}
.recruit__img-right img{
  border-radius: 15px 0 0 15px;
}
.recruit__img-left img{
  border-radius: 0 15px 15px 0;
}
@media screen and (min-width: 540px) {
  .recruit__img-left {
    width: auto;
    bottom: 90px;
    left: 0;
  }
}
@media screen and (min-width: 1025px) {
  .recruit__img-left {
    bottom: 90px;
  }
}
@media screen and (min-width: 1270px) {
  .recruit__img-left {
    bottom: 90px;
  }
}
.recruit__img-left img {
  width: 150px;
}
@media screen and (min-width: 540px) {
  .recruit__img-left img {
    width: 180px;
  }
}
@media screen and (min-width: 1680px) {
  .recruit__img-left img {
    width: auto;
  }
}

.recruit__img-right {
  position: absolute;
  top: 40px;
  right: -20px;
}
@media screen and (min-width: 540px) {
  .recruit__img-right {
    width: auto;
    top: 50px;
    right: -20px;
  }
}
@media screen and (min-width: 1025px) {
  .recruit__img-right {
    top: 70px;
  }
}
@media screen and (min-width: 1270px) {
  .recruit__img-right {
    top: 60px;
  }
}
.recruit__img-right img {
  width: 180px;
}
@media screen and (min-width: 540px) {
  .recruit__img-right img {
    width: 250px;
  }
}
@media screen and (min-width: 1025px) {
  .recruit__img-right img {
    width: auto;
  }
}

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

object/component/_recruit.scss‗採用情報

***************************/
.page-anchor_list {
  gap: 40px;
  margin-bottom: 100px;
}
@media (min-width: 1025px) {
  .page-anchor_list {
    margin-bottom: 150px;
  }
}
.page-anchor_list li {
  border-bottom: 1px solid #DDDDDD;
  padding-bottom: 12px;
  width: 100%;
  max-width: 320px;
}
.page-anchor_list a {
  font-size: 16px;
  font-weight: bold;
}
.page-anchor_list a img {
  transform: rotate(90deg);
  margin-right: 15px;
}

.sec_recruit02 {
  margin-bottom: 100px;
}
@media (min-width: 751px) {
  .sec_recruit02 {
    margin-bottom: 150px;
  }
}
@media (min-width: 1025px) {
  .sec_recruit02 {
    margin-bottom: 200px;
  }
}
.sec_recruit02 .recruit_content {
  flex-direction: column-reverse;
  justify-content: center;
  gap: 80px;
}
@media (min-width: 1025px) {
  .sec_recruit02 .recruit_content {
    gap: 100px;
    flex-direction: row;
  }
}
.sec_recruit02 img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.sec_recruit03 {
  margin-bottom: 100px;
}
@media (min-width: 751px) {
  .sec_recruit03 {
    margin-bottom: 150px;
  }
}
@media (min-width: 1025px) {
  .sec_recruit03 {
    margin-bottom: 150px;
  }
}

.recruit__list {
  display: grid;
  gap: 20px;
}
@media (min-width: 751px) {
  .recruit__list {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media (min-width: 1025px) {
  .recruit__list {
    gap: 40px;
  }
}

.recruit__item {
  border-radius: 48px 50px 48px 50px;
  background-color: #F8F8F8;
  border: 1px solid #DDDDDD;
  padding: 28px 30px;
}
@media (min-width: 751px) {
  .recruit__item {
    padding: 48px 50px;
  }
}

.recruit__title {
  color: #58B545;
  font-size: 21px;
  font-weight: bold;
  padding-bottom: 15px;
  border-bottom: 1px solid #DDDDDD;
}
@media (min-width: 751px) {
  .recruit__title {
    font-size: 26px;
  }
}

.list_type_dl {
  font-size: 16px;
  line-height: 2;
}

.list_type_dl .list_type_unit {
  display: grid;
  border: 1px solid #DDDDDD;
  border-bottom: none;
  font-size: 16px;
}
.list_type_dl .list_type_unit:first-child {
  border-radius: 7px 7px 0 0;
}
.list_type_dl .list_type_unit:last-child {
  border-bottom: 1px solid #DDDDDD;
  border-radius: 0 0 7px 7px;
}
@media (min-width: 751px) {
  .list_type_dl .list_type_unit {
    grid-template-columns: 250px 1fr;
  }
}
@media (min-width: 1025px) {
  .list_type_dl .list_type_unit {
    grid-template-columns: 320px 1fr;
  }
}
.list_type_dl .list_type_dt {
  background-color: #EEF2F3;
  padding: 25px 30px;
  font-weight: bold;
}
.list_type_dl .list_type_dd {
  padding: 25px 30px;
}

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

object/component/_works.scss‗事業案内

***************************/
.cat_container {
  background-color: #F8F8F8;
  border: 1px solid #DDDDDD;
  border-radius: 16px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 751px) {
  .cat_container {
    padding: 30px 20px;
    flex-direction: row;
    gap: 20px;
  }
}
@media (min-width: 1025px) {
  .cat_container {
    padding: 48px 50px;
  }
}

.cat_unit + .cat_unit {
  border-top: 1px solid #DDDDDD;
  margin-top: 30px;
  padding-top: 30px;
}
@media (min-width: 751px) {
  .cat_unit + .cat_unit {
    padding-top: 0;
    margin-top: 0;
    border-top: none;
    border-left: 1px solid #DDDDDD;
    padding-left: 40px;
  }
}

.cat_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.cat_item a {
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: normal;
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
@media (min-width: 1025px) {
  .cat_item a {
    padding: 12px 36px;
  }
}
.cat_item.current a {
  background-color: #EEF2F3;
  border: 1px solid #DDDDDD;
}
.cat_item:hover a {
  opacity: 1;
  background-color: #EEF2F3;
  border: 1px solid #DDDDDD;
}

.cat_reset {
  border: 1px solid #DDDDDD;
  background-color: #fff;
  border-radius: 25px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 194px;
  margin-top: 20px;
  font-size: 16px;
  position: relative;
}
.cat_reset::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #111111;
  margin-right: 8px;
}
.cat_reset .fa-xmark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 25px;
  color: #fff;
  font-size: 10px;
}

.works_textbox {
  margin: 60px 0 40px;
}
@media (min-width: 751px) {
  .works_textbox {
    margin: 60px 0 40px;
  }
}
@media (min-width: 1025px) {
  .works_textbox {
    margin: 100px 0 80px;
  }
}

.sec_works01 {
  margin-top: 80px;
}

.sec_works_detail .category_list {
  margin: 0;
}
.swiper03 .swiper-wrapper {
  transition-timing-function: linear;
}
.swiper_container {
  position: relative;
}
.swiper_container .swiper-wrapper {
  margin-top: 0;
}
.swiper_container .swiper-button-next {
  right: -10px;
  width: 44px;
  height: 44px;
}
@media (min-width: 751px) {
  .swiper_container .swiper-button-next {
    right: -15px;
    width: 64px;
    height: 64px;
  }
}
@media (min-width: 1025px) {
  .swiper_container .swiper-button-next {
    right: -20px;
  }
}
.swiper_container .swiper-button-next::after {
  content: "";
  background-image: url(img/common/btn01.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  display: block;
}
.swiper_container .swiper-button-prev {
  left: -10px;
  width: 44px;
  height: 44px;
}
@media (min-width: 751px) {
  .swiper_container .swiper-button-prev {
    left: -15px;
    width: 64px;
    height: 64px;
  }
}
@media (min-width: 1025px) {
  .swiper_container .swiper-button-prev {
    left: -20px;
  }
}
.swiper_container .swiper-button-prev::after {
  content: "";
  background-image: url(img/common/btn01.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  display: block;
  transform: scale(-1, 1);
}

.mySwiper-works .swiper-slide {
  text-align: center;
  background-color: #F8F8F8;
}

.mySwiper-works_thum {
  width: 100%;
}
.mySwiper-works_thum .swiper-wrapper {
  margin-top: 10px;
  justify-content: center;
}
@media (min-width: 1025px) {
  .mySwiper-works_thum .swiper-wrapper {
    margin-top: 30px;
  }
}
.mySwiper-works_thum .swiper-slide {
  opacity: 0.5;
}
.mySwiper-works_thum .swiper-slide {
  width: 13%;
}
.mySwiper-works_thum .swiper-slide img {
  width: 100%;
}
.mySwiper-works_thum .swiper-slide-thumb-active {
  opacity: 1;
}

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

object/component/_business.scss‗施工事例

***************************/
.business .page-anchor_box {
  margin-bottom: 100px;
}
@media (min-width: 1025px) {
  .business .page-anchor_box {
    margin-bottom: 180px;
  }
}

.business__figure {
  text-align: center;
}

.business__img img {
  border-radius: 7px;
}

.business__title {
  line-height: 1.2;
  font-size: 18px;
  margin: 20px 0 15px;
}
@media (min-width: 751px) {
  .business__title {
    font-size: 22px;
  }
}

.business__text {
  text-align: left;
  line-height: 2;
}

.sec_business01 {
  margin-bottom: 100px;
}
.sec_business01 .btn_01 {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  margin-top: 40px;
}
@media (min-width: 1025px) {
  .sec_business01 .btn_01 {
    margin-top: 80px;
  }
}
@media (min-width: 1025px) {
  .sec_business01 {
    margin-bottom: 220px;
  }
}

.sec_business02 .btn_01 {
  width: 100%;
  max-width: 470px;
  margin: 0 auto;
  margin-top: 80px;
}

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

object/component/_about.scss‗てらお建設について

***************************/
.sec_about01 p {
  width: 100%;
  max-width: 880px;
}

.sec_about02 {
  margin-top: 100px;
  margin-bottom: 100px;
}
@media (min-width: 751px) {
  .sec_about02 {
    margin-bottom: 150px;
    margin-top: 100px;
  }
}
@media (min-width: 1025px) {
  .sec_about02 {
    margin-bottom: 200px;
    margin-top: 150px;
  }
}

.about01__title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}
@media (min-width: 751px) {
  .about01__title {
    font-size: 34px;
  }
}
@media (min-width: 1025px) {
  .about01__title {
    font-size: 44px;
    margin-bottom: 50px;
  }
}
.about01__title .color-green {
  font-size: 36px;
  margin-right: 5px;
}
@media (min-width: 751px) {
  .about01__title .color-green {
    font-size: 46px;
  }
}
@media (min-width: 1025px) {
  .about01__title .color-green {
    font-size: 60px;
  }
}

.about01__item .container_m {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 1025px) {
  .about01__item .container_m {
    flex-direction: row;
    gap: 120px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.about01__textbox {
  width: 100%;
  padding-left: 30px;
}
@media (min-width: 1025px) {
  .about01__textbox {
    padding-left: 0;
    max-width: 480px;
  }
}

.about01__text {
  line-height: 2;
}

.about01__link .btn_01 {
  width: 100%;
  max-width: 264px;
}

.about01__img {
  display: grid;
  grid-template-columns: 30px 1fr;
  position: relative;
}
.about01__img .en {
  font-weight: bold;
  font-size: 14px;
  margin-top: 15px;
  writing-mode: vertical-rl;
  text-orientation: sideways;
}
.about01__img .en::before {
  content: "";
  width: 2px;
  height: 17px;
  background-color: #58B545;
  display: block;
  margin-left: 10px;
}

.about01__list .about01__item:nth-child(even) {
  background-color: #EEF2F3;
  border-radius: 0 16px 16px 0;
  margin-right: 20px;
}
@media (min-width: 1025px) {
  .about01__list .about01__item:nth-child(even) {
    margin-right: 60px;
  }
}
.about01__list .about01__item:nth-child(even) .container_m .about01__img {
  margin-right: auto;
}
.about01__list .about01__item:nth-child(even) .container_m .about01__textbox {
  margin-left: 0;
}
@media (min-width: 1025px) {
  .about01__list .about01__item:nth-child(even) .container_m {
    flex-direction: row-reverse;
  }
  .about01__list .about01__item:nth-child(even) .container_m .about01__textbox {
    margin-left: 60px;
  }
  .about01__list .about01__item:nth-child(even) .container_m .about01__img {
    margin-right: calc(50% - 45vw);
  }
}
.about01__list .about01__item:nth-child(odd) .container_m .about01__img {
  margin-left: auto;
}
@media (min-width: 1025px) {
  .about01__list .about01__item:nth-child(odd) .container_m .about01__img {
    margin-left: calc(50% - 45vw);
  }
}

.map {
  position: relative;
  width: 100%;
  height: 480px;
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 7px;
}

.sec_about03 .btn_01 {
  width: 100%;
  max-width: 248px;
  margin-left: auto;
  margin-top: 25px;
}

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

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

.flex-col-rev {
  flex-direction: column-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;
}

/* gap一覧 */
.gap-0 {
  gap: 0px;
}

.gap-5 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-25 {
  gap: 25px;
}

.gap-30 {
  gap: 30px;
}

.gap-35 {
  gap: 35px;
}

.gap-40 {
  gap: 40px;
}

.gap-45 {
  gap: 45px;
}

.gap-50 {
  gap: 50px;
}

.gap-55 {
  gap: 55px;
}

.gap-60 {
  gap: 60px;
}

.gap-65 {
  gap: 65px;
}

.gap-70 {
  gap: 70px;
}

.gap-75 {
  gap: 75px;
}

.gap-80 {
  gap: 80px;
}

.gap-85 {
  gap: 85px;
}

.gap-90 {
  gap: 90px;
}

.gap-95 {
  gap: 95px;
}

.gap-100 {
  gap: 100px;
}

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

object/utility/font.scss

***************************/
.en {
  font-family: "Albert Sans", serif;
}

.ja {
  font-family: "IBM Plex Sans JP", serif;
  font-weight: 500;
}

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

.lh-1 {
  line-height: 1;
}

.lh-15 {
  line-height: 1.5;
}

.lh-16 {
  line-height: 1.6;
}

.lh-17 {
  line-height: 1.7;
}

.lh-18 {
  line-height: 1.8;
}

.lh-19 {
  line-height: 1.9;
}

.lh-2 {
  line-height: 2;
}

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

object/utility/_text.scss

***************************/
/* fontsize */
.fz-0 {
  font-size: 0px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.align-top {
  vertical-align: top;
}

.color-w {
  color: #fff;
}

.color-b {
  color: #111111;
}

.color-green {
  color: #58B545;
}

.br_sp_none {
  display: none;
}
@media (min-width: 1025px) {
  .br_sp_none {
    display: block;
  }
}

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

object/utility/_spases.scss

***************************/
.m0-a {
  margin: 0 auto;
}

.m-0 {
  margin: 0;
}

/* maegin-top一覧 */
.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;
}

/* margin-bottom一覧 */
.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;
}

.p-0 {
  padding: 0;
}

/* padding-top一覧 */
.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;
}

/* padding-bottom一覧 */
.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;
}


.wpcf7-spinner{
  display: none;
}

.page .header__img.sub {
  z-index: -1;
}
/*# sourceMappingURL=style.css.map */