@charset "UTF-8";
/*!
  Theme Name: kizuna-hiroshima-theme2025 framework
  Author: Ori
  Author URI: http://shikiori.com/
  Description: kizuna-hiroshima-theme2025 framework
  Version: 2.0
  Date: 2025.12.25
  License: GNU General Public License v2 or later
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

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

foundation/base.scss

***************************/
:root {
  --white: #fff;
  --black: #463632;
  --green: #00B761;
  --l-green: #F2F8EB;
  --font: "Zen Maru Gothic", sans-serif, 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --zenmaru: "Zen Maru Gothic", sans-serif;
  --outfit: "Outfit", 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%;

  overflow-y: scroll;
}

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%;
  background: var(--l-green);
}

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

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

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

p {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.05em;
}

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

.main {
  overflow: hidden;
}

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

foundation/_animation.scss

***************************/
.mv_fade {
  -webkit-animation-name: fadeAnime;
  animation-name: fadeAnime;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

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

  to {
    opacity: 1;
  }
}

@keyframes fadeAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*==================================================
ふわっ
===================================*/
/* その場で */
.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;
}

@-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: 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 {
  background-color: var(--l-green);
  z-index: 999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

@media screen and (min-width: 1600px) {
  .header.-is-fixed {
    padding: 15px 20px 15px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  padding: 10px;
  transition: all 0.5s;
}

@media screen and (min-width: 1600px) {
  .header {
    padding: 30px 50px 30px;
  }
}

.header__logo {
  width: 100%;
  max-width: 180px;
  line-height: 2;
}

@media screen and (min-width: 361px) {
  .header__logo {
    max-width: 180px;
  }
}

@media screen and (min-width: 400px) {
  .header__logo {
    max-width: 280px;
  }
}

@media screen and (min-width: 1330px) {
  .header__logo {
    max-width: 386px;
  }
}

.header__nav_contact {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 105px;
  color: transparent;
  border: 2px solid var(--white);
  background: var(--green);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: block;
  z-index: 60;
}

.header__nav_contact span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media screen and (min-width: 1200px) {
  .header__nav_contact {
    position: static;
    top: auto;
    transform: translateY(0);
    color: var(--white);
    text-align: center;
    width: 100%;
    max-width: 174px;
    height: 44px;
    border-radius: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    padding: 5px;
    right: 15px;
  }

  .header__nav_contact a {
    transition: all 0.5s;
  }

  .header__nav_contact span {
    display: none;
  }

  .header__nav_contact:hover {
    opacity: 1;
    color: var(--green);
    border: 2px solid var(--green);
    background: var(--white);
  }

  .header__nav_contact:hover a {
    opacity: 1;
  }
}

.header__nav_contact a {
  width: 100%;
}

.header__nav_toggle {
  cursor: pointer;
  display: inline-block;
  background: none;
  border: none;
  outline: none;
  text-align: center;
  position: relative;
  z-index: 7;
  background: var(--green);
  border: 2px solid var(--white);
  border-radius: 22px;
  width: 100%;
  max-width: 86px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 8px;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.header__nav_toggle_bar {
  position: relative;
  margin: 3px 0;
  -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: 16px;
  height: 2px;
  background-color: var(--white);
  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: 16px;
}

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

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

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

.header__nav_toggle_title {
  font-size: 10px;
  font-size: 1rem;
  display: block;
  color: var(--white);
  white-space: nowrap;
}

.header__nav_toggle_title:before {
  content: "MENU";
  font-family: var(--outfit);
  font-size: 9px;
  font-weight: bold;
}

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

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

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

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

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

  .header__nav_list {
    gap: 0 15px;
  }
}

@media screen and (min-width: 1600px) {
  .header__nav_list {
    gap: 0 30px;
  }
}

.header__nav_wrap {
  width: 100%;
  max-width: calc(100% - 386px);
  gap: 20px;
  align-items: center;
}

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

.header__nav_item.is_parent {
  cursor: pointer;
}

.header__nav_item.is_parent i {
  color: var(--green);
  margin-left: 8px;
}

.header__nav_item a {
  font-weight: bold;
  font-size: 16px;
}

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

.header__sub_nav_link {
  display: grid;
  grid-template-columns: 6px 1fr;
  align-items: baseline;
  gap: 5px;
}

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

@media screen and (max-width: 1199px) {
  .header__nav_item.is_child {
    display: none;
  }

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

  .header__logo {
    z-index: 10;
  }

  .header__logo a {
    display: flex;
  }

  .header__nav {
    max-width: min(100%, 1200px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--l-green);
    z-index: 6;
    transition: 0.5s;
  }

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

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

  .header.-is-open .header__nav_list {
    opacity: 1;
    top: auto;
    transform: translateY(0);
    top: 70px;
    padding-bottom: 60px;
  }

  .header__nav_item a {
    display: block;
    opacity: 0;
    visibility: hidden;
    padding: 10px 15px;
    font-weight: bold;
  }

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

  .header__nav_item {
    border-bottom: 1px solid #9A8E8C;
  }

  .header.-is-open .header__nav_item.is_parent a {
    display: flex;
    justify-content: space-between;
  }

  .header.-is-open .header__nav_item.is_parent,
  .header.-is-open .header__nav_item.is_child {
    max-width: 100%;
  }

  .header.-is-open .header__nav_item.is_child {
    border-bottom: none;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .header.-is-open .header__nav_item.is_child.-is-open li a {
    font-size: 13px;
    padding: 5px 0;
    padding-left: 5px;
    display: grid;
  }

  .header.-is-open .header__nav_item.is_child.-is-open {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }
}

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

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

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

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

  .header__nav_item.is_child {
    position: absolute;
    top: 50px;
    left: -75px;
    background: var(--l-green);
    border-radius: 12px;
    width: 250px;
    padding: 20px;
    display: none;
    box-shadow: 4px 2px 20px rgba(50, 73, 48, 0.164);
  }
}

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

layout/_footer.scss

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

footer

////////////////////////*/
.footer {
  position: relative;
  background: linear-gradient(transparent 10%, #463632 10%);
}

@media screen and (min-width: 1500px) {
  .footer {
    margin-top: 155px;
  }
}

@media screen and (min-width: 1500px) {
  .footer {
    background: #463632;
  }

  .footer::after {
    content: "";
    background: var(--green);
    width: 30%;
    height: calc(100% + 155px);
    display: block;
    position: absolute;
    left: 0;
    top: -155px;
    border-radius: 0 20px 0 0;
  }
}

.footer::before {
  content: "";
  width: 100%;
  height: calc(100% + 155px);
  background: #F2F8EB;
  position: absolute;
  top: -155px;
  left: 0;
  display: block;
  z-index: -1;
}

.footer.home::before {
  background: #E9F2DF;
}

.footer_container {
  max-width: 1610px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
}

@media screen and (min-width: 1500px) {
  .footer_container {
    flex-direction: row;
    justify-content: space-between;
    padding-right: 15px;
    padding-left: 15px;
  }
}

.footer_deco_pc {
  display: none;
}

@media screen and (min-width: 1500px) {
  .footer_deco_pc {
    display: block;
  }
}

.contact_box {
  background: var(--green);
  border-radius: 0 50px 0 0;
  padding-top: 70px;
  padding-bottom: 40px;
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
  z-index: 5;
}

.contact_box::before {
  content: "";
  width: 32px;
  height: 32px;
  background: url(img/common/smile.png);
  position: absolute;
  right: 42px;
  top: 42px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
}

@media screen and (min-width: 540px) {
  .contact_box {
    padding-right: 15px;
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

@media screen and (min-width: 1500px) {
  .contact_box {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    margin-top: -155px;
    align-items: flex-start;
  }
}

.contact_unit {
  width: 100%;
  max-width: 420px;
}

.tel_box {
  font-family: var(--outfit);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.tel_box span {
  font-size: 16px;
  font-weight: bold;
}

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

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

.contact_small_text {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .contact_small_text {
    font-size: 12px;
    margin-top: 50px;
  }
}

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

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

.footer_deco_img {
  background: var(--green);
  margin: 0 calc(50% - 50vw);
}

@media screen and (min-width: 1500px) {
  .footer_deco_img {
    background: transparent;
    display: none;
  }
}

.footer {
  position: relative;
}

.footer_deco_pc {
  position: absolute;
  top: -115px;
  right: 0;
  width: 100%;
}

.footer_deco_pc img {
  width: 100%;
}

@media screen and (min-width: 1700px) {
  .footer_deco_pc {
    top: -130px;
  }
}

@media screen and (min-width: 1980px) {
  .footer_deco_pc {
    top: -154px;
  }
}

.footer__wrap {
  padding-top: 30px;
  padding-bottom: 50px;
}

@media screen and (min-width: 1024px) {
  .footer__wrap {
    padding-top: 25px;
    padding-bottom: 80px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1500px) {
  .footer__wrap {
    width: 100%;
    max-width: 902px;
    margin-left: auto;
    margin-right: 0;
  }
}

@media screen and (min-width: 1900px) {
  .footer__wrap .container_l {
    max-width: 980px;
  }
}

.footer__title {
  font-weight: bold;
  font-size: 10px;
  font-family: var(--outfit);
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .footer__title {
    font-size: 12px;
    margin-bottom: 40px;
  }
}

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

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

.footer_nav_list {
  gap: 0 15px;
}

.footer_nav_wrap {
  border-top: 1px solid #574A47;
  padding-top: 20px;
}

@media screen and (min-width: 1024px) {
  .footer_nav_wrap {
    border-top: none;
    border-left: 1px solid #574A47;
    padding-left: 40px;
    padding-top: 0;
  }
}

@media screen and (min-width: 1024px) {
  .footer_nav_wrap:first-child {
    width: 100%;
    max-width: 447px;
  }
}

.footer_nav_wrap:last-child {
  display: flex;
}

@media screen and (min-width: 768px) {
  .footer_nav_wrap:last-child {
    flex-direction: column;
    display: flex;
  }
}

.footer_nav_wrap .footer__nav_list {
  width: 100%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.footer_wrap {
  gap: 10px 60px;
  align-items: center;
  margin-top: 40px;
}

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

.footer_sitemap {
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
}

@media screen and (min-width: 540px) {
  .footer_sitemap {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media screen and (min-width: 1500px) {
  .footer_sitemap {
    padding-right: 0;
    padding-left: 0;
  }
}

.footer_nav_title {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #9A8E8C;
  margin-bottom: 10px;
}

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

.footer__nav_item a {
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: bold;
}

@media screen and (min-width: 1024px) {
  .footer__nav_item a {
    font-size: 16px;
  }
}

.footer__nav_item .deco {
  font-size: 12px;
}

@media screen and (min-width: 1024px) {
  .footer__nav_item .deco {
    font-size: 14px;
  }
}

.deco {
  font-size: 12px;
  letter-spacing: 0.05em;
  display: grid;
  grid-template-columns: 6px 1fr;
  gap: 10px;
  align-items: baseline;
}

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

@media screen and (min-width: 1024px) {
  .deco {
    font-size: 14px;
  }
}

.footer_address_text {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

@media screen and (min-width: 1024px) {
  .footer_address_text {
    font-size: 14px;
  }
}

.footer__copyright {
  font-size: 10px;
  color: #9A8E8C;
  margin-top: 40px;
  display: block;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 1024px) {
  .footer__copyright {
    font-size: 12px;
  }
}

.footer__logo {
  width: 100%;
  max-width: 311px;
}

@media screen and (min-width: 769px) {
  .footer__logo {
    max-width: 389px;
  }
}

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

layout/_lity.scss

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.lity-hide {
  display: none;
}

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

layout/_pager.scss

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

@media screen and (min-width: 769px) {
  .wp-pagenavi {
    margin-top: 80px;
  }
}

.wp-pagenavi a,
.wp-pagenavi span {
  color: var(--white);
  font-size: 15px;
  font-weight: bold;
  font-family: var(--outfit);
  margin: 5px;
  width: 40px;
  height: 40px;
  line-height: 2.5;
  display: block;
  text-decoration: none;
  padding: 0;
  background: var(--green);
  opacity: 1;
  border-radius: 50%;
}

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

  .wp-pagenavi a,
  .wp-pagenavi span {
    font-size: 18px;
    width: 64px;
    height: 64px;
    line-height: 4;
    font-size: 16px;
  }
}

.wp-pagenavi {
  position: relative;
}

.wp-pagenavi .previouspostslink {
  margin: 0;
  position: absolute;
  top: -40px;
  left: 0;
}

.wp-pagenavi .previouspostslink img {
  margin-right: 15px;
}

@media screen and (min-width: 769px) {
  .wp-pagenavi .previouspostslink {
    top: 10px;
  }
}

.wp-pagenavi .nextpostslink {
  margin: 0;
  position: absolute;
  top: -40px;
  right: 0;
}

.wp-pagenavi .nextpostslink img {
  margin-left: 15px;
}

@media screen and (min-width: 769px) {
  .wp-pagenavi .nextpostslink {
    top: 10px;
  }
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  width: auto;
  color: var(--black);
  background: transparent;
  font-size: 12px;
}

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

  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    font-size: 16px;
    margin-top: 0;
  }
}

.wp-pagenavi span.current {
  color: #AFBCA0;
  cursor: default;
  background: #E9F2DF;
}

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

.wp-pagenavi .extend {
  background: transparent;
  color: var(--black);
}

@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: 30px;
    height: 30px;
    line-height: 2;
  }
}

.pager {
  margin: 20px 0 100px 0;
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.pager a {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  width: 30px;
  height: 30px;
  line-height: 3.5;
  display: block;
  text-decoration: none;
  padding: 0;
  background: #f4f4f4;
  opacity: 1;
}

.pager .back a {
  width: 200px;
  padding: 0 20px;
  font-weight: bold;
  color: #FFF;
}

@media screen and (max-width: 450px) {
  .pager .back a {
    width: auto;
  }
}

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

layout/_breadcrumbs.scss

***************************/
.bredcrumbs_box {
  padding-bottom: 20px;
}

.breadcrumbs {
  font-size: 12px;
  font-weight: bold;
  color: var(--black);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  letter-spacing: 0.05em;
}

.breadcrumbs li:before {
  content: "\ea6e";
  font-family: "Remixicon";
  margin: 0 10px;
  color: var(--black);
}

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

.breadcrumbs a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

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

layout/_page-title.scss

***************************/
.title02 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 21px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: var(--green);
  line-height: 1.8;
}

@media screen and (min-width: 769px) {
  .title02 {
    gap: 30px;
    font-size: 24px;
  }
}

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

.title02 span {
  font-size: 10px;
  font-weight: bold;
  color: var(--black);
  font-family: var(--outfit);
}

@media screen and (min-width: 769px) {
  .title02 span {
    font-size: 12px;
  }
}

.title_03 span {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.05em;
  font-weight: bold;
  background: var(--white);
  border: 1px solid var(--green);
  padding: 6px 12px;
  border-radius: 19px;
  line-height: 1.4;
  color: var(--green);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (min-width: 769px) {
  .title_03 {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
  }

  .title_03 span {
    writing-mode: vertical-rl;
    padding: 12px 6px;
  }
}

.title03-bd {
  position: relative;
  z-index: 2;
  margin-bottom: -1px;
  border-bottom: none !important;
}

@media screen and (min-width: 769px) {
  .title03-bd {
    margin-bottom: auto;
    margin-left: -1px;
    border-bottom: 1px solid var(--green) !important;
    border-left: none !important;
  }
}

.news .title04 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 21px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: var(--green);
  line-height: 1;
}

@media screen and (min-width: 769px) {
  .news .title04 {
    gap: 15px;
    font-size: 24px;
  }
}

@media screen and (min-width: 960px) {
  .news .title04 {
    gap: 20px;
    font-size: 36px;
  }
}

.news .title04 span {
  font-size: 10px;
  font-weight: bold;
  color: var(--black);
  font-family: var(--outfit);
}

@media screen and (min-width: 769px) {
  .news .title04 span {
    font-size: 12px;
  }
}

.news .title04 span:first-child {
  margin-bottom: 10px;
}

.title04 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: var(--green);
  line-height: 1;
}

@media screen and (min-width: 769px) {
  .title04 {
    gap: 15px;
    font-size: 36px;
  }
}

@media screen and (min-width: 960px) {
  .title04 {
    gap: 20px;
    font-size: 54px;
  }
}

.title04 span {
  font-size: 10px;
  font-weight: bold;
  color: var(--black);
  font-family: var(--outfit);
}

@media screen and (min-width: 769px) {
  .title04 span {
    font-size: 12px;
  }
}

.title04 span:first-child {
  margin-bottom: 10px;
}

.title05 {
  font-size: 21px;
  font-weight: 600;
  border-bottom: 2px solid #E7F1DD;
  line-height: 2;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 40px;
}

.title05::before {
  content: "";
  width: 91px;
  height: 6px;
  border-radius: 3px;
  background: var(--green);
  display: block;
  position: absolute;
  bottom: -4px;
  left: 0;
}

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

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

.title06 {
  color: var(--green);
  font-weight: bold;
  font-size: 18px;
}

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

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

.title07 {
  font-weight: bold;
  font-size: 18px;
  padding-bottom: 10px;
  border-bottom: 2px dotted var(--green);
  margin-bottom: 20px;
  margin-top: 40px;
}

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

@media screen and (min-width: 769px) {
  .title07 {
    font-size: 21px;
    margin-bottom: 30px;
    margin-top: 50px;
  }
}

@media screen and (min-width: 960px) {
  .title07 {
    font-size: 26px;
    margin-bottom: 40px;
  }
}

.title08 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

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

.title09 {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-top: 20px;
  margin-bottom: 10px;
}

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

.title10 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}

.title10 span {
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.05em;
  font-family: var(--outfit);
}

.title10 img {
  width: 100%;
  max-width: 370px;
  margin-bottom: 30px;
}

@media screen and (min-width: 769px) {
  .title10 {
    font-size: 20px;
  }
}

.title11 {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: var(--green);
  line-height: 1.5;
  margin-bottom: 30px;
}

@media screen and (min-width: 769px) {
  .title11 {
    font-size: 32px;
    margin-bottom: 30px;
  }
}

.title12 {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  color: var(--white);
  background: var(--green);
  border-radius: 5px;
  margin-top: 40px;
  padding: 9px;
  margin-bottom: 10px;
}

@media screen and (min-width: 769px) {
  .title12 {
    font-size: 20px;
    margin-top: 50px;
    margin-bottom: 20px;
  }
}

.title13 {
  text-align: center;
  margin-top: 30px;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.title13 span {
  background: #F2F8EB;
  padding: 0 10px;
}

.title13::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #D3E1C6;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: -1;
}

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

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

object/component/_box.scss

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

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

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

.container_s.--type02 {
  max-width: 1480px;
}

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

object/component/_button.scss

***************************/
.footer .btn01 {
  width: 100%;
  max-width: 400px;
}

.btn01 {
  font-size: 14px;
  color: var(--green);
  font-weight: bold;
  border-radius: 48px;
  background-color: var(--white);
  border: 2px solid var(--green);
  padding: 13px 15px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.05em;
  position: relative;
}

@media screen and (min-width: 769px) {
  .btn01 {
    font-size: 18px;
    padding: 18px;
    border-radius: 42px;
    padding-left: 36px;
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

.btn01::after {
  content: "";
  width: 32px;
  height: 32px;
  background: var(--green);
  border-radius: 50%;
  transition: all 0.5s;
}

@media screen and (min-width: 769px) {
  .btn01::after {
    width: 36px;
    height: 36px;
  }
}

.btn01::before {
  content: "";
  background: url(img/common/arrow_w.png);
  width: 9px;
  height: 10px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 769px) {
  .btn01::before {
    right: 29px;
  }
}

.btn01:hover {
  color: #fff;
  background: var(--green);
  opacity: 1;
  border: 2px solid var(--white);
}

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

.btn01:hover::before {
  background: url(img/common/arrow_g.png);
}

.btn02 {
  font-size: 14px;
  color: var(--white);
  font-weight: bold;
  border-radius: 32px;
  background-color: var(--green);
  border: 2px solid var(--green);
  padding: 13px 15px;
  padding-left: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.05em;
  position: relative;
}

@media screen and (min-width: 769px) {
  .btn02 {
    font-size: 18px;
    padding: 18px;
    border-radius: 42px;
    padding-left: 36px;
  }
}

.btn02::after {
  content: "";
  width: 32px;
  height: 32px;
  background: var(--white);
  border-radius: 50%;
  transition: all 0.5s;
}

.btn02::before {
  content: "";
  background: url(img/common/arrow_g.png);
  width: 9px;
  height: 10px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 24px;
  top: 24px;
}

@media screen and (min-width: 769px) {
  .btn02::before {
    right: 27px;
    top: 31px;
  }
}

.btn02:hover {
  color: var(--green);
  background: var(--white);
  opacity: 1;
  border: 2px solid var(--green);
}

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

.btn02:hover::before {
  background: url(img/common/arrow_w.png);
}

.btn03 {
  font-size: 14px;
  color: var(--white);
  font-weight: bold;
  border-radius: 32px;
  background-color: var(--green);
  border: 2px solid var(--green);
  padding: 13px 15px;
  padding-left: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.05em;
  position: relative;
}

@media screen and (min-width: 769px) {
  .btn03 {
    font-size: 16px;
    padding: 18px;
    border-radius: 42px;
    padding-left: 36px;
  }
}

.btn03::after {
  content: "";
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  transition: all 0.5s;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 769px) {
  .btn03::after {
    left: 15px;
  }
}

.btn03::before {
  content: "";
  background: url(img/common/arrow_g.png);
  width: 9px;
  height: 10px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 22px;
  top: 23px;
  z-index: 5;
  transform: scale(-1, 1);
}

@media screen and (min-width: 769px) {
  .btn03::before {
    left: 27px;
    top: 30px;
  }
}

.btn03:hover {
  color: var(--green);
  background: var(--white);
  opacity: 1;
  border: 2px solid var(--green);
}

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

.btn03:hover::before {
  background: url(img/common/arrow_w.png);
}

.btn04 {
  font-size: 16px;
  color: var(--green);
  font-weight: bold;
  border-radius: 5px;
  background-color: var(--white);
  padding: 13px 15px;
  padding-left: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.05em;
  position: relative;
}

@media screen and (min-width: 769px) {
  .btn04 {
    padding: 18px;
    padding-left: 36px;
  }
}

.btn04::after {
  content: "";
  width: 32px;
  height: 32px;
  background: var(--green);
  border-radius: 50%;
  transition: all 0.5s;
}

.btn04::before {
  content: "";
  background: url(img/common/arrow_w.png);
  width: 9px;
  height: 10px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 769px) {
  .btn04::before {
    right: 27px;
  }
}

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

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

.btn04:hover::before {
  background: url(img/common/arrow_g.png);
}

.btn05 {
  font-size: 14px;
  color: var(--green);
  font-weight: bold;
  border-radius: 5px;
  line-height: 1.4;
  background-color: var(--white);
  padding: 12px;
  padding-right: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.05em;
  position: relative;
}

@media screen and (min-width: 769px) {
  .btn05 {
    font-size: 15px;
    gap: 0;
  }
}

.btn05 img {
  border-radius: 2px;
  margin-right: 15px;
  width: 100%;
  max-width: 56px;
}

.btn05::after {
  content: "";
  width: 26px;
  height: 26px;
  background: var(--green);
  border-radius: 50%;
  transition: all 0.5s;
  margin-left: auto;
}

.btn05::before {
  content: "";
  background: url(img/common/arrow_w.png);
  width: 9px;
  height: 10px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 27px;
  top: 50%;
  transform: translateY(-50%);
}

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

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

.btn05:hover::before {
  background: url(img/common/arrow_g.png);
}

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

object/component/_form.scss

***************************/
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;
  font-weight: 500;
  background: #fff;
  border: 1px solid #E7F1DD;
  padding: 18px 20px;
  width: 100%;
  border-radius: 5px;
}

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: #fff;
  border: 1px solid #E7F1DD;
  padding: 15px;
  font-weight: 500;
  resize: vertical;
  width: 100%;
  border-radius: 10px;
  height: 350px;
}

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: #C2C6CE;
  font-size: 18px;
  font-family: var(--font);
}

textarea::placeholder,
input::placeholder {
  color: #C2C6CE;
  font-size: 18px;
  font-family: var(--font);
}

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

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

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

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

.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: #fff;
  border: 1px solid #AEB4B9;
  content: "";
  display: block;
  border-radius: 50%;
  left: 5px;
  top: 50%;
  width: 30px;
  height: 30px;
}

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

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

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

.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;
  font-weight: bold;
}

.wpcf7-checkbox .wpcf7-list-item-label::before {
  background: #fff;
  border: 2px solid #AEB4B9;
  content: "";
  display: block;
  border-radius: 4px;
  left: 5px;
  top: 50%;
  width: 30px;
  height: 30px;
}

.wpcf7-checkbox .wpcf7-list-item-label::after {
  border-right: 3px solid #E0E2E4;
  border-bottom: 3px solid #E0E2E4;
  content: "";
  display: block;
  height: 12px;
  left: 10px;
  margin-top: -7px;
  position: absolute;
  top: 45%;
  transform: rotate(45deg);
  width: 8px;
}

.wpcf7-list-item {
  width: 100%;
  background: #fff;
  border: 1px solid #DBDFE5;
  padding: 20px;
  border-radius: 5px;
}

@media screen and (min-width: 1101px) {
  .wpcf7-list-item {
    max-width: 280px;
  }
}

input[type=checkbox]:checked+.wpcf7-list-item-label::before {
  background: var(--green);
  border: 2px solid var(--green);
}

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

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

.form__container {
  margin-top: 60px;
  border-top: 1px solid #DCE0E4;
  padding-top: 30px;
}

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

.contact_wrap {
  padding: 15px 0;
  display: grid;
  gap: 15px;
}

.contact_dt {
  letter-spacing: 0.05em;
  font-weight: bold;
  display: grid;
  grid-template-columns: 53px 1fr;
  gap: 9px;
  align-items: baseline;
}

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

.contact_dt span {
  font-weight: 600;
}

.contact_dt label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 10px;
}

