@charset "UTF-8";
/* =========================================
Media
========================================== */
/* =========================================
Font
========================================== */
:root {
  --color-black: #000;
  --color-ink-black: #303030;
  --color-white: #fff;
  --color-pascal-white: #d9d9d9;
  --color-deep-green: #167636;
  --color-light-green: #8fda47;
  --color-pascal-green: #b8dac3;
  --color-light-gray: #f5f5f5;
  --color-gray: #bdbdbd;
  --color-deep-gray: #7f7f7f;
  --color-kon: #213568;
  --color-dark-blue: #364876;
  --color-deep-blue: #2b20bd;
  --color-pascal-blue: #8289e4;
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-900: 900;
  --liquid-lgDesignSize: calc(1440 / 10);
  --liquid-mdDesignSize: calc(768 / 10);
  --liquid-smDesignSize: calc(390 / 10);
  --liquid-htmlroot: calc(calc(var(--vw, 1vw) * 100) / var(--liquid-lgDesignSize));
  --transition-duration: .25s;
  --transition-easing-smooth: cubic-bezier(.23, 1, .32, 1);
  --transition-easing-out-cubic: cubic-bezier(.33, 1, .68, 1);
  --transition-easing-in-out-quad: cubic-bezier(.455, .03, .515, .955);
  --circle-delay-color: .1s;
  --circle-delay-arrow: .25s;
}

@media screen and (max-width: 768px) {
  :root {
    --liquid-htmlroot: calc(calc(var(--vw, 1vw) * 100) / var(--liquid-mdDesignSize));
  }
}
@media screen and (max-width: 560px) {
  :root {
    --liquid-htmlroot: calc(calc(var(--vw, 1vw) * 100) / var(--liquid-smDesignSize));
  }
}
/* =========================================
dis - hide
========================================== */
/* 初期状態：全て非表示 */
.view-pc,
.view-tb,
.view-sp {
  display: none;
}

@media screen and (min-width: 769px) {
  .view-pc {
    display: block;
  }
}
@media screen and (min-width: 561px) and (max-width: 768px) {
  .view-tb {
    display: block;
  }
}
@media screen and (max-width: 560px) {
  .view-sp {
    display: block;
  }
}
/* #region body */
html {
  font-size: var(--liquid-htmlroot);
}

body {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  font-family: "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "メイリオ", "Meiryo", "verdana", sans-serif;
  background-color: var(--color-light-gray);
  padding: 0;
  margin: 0;
}
body.is-open {
  overflow-y: hidden;
}

* {
  box-sizing: border-box;
}

a {
  transition: opacity 0.2s;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

button {
  cursor: pointer;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6, p, span, a, ul, ol, dl, li, figure {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
  list-style-type: none;
}

/* #endregion */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* animationName animation */
.js-fade,
.js-slide-fade {
  opacity: 0;
}

.fadeIn {
  animation-name: fadeInAnimation;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  animation-fill-mode: both;
}

.gradation__fadeIn {
  animation-name: fadeInAnimationGradation;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}

.slide__fadeIn {
  animation-name: slideFadeInAnimation;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  animation-fill-mode: both;
}

@keyframes fadeInAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInAnimationGradation {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.1;
  }
}
@keyframes slideFadeInAnimation {
  from {
    opacity: 0;
    transform: translateY(6rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 560px) {
  @keyframes slideFadeInAnimation {
    from {
      opacity: 0;
      transform: translateY(2rem);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
/* end animation */
/************
* archive
************/
.archive_container {
  width: 116rem;
  margin: 0 auto;
  padding: 12rem 0;
}

.archive_news .news_contents {
  display: flex;
  justify-content: space-between;
}
.archive_news .news_category_title {
  font-size: 2.4rem;
  font-weight: var(--fw-700);
  color: var(--color-black);
}
.archive_news .news_category_list {
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
  margin-top: 4rem;
}
.archive_news .news_category_item:not(:has(a)) {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12rem;
  height: 4rem;
  font-size: 1.6rem;
  font-weight: var(--fw-700);
  color: var(--color-deep-green);
  background-color: transparent;
  border: 0.3rem solid var(--color-deep-green);
  border-radius: 999rem;
  transition: color 0.3s, background-color 0.3s;
}
.archive_news .news_category_item.current {
  color: var(--color-white);
  background-color: var(--color-deep-green);
}
.archive_news .news_category_item > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12rem;
  height: 4rem;
  font-size: 1.6rem;
  font-weight: var(--fw-700);
  color: var(--color-deep-green);
  background-color: transparent;
  border: 0.3rem solid var(--color-deep-green);
  border-radius: 999rem;
  transition: color 0.3s, background-color 0.3s;
}
.archive_news .news_category_item.current > a {
  color: var(--color-white);
  background-color: var(--color-deep-green);
}
@media (any-hover: hover) {
  .archive_news .news_category_item:hover > a {
    color: var(--color-white);
    background-color: var(--color-deep-green);
    opacity: 1;
  }
}
.archive_news .news_list {
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
  width: 80.4rem;
  margin-top: 1.4rem;
}
.archive_news .news_item_link {
  display: block;
  width: 100%;
  background-color: rgba(184, 218, 195, 0.3);
  border-radius: 1rem;
  padding: 4rem 3rem;
}
.archive_news .archive_news_details {
  display: grid;
  grid-template-columns: 19.2rem 1fr;
  align-items: center;
  gap: 0 5rem;
}
.archive_news .news_item_info {
  display: flex;
  align-items: center;
  gap: 0 2rem;
}
.archive_news .news_date {
  font-size: 1.6rem;
  font-weight: var(--fw-400);
  color: var(--color-black);
}
.archive_news .news_category {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: var(--fw-400);
  color: var(--color-deep-green);
  border: 1px solid var(--color-deep-green);
  border-radius: 999rem;
  padding: 0.4rem 1.4rem;
}
.archive_news .news_item_title {
  font-size: 1.6rem;
  font-weight: var(--fw-400);
  color: var(--color-black);
}
.archive_news .pagination {
  margin-top: 4rem;
  text-align: center;
}
.archive_news .pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 0 2.4rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.archive_news .pagination .page-numbers > li {
  list-style: none;
}
.archive_news .pagination .page-numbers a.page-numbers,
.archive_news .pagination .page-numbers span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: #7f7f7f;
  border-radius: 999rem;
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}
.archive_news .pagination .page-numbers span.page-numbers.dots {
  align-items: flex-end;
  width: auto;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #d9d9d9;
  background: transparent;
  border-radius: unset;
}
.archive_news .pagination .page-numbers a.page-numbers.current,
.archive_news .pagination .page-numbers span.page-numbers.current {
  background: var(--color-deep-green);
  color: #fff;
}
@media (any-hover: hover) {
  .archive_news .pagination .page-numbers a.page-numbers:hover {
    opacity: 0.9;
    background: var(--color-deep-green);
    transform: translateY(-0.2rem);
  }
}

@media screen and (max-width: 768px) {
  .archive_container {
    width: 65.6rem;
    padding: 8rem 0;
  }
  .archive_news .news_contents {
    display: block;
    justify-content: initial;
  }
  .archive_news .news_category_title {
    font-size: 2.2rem;
  }
  .archive_news .news_category_list {
    flex-direction: row;
    gap: 0 2rem;
    margin-top: 3.2rem;
  }
  .archive_news .news_category_item:not(:has(a)) {
    width: 10rem;
    height: 4rem;
    font-size: 1.4rem;
    border: 0.2rem solid var(--color-deep-green);
  }
  .archive_news .news_category_item > a {
    width: 10rem;
    height: 4rem;
    font-size: 1.4rem;
    border: 0.2rem solid var(--color-deep-green);
  }
  .archive_news .news_list {
    width: 100%;
    margin-top: 6.4rem;
  }
  .archive_news .news_item_link {
    padding: 3.2rem 2.8rem;
  }
  .archive_news .archive_news_details {
    grid-template-columns: 16.8rem 1fr;
    gap: 0 4rem;
  }
  .archive_news .news_item_info {
    gap: 0 1.6rem;
  }
  .archive_news .news_date {
    font-size: 1.4rem;
  }
  .archive_news .news_category {
    font-size: 1.2rem;
    padding: 0.4rem 1.2rem;
  }
  .archive_news .news_item_title {
    font-size: 1.4rem;
  }
  .archive_news .pagination {
    margin-top: 3.2rem;
  }
  .archive_news .pagination .page-numbers {
    gap: 0 2rem;
  }
  .archive_news .pagination .page-numbers a.page-numbers,
  .archive_news .pagination .page-numbers span.page-numbers {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.2rem;
  }
  .archive_news .pagination .page-numbers span.page-numbers.dots {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 560px) {
  .archive_container {
    width: 36.2rem;
    padding: 6rem 0;
  }
  .archive_news .news_category_title {
    font-size: 2rem;
  }
  .archive_news .news_category_list {
    flex-wrap: wrap;
    gap: 1.2rem 1.6rem;
    margin-top: 2.4rem;
  }
  .archive_news .news_category_item:not(:has(a)) {
    width: 8rem;
    height: 3rem;
    font-size: 1.1rem;
  }
  .archive_news .news_category_item > a {
    width: 8rem;
    height: 3rem;
    font-size: 1.1rem;
  }
  .archive_news .news_list {
    margin-top: 4.8rem;
  }
  .archive_news .news_item_link {
    padding: 2.4rem;
  }
  .archive_news .archive_news_details {
    grid-template-columns: 1fr;
    gap: 1.2rem 0;
  }
  .archive_news .news_item_info {
    gap: 0 1.2rem;
  }
  .archive_news .news_date {
    font-size: 1.2rem;
  }
  .archive_news .news_category {
    font-size: 1.1rem;
    padding: 0.4rem 1.2rem;
  }
  .archive_news .news_item_title {
    font-size: 1.4rem;
  }
  .archive_news .pagination {
    margin-top: 2.4rem;
  }
  .archive_news .pagination .page-numbers {
    gap: 0 1.2rem;
  }
}
/* region breadcrumb */
/* end region */
.btn {
  width: auto;
  height: auto;
}
.btn .btn_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: inherit;
  font-weight: var(--fw-700);
  color: initial;
  background-color: initial;
  border-radius: initial;
  padding: 0 0.8rem 0 1.3rem;
  transition: color 0.35s cubic-bezier(0.455, 0.03, 0.515, 0.955), background-color 0.35s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.btn .btn_link.is-hover {
  position: relative;
  overflow: hidden;
  transition: color calc(var(--transition-duration) * 1.4) var(--transition-easing-in-out-quad), border-color calc(var(--transition-duration) * 1.4) var(--transition-easing-in-out-quad), background-color 0s 0s;
}
.btn .btn_link.is-hover::before {
  position: absolute;
  content: "";
  inset: 0;
  background: initial;
  border-radius: initial;
  pointer-events: none;
  transition: background-size calc(var(--transition-duration) * 1.4) var(--transition-easing-in-out-quad);
  z-index: 1;
}
.btn .btn_link.is-hover span {
  z-index: 2;
}
.btn .btn_icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: initial;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  font-size: 0;
  color: initial;
  background-color: initial;
  border: 1px solid initial;
  border-radius: 50%;
  transition: all var(--transition-duration) var(--transition-easing-out-cubic) var(--circle-delay-color);
  transition-property: background-color, border-color;
}
.btn .btn_link.is-hover .btn_icon_wrap {
  position: relative;
  display: flex;
  width: calc(initial * 2);
  height: initial;
  translate: calc(-1 * initial / 2) 0;
}
.btn .btn_link.is-hover .btn_icon_wrap span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: initial;
  height: auto;
  aspect-ratio: 1/1;
}
.btn .btn_icon svg {
  width: initial;
}
@media (any-hover: hover) {
  .btn .btn_link.is-hover:hover {
    color: initial;
    background-color: initial;
    border-color: initial;
    transition: color calc(var(--transition-duration) * 1.4) var(--transition-easing-in-out-quad), border-color calc(var(--transition-duration) * 1.4) var(--transition-easing-in-out-quad), background-color 0s calc(var(--transition-duration) * 1.4);
    opacity: 1;
  }
  .btn .btn_link.is-hover:hover::before {
    background-position: 0 100%;
    background-size: 100% 100%;
  }
  .btn .btn_link.is-hover:hover .btn_icon {
    background-color: initial;
    border-color: initial;
  }
  .btn .btn_link.is-hover:hover .btn_icon_wrap span {
    translate: calc(initial / 2) 0;
    transition: all calc(var(--transition-duration) * 1.75) var(--transition-easing-out-cubic) var(--circle-delay-arrow);
    transition-property: translate;
    will-change: translate;
  }
}

/* region footer */
.footer {
  position: relative;
  background-color: var(--color-black);
}
.footer .footer_inner {
  padding: 6rem 12rem 2.8rem;
}
.footer .footer_logo {
  width: 24rem;
  height: auto;
  aspect-ratio: 276/97;
}
.footer .footer_logo > a {
  display: block;
}
.footer .footer_logo > a svg {
  width: 100%;
  height: 100%;
}
.footer .footer_content {
  margin: 3.2rem 0 0;
}
.footer .footer_menu_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 6rem;
}
.footer .footer_menu_list > li a {
  font-size: 1.8rem;
  font-weight: var(--fw-400);
  color: var(--color-white);
}
.footer .copyright {
  display: block;
  font-size: 1.4rem;
  font-weight: var(--fw-400);
  color: var(--color-white);
  text-align: center;
  margin-top: 6.4rem;
}

@media screen and (max-width: 768px) {
  .footer .footer_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6rem 3.2rem 6rem;
  }
  .footer .footer_logo {
    width: 22rem;
  }
  .footer .footer_content {
    margin: 6.4rem 0 0;
  }
  .footer .footer_menu_list {
    flex-direction: column;
    justify-content: center;
    gap: 2rem 0;
  }
  .footer .footer_menu_list > li a {
    font-size: 1.8rem;
  }
  .footer .copyright {
    font-size: 1.6rem;
    margin-top: 8rem;
  }
}
@media screen and (max-width: 560px) {
  .footer .footer_inner {
    padding: 6rem 3.2rem 6rem;
  }
  .footer .footer_logo {
    width: 18.2rem;
  }
  .footer .footer_content {
    margin: 7.2rem 0 0;
  }
  .footer .footer_menu_list {
    gap: 1rem 0;
  }
  .footer .footer_menu_list > li a {
    font-size: 1.6rem;
    line-height: 2;
  }
  .footer .copyright {
    font-size: 1.4rem;
    margin-top: 10rem;
  }
}
/* end region */
/* region header */
.header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 11rem;
  padding: 0 6rem;
  z-index: 997;
}
.header .header_logo {
  position: relative;
  width: 14.8rem;
  height: auto;
  aspect-ratio: 37/13;
  z-index: 999;
}
.header .header_logo > a {
  display: block;
}
.header .header_logo > a svg {
  display: block;
  width: 100%;
  height: 100%;
}
.header .header_content {
  display: flex;
  align-items: center;
  gap: 0 6rem;
}
.header .header_hum_lines {
  display: none;
}
.header .header_hum_box {
  display: none;
}
.header .header_nav_list {
  display: flex;
  align-items: center;
  gap: 0 6rem;
}
.header .header_nav_item > a {
  position: relative;
  display: inline-block;
  font-size: 1.7rem;
  font-weight: var(--fw-700);
  color: var(--color-black);
  padding-bottom: 0.4rem;
  transition: color 0.2s;
}
.header .header_nav_item > a::before {
  position: absolute;
  content: "";
  bottom: -0.2rem;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-black);
  scale: 0 1;
  transform-origin: left;
  transition: scale 0.3s cubic-bezier(0.77, 0, 0.175, 1), background-color 0.2s;
}
.header .header_nav_item > a:hover::before {
  scale: 1 1;
  transform-origin: left;
}
.header .header_nav_item > a:not(:hover)::before {
  scale: 0 1;
  transform-origin: right;
}
.header .header_nav_item.invert > a {
  color: var(--color-white);
}
.header .header_nav_item.invert > a::before {
  background-color: var(--color-white);
}
.header .btn {
  width: 17.5rem;
  height: 4.6rem;
}
.header .btn .btn_link {
  font-size: 1.7rem;
  color: var(--color-white);
  background-color: var(--color-deep-green);
  border-radius: 4rem;
}
.header .btn .btn_link::before {
  background: linear-gradient(var(--color-light-green), var(--color-light-green)) 100% 100%/0 100% no-repeat;
}
.header .btn .btn_icon {
  width: 3rem;
  color: var(--color-deep-green);
  background-color: var(--color-white);
  border: 1px solid var(--color-white);
}
.header .btn .btn_link.is-hover .btn_icon_wrap {
  position: relative;
  display: flex;
  width: 6rem;
  height: 3rem;
  translate: -1.5rem 0;
}
.header .btn .btn_link.is-hover .btn_icon_wrap span {
  width: 3rem;
}
.header .btn .btn_icon svg {
  width: 1.3rem;
}
.header .btn .btn_icon svg path {
  transition: all calc(var(--transition-duration) * 1.75) var(--transition-easing-out-cubic) var(--circle-delay-arrow);
}
@media (any-hover: hover) {
  .header .btn_link.is-hover:hover {
    color: var(--color-white);
    background-color: var(--color-light-green);
  }
  .header .btn_link.is-hover:hover .btn_icon {
    color: var(--color-white);
    background-color: var(--color-deep-green);
    border-color: var(--color-deep-green);
  }
  .header .btn_link.is-hover:hover .btn_icon_wrap span {
    translate: 3rem 0;
  }
}

