@charset "UTF-8";
/*共通スタイル*/
/* main colors */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  transition: opacity 0.5s;
}
html.is-loading {
  overflow: hidden;
}

body {
  word-break: break-all;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  font-family: YakuHanJP, "Noto Sans JP", "Noto Sans", sans-serif;
  color: #000000;
  line-height: 1.75;
  font-size: 14px;
  background: #ffffff;
}
@media (min-width: 920px) {
  body {
    font-size: 1.1428571429vw;
  }
}

img,
svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  max-width: 100%;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: pointer !important;
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
ul.disc {
  list-style-type: disc;
  padding-left: 1.5em;
  list-style-position: outside;
}

.site_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.site_body {
  margin-bottom: auto;
}

.container-base {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .container-base {
    padding: 0 7.8571428571vw;
  }
}

.container-middle {
  width: 100%;
  max-width: 1676px;
  padding: 0 20px;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .container-middle {
    padding: 0 min(9.8571428571vw, 138px);
  }
}

.inner_link {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.inner_link::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000000;
  position: absolute;
  bottom: -2px;
  left: 0;
  scale: 0 1;
  transition: scale 0.3s ease-out;
  transform-origin: 100% 0;
}
.inner_link:hover {
  opacity: 1;
  visibility: visible;
}
.inner_link:hover::before {
  scale: 1 1;
  transform-origin: 0 0;
}