.contact_placeholder {
  font-size: 12px;
  font-weight: 500;
  color: #AFBCA0;
}

/* 必須項目*/
.span-required {
  font-size: 14px;
  font-weight: bold;
  color: var(--white);
  background: var(--green);
  border-radius: 14px;
  display: inline-block;
  padding: 2px 10px;
  margin-left: 0 !important;
  text-align: center;
  line-height: 1.7;
}

.span-required.--gray {
  background: #fff;
  border: 1px solid var(--green);
  color: var(--green);
}

.privacypolicy_wrap {
  margin-top: 30px;
  margin-bottom: 30px;
}

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

.contact_dd_btn {
  background: #463632;
  border-radius: 3px;
  color: var(--white);
  padding: 10px 20px;
}

.contact_dd_zip {
  display: flex;
  align-items: center;
  gap: 25px;
}

.contact_dd_zip input {
  width: 100%;
  max-width: 150px;
}

@media screen and (min-width: 768px) {
  .contact_dd_zip input {
    max-width: 350px;
  }
}

.contact_dd_subtext {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

.privacypolicy_wrap {
  border: 1px solid #AEB4B9;
  background: var(--white);
  padding: 20px 30px;
  height: 400px;
  overflow-y: scroll;
}

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

@media screen and (min-width: 768px) {
  .privacypolicy_wrap p {
    font-size: 16px;
  }
}

.privacypolicy_button_wrap .wpcf7-list-item {
  max-width: 100%;
  border: none;
  padding: 0;
  margin-top: 20px;
  border-radius: 3px;
  background: #E9F2DF;
  padding: 30px 10px;
  display: flex;
  justify-content: center;
}

.contact-form_wrap {
  margin-top: 70px;
  text-align: center;
}

.contact-form_wrap .wpcf7-submit {
  color: #fff;
  font-weight: bold;
  padding: 20px 0;
  width: 100%;
  cursor: pointer;
  transition: all 0.5s;
}

@media screen and (min-width: 769px) {
  .contact-form_wrap .wpcf7-submit {
    font-size: 22px;
    padding: 30px 0;
  }
}

.contact-form_wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  margin-top: 40px;
}

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