@media screen and (max-width: 768px) {
  .header {
    height: 10rem;
    padding: 0 4rem;
  }
  .header .header_content {
    display: none;
  }
  .header .header_hum_lines {
    position: relative;
    display: block;
    width: 4rem;
    height: 2rem;
    z-index: 999;
  }
  .header .hum_line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3.2rem;
    height: 1px;
    background-color: var(--color-dark-blue);
    transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  }
  .header .hum_line.line01 {
    top: 0;
  }
  .header .hum_line.line02 {
    top: 1rem;
  }
  .header .hum_line.line03 {
    top: 1.9rem;
  }
  .header .header_hum_lines.is-open .hum_line {
    transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  }
  .header .header_hum_lines.is-open .hum_line.line01 {
    top: 1rem;
    transform: translateX(-50%) rotate(30deg);
  }
  .header .header_hum_lines.is-open .hum_line.line02 {
    top: 1rem;
    transform: translateX(-50%) rotate(30deg);
  }
  .header .header_hum_lines.is-open .hum_line.line03 {
    top: 1rem;
    transform: translateX(-50%) rotate(-30deg);
  }
  .header .header_hum_box {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    inset: 0;
    width: 100vw;
    height: 100svh;
    opacity: 0;
    pointer-events: none;
    background-color: var(--color-light-gray);
    z-index: 998;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
  .header .header_hum_box.is-open {
    opacity: 1;
    pointer-events: all;
  }
  .header .header_hum_content {
    width: 100%;
    padding: 3.2rem 8rem;
  }
  .header .header_nav_list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .header .header_nav_item {
    width: 100%;
  }
  .header .header_nav_item:not(:first-of-type) {
    border-top: 1px solid var(--color-gray);
    margin-top: 2.4rem;
    padding-top: 2.4rem;
  }
  .header .header_nav_item:last-of-type {
    border-bottom: 1px solid var(--color-gray);
    padding-bottom: 2.4rem;
  }
  .header .header_nav_item > a {
    width: 100%;
    font-size: 1.7rem;
    color: var(--color-ink-black);
    padding-bottom: 0;
  }
  .header .header_nav_item > a::before {
    display: none;
  }
  .header .btn {
    margin: 4rem 0 0;
  }
}
@media screen and (max-width: 560px) and (max-width: 768px) {
  .header {
    height: 6.9rem;
    padding: 0 2.4rem;
  }
  .header .header_logo {
    width: 8.1rem;
  }
  .header .header_hum_lines {
    width: 2.4rem;
    height: 1.2rem;
  }
  .header .hum_line {
    width: 2.4rem;
  }
  .header .hum_line.line01 {
    top: 0;
  }
  .header .hum_line.line02 {
    top: 0.6rem;
  }
  .header .hum_line.line03 {
    top: 1.2rem;
  }
  .header .header_hum_lines.is-open .hum_line.line01 {
    top: 0.6rem;
  }
  .header .header_hum_lines.is-open .hum_line.line02 {
    top: 0.6rem;
  }
  .header .header_hum_lines.is-open .hum_line.line03 {
    top: 0.6rem;
  }
  .header .header_hum_content {
    padding: 3.2rem 4rem;
  }
  .header .header_nav_item > a {
    font-size: 1.6rem;
  }
  .header .btn .btn_link {
    font-size: 1.6rem;
  }
  .header .btn .btn_icon svg {
    width: 1.6rem;
  }
}
/* end region */
.sec_title_en {
  font-family: "Marcellus", "Noto Serif JP", "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 7rem;
  font-weight: var(--fw-300);
  line-height: 1;
  color: initial;
}

.sec_title_ja {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", "Noto Serif JP", serif;
  font-size: 1.6rem;
  font-weight: var(--fw-700);
  color: initial;
}

@media screen and (max-width: 768px) {
  .sec_title_en {
    font-size: 5.6rem;
    text-align: center;
  }
  .sec_title_ja {
    font-size: 1.5rem;
    text-align: center;
    margin-top: 1rem;
  }
}
@media screen and (max-width: 560px) {
  .sec_title_en {
    font-size: 4.6rem;
  }
  .sec_title_ja {
    font-size: 1.4rem;
  }
}
/************
* page
************/
.page_fv {
  position: relative;
  width: 100%;
  height: auto;
}
.page_fv .page_fv_bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.page_fv .page_fv_bg > picture {
  width: 100%;
  height: 100%;
}
.page_fv .page_fv_bg > picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page_fv .page_heading_wrap {
  padding: 19.4rem 12rem 14rem;
}
.page_fv .page_heading_en {
  font-family: "Marcellus", "Noto Serif JP", "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 8.2rem;
  font-weight: var(--fw-400);
  line-height: 1;
  color: var(--color-white);
}
.page_fv .page_heading_ja {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", "Noto Serif JP", serif;
  font-size: 1.6rem;
  font-weight: var(--fw-700);
  color: var(--color-white);
}