.stream_line {
  background-image: linear-gradient(to right, #000000, #000000);
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat;
  line-height: 1.25;
  padding-bottom: 4px;
  width: -moz-fit-content;
  width: fit-content;
}
.stream_line:hover {
  animation: none;
}
@media (min-width: 920px) {
  .stream_line:hover {
    animation: linkLineReverse 0.5s ease forwards;
  }
}
@keyframes linkLineReverse {
  0% {
    background-size: 100% 1px;
    background-position: bottom right;
  }
  50% {
    background-size: 0 1px; /* 幅(100%=文字の長さ) | 高さ(線の太さ) */
    background-position: bottom right;
  }
  51% {
    background-position: bottom left;
  }
  100% {
    background-size: 100% 1px;
  }
}

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

.br_pc {
  display: none;
}
@media (min-width: 920px) {
  .br_pc {
    display: inline-block;
  }
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}
.text-center_pc {
  text-align: left !important;
}
@media (min-width: 920px) {
  .text-center_pc {
    text-align: center !important;
  }
}
.text-center_sp {
  text-align: center !important;
}
@media (min-width: 920px) {
  .text-center_sp {
    text-align: left !important;
  }
}

.icon::before, .icon::after {
  transition: translate 0.2s ease-out, background-color 0.3s;
}
.icon_blank {
  width: 12px;
  height: 12px;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
@media (min-width: 920px) {
  .icon_blank {
    width: 0.8571428571vw;
    height: 0.8571428571vw;
  }
}
.icon_blank::before, .icon_blank::after {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/common/blank.svg);
  mask-image: url(../img/common/blank.svg);
  display: block;
  width: 12px;
  height: 12px;
  background: #ffffff;
  transition: translate 0.2s ease-out;
}
@media (min-width: 920px) {
  .icon_blank::before, .icon_blank::after {
    width: 0.8571428571vw;
    height: 0.8571428571vw;
  }
}
.icon_blank::after {
  position: absolute;
  top: 0;
  left: 0;
  translate: -200% 100%;
}
.icon_arrow {
  width: 20px;
  height: 20px;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
@media (min-width: 920px) {
  .icon_arrow {
    width: 1.7142857143vw;
    height: 1.7142857143vw;
  }
}
.icon_arrow::before, .icon_arrow::after {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/common/arrow.svg);
  mask-image: url(../img/common/arrow.svg);
  display: block;
  width: 20px;
  height: 20px;
  background: #000000;
  transition: translate 0.2s ease-out;
}
@media (min-width: 920px) {
  .icon_arrow::before, .icon_arrow::after {
    width: 1.7142857143vw;
    height: 1.7142857143vw;
  }
}
.icon_arrow::after {
  position: absolute;
  top: 0;
  left: 0;
  translate: -200% 0;
}

.primary {
  color: #58774C;
}

.section_link {
  width: 136px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 8px;
}
@media (min-width: 920px) {
  .section_link {
    width: 11.4285714286vw;
    transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  }
}
.section_link .txt {
  font-weight: 500;
  letter-spacing: 0.04em;
}
.section_link .icon_arrow {
  width: 20px;
  height: 20px;
}
@media (min-width: 920px) {
  .section_link .icon_arrow {
    width: 1.7142857143vw;
    height: 1.7142857143vw;
  }
}
.section_link .icon_arrow::before, .section_link .icon_arrow::after {
  width: 20px;
  height: 20px;
}
@media (min-width: 920px) {
  .section_link .icon_arrow::before, .section_link .icon_arrow::after {
    width: 1.7142857143vw;
    height: 1.7142857143vw;
  }
}
@media (min-width: 920px) {
  .section_link:hover .icon_arrow::before {
    translate: 100% 0;
  }
}
@media (min-width: 920px) {
  .section_link:hover .icon_arrow::after {
    translate: 0 0;
  }
}

.animation {
  display: flex;
  flex-direction: column;
  justify-content: flex-start !important;
  line-height: 1.2;
  position: relative !important;
}

.text-split {
  overflow: hidden;
}
.text-split span {
  display: inline-block;
  min-width: 0.15em;
}

.animation--1 .text-split span {
  transform: translateY(150%);
}
.animation--1 .is-active .text-split span {
  transform: translateY(0);
  transition: transform cubic-bezier(0.7, 0.2, 0.1, 1) 0.8s;
}
.animation--1 .is-active .text-split span:nth-child(1) {
  transition-delay: 0s;
}
.animation--1 .is-active .text-split span:nth-child(2) {
  transition-delay: 0.04s;
}
.animation--1 .is-active .text-split span:nth-child(3) {
  transition-delay: 0.08s;
}
.animation--1 .is-active .text-split span:nth-child(4) {
  transition-delay: 0.12s;
}
.animation--1 .is-active .text-split span:nth-child(5) {
  transition-delay: 0.16s;
}
.animation--1 .is-active .text-split span:nth-child(6) {
  transition-delay: 0.2s;
}
.animation--1 .is-active .text-split span:nth-child(7) {
  transition-delay: 0.24s;
}
.animation--1 .is-active .text-split span:nth-child(8) {
  transition-delay: 0.28s;
}
.animation--1 .is-active .text-split span:nth-child(9) {
  transition-delay: 0.32s;
}
.animation--1 .is-active .text-split span:nth-child(10) {
  transition-delay: 0.36s;
}
.animation--1 .is-active .text-split span:nth-child(11) {
  transition-delay: 0.4s;
}
.animation--1 .is-active .text-split span:nth-child(12) {
  transition-delay: 0.44s;
}
.animation--1 .is-active .text-split span:nth-child(13) {
  transition-delay: 0.48s;
}
.animation--1 .is-active .text-split span:nth-child(14) {
  transition-delay: 0.52s;
}
.animation--1 .is-active .text-split span:nth-child(15) {
  transition-delay: 0.56s;
}
.animation--1 .is-active .text-split span:nth-child(16) {
  transition-delay: 0.6s;
}
.animation--1 .is-active .text-split span:nth-child(17) {
  transition-delay: 0.64s;
}
.animation--1 .is-active .text-split span:nth-child(18) {
  transition-delay: 0.68s;
}
.animation--1 .is-active .text-split span:nth-child(19) {
  transition-delay: 0.72s;
}
.animation--1 .is-active .text-split span:nth-child(20) {
  transition-delay: 0.76s;
}
.animation--1 .is-active .text-split span:nth-child(21) {
  transition-delay: 0.8s;
}
.animation--1 .is-active .text-split span:nth-child(22) {
  transition-delay: 0.84s;
}
.animation--1 .is-active .text-split span:nth-child(23) {
  transition-delay: 0.88s;
}
.animation--1 .is-active .text-split span:nth-child(24) {
  transition-delay: 0.92s;
}
.animation--1 .is-active .text-split span:nth-child(25) {
  transition-delay: 0.96s;
}
.animation--1 .is-active .text-split span:nth-child(26) {
  transition-delay: 1s;
}
.animation--1 .is-active .text-split span:nth-child(27) {
  transition-delay: 1.04s;
}
.animation--1 .is-active .text-split span:nth-child(28) {
  transition-delay: 1.08s;
}
.animation--1 .is-active .text-split span:nth-child(29) {
  transition-delay: 1.12s;
}
.animation--1 .is-active .text-split span:nth-child(30) {
  transition-delay: 1.16s;
}

/*ヘッダーのスタイル*/
.site_header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  position: fixed;
  z-index: 9997;
  transition: 0.5s;
  isolation: isolate;
  mix-blend-mode: difference;
}
@media (min-width: 920px) {
  .site_header {
    padding: 0.7142857143vw 0.8571428571vw 0.7142857143vw 2.8571428571vw;
  }
}
.site_header_logo {
  width: 220px;
  height: 48px;
  display: flex;
  position: relative;
  z-index: 9998;
}
@media (min-width: 920px) {
  .site_header_logo {
    width: 15.7142857143vw;
    height: 3.4285714286vw;
  }
}
.site_header_logo::before {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/common/logo.svg);
  mask-image: url(../img/common/logo.svg);
  display: block;
  width: 220px;
  height: 48px;
  background: #ffffff;
  transition: translate 0.2s ease-out;
}
@media (min-width: 920px) {
  .site_header_logo::before {
    width: 15.7142857143vw;
    height: 3.4285714286vw;
  }
}
.site_header_nav {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
}
@media (min-width: 920px) {
  .site_header_nav {
    gap: 15.5vw;
    padding-right: 28.9285714286vw;
  }
}
.site_header_list {
  display: none;
}
@media (min-width: 920px) {
  .site_header_list {
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 2vw;
  }
}
.site_header_list .inner_link::before {
  background: #ffffff;
}
.site_header_link {
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media (min-width: 920px) {
  .site_header_link {
    mix-blend-mode: difference;
  }
}
.site_header_link-small {
  font-size: 12px;
}
.site_header_link-blank {
  position: relative;
}
.site_header_link-blank .icon_blank {
  position: absolute;
  top: 2px;
  right: -14px;
}
@media (min-width: 920px) {
  .site_header_link-blank .icon_blank {
    width: 0.8571428571vw;
    height: 0.8571428571vw;
    right: -0.8571428571vw;
  }
}
@media (min-width: 920px) {
  .site_header_link-blank .icon_blank::before, .site_header_link-blank .icon_blank::after {
    width: 0.8571428571vw;
    height: 0.8571428571vw;
  }
}
@media (min-width: 920px) {
  .site_header_link-blank:hover .icon_blank::before {
    translate: 200% -100%;
  }
}
@media (min-width: 920px) {
  .site_header_link-blank:hover .icon_blank::after {
    translate: 0 0;
  }
}
.site_header_btn {
  width: 176px;
  height: 47px;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: #58774C;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media (min-width: 920px) {
  .site_header_btn {
    width: 12.5714285714vw;
    height: 3.3571428571vw;
    display: flex;
    position: fixed;
    top: 0.7857142857vw;
    right: 0.8571428571vw;
    z-index: 9997;
  }
}
.site_header_btn .txt {
  font-weight: 500;
  font-size: 1.0714285714vw;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.site_header_btn:hover {
  opacity: 0.75;
}
.site_header_menu {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 9100;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.8);
}
.site_header_menu.active {
  display: block;
  opacity: 1;
  pointer-events: all;
}
.site_header_menu_container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 82px 0 88px;
  background-color: #58774C;
}
.site_header_menu_container .site_header_btn {
  display: flex;
  background-color: #ffffff;
}
.site_header_menu_container .txt {
  font-size: 14px;
  color: #58774C;
}
.site_header_menu_catch {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
}
.site_header_menu_list {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.site_header.active {
  mix-blend-mode: normal;
}

.openbtn {
  width: 40px;
  height: 10px;
  cursor: pointer;
  position: relative;
  z-index: 9998;
  mix-blend-mode: difference;
}
@media (min-width: 920px) {
  .openbtn {
    display: none;
  }
}
.openbtn span {
  display: inline-block;
  transition: all 0.3s; /*アニメーションの設定*/
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.openbtn span:nth-of-type(1) {
  top: 0;
}
.openbtn span:nth-of-type(2) {
  top: 100%;
}
.openbtn.active {
  mix-blend-mode: normal;
}
.openbtn.active span {
  background: #ffffff;
}
.openbtn.active span:nth-of-type(1) {
  transform: translateY(4px) rotate(-12deg);
}
.openbtn.active span:nth-of-type(2) {
  top: 14px;
  transform: translateY(-10px) rotate(12deg);
}

/*フッターのスタイル*/
.site_footer {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: #58774C;
}
.site_footer_content {
  width: 100%;
  height: auto;
  padding: 80px 20px 20px;
  background-image: -webkit-image-set(url(../img/common/footer_bg-sp.jpg) 1x, url(../img/common/footer_bg-sp.jpg) 2x);
  background-image: image-set(url(../img/common/footer_bg-sp.jpg) 1x, url(../img/common/footer_bg-sp.jpg) 2x);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
@media (min-width: 600px) {
  .site_footer_content {
    background-image: -webkit-image-set(url(../img/common/footer_bg.jpg) 1x, url(../img/common/footer_bg.jpg) 2x);
    background-image: image-set(url(../img/common/footer_bg.jpg) 1x, url(../img/common/footer_bg.jpg) 2x);
  }
}
@media (min-width: 600px) and (min-width: 920px) {
  .site_footer_content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 10.2857142857vw 1.5714285714vw 1.7857142857vw 1.7857142857vw;
  }
}
.site_footer_inner {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 25px;
}
@media (min-width: 920px) {
  .site_footer_inner {
    width: -moz-fit-content;
    width: fit-content;
    align-items: flex-start;
    margin: 0 auto;
  }
}
.site_footer_catch {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-bottom: 16px;
}
@media (min-width: 920px) {
  .site_footer_catch {
    font-size: 1.1428571429vw;
    text-align: left;
    margin-bottom: 1.4285714286vw;
  }
}
.site_footer_nav {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
@media (min-width: 920px) {
  .site_footer_nav {
    align-items: flex-start;
    margin-bottom: 2vw;
    gap: 0.8571428571vw;
  }
}
.site_footer_nav .inner_link::before {
  background: #ffffff;
}
.site_footer_link {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  display: flex;
  align-items: flex-start;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: #ffffff;
}
@media (min-width: 920px) {
  .site_footer_link {
    font-size: 1.7142857143vw;
  }
}
.site_footer_link-small {
  font-size: 12px;
  margin: 10px 0 0;
}
@media (min-width: 920px) {
  .site_footer_link-small {
    font-size: 1vw;
    margin: 1.1428571429vw 0 0;
  }
}
.site_footer_link-blank {
  position: relative;
}
.site_footer_link-blank .icon_blank {
  position: absolute;
  top: 2px;
  right: -12px;
}
@media (min-width: 920px) {
  .site_footer_link-blank .icon_blank {
    width: 1.7142857143vw;
    height: 1.7142857143vw;
    top: 0.2857142857vw;
    right: -1.7142857143vw;
  }
}
@media (min-width: 920px) {
  .site_footer_link-blank .icon_blank::before, .site_footer_link-blank .icon_blank::after {
    width: 1.7142857143vw;
    height: 1.7142857143vw;
  }
}
@media (min-width: 920px) {
  .site_footer_link-blank:hover .icon_blank::before {
    translate: 200% -100%;
  }
}
@media (min-width: 920px) {
  .site_footer_link-blank:hover .icon_blank::after {
    translate: 0 0;
  }
}
.site_footer_ttl {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  margin: 20px 0 0;
}
@media (min-width: 920px) {
  .site_footer_ttl {
    margin: 3.2857142857vw 0 0;
  }
}
.site_footer_ttl_jp {
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 920px) {
  .site_footer_ttl_jp {
    font-size: 2.2857142857vw;
    line-height: 1.85;
    letter-spacing: 0.04em;
    text-align: right;
    position: absolute;
    top: 50%;
    right: 3.2857142857vw;
    translate: 0 -50%;
  }
}
.site_footer_ttl_en {
  font-family: "Libre Baskerville", serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.04em;
  text-align: center;
}
@media (min-width: 920px) {
  .site_footer_ttl_en {
    font-size: 8.8571428571vw;
    white-space: nowrap;
  }
}
@media (min-width: 920px) {
  .site_footer_ttl_en-sp {
    display: none;
  }
}
.site_footer_ttl_en-pc {
  display: none;
}
@media (min-width: 920px) {
  .site_footer_ttl_en-pc {
    display: block;
  }
}
.site_footer_other {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #58774C;
  padding: 24px 31px 14px;
  gap: 12px;
}
@media (min-width: 920px) {
  .site_footer_other {
    flex-direction: row;
    justify-content: space-between;
    padding: 0.8571428571vw 1.4285714286vw;
  }
}
.site_footer_other_inner {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 17px;
}
@media (min-width: 920px) {
  .site_footer_other_inner {
    width: -moz-fit-content;
    width: fit-content;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1.7142857143vw;
  }
}
.site_footer_logo {
  width: 180px;
  height: 40px;
  display: flex;
}
@media (min-width: 920px) {
  .site_footer_logo {
    width: 12.8571428571vw;
    height: 2.8571428571vw;
  }
}
.site_footer_logo img {
  width: 100%;
  height: 100%;
}

.pageTop_link {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .pageTop_link {
    margin: 0 auto 0 0;
  }
}
.pageTop_link_text {
  flex: 1 1 0%;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #ffffff;
}
@media (min-width: 920px) {
  .pageTop_link_text {
    font-size: 1vw;
  }
}
.pageTop_link .icon_arrow::before {
  background-color: #ffffff;
  rotate: -90deg;
}

.sns_link {
  width: 32px;
  height: 32px;
  display: flex;
}
@media (min-width: 920px) {
  .sns_link {
    width: 2.2857142857vw;
    height: 2.2857142857vw;
  }
}
.sns_link img {
  width: 100%;
  height: 100%;
}

.copyright {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #ffffff;
  white-space: nowrap;
}
@media (min-width: 920px) {
  .copyright {
    font-size: 0.8571428571vw;
  }
}

.about_content_item {
  padding: 100px 0 80px;
}
@media (min-width: 920px) {
  .about_content_item {
    padding: 14.2857142857vw 0 11.4285714286vw;
  }
}
.about_content_item-gray {
  background-color: #F2F2F2;
}
.about_content_row {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 920px) {
  .about_content_row {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 920px) {
  .about_content_side {
    flex: 0 1 24.2857142857vw;
  }
}
@media (min-width: 920px) {
  .about_content_side_sticky {
    position: sticky;
    top: 8.5714285714vw;
  }
}
.about_content_head {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 920px) {
  .about_content_head {
    gap: 1.7142857143vw;
  }
}
.about_content_head p {
  text-align: justify;
}
.about_content_ttl_en {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
  margin: 0 0 14px;
}
@media (min-width: 920px) {
  .about_content_ttl_en {
    margin: 0 0 1.1428571429vw;
  }
}
.about_content_ttl_jp {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .about_content_ttl_jp {
    font-size: 2.5714285714vw;
  }
}
@media (min-width: 920px) {
  .about_content_main {
    flex: 0 1 47.6428571429vw;
  }
}
.about_content_point {
  margin: 0 0 40px;
}
@media (min-width: 920px) {
  .about_content_point {
    margin: 0 0 5.7142857143vw;
  }
}
.about_content_point:last-child {
  margin: 0;
}
.about_content_point_img {
  width: 100%;
}
@media (min-width: 920px) {
  .about_content_point_img {
    height: 31.7142857143vw;
  }
}
.about_content_point_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.about_content_point_ttl {
  font-weight: 400;
  font-size: 20px;
  display: block;
  margin: 20px 0 16px;
}
@media (min-width: 920px) {
  .about_content_point_ttl {
    font-size: 1.7142857143vw;
    margin: 1.7142857143vw 0 1.4285714286vw;
  }
}
.about_content_point p {
  text-align: justify;
}
.about_content_message {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 0;
  clip-path: inset(0);
}
.about_content_message::before {
  content: "";
  display: block;
  position: fixed;
  inset: 0;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: -webkit-image-set(url(../img/about/message.jpg) 1x, url(../img/about/message@2x.jpg) 2x);
  background-image: image-set(url(../img/about/message.jpg) 1x, url(../img/about/message@2x.jpg) 2x);
  background-size: cover;
}
.about_content_message_container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 0;
}
@media (min-width: 920px) {
  .about_content_message_container {
    height: 61.4285714286vw;
    padding: 17.2857142857vw 0;
  }
}
.about_content_message_txt {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 920px) {
  .about_content_message_txt {
    gap: 2vw;
  }
}
.about_content_message_txt p {
  font-size: 16px;
  line-height: 2;
  text-align: center;
  color: #ffffff;
}
@media (min-width: 920px) {
  .about_content_message_txt p {
    font-size: 1.4285714286vw;
  }
}

.company_content {
  padding: 80px 0;
  border-bottom: 1px solid #E7E7E7;
}
@media (min-width: 920px) {
  .company_content {
    padding: 12vw 0 11.4285714286vw;
  }
}
.company_content_container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.company_content_side {
  display: none;
}
@media (min-width: 920px) {
  .company_content_side {
    display: block;
    flex: 0 1 9.2857142857vw;
  }
}
@media (min-width: 920px) {
  .company_content_side_sticky {
    position: sticky;
    top: 8.5714285714vw;
  }
}
.company_content_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.4285714286vw;
}
.company_content_list li {
  line-height: 1;
}
.company_content_list li a {
  font-weight: 400;
  font-size: 1.7142857143vw;
  line-height: 1.5;
  letter-spacing: 0.04em;
  display: block;
  padding-left: 1.7142857143vw;
  position: relative;
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.company_content_list li a::before {
  content: "";
  position: absolute;
  background-color: #58774C;
  width: 0.5714285714vw;
  height: 0.5714285714vw;
  border-radius: 9999px;
  top: 50%;
  left: 0.4285714286vw;
  translate: 0 -50%;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.company_content_list li a.is-active {
  color: #58774C;
}
.company_content_list li a.is-active::before {
  opacity: 1;
}
@media (min-width: 920px) {
  .company_content_main {
    flex: 0 1 59.8571428571vw;
  }
}
.company_content_item {
  padding: 60px 0 0;
}
@media (min-width: 920px) {
  .company_content_item {
    padding: 8.5714285714vw 0 0;
  }
}
.company_content_item:first-child {
  padding: 0;
}
@media (min-width: 920px) {
  .company_content_item:first-child {
    padding: 8.5714285714vw 0 0;
    margin: -8.5714285714vw 0 0;
  }
}
.company_content_ttl {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 20px;
  border-bottom: 1px solid #000000;
  margin: 0 0 40px;
}
@media (min-width: 920px) {
  .company_content_ttl {
    padding: 0 0 1.4285714286vw;
    margin: 0 0 4.2857142857vw;
  }
}
.company_content_ttl_jp {
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .company_content_ttl_jp {
    font-size: 2.5714285714vw;
  }
}
.company_content_ttl_en {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.message_row {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 920px) {
  .message_row {
    flex-direction: row;
    position: relative;
  }
}
@media (min-width: 920px) {
  .message_txtArea {
    width: 33.7142857143vw;
  }
}
.message_ttl {
  font-weight: 400;
  font-size: 20px;
  line-height: 175%;
  display: block;
  margin: 0 0 20px;
}
@media (min-width: 920px) {
  .message_ttl {
    font-size: 2.8571428571vw;
    margin: 0 0 2.8571428571vw;
  }
}
.message_txt {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 920px) {
  .message_txt {
    gap: 0.8571428571vw;
  }
}
.message_txt p {
  text-align: justify;
  font-feature-settings: "palt" 1;
}
@media (min-width: 920px) {
  .message_txt p {
    line-height: 2;
  }
}
@media (min-width: 920px) {
  .message_ceo {
    width: 30vw;
    position: absolute;
    top: 0;
    right: -7.8571428571vw;
  }
}
.message_ceo img {
  width: 100%;
  height: auto;
}
@media (min-width: 920px) {
  .message_ceo img {
    height: 40vw;
  }
}
.message_profile {
  font-size: 12px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin: 20px 0 0;
}
@media (min-width: 920px) {
  .message_profile {
    font-size: 1vw;
    gap: 1.4285714286vw;
    margin: 2vw 0 0;
  }
}
.message_profile span {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .message_profile span {
    font-size: 1.4285714286vw;
  }
}
@media (min-width: 920px) {
  .message_profile-sp {
    display: none;
  }
}
.message_profile-pc {
  display: none;
}
@media (min-width: 920px) {
  .message_profile-pc {
    display: flex;
  }
}

.profile_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 920px) {
  .profile_list {
    gap: 1.4285714286vw;
  }
}
.profile_list li {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E7E7E7;
}
@media (min-width: 920px) {
  .profile_list li {
    flex-direction: row;
    gap: 7.5714285714vw;
    padding-bottom: 1.4285714286vw;
  }
}
.profile_list_ttl {
  display: block;
}
@media (min-width: 920px) {
  .profile_list_ttl {
    flex: 0 1 10.7142857143vw;
  }
}
@media (min-width: 920px) {
  .profile_list_txt {
    flex: 1 1 0;
  }
}

.history_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 0 50px;
}
@media (min-width: 920px) {
  .history_content {
    gap: 2.8571428571vw;
    padding: 0 0 5vw;
  }
}
.history_content_cell {
  width: 100%;
  display: flex;
  gap: 16px;
}
@media (min-width: 920px) {
  .history_content_cell {
    align-items: center;
    gap: 3.3571428571vw;
  }
}
.history_content_cell-01 .history_content_icon::before, .history_content_cell-04 .history_content_icon::before {
  height: 100px;
}
@media screen and (min-width: 400px) {
  .history_content_cell-01 .history_content_icon::before, .history_content_cell-04 .history_content_icon::before {
    height: 80px;
  }
}
@media (min-width: 920px) {
  .history_content_cell-01 .history_content_icon::before, .history_content_cell-04 .history_content_icon::before {
    height: 5vw;
  }
}
.history_content_cell-05 .history_content_icon::after {
  content: "";
  position: absolute;
  background: url(../img/company/dots.svg) center center no-repeat;
  width: 2px;
  height: 10px;
  bottom: -92px;
  left: 50%;
  translate: -50% 0;
}
@media (min-width: 920px) {
  .history_content_cell-05 .history_content_icon::after {
    bottom: -5.8571428571vw;
  }
}
@media (min-width: 920px) and (min-width: 1200px) {
  .history_content_cell-05 .history_content_icon::after {
    width: 0.1428571429vw;
    height: 0.7142857143vw;
  }
}
.history_content_year {
  flex: 0 1 80px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 920px) {
  .history_content_year {
    flex: 0 1 15.9285714286vw;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.7142857143vw;
  }
}
.history_content_year_number {
  font-family: "Libre Baskerville", serif;
  font-size: 28px;
  line-height: 1;
  display: block;
}
@media (min-width: 920px) {
  .history_content_year_number {
    font-size: 3.4285714286vw;
    display: block;
    flex: 0 1 9.5vw;
  }
}
.history_content_year p {
  line-height: 1;
}
@media (min-width: 920px) {
  .history_content_year p {
    line-height: 1.75;
    flex: 1 1 0;
  }
}
.history_content_icon {
  width: 16px;
  height: 16px;
  flex: 0 1 16px;
  border-radius: 9999px;
  background-color: #58774C;
  position: relative;
}
@media (min-width: 920px) {
  .history_content_icon {
    width: 1.4285714286vw;
    height: 1.4285714286vw;
    flex: 0 1 1.4285714286vw;
  }
}
.history_content_icon::before {
  content: "";
  position: absolute;
  background-color: #58774C;
  width: 2px;
  height: 80px;
  bottom: 0;
  left: 50%;
  translate: -50% 100%;
}
@media (min-width: 920px) {
  .history_content_icon::before {
    height: 5vw;
  }
}
.history_content_event {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 4px;
}
@media (min-width: 920px) {
  .history_content_event {
    flex-direction: row;
    align-items: center;
    gap: 1.4285714286vw;
    padding-left: 0.2857142857vw;
  }
}

.access_content_map {
  width: 100%;
  height: auto;
  margin: 0 0 16px;
}
@media (min-width: 920px) {
  .access_content_map {
    height: 32.7142857143vw;
    margin: 0 0 1.1428571429vw;
  }
}
.access_content_map_inner {
  position: relative;
  padding-bottom: 56.25%;
  height: 100%;
  overflow: hidden;
}
@media (min-width: 920px) {
  .access_content_map_inner {
    padding-bottom: 0;
    height: 32.7142857143vw;
  }
}
.access_content_map_inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.access_content .section_link {
  width: 170px;
}
@media (min-width: 920px) {
  .access_content .section_link {
    width: 13.9285714286vw;
  }
}
@media (min-width: 920px) {
  .access_content .section_link .icon_blank {
    width: 1.1428571429vw;
    height: 1.1428571429vw;
  }
}
.access_content .section_link .icon_blank::before, .access_content .section_link .icon_blank::after {
  background: #000000;
}
@media (min-width: 920px) {
  .access_content .section_link .icon_blank::before, .access_content .section_link .icon_blank::after {
    width: 1.1428571429vw;
    height: 1.1428571429vw;
  }
}

.case_content_column {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 600px) {
  .case_content_column {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (min-width: 600px) and (min-width: 920px) {
  .case_content_column {
    gap: 4.2857142857vw 2.8571428571vw;
  }
}
.case_content_bnr {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 600px) {
  .case_content_bnr {
    width: calc((100% - 32px) / 2);
  }
}
@media (min-width: 600px) and (min-width: 920px) {
  .case_content_bnr {
    width: calc((100% - 2.8571428571vw) / 2);
  }
}
.case_content_bnr_thumb {
  width: 100%;
  height: auto;
  overflow: hidden;
}
@media (min-width: 920px) {
  .case_content_bnr_thumb {
    height: 28.2857142857vw;
    transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  }
}
.case_content_bnr_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.case_content_bnr_txtArea {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 920px) {
  .case_content_bnr_txtArea {
    gap: 1.1428571429vw;
  }
}
.case_content_bnr_txtArea_detail {
  width: 100%;
  display: flex;
  gap: 20px;
}
@media (min-width: 920px) {
  .case_content_bnr_txtArea_detail {
    gap: 2.8571428571vw;
  }
}
.case_content_bnr_ttl {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .case_content_bnr_ttl {
    font-size: 1.4285714286vw;
  }
}
.case_content_bnr_cell {
  width: 60px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #A8A8A8;
}
@media (min-width: 920px) {
  .case_content_bnr_cell {
    width: 5.7142857143vw;
  }
}
.case_content_bnr_cell:nth-child(2) {
  width: 80px;
}
@media (min-width: 920px) {
  .case_content_bnr_cell:nth-child(2) {
    width: 6.4285714286vw;
  }
}
.case_content_bnr_catch {
  font-family: "Libre Baskerville", serif;
  font-size: 10px;
  line-height: 1;
}
@media (min-width: 1200px) {
  .case_content_bnr_catch {
    font-size: 0.7142857143vw;
  }
}
.case_content_bnr_txt {
  font-size: 12px;
  line-height: 1;
}
@media (min-width: 920px) {
  .case_content_bnr_txt {
    font-size: 0.9285714286vw;
    white-space: nowrap;
  }
}
@media (min-width: 920px) {
  .case_content_bnr:hover .case_content_bnr_thumb img {
    scale: 1.07;
  }
}

.case_filter {
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  bottom: 40px;
  right: 40px;
}
@media (min-width: 920px) {
  .case_filter {
    bottom: 5.7857142857vw;
    right: 6.0714285714vw;
  }
}
.case_filter_list li {
  text-align: right;
  line-height: 1.5;
}
.case_filter_list a {
  font-size: 12px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: all 0.3s ease-out;
}
@media (min-width: 920px) {
  .case_filter_list a {
    font-size: 1vw;
  }
}
.case_filter_list a p {
  transition: all 0.3s ease-out;
}
@media (min-width: 920px) {
  .case_filter_list a:hover p {
    font-weight: 700;
    color: #58774C;
  }
}
.case_filter_list a.active p {
  font-weight: 700;
  color: #58774C;
}

@media (min-width: 920px) {
  .subPage_contents-post .subPage_txtArea {
    padding: 10vw 6.0714285714vw 2.8571428571vw;
  }
}
@media (min-width: 920px) {
  .subPage_contents-post .subPage_txtArea_inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 920px) {
  .subPage_contents-post .subPage_ttl {
    margin: 0;
    flex-direction: row;
    align-items: center;
    gap: 1.1428571429vw;
  }
}
@media (min-width: 920px) {
  .subPage_contents-post .subPage_ttl_en {
    font-size: 4.2857142857vw;
  }
}
@media (min-width: 920px) {
  .subPage_contents-post .subPage_ttl_jp {
    font-size: 1.4285714286vw;
  }
}
.subPage_contents-post .subPage_bg_inner {
  padding: 32px 0;
  overflow: hidden;
}
@media (min-width: 920px) {
  .subPage_contents-post .subPage_bg_inner {
    padding: 4.4285714286vw 0 5.7142857143vw;
  }
}

.case_slide {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 0 60px;
}
@media (min-width: 920px) {
  .case_slide {
    gap: 1.4285714286vw;
    margin: 0 0 8.5714285714vw;
  }
}
.case_slide .main-swiper {
  width: 100%;
  height: auto;
  position: relative;
}
.case_slide .main-swiper .swiper-slide {
  height: 48vw;
}
@media (min-width: 920px) {
  .case_slide .main-swiper .swiper-slide {
    width: 72.9285714286vw;
    height: 48.5714285714vw;
  }
}
.case_slide .main-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.case_slide .main-swiper .swiper-button-prev,
.case_slide .main-swiper .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 9999px;
  border: 1px solid #E7E7E7;
  position: absolute;
  top: 50%;
  right: 10px;
  translate: 0 10%;
  cursor: pointer;
}
@media (min-width: 600px) {
  .case_slide .main-swiper .swiper-button-prev,
  .case_slide .main-swiper .swiper-button-next {
    width: 60px;
    height: 60px;
    right: 22px;
    translate: 0 0;
  }
}
@media (min-width: 600px) and (min-width: 920px) {
  .case_slide .main-swiper .swiper-button-prev,
  .case_slide .main-swiper .swiper-button-next {
    width: 5.7142857143vw;
    height: 5.7142857143vw;
    right: 8.4285714286vw;
    translate: 0 -50%;
    transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  }
}
.case_slide .main-swiper .swiper-button-prev::after,
.case_slide .main-swiper .swiper-button-next::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -75% -50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  rotate: 45deg;
}
@media (min-width: 600px) {
  .case_slide .main-swiper .swiper-button-prev::after,
  .case_slide .main-swiper .swiper-button-next::after {
    width: 12px;
    height: 12px;
  }
}
@media (min-width: 600px) and (min-width: 920px) {
  .case_slide .main-swiper .swiper-button-prev::after,
  .case_slide .main-swiper .swiper-button-next::after {
    width: 1vw;
    height: 1vw;
  }
}
@media (min-width: 920px) {
  .case_slide .main-swiper .swiper-button-prev:hover,
  .case_slide .main-swiper .swiper-button-next:hover {
    opacity: 0.75;
  }
}
.case_slide .main-swiper .swiper-button-prev {
  right: auto;
  left: 10px;
}
@media (min-width: 600px) {
  .case_slide .main-swiper .swiper-button-prev {
    left: 22px;
  }
}
@media (min-width: 600px) and (min-width: 920px) {
  .case_slide .main-swiper .swiper-button-prev {
    left: 8.4285714286vw;
  }
}
.case_slide .main-swiper .swiper-button-prev::after {
  translate: -45% -50%;
  rotate: 225deg;
}
.case_slide .thumbnail-swiper {
  width: 100%;
  padding: 0 20px;
}
@media (min-width: 920px) {
  .case_slide .thumbnail-swiper {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding: 0;
  }
}
.case_slide .thumbnail-swiper .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}
@media (min-width: 920px) {
  .case_slide .thumbnail-swiper .swiper-wrapper {
    gap: 0.5714285714vw;
  }
}
.case_slide .thumbnail-swiper .swiper-slide {
  width: 80px;
  height: 40px;
  position: relative;
  cursor: pointer;
}
@media (min-width: 920px) {
  .case_slide .thumbnail-swiper .swiper-slide {
    width: 8.5714285714vw;
    height: 5.7142857143vw;
    transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  }
}
.case_slide .thumbnail-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.case_slide .thumbnail-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  width: 80px;
  height: 40px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media (min-width: 920px) {
  .case_slide .thumbnail-swiper .swiper-slide::after {
    width: 8.5714285714vw;
    height: 5.7142857143vw;
  }
}
@media (min-width: 920px) {
  .case_slide .thumbnail-swiper .swiper-slide:hover::after {
    background-color: transparent;
  }
}
.case_slide .thumbnail-swiper .swiper-slide-thumb-active::after {
  content: none;
}

.case_body {
  padding: 0 20px 60px;
  border-bottom: 1px solid #E7E7E7;
  margin: 0 0 60px;
}
@media (min-width: 920px) {
  .case_body {
    padding: 0 18.2857142857vw 8.5714285714vw;
    margin: 0 auto 6.5714285714vw;
  }
}

.case_head {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 0 40px;
  border-bottom: 1px solid #E7E7E7;
  margin: 0 0 40px;
}
@media (min-width: 920px) {
  .case_head {
    gap: 2vw;
    padding: 0 0 4.2857142857vw;
    margin: 0 0 4.2857142857vw;
  }
}
.case_head .case_content_bnr_ttl {
  line-height: 1.75;
  letter-spacing: 0;
}
@media (min-width: 920px) {
  .case_head .case_content_bnr_ttl {
    font-size: 2.5vw;
  }
}
.case_head .case_content_bnr_cell {
  color: #000000;
}
@media (min-width: 920px) {
  .case_head .case_content_bnr_catch {
    font-size: 0.8571428571vw;
  }
}
@media (min-width: 920px) {
  .case_head .case_content_bnr_txt {
    font-size: 1vw;
  }
}

.case_txt {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 920px) {
  .case_txt {
    gap: 0.8571428571vw;
  }
}
.case_txt p {
  text-align: justify;
}
@media (min-width: 920px) {
  .case_txt p {
    line-height: 2;
  }
}

@media (min-width: 920px) {
  .case_recommend .container-base {
    padding: 0 6.0714285714vw;
  }
}
.case_recommend_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 920px) {
  .case_recommend_container {
    gap: 2.8571428571vw;
  }
}
.case_recommend_head {
  display: contents;
}
@media (min-width: 920px) {
  .case_recommend_head {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.case_recommend_head .section_link {
  width: 180px;
  margin: 0 auto;
  order: 2;
}
@media (min-width: 920px) {
  .case_recommend_head .section_link {
    width: 17.1428571429vw;
    margin: 0;
  }
}
.case_recommend_ttl_en {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.25;
  display: block;
}
@media (min-width: 920px) {
  .case_recommend_ttl_en {
    font-size: 2.8571428571vw;
  }
}
.case_recommend_ttl_jp {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .case_recommend_ttl_jp {
    font-size: 1.4285714286vw;
  }
}
.case_recommend_slide .swiper {
  overflow: visible;
}
.case_recommend_slide .swiper-controller {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 16px 0 0;
}
@media (min-width: 920px) {
  .case_recommend_slide .swiper-controller {
    gap: 1.4285714286vw;
    margin: 1.4285714286vw 0 0;
  }
}
.case_recommend_slide .swiper-progressbar {
  width: 100%;
  position: relative;
  height: 6px;
  border-radius: 4px;
  background: #E7E7E7;
  overflow: hidden;
  flex: 1 1 0;
}
@media (min-width: 920px) {
  .case_recommend_slide .swiper-progressbar {
    height: 8px;
  }
}
.case_recommend_slide .swiper-scrollbar-drag {
  background-color: #58774C;
}
.case_recommend_slide .swiper-nav {
  flex: 0 1 72px;
  height: 32px;
  position: relative;
}
@media (min-width: 920px) {
  .case_recommend_slide .swiper-nav {
    flex: 0 1 7.4285714286vw;
    height: 3.4285714286vw;
  }
}
.case_recommend_slide .swiper-nav .swiper-button-prev,
.case_recommend_slide .swiper-nav .swiper-button-next {
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  border-radius: 9999px;
  border: 1px solid #E7E7E7;
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 20%;
  cursor: pointer;
}
@media (min-width: 920px) {
  .case_recommend_slide .swiper-nav .swiper-button-prev,
  .case_recommend_slide .swiper-nav .swiper-button-next {
    width: 3.4285714286vw;
    height: 3.4285714286vw;
    translate: 0 -10%;
    transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  }
}
.case_recommend_slide .swiper-nav .swiper-button-prev::after,
.case_recommend_slide .swiper-nav .swiper-button-next::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -70% -50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  rotate: 45deg;
}
@media (min-width: 920px) {
  .case_recommend_slide .swiper-nav .swiper-button-prev::after,
  .case_recommend_slide .swiper-nav .swiper-button-next::after {
    width: 0.8571428571vw;
    height: 0.8571428571vw;
  }
}
@media (min-width: 920px) {
  .case_recommend_slide .swiper-nav .swiper-button-prev:hover,
  .case_recommend_slide .swiper-nav .swiper-button-next:hover {
    background-color: #58774C;
  }
}
@media (min-width: 920px) {
  .case_recommend_slide .swiper-nav .swiper-button-prev:hover::after,
  .case_recommend_slide .swiper-nav .swiper-button-next:hover::after {
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
  }
}
.case_recommend_slide .swiper-nav .swiper-button-prev {
  right: auto;
  left: 0;
}
.case_recommend_slide .swiper-nav .swiper-button-prev::after {
  translate: -40% -50%;
  rotate: 225deg;
}
.case_recommend_bnr {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 920px) {
  .case_recommend_bnr {
    gap: 1.1428571429vw;
    transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  }
}
.case_recommend_bnr_thumb {
  width: 100%;
  height: auto;
  overflow: hidden;
}
@media (min-width: 920px) {
  .case_recommend_bnr_thumb {
    height: 20.7142857143vw;
    transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  }
}
.case_recommend_bnr_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.case_recommend_bnr_catch {
  font-size: 16px;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .case_recommend_bnr_catch {
    font-size: 1.4285714286vw;
  }
}
@media (min-width: 920px) {
  .case_recommend_bnr:hover .case_recommend_bnr_thumb img {
    scale: 1.07;
  }
}

.title_en {
  font-family: "Libre Baskerville", serif;
  font-size: 16px;
  color: #58774C;
  margin-bottom: 18px;
  line-height: 1;
}
@media (min-width: 920px) {
  .title_en {
    font-size: 1.1428571429vw;
    margin-bottom: 1.5714285714vw;
  }
}

.title_ja {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
}
@media (min-width: 920px) {
  .title_ja {
    font-size: 3.4285714286vw;
    margin-bottom: 2.8571428571vw;
  }
}

.spacer {
  margin-bottom: 15px;
  display: block;
  line-height: 1.5;
}
.spacer_narrow {
  margin-bottom: 8px;
  display: block;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .spacer_narrow {
    line-height: 1.75;
    margin-bottom: 1vw;
  }
}

/* ----------------------------------------------------------- */
.mv {
  width: 100%;
  position: relative;
  margin-bottom: 48px;
}
@media (min-width: 920px) {
  .mv {
    margin-bottom: 6.8571428571vw;
  }
}
.mv_img {
  width: 100%;
}
.mv_img img {
  width: 100%;
}
.mv_catch {
  position: absolute;
  bottom: 63px;
  left: 14px;
}
@media (min-width: 920px) {
  .mv_catch {
    bottom: 23.2857142857vw;
    left: 2.8571428571vw;
  }
}
.mv_catch_top {
  font-family: "Libre Baskerville", serif;
  font-size: 16px;
}
@media (min-width: 920px) {
  .mv_catch_top {
    font-size: 1.7142857143vw;
  }
}
.mv_catch_bottom {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.025em;
}
@media (min-width: 920px) {
  .mv_catch_bottom {
    font-size: 2.8571428571vw;
  }
}

.scroll_down {
  display: block;
  left: 14px;
  text-align: center;
  bottom: 20px;
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 920px) {
  .scroll_down {
    left: 2.8571428571vw;
    bottom: 2.8571428571vw;
  }
}
.scroll_down p {
  font-family: "Libre Baskerville", serif;
  font-size: 12px;
}
@media (min-width: 920px) {
  .scroll_down p {
    font-size: 1vw;
  }
}
.scroll_down a {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 18px;
  font-size: 14px;
}
@media (min-width: 920px) {
  .scroll_down a {
    gap: 0.5714285714vw;
    font-size: 1vw;
  }
}
.scroll_down .mouse {
  position: relative;
  display: block;
  width: 10px;
  height: 20px;
  border: 2px solid #000;
  border-radius: 23px;
}
@media (min-width: 920px) {
  .scroll_down .mouse {
    width: 0.8571428571vw;
    height: 1.7142857143vw;
    border-radius: 1.6428571429vw;
  }
}
.scroll_down .mouse > * {
  position: absolute;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #000;
  border-radius: 50%;
  animation: ani-mouse 1.5s linear infinite;
}
@media (min-width: 920px) {
  .scroll_down .mouse > * {
    width: 0.4285714286vw;
    height: 0.4285714286vw;
  }
}
@keyframes ani-mouse {
  0% {
    top: 10%;
    opacity: 1;
  }
  100% {
    top: 90%;
    opacity: 0;
  }
}

.catch_slider span {
  font-family: "Libre Baskerville", serif;
  line-height: 1;
  font-size: 80px;
  color: #58774C;
}
@media (min-width: 920px) {
  .catch_slider span {
    font-size: 8.5714285714vw;
  }
}
.catch_slider .swiper-wrapper {
  transition-timing-function: linear;
}
.catch_slider .swiper-slide {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  white-space: nowrap;
}

.family_section {
  padding-top: 48px;
}
@media (min-width: 920px) {
  .family_section {
    padding-top: 6.7857142857vw;
  }
}
.family_section_contents {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
  align-items: center;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .family_section_contents {
    flex-direction: row;
    gap: 7.2142857143vw;
  }
}
.family_section_contents_img {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .family_section_contents_img {
    width: 37.2142857143vw;
    max-width: 100%;
    margin: 0;
  }
}
.family_section_contents_img img {
  width: 100%;
}
.family_section_contents_text {
  padding: 0 20px;
}
@media (min-width: 920px) {
  .family_section_contents_text {
    padding: 0.3571428571vw 1.4285714286vw 0 0;
  }
}
.family_section_contents_text_top {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .family_section_contents_text_top {
    font-size: 2.5714285714vw;
    margin-bottom: 2.8571428571vw;
  }
}
.family_section_contents_text_inr {
  font-size: 16px;
  margin-bottom: 18px;
  letter-spacing: 0.025em;
  text-align: justify;
}
@media (min-width: 920px) {
  .family_section_contents_text_inr {
    font-size: 1.1428571429vw;
    margin-bottom: 1.4285714286vw;
  }
}
.family_section_contents_text_inr:last-child {
  margin-bottom: 0;
}

.works {
  padding-top: 80px;
}
@media (min-width: 920px) {
  .works {
    padding-top: 14.2857142857vw;
  }
}
.works_body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (min-width: 920px) {
  .works_body {
    flex-direction: row;
    justify-content: space-between;
    gap: 2.8571428571vw;
  }
}
.works_body_text {
  height: -moz-fit-content;
  height: fit-content;
}
@media (min-width: 920px) {
  .works_body_text {
    position: sticky;
    top: 8.5714285714vw;
  }
}
.works_body_text_inr {
  font-size: 16px;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .works_body_text_inr {
    font-size: 1.1428571429vw;
    line-height: 2;
  }
}
.works_body_content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 920px) {
  .works_body_content {
    gap: 2.8571428571vw;
  }
}
.works_body_content_item {
  position: relative;
}
@media (min-width: 920px) {
  .works_body_content_item {
    width: 47.6428571429vw;
  }
}
.works_body_content_item_img {
  width: 100%;
  height: auto;
  position: relative;
}
.works_body_content_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.works_body_content_item_catch {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (min-width: 920px) {
  .works_body_content_item_catch {
    bottom: 7.7142857143vw;
    left: 1.4285714286vw;
  }
}
.works_body_content_item_catch_inr {
  font-size: 20px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  line-height: 1;
  padding: 6px;
  background-color: rgb(0, 0, 0);
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 920px) {
  .works_body_content_item_catch_inr {
    font-size: 2.8571428571vw;
    padding: 10px 8px;
  }
}
.works_body_content_item_text {
  position: unset;
  padding: 0;
  margin-top: 8px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 920px) {
  .works_body_content_item_text {
    position: absolute;
    padding: 4px 8px;
    margin-top: 0;
    bottom: 1.7142857143vw;
    left: 1.4285714286vw;
    background-color: #ffffff;
  }
}
.works_body_content_item_text_inr {
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
}
@media (min-width: 920px) {
  .works_body_content_item_text_inr {
    font-size: 1.1428571429vw;
    line-height: 1.75;
  }
}
.works_body_content_item_num {
  position: absolute;
  top: 6px;
  left: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 920px) {
  .works_body_content_item_num {
    top: 2vw;
    left: 1.4285714286vw;
    font-size: 1.7142857143vw;
  }
}
.works_body_content_item_num .strong {
  font-size: 28px;
  line-height: 1;
}
@media (min-width: 920px) {
  .works_body_content_item_num .strong {
    font-size: 2.8571428571vw;
  }
}
.works_body_content_item .color {
  color: #ffffff;
}
.works_body_content_item .color .strong {
  color: #ffffff;
}

.entry {
  padding-top: 80px;
}
@media (min-width: 920px) {
  .entry {
    padding-top: 11.4285714286vw;
  }
}
.entry-end {
  margin: 0 0 80px;
}
@media (min-width: 920px) {
  .entry-end {
    margin: 0 0 8.5714285714vw;
  }
}
.entry_body {
  background: url(../img/recruit/entry_sp@2x.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  border-radius: 16px;
  margin: 0 auto;
  padding: 196px 20px 36px 20px;
  max-width: 458px;
}
@media (min-width: 920px) {
  .entry_body {
    background: url(../img/recruit/entry@2x.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 5.9285714286vw 8.5714285714vw;
    max-width: none;
  }
}
.entry_body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgb(88, 119, 76) 30%, rgba(88, 119, 76, 0) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
  border-radius: 0 0 18px 18px;
}
@media (min-width: 920px) {
  .entry_body::before {
    background: linear-gradient(to right, rgb(88, 119, 76) 30%, rgba(88, 119, 76, 0) 100%);
    width: 64%;
    border-radius: 20px 0 0 20px;
  }
}
.entry_body_en {
  color: #ffffff;
  font-family: "Libre Baskerville", serif;
  font-size: 12px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
@media (min-width: 920px) {
  .entry_body_en {
    font-size: 1.1428571429vw;
    margin-bottom: 0.5714285714vw;
  }
}
.entry_body_ja {
  color: #ffffff;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
@media (min-width: 920px) {
  .entry_body_ja {
    font-size: 2.2857142857vw;
    margin-bottom: 3.4285714286vw;
  }
}
.entry_body_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
@media (min-width: 920px) {
  .entry_body_btn {
    align-items: flex-start;
    gap: 22px;
  }
}
.entry_body_btn_item {
  display: inline-block;
  padding: 24px 16px;
  background-color: #ffffff;
  border-radius: 8px;
  width: 100%;
  max-width: 379px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
@media (min-width: 920px) {
  .entry_body_btn_item {
    background-color: transparent;
    border: 2px solid #ffffff;
    padding: 2.5714285714vw 2vw;
    border-radius: 8px;
    width: 27.0714285714vw;
    max-width: 100%;
  }
}
.entry_body_btn_item_inr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}
.entry_body_btn_item_inr_text {
  color: #58774C;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .entry_body_btn_item_inr_text {
    font-size: 1.4285714286vw;
    color: #ffffff;
  }
}
.entry_body_btn_item_inr_notes {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #58774C;
}
@media (min-width: 920px) {
  .entry_body_btn_item_inr_notes {
    color: #ffffff;
  }
}
.entry_body_btn_item_inr_notes picture, .entry_body_btn_item_inr_notes img {
  width: 12px;
  height: 12px;
  flex: 0 1 12px;
  display: flex;
}
@media (min-width: 920px) {
  .entry_body_btn_item_inr_notes picture, .entry_body_btn_item_inr_notes img {
    width: 1.1428571429vw;
    height: 1.1428571429vw;
    flex: 0 1 1.1428571429vw;
  }
}
.entry_body_btn_item_inr_notes span {
  flex: 1 1 0;
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .entry_body_btn_item_inr_notes span {
    font-size: 0.8571428571vw;
  }
}
@media (min-width: 920px) {
  .entry_body_btn_item:hover {
    background-color: #58774C;
    border-color: #58774C;
  }
}

.recruitment {
  padding-top: 80px;
}
@media (min-width: 920px) {
  .recruitment {
    padding-top: 11.4285714286vw;
  }
}
.recruitment dl {
  display: grid;
  grid-template-columns: 1fr;
  padding: 20px 24px 40px;
  margin-top: 40px;
  margin-left: 0;
  background-color: rgb(235, 240, 233);
  margin-bottom: 0;
  width: 100%;
}
@media (min-width: 920px) {
  .recruitment dl {
    grid-template-columns: 32% 1fr;
    padding: 1.7857142857vw 4.2857142857vw 4.2857142857vw;
    margin-top: 4.2857142857vw;
    margin-left: auto;
    width: 100%;
    max-width: 72.0714285714vw;
  }
}
.recruitment dl dt {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.75;
  padding: 24px 0 6px;
  padding: 20px 0 0 0;
}
@media (min-width: 920px) {
  .recruitment dl dt {
    border-bottom: 1px solid rgb(212, 212, 212);
    font-size: 1.4285714286vw;
    padding: 1.7142857143vw 0 0.4285714286vw;
    padding: 2.8571428571vw 0;
  }
}
.recruitment dl dd {
  border-bottom: 1px solid rgb(212, 212, 212);
  font-size: 16px;
  line-height: 1.5;
  padding: 8px 0 20px 0;
  margin-left: 0;
}
@media (min-width: 920px) {
  .recruitment dl dd {
    font-size: 1.1428571429vw;
    padding: 2.5714285714vw 0 2.8571428571vw 0;
  }
}
.recruitment dl dd .tel {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
}
@media (min-width: 920px) {
  .recruitment dl dd .tel {
    font-size: 1.4285714286vw;
    margin-bottom: 0;
  }
}

.link {
  color: #58774C;
}

@keyframes linkLineReverse {
  0% {
    background-size: 100% 1px;
    background-position: bottom right;
  }
  50% {
    background-size: 0 1px;
    background-position: bottom right;
  }
  51% {
    background-position: bottom left;
  }
  100% {
    background-size: 100% 1px;
  }
}
.link_line {
  position: relative;
  background-image: linear-gradient(to right, #58774C, #58774C);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: bottom left;
  transition: all 0.3s ease;
}

.link_line:hover {
  animation: linkLineReverse 0.5s ease forwards;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 920px) {
  .list {
    display: block;
  }
}
.list li {
  position: relative;
  padding-left: 16px;
  line-height: 1.2;
}
@media (min-width: 920px) {
  .list li {
    padding-left: 1.2857142857vw;
    line-height: 1.5;
  }
}
.list li::before {
  position: absolute;
  top: 4px;
  left: 0;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #000000;
}
@media (min-width: 920px) {
  .list li::before {
    top: 0.5vw;
    width: 0.8571428571vw;
    height: 0.8571428571vw;
  }
}
.list li .small {
  font-size: 12px;
  line-height: 1;
}
@media (min-width: 920px) {
  .list li .small {
    font-size: 0.8571428571vw;
  }
}
.list li:has(.small) {
  line-height: 1.25 !important;
}

.has_caution::before {
  position: absolute;
  top: 5px;
  left: 0;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgb(0, 0, 0);
}
@media (min-width: 920px) {
  .has_caution::before {
    top: 0.3571428571vw;
    width: 0.8571428571vw;
    height: 0.8571428571vw;
  }
}

.dot_small li::before {
  width: 4px;
  height: 4px;
  top: 11px;
  left: 4px;
}
@media (min-width: 920px) {
  .dot_small li::before {
    width: 0.2857142857vw;
    height: 0.2857142857vw;
    top: 0.8571428571vw;
    left: 0.2857142857vw;
  }
}

.dot_small .has_caution::before {
  width: 4px;
  height: 4px;
  top: 8px;
  left: 4px;
}
@media (min-width: 920px) {
  .dot_small .has_caution::before {
    width: 0.2857142857vw;
    height: 0.2857142857vw;
    top: 0.5714285714vw;
    left: 0.2857142857vw;
  }
}
.dot_small li {
  line-height: 1.5;
}
@media (min-width: 920px) {
  .dot_small li {
    line-height: 1.85;
  }
}

.recruitment .strong {
  display: block;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 6px;
}
@media (min-width: 920px) {
  .recruitment .strong {
    margin-bottom: 0;
  }
}

@media (min-width: 920px) {
  .contact_body {
    width: 47.6428571429vw;
    margin: 0 auto;
  }
}

.contact_head {
  margin: 0 0 40px;
}
@media (min-width: 920px) {
  .contact_head {
    margin: 0 0 4.2857142857vw;
  }
}
.contact_head p {
  text-align: justify;
}
@media (min-width: 920px) {
  .contact_head p {
    line-height: 2;
  }
}
.contact_head p .stream_line {
  color: #58774C;
  background-image: linear-gradient(to right, #58774C, #58774C);
  padding-bottom: 0;
}

.form_list {
  margin: 0 0 40px;
}
@media (min-width: 920px) {
  .form_list {
    margin: 0 0 4.2857142857vw;
  }
}
.form_label {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
@media (min-width: 920px) {
  .form_label {
    gap: 0.5714285714vw;
    margin-bottom: 1.1428571429vw;
    font-size: 1.0714285714vw;
  }
}
.form_label .required,
.form_label .nini {
  line-height: 1;
  font-size: 10px;
  padding: 4px 6px;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
}
@media (min-width: 920px) {
  .form_label .required,
  .form_label .nini {
    font-size: 0.9285714286vw;
  }
}
@media (min-width: 920px) and (min-width: 1200px) {
  .form_label .required,
  .form_label .nini {
    padding: 0.3571428571vw 0.4285714286vw;
  }
}
.form_label .required {
  background: #D20D00;
}
.form_label .nini {
  background: #DEDEDE;
  color: #000000;
}
.form_container {
  margin-bottom: 24px;
}
@media (min-width: 920px) {
  .form_container {
    margin-bottom: 2.8571428571vw;
  }
}
.form_row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 920px) {
  .form_row {
    flex-direction: row;
    gap: 1.1428571429vw;
  }
}
.form_row > p {
  display: none;
}
.form_row-number {
  gap: 24px;
  position: relative;
}
@media (min-width: 920px) {
  .form_row-number {
    gap: 2.2857142857vw;
  }
}
.form_row-address {
  flex-direction: column;
  gap: 0;
}
@media (min-width: 920px) {
  .form_row-address {
    gap: 8px;
  }
}
.form_column {
  display: flex;
  flex-direction: column;
  gap: 0 8px;
}
@media (min-width: 920px) {
  .form_column {
    gap: 0 0.5714285714vw;
  }
}
.form_schedule-top {
  margin: 0 0 12px;
}
@media (min-width: 920px) {
  .form_schedule-top {
    margin: 0 0 0.8571428571vw;
  }
}
.form_schedule_label {
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 8px;
}
@media (min-width: 920px) {
  .form_schedule_label {
    margin: 0 0 0.5714285714vw;
  }
}
.form_col-same {
  flex: 1 1 0;
}
.form_col-auto {
  flex: 1 1 0;
}
.form_row-number .form_col {
  flex: 1 1 0;
}
.form_row-number .form_col + .form_col {
  position: relative;
}
.form_row-number .form_col + .form_col::before {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background: #000000;
  position: absolute;
  left: -4px;
  top: 50%;
  translate: -100% 0;
}
@media (min-width: 920px) {
  .form_row-number .form_col + .form_col::before {
    left: -8px;
  }
}
.mw_wp_form_confirm .form_row-number .form_col + .form_col::before {
  width: 8px;
  left: -8px;
}
.form_input_wrap + .form_input_wrap {
  margin-top: 8px;
}
.form_input_wrap:has(.formError) .form_input_error, .form_input_wrap:has(.error) .form_input_error {
  color: #D20D00;
}
.form_input_box {
  position: relative;
  background: #F7F7F7;
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #000000;
  justify-content: space-between;
}
.form_input_box input,
.form_input_box select,
.form_input_box textarea {
  border: none;
  background: transparent;
  padding: 14px 12px;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 16px;
}
@media (min-width: 920px) {
  .form_input_box input,
  .form_input_box select,
  .form_input_box textarea {
    padding: 1.1428571429vw;
    font-size: 1.0714285714vw;
  }
}
.form_input_box select {
  cursor: pointer;
}
.form_input_box textarea {
  width: 100%;
  flex: 1 1 0;
}
.form_input_box:has(.form_input_label) input,
.form_input_box:has(.form_input_label) select {
  padding: 20px 12px 4px;
}
@media (min-width: 920px) {
  .form_input_box:has(.form_input_label) input,
  .form_input_box:has(.form_input_label) select {
    padding-right: 3.4285714286vw;
  }
}
.form_input_box:has(.formError), .form_input_box:has(.error) {
  background: #F2E6E6;
  border-bottom-color: #D20D00;
}
.form_input_box:has(.formError)::after, .form_input_box:has(.error)::after {
  background-color: #D20D00;
}
.form_input_box:has(.formError) .form_input_label, .form_input_box:has(.error) .form_input_label {
  color: #D20D00;
}
.form_input_box-postal {
  width: 150px;
}
@media (min-width: 920px) {
  .form_input_box-postal {
    width: 10.7142857143vw;
  }
}
.form_input_box-address {
  width: 229px;
  position: relative;
}
@media (min-width: 920px) {
  .form_input_box-address {
    width: 100%;
    flex: 0 1 16.3571428571vw;
  }
}
.form_input_box-address::before {
  content: "";
  position: absolute;
  background: url(../img/common/selecter.svg) center center no-repeat;
  background-size: 100%;
  top: 50%;
  right: 12px;
  translate: 0 -50%;
  width: 16px;
  height: 16px;
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 920px) {
  .form_input_box-address::before {
    right: 0.8571428571vw;
  }
}
@media (min-width: 920px) and (min-width: 1200px) {
  .form_input_box-address::before {
    width: 1.7142857143vw;
    height: 1.7142857143vw;
  }
}
.form_input_box-city {
  position: relative;
}
@media (min-width: 920px) {
  .form_input_box-city {
    flex: 1 1 0;
  }
}
.form_input_box-city::before {
  content: "市区町村以下";
  position: absolute;
  font-size: 10px;
  top: 6px;
  left: 12px;
  z-index: 1;
}
@media (min-width: 920px) {
  .form_input_box-city::before {
    font-size: 0.8571428571vw;
    top: 0.5714285714vw;
    left: 1.1428571429vw;
  }
}
.form_input_box-city input {
  padding: 20px 12px 8px;
}
@media (min-width: 920px) {
  .form_input_box-city input {
    padding: 1.7142857143vw 1.1428571429vw 0.5714285714vw;
  }
}
.form_input_box .error {
  font-size: 10px !important;
  color: #B70000;
  display: block;
  position: absolute;
  top: 56px;
}
@media (min-width: 920px) {
  .form_input_box .error {
    top: 4.2857142857vw;
    font-size: 0.8571428571vw !important;
  }
}
.form_input_select {
  width: 100%;
  position: relative;
}
.form_input_select::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 14px;
  translate: 0 -55%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  rotate: 135deg;
}
@media (min-width: 920px) {
  .form_input_select::after {
    right: 1.2142857143vw;
  }
}
@media (min-width: 920px) and (min-width: 1200px) {
  .form_input_select::after {
    width: 0.7142857143vw;
    height: 0.7142857143vw;
  }
}
.form_input_check {
  width: 100%;
  position: relative;
}
.form_input_radio {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.form_input_radio .horizontal-item + .horizontal-item {
  margin: 0 !important;
}
.form_input_radio input[type=radio] {
  accent-color: #202020;
}
.form_input_label {
  font-size: 11px;
  position: absolute;
  top: 4px;
  left: 12px;
}
.mw_wp_form_confirm .form_input_label {
  display: none;
}
.form_input_icon {
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  padding: 0 12px;
}
@media (max-width: 919px) {
  .form_input_icon {
    display: none;
  }
}
.mw_wp_form_confirm .form_input_icon {
  display: none;
}
.form_input_error {
  font-size: 10px;
  margin-top: 4px;
  line-height: 1.35;
  display: block;
}
@media (min-width: 920px) {
  .form_input_error {
    font-size: 12px;
  }
}
.form_row-number .form_input_error {
  position: absolute;
  bottom: 0;
  left: 0;
}
.form_row-number:has(.formError) .form_input_error, .form_row-number:has(.error) .form_input_error {
  color: #D20D00;
}
.mw_wp_form_confirm .form_input_error {
  display: none;
}
.form_policy {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  margin: 0 0 40px;
}
@media (min-width: 920px) {
  .form_policy {
    gap: 1.7142857143vw;
    margin: 0 0 4.2857142857vw;
  }
}
.form_policy_text {
  line-height: 1.5;
}
@media (min-width: 920px) {
  .form_policy_text {
    font-size: 1.0714285714vw;
  }
}
.form_policy_text .stream_line {
  padding-bottom: 0;
}
.form_policy_check {
  line-height: 1.5;
}
@media (min-width: 920px) {
  .form_policy_check {
    font-size: 1.0714285714vw;
  }
}
.form_submit {
  text-align: center;
}
.form_submit .form-submit {
  width: 100%;
  height: 60px;
  max-width: 300px;
  border: none;
  background-color: #F7F7F7;
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  color: #000000;
  pointer-events: none; /* 押せなくする */
}
@media (min-width: 920px) {
  .form_submit .form-submit {
    width: 21.4285714286vw;
    height: 5.3571428571vw;
    max-width: 100%;
    font-size: 1.2857142857vw;
    transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  }
}
@media (min-width: 920px) {
  .form_submit .form-submit:hover {
    opacity: 0.75;
  }
}
.form_submit .form-submit.is-active {
  pointer-events: auto;
  background-color: #58774C;
  color: #ffffff;
}

.thanks_contents {
  padding: 160px 0 20px;
}
@media (min-width: 920px) {
  .thanks_contents {
    padding: 14.2857142857vw 0 1.4285714286vw;
  }
}
@media (min-width: 920px) {
  .thanks_contents .container-base {
    padding: 0 6.0714285714vw;
  }
}
.thanks_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 636px;
  margin: 0 auto 80px;
}
@media (min-width: 920px) {
  .thanks_container {
    width: 45.4285714286vw;
    max-width: 100%;
    margin: 0 auto 8.5714285714vw;
  }
}
.thanks_container p {
  text-align: center;
  display: block;
  margin: 24px 0;
}
@media (min-width: 920px) {
  .thanks_container p {
    line-height: 2;
    margin: 2.8571428571vw 0;
  }
}
.thanks_container .section_link {
  width: 160px;
  margin: 24px auto 0;
}
@media (min-width: 920px) {
  .thanks_container .section_link {
    width: 12.7857142857vw;
    margin: 2.8571428571vw auto 0;
  }
}
.thanks_container .txt {
  margin: 0;
}
.thanks_head {
  text-align: center;
}
.thanks_head_img {
  width: 100%;
  height: auto;
  max-width: 377px;
  display: block;
  margin: 0 auto 1rem;
}
@media (min-width: 920px) {
  .thanks_head_img {
    width: 26.9285714286vw;
    max-width: 100%;
    margin: 0 auto 1.1428571429vw;
  }
}
.thanks_head_ttl {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-align: center;
  color: #58774C;
}
@media (min-width: 920px) {
  .thanks_head_ttl {
    font-size: 1.7142857143vw;
  }
}
.thanks_info {
  width: 100%;
  height: auto;
  background-color: #F7F7F7;
  border-radius: 4px;
  padding: 20px;
}
@media (min-width: 920px) {
  .thanks_info {
    padding: 2.8571428571vw;
  }
}
.thanks_info_head {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  display: block;
  margin: 0 0 20px;
}
@media (min-width: 920px) {
  .thanks_info_head {
    font-size: 1.2857142857vw;
    margin: 0 0 1.7142857143vw;
  }
}
.thanks_info p {
  text-align: left;
  margin: 0;
  line-height: 1.75;
}

/* main colors */
.fadein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.5s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.fadein.fadein-left {
  transform: translate(-30px, 0);
}
.fadein.fadein-right {
  transform: translate(30px, 0);
}
.fadein.fadein-up {
  transform: translate(0, -30px);
}
.fadein.fadein-bottom {
  transform: translate(0, 30px);
}
.fadein.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.text-animation {
  opacity: 1;
  line-height: 1.1;
}
@media (min-width: 920px) {
  .text-animation {
    opacity: 0;
  }
}
.text-animation.show {
  opacity: 1;
}
.text-animation.show .text-animation-span {
  display: inline-block;
  overflow: hidden;
}
.text-animation.show span {
  display: inline-block;
}
@media (min-width: 920px) {
  .text-animation.show span {
    animation: showText 0.3s backwards;
  }
}

@keyframes showText {
  0% {
    opacity: 0;
    transform: translateY(30%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.loader-bg {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader-bg .loader img {
  width: 140px;
  margin: 0 0 10px 0;
}
@media (min-width: 920px) {
  .loader-bg .loader img {
    width: 200px;
  }
}
.loader-bg .loader .loading_txt {
  text-align: center;
  font-family: "mobo", "Noto Sans JP", sans-serif;
  color: #0D401D;
  font-size: 16px;
  font-weight: bold;
  animation: animation_text_blink 1.5s linear 0s infinite normal both;
}
@media (min-width: 920px) {
  .loader-bg .loader .loading_txt {
    font-size: 20px;
  }
}
.loader-bg .load_flow {
  width: 100%;
  position: fixed;
  top: 200%;
  left: 50%;
  transform: translateX(-50%) scale(1.3);
  display: none;
}
@media (min-width: 920px) {
  .loader-bg .load_flow {
    display: block;
  }
}
.loader-bg .load_flow img {
  width: 100%;
  height: auto;
}
.loader-bg .load_flow.load_flow_animation {
  animation: animation_flow 2s cubic-bezier(0.55, 0.05, 0.22, 0.99) forwards;
}

@keyframes animation_text_blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes animation_flow {
  0% {
    top: 200%;
  }
  100% {
    top: -450%;
  }
}
.fadein_box_first {
  opacity: 0;
  transition: 1.6s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.fadein_box_first.fadin_active {
  opacity: 1;
}

.fadein_box_next {
  opacity: 0;
  transition: 1.6s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.fadein_box_next.fadin_active {
  opacity: 1;
}

.fadein_box_last {
  opacity: 0;
  transition: 1.6s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.fadein_box_last.fadin_active {
  opacity: 1;
}

.fadein_box_page {
  opacity: 0;
  transition: 1.6s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.fadein_box_page.fadin_active {
  opacity: 1;
}

.page_mv_thumb {
  opacity: 0;
  transition: 1.6s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.page_mv_thumb.fadin_active {
  opacity: 1;
}

.page_mv_title {
  opacity: 0;
  transition: 1.6s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.page_mv_title.fadin_active {
  opacity: 1;
}

.site_header_main__home {
  opacity: 0;
  transition: 1.6s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.site_header_main__home.fadin_active {
  opacity: 1;
}

.site_header_main__page {
  opacity: 0;
  transition: 1.6s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.site_header_main__page.fadin_active {
  opacity: 1;
}