.contact-form_wrap::before {
  content: "";
  width: 36px;
  height: 36px;
  display: block;
  border-radius: 50%;
  background: var(--white);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
  z-index: 2;
}

.contact-form_wrap::after {
  content: "";
  background: url(img/common/arrow_g.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 9px;
  height: 10px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 36px;
  z-index: 10;
}

.contact-form_wrap:hover::before {
  background: var(--green);
}

.contact-form_wrap:hover .wpcf7-submit {
  border: 1px solid var(--green);
  color: var(--green);
  background: var(--white);
}

.contact-form_wrap:hover::after {
  content: "";
  background: url(img/common/arrow_w.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 9px;
  height: 10px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 36px;
  z-index: 10;
}

.contact-form_wrap .wpcf7-submit {
  background: var(--green);
  border: 1px solid var(--green);
  font-size: 22px;
  border-radius: 46px;
  border: none;
  transition: all 0.5s;
  font-family: var(--font);
  font-weight: 600;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

@media screen and (min-width: 960px) {
  .contact-form_wrap .wpcf7-submit {
    font-size: 24px;
  }
}

.wpcf7-spinner {
  display: none;
}

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

object/object/project/_home.scss

***************************/
.top_mv_wrap {
  width: 100%;
  position: relative;
}

.swiper-slide {
  height: 100%;
}

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

.top-mySwiper_container {
  position: relative;
  width: 100%;
  max-width: 350px;
  height: 100%;
  max-height: 230px;
  margin: 0 auto;
  margin-top: 100px;
  margin-bottom: 80px;
}

@media screen and (min-width: 600px) {
  .top-mySwiper_container {
    max-width: 590px;
    max-height: 390px;
  }
}

@media screen and (min-width: 769px) {
  .top-mySwiper_container {
    max-width: 780px;
    max-height: 523px;
  }
}

@media screen and (min-width: 1100px) {
  .top-mySwiper_container {
    max-width: 1100px;
    max-height: 720px;
    margin-top: -20px;
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 1600px) {
  .top-mySwiper_container {
    max-width: 1370px;
    max-height: 907px;
    margin-top: -20px;
    margin-bottom: 60px;
  }
}

.top-mySwiper_container .mv_pagination {
  bottom: -30px;
}

.top-mySwiper_container .img_bird {
  position: absolute;
  bottom: -40px;
  left: -30px;
  z-index: 7;
  width: 100%;
  max-width: 78px;
}

@media screen and (min-width: 769px) {
  .top-mySwiper_container .img_bird {
    max-width: 150px;
  }
}

@media screen and (min-width: 1300px) {
  .top-mySwiper_container .img_bird {
    bottom: 60px;
  }
}

@media screen and (min-width: 1600px) {
  .top-mySwiper_container .img_bird {
    left: -105px;
    bottom: 60px;
  }
}

.topleft-mySwiper {
  position: absolute;
  width: auto;
  max-width: 143px;
  height: auto;
  max-height: 195px;
  z-index: 6;
  left: -20px;
  top: 50px;
}

@media screen and (min-width: 540px) {
  .topleft-mySwiper {
    left: 0;
    top: 100px;
  }
}

@media screen and (min-width: 769px) {
  .topleft-mySwiper {
    left: -20px;
    max-width: 258px;
    max-height: 351px;
  }
}

@media screen and (min-width: 1300px) {
  .topleft-mySwiper {
    max-width: 387px;
    max-height: 526px;
  }
}

.line_left {
  position: absolute;
  top: -20px;
  left: 30px;
  z-index: 9;
  width: 100%;
  max-width: 120px;
}

@media screen and (min-width: 560px) {
  .line_left {
    max-width: 200px;
    left: -60px;
  }
}

@media screen and (min-width: 769px) {
  .line_left {
    left: 60px;
    top: 30px;
  }
}

@media screen and (min-width: 1100px) {
  .line_left {
    left: 60px;
    top: 100px;
  }
}

@media screen and (min-width: 1300px) {
  .line_left {
    left: 30px;
    top: 95px;
  }
}

@media screen and (min-width: 1600px) {
  .line_left {
    max-width: 360px;
  }
}

.line_right {
  position: absolute;
  bottom: 40px;
  right: -20px;
  z-index: 5;
  width: 100%;
  max-width: 120px;
}

@media screen and (min-width: 560px) {
  .line_right {
    max-width: 200px;
    right: -100px;
  }
}

@media screen and (min-width: 769px) {
  .line_right {
    right: 0;
    bottom: 100px;
  }
}

@media screen and (min-width: 1100px) {
  .line_right {
    right: 0;
    bottom: 150px;
  }
}

@media screen and (min-width: 1600px) {
  .line_right {
    max-width: 360px;
    right: -110px;
    bottom: 70px;
  }
}

.topright-mySwiper {
  width: 100%;
  max-width: 151px;
  position: absolute;
  bottom: 0;
  right: -20px;
  height: 100%;
  max-height: 139px;
}

@media screen and (min-width: 769px) {
  .topright-mySwiper {
    max-width: 272px;
    max-height: 250px;
  }
}

@media screen and (min-width: 1300px) {
  .topright-mySwiper {
    max-width: 408px;
    max-height: 374px;
    bottom: 230px;
  }
}

.swiper {
  height: 100%;
}

.swiper_container {
  width: 100%;
  margin: 0 auto;
}

.top-mySwiper {
  clip-path: url(#svgPath-sp);
  -webkit-clip-path: url(#svgPath-sp);
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 600px) {
  .top-mySwiper {
    clip-path: url(#svgPath-sp-type02);
    -webkit-clip-path: url(#svgPath-sp-type02);
  }
}

@media screen and (min-width: 769px) {
  .top-mySwiper {
    clip-path: url(#svgPath-tab);
    -webkit-clip-path: url(#svgPath-tab);
  }
}

@media screen and (min-width: 1100px) {
  .top-mySwiper {
    clip-path: url(#svgPath-pc);
    -webkit-clip-path: url(#svgPath-pc);
  }
}

@media screen and (min-width: 1600px) {
  .top-mySwiper {
    clip-path: url(#svgPath);
    -webkit-clip-path: url(#svgPath);
  }
}

.topleft-mySwiper {
  clip-path: url(#svgPath-left-sp);
  -webkit-clip-path: url(#svgPath-left-sp);
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 769px) {
  .topleft-mySwiper {
    clip-path: url(#svgPath-left-tab);
    -webkit-clip-path: url(#svgPath-left-tab);
  }
}

@media screen and (min-width: 1300px) {
  .topleft-mySwiper {
    clip-path: url(#svgPath-left);
    -webkit-clip-path: url(#svgPath-left);
  }
}

.topright-mySwiper {
  clip-path: url(#svgPath-right-sp);
  -webkit-clip-path: url(#svgPath-right-sp);
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 769px) {
  .topright-mySwiper {
    clip-path: url(#svgPath-right-tab);
    -webkit-clip-path: url(#svgPath-right-tab);
  }
}

@media screen and (min-width: 1300px) {
  .topright-mySwiper {
    clip-path: url(#svgPath-right);
    -webkit-clip-path: url(#svgPath-right);
  }
}

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

.top_mv_wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* スライダーのラッパー */
.swiper_container {
  display: flex;
  width: 100%;
  margin: 0 auto;
}

.top_mv_wrap>svg {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  top: -9999px;
  left: -9999px;
  display: block;
}

svg {
  width: 100%;
  height: 100%;
}

.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-pagination-bullet {
  background: var(--green);
  width: 8px;
  height: 8px;
  opacity: 1;
  transition: all 0.5s;
  border: 2px solid var(--green);
}

.swiper-pagination-bullet-active {
  width: 14px;
  height: 14px;
  background: var(--white);
  border: 2px solid var(--green);
}

.top_mv_title_box {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 50px;
}

@media screen and (min-width: 769px) {
  .top_mv_title_box {
    padding: 0;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}

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

.top_mv_title_box p {
  text-align: center;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-top: 15px;
}

@media screen and (min-width: 769px) {
  .top_mv_title_box p {
    text-align: left;
    font-size: 12px;
  }
}

.br_sp {
  display: block;
}

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

.br_pc {
  display: none;
}

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

.top_mv_wrap_container {
  padding-bottom: 30px;
}

@media screen and (min-width: 769px) {
  .top_mv_wrap_container {
    padding-bottom: 100px;
  }
}

@media screen and (min-width: 1200px) {
  .top_mv_wrap_container {
    padding-bottom: 220px;
  }
}

.section_img-w {
  display: flex;
  align-items: flex-end;
}

.section_img-w img {
  width: 100%;
}

.top_philosophy {
  background: var(--white);
  padding: 30px 0 60px;
}

@media screen and (min-width: 769px) {
  .top_philosophy {
    padding: 140px 0 125px;
  }
}

.top_philosophy .btn_wrap {
  width: 100%;
  max-width: 260px;
  margin-top: 30px;
}

@media screen and (min-width: 769px) {
  .top_philosophy .btn_wrap {
    margin-top: 60px;
  }
}

.philosophy_textbox {
  width: 100%;
  max-width: 420px;
}

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

@media screen and (min-width: 720px) {
  .philosophy_box {
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
  }
}

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

.section_wrap {
  position: relative;
}

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

.section_wrap .section_img {
  width: 100%;
  display: flex;
}

.section_wrap .section_img.--type01 {
  position: absolute;
  top: -1px;
  left: 0;
  align-items: flex-start;
  z-index: 2;
}

.section_wrap .section_img.--type01.--reverse {
  transform: scale(1, -1);
}

.section_wrap .section_img.--type02 {
  position: absolute;
  bottom: -1px;
  left: 0;
  align-items: flex-end;
  z-index: 2;
}

.section_wrap .section_img.--type02 img {
  width: 100%;
}

.section_wrap .section_img.--type02.--reverse {
  transform: scale(1, -1);
}

.section_wrap .container_s {
  position: relative;
}

.section_wrap .deco_bird {
  position: absolute;
  right: 20px;
  top: -20px;
  z-index: 5;
  width: 100%;
  max-width: 64px;
  padding-right: 15px;
}

@media screen and (min-width: 540px) {
  .section_wrap .deco_bird {
    max-width: 122px;
  }
}

@media screen and (min-width: 1700px) {
  .section_wrap .deco_bird {
    top: 10%;
  }
}

.section_wrap .deco_circle {
  position: absolute;
  bottom: 10px;
  left: 15px;
  width: 50px;
  z-index: 5;
}

@media screen and (min-width: 769px) {
  .section_wrap .deco_circle {
    bottom: 40px;
  }
}

@media screen and (min-width: 1300px) {
  .section_wrap .deco_circle {
    bottom: 80px;
    width: 70px;
  }
}

@media screen and (min-width: 1600px) {
  .section_wrap .deco_circle {
    width: 70px;
    bottom: 80px;
    left: -40px;
  }
}

.top_service {
  padding-top: 25px;
  padding-bottom: 70px;
}

@media screen and (min-width: 769px) {
  .top_service {
    padding-top: 125px;
    padding-bottom: 90px;
  }
}

.top_service .title_03 {
  margin-bottom: 25px;
}

@media screen and (min-width: 769px) {
  .top_service .title_03 {
    margin-bottom: 0;
  }
}

.service_list {
  display: flex;
  gap: 30px 15px;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (min-width: 769px) {
  .service_list {
    gap: 50px 20px;
    justify-content: flex-start;
  }
}

@media screen and (min-width: 1024px) {
  .service_list {
    gap: 50px 20px;
  }
}

@media screen and (min-width: 1200px) {
  .service_list {
    gap: 50px 40px;
  }
}

.service_item {
  max-width: calc(50% - 8px);
}

.service_item p {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .service_item p {
    font-size: 16px;
  }
}

.service_item:first-child {
  width: 100%;
  margin-bottom: 35px;
  max-width: 100%;
}

@media screen and (min-width: 769px) {
  .service_item:first-child {
    display: flex;
    align-items: flex-start;
    gap: 50px;
  }
}

@media screen and (min-width: 1024px) {
  .service_item:first-child {
    margin-bottom: 0;
    width: 100%;
  }
}

@media screen and (min-width: 1600px) {
  .service_item:first-child {
    max-width: 515px;
    margin-left: -110px;
  }
}

.service_item:first-child .title02 {
  margin-bottom: 20px;
}

.service_item:first-child p {
  font-size: 16px;
  line-height: 2;
}

@media screen and (min-width: 769px) {
  .service_item:first-child p {
    font-size: 18px;
  }
}

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

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

@media screen and (min-width: 1024px) {
  .service_item {
    max-width: calc(33.3333333333% - 15px);
  }
}

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

.service_link:hover {
  opacity: 1;
}

.service_link:hover .service_img img {
  transform: scale(1.05);
}

.service_textbox {
  margin-top: 10px;
}

@media screen and (min-width: 769px) {
  .service_textbox {
    margin-top: 20px;
  }
}

.service_img {
  border-radius: 2px;
  overflow: hidden;
}

.service_img img {
  width: 100%;
  border-radius: 2px;
  transition: all 0.5s;
}

.service_title {
  color: var(--green);
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-bottom: 8px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: 1fr 20px;
  align-items: center;
  gap: 5px;
}

@media screen and (min-width: 769px) {
  .service_title {
    font-size: 21px;
    margin-bottom: 10px;
  }
}

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

@media screen and (min-width: 1024px) {
  .service_title {
    grid-template-columns: 1fr 26px;
  }
}

.service_title::after {
  content: "";
  background: var(--green);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
}

@media screen and (min-width: 1024px) {
  .service_title::after {
    width: 26px;
    height: 26px;
  }
}

.service_title::before {
  content: "";
  background: url(img/common/arrow_w.png);
  width: 6px;
  height: 8px;
  background-position: center center;
  display: block;
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

@media screen and (min-width: 1024px) {
  .service_title::before {
    width: 7px;
    height: 8px;
    right: 8px;
  }
}

.box_type01 {
  margin-top: 60px;
  background: var(--white);
  border-radius: 50px 50px 0 0;
  padding: 30px;
  position: relative;
}

@media screen and (min-width: 769px) {
  .box_type01 {
    padding: 50px 70px;
    margin-top: 90px;
  }
}

.box_type01.--bg-type02 {
  background: #E9F2DF;
}

.box_type01_deco {
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  text-align: center;
}

.box_type01_title {
  margin-bottom: 20px;
}

.link_list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

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

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

  .link_list.--type02 .link_item {
    max-width: 360px;
  }

  .link_list.--type03 {
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .link_list.--type03 .link_item {
    max-width: 100%;
  }
}

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

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

.link_list .link_item {
  width: 100%;
}

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

@media screen and (min-width: 1024px) {
  .link_list .link_item {
    max-width: calc(33.3333333333% - 25px);
  }
}

.link_list.--type04 {
  gap: 10px;
}

.link_list.--type04 .link_item {
  width: 100%;
  max-width: 100%;
}

@media screen and (min-width: 690px) {
  .link_list.--type04 {
    gap: 15px;
  }

  .link_list.--type04 .link_item {
    max-width: calc(50% - 10px);
  }
}

@media screen and (min-width: 1024px) {
  .link_list.--type04 {
    justify-content: flex-start;
  }

  .link_list.--type04 .link_item {
    max-width: calc(33.3333333333% - 10px);
  }
}

@media screen and (min-width: 1200px) {
  .link_list.--type04 .link_item {
    max-width: calc(25% - 15px);
  }
}

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

.top_recruit {
  background: #E9F2DF;
  padding-bottom: 110px;
}

@media screen and (min-width: 769px) {
  .top_recruit {
    padding-bottom: 280px;
  }
}

@media screen and (min-width: 1024px) {
  .top_recruit {
    padding-bottom: 160px;
  }
}

.top_recruit .container_s {
  position: relative;
  z-index: 5;
}

.top_recruit .recruit_box {
  margin-top: -30px;
}

@media screen and (min-width: 769px) {
  .top_recruit .recruit_box {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    margin-top: -80px;
  }
}

@media screen and (min-width: 1100px) {
  .top_recruit .recruit_box {
    position: absolute;
    bottom: -110px;
    left: 15px;
  }
}

@media screen and (min-width: 1300px) {
  .top_recruit .recruit_box {
    bottom: 0;
  }
}

@media screen and (min-width: 1600px) {
  .top_recruit .recruit_box {
    left: 0;
    margin-left: -75px;
  }
}

@media screen and (min-width: 769px) {
  .top_recruit .recruit_box .title_03 {
    margin-left: -110px;
  }
}

@media screen and (min-width: 769px) {
  .top_recruit .recruit_box .recruit_textbox {
    width: 100%;
    max-width: 550px;
  }
}

.top_recruit .recruit_box .title02 {
  padding-top: 20px;
  padding-bottom: 30px;
  width: 100%;
  max-width: 234px;
}

.top_recruit .recruit_box p {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 2;
}

@media screen and (min-width: 769px) {
  .top_recruit .recruit_box p {
    font-size: 18px;
  }
}

.top_recruit .recruit_box .btn_wrap {
  margin-top: 30px;
  width: 100%;
  max-width: 260px;
}

@media screen and (min-width: 769px) {
  .top_recruit .recruit_box .btn_wrap {
    margin-top: 40px;
  }
}

.recruit_box {
  background: var(--white);
  padding: 40px 35px;
  border-radius: 5px;
}

@media screen and (min-width: 769px) {
  .recruit_box {
    background: url(img/home/recruit_box.svg);
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.top_news {
  background: #E9F2DF;
}

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

@media screen and (min-width: 769px) {
  .top_news_wrap {
    flex-direction: row;
    gap: 80px;
  }
}

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

.top_news_unit {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 40px 0;
}

@media screen and (min-width: 769px) {
  .top_news_unit {
    max-width: 200px;
    flex-direction: column;
  }
}

.top_news_unit .btn_wrap {
  width: 100%;
  max-width: 131px;
}

@media screen and (min-width: 769px) {
  .top_news_unit .btn_wrap {
    max-width: 200px;
  }
}

.top_news {
  padding-bottom: 100px;
  position: relative;
}

@media screen and (min-width: 769px) {
  .top_news {
    padding-bottom: 180px;
  }
}

.top_news .container_s {
  position: relative;
}

.top_news_deco {
  width: 100%;
  max-width: 64px;
  position: absolute;
  right: 0;
  top: -90px;
  transform: rotate(30deg);
}

@media screen and (min-width: 769px) {
  .top_news_deco {
    max-width: 120px;
  }
}

@media screen and (min-width: 1500px) {
  .top_news_deco {
    right: -120px;
    top: 0;
  }
}

.news_list {
  width: 100%;
}

.news_link {
  display: block;
  width: 100%;
  border-bottom: 1px solid #D3E1C6;
  padding: 20px 0;
}

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

.news_date {
  color: var(--green);
  font-weight: bold;
  font-size: 11px;
  letter-spacing: 0.05em;
  font-family: var(--outfit);
}

@media screen and (min-width: 769px) {
  .news_date {
    font-size: 13px;
  }
}

.news_title {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
  display: grid;
  grid-template-columns: 9px 1fr;
  gap: 8px;
  align-items: baseline;
}

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

.news_title::before {
  content: "";
  background: url(img/common/arrow_g.png);
  width: 9px;
  height: 10px;
  display: block;
}

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

共通

***************************/
.page_mv_wrap {
  overflow: hidden;
}

.page_mv_title_box {
  padding-top: 100px;
}

@media screen and (min-width: 769px) {
  .page_mv_title_box {
    padding-top: 135px;
  }
}

@media screen and (min-width: 1024px) {
  .page_mv_title_box {
    padding-top: 225px;
  }
}

.page_mv_title_box .container_s {
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
  position: relative;
}

@media screen and (min-width: 769px) {
  .page_mv_title_box .container_s {
    padding-bottom: 75px;
  }
}

.page_mv_title_box .container_s:has(.page_mv_right_box) {
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

@media screen and (min-width: 769px) {
  .page_mv_title_box .container_s:has(.page_mv_right_box) {
    flex-direction: row;
  }
}

.page_mv_title_box .title04 {
  width: 100%;
}

.page_mv_title_box .page_mv_deco.--bird {
  width: 100%;
  max-width: 64px;
  margin-top: -40px;
  text-align: right;
}

@media screen and (min-width: 769px) {
  .page_mv_title_box .page_mv_deco.--bird {
    max-width: 130px;
  }
}

.page_mv_title_box .page_mv_deco.--line {
  width: 100%;
  max-width: 180px;
  position: absolute;
  top: -30px;
  left: -60px;
  z-index: -1;
}

@media screen and (min-width: 769px) {
  .page_mv_title_box .page_mv_deco.--line {
    max-width: 360px;
    top: -90px;
    left: -130px;
  }
}

.page_mv_title_box .page_mv_deco.--line02 {
  position: absolute;
  bottom: -50px;
  right: -80px;
  max-width: 180px;
  z-index: 5;
}

@media screen and (min-width: 769px) {
  .page_mv_title_box .page_mv_deco.--line02 {
    max-width: 360px;
    bottom: -110px;
    right: -120px;
  }
}

.sec_first {
  padding-top: 50px;
}

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

.sec_first02 {
  padding-top: 40px;
}

@media screen and (min-width: 769px) {
  .sec_first02 {
    padding-top: 60px;
  }
}

.sec_first03 {
  padding-top: 80px;
}

@media screen and (min-width: 769px) {
  .sec_first03 {
    padding-top: 100px;
  }
}

.sec_last {
  padding-bottom: 80px;
}

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

.sec_last02 {
  padding-bottom: 100px;
}

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

.page_mv_right_box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.page_mv_right_box .page_mv_deco.--bird {
  position: absolute;
  top: 0;
  right: 10px;
}

@media screen and (min-width: 769px) {
  .page_mv_right_box .page_mv_deco.--bird {
    position: static;
  }
}

@media screen and (min-width: 1600px) {
  .page_mv_right_box .page_mv_deco.--bird {
    margin-right: -100px;
  }
}

.anchor_list {
  background: #E7F1DC;
  border-radius: 35px;
  padding: 15px 19px 14px;
  gap: 8px 10px;
  width: 100%;
  flex-wrap: wrap;
}

@media screen and (min-width: 769px) {
  .anchor_list {
    padding: 25px 40px 24px;
    gap: 5px 25px;
  }
}

.anchor_item {
  font-weight: bold;
  font-size: 14px;
  line-height: 1.6;
}

@media screen and (min-width: 769px) {
  .anchor_item {
    font-size: 15px;
  }
}

.anchor_item a {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 5px;
}

@media screen and (min-width: 769px) {
  .anchor_item a {
    gap: 10px;
  }
}

.anchor_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  border-radius: 50%;
  background-size: 20px;
  width: 20px;
  height: 20px;
}

.anchor_arrow img {
  width: 100%;
  max-width: 7px;
  transform: rotate(90deg);
  margin-top: 2px;
}

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

object/object/project/_news.scss

***************************/
.news .title04 {
  width: 100%;
}

.news .title04:has(img) {
  max-width: 151px;
}

@media screen and (min-width: 769px) {
  .news .title04:has(img) {
    max-width: 253px;
  }
}

.news_01 .news_list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.news_01 .news_link {
  background: var(--white);
  border-bottom: none;
  padding: 20px;
}

@media screen and (min-width: 769px) {
  .news_01 .news_link {
    display: grid;
    grid-template-columns: 140px 1fr;
    align-items: center;
    padding: 30px 40px;
  }
}

.news_detail_box {
  background: var(--white);
  border-radius: 5px;
  padding: 50px 40px;
  /* text-align: center; */
}

@media screen and (min-width: 769px) {
  .news_detail_box {
    padding: 80px 100px;
  }
}

.news_detail_box p {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: left;
}

.news_detail_box h1 {
  font-size: 20px;
  font-weight: bold;
  color: var(--green);
  line-height: 2.8;
  border-bottom: 2px solid var(--green);
  margin-bottom: 20px;
  text-align: left;
}

@media screen and (min-width: 769px) {
  .news_detail_box h1 {
    font-size: 26px;
    margin-top: 60px;
    margin-bottom: 30px;
  }
}

.news_detail_box h2 {
  font-size: 20px;
  font-weight: bold;
  color: var(--green);
  line-height: 2.8;
  border-bottom: 2px solid var(--green);
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
}

@media screen and (min-width: 769px) {
  .news_detail_box h2 {
    font-size: 26px;
    margin-top: 60px;
    margin-bottom: 30px;
  }
}

.news_detail_box img {
  margin-top: 10px;
  margin-bottom: 10px;
}

.news_detail_box img+img {
  margin: 20px 0;
}

.news_detail_box a {
  text-align: left;
  display: block;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}

.news_detail_box a[target=_blank] {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 30px;
}

.news_detail_box a[target=_blank]::after {
  content: "\ecaf";
  font-family: "Remixicon";
  position: absolute;
  top: 0;
  right: -20px;
}

.news_detail_box a[href$=".pdf"] {
  position: relative;
}

.news_detail_box a[href$=".pdf"]::before {
  content: "\f15c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 5px;
}

.news_detail .btn_wrap {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  margin-top: 100px;
}

@media screen and (min-width: 769px) {
  .news_detail .btn_wrap {
    margin-top: 120px;
  }
}

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

object/object/project/_about.scss

***************************/
.about .title04 {
  width: 100%;
}

.about .title04:has(img) {
  max-width: 200px;
}

@media screen and (min-width: 769px) {
  .about .title04:has(img) {
    max-width: 300px;
  }
}

@media screen and (min-width: 1200px) {
  .about .title04:has(img) {
    max-width: 443px;
  }
}

.about_01_box {
  background: var(--white);
  border-radius: 5px;
  padding: 30px 10px;
  margin-bottom: 60px;
  position: relative;
}

@media screen and (min-width: 769px) {
  .about_01_box {
    padding: 40px 10px;
    margin-bottom: 50px;
  }
}

@media screen and (min-width: 960px) {
  .about_01_box {
    padding: 60px 10px;
  }
}

.about_01_deco-left {
  position: absolute;
  bottom: -40px;
  left: -5px;
  width: 100%;
  max-width: 80px;
}

@media screen and (min-width: 769px) {
  .about_01_deco-left {
    left: -15px;
    bottom: -50px;
  }
}

@media screen and (min-width: 1200px) {
  .about_01_deco-left {
    left: -30px;
  }
}

.about_01_deco-right {
  position: absolute;
  top: -30px;
  right: -5px;
  width: 100%;
  max-width: 85px;
}

@media screen and (min-width: 769px) {
  .about_01_deco-right {
    right: 10px;
    top: -20px;
  }
}

.about_01_text {
  text-align: center;
  font-size: 18px;
  color: var(--green);
  font-weight: bold;
}

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

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

.about_list {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.disc {
  display: grid;
  grid-template-columns: 14px 1fr;
  align-items: baseline;
  gap: 8px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 769px) {
  .disc {
    font-size: 20px;
  }
}

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

.disc02 {
  display: grid;
  grid-template-columns: 6px 1fr;
  align-items: baseline;
  gap: 8px;
  font-weight: 500;
}

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

.about_02 .service_list {
  display: flex;
  gap: 30px 25px;
  margin-top: 40px;
  margin-bottom: 40px;
}

@media screen and (min-width: 769px) {
  .about_02 .service_list {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

.about_02 .service_item:first-child {
  display: block;
  margin-left: 0;
  margin-bottom: 0;
}

.about_02 .service_item {
  width: 100%;
  max-width: calc(50% - 13px);
}

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

@media screen and (min-width: 1024px) {
  .about_02 .service_item {
    max-width: calc(33.3333333333% - 17px);
  }
}

@media screen and (min-width: 1200px) {
  .about_02 .service_item {
    max-width: calc(25% - 19px);
  }
}

.about_02 .service_textbox {
  margin-top: 10px;
}

.about_02 .service_title {
  font-size: 16px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 540px) {
  .about_02 .service_title {
    font-size: 18px;
  }
}

.about_03_list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 50px;
  padding-top: 30px;
}

.about_03_list figure {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about_03_item {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 450px;
}

@media screen and (min-width: 1496px) {
  .about_03_item:nth-child(2) {
    margin-top: 70px;
  }
}

.about_03text_box {
  background: var(--white);
  padding: 120px 30px 40px 30px;
  border-radius: 5px;
}

@media screen and (min-width: 769px) {
  .about_03text_box {
    padding: 140px 45px 50px 45px;
  }
}

.about_03_img {
  position: relative;
  margin-bottom: -100px;
  margin-left: 20px;
  margin-right: 20px;
}

.about_03_img .num {
  position: absolute;
  z-index: 5;
}

.about_03_img .num.--01 {
  bottom: -13px;
  left: 20px;
}

.about_03_img .num.--02 {
  top: 0;
  right: 50px;
}

.about_03_img .num.--03 {
  bottom: -10px;
  right: 25px;
}

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

.about_03text_box .title06 {
  text-align: center;
}

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

object/object/project/_event.scss

***************************/
.event .title04 {
  width: 100%;
}

.event .title04:has(img) {
  max-width: 200px;
}

@media screen and (min-width: 769px) {
  .event .title04:has(img) {
    max-width: 250px;
  }
}

@media screen and (min-width: 1200px) {
  .event .title04:has(img) {
    max-width: 272px;
  }
}

.event_text01 {
  margin-bottom: 80px;
}

@media screen and (min-width: 769px) {
  .event_text01 {
    margin-bottom: 120px;
  }
}

.gallery_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 20px;
}

@media screen and (min-width: 769px) {
  .gallery_list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-top: 30px;
  }
}

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

.gallery_item {
  padding: 5px;
  background: var(--white);
  border-radius: 2px;
}

.gallery_img img {
  width: 100%;
}

.modaal-content-container {
  padding: 10px;
}

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

.modaal-btn .gallery_img {
  position: relative;
}

.modaal-btn .gallery_img::after {
  content: "";
  width: 28px;
  height: 28px;
  background: url(img/event/ico_zoom.png);
  display: block;
  position: absolute;
  bottom: 6px;
  right: 6px;
  z-index: 6;
}

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

object/object/project/_contact.scss

***************************/
.contact .title04 {
  width: 100%;
}

.contact .title04:has(img) {
  max-width: 200px;
}

@media screen and (min-width: 769px) {
  .contact .title04:has(img) {
    max-width: 300px;
  }
}

@media screen and (min-width: 1200px) {
  .contact .title04:has(img) {
    max-width: 400px;
  }
}

.contact_01 .box_type_title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

.contact_01 .tel_box {
  text-align: center;
  color: var(--green);
  line-height: 1.5;
}

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

object/object/project/_facility.scss

***************************/
.list_type01_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list_type01_item {
  background: var(--white);
  padding: 20px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

@media screen and (min-width: 1200px) {
  .list_type01_item {
    padding: 40px;
    flex-wrap: nowrap;
  }
}

.list_type01_box {
  width: 100%;
}

.list_type01_box:nth-child(2) {
  border-top: 1px solid #D3E1C6;
}

@media screen and (min-width: 1200px) {
  .list_type01_box:nth-child(2) {
    border-top: none;
    border-left: 1px solid #D3E1C6;
    padding-left: 40px;
  }
}

@media screen and (min-width: 1200px) {
  .list_type01_box {
    max-width: 300px;
  }

  .list_type01_box:nth-child(2) {
    max-width: 433px;
  }

  .list_type01_box:nth-child(3) {
    max-width: 100%;
  }
}

@media screen and (min-width: 1200px) {
  .list_type01_box:nth-child(3) {
    max-width: 360px;
  }
}

.map iframe {
  aspect-ratio: 600/400;
  max-width: 100%;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .map iframe {
    aspect-ratio: 600/250;
  }
}

@media screen and (min-width: 1200px) {
  .map iframe {
    aspect-ratio: 360/280;
  }
}

.list_type01_title {
  font-size: 18px;
  font-weight: bold;
}

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

.list_type01_dl dt {
  font-size: 16px;
  font-weight: bold;
  margin-top: 15px;
}

@media screen and (min-width: 1200px) {
  .list_type01_dl dt:first-child {
    margin-top: 0;
  }
}

.list_type01_dl p {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.cat_list {
  gap: 5px;
  margin-top: 20px;
}

.cat {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #EEFBF3;
  border: 1px solid var(--green);
  color: var(--green);
  border-radius: 14px;
  line-height: 1.2;
  padding: 4px 12px 6px;
}

.cat.--type01 {
  border: 1px solid #EEFBF3;
}

.cat.--type02 {
  background: var(--green);
  color: var(--white);
}

.cat.--type03 {
  border: 1px solid var(--green);
  background: var(--white);
  color: var(--green);
}

.link_item.active {
  opacity: 0.5;
}

.greeting_box {
  background: var(--white);
  padding: 30px;
  border-radius: 5px;
}

@media screen and (min-width: 769px) {
  .greeting_box {
    padding: 80px;
  }
}

.greeting_box:has(.greeting_img) {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 40px;
}

.greeting_box:has(.greeting_img) .greeting_textbox {
  width: 100%;
  max-width: 640px;
}

@media screen and (min-width: 769px) {
  .greeting_box:has(.greeting_img) {
    flex-direction: row;
    justify-content: space-between;
  }
}

.greeting_nemebox {
  margin-top: 20px;
  text-align: right;
}

@media screen and (min-width: 769px) {
  .greeting_nemebox {
    margin-top: 30px;
  }
}

.greeting_nemebox p {
  font-weight: bold;
  font-size: 14px;
}

.greeting_nemebox p span {
  font-size: 16px;
}

@media screen and (min-width: 769px) {
  .greeting_nemebox p {
    font-size: 16px;
  }

  .greeting_nemebox p span {
    font-size: 22px;
  }
}

.list_type02_list {
  border: 1px solid var(--green);
  border-radius: 5px;
  background: var(--white);
}

@media screen and (min-width: 540px) {
  .list_type02_list {
    position: relative;
  }

  .list_type02_list::before {
    content: "";
    background: #E7F1DC;
    width: 180px;
    height: 100%;
    border-radius: 5px 0 0 5px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
}

@media screen and (min-width: 769px) {
  .list_type02_list::before {
    content: "";
    background: #E7F1DC;
    width: 300px;
    height: 100%;
    border-radius: 5px 0 0 5px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
}

.list_type02_item {
  border-bottom: 1px solid #D3E1C6;
}

.list_type02_item:last-child {
  border-bottom: none;
}

@media screen and (min-width: 540px) {
  .list_type02_item {
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: center;
  }
}

@media screen and (min-width: 769px) {
  .list_type02_item {
    grid-template-columns: 300px 1fr;
  }
}

.list_type02_item:first-child .list_type02_title {
  border-radius: 5px 5px 0 0;
}

@media screen and (min-width: 540px) {
  .list_type02_item:first-child .list_type02_title {
    border-radius: 5px 0 0 0;
  }
}

.list_type02_item:last-child .list_type02_title {
  border-radius: 0 0 0 5px;
}

.list_type02_item {
  position: relative;
  z-index: 1;
}

.list_type02_title {
  font-weight: bold;
  letter-spacing: 0.05em;
  padding: 15px 15px 15px;
  background: #E7F1DC;
}

@media screen and (min-width: 769px) {
  .list_type02_title {
    padding: 24px 25px 25px;
  }
}

.list_type02_contents {
  padding: 15px;
}

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

.list_type02_contents p {
  font-weight: 500;
  font-size: 15px;
}

@media screen and (min-width: 769px) {
  .list_type02_contents p {
    font-size: 16px;
  }
}

.list_type02_contents li {
  font-weight: 500;
  font-size: 15px;
}

@media screen and (min-width: 769px) {
  .list_type02_contents li {
    font-size: 16px;
  }
}

.link_bd {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

.link_bd.--blank {
  position: relative;
}

.link_bd.--blank::after {
  content: "\ecaf";
  font-family: "Remixicon";
  position: absolute;
  top: 0;
  right: -20px;
}

.link_bd.--pdf {
  position: relative;
  padding-left: 20px;
}

.link_bd.--pdf::before {
  content: "\f15c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
}

.link_bd:hover {
  opacity: 0.6;
  color: var(--green);
  text-decoration: underline;
}

.map_link {
  text-align: left;
  display: block;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 30px;
}

.map_link::after {
  content: "\ecaf";
  font-family: "Remixicon";
  position: absolute;
  top: 0;
  right: -20px;
}

.list_type03_item {
  align-items: baseline;
  border-bottom: 2px dotted #D3E1C6;
  padding: 15px 0;
}

@media screen and (min-width: 769px) {
  .list_type03_item {
    display: grid;
    align-items: baseline;
    grid-template-columns: 90px 1fr;
    gap: 20px;
  }
}

.list_type03_year {
  font-family: var(--outfit);
  font-weight: bold;
  font-size: 26px;
  color: var(--green);
  letter-spacing: 0.05em;
}

.list_type03_contents {
  display: grid;
  grid-template-columns: 50px 1fr;
}

@media screen and (min-width: 769px) {
  .list_type03_contents {
    grid-template-columns: 60px 1fr;
  }
}

.list_type03_month {
  font-weight: bold;
  letter-spacing: 0.05em;
  color: var(--green);
}

.list_type03_text {
  font-weight: 500;
}

.company02 .sec_first03 .title07 {
  margin-top: 0;
}

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

object/object/project/_recruit.scss

***************************/
.recruit .title04 {
  width: 100%;
}

.recruit .title04:has(img) {
  max-width: 200px;
}

@media screen and (min-width: 769px) {
  .recruit .title04:has(img) {
    max-width: 300px;
  }
}

@media screen and (min-width: 1200px) {
  .recruit .title04:has(img) {
    max-width: 277px;
  }
}

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

@media screen and (min-width: 769px) {
  .recruit_01_wrap {
    gap: 10px;
    flex-direction: row;
    justify-content: space-between;
  }
}

.recruit_01_wrap .title11 {
  width: 100%;
  max-width: 405px;
}

.recruit_01_wrap p {
  width: 100%;
  max-width: 720px;
}

.recruit_01 .title05 {
  position: relative;
  z-index: 5;
}

.message_box {
  background: var(--white);
  padding: 50px 40px;
  border-radius: 5px;
  position: relative;
}

@media screen and (min-width: 1024px) {
  .message_box {
    background: transparent;
    margin-top: -100px;
    background: url(img/recruit/recruit_bg.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
    padding: 200px 230px 100px 127px;
  }
}

.message_text_box {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.message_right {
  position: absolute;
  right: 20px;
  top: -15px;
  width: 100%;
  max-width: 41px;
}

@media screen and (min-width: 1024px) {
  .message_right {
    right: 14%;
    top: 145px;
  }
}

@media screen and (min-width: 1110px) {
  .message_right {
    right: 15%;
    top: 145px;
  }
}

@media screen and (min-width: 1200px) {
  .message_right {
    right: 18%;
    top: 145px;
  }
}

@media screen and (min-width: 1300px) {
  .message_right {
    right: 250px;
  }
}

.message_left {
  position: absolute;
  bottom: -20px;
  left: 10px;
  width: 100%;
  max-width: 63px;
}

@media screen and (min-width: 1024px) {
  .message_left {
    bottom: 85px;
    left: -20px;
  }
}

@media screen and (min-width: 1160px) {
  .message_left {
    bottom: 85px;
    left: 0px;
  }
}

@media screen and (min-width: 1200px) {
  .message_left {
    bottom: 85px;
    left: 80px;
  }
}

.recruit_02_list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

@media screen and (min-width: 769px) {
  .recruit_02_list {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 25px 0;
  }
}

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

.num_img {
  position: absolute;
  top: -15px;
  left: -10px;
}

.recruit_02_wrap {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.recruit_02_wrap .title06 {
  text-align: center;
}

.recruit_02_item {
  position: relative;
  background: var(--green);
  border-radius: 5px;
  padding: 40px 24px;
}

@media screen and (min-width: 769px) {
  .recruit_02_item {
    padding: 70px 45px;
    display: flex;
    align-self: center;
    justify-content: center;
  }

  .recruit_02_item:first-of-type {
    background: url(img/recruit/recruit02_bg01.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    width: 100%;
    max-width: 440px;
  }

  .recruit_02_item:first-of-type .num_img {
    top: 7px;
    left: -6px;
  }

  .recruit_02_item:nth-of-type(2) {
    background: url(img/recruit/recruit02_bg02.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    width: 100%;
    max-width: 400px;
    padding: 125px 45px;
    padding-top: 60px;
  }

  .recruit_02_item:nth-of-type(2) .recruit_02_wrap {
    max-width: 280px;
  }

  .recruit_02_item:nth-of-type(2) .num_img {
    top: 7px;
    left: -6px;
  }

  .recruit_02_item:nth-of-type(3) {
    background: url(img/recruit/recruit02_bg03.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    width: 100%;
    max-width: 405px;
    padding: 100px 45px;
  }

  .recruit_02_item:nth-of-type(3) .recruit_02_wrap {
    max-width: 280px;
  }

  .recruit_02_item:nth-of-type(3) .num_img {
    top: 7px;
    left: 2px;
  }

  .recruit_02_item:nth-of-type(4) {
    background: url(img/recruit/recruit02_bg04.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    width: 100%;
    max-width: 420px;
  }

  .recruit_02_item:nth-of-type(4) .recruit_02_wrap {
    max-width: 260px;
  }

  .recruit_02_item:nth-of-type(5) {
    background: url(img/recruit/recruit02_bg05.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    width: 100%;
    max-width: 400px;
    padding: 85px 45px;
  }

  .recruit_02_item:nth-of-type(5) .num_img {
    top: -10px;
    left: 13px;
  }
}

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

  .recruit_02_item:nth-of-type(4) {
    margin-left: auto;
  }

  .recruit_02_item:nth-of-type(5) {
    margin-right: auto;
  }
}

.recruit_gallery_title {
  color: var(--green);
  background: var(--white);
  border: 2px dotted var(--green);
  border-radius: 24px;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  margin-bottom: 30px;
  position: relative;
}

.recruit_gallery_title::before {
  content: "";
  width: 2px;
  height: 100px;
  border-right: 2px dotted var(--green);
  position: absolute;
  bottom: -80px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}

.list_type04_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.list_type04_item {
  background: #E9F2DF;
  border-radius: 15px;
  padding: 20px;
}

@media screen and (min-width: 769px) {
  .list_type04_item {
    padding: 40px;
    width: 100%;
    max-width: calc(50% - 10px);
  }
}

.list_type04_item p {
  font-weight: 500;
}

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

.link_type02_link {
  display: grid;
  grid-template-columns: 71px 1fr;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: 5px;
  padding: 15px;
  padding-right: 45px;
  position: relative;
}

@media screen and (min-width: 769px) {
  .link_type02_link {
    padding: 28px 30px;
  }
}

.link_type02_link::before {
  content: "";
  background: url(img/common/arrow_w.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 8px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

@media screen and (min-width: 769px) {
  .link_type02_link::before {
    right: 40px;
  }
}

.link_type02_link::after {
  content: "";
  border: 1px solid var(--green);
  width: 36px;
  height: 36px;
  display: block;
  border-radius: 50%;
  background: var(--green);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s;
}

@media screen and (min-width: 769px) {
  .link_type02_link::after {
    right: 30px;
  }
}

.link_type02_link:hover::after {
  border: 1px solid var(--green);
  background: var(--white);
}

.link_type02_link:hover::before {
  background: url(img/common/arrow_g.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 8px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

@media screen and (min-width: 769px) {
  .link_type02_link:hover::before {
    right: 40px;
  }
}

.link_type03_link {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 10px;
  background: var(--white);
  border-radius: 5px;
  padding: 15px;
  padding-right: 65px;
  position: relative;
}

@media screen and (min-width: 769px) {
  .link_type03_link {
    padding: 28px 30px;
    padding-right: 140px;
  }
}

.link_type03_link::before {
  content: "";
  background: url(img/common/arrow_w.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 8px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

@media screen and (min-width: 769px) {
  .link_type03_link::before {
    right: 40px;
  }
}

.link_type03_link::after {
  content: "";
  border: 1px solid var(--green);
  width: 36px;
  height: 36px;
  display: block;
  border-radius: 50%;
  background: var(--green);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s;
}

@media screen and (min-width: 769px) {
  .link_type03_link::after {
    right: 30px;
  }
}

.link_type03_link:hover::after {
  border: 1px solid var(--green);
  background: var(--white);
}

.link_type03_link:hover::before {
  background: url(img/common/arrow_g.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 8px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

@media screen and (min-width: 769px) {
  .link_type03_link:hover::before {
    right: 40px;
  }
}

.link_type02_title {
  font-size: 18px;
}

@media screen and (min-width: 769px) {
  .link_type02_title {
    font-size: 20px;
  }
}

.recruit_link_box {
  gap: 5px 40px;
  margin-top: 30px;
}

.recruit_link_box .btn02 {
  width: 100%;
  max-width: 400px;
}

.recruit_01-detail_wrap {
  background: var(--white);
  border-radius: 5px;
  padding: 40px 30px;
}

.recruit_01-detail_wrap p {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .recruit_01-detail_wrap {
    padding: 80px 100px;
  }
}

.recruit_02-detail .btn_wrap {
  margin-top: 100px;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .recruit_02-detail .btn_wrap {
    margin-top: 120px;
  }
}

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

object/object/project/_business.scss

***************************/
.service_mv {
  background: var(--white);
  position: relative;
  margin-top: 60px;
}

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

.service_mv_img {
  width: 100%;
  max-width: 1470px;
  padding: 0 15px;
  margin: 0 auto;
}

.service_mv_img img {
  border-radius: 2px;
  margin-top: -60px;
}

@media screen and (min-width: 769px) {
  .service_mv_img img {
    margin-top: -80px;
  }
}

.service_line {
  width: 100%;
}

.service_line img {
  width: 100%;
}

.service_line.--top {
  position: absolute;
  top: -20px;
  left: 0;
  z-index: -1;
}

.service_line.--bottom {
  display: flex;
  align-items: flex-end;
}

.service_leadbox {
  width: 100%;
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 15px;
  margin-top: 40px;
  padding-bottom: 100px;
  position: relative;
}

@media screen and (min-width: 769px) {
  .service_leadbox {
    margin-top: 60px;
    padding-bottom: 90px;
  }
}

.service_leadbox p {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 769px) {
  .service_leadbox p {
    font-size: 18px;
  }
}

.business .anchor_wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: -60px;
  position: relative;
  z-index: 5;
}

.link_type03_address {
  font-size: 14px;
  color: #AFBCA0;
}

.table_container {
  margin-top: 30px;
  border: 1px solid #00B761;
  border-radius: 5px;
}

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

.table_wrap {
  width: 1200px;
}

@media screen and (min-width: 769px) {
  .table_wrap {
    width: 100%;
  }
}

.table_wrap th {
  border-right: 1px solid #D3E1C6;
}

.table_wrap tr {
  border-bottom: 1px solid #D3E1C6;
}

.table_wrap tr:first-child th {
  border-radius: 5px 0 0 0;
}

.table_wrap tr:first-child td {
  border-radius: 0 5px 0 0;
}

.table_wrap tr:last-child {
  border-bottom: none;
}

.table_wrap tr:last-child th {
  border-radius: 0 0 0 5px;
}

.table_wrap tr:last-child td {
  border-radius: 0 0 5px 0;
}

.table_wrap th {
  background: #E7F1DC;
  padding: 15px;
  width: 150px;
  text-align: left;
  font-weight: bold;
}

@media screen and (min-width: 769px) {
  .table_wrap th {
    width: 300px;
    padding: 24px;
  }
}

.table_wrap th.w-120 {
  width: 100px !important;
}

@media screen and (min-width: 769px) {
  .table_wrap th.w-120 {
    width: 120px !important;
  }
}

.table_wrap th.w-180 {
  width: 145px !important;
}

@media screen and (min-width: 769px) {
  .table_wrap th.w-180 {
    width: 180px !important;
  }
}

.table_wrap.--type02 th {
  width: 150px;
}

.table_wrap td {
  background: var(--white);
  padding: 15px;
  text-align: left;
  font-weight: 500;
}

@media screen and (min-width: 769px) {
  .table_wrap td {
    padding: 25px;
  }
}

.box_type02 p {
  line-height: 1.5;
}

table th {
  line-height: 1.5;
}

table p {
  line-height: 1.5;
}

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

.flow-type01_item .flow-type01_title {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 10px;
}

.flow-type01_item .num {
  width: 28px;
  height: 28px;
  display: block;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--outfit);
  font-size: 13px;
}

.flow-type01_item .flow_contents {
  padding-left: 38px;
}

.flow-type01_item .flow_contents p {
  letter-spacing: 0.04em;
}

.flow-type01_title {
  font-weight: bold;
  font-size: 18px;
}

.box_type02 {
  background: var(--white);
  border-radius: 5px;
  padding: 30px;
  margin-top: 30px;
}

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

.box_type02 .title07 {
  margin-top: 0;
}

@media screen and (min-width: 769px) {
  .box_type02 .title07 {
    margin-bottom: 40px;
  }
}

.flow-type02_list_wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media screen and (min-width: 769px) {
  .flow-type02_list_wrap {
    flex-direction: row;
    align-items: flex-start;
  }
}


.flow-type02_list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  width: 100%;
}

.flow-type02_list::before {
  content: "";
  width: 4px;
  height: 100%;
  display: block;
  border-right: 5px dotted var(--green);
  position: absolute;
  top: 0;
  left: 35px;
}

.flow-type02_list.--morning::before {
  top: 15px;
}

@media screen and (min-width: 769px) {
  .flow-type02_list.--afternoon {
    margin-top: 15px;
  }

  .flow-type02_list.--afternoon::before {
    top: -15px;
  }
}

.flow-type02_item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

@media screen and (min-width: 769px) {
  .flow-type02_item {
    flex-direction: row;
  }
}

.flow-type02_time {
  font-weight: 600;
  font-family: var(--outfit);
  color: var(--white);
  background: var(--green);
  width: 100%;
  max-width: 85px;
  text-align: center;
  border-radius: 20px;
  margin-right: 20px;
  position: relative;
  z-index: 2;
}



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

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

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

.activity_img {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.activity_img img {
  border-radius: 2px;
}

.activity_textbox {
  width: 100%;
}

/* @media screen and (min-width: 769px) {
  .activity_textbox {
    max-width: calc(100% - 300px);
  }
} */
@media screen and (min-width: 769px) {
  .activity_textbox:has(.activity_img) {
    max-width: calc(100% - 300px);
  }
}


@media screen and (min-width: 769px) {
  .business .box_type01 {
    padding-left: 50px;
    padding-right: 15px;
  }
}

.business .box_type01 .title10 img {
  max-width: 270px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.fc--red {
  color: red;
}

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

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

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

/* 260116 */
.flow-type02_list_wrap.type02{
  margin-top: 20px;
}
.flow-type02_list_wrap.type02 .flow-type02_time {
  max-width: 115px;
}

.flow-type02_list_wrap.type02 .flow-type02_list::before {
  left: 51px;
}

.box_type02_flexbox{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 769px){
  .box_type02_flexbox{
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
/*# sourceMappingURL=style.css.map */