@media screen and (max-width: 768px) {
  .page_fv .page_heading_wrap {
    padding: 12rem 6.4rem 8rem;
  }
  .page_fv .page_heading_en {
    font-size: 6.4rem;
  }
  .page_fv .page_heading_ja {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 560px) {
  .page_fv .page_heading_wrap {
    padding: 10rem 4rem 6rem;
  }
  .page_fv .page_heading_en {
    font-size: 4.6rem;
  }
  .page_fv .page_heading_ja {
    font-size: 1.4rem;
  }
}
/************
* single
************/
.single_container .single_post {
  padding: 11.2rem 0 4rem;
}
.single_container .single_wrap {
  position: relative;
  width: min(1440px, 100%);
  background-color: rgba(184, 218, 195, 0.3);
  border-radius: 3rem;
  -webkit-mask: url(../../assets/images/webp/single_mask.webp) 0% 0%/cover no-repeat;
  mask: url(../../assets/images/webp/single_mask.webp) 0% 0%/cover no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  margin: 0 auto;
  padding: 2.4rem 0 11.2rem;
}
.single_container .single_bg_logo {
  position: absolute;
  top: 11.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 74rem;
  height: auto;
  filter: blur(1rem);
  z-index: -1;
}
.single_container .single_bg_logo svg {
  width: 100%;
}
.single_container .single_inner {
  width: min(1160px, 116rem);
  margin: 0 auto;
}
.single_container .single_info {
  display: flex;
  align-items: center;
  gap: 0 2rem;
  width: -moz-fit-content;
  width: fit-content;
}
.single_container .single_date {
  font-size: 2.4rem;
  font-weight: var(--fw-400);
  color: var(--color-black);
}
.single_container .single_category {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: var(--fw-400);
  color: var(--color-deep-green);
  border: 1px solid var(--color-deep-green);
  border-radius: 999rem;
  padding: 0.8rem 2.4rem;
}
.single_container .single_title {
  font-size: 3.2rem;
  font-weight: var(--fw-400);
  color: var(--color-deep-green);
  margin-top: 5.6rem;
}
.single_container .single_thumbnail {
  width: 100%;
  height: auto;
  aspect-ratio: 580/273;
  border-radius: 1rem;
  margin-top: 2.4rem;
  overflow: hidden;
}
.single_container .single_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single_container .single_content {
  margin-top: 2.4rem;
}
.single_container p {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.single_container h2 {
  font-size: 2.4rem;
  font-weight: var(--fw-400);
  color: var(--color-deep-green);
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.single_container h3 {
  font-size: 2rem;
  font-weight: var(--fw-400);
  color: var(--color-deep-green);
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  line-height: 1.4;
}
.single_container h4 {
  font-size: 1.6rem;
  font-weight: var(--fw-500);
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.single_container ul,
.single_container ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}
.single_container li {
  list-style: inherit;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  line-height: 1.7;
  margin-bottom: 0.2rem;
}
.single_container img {
  display: block;
  width: 100%;
  border-radius: 0.8rem;
  margin: 4rem 0;
  overflow: hidden;
}
.single_container figure img {
  margin: unset;
}
.single_container figure figcaption {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.7);
}
.single_container blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid #ddd;
}
.single_container pre {
  margin: 2rem 0;
  padding: 1.5rem;
  overflow-x: auto;
}
.single_container table {
  margin: 2rem 0;
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  line-height: 1.6;
}
.single_container thead {
  font-weight: var(--fw-600);
}
.single_container th,
.single_container td {
  vertical-align: middle;
  text-align: left;
  background-color: var(--color-white);
  border: 1px solid #ddd;
  padding: 1rem 1.5rem;
}
.single_container th {
  font-size: 1.5rem;
  font-weight: var(--fw-600);
}
.single_container tr:nth-child(even) {
  background-color: var(--color-white);
}
.single_container .btn {
  width: 18.8rem;
  height: 5rem;
  margin: 3rem 0 0 14rem;
}
.single_container .btn .btn_link {
  font-size: 1.7rem;
  color: var(--color-white);
  background-color: var(--color-deep-green);
  border-radius: 4rem;
  padding: 0px 2rem 0px 0.8rem;
}
.single_container .btn .btn_link::before {
  background: linear-gradient(var(--color-light-green), var(--color-light-green)) 100% 100%/0 100% no-repeat;
}
.single_container .btn .btn_icon {
  width: 3.6rem;
  color: var(--color-white);
  background-color: var(--color-deep-green);
  border: 1px solid var(--color-white);
}
.single_container .btn .btn_link.is-hover .btn_icon_wrap {
  position: relative;
  display: flex;
  width: 7.2rem;
  height: 3.6rem;
  translate: 1.8rem 0;
}
.single_container .btn .btn_link.is-hover .btn_icon_wrap span {
  width: 3.6rem;
}
.single_container .btn .btn_icon svg {
  width: 1.6rem;
}
.single_container .btn .btn_icon svg path {
  transition: all calc(var(--transition-duration) * 1.75) var(--transition-easing-out-cubic) var(--circle-delay-arrow);
}
@media (any-hover: hover) {
  .single_container .btn_link.is-hover:hover {
    color: var(--color-white);
    background-color: var(--color-light-green);
  }
  .single_container .btn_link.is-hover:hover .btn_icon {
    color: var(--color-white);
    background-color: var(--color-deep-green);
    border-color: var(--color-deep-green);
  }
  .single_container .btn_link.is-hover:hover .btn_icon_wrap span {
    translate: -3.6rem 0;
  }
}

@media screen and (min-width: 1440px) {
  .single_container .btn {
    margin: 3rem 0 0 max(280px, 28rem);
  }
}
@media screen and (max-width: 768px) {
  .single_container .single_post {
    padding: 8rem 0;
  }
  .single_container .single_wrap {
    display: contents;
  }
  .single_container .single_bg_logo {
    display: none;
  }
  .single_container .single_inner {
    position: relative;
    width: 65.6rem;
    background-color: rgba(184, 218, 195, 0.3);
    border-radius: 1rem;
    -webkit-mask: url(../../assets/images/webp/single_mask_sp.webp) 0% 0%/cover no-repeat;
    mask: url(../../assets/images/webp/single_mask_sp.webp) 0% 0%/cover no-repeat;
    -webkit-mask-size: 100% 100%;
            mask-size: 100% 100%;
    margin: 0 auto;
    padding: 12rem 3.2rem 8rem;
  }
  .single_container .single_info {
    gap: 0 1.6rem;
  }
  .single_container .single_date {
    font-size: 2rem;
  }
  .single_container .single_category {
    font-size: 1.4rem;
    padding: 0.4rem 2rem;
  }
  .single_container .single_title {
    font-size: 2.8rem;
    margin-top: 3.2rem;
  }
  .single_container .single_thumbnail {
    aspect-ratio: 3/2;
    margin-top: unset;
    overflow: hidden;
  }
  .single_container .single_thumbnail img {
    margin: 2.4rem 0 0;
  }
  .single_container .single_content {
    margin-top: 6rem;
  }
  .single_container h2 {
    font-size: 2.2rem;
    margin-top: 3.2rem;
    margin-bottom: 1.4rem;
  }
  .single_container h3 {
    font-size: 1.8rem;
    margin-top: 2.4rem;
    margin-bottom: 1.2rem;
  }
  .single_container h4 {
    font-size: 1.6rem;
    font-weight: var(--fw-400);
    color: var(--color-deep-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  .single_container .btn {
    margin: 4rem auto 0;
  }
}
@media screen and (max-width: 560px) {
  .single_container .single_post {
    padding: 6rem 0;
  }
  .single_container .single_inner {
    width: 36.2rem;
    padding: 8rem 2.4rem 6rem;
  }
  .single_container .single_info {
    gap: 0 1.2rem;
  }
  .single_container .single_date {
    font-size: 1.6rem;
  }
  .single_container .single_category {
    font-size: 1.1rem;
  }
  .single_container .single_title {
    font-size: 2.4rem;
    margin-top: 2.4rem;
  }
  .single_container .single_thumbnail {
    aspect-ratio: 3/2;
    margin-top: unset;
    overflow: hidden;
  }
  .single_container .single_thumbnail img {
    margin: 2.4rem 0 0;
  }
  .single_container .single_content {
    margin-top: 5rem;
  }
  .single_container p {
    font-size: 1.4rem;
  }
  .single_container h2 {
    font-size: 1.8rem;
    margin-top: 2.4rem;
    margin-bottom: 1.2rem;
    line-height: 1.3;
  }
  .single_container h3 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
  }
  .single_container h4 {
    font-size: 1.5rem;
    margin-top: 1.6rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
  }
  .single_container figure figcaption {
    font-size: 1rem;
  }
  .single_container table {
    font-size: 1.3rem;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .single_container th,
  .single_container td {
    padding: 0.8rem 1rem;
  }
  .single_container th {
    font-size: 1.4rem;
  }
  .single_container .btn {
    margin: 3.2rem auto 0;
  }
}
/************
* philosophy
************/
.philosophy {
  padding: 12rem 0;
}
.philosophy .philosophy_inner {
  width: 120rem;
  margin: 0 auto;
}
.philosophy .sec_title_en {
  color: var(--color-deep-green);
}
.philosophy .sec_title_ja {
  color: var(--color-deep-green);
}
.philosophy .philosophy_img {
  width: 59.6rem;
  height: auto;
  aspect-ratio: 149/95;
  margin-top: 6rem;
  border-radius: 1rem;
  overflow: hidden;
}
.philosophy .philosophy_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.philosophy .philosophy_details {
  width: 67.2rem;
  margin: 6rem 0 0 auto;
}
.philosophy .philosophy_title {
  font-size: 3.6rem;
  font-weight: var(--fw-700);
  color: var(--color-deep-green);
}
.philosophy .philosophy_description {
  font-size: 1.6rem;
  font-weight: var(--fw-500);
  line-height: 1.5;
  color: var(--color-deep-green);
  margin-top: 2.4rem;
}

@media screen and (max-width: 768px) {
  .philosophy {
    padding: 8rem 0;
  }
  .philosophy .philosophy_inner {
    width: 65.6rem;
  }
  .philosophy .sec_title_en {
    text-align: center;
  }
  .philosophy .sec_title_ja {
    text-align: center;
  }
  .philosophy .philosophy_img {
    width: 100%;
    aspect-ratio: 181/117;
    margin-top: 4.8rem;
  }
  .philosophy .philosophy_details {
    width: 100%;
    margin: 4rem 0 0;
  }
  .philosophy .philosophy_title {
    font-size: 2.8rem;
  }
  .philosophy .philosophy_description {
    padding-right: unset;
  }
}
@media screen and (max-width: 560px) {
  .philosophy {
    padding: 6rem 0;
  }
  .philosophy .philosophy_inner {
    width: 36.2rem;
  }
  .philosophy .philosophy_img {
    margin-top: 3.2rem;
  }
  .philosophy .philosophy_details {
    margin: 2.4rem 0 0;
  }
  .philosophy .philosophy_title {
    font-size: 2rem;
  }
}
/************
* vision
************/
.vision {
  padding: 12rem 0;
  background-color: rgba(184, 218, 195, 0.3);
}
.vision .vision_inner {
  width: 120rem;
  margin: 0 auto;
}
.vision .sec_title_en {
  color: var(--color-deep-green);
  text-align: end;
}
.vision .sec_title_ja {
  color: var(--color-deep-green);
  text-align: end;
}
.vision .vision_imgs {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  gap: 0 5rem;
  margin-top: 6rem;
}
.vision picture:has(.vision_img01) {
  align-self: flex-start;
  display: block;
  width: 59.6rem;
  height: auto;
  aspect-ratio: 149/95;
  border-radius: 1rem;
  overflow: hidden;
}
.vision picture:has(.vision_img02) {
  align-self: flex-start;
  display: block;
  width: 43.2rem;
  height: auto;
  aspect-ratio: 27/19;
  border-radius: 1rem;
  overflow: hidden;
  margin-top: 14.8rem;
}
.vision .vision_imgs img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.vision .vision_details {
  width: 64.6rem;
  margin: 6rem auto 0 0;
}
.vision .vision_title {
  font-size: 3.6rem;
  font-weight: var(--fw-700);
  color: var(--color-deep-green);
}
.vision .vision_description {
  font-size: 1.6rem;
  font-weight: var(--fw-500);
  line-height: 1.5;
  color: var(--color-deep-green);
  margin-top: 2.4rem;
  padding-right: 7.5rem;
}

@media screen and (max-width: 768px) {
  .vision {
    padding: 8rem 0;
  }
  .vision .vision_inner {
    width: 65.6rem;
  }
  .vision .sec_title_en {
    text-align: center;
  }
  .vision .sec_title_ja {
    text-align: center;
  }
  .vision .vision_imgs {
    flex-direction: column;
    justify-content: initial;
    gap: unset;
    margin-top: 5rem;
  }
  .vision picture:has(.vision_img01) {
    align-self: initial;
    width: 100%;
    aspect-ratio: 181/117;
  }
  .vision picture:has(.vision_img02) {
    display: none;
  }
  .vision .vision_details {
    width: 100%;
    margin: 4rem 0 0;
  }
  .vision .vision_title {
    font-size: 2.8rem;
  }
  .vision .vision_description {
    padding-right: unset;
  }
}
@media screen and (max-width: 560px) {
  .vision {
    padding: 6rem 0;
  }
  .vision .vision_inner {
    width: 36.2rem;
  }
  .vision .vision_imgs {
    margin-top: 3.2rem;
  }
  .vision .vision_details {
    margin: 2.4rem 0 0;
  }
  .vision .vision_title {
    font-size: 2rem;
  }
}
/************
* profile
************/
.profile {
  padding: 15.4rem 0 0;
}
.profile .profile_container {
  position: relative;
  background-color: var(--color-deep-green);
  -webkit-mask: url(../../assets/images/webp/profile_mask.webp) 0% 0%/cover no-repeat;
  mask: url(../../assets/images/webp/profile_mask.webp) 0% 0%/cover no-repeat;
  -webkit-mask-size: 100% 101%;
          mask-size: 100% 101%;
  padding: 4rem 0 12rem;
}
.profile .profile_inner {
  width: 120rem;
  margin: 0 auto;
}
.profile .sec_title_en {
  color: var(--color-white);
}
.profile .sec_title_ja {
  color: var(--color-white);
}
.profile .profile_list {
  width: 90.3rem;
  margin: 16rem 0 0 auto;
}
.profile .profile_item {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0 22.4rem;
}
.profile .profile_item:not(:last-of-type) {
  border-bottom: 1px solid #81ce9a;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
}
.profile .profile_item:last-of-type {
  border-bottom: 1px solid #81ce9a;
  padding-bottom: 3rem;
}
.profile .profile_item > dt,
.profile .profile_item > dd {
  font-size: 1.6rem;
  font-weight: var(--fw-500);
  line-height: 1.5;
  color: var(--color-white);
  margin: unset;
}

@media screen and (max-width: 768px) {
  .profile {
    padding: 8rem 0;
  }
  .profile .profile_container {
    display: contents;
  }
  .profile .profile_inner {
    width: 65.6rem;
    background-color: var(--color-deep-green);
    border-radius: 1rem;
    -webkit-mask: url(../../assets/images/webp/profile_mask_sp.webp) 0% 0%/cover no-repeat;
    mask: url(../../assets/images/webp/profile_mask_sp.webp) 0% 0%/cover no-repeat;
    -webkit-mask-size: 100% 100%;
            mask-size: 100% 100%;
    margin: 5rem auto 0;
    padding: 16rem 4rem 9rem;
  }
  .profile .sec_title_en {
    color: var(--color-deep-green);
  }
  .profile .sec_title_ja {
    color: var(--color-deep-green);
  }
  .profile .profile_list {
    width: 100%;
    margin: 0 auto;
  }
  .profile .profile_item {
    display: grid;
    gap: 0 8rem;
  }
}
@media screen and (max-width: 560px) {
  .profile {
    padding: 6rem 0;
  }
  .profile .profile_inner {
    width: 36.2rem;
    margin: 4rem auto 0;
    padding: 9rem 2rem 5rem;
  }
  .profile .profile_item {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}
/****************
* contact
****************/
.contact {
  padding: 8rem 0 6.4rem;
}
.contact .contact_inner {
  width: min(1200px, 120rem);
  margin: 0 auto;
}
.contact .contact_heading {
  font-size: min(32px, 3.2rem);
  font-weight: var(--fw-700);
  color: var(--color-deep-green);
}
.contact .contact_content {
  position: relative;
  background-color: rgba(184, 218, 195, 0.3);
  border-radius: 1rem;
  margin-top: min(40px, 4rem);
  padding: min(80px, 8rem) min(105px, 10.5rem);
}
.contact .contact_bg_logo {
  position: absolute;
  top: 11.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(678px, 67.8rem);
  height: auto;
  filter: blur(1rem);
  z-index: -1;
}
.contact .contact_bg_logo svg {
  width: 100%;
}
.contact .contact__form__wrap {
  display: flex;
  flex-direction: column;
  gap: min(24px, 2.4rem) 0;
}
.contact .contact__form__wrap .contact__block {
  display: grid;
  grid-template-columns: min(140px, 14rem) 1fr;
  align-items: flex-start;
  gap: 0 min(48px, 4.8rem);
}
.contact .contact__form__wrap .contact__block .contact_item_name {
  font-size: min(16px, 1.6rem);
  font-weight: var(--fw-700);
  color: var(--color-deep-green);
  padding-top: min(12px, 1.2rem);
}
.contact .contact__form__wrap .contact__block .contact_item_name .required {
  position: relative;
  top: 0;
  right: 0;
  font-size: min(16px, 1.6rem);
  font-weight: var(--fw-700);
  color: #ff0000;
}
.contact .contact__form__wrap .contact__block .contact__block__input {
  width: 100%;
}
.contact .contact__form__wrap .contact__block .contact__block__input span input {
  width: 100%;
  font-size: min(16px, 1.6rem);
  font-weight: var(--fw-400);
  color: var(--color-black);
  border: none;
  border-radius: min(10px, 1rem);
  padding: min(16px, 1.6rem) min(20px, 2rem);
}
.contact .contact__form__wrap .contact__block .contact__block__input span input::-moz-placeholder {
  color: #5e946f;
}
.contact .contact__form__wrap .contact__block .contact__block__input span input::placeholder {
  color: #5e946f;
}
.contact .contact__form__wrap .contact__block .contact__block__input span .wpcf7-not-valid-tip {
  display: inline-block;
  color: red;
  font-size: min(14px, 1.4rem);
  font-weight: var(--fw-700);
  margin-top: min(8px, 0.8rem);
}
.contact .contact__form__wrap .contact__block.textarea .contact__block__input textarea {
  width: 100%;
  height: min(182px, 18.2rem);
  font-size: min(16px, 1.6rem);
  font-weight: var(--fw-400);
  line-height: 1.5;
  color: var(--color-black);
  border: none;
  border-radius: min(10px, 1rem);
  padding: min(16px, 1.6rem) min(20px, 2rem);
}
.contact .contact__form__wrap .contact__block.textarea .contact__block__input textarea::-moz-placeholder {
  color: #5e946f;
}
.contact .contact__form__wrap .contact__block.textarea .contact__block__input textarea::placeholder {
  color: #5e946f;
}
.contact .contact__form__wrap .contact__block.radio input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: unset;
  padding: unset;
  border: unset;
  display: none;
}
.contact .contact__form__wrap .contact__block.radio span.wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: min(15px, 1.5rem) min(30px, 3rem);
}
.contact .contact__form__wrap .contact__block.radio span.wpcf7-list-item {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: unset;
}
.contact .contact__form__wrap .contact__block.radio span.wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  font-size: min(16px, 1.6rem);
  font-weight: var(--fw-400);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--color-deep-green);
  cursor: pointer;
}
.contact .contact__form__wrap .contact__block.radio span.wpcf7-list-item-label::before {
  display: block;
  content: "";
  border-radius: 50%;
  width: min(40px, 4rem);
  height: auto;
  aspect-ratio: 1/1;
  background-color: var(--color-white);
  margin-right: min(12px, 1.2rem);
}
.contact .contact__form__wrap .contact__block.radio span.wpcf7-list-item-label::after {
  display: none;
  position: absolute;
  content: "";
  top: 50%;
  left: min(12px, 1.2rem);
  translate: 0 -50%;
  width: min(16px, 1.6rem);
  height: auto;
  aspect-ratio: 1/1;
  background-color: var(--color-deep-green);
  border-radius: 50%;
}
.contact .contact__form__wrap .contact__block.radio input[type=radio]:checked + span.wpcf7-list-item-label::after {
  display: block;
}
.contact .contact__accept__wrap {
  text-align: center;
  margin-top: min(40px, 4rem);
}
.contact .contact__accept__wrap label {
  display: flex;
  align-items: center;
  gap: min(8px, 0.8rem);
}
.contact .contact__accept__wrap input[type=checkbox] {
  position: relative;
  width: min(20px, 2rem);
  height: min(20px, 2rem);
}
.contact .contact__accept__wrap .wpcf7-list-item-label {
  font-size: min(17px, 1.7rem);
  font-weight: var(--fw-500);
  color: var(--color-black);
}
.contact .contact__accept__wrap .wpcf7-list-item-label > a {
  color: var(--color-deep-green);
  text-decoration: underline;
  transition: opacity 0.3s;
}
.contact .contact__accept__wrap .wpcf7-list-item-label > a:hover {
  opacity: 0.5;
}
.contact .contact__accept__wrap .wpcf7-not-valid-tip {
  margin-top: min(8px, 0.8rem);
  font-size: min(11px, 1.1rem);
  font-weight: var(--fw-400);
  color: #ff0000;
}
.contact .contact__submit__wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin: min(50px, 5rem) auto 0;
}
.contact .contact__submit__wrap .contact__block {
  position: relative;
  width: 100%;
  height: 100%;
}
.contact .contact__submit__wrap .contact__block .btn {
  position: relative;
  width: min(236px, 23.6rem);
  height: min(50px, 5rem);
  margin: 0 auto;
}
.contact .contact__submit__wrap .contact__block .btn .btn_link {
  font-size: min(17px, 1.7rem);
  color: var(--color-white);
  background-color: var(--color-deep-green);
  border-radius: min(40px, 4rem);
  padding: 0px min(8px, 0.8rem) 0px min(20px, 2rem);
}
.contact .contact__submit__wrap .contact__block .btn .btn_link::before {
  background: linear-gradient(var(--color-light-green), var(--color-light-green)) 100% 100%/0 100% no-repeat;
}
.contact .contact__submit__wrap .contact__block .btn .btn_icon {
  width: min(36px, 3.6rem);
  color: var(--color-white);
  background-color: var(--color-deep-green);
  border: 1px solid var(--color-white);
}
.contact .contact__submit__wrap .contact__block .btn .btn_link.is-hover .btn_icon_wrap {
  position: relative;
  display: flex;
  width: calc(min(36px, 3.6rem) * 2);
  height: min(36px, 3.6rem);
  translate: calc(-1 * min(36px, 3.6rem) / 2) 0;
}
.contact .contact__submit__wrap .contact__block .btn .btn_link.is-hover .btn_icon_wrap span {
  width: min(36px, 3.6rem);
}
.contact .contact__submit__wrap .contact__block .btn .btn_icon svg {
  width: min(16px, 1.6rem);
}
.contact .contact__submit__wrap .contact__block .btn .btn_icon svg path {
  transition: all calc(var(--transition-duration) * 1.75) var(--transition-easing-out-cubic) var(--circle-delay-arrow);
}
.contact .contact__submit__wrap .contact__block input:hover ~ .btn_link.is-hover {
  color: var(--color-white);
  background-color: var(--color-light-green);
  transition: color calc(var(--transition-duration) * 1.4) var(--transition-easing-in-out-quad), border-color calc(var(--transition-duration) * 1.4) var(--transition-easing-in-out-quad), background-color 0s calc(var(--transition-duration) * 1.4);
  opacity: 1;
}
.contact .contact__submit__wrap .contact__block input:hover ~ .btn_link.is-hover::before {
  background-position: 0 100%;
  background-size: 100% 100%;
}
.contact .contact__submit__wrap .contact__block input:hover ~ .btn_link.is-hover .btn_icon {
  color: var(--color-white);
  background-color: var(--color-deep-green);
  border-color: var(--color-deep-green);
}
.contact .contact__submit__wrap .contact__block input:hover ~ .btn_link.is-hover .btn_icon_wrap span {
  translate: calc(min(72px, 7.2rem) / 2) 0;
  transition: all calc(var(--transition-duration) * 1.75) var(--transition-easing-out-cubic) var(--circle-delay-arrow);
  transition-property: translate;
  will-change: translate;
}
.contact .contact__submit__wrap .contact__block input {
  position: absolute;
  width: 100%;
  height: 100%;
  color: rgba(0, 0, 0, 0);
  background-color: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
}
.contact .wpcf7 form.invalid .wpcf7-response-output {
  font-size: min(16px, 1.6rem);
  font-weight: var(--fw-500);
  line-height: 1.4375;
  color: #b94a48;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  border-radius: 4px, 0.4rem;
  margin: min(32px, 3.2rem) 0 0;
  padding: min(8px, 0.8rem) min(32px, 3.2rem) min(8px, 0.8rem) min(16px, 1.6rem);
  background-color: #f2dede;
  border: 0.1rem solid #eed3d7;
}
.contact .wpcf7 form .wpcf7-response-output {
  font-size: min(16px, 1.6rem);
  font-weight: var(--fw-500);
  line-height: 1.4375;
  color: #3a87ad;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  border-radius: 0.4rem;
  margin: min(32px, 3.2rem) 0 0;
  padding: min(8px, 0.8rem) min(32px, 3.2rem) min(8px, 0.8rem) min(16px, 1.6rem);
  background-color: #d9edf7;
  border: 0.1rem solid #bce8f1;
}
.contact .wpcf7-spinner {
  display: none;
}
.contact .screen-reader-response {
  display: none;
}
.contact .wpcf7-response-output {
  display: none;
}

@media screen and (max-width: 768px) {
  .contact {
    padding: 8rem 0;
  }
  .contact .contact_inner {
    width: 65.6rem;
  }
  .contact .contact_heading {
    font-size: 2.8rem;
  }
  .contact .contact_content {
    margin-top: 4rem;
    padding: 5.6rem 4rem;
  }
  .contact .contact_bg_logo {
    display: none;
  }
  .contact .contact__form__wrap {
    gap: 3.2rem 0;
  }
  .contact .contact__form__wrap .contact__block {
    grid-template-columns: 12rem 1fr;
    gap: 0 4rem;
  }
  .contact .contact__form__wrap .contact__block .contact_item_name {
    font-size: 1.4rem;
    padding-top: 1.2rem;
  }
  .contact .contact__form__wrap .contact__block .contact_item_name .required {
    font-size: 1.4rem;
  }
  .contact .contact__form__wrap .contact__block .contact__block__input span input {
    font-size: 1.4rem;
    border-radius: 1rem;
    padding: 1.4rem 1.6rem;
  }
  .contact .contact__form__wrap .contact__block .contact__block__input span .wpcf7-not-valid-tip {
    font-size: 1.2rem;
    margin-top: 0.8rem;
  }
  .contact .contact__form__wrap .contact__block.textarea .contact__block__input textarea {
    height: 16rem;
    font-size: 1.4rem;
    border-radius: 1rem;
    padding: 1.4rem 2rem;
  }
  .contact .contact__form__wrap .contact__block.radio span.wpcf7-radio {
    gap: 1.2rem 2.4rem;
  }
  .contact .contact__form__wrap .contact__block.radio span.wpcf7-list-item-label {
    font-size: 1.4rem;
  }
  .contact .contact__form__wrap .contact__block.radio span.wpcf7-list-item-label::before {
    width: 3rem;
    margin-right: 1rem;
  }
  .contact .contact__form__wrap .contact__block.radio span.wpcf7-list-item-label::after {
    left: 0.8rem;
    width: 1.4rem;
  }
  .contact .contact__accept__wrap {
    margin-top: 4rem;
  }
  .contact .contact__accept__wrap label {
    gap: 0.8rem;
  }
  .contact .contact__accept__wrap input[type=checkbox] {
    width: 1.6rem;
    height: 1.6rem;
  }
  .contact .contact__accept__wrap .wpcf7-list-item-label {
    font-size: 1.4rem;
  }
  .contact .contact__accept__wrap .wpcf7-not-valid-tip {
    margin-top: 0.8rem;
    font-size: 1.1rem;
  }
  .contact .contact__submit__wrap {
    margin: 3.2rem auto 0;
  }
  .contact .wpcf7 form.invalid .wpcf7-response-output {
    font-size: 1.4rem;
    border-radius: 0.4rem;
    margin: 3.2rem 0 0;
    padding: 0.8rem 3.2rem 0.8rem 1.6rem;
  }
  .contact .wpcf7 form .wpcf7-response-output {
    font-size: 1.4rem;
    border-radius: 0.4rem;
    margin: 3.2rem 0 0;
    padding: 0.8rem 3.2rem 0.8rem 1.6rem;
  }
}
@media screen and (max-width: 560px) {
  .contact {
    padding: 6rem 0;
  }
  .contact .contact_inner {
    width: 36.2rem;
  }
  .contact .contact_heading {
    font-size: 2.4rem;
  }
  .contact .contact_content {
    margin-top: 2rem;
    padding: 4.8rem 3.2rem;
  }
  .contact .contact__form__wrap {
    gap: 2.4rem 0;
  }
  .contact .contact__form__wrap .contact__block {
    grid-template-columns: 1fr;
    gap: 1rem 0;
  }
  .contact .contact__form__wrap .contact__block .contact_item_name {
    padding-top: unset;
  }
  .contact .contact__form__wrap .contact__block.textarea .contact__block__input textarea {
    height: 12rem;
  }
  .contact .contact__form__wrap .contact__block.radio span.wpcf7-radio {
    gap: 2rem;
  }
  .contact .contact__accept__wrap {
    margin-top: 3.2rem;
  }
}
/****************
* popup
****************/
.pp-modal--base {
  --pp-navy: var(--color-dark-blue); /* セクション見出しの濃紺 */
  --pp-green: var(--color-light-green); /* CLOSEのグリーン */
  --pp-text: var(--color-black);
  --pp-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
  --pp-radius: 1rem;
}

.pp-modal[hidden] {
  display: none;
}

.pp-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.pp-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.pp-modal__dialog {
  position: relative;
  box-sizing: border-box;
  width: min(1040px, 92vw);
  max-height: min(86vh, 900px);
  margin: min(6vh, 48px) auto 0;
  background: #fff;
  border-radius: var(--pp-radius);
  box-shadow: var(--pp-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* 内側スクロール */
.pp-modal__inner {
  box-sizing: border-box;
  padding: 2.8rem 2.8rem 4rem;
  overflow: auto;
  flex: 1 1 auto;
  color: var(--pp-text);
}

/* タイトル・リード */
.pp-modal__title {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 4px 0 14px;
  color: #111;
}

.pp-modal__lead {
  font-size: 1.4rem;
  color: var(--pp-text);
  line-height: 1.9;
  margin: 0 0 20px;
}

.pp-section {
  margin: 28px 0;
}

.pp-section__hd {
  margin: 0 0 14px;
  background: var(--pp-navy);
  color: #fff;
  border-radius: 6px;
  font-size: clamp(16px, 1.7vw, 18px);
  font-weight: 700;
  line-height: 1.3;
}

.pp-section__hd > span {
  display: block;
  padding: 12px 16px;
}

.pp-section__body {
  font-size: 1.4rem;
  line-height: 1.95;
  color: var(--pp-text);
}

.pp-list {
  margin: 0;
  padding-left: 1.3em;
}

/* 右上 CLOSE（X＋ラベル） */
.pp-modal__close {
  position: absolute;
  top: 2.4rem;
  right: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 1rem;
}

.pp-modal__close:focus-visible {
  outline: none;
}

/* Xマークを2本線で描画 */
.pp-close__icon {
  position: relative;
  width: 4.8rem;
  height: 2.2rem;
  display: inline-block;
}

.pp-close__icon::before,
.pp-close__icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: var(--pp-green);
  transform-origin: 50% 50%;
}

.pp-close__icon::before {
  transform: translateY(-50%) rotate(25deg);
}

.pp-close__icon::after {
  transform: translateY(-50%) rotate(-25deg);
}

.pp-close__label {
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  color: var(--pp-green);
  font-weight: 700;
}

/* スクロールバー（任意） */
.pp-modal__inner::-webkit-scrollbar {
  width: 10px;
}

.pp-modal__inner::-webkit-scrollbar-thumb {
  background: #cfd6e2;
  border-radius: 999px;
  border: 2px solid #fff;
}

.pp-modal__inner::-webkit-scrollbar-track {
  background: transparent;
}

/* レスポンシブ微調整 */
@media screen and (max-width: 560px) {
  .pp-modal__dialog {
    width: 92vw;
    max-height: 82vh;
  }
  .pp-modal__inner {
    padding: 1.8rem 1.6rem 2.8rem;
  }
  .pp-modal__lead {
    font-size: 1.2rem;
  }
  .pp-section__body {
    font-size: 1.2rem;
  }
  .pp-modal__close {
    top: 1.6rem;
    right: 0.8rem;
  }
  .pp-close__icon {
    width: 4rem;
    height: 2rem;
  }
}
/****************
* page_showcase
****************/
.page_showcase_sec {
  padding: 10rem 0;
}
.page_showcase_sec .page_showcase_inner {
  width: 120rem;
  margin: 0 auto;
}
.page_showcase_sec .page_showcase_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem 3rem;
}
.page_showcase_sec .page_showcase_item > a {
  display: flex;
  flex-direction: column;
}
@media (any-hover: hover) {
  .page_showcase_sec .page_showcase_item > a:hover {
    opacity: 1;
  }
  .page_showcase_sec .page_showcase_item > a:hover .showcase_item_img img {
    scale: 1.05;
  }
}
.page_showcase_sec .showcase_item_img {
  width: 100%;
  height: auto;
  aspect-ratio: 38/45;
  border-radius: 1rem;
  overflow: hidden;
}
.page_showcase_sec .showcase_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale calc(var(--transition-duration) * 1.5) var(--transition-easing-out-cubic);
}
.page_showcase_sec .showcase_item_title {
  font-size: 2.4rem;
  font-weight: var(--fw-500);
  color: var(--color-deep-green);
  margin-top: 1.2rem;
}
.page_showcase_sec .showcase_item_status {
  margin-top: 1rem;
}
.page_showcase_sec .status_wrap {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 0 3rem;
}
.page_showcase_sec .status_wrap:not(:first-of-type) {
  margin-top: 1.2rem;
}
.page_showcase_sec .status_wrap > dt,
.page_showcase_sec .status_wrap > dd {
  font-size: 1.4rem;
  font-weight: var(--fw-400);
  color: var(--color-deep-green);
  margin: 0;
}
.page_showcase_sec .more_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--color-deep-green);
  margin-top: 3rem;
  padding-bottom: 0.8rem;
}
.page_showcase_sec .more_text {
  font-size: 1.4rem;
  font-weight: var(--fw-700);
  color: var(--color-deep-green);
}
.page_showcase_sec .more_circle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  font-size: 0;
  color: var(--color-deep-green);
  background-color: var(--color-light-gray);
  border: 1px solid var(--color-deep-green);
  border-radius: 50%;
  transition: all var(--transition-duration) var(--transition-easing-out-cubic) var(--circle-delay-color);
  transition-property: background-color, border-color;
}
.page_showcase_sec .more_icon_wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: auto;
  aspect-ratio: 1/1;
  translate: -1rem 0;
}
.page_showcase_sec .more_icon_wrap span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: auto;
  aspect-ratio: 1/1;
}
.page_showcase_sec .more_circle svg {
  width: 0.6rem;
  margin-left: 0.1rem;
}
@media (any-hover: hover) {
  .page_showcase_sec .page_showcase_item > a:hover .more_circle {
    color: var(--color-white);
    background-color: var(--color-deep-green);
    border-color: var(--color-deep-green);
    transition: color calc(var(--transition-duration) * 1.4) var(--transition-easing-in-out-quad), border-color calc(var(--transition-duration) * 1.4) var(--transition-easing-in-out-quad), background-color 0s calc(var(--transition-duration) * 1.4);
    opacity: 1;
  }
  .page_showcase_sec .page_showcase_item > a:hover .more_icon_wrap span {
    translate: 2rem 0;
    transition: all calc(var(--transition-duration) * 1.75) var(--transition-easing-out-cubic) var(--circle-delay-arrow);
    transition-property: translate;
    will-change: translate;
  }
}
.page_showcase_sec .pagination {
  margin-top: 4rem;
  text-align: center;
}
.page_showcase_sec .pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 0 2.4rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.page_showcase_sec .pagination .page-numbers > li {
  list-style: none;
}
.page_showcase_sec .pagination .page-numbers a.page-numbers,
.page_showcase_sec .pagination .page-numbers span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: #7f7f7f;
  border-radius: 999rem;
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}
.page_showcase_sec .pagination .page-numbers span.page-numbers.dots {
  align-items: flex-end;
  width: auto;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #d9d9d9;
  background: transparent;
  border-radius: unset;
}
.page_showcase_sec .pagination .page-numbers a.page-numbers.current,
.page_showcase_sec .pagination .page-numbers span.page-numbers.current {
  background: var(--color-deep-green);
  color: #fff;
}
@media (any-hover: hover) {
  .page_showcase_sec .pagination .page-numbers a.page-numbers:hover {
    opacity: 0.9;
    background: var(--color-deep-green);
    transform: translateY(-0.2rem);
  }
}

@media screen and (max-width: 768px) {
  .page_showcase_sec {
    padding: 8rem 0;
  }
  .page_showcase_sec .page_showcase_inner {
    width: 65.6rem;
  }
  .page_showcase_sec .page_showcase_list {
    grid-template-columns: repeat(2, 1fr);
  }
  .page_showcase_sec .showcase_item_title {
    font-size: 2.2rem;
  }
  .page_showcase_sec .pagination {
    margin-top: 3.2rem;
  }
  .page_showcase_sec .pagination .page-numbers {
    gap: 0 2rem;
  }
  .page_showcase_sec .pagination .page-numbers a.page-numbers,
  .page_showcase_sec .pagination .page-numbers span.page-numbers {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.2rem;
  }
  .page_showcase_sec .pagination .page-numbers span.page-numbers.dots {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 560px) {
  .page_showcase_sec {
    padding: 6rem 0;
  }
  .page_showcase_sec .page_showcase_inner {
    width: 36.2rem;
  }
  .page_showcase_sec .page_showcase_list {
    grid-template-columns: 1fr;
    gap: 5rem 0;
  }
  .page_showcase_sec .showcase_item_title {
    font-size: 2rem;
  }
  .page_showcase_sec .status_wrap > dt,
  .page_showcase_sec .status_wrap > dd {
    font-size: 1.2rem;
  }
  .page_showcase_sec .more_text {
    font-size: 1.2rem;
  }
  .page_showcase_sec .more_circle {
    width: 1.8rem;
  }
  .page_showcase_sec .more_circle svg {
    width: 0.5rem;
  }
  .page_showcase_sec .pagination {
    margin-top: 2.4rem;
  }
  .page_showcase_sec .pagination .page-numbers {
    gap: 0 1.2rem;
  }
}
/****************
* single_property
****************/
.single_property {
  padding: 7rem 0;
}
.single_property .single_property_inner {
  width: 120rem;
  margin: 0 auto;
}
.single_property .breadcrumbs .breadcrumbs_text,
.single_property .breadcrumbs .breadcrumbs_link {
  font-size: 1.6rem;
  font-weight: var(--fw-500);
  color: #888;
  transition: color 0.5s;
}
@media (any-hover: hover) {
  .single_property .breadcrumbs .breadcrumbs_link:hover {
    color: var(--color-black);
    opacity: 1;
  }
}
.single_property .single_property_content {
  display: grid;
  grid-template-columns: 66.2rem 48.6rem;
  gap: 0 5.2rem;
  width: 120rem;
  margin: 0.8rem auto 0;
}
.single_property .single_property_title {
  font-size: 3.6rem;
  font-weight: var(--fw-500);
  color: var(--color-deep-green);
}
.single_property .single_property_date {
  display: block;
  font-size: 1.6rem;
  font-weight: var(--fw-500);
  color: #888;
  text-align: end;
}
.single_property .property_gallery {
  margin-top: 0.8rem;
}
.single_property .property_gallery .main_slider {
  width: 100%;
}
.single_property .property_gallery .main_slider {
  width: 100%;
  height: auto;
  aspect-ratio: 331/200;
  border-radius: 1rem;
  overflow: hidden;
}
.single_property .property_gallery .main_img {
  width: 100%;
  height: 100%;
  aspect-ratio: 331/200;
  -o-object-fit: cover;
     object-fit: cover;
}
.single_property .property_gallery .thumbs_slider .swiper-slide {
  margin-top: 3.5rem;
  opacity: 0.6;
  cursor: pointer;
}
.single_property .property_gallery .thumbs_slider .swiper-slide-thumb-active {
  opacity: 1;
}
.single_property .property_gallery .thumb_slide {
  width: 100%;
  height: 14.6rem;
  border-radius: 1rem;
  overflow: hidden;
}
.single_property .property_gallery .thumb_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single_property .property_gallery .ui_bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 5rem;
  margin-top: 4.4rem;
}
.single_property .property_gallery .swiper-button-prev,
.single_property .property_gallery .swiper-button-next {
  position: static;
  width: auto;
  height: auto;
  background-color: transparent;
  border: none;
  margin: unset;
  padding: unset;
}
.single_property .property_gallery .swiper-button-prev svg,
.single_property .property_gallery .swiper-button-next svg {
  width: 1.1rem;
  height: 2rem;
}
.single_property .property_gallery .swiper-navigation-icon {
  color: var(--color-black);
}
.single_property .property_gallery .swiper-pagination {
  position: static;
  width: auto;
  font-size: 1.7rem;
  font-weight: var(--fw-700);
  color: var(--color-black);
}
.single_property .back_property_link {
  display: flex;
  align-items: center;
  gap: 0 1.6rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  font-weight: var(--fw-500);
  color: #888;
  margin-top: 4.8rem;
}
.single_property .back_property_link > svg {
  width: 1.4rem;
  height: auto;
  padding-top: 0.1rem;
}
.single_property .single_property_detail {
  height: -moz-fit-content;
  height: fit-content;
  background-color: var(--color-white);
  border-radius: 1rem;
  margin-top: 6.7rem;
  padding: 4rem 4.8rem;
}
.single_property .property_detail_title {
  font-family: "STFangsong", "Fangsong", "Noto Serif JP", "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 2.4rem;
  font-weight: var(--fw-400);
  color: var(--color-deep-green);
}
.single_property .data_title {
  margin-top: 4rem;
}
.single_property .property_room_box,
.single_property .property_data_box {
  margin-top: 1.8rem;
}
.single_property .property_detail_wrap {
  border-bottom: 1px solid #f2f2f2;
  padding-bottom: 1.2rem;
}
.single_property .property_detail_wrap:not(:last-of-type) {
  margin-bottom: 1.2rem;
}
.single_property .property_room_box .property_detail_wrap {
  display: grid;
  grid-template-columns: 11.2rem 1fr;
  gap: 0 3.2rem;
}
.single_property .property_data_box .property_detail_wrap {
  display: grid;
  grid-template-columns: 11.2rem 1fr;
  gap: 0 3.2rem;
}
.single_property .property_detail_wrap dt,
.single_property .property_detail_wrap dd {
  font-size: 1.6rem;
  font-weight: var(--fw-400);
  color: var(--color-black);
  margin: unset;
}
.single_property .btn {
  width: 21.5rem;
  height: 5rem;
  margin: 2.4rem auto 0;
}
.single_property .btn .btn_link {
  font-size: 1.7rem;
  color: var(--color-white);
  background-color: var(--color-deep-green);
  border-radius: 4rem;
  padding: 0px 0.8rem 0px 2rem;
}
.single_property .btn .btn_link::before {
  background: linear-gradient(var(--color-light-green), var(--color-light-green)) 100% 100%/0 100% no-repeat;
}
.single_property .btn .btn_icon {
  width: 3.6rem;
  color: var(--color-white);
  background-color: var(--color-deep-green);
  border: 1px solid var(--color-white);
}
.single_property .btn .btn_link.is-hover .btn_icon_wrap {
  position: relative;
  display: flex;
  width: 7.2rem;
  height: 3.6rem;
  translate: -1.8rem 0;
}
.single_property .btn .btn_link.is-hover .btn_icon_wrap span {
  width: 3.6rem;
}
.single_property .btn .btn_icon svg {
  width: 1.6rem;
}
.single_property .btn .btn_icon svg path {
  transition: all calc(var(--transition-duration) * 1.75) var(--transition-easing-out-cubic) var(--circle-delay-arrow);
}
@media (any-hover: hover) {
  .single_property .btn_link.is-hover:hover {
    color: var(--color-white);
    background-color: var(--color-light-green);
  }
  .single_property .btn_link.is-hover:hover .btn_icon {
    color: var(--color-white);
    background-color: var(--color-deep-green);
    border-color: var(--color-deep-green);
  }
  .single_property .btn_link.is-hover:hover .btn_icon_wrap span {
    translate: 3.6rem 0;
  }
}

@media screen and (max-width: 768px) {
  .single_property {
    padding: 8rem 0;
  }
  .single_property .single_property_inner {
    width: 65.6rem;
  }
  .single_property .breadcrumbs .breadcrumbs_text,
  .single_property .breadcrumbs .breadcrumbs_link {
    font-size: 1.5rem;
  }
  .single_property .single_property_content {
    display: flex;
    flex-direction: column;
    gap: unset;
    width: 100%;
  }
  .single_property .single_property_images {
    display: contents;
  }
  .single_property .single_property_title {
    font-size: 3.2rem;
    order: 1;
  }
  .single_property .single_property_date {
    font-size: 1.5rem;
    order: 2;
  }
  .single_property .property_gallery {
    order: 3;
  }
  .single_property .property_gallery .ui_bottom {
    margin-top: 4rem;
  }
  .single_property .property_gallery .swiper-pagination {
    font-size: 1.6rem;
  }
  .single_property .back_property_link {
    margin: 4.8rem auto 0;
    order: 5;
  }
  .single_property .single_property_detail {
    margin-top: 6.4rem;
    order: 4;
  }
  .single_property .property_detail_title {
    font-size: 2.2rem;
  }
  .single_property .property_room_box .property_detail_wrap {
    grid-template-columns: 11.2rem 1fr;
    gap: 0 8rem;
  }
  .single_property .property_data_box .property_detail_wrap {
    grid-template-columns: 11.2rem 1fr;
    gap: 0 8rem;
  }
  .single_property .property_detail_wrap dt,
  .single_property .property_detail_wrap dd {
    font-size: 1.5rem;
  }
  .single_property .btn {
    margin: 3.2rem auto 0;
  }
}
@media screen and (max-width: 560px) {
  .single_property {
    padding: 6rem 0;
  }
  .single_property .single_property_inner {
    width: 36.2rem;
  }
  .single_property .breadcrumbs .breadcrumbs_text,
  .single_property .breadcrumbs .breadcrumbs_link {
    font-size: 1.4rem;
  }
  .single_property .single_property_content {
    margin: 2rem auto 0;
  }
  .single_property .single_property_title {
    font-size: 2.8rem;
  }
  .single_property .single_property_date {
    font-size: 1.2rem;
    margin-top: 1.6rem;
  }
  .single_property .property_gallery {
    margin-top: 1rem;
  }
  .single_property .property_gallery .thumbs_slider .swiper-slide {
    margin-top: 2.4rem;
  }
  .single_property .property_gallery .thumb_slide {
    height: 10rem;
  }
  .single_property .property_gallery .ui_bottom {
    gap: 0 4rem;
  }
  .single_property .property_gallery .swiper-button-prev svg,
  .single_property .property_gallery .swiper-button-next svg {
    width: 0.8rem;
    height: auto;
  }
  .single_property .property_gallery .swiper-pagination {
    font-size: 1.4rem;
  }
  .single_property .back_property_link {
    font-size: 1.4rem;
    margin: 4rem auto 0;
  }
  .single_property .back_property_link > svg {
    width: 1.2rem;
  }
  .single_property .single_property_detail {
    margin-top: 4.8rem;
    padding: 3.2rem 3.2rem;
  }
  .single_property .property_detail_title {
    font-size: 2rem;
  }
  .single_property .data_title {
    margin-top: 3.2rem;
  }
  .single_property .property_room_box,
  .single_property .property_data_box {
    margin-top: 1.6rem;
  }
  .single_property .property_room_box .property_detail_wrap {
    grid-template-columns: 1fr;
    gap: 1rem 0;
  }
  .single_property .property_data_box .property_detail_wrap {
    grid-template-columns: 1fr;
    gap: 1rem 0;
  }
  .single_property .property_detail_wrap dt,
  .single_property .property_detail_wrap dd {
    font-size: 1.4rem;
  }
  .single_property .btn {
    margin: 3.2rem auto 0;
  }
}
/****************
* thanks
****************/
.thanks {
  position: relative;
  width: 100vw;
  height: 100svh;
}
.thanks .thanks_inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.thanks .thanks_img {
  position: relative;
  width: min(154px, 15.4rem);
  height: auto;
  aspect-ratio: 154/103;
}
.thanks .icon_mail {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.thanks .icon_check {
  position: absolute;
  top: max(-19px, -1.9rem);
  right: max(-28px, -2.8rem);
  width: min(75px, 7.5rem);
  height: auto;
}
.thanks .thanks_title {
  font-size: min(48px, 4.8rem);
  font-weight: var(--fw-500);
  color: var(--color-black);
  margin-top: min(50px, 5rem);
}
.thanks .thanks_text {
  font-size: min(24px, 2.4rem);
  font-weight: var(--fw-500);
  line-height: 1.5;
  color: var(--color-black);
  text-align: center;
  margin-top: min(50px, 5rem);
}
.thanks .btn {
  width: min(236px, 23.6rem);
  height: min(50px, 5rem);
  margin-top: min(50px, 5rem);
}
.thanks .btn .btn_link {
  font-size: min(17px, 1.7rem);
  color: var(--color-white);
  background-color: var(--color-deep-green);
  border-radius: min(40px, 4rem);
  padding: 0 min(8px, 0.8rem) 0 min(20px, 2rem);
}
.thanks .btn .btn_link::before {
  background: linear-gradient(var(--color-light-green), var(--color-light-green)) 100% 100%/0 100% no-repeat;
}
.thanks .btn .btn_icon {
  width: min(36px, 3.6rem);
  color: var(--color-white);
  background-color: var(--color-deep-green);
  border: 1px solid var(--color-white);
}
.thanks .btn .btn_link.is-hover .btn_icon_wrap {
  position: relative;
  display: flex;
  width: calc(min(36px, 3.6rem) * 2);
  height: min(36px, 3.6rem);
  translate: calc(-1 * min(36px, 3.6rem) / 2) 0;
}
.thanks .btn .btn_link.is-hover .btn_icon_wrap span {
  width: min(36px, 3.6rem);
}
.thanks .btn .btn_icon svg {
  width: min(16px, 1.6rem);
}
@media (any-hover: hover) {
  .thanks .btn_link.is-hover:hover {
    color: var(--color-white);
    background-color: var(--color-deep-green);
    border-color: var(--color-deep-green);
  }
  .thanks .btn_link.is-hover:hover .btn_icon {
    background-color: var(--color-deep-green);
    border-color: var(--color-deep-green);
  }
  .thanks .btn_link.is-hover:hover .btn_icon_wrap span {
    translate: calc(min(72px, 7.2rem) / 2) 0;
  }
}

@media screen and (max-width: 768px) {
  .thanks .thanks_inner {
    padding: 2.4rem;
  }
  .thanks .thanks_img {
    width: 13.2rem;
  }
  .thanks .icon_check {
    position: absolute;
    top: -1.6rem;
    right: -2.4rem;
    width: 6.4rem;
  }
  .thanks .thanks_title {
    font-size: 4rem;
    margin-top: 4rem;
  }
  .thanks .thanks_text {
    font-size: 2.2rem;
    margin-top: 4rem;
  }
  .thanks .btn {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 560px) {
  .thanks .thanks_img {
    width: 11.2rem;
  }
  .thanks .icon_check {
    top: -1.2rem;
    right: -2rem;
    width: 5.6rem;
  }
  .thanks .thanks_title {
    font-size: 2.8rem;
    margin-top: 3.2rem;
  }
  .thanks .thanks_text {
    font-size: 2rem;
    margin-top: 3.2rem;
  }
  .thanks .btn {
    margin-top: 3.2rem;
  }
}
.top_container {
  overflow: hidden;
}

/************
* fv
************/
.fv {
  position: relative;
  width: 100%;
  height: 100svh;
  padding: 28.8rem 16rem 0;
  z-index: 1;
}
.fv .fv_catch_ja {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", "Noto Serif JP", serif;
  font-size: 6.4rem;
  font-weight: var(--fw-400);
  line-height: 1.375;
  letter-spacing: -0.05em;
  color: var(--color-white);
}
.fv .fv_catch_en {
  display: inline-block;
  font-family: "STFangsong", "Fangsong", "Noto Serif JP", "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 4rem;
  font-weight: var(--fw-300);
  color: var(--color-white);
  margin-top: 0.8rem;
}
.fv .fv_swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.fv .fv_swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 3s cubic-bezier(0.22, 1, 0.36, 1);
}
.fv .fv_swiper .swiper-slide-active img {
  opacity: 1;
  transform: scale(1);
}

@media screen and (max-width: 768px) {
  .fv {
    padding: 28.8rem 10rem 0;
  }
  .fv .fv_catch_ja {
    font-size: 5.6rem;
  }
  .fv .fv_catch_en {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 560px) {
  .fv {
    padding: 25.9rem 2.4rem 0;
  }
  .fv .fv_catch_ja {
    font-size: 3.2rem;
  }
  .fv .fv_catch_en {
    font-size: 1.6rem;
    margin-top: 1.4rem;
  }
}
/************
* news
************/
.news {
  padding: 11.2rem 0;
  background-color: var(--color-light-gray);
}
.news .news_inner {
  width: 120rem;
  margin: 0 auto;
}
.news .news_head {
  display: flex;
  justify-content: space-between;
}
.news .sec_title_en {
  color: var(--color-deep-green);
}
.news .sec_title_ja {
  color: var(--color-deep-green);
}
.news .btn {
  width: 18rem;
  height: 5rem;
}
.news .btn .btn_link {
  font-size: 1.7rem;
  color: var(--color-white);
  background-color: var(--color-deep-green);
  border-radius: 4rem;
}
.news .btn .btn_link::before {
  background: linear-gradient(var(--color-light-green), var(--color-light-green)) 100% 100%/0 100% no-repeat;
}
.news .btn .btn_icon {
  width: 3.6rem;
  color: var(--color-white);
  background-color: var(--color-deep-green);
  border: 1px solid var(--color-white);
}
.news .btn .btn_link.is-hover .btn_icon_wrap {
  position: relative;
  display: flex;
  width: 7.2rem;
  height: 3.6rem;
  translate: -1.8rem 0;
}
.news .btn .btn_link.is-hover .btn_icon_wrap span {
  width: 3.6rem;
}
.news .btn .btn_icon svg {
  width: 1.6rem;
}
@media (any-hover: hover) {
  .news .btn_link.is-hover:hover {
    color: var(--color-white);
    background-color: var(--color-deep-green);
    border-color: var(--color-deep-green);
  }
  .news .btn_link.is-hover:hover .btn_icon {
    background-color: var(--color-deep-green);
    border-color: var(--color-deep-green);
  }
  .news .btn_link.is-hover:hover .btn_icon_wrap span {
    translate: 3.6rem 0;
  }
}
.news .news_lists {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 2.6rem;
  margin-top: 6rem;
}
.news .news_item {
  background-color: var(--color-white);
  border-radius: 1rem;
  padding: 2rem;
}
.news .news_item > a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.news .news_thumbnail {
  width: 100%;
  height: auto;
  aspect-ratio: 60/37;
  border-radius: 1rem;
  overflow: hidden;
}
.news .news_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale calc(var(--transition-duration) * 1.5) var(--transition-easing-out-cubic);
}
@media (any-hover: hover) {
  .news .news_item > a:hover {
    opacity: 1;
  }
  .news .news_item > a:hover .news_thumbnail img {
    scale: 1.05;
  }
}
.news .news_title {
  font-size: 1.8rem;
  font-weight: var(--fw-600);
  color: var(--color-deep-green);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  margin-top: 1.6rem;
}
.news .news_description {
  flex: 1;
  font-size: 1.6rem;
  font-weight: var(--fw-400);
  line-height: 1.1875;
  color: var(--color-ink-black);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  margin-top: 1.2rem;
}
.news .news_info {
  margin-top: 1.8rem;
}
.news .news_category {
  font-size: 1.6rem;
  font-weight: var(--fw-600);
  color: var(--color-deep-green);
}
.news .news_time {
  display: block;
  font-size: 1.4rem;
  font-weight: var(--fw-400);
  color: var(--color-ink-black);
  margin-top: 0.4rem;
}

@media screen and (max-width: 768px) {
  .news {
    padding: 8rem 0;
  }
  .news .news_inner {
    display: flex;
    flex-direction: column;
    width: 65.6rem;
  }
  .news .news_head {
    display: contents;
  }
  .news .sec_title_box {
    order: 1;
  }
  .news .btn {
    margin: 4rem auto 0;
    order: 3;
  }
  .news .news_lists {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
    margin-top: 5rem;
    order: 2;
  }
  .news .news_item {
    padding: 1.6rem 3.2rem 1.4rem;
  }
  .news .news_thumbnail {
    aspect-ratio: 296/175;
  }
  .news .news_title {
    margin-top: 1.4rem;
  }
  .news .news_description {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-top: 1rem;
  }
  .news .news_info {
    margin-top: 1.2rem;
  }
  .news .news_category {
    font-size: 1.4rem;
  }
  .news .news_time {
    font-size: 1.4rem;
    margin-top: 0.4rem;
  }
}
@media screen and (max-width: 560px) {
  .news {
    padding: 6rem 0;
  }
  .news .news_inner {
    width: 36.2rem;
  }
  .news .btn {
    margin: 3rem auto 0;
  }
  .news .news_lists {
    grid-template-columns: 1fr;
    gap: 4rem 0;
    margin-top: 4rem;
  }
  .news .news_title {
    margin-top: 1.2rem;
  }
  .news .news_description {
    font-size: 1.4rem;
    margin-top: 0.8rem;
  }
  .news .news_info {
    margin-top: 0.8rem;
  }
  .news .news_category {
    font-size: 1.2rem;
  }
  .news .news_time {
    font-size: 1.2rem;
    margin-top: 0.4rem;
  }
}
/************
* about
************/
.about {
  position: relative;
  padding: 13.2rem 0;
}
.about .about_bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.about .about_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .about_inner {
  display: grid;
  grid-template-columns: 70rem 1fr;
  align-items: center;
  gap: 0 8.5rem;
  width: 120rem;
  margin: 0 auto;
}
.about picture {
  border-radius: 1rem;
  overflow: hidden;
}
.about picture:has(.about_img01) {
  display: block;
  width: 50rem;
  margin: 0 0 0 auto;
}
.about picture:has(.about_img02) {
  display: block;
  width: 40rem;
  margin: 5.4rem auto 0 0;
}
.about picture img {
  width: 100%;
  height: auto;
}
.about .about_details {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.about .sec_title_en {
  color: var(--color-white);
  text-align: end;
}
.about .sec_title_ja {
  color: var(--color-white);
  text-align: end;
}
.about .about_title {
  font-size: 2.4rem;
  font-weight: var(--fw-700);
  color: var(--color-white);
  margin-top: 5.2rem;
  padding-right: 3.6rem;
}
.about .about_description {
  font-size: 1.6rem;
  font-weight: var(--fw-700);
  line-height: 1.5;
  color: var(--color-white);
  margin-top: 3rem;
  padding-right: 6.4rem;
}
.about .about_description > span {
  display: block;
  margin-top: 1.6rem;
}

@media screen and (max-width: 768px) {
  .about {
    padding: 8rem 0;
  }
  .about .about_inner {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: unset;
    width: 65.6rem;
  }
  .about .about_imgs {
    margin-top: 5rem;
    order: 2;
  }
  .about picture:has(.about_img01) {
    width: 50rem;
  }
  .about picture:has(.about_img02) {
    width: 40rem;
    margin: 3.2rem auto 0 0;
  }
  .about picture img {
    width: 100%;
    height: auto;
  }
  .about .about_details {
    display: contents;
  }
  .about .sec_title_box {
    order: 1;
  }
  .about .sec_title_en {
    text-align: center;
  }
  .about .sec_title_ja {
    text-align: center;
  }
  .about .about_title {
    font-size: 2.2rem;
    text-align: center;
    margin-top: 5rem;
    padding: unset;
    order: 3;
  }
  .about .about_description {
    width: -moz-fit-content;
    width: fit-content;
    font-weight: var(--fw-400);
    margin: 1.2rem auto 0;
    padding: unset;
    order: 4;
  }
}
@media screen and (max-width: 560px) {
  .about {
    padding: 6rem 0;
  }
  .about .about_inner {
    width: 36.2rem;
  }
  .about .about_imgs {
    margin-top: 4rem;
  }
  .about picture:has(.about_img01) {
    width: 29.6rem;
  }
  .about picture:has(.about_img02) {
    width: 25.2rem;
    margin: 2.4rem auto 0 0;
  }
  .about .about_title {
    font-size: 2rem;
  }
}
/************
* slide_text
************/
.slide_text {
  display: flex;
  width: 100vw;
  background-color: var(--color-white);
  overflow: hidden;
}

.slide_text_inner {
  display: flex;
  gap: 2.4rem;
  flex: 0 0 auto;
  white-space: nowrap;
  padding-left: 3.2rem;
}
.slide_text_inner:nth-child(odd) {
  animation: moveToLeft 300s -150s infinite linear;
}
.slide_text_inner:nth-child(even) {
  animation: moveToLeft2 300s infinite linear;
}

.slide_text_item {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  flex: 0 0 auto;
  font-family: "STFangsong", "Fangsong", "Noto Serif JP", "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 15rem;
  font-weight: var(--fw-300);
  color: var(--color-gray);
  opacity: 0.3;
  white-space: nowrap;
}

.slide_text_item svg {
  width: 12.7rem;
  height: auto;
}

@keyframes moveToLeft {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes moveToLeft2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@media screen and (max-width: 768px) {
  .slide_text_inner {
    gap: 2rem;
    padding-left: 2rem;
  }
  .slide_text_item {
    gap: 2rem;
    font-size: 10rem;
  }
  .slide_text_item svg {
    width: 10rem;
  }
}
@media screen and (max-width: 560px) {
  .slide_text_inner {
    gap: 1.6rem;
    padding-left: 1.6rem;
  }
  .slide_text_item {
    gap: 1.6rem;
    font-size: 7.4rem;
  }
  .slide_text_item svg {
    width: 7.2rem;
  }
}
/************
* services
************/
.services {
  position: relative;
  margin-top: 15.5rem;
}
.services .services_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 15.5rem);
  border-radius: 3rem;
  z-index: 1;
  -webkit-mask: url(../../assets/images/webp/services_bg_mask.webp) 0% 0%/cover no-repeat;
  mask: url(../../assets/images/webp/services_bg_mask.webp) 0% 0%/cover no-repeat;
}
.services .services_bg_logo {
  position: absolute;
  top: 14rem;
  left: 50%;
  transform: translateX(-50%);
  width: 88.6rem;
  height: auto;
  filter: blur(1rem);
  z-index: 1;
}
.services .services_bg_logo svg {
  width: 100%;
}
.services .services_bg_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--color-pascal-green);
  opacity: 0.2;
  z-index: 2;
}
.services .services_inner {
  position: relative;
  width: 120rem;
  margin: 0 auto;
  z-index: 2;
}
.services .sec_title_box {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2rem;
}
.services .sec_title_en {
  color: var(--color-deep-green);
}
.services .sec_title_ja {
  color: var(--color-deep-green);
}
.services .services_item {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 48.2rem;
  background-color: var(--color-white);
  border-radius: 3rem;
  padding: 1.5rem 3.2rem 6.8rem;
  -webkit-mask: url(../../assets/images/webp/services_item_mask.webp) 0% 0%/cover no-repeat;
  mask: url(../../assets/images/webp/services_item_mask.webp) 0% 0%/cover no-repeat;
}
.services .services_item:nth-of-type(2) {
  margin: -1.5rem 0 0 auto;
}
.services .services_item:nth-of-type(3) {
  margin: -14rem auto 0 0;
}
.services .services_item:nth-of-type(4) {
  margin: -23rem 13.6rem 0 auto;
}
.services .services_num {
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Antic", "Helvetica Neue", "Noto Sans", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 6rem;
  line-height: 0.7;
  color: var(--color-deep-green);
  margin-left: 1.4rem;
}
.services .services_img {
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  border-radius: 1rem;
  overflow: hidden;
  margin-top: 3.2rem;
}
.services .services_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.services .services_title {
  font-size: 2.4rem;
  font-weight: var(--fw-700);
  color: var(--color-deep-green);
  margin-top: 2.4rem;
}
.services .services_description {
  font-size: 1.6rem;
  font-weight: var(--fw-400);
  line-height: 1.5;
  color: var(--color-deep-green);
  margin-top: 1rem;
}

@media screen and (max-width: 768px) {
  .services {
    margin-top: 8rem;
  }
  .services .services_bg {
    display: none;
  }
  .services .services_inner {
    width: 65.6rem;
    background-color: rgba(184, 218, 195, 0.3);
    -webkit-mask: url(../../assets/images/webp/services_bg_mask_sp.webp) 0% 0%/cover no-repeat;
    mask: url(../../assets/images/webp/services_bg_mask_sp.webp) 0% 0%/cover no-repeat;
    margin: 5rem auto 0;
    padding: 9rem 2.4rem 6rem;
  }
  .services .sec_title_box {
    width: initial;
    margin-top: unset;
  }
  .services .sec_title_en {
    text-align: center;
  }
  .services .sec_title_ja {
    text-align: center;
  }
  .services .services_item {
    width: 100%;
    -webkit-mask: url(../../assets/images/webp/services_item_mask_sp.webp) 0% 0%/cover no-repeat;
    mask: url(../../assets/images/webp/services_item_mask_sp.webp) 0% 0%/cover no-repeat;
    border-radius: 1rem;
    padding: 1.4rem 2.4rem 4.8rem;
  }
  .services .services_item:nth-of-type(2) {
    margin: unset;
  }
  .services .services_item:nth-of-type(3) {
    margin: 5rem 0 0;
  }
  .services .services_item:nth-of-type(4) {
    margin: 5rem 0 0;
  }
  .services .services_num {
    font-size: 4.8rem;
    margin-left: 7.6rem;
  }
  .services .services_img {
    margin-top: 4.8rem;
  }
  .services .services_title {
    font-size: 2.2rem;
    margin-top: 2rem;
  }
  .services .services_description {
    font-size: 1.5rem;
    margin-top: 0.8rem;
  }
}
@media screen and (max-width: 560px) {
  .services {
    margin-top: 6rem;
  }
  .services .services_inner {
    width: 36.2rem;
    margin: 4rem auto 0;
    padding: 9rem 2rem 6rem;
  }
  .services .services_item {
    -webkit-mask: url(../../assets/images/webp/services_item_mask_sp.webp) 0% 0%/cover no-repeat;
    mask: url(../../assets/images/webp/services_item_mask_sp.webp) 0% 0%/cover no-repeat;
    padding: 1.4rem 3rem 4.8rem;
  }
  .services .services_num {
    font-size: 3.2rem;
    margin-left: 2.2rem;
  }
  .services .services_img {
    margin-top: 2.4rem;
  }
  .services .services_title {
    font-size: 2rem;
  }
  .services .services_description {
    font-size: 1.4rem;
    margin-top: 0.4rem;
  }
}
/************
* showcase
************/
.showcase {
  padding: 30.4rem 0 12.5rem;
}
.showcase .showcase_container {
  position: relative;
  background-color: var(--color-deep-green);
  border-radius: 3rem;
  padding: 3.2rem 0 9.4rem;
  -webkit-mask: url(../../assets/images/webp/showcase_mask.webp) 0% 0%/cover no-repeat;
  mask: url(../../assets/images/webp/showcase_mask.webp) 0% 0%/cover no-repeat;
}
.showcase .sec_title_box {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 12rem 0 auto;
}
.showcase .sec_title_en {
  color: var(--color-white);
}
.showcase .sec_title_ja {
  color: var(--color-white);
}
.showcase .showcase_inner {
  width: 120rem;
  margin: 8.2rem auto 0;
}
.showcase .showcase_lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 6.6rem;
}
.showcase .showcase_item > a {
  display: block;
}
.showcase .showcase_thumbnail {
  width: 100%;
  height: auto;
  aspect-ratio: 89/100;
  border-radius: 1rem;
  overflow: hidden;
}
.showcase .showcase_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale calc(var(--transition-duration) * 1.5) var(--transition-easing-out-cubic);
}
.showcase .showcase_detail {
  display: grid;
  grid-template-columns: 1fr 4.8rem;
  align-items: center;
  margin-top: 2.4rem;
  padding: 0 0.7rem;
}
.showcase .showcase_title {
  font-size: 2.4rem;
  font-weight: var(--fw-700);
  color: var(--color-white);
}
.showcase .btn_icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  font-size: 0;
  color: var(--color-white);
  background-color: var(--color-deep-green);
  border: 1px solid var(--color-white);
  border-radius: 50%;
  transition: all var(--transition-duration) var(--transition-easing-out-cubic) var(--circle-delay-color);
  transition-property: background-color, border-color;
}
.showcase .btn_icon_wrap {
  position: relative;
  display: flex;
  width: 9.6rem;
  height: 4.8rem;
  translate: -2.4rem 0;
}
.showcase .btn_icon_wrap span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: auto;
  aspect-ratio: 1/1;
}
.showcase .btn_icon svg {
  width: 1.4rem;
}
@media (any-hover: hover) {
  .showcase .showcase_item > a:hover {
    opacity: 1;
  }
  .showcase .showcase_item > a:hover .showcase_thumbnail img {
    scale: 1.05;
  }
  .showcase .showcase_item > a:hover .btn_icon {
    background-color: var(--color-light-green);
    border-color: var(--color-light-green);
  }
  .showcase .showcase_item > a:hover .btn_icon_wrap span {
    translate: 4.8rem 0;
    transition: all calc(var(--transition-duration) * 1.75) var(--transition-easing-out-cubic) var(--circle-delay-arrow);
    transition-property: translate;
    will-change: translate;
  }
}
.showcase .btn {
  width: 23rem;
  height: 5rem;
  margin: 8rem auto 0;
}
.showcase .btn .btn_link {
  font-size: 1.7rem;
  color: var(--color-deep-green);
  background-color: var(--color-white);
  border-radius: 4rem;
}
.showcase .btn .btn_link::before {
  background: linear-gradient(var(--color-light-green), var(--color-light-green)) 100% 100%/0 100% no-repeat;
}
.showcase .btn .btn_icon {
  width: 3.6rem;
  color: var(--color-deep-green);
  background-color: var(--color-white);
  border: 1px solid var(--color-deep-green);
}
.showcase .btn .btn_link.is-hover .btn_icon_wrap {
  position: relative;
  display: flex;
  width: 7.2rem;
  height: 3.6rem;
  translate: -1.8rem 0;
}
.showcase .btn .btn_link.is-hover .btn_icon_wrap span {
  width: 3.6rem;
}
.showcase .btn .btn_icon svg {
  width: 1.6rem;
}
.showcase .btn .btn_icon svg path {
  transition: all calc(var(--transition-duration) * 1.75) var(--transition-easing-out-cubic) var(--circle-delay-arrow);
}
@media (any-hover: hover) {
  .showcase .btn_link.is-hover:hover {
    color: var(--color-white);
    background-color: var(--color-light-green);
    border-color: var(--color-light-green);
  }
  .showcase .btn_link.is-hover:hover .btn_icon {
    color: var(--color-white);
    background-color: var(--color-deep-green);
    border-color: var(--color-deep-green);
  }
  .showcase .btn_link.is-hover:hover .btn_icon_wrap span {
    translate: 3.6rem 0;
  }
}

@media screen and (max-width: 768px) {
  .showcase {
    padding: 16rem 0 8rem;
  }
  .showcase .showcase_container {
    display: contents;
  }
  .showcase .sec_title_box {
    margin: 0 auto;
  }
  .showcase .sec_title_en {
    color: var(--color-deep-green);
    text-align: center;
  }
  .showcase .sec_title_ja {
    color: var(--color-deep-green);
    text-align: center;
  }
  .showcase .showcase_inner {
    width: 65.6rem;
    background-color: var(--color-deep-green);
    border-radius: 1rem;
    -webkit-mask: url(../../assets/images/webp/showcase_mask_sp.webp) 0% 0%/cover no-repeat;
    mask: url(../../assets/images/webp/showcase_mask_sp.webp) 0% 0%/cover no-repeat;
    margin: 5rem auto 0;
    padding: 16rem 2.4rem 10rem;
  }
  .showcase .showcase_lists {
    grid-template-columns: 1fr;
    gap: 5rem 0;
  }
  .showcase .showcase_item > a {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .showcase .showcase_thumbnail {
    aspect-ratio: 157/200;
  }
  .showcase .showcase_detail {
    grid-template-columns: 1fr;
    place-items: center;
    margin-top: 2.2rem;
    padding: unset;
  }
  .showcase .showcase_title {
    font-size: 2.4rem;
    text-align: center;
  }
  .showcase .btn_icon {
    margin: 2.4rem auto 0;
  }
  .showcase .btn {
    margin: 6.4rem auto 0;
  }
  .showcase .btn .btn_icon {
    margin: unset;
  }
}
@media screen and (max-width: 560px) {
  .showcase {
    padding: 12rem 0 6rem;
  }
  .showcase .showcase_inner {
    width: 36.2rem;
    margin: 4rem auto 0;
    padding: 10rem 2.4rem 11.2rem;
  }
  .showcase .showcase_lists {
    gap: 4rem 0;
  }
  .showcase .showcase_detail {
    margin-top: 2rem;
  }
  .showcase .btn {
    margin: 4.8rem auto 0;
  }
}
/************
* recruit
************/
.recruit {
  position: relative;
  padding: 10.5rem 0;
}
.recruit .recruit_bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.recruit .recruit_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recruit .recruit_inner {
  display: grid;
  grid-template-columns: 1fr 59.8rem;
  align-items: center;
  gap: 0 5.8rem;
  width: 118rem;
  margin: 0 auto;
}
.recruit picture {
  border-radius: 1rem;
  overflow: hidden;
}
.recruit picture:has(.recruit_img01) {
  display: block;
  width: 53.8rem;
  margin: 0 auto 0 0;
}
.recruit picture:has(.recruit_img02) {
  display: block;
  width: 36rem;
  margin: 3.4rem 0 0 auto;
}
.recruit picture img {
  width: 100%;
  height: auto;
}
.recruit .recruit_details {
  display: flex;
  flex-direction: column;
}
.recruit .sec_title_en {
  color: var(--color-white);
}
.recruit .sec_title_ja {
  color: var(--color-white);
}
.recruit .recruit_title {
  font-size: 2.4rem;
  font-weight: var(--fw-700);
  color: var(--color-white);
  margin-top: 6rem;
}
.recruit .recruit_description {
  font-size: 1.6rem;
  font-weight: var(--fw-400);
  line-height: 2.1;
  color: var(--color-white);
  margin-top: 1rem;
}
.recruit .btn {
  width: 21.5rem;
  height: 5rem;
  margin: 4rem 0 0;
}
.recruit .btn .btn_link {
  font-size: 1.7rem;
  color: var(--color-dark-blue);
  background-color: var(--color-white);
  border-radius: 4rem;
}
.recruit .btn .btn_link::before {
  background: linear-gradient(var(--color-pascal-blue), var(--color-pascal-blue)) 100% 100%/0 100% no-repeat;
}
.recruit .btn .btn_icon {
  width: 3.6rem;
  color: var(--color-dark-blue);
  background-color: var(--color-white);
  border: 1px solid var(--color-dark-blue);
}
.recruit .btn .btn_link.is-hover .btn_icon_wrap {
  position: relative;
  display: flex;
  width: 7.2rem;
  height: 3.6rem;
  translate: -1.8rem 0;
}
.recruit .btn .btn_link.is-hover .btn_icon_wrap span {
  width: 3.6rem;
}
.recruit .btn .btn_icon svg {
  width: 1.6rem;
}
.recruit .btn .btn_icon svg path {
  transition: all calc(var(--transition-duration) * 1.75) var(--transition-easing-out-cubic) var(--circle-delay-arrow);
}
@media (any-hover: hover) {
  .recruit .btn_link.is-hover:hover {
    color: var(--color-white);
    background-color: var(--color-pascal-blue);
  }
  .recruit .btn_link.is-hover:hover .btn_icon {
    color: var(--color-white);
    background-color: var(--color-dark-blue);
    border-color: var(--color-dark-blue);
  }
  .recruit .btn_link.is-hover:hover .btn_icon_wrap span {
    translate: 3.6rem 0;
  }
}

@media screen and (max-width: 768px) {
  .recruit {
    padding: 8rem 0;
  }
  .recruit .recruit_inner {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: unset;
    width: 65.6rem;
  }
  .recruit .recruit_imgs {
    margin-top: 5rem;
    order: 2;
  }
  .recruit picture:has(.recruit_img01) {
    width: 53.8rem;
  }
  .recruit picture:has(.recruit_img02) {
    width: 36rem;
    margin: 3.2rem 0 0 auto;
  }
  .recruit picture img {
    width: 100%;
    height: auto;
  }
  .recruit .recruit_details {
    display: contents;
  }
  .recruit .sec_title_box {
    order: 1;
  }
  .recruit .sec_title_en {
    text-align: center;
  }
  .recruit .sec_title_ja {
    text-align: center;
  }
  .recruit .recruit_title {
    font-size: 2.2rem;
    margin-top: 5rem;
    order: 3;
  }
  .recruit .recruit_description {
    font-size: 1.8rem;
    font-weight: var(--fw-400);
    margin-top: 2.4rem;
    order: 4;
  }
  .recruit .btn {
    margin: 4rem auto 0;
    order: 5;
  }
}
@media screen and (max-width: 560px) {
  .recruit {
    padding: 6rem 0;
  }
  .recruit .recruit_inner {
    width: 36.2rem;
  }
  .recruit .recruit_imgs {
    margin-top: 4rem;
  }
  .recruit picture:has(.recruit_img01) {
    width: 29.6rem;
  }
  .recruit picture:has(.recruit_img02) {
    width: 25.2rem;
    margin: 2.4rem 0 0 auto;
  }
  .recruit .recruit_title {
    font-size: 2rem;
    margin-top: 4rem;
  }
  .recruit .recruit_description {
    font-size: 1.6rem;
    margin-top: 2rem;
  }
  .recruit .btn {
    margin: 3rem auto 0;
  }
}
/*# sourceMappingURL=app.css.map */
