@charset "UTF-8";
/* 
..%%%%...%%......%%.....
.%%..%%..%%......%%.....
.%%%%%%..%%......%%.....
.%%..%%..%%......%%.....
.%%..%%..%%%%%%..%%%%%%.
........................
*/
:root {
  --color-gradient-orange--bottom: linear-gradient(to bottom, #fcc749, #ff893a);
  --color-gradient-orange--right: linear-gradient(to right, #fcc749, #ff893a);
  --color-gradient-pink--bottom: linear-gradient(to bottom, #f7cfcf, #f4bdbd);
  --color-gradient-green--right: linear-gradient(to right, #74cad7, #6cd5ba);
  --color-gradient-green--left: linear-gradient(to left, #74cad7, #6cd5ba);
  --color-gradient-mint: linear-gradient(to right, #cff7b0, #92efbf, #53e7cf);
  --color-gradient-blue--right: linear-gradient(to right, #01a1e8, #347bde, #306ed9);
  --color-gradient-blue--left: linear-gradient(to left, #01a1e8, #347bde, #306ed9);
  --color-brown: #6e5d50;
  --color-beige: #f8f5f0;
  --color-dark-beige: #fefded;
  --color-light-beige: #fdf6eb;
  --color-mint: #51d2bf;
  --color-light-mint: #83dfd1;
  --color-dark-mint: #19b59e;
  --color-red: #ff0000;
  --color-pink: #f7cfcf;
  --color-light-pink: #fdefef;
  --color-blue: #1f63bc;
  --color-light-blue: #edf9fe;
  --color-sky-blue: #3EE1F3;
  --color-orange: #ff9900;
  --color-light-orange: #fae8c6;
  --color-light-green: #99cf6b;
  --color-green: #43a798;
  --color-dark-green: #38887c;
  --color-white: #fff;
  --color-dark-grey: #8b8b8b;
  --color-grey: #707070;
  --color-light-grey: #c8c8c8;
  --color-light-black: #333333;
  --color-black: #000000;
  --shadow-default: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  --font-noto: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック",
    "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro",
    メイリオ, Meiryo, sans-serif;
  --font-serif: "Noto Serif JP", "游明朝", YuMincho, "游明朝", "Yu Mincho",
    "Hiragino Mincho ProN", "Hiragino Mincho Pro", メイリオ, Meiryo, sans-serif;
  --font-zen-maru-gothic: "Zen Maru Gothic", sans-serif;
  --font-roboto: "Roboto", sans-serif;
  --font-size-base: 1.6rem;
  --letter-spacing-base: 0.05em;
  --line-height-base: 1.6;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
  html {
    overflow-x: hidden;
  }
}

body {
  font-family: var(--font-noto);
  font-weight: normal;
  font-size: var(--font-size-base);
  color: var(--color-black);
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-base);
  text-align: justify;
  text-justify: inter-character;
  font-feature-settings: "palt";
  margin: 0;
  overflow-x: hidden;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  body {
    line-height: 1.8;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: var(--line-height-base);
  font-weight: normal;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.8;
}

p {
  font-size: var(--font-size-base);
  font-family: var(--font-noto);
  margin: 0;
  font-size: clamp(1.4rem, 0.84vw, 1.6rem);
}

li {
  list-style: none;
}

b,
strong {
  font-family: var(--font-noto);
  font-weight: bold;
}

section {
  padding: 10.5vh 0;
}
@media screen and (max-width: 1024px) {
  section {
    padding: 8rem 0;
  }
}
@media screen and (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
}

/* 
..%%%%...%%.......%%%%...%%%%%....%%%%...%%.....
.%%......%%......%%..%%..%%..%%..%%..%%..%%.....
.%%.%%%..%%......%%..%%..%%%%%...%%%%%%..%%.....
.%%..%%..%%......%%..%%..%%..%%..%%..%%..%%.....
..%%%%...%%%%%%...%%%%...%%%%%...%%..%%..%%%%%%.
................................................
*/
.u-font-noto {
  font-family: "Noto Sans JP", sans-serif !important;
}

.u-font-serif {
  font-family: "Noto Serif JP", sans-serif !important;
}

.u-font-zen-maru-gothic {
  font-family: "Zen Maru Gothic", sans-serif !important;
}

.u-font-roboto {
  font-family: "Roboto", sans-serif !important;
}

.u-bg-white {
  background-color: #fff;
}

.u-bg-black {
  background-color: #000;
}

.u-bg-beige {
  background-color: #fefded;
}

.u-bg-light-blue {
  background-color: #edf9fe;
}

.u-bg-mint {
  background-color: #51d2bf;
}

.u-bg-mint-dark {
  background-color: #19b59e;
}

.u-bg-light-green {
  background-color: #99cf6b;
}

.u-bg-grey {
  background-color: #f6f6f6;
}

.u-bg-brown {
  background-color: #6e5d50;
}

.u-bg-red {
  background-color: #ff4141;
}

.u-color-white {
  color: #fff;
}

.u-color-black {
  color: #000;
}

.u-color-beige {
  color: #fefded;
}

.u-color-light-blue {
  color: #edf9fe;
}

.u-color-mint {
  color: #51d2bf;
}

.u-color-mint-dark {
  color: #19b59e;
}

.u-color-light-green {
  color: #99cf6b;
}

.u-color-grey {
  color: #f6f6f6;
}

.u-color-brown {
  color: #6e5d50;
}

.u-color-red {
  color: #ff4141;
}

.u-text-11 {
  font-size: 1.1rem !important;
}

.u-text-12 {
  font-size: 1.2rem !important;
}

.u-text-14 {
  font-size: 1.4rem !important;
}

.u-text-16 {
  font-size: 1.6rem !important;
}

.u-text-18 {
  font-size: 1.8rem !important;
}

.u-text-20 {
  font-size: 2rem !important;
}

.u-text-21 {
  font-size: 2.1rem !important;
}

.u-text-22 {
  font-size: 2.2rem !important;
}

.u-text-23 {
  font-size: 2.3rem !important;
}

.u-text-25 {
  font-size: 2.5rem !important;
}

.u-text-28 {
  font-size: 2.8rem !important;
}

.u-text-30 {
  font-size: 3rem !important;
}

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

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

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

.u-mx-auto-0 {
  margin: 0rem auto !important;
}

.u-mt-0 {
  margin-top: 0rem !important;
}

.u-mb-0 {
  margin-bottom: 0rem !important;
}

.u-pt-0 {
  padding-top: 0rem !important;
}

.u-pb-0 {
  padding-bottom: 0rem !important;
}

.u-mx-auto-1 {
  margin: 1rem auto !important;
}

.u-mt-1 {
  margin-top: 1rem !important;
}

.u-mb-1 {
  margin-bottom: 1rem !important;
}

.u-pt-1 {
  padding-top: 1rem !important;
}

.u-pb-1 {
  padding-bottom: 1rem !important;
}

.u-mx-auto-2 {
  margin: 2rem auto !important;
}

.u-mt-2 {
  margin-top: 2rem !important;
}

.u-mb-2 {
  margin-bottom: 2rem !important;
}

.u-pt-2 {
  padding-top: 2rem !important;
}

.u-pb-2 {
  padding-bottom: 2rem !important;
}

.u-mt-3 {
  margin-top: 3rem !important;
}

.u-mb-3 {
  margin-bottom: 3rem !important;
}

.u-pt-3 {
  padding-top: 3rem !important;
}

.u-pb-3 {
  padding-bottom: 3rem !important;
}

.u-mx-auto-4 {
  margin: 4rem auto !important;
}

.u-mt-4 {
  margin-top: 4rem !important;
}

.u-mb-4 {
  margin-bottom: 4rem !important;
}

.u-pt-4 {
  padding-top: 4rem !important;
}

.u-pb-4 {
  padding-bottom: 4rem !important;
}

.u-mt-5 {
  margin-top: 5rem !important;
}

.u-mb-5 {
  margin-bottom: 5rem !important;
}

.u-pt-5 {
  padding-top: 5rem !important;
}

.u-pb-5 {
  padding-bottom: 5rem !important;
}

.u-mx-auto-6 {
  margin: 6rem auto !important;
}

.u-mt-6 {
  margin-top: 6rem !important;
}

.u-mb-6 {
  margin-bottom: 6rem !important;
}

.u-pt-6 {
  padding-top: 6rem !important;
}

.u-pb-6 {
  padding-bottom: 6rem !important;
}

.u-mt-7 {
  margin-top: 7rem !important;
}

.u-mb-7 {
  margin-bottom: 7rem !important;
}

.u-pt-7 {
  padding-top: 7rem !important;
}

.u-pb-7 {
  padding-bottom: 7rem !important;
}

.u-mx-auto-8 {
  margin: 8rem auto !important;
}

.u-mt-8 {
  margin-top: 8rem !important;
}

.u-mb-8 {
  margin-bottom: 8rem !important;
}

.u-pt-8 {
  padding-top: 8rem !important;
}

.u-pb-8 {
  padding-bottom: 8rem !important;
}

.u-ml-auto {
  margin-left: auto !important;
}

.u-mr-auto {
  margin-right: auto !important;
}

.u-ml-0 {
  margin-left: 0 !important;
}

.u-mr-0 {
  margin-right: 0 !important;
}

.u-gap-1 {
  gap: 1rem !important;
}

.u-gap-2 {
  gap: 2rem !important;
}

.u-gap-3 {
  gap: 3rem !important;
}

.u-gap-4 {
  gap: 4rem !important;
}

.u-gap-5 {
  gap: 5rem !important;
}

.u-gap-6 {
  gap: 6rem !important;
}

.u-gap-7 {
  gap: 7rem !important;
}

.u-gap-8 {
  gap: 8rem !important;
}

.u-gap-9 {
  gap: 9rem !important;
}

.u-gap-10 {
  gap: 10rem !important;
}

.u-lh-10 {
  line-height: 0.1;
}

.u-lh-20 {
  line-height: 0.2;
}

.u-lh-30 {
  line-height: 0.3;
}

.u-lh-40 {
  line-height: 0.4;
}

.u-lh-50 {
  line-height: 0.5;
}

.u-lh-60 {
  line-height: 0.6;
}

.u-lh-70 {
  line-height: 0.7;
}

.u-lh-80 {
  line-height: 0.8;
}

.u-lh-90 {
  line-height: 0.9;
}

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

.u-lh-110 {
  line-height: 1.1;
}

.u-lh-120 {
  line-height: 1.2;
}

.u-lh-130 {
  line-height: 1.3;
}

.u-lh-140 {
  line-height: 1.4;
}

.u-lh-150 {
  line-height: 1.5;
}

.u-lh-160 {
  line-height: 1.6;
}

.u-lh-170 {
  line-height: 1.7;
}

.u-lh-180 {
  line-height: 1.8;
}

.u-lh-190 {
  line-height: 1.9;
}

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

.l-flex {
  display: flex;
}
.l-flex--wrap {
  flex-wrap: wrap;
}
.l-flex--column {
  flex-direction: column;
}
.l-flex--row {
  flex-direction: row;
}
.l-flex--center {
  justify-content: center;
  align-items: center;
}
.l-flex--align-center {
  align-items: center;
}
.l-flex--align-start {
  align-items: flex-start;
}
.l-flex--align-end {
  align-items: flex-end;
}
.l-flex--justify-center {
  justify-content: center;
}
.l-flex--justify-between {
  justify-content: space-between;
}
.l-flex--justify-start {
  justify-content: flex-start;
}
.l-flex--justify-end {
  justify-content: flex-end;
}
.l-flex.u-flex-1 > div {
  flex: 1;
}

.u-flex-1 {
  flex: 1;
}

.u-shrink-1 {
  flex-shrink: 1;
}

.u-grow-1 {
  flex-grow: 1;
}

.l-grid {
  display: grid;
}
.l-grid--2col {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.l-grid--3col {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.l-container {
  width: 100%;
  max-width: clamp(1000px, 64.58vw, 1240px);
  margin: 0 auto;
}
@media screen and (max-width: 1500px) {
  .l-container {
    width: 100%;
    padding: 0 6%;
  }
}
@media screen and (max-width: 1024px) {
  .l-container {
    width: 100%;
    padding: 0 6%;
  }
}
.l-container--small {
  width: 100%;
  max-width: clamp(750px, 100% - 32vw, 978px);
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .l-container--small {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0 6%;
  }
}
.l-container--center {
  width: 100%;
  max-width: 64.68vw;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .l-container--center {
    max-width: 100%;
    max-width: 100%;
    padding: 0 6%;
  }
}
.l-container--large {
  width: 100%;
  max-width: 73.17vw;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .l-container--large {
    max-width: 68.9vw;
  }
}
@media screen and (max-width: 1024px) {
  .l-container--large {
    max-width: 100%;
    padding: 0 6%;
  }
}
.l-container--right {
  width: 100%;
  max-width: 68.9vw;
  margin-right: 5.26vw;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .l-container--right {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 6%;
  }
}
.l-container--left {
  width: 100%;
  max-width: 68.9vw;
  margin-right: auto;
  margin-left: 5.26vw;
}
@media screen and (max-width: 1024px) {
  .l-container--left {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 6%;
  }
}

.u-text-center {
  text-align: center;
}
.u-text-left {
  text-align: left;
}
.u-text-right {
  text-align: right;
}

.c-heading--section {
  position: relative;
  font-size: clamp(3.6rem, 2.4vw, 4.6rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 7rem;
  color: var(--color-navy);
}
@media screen and (max-width: 768px) {
  .c-heading--section {
    font-size: clamp(2.2rem, 1.25vw, 2.4rem);
    margin-bottom: 5rem;
  }
}
.c-heading--section::before {
  content: "";
  text-align: center;
  position: absolute;
  width: 64px;
  height: 7px;
  bottom: -0.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: url(../../img/title_border.png) no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .c-heading--section::before {
    bottom: -1rem;
  }
}
.c-heading--section::after {
  content: attr(data-en);
  position: absolute;
  transform: translate(-50%, -50%);
  bottom: -7rem;
  left: 50%;
  font-size: 3rem;
  color: var(--color-blue);
  font-weight: normal;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-heading--section::after {
    font-size: 1.6rem;
    bottom: -5rem;
  }
}

.c-card {
  background-color: var(--color-white);
  box-shadow: var(--shadow-default);
}

.u-relative {
  position: relative;
}

.u-bg-cover {
  background-size: cover !important;
}

.u-bg-contain {
  background-size: contain !important;
}

@media screen and (max-width: 1500px) {
  .u-hidden-pc1500 {
    display: none !important;
  }
}
@media screen and (max-width: 1280px) {
  .u-hidden-pc1280 {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .u-hidden-sp1024 {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .u-hidden-sp768 {
    display: none !important;
  }
}

.u-show-pc1500 {
  display: none !important;
}
@media screen and (max-width: 1500px) {
  .u-show-pc1500 {
    display: block !important;
  }
}
.u-show-pc1280 {
  display: none !important;
}
@media screen and (max-width: 1280px) {
  .u-show-pc1280 {
    display: block !important;
  }
}
.u-show-sp1024 {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .u-show-sp1024 {
    display: block !important;
  }
}
.u-show-sp768 {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u-show-sp768 {
    display: block !important;
  }
}

.u-flex-pc1500 {
  display: none !important;
}
@media screen and (max-width: 1500px) {
  .u-flex-pc1500 {
    display: flex !important;
  }
}
.u-flex-pc1280 {
  display: none !important;
}
@media screen and (max-width: 1280px) {
  .u-flex-pc1280 {
    display: flex !important;
  }
}
.u-flex-sp1024 {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .u-flex-sp1024 {
    display: flex !important;
  }
}
.u-flex-sp768 {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u-flex-sp768 {
    display: flex !important;
  }
}

.c-iframe {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.c-iframe--video {
  max-width: 932px;
  aspect-ratio: 1/0.406;
}
.c-iframe--youtube {
  max-width: 905px;
  aspect-ratio: 1/0.602;
}
.c-iframe--map {
  max-width: 978px;
  aspect-ratio: 1/0.344;
}
@media screen and (max-width: 768px) {
  .c-iframe--map {
    max-width: 100%;
    aspect-ratio: 1/0.988;
  }
}
.c-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-default);
  position: relative;
  border-radius: 65px;
}
@media screen and (max-width: 1024px) {
  .c-btn {
    margin: 0 auto;
  }
}
.c-btn--radius-58 {
  border-radius: 58px;
}
.c-btn--radius-51 {
  border-radius: 51px;
}
.c-btn--radius-14 {
  border-radius: 14px;
}
.c-btn--radius-8 {
  border-radius: 8px;
}
.c-btn__arrow {
  width: 100%;
  max-width: 40px;
  aspect-ratio: 1/1;
  position: absolute;
  right: 1rem;
}
@media screen and (max-width: 768px) {
  .c-btn__arrow {
    max-width: 34px;
  }
}
.c-btn--medium {
  max-width: 290px;
  padding: 1.3rem 2.5rem 1.3rem 0;
  font-size: clamp(1.7rem, 1.25vw, 2.4rem);
  font-size: clamp(1.6rem, 0.94vw, 1.8rem);
}
@media screen and (max-width: 1024px) {
  .c-btn--medium {
    padding: 1.3rem 2rem;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .c-btn--medium {
    max-width: 252px;
  }
}
.c-btn--green {
  background: var(--color-gradient-green--right);
  color: var(--color-white);
  position: relative;
}
.c-btn--green:after {
  content: "";
  position: absolute;
  background: url(../../img/common/arrow_white_right.svg) no-repeat center;
  background-size: contain;
  width: 100%;
  height: 100%;
  max-width: 40px;
  aspect-ratio: 1/1;
  right: 1rem;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .c-btn--green:after {
    max-width: 34px;
  }
}
@media (any-hover: hover) {
  .c-btn--green:hover {
    color: var(--color-mint);
    background: var(--color-white) !important;
    opacity: 1;
  }
  .c-btn--green:hover:before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--color-gradient-mint);
    border-radius: 68px;
    z-index: -1;
    opacity: 1;
  }
}
@media (any-hover: hover) {
  .c-btn--green:hover:after {
    background: url(../../img/common/arrow_mint.svg) no-repeat center;
    background-size: contain;
  }
}
.c-btn--blue {
  background: var(--color-gradient-blue--right);
  color: var(--color-white);
  position: relative;
}
.c-btn--blue:after {
  content: "";
  position: absolute;
  background: url(../../img/common/arrow_white_right.svg) no-repeat center;
  background-size: contain;
  width: 100%;
  height: 100%;
  max-width: 40px;
  aspect-ratio: 1/1;
  right: 1rem;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .c-btn--blue:after {
    max-width: 34px;
  }
}
@media (any-hover: hover) {
  .c-btn--blue:hover {
    color: var(--color-blue);
    background: var(--color-white) !important;
    opacity: 1;
  }
  .c-btn--blue:hover:before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--color-gradient-blue--right);
    border-radius: 68px;
    z-index: -1;
    opacity: 1;
  }
}
@media (any-hover: hover) {
  .c-btn--blue:hover {
    color: var(--color-blue);
  }
  .c-btn--blue:hover:after {
    background: url(../../img/common/arrow_blue.svg) no-repeat center;
    background-size: contain;
  }
}
.c-btn--orange {
  background: var(--color-gradient-orange--right);
  color: var(--color-white);
  position: relative;
}
.c-btn--orange:after {
  content: "";
  position: absolute;
  background: url(../../img/common/arrow_white_right.svg) no-repeat center;
  background-size: contain;
  width: 100%;
  height: 100%;
  max-width: 40px;
  aspect-ratio: 1/1;
  right: 1rem;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .c-btn--orange:after {
    max-width: 34px;
  }
}
@media (any-hover: hover) {
  .c-btn--orange:hover {
    color: var(--color-orange);
    background: var(--color-white) !important;
    opacity: 1;
  }
  .c-btn--orange:hover:before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--color-gradient-orange--right);
    border-radius: 68px;
    z-index: -1;
    opacity: 1;
  }
}
@media (any-hover: hover) {
  .c-btn--orange:hover {
    color: var(--color-orange);
  }
  .c-btn--orange:hover:after {
    background: url(../../img/common/arrow_orange.svg) no-repeat center;
    background-size: contain;
  }
}
@media (any-hover: hover) {
  .c-btn:hover > .c-btn__icon {
    background: url(../../img/arrow_right01_hover.png) no-repeat center;
    background-size: contain;
  }
}

@media screen and (max-width: 1024px) {
  .c-contact-wrapper {
    gap: 1rem !important;
  }
}
.c-contact-wrapper > div {
  max-width: 336px;
}
@media screen and (max-width: 1024px) {
  .c-contact-wrapper > div {
    max-width: 280px;
  }
}
@media screen and (max-width: 768px) {
  .c-contact-wrapper > div {
    max-width: 100%;
  }
}
.c-contact-wrapper .c-btn {
  font-size: 2rem;
  padding: 3rem;
  box-shadow: none;
  max-width: 326px;
}
@media screen and (max-width: 1024px) {
  .c-contact-wrapper .c-btn {
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 8px;
  }
}
@media screen and (max-width: 768px) {
  .c-contact-wrapper .c-btn {
    font-size: 1.6rem;
  }
}

.swiper-pagination-bullet-active {
  background-color: #00c6d3 !important;
}

/*
.%%%%%...%%%%%...%%%%%%...%%%%...%%%%%....%%%%...%%%%%...%%..%%..%%...%%..%%%%%..
.%%..%%..%%..%%..%%......%%..%%..%%..%%..%%..%%..%%..%%..%%..%%..%%%.%%%..%%..%%.
.%%%%%...%%%%%...%%%%....%%%%%%..%%..%%..%%......%%%%%...%%..%%..%%.%.%%..%%%%%..
.%%..%%..%%..%%..%%......%%..%%..%%..%%..%%..%%..%%..%%..%%..%%..%%...%%..%%..%%.
.%%%%%...%%..%%..%%%%%%..%%..%%..%%%%%....%%%%...%%..%%...%%%%...%%...%%..%%%%%..
.................................................................................
*/
.c-breadcrumbsWrap {
  width: 100%;
  margin: auto;
  font-size: clamp(1.4rem, 0.84vw, 1.6rem);
  color: var(--color-light-black);
  padding-top: 0.5rem;
  white-space: nowrap;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.c-breadcrumbs {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.c-breadcrumbs .arrow {
  display: inline-block;
  content: "";
  width: 6px;
  height: 6px;
  border-top: solid 1.5px var(--color-light-black);
  border-right: solid 1.5px var(--color-light-black);
  margin-right: 1rem;
  margin-left: 1rem;
  transform: rotate(45deg);
}

/* 
..%%%%...%%%%%%..%%%%%...%%%%%%..%%..%%...%%%%...%%..%%.
.%%........%%....%%..%%..%%......%%%.%%..%%..%%..%%..%%.
..%%%%.....%%....%%..%%..%%%%....%%.%%%..%%%%%%..%%..%%.
.....%%....%%....%%..%%..%%......%%..%%..%%..%%...%%%%..
..%%%%...%%%%%%..%%%%%...%%%%%%..%%..%%..%%..%%....%%...
........................................................
*/
.l-side-nav {
  width: clamp(244px, 20.025vw, 300px);
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0 2.2vw 4rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media screen and (max-width: 1024px) {
  .l-side-nav {
    display: none;
  }
}
.l-side-nav::-webkit-scrollbar {
  display: none;
}
.l-side-nav__logo {
  margin: 1rem 0;
  text-align: center;
}
.l-side-nav__logo-link {
  display: inline-block;
}
.l-side-nav__logo-image {
  display: block;
  max-width: 90%;
  height: auto;
  margin: 0 auto;
}

.c-navigation {
  width: 100%;
}
.c-navigation__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-navigation__item {
  display: block;
  width: 100%;
  margin-top: 1.5rem;
  font-size: clamp(1.6rem, 0.89vw, 1.7rem);
  font-weight: bold;
  color: var(--color-brown);
  text-align: center;
}
.c-navigation__item:first-child {
  margin-top: 0;
}
.c-navigation__item:has(.c-navigation__text--has-submenu) .c-navigation__text--has-submenu {
  position: relative;
}
.c-navigation__item:has(.c-navigation__text--has-submenu) .c-navigation__text--has-submenu::before {
  position: absolute;
  content: "";
  top: 37%;
  right: 0;
  width: 12px;
  height: 10px;
  transform: translateY(-50%);
  background: url(../../img/side_nav/side_nav_arrow_down.png) no-repeat center;
  background-size: contain;
  margin-bottom: 0.8rem;
}
.c-navigation__item:has(.c-navigation__text--has-submenu).is-open .c-navigation__text::before {
  background: url(../../img/side_nav/side_nav_arrow_up.png) no-repeat center;
  background-size: contain;
}
.c-navigation__item--has-submenu {
  cursor: pointer;
}
.c-navigation__item--recruit:has(.c-navigation__text--has-submenu) .c-navigation__text--has-submenu::before {
  background: url(../../img/side_nav/side_nav_arrow_down_pink.png) no-repeat center;
  background-size: contain;
}
.c-navigation__item--recruit.is-open:has(.c-navigation__text--has-submenu) .c-navigation__text--has-submenu::before {
  background: url(../../img/side_nav/side_nav_arrow_up_pink.png) no-repeat center;
  background-size: contain;
}
.c-navigation__item--recruit .c-navigation__text::after {
  background-image: url(../../img/side_nav/side_nav_border_bottom_pink.svg);
}
.c-navigation__item--recruit .c-navigation__submenu-item::before {
  background-image: url(../../img/side_nav/side_nav_arrow_pink.png);
}
.c-navigation__item--cta {
  width: 100%;
  max-width: 157px;
  aspect-ratio: 1/1;
  margin: 2rem auto;
  color: var(--color-white);
  background: var(--color-gradient-orange--bottom);
  border-radius: 50%;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
  font-size: clamp(2rem, 1.15vw, 2.2rem);
  box-shadow: var(--shadow-default);
}
.c-navigation__item--cta .c-navigation__link--cta {
  display: block;
  padding: 3rem;
  color: inherit;
  text-decoration: none;
}
.c-navigation__item--cta .c-navigation__text::after {
  display: none;
}
.c-navigation__item--cta .c-navigation__icon {
  margin-bottom: 0;
}
.c-navigation__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.c-navigation__icon {
  display: block;
  margin: 0 auto 0.5rem;
  max-width: 100%;
  height: auto;
  transform: scale(0.9);
}
.c-navigation__text {
  display: block;
  line-height: 1.3;
}
.c-navigation__text::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: url(../../img/side_nav/side_nav_border_bottom.svg) no-repeat center;
  background-size: cover;
  margin-top: 0.8rem;
}
.c-navigation__submenu {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  font-size: clamp(1.6rem, 0.94vw, 1.8rem);
  font-weight: 500;
  color: var(--color-brown);
  text-align: center;
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  display: none;
}
.c-navigation__submenu-item {
  margin-top: 0.6rem;
  line-height: 1.6;
}
.c-navigation__submenu-item::before {
  content: "";
  width: 10px;
  height: 12px;
  display: inline-block;
  margin-right: 0.5rem;
  background: url(../../img/side_nav/side_nav_arrow.png) no-repeat center;
  background-size: contain;
}
.c-navigation__submenu-link {
  color: inherit;
  text-decoration: none;
}
@media (any-hover: hover) {
  .c-navigation__submenu-link:hover {
    text-decoration: underline;
  }
}
.c-navigation__submenu-furigana {
  font-weight: normal;
  font-size: 1.4rem;
}

/*
..%%%%...%%%%%...........%%..%%..%%%%%%...%%%%...%%%%%...%%%%%%..%%%%%..
.%%......%%..%%..........%%..%%..%%......%%..%%..%%..%%..%%......%%..%%.
..%%%%...%%%%%...........%%%%%%..%%%%....%%%%%%..%%..%%..%%%%....%%%%%..
.....%%..%%..............%%..%%..%%......%%..%%..%%..%%..%%......%%..%%.
..%%%%...%%..............%%..%%..%%%%%%..%%..%%..%%%%%...%%%%%%..%%..%%.
........................................................................
*/
.c-sp-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: none;
}
@media screen and (max-width: 1024px) {
  .c-sp-header {
    display: block;
  }
}
.c-sp-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-sp-header__inner--no-logo {
  justify-content: flex-end;
}
.c-sp-header__inner--no-logo.c-hamburger--menu-open {
  justify-content: space-between;
  background-color: var(--color-white);
}
.c-sp-header__logo {
  width: 100%;
  height: auto;
  padding-left: 1rem;
}
.c-sp-header__logo--hidden {
  opacity: 0;
  visibility: hidden;
}
.c-hamburger.is-active ~ * .c-sp-header__logo--hidden, .c-hamburger--menu-open .c-sp-header__logo--hidden {
  opacity: 1;
  visibility: visible;
}

.c-hamburger {
  display: none;
  top: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-white);
  cursor: pointer;
  width: 80px;
  height: 86px;
  border-right: 0;
  border-radius: 0 0 0 13px;
  transition: 0.2s;
  padding-top: 0.5rem;
}
@media screen and (max-width: 1024px) {
  .c-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.c-hamburger__menu {
  color: var(--color-brown);
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 0.3rem;
  display: block;
  text-align: center;
}
.c-hamburger__lines {
  width: 25px;
  height: 20px;
  position: relative;
  margin: 0 auto;
}
.c-hamburger__lines span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-brown);
  position: absolute;
  left: 0;
  margin: 0;
  transition: all 0.3s ease;
}
.c-hamburger__lines span:nth-child(1) {
  top: 0;
}
.c-hamburger__lines span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.c-hamburger__lines span:nth-child(3) {
  bottom: 0;
}
.c-hamburger.is-active {
  color: var(--color-brown);
  z-index: 1000;
}
.c-hamburger.is-active .c-hamburger__lines span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  background-color: var(--color-brown);
}
.c-hamburger.is-active .c-hamburger__lines span:nth-child(2) {
  opacity: 0;
}
.c-hamburger.is-active .c-hamburger__lines span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
  background-color: var(--color-brown);
}
.c-hamburger__nav {
  display: none;
  position: fixed;
  top: 86px;
  left: 0;
  width: 100%;
  height: calc(100dvh - 86px);
  background-color: var(--color-white);
  overflow-y: auto;
}
.c-hamburger__nav.is-active {
  display: block;
}
.c-hamburger__content {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 6%;
}
@media screen and (max-width: 768px) {
  .c-hamburger__content {
    padding: 0 6% 10rem;
  }
}
.c-hamburger__nav-item {
  display: block;
  width: 100%;
  padding: 1.5rem 0;
  font-size: clamp(1.6rem, 0.94vw, 1.8rem);
  font-weight: bold;
  color: var(--color-brown);
  text-decoration: none;
  text-align: center;
  position: relative;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  .c-hamburger__nav-item {
    padding: 4rem 0 0;
  }
}
.c-hamburger__nav-item:before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  display: inline-block;
  transform: translateY(-50%);
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .c-hamburger__nav-item:before {
    bottom: -8px;
  }
}
.c-hamburger__nav-item--about-us:before {
  width: 29px;
  height: 32px;
  background: url(../../img/side_nav/company_icon.svg) no-repeat center;
  background-size: contain;
}
.c-hamburger__nav-item--faq:before {
  width: 40px;
  height: 31px;
  background: url(../../img/side_nav/faq_icon.svg) no-repeat center;
  background-size: contain;
}
.c-hamburger__nav-item--news:before {
  width: 35px;
  height: 28px;
  background: url(../../img/side_nav/news_icon.svg) no-repeat center;
  background-size: contain;
}
.c-hamburger__nav-item--contact {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  font-size: 2rem;
  margin-top: 5rem;
  border-radius: 8px;
  padding: 2rem;
  color: var(--color-white);
  background: var(--color-gradient-orange--bottom);
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
}
@media screen and (max-width: 768px) {
  .c-hamburger__nav-item--contact {
    padding: 1.5rem 1.5rem 1.3rem;
    margin-top: 4rem;
  }
}
.c-hamburger__nav-item--contact img {
  max-width: 49px;
}
.c-hamburger__title {
  position: relative;
}
.c-hamburger__title:before {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 0;
  display: inline-block;
  transform: translateY(-50%);
  background-size: contain;
}
.c-hamburger__title--features:before {
  width: 36px;
  height: 29px;
  background: url(../../img/side_nav/features_icon.svg) no-repeat center;
  background-size: contain;
}
.c-hamburger__title--homes:before {
  width: 38px;
  height: 35px;
  background: url(../../img/side_nav/homes_icon.svg) no-repeat center;
  background-size: contain;
}
.c-hamburger__title--recruit:before {
  width: 59px;
  height: 39px;
  background: url(../../img/side_nav/recruit_icon.svg) no-repeat center;
  background-size: contain;
}
.c-hamburger__title--recruit .c-navigation__text::after {
  background-image: url(../../img/side_nav/side_nav_border_bottom_pink.svg);
  background-size: cover;
}
.c-hamburger__sub-menu {
  display: flex;
  justify-content: center;
  gap: 2.7rem;
}
.c-hamburger__sub-menu-item {
  font-weight: normal;
  font-size: 1.6rem;
  margin-top: 1.8rem;
}
.c-hamburger__sub-menu-item::before {
  font-size: 1.2rem;
  content: "▶";
  color: var(--color-dark-mint);
}
.c-hamburger__nav-item--recruit .c-hamburger__sub-menu-item::before {
  color: var(--color-pink);
}

/* 
.%%%%%%...%%%%....%%%%...%%%%%%..%%%%%%..%%%%%..
.%%......%%..%%..%%..%%....%%....%%......%%..%%.
.%%%%....%%..%%..%%..%%....%%....%%%%....%%%%%..
.%%......%%..%%..%%..%%....%%....%%......%%..%%.
.%%.......%%%%....%%%%.....%%....%%%%%%..%%..%%.
................................................
*/
.l-footer {
  background-color: var(--color-light-green);
  padding-bottom: 1.5rem;
}
.l-footer__bg {
  background: url(../../img/footer/footer_bg.png) no-repeat center;
  background-size: cover;
  padding: 7.8rem 0 15rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-footer__bg {
    padding: 3.5rem 0 8.5rem;
    background: url(../../img/footer/footer_bg_sp.png) no-repeat bottom;
    background-size: cover;
  }
}

.c-footer__back-to-top {
  position: absolute;
  width: 100%;
  max-width: 6.87vw;
  height: 6.87vw;
  aspect-ratio: 1/1;
  bottom: 0;
  right: 50%;
  transform: translate(50%, 50%);
}
@media screen and (max-width: 1024px) {
  .c-footer__back-to-top {
    max-width: 100px;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .c-footer__back-to-top {
    bottom: -20%;
    max-width: 82px;
    transform: translate(50%, -50%);
  }
}
.c-footer__main {
  padding-top: 12.3rem;
}
@media screen and (max-width: 768px) {
  .c-footer__main {
    padding-top: 8rem;
  }
}
.c-footer__main-inner {
  width: 100%;
  max-width: 70vw;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .c-footer__main-inner {
    max-width: 100%;
    padding: 0 6%;
  }
}
.c-footer__main-inner .l-flex {
  justify-content: space-between;
  gap: 2vw;
}
@media screen and (max-width: 1024px) {
  .c-footer__main-inner .l-flex {
    gap: 4rem;
  }
}
.c-footer__logo {
  width: 100%;
  max-width: 10vw;
}
@media screen and (max-width: 1024px) {
  .c-footer__logo {
    max-width: 150px;
  }
}
@media screen and (max-width: 768px) {
  .c-footer__logo {
    display: none;
  }
}
.c-footer__nav {
  width: 100%;
  max-width: 56vw;
}
@media screen and (max-width: 1024px) {
  .c-footer__nav {
    max-width: 100%;
  }
}
.c-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.187vw;
}
@media screen and (max-width: 1024px) {
  .c-footer__nav-list {
    margin-bottom: 4rem;
    gap: 2rem 3rem;
  }
}
.c-footer__nav-item {
  width: 100%;
  max-width: calc(20% - 2.187vw);
}
@media screen and (max-width: 1280px) {
  .c-footer__nav-item {
    max-width: calc(33.3333333333% - 2.187vw);
  }
}
@media screen and (max-width: 1024px) {
  .c-footer__nav-item {
    max-width: calc(33.3333333333% - 2rem);
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .c-footer__nav-item {
    max-width: calc(50% - 2rem);
  }
}
.c-footer__nav-item a {
  display: block;
  width: 100%;
  font-size: clamp(1.5rem, 0.89vw, 1.7rem);
  font-weight: bold;
  color: var(--color-brown);
  border-bottom: 2px solid var(--color-brown);
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-footer__nav-item a {
    font-size: 1.4rem;
    border-bottom: 1px solid var(--color-brown);
  }
}
.c-footer__nav-item a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .c-footer__nav-item a:after {
    bottom: -1px;
    height: 1px;
  }
}
.c-footer__nav-link {
  display: block;
  width: 100%;
}
@media (any-hover: hover) {
  .c-footer__nav-link--has-children:hover {
    opacity: 1;
  }
}
.c-footer__nav-sub-list {
  margin-top: 1rem;
}
.c-footer__nav-sub-item a {
  border-bottom: none;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .c-footer__nav-sub-item a {
    font-size: 1.4rem;
  }
}
.c-footer__nav-sub-item a:before {
  content: "▶";
  padding-right: 0.5rem;
}
.c-footer__nav-sub-item a:after {
  display: none;
}
.c-footer__policy-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.c-footer__policy-links a:first-child {
  padding: 1.5rem 4.3rem;
  color: var(--color-white);
  background-color: var(--color-dark-mint);
  border-radius: 6px;
  border: 2px solid var(--color-white);
  box-shadow: var(--shadow-default);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .c-footer__policy-links a:first-child {
    padding: 0.8rem 1.5rem;
    font-size: 1.4rem;
  }
}
.c-footer__policy-links a:nth-child(2) {
  color: var(--color-brown);
  margin-top: 1.5rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .c-footer__policy-links a:nth-child(2) {
    font-size: 1.2rem;
  }
}
.c-footer__copyright {
  font-size: 1.2rem;
  padding-top: 11.6rem;
  text-align: center;
  color: var(--color-brown);
}
@media screen and (max-width: 1024px) {
  .c-footer__copyright {
    padding-top: 6rem;
    font-size: 1.1rem;
  }
}

.c-cta {
  width: 100%;
  max-width: clamp(700px, 38.125vw, 732px);
  margin: 0 auto;
  padding: 1.8rem 3vw 4rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 21px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .c-cta {
    max-width: 80%;
    padding: 2rem 6%;
  }
}
@media screen and (max-width: 768px) {
  .c-cta {
    max-width: 340px;
    margin: 0 auto;
    padding: 1.5rem 3rem 2.8rem;
  }
}
.c-cta__actions {
  display: flex;
  justify-content: center;
  gap: 3rem;
}
@media screen and (max-width: 1024px) {
  .c-cta__actions {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
}
.c-cta__actions > div {
  display: block;
  width: 100%;
}
.c-cta__contact {
  max-width: 290px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-cta__contact .c-btn {
    max-width: 278px;
  }
}
.c-cta__contact-text {
  position: absolute;
  width: 100%;
  max-width: 221px;
  height: 20px;
  left: 40%;
  transform: translate(-50%, -45%);
  z-index: 2;
  background-color: var(--color-white);
  border: 1px solid var(--color-orange);
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  border-radius: 11px;
  letter-spacing: 0.05em;
  color: var(--color-orange);
  box-shadow: var(--shadow-default);
}
@media screen and (max-width: 1024px) {
  .c-cta__contact-text {
    width: 100%;
    max-width: 194px;
    left: 50%;
    font-size: 1.4rem;
  }
}
.c-cta__tel {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.c-cta__tel-link {
  font-size: clamp(2.7rem, 1.93vw, 3.7rem);
  line-height: 1.45;
  font-weight: bold;
  font-family: var(--font-roboto);
}
@media screen and (max-width: 1024px) {
  .c-cta__tel-link {
    font-size: 3.6rem;
  }
}
.c-cta__tel-label {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #19b59e;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .c-cta__tel-label {
    text-align: center;
  }
}
.c-cta__image {
  text-align: center;
}
.c-cta__heading {
  text-align: center;
  font-size: clamp(2rem, 1.15vw, 2.2rem);
  font-family: var(--font-zen-maru-gothic);
  font-weight: bold;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .c-cta__heading {
    margin: 0 auto 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .c-cta__heading {
    max-width: 192px;
  }
}

/*
.%%..%%..%%..%%..%%%%%%...%%%%...%%..%%..%%%%%%.
.%%..%%..%%%.%%....%%....%%..%%..%%..%%..%%.....
.%%..%%..%%.%%%....%%....%%.%%%..%%..%%..%%%%...
.%%..%%..%%..%%....%%....%%..%%..%%..%%..%%.....
..%%%%...%%..%%..%%%%%%...%%%%%...%%%%...%%%%%%.
................................................
*/
.l-site-wrapper {
  width: 100%;
  display: flex;
}
.l-site-wrapper .l-main-content {
  flex: 1;
  min-width: 0;
}

.l-lower-fv {
  padding: 0;
}
.l-lower-fv__wrapper {
  position: relative;
}
.l-lower-fv__ttl {
  position: absolute;
  top: 37%;
  left: 9.84vw;
  transform: translate(0, -50%);
  z-index: 1;
}
.l-lower-fv__ttl h1 {
  font-size: clamp(3rem, 1.83vw, 3.5rem);
  font-weight: bold;
  font-family: var(--font-zen-maru-gothic);
  color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .l-lower-fv__ttl h1 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .l-lower-fv__ttl-image {
    max-width: 50%;
  }
}

.c-sec-ttl {
  display: flex;
  width: 100%;
  max-width: clamp(1000px, 58.69vw, 1190px);
}
@media screen and (max-width: 1024px) {
  .c-sec-ttl {
    max-width: 100%;
    padding: 0 6%;
  }
}
.c-sec-ttl--left {
  margin-right: auto;
  margin-left: clamp(130px, 10.2vw, 282px);
}
@media screen and (max-width: 1024px) {
  .c-sec-ttl--left {
    margin-left: auto;
  }
}
.c-sec-ttl--right {
  margin-right: auto;
  margin-left: clamp(150px, 9.53vw, 182px);
}
@media screen and (max-width: 1024px) {
  .c-sec-ttl--right {
    margin-left: auto;
  }
}
.c-sec-ttl__icon {
  margin-right: 3rem;
  margin-left: auto;
}
.c-sec-ttl__heading {
  flex: 1;
}
.c-sec-ttl__heading h2 {
  font-size: clamp(2.3rem, 1.31vw, 2.5rem);
  font-weight: bold;
  font-family: var(--font-serif);
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .c-sec-ttl__heading h2 {
    font-size: clamp(2rem, 1.15vw, 2.2rem);
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .c-sec-ttl__heading h2 {
    font-size: 1.7rem;
    margin-bottom: 2.5rem;
  }
}
.c-sec-ttl__img {
  width: 100%;
  max-width: clamp(300px, 26.45vw, 100%);
  margin-left: 2.91vw;
}
@media screen and (max-width: 1024px) {
  .c-sec-ttl__img img {
    max-width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .c-sec-ttl__img {
    display: none;
  }
  .c-sec-ttl__img--sp {
    margin-bottom: 1.5rem;
    text-align: center;
  }
}
.c-sec-ttl .c-btn {
  margin-top: 2.6rem;
}
@media screen and (max-width: 1024px) {
  .c-sec-ttl .c-btn {
    margin: 2.6rem 0 0;
  }
}
@media screen and (max-width: 768px) {
  .c-sec-ttl .c-btn {
    margin: 2.6rem auto 0;
  }
}
.c-sec-ttl--radius {
  width: 100%;
  max-width: 39.6vw;
  margin: 0 auto;
  font-size: clamp(2.4rem, 1.46vw, 2.8rem);
  font-weight: bold;
  font-family: var(--font-serif);
  text-align: center;
  padding: 1.3rem 0;
  border-radius: 41px;
}
@media screen and (max-width: 1024px) {
  .c-sec-ttl--radius {
    font-size: clamp(2.2rem, 1.25vw, 2.4rem);
    padding: 1.2rem 0;
  }
}
.c-sec-ttl--radius--pink {
  background-color: var(--color-pink);
}
@media screen and (max-width: 768px) {
  .c-sec-ttl--radius {
    max-width: 100%;
    font-size: 1.7rem;
  }
}
.c-sec-ttl--fukidashi {
  text-align: center;
  position: relative;
  background-color: var(--color-green);
  color: var(--color-white);
  padding: 3.8rem 0;
}
@media screen and (max-width: 1280px) {
  .c-sec-ttl--fukidashi {
    padding: 3rem 0;
  }
}
@media screen and (max-width: 1024px) {
  .c-sec-ttl--fukidashi {
    padding: 2.5rem 0;
  }
}
@media screen and (max-width: 768px) {
  .c-sec-ttl--fukidashi {
    padding: 2rem 0;
  }
}
.c-sec-ttl--fukidashi h2 {
  font-size: clamp(2.5rem, 1.46vw, 2.8rem);
  font-weight: bold;
  font-family: var(--font-serif);
}
@media screen and (max-width: 1280px) {
  .c-sec-ttl--fukidashi h2 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .c-sec-ttl--fukidashi h2 {
    font-size: clamp(2.2rem, 1.25vw, 2.4rem);
  }
}
@media screen and (max-width: 768px) {
  .c-sec-ttl--fukidashi h2 {
    font-size: 1.8rem;
  }
}
.c-sec-ttl--fukidashi:after {
  content: "";
  position: absolute;
  top: 99%;
  left: 50%;
  margin-left: -30px;
  border: 30px solid transparent;
  border-top: 30px solid var(--color-green);
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .c-sec-ttl--fukidashi:after {
    border: 20px solid transparent;
    border-top: 20px solid var(--color-green);
  }
}
@media screen and (max-width: 1024px) {
  .c-sec-ttl--fukidashi:after {
    margin-left: -12px;
    border: 12px solid transparent;
    border-top: 20px solid var(--color-green);
  }
}
.c-sec-ttl--facility {
  width: 100%;
  text-align: left;
  padding: 0.5rem 0 0.5rem 4rem;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .c-sec-ttl--facility {
    text-align: center;
    padding: 1rem 0;
  }
}
.c-sec-ttl--facility h2 {
  font-size: clamp(2.5rem, 1.46vw, 2.8rem);
  font-weight: bold;
  font-family: var(--font-serif);
}
@media screen and (max-width: 768px) {
  .c-sec-ttl--facility h2 {
    font-size: 1.7rem;
  }
}
.c-sec-ttl--facility span {
  font-size: 1.6rem;
}
.c-sec-ttl--facility--mint {
  background-color: var(--color-light-mint);
}
.c-sec-ttl--facility--light-green {
  background-color: #B2DB90;
}
.c-sec-ttl--lower {
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .c-sec-ttl--lower-eng {
    width: 100%;
    max-width: 50%;
    margin: 0 auto;
  }
}
.c-sec-ttl--lower-left {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
@media screen and (max-width: 768px) {
  .c-sec-ttl--lower-left {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  .c-sec-ttl--lower-left .c-sec-ttl--lower-eng {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
.c-sec-ttl--lower h2 {
  font-size: clamp(2.3rem, 1.46vw, 2.8rem);
  font-weight: bold;
  font-family: var(--font-serif);
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .c-sec-ttl--lower h2 {
    font-size: 1.9rem;
  }
}
.c-sec-ttl--lower-furigana {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 2rem;
  padding-left: 2rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-sec-ttl--lower-furigana {
    font-size: 0.8rem;
    letter-spacing: 1rem;
    padding-left: 1rem;
  }
}
.c-sec-ttl--lower-subtitle {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(1.6rem, 0.94vw, 1.8rem);
  line-height: 1.3;
  font-weight: bold;
  margin-top: 1.3rem;
  padding: 0 3rem;
}
.c-sec-ttl--lower-subtitle--mint {
  background-color: var(--color-mint);
}
.c-sec-ttl--lower-subtitle--light-green {
  background-color: var(--color-light-green);
}

.c-border-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(2rem, 1.57vw, 3rem);
  width: 100%;
  position: relative;
  text-align: center;
  font-size: clamp(2.2rem, 1.25vw, 2.4rem);
  font-weight: bold;
  font-family: var(--font-serif);
  margin-bottom: 2rem;
}
@media screen and (max-width: 1024px) {
  .c-border-heading {
    font-size: 1.7rem;
    gap: 1rem;
  }
}
.c-border-heading h3 {
  width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .c-border-heading h3 {
    width: 647px;
    font-weight: bold;
  }
}
.c-border-heading:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: var(--color-dark-mint);
  z-index: 0;
}
.c-border-heading:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: var(--color-dark-mint);
  z-index: 0;
}
.c-border-heading--green {
  color: #19b59e;
}

.c-border-ttl {
  border-bottom: 1px solid var(--color-brown);
  padding-bottom: 0.5rem;
}
.c-border-ttl h2 {
  font-size: clamp(2rem, 1.25vw, 2.4rem);
  font-weight: bold;
  font-family: var(--font-serif);
}
@media screen and (max-width: 768px) {
  .c-border-ttl h2 {
    font-size: 1.7rem;
  }
}
.c-border-ttl--brown {
  color: var(--color-brown);
}
.c-border-ttl--light-black {
  color: var(--color-light-black);
}

.c-accordion__item {
  background-color: var(--color-white);
  border-radius: 10px;
  margin: 3.8rem 0 2.3rem;
}
@media screen and (max-width: 768px) {
  .c-accordion__item {
    margin: 1rem 0 0;
  }
}
.c-accordion__item p {
  font-size: clamp(1.6rem, 0.94vw, 1.8rem);
}
@media screen and (max-width: 1024px) {
  .c-accordion__item p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .c-accordion__item p {
    padding-right: 3rem;
  }
}
.c-accordion__header {
  width: 100%;
  display: flex;
  background-color: var(--color-white);
  box-shadow: var(--shadow-default);
  padding: 2rem 9rem;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .c-accordion__header {
    padding: 1rem;
  }
}
.c-accordion__header:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: url(../../img/faq/arrow_bottom.svg) no-repeat center;
  background-size: contain;
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .c-accordion__header:after {
    width: 26px;
    right: 1rem;
    top: 35%;
  }
}
.c-accordion__header.active + .c-accordion__content {
  display: flex;
}
.c-accordion__header.active:after {
  background: url(../../img/faq/arrow_top.svg) no-repeat center;
  background-size: contain;
}
.c-accordion__icon {
  width: 100%;
  max-width: 72px;
  padding-right: 3rem;
  margin-right: 5rem;
  border-right: 5px solid #19b59e;
}
@media screen and (max-width: 768px) {
  .c-accordion__icon {
    padding-right: 0.5rem;
    margin-right: 1rem;
    max-width: 35px;
  }
}
.c-accordion__content {
  display: none;
  padding: 2.5rem 9rem 4rem;
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .c-accordion__content {
    padding: 1rem;
  }
}
.c-accordion__content .c-accordion__icon {
  border-right: 5px solid var(--color-orange);
}
.c-accordion__content p {
  padding: 1.5rem 0 2.5rem;
}

.c-news-wrapper.c-card {
  padding: 7.5vh 11.7vw 10vh;
  z-index: 1;
  position: relative;
  width: 100%;
  max-width: clamp(800px, 62.91vw, 1208px);
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .c-news-wrapper.c-card {
    padding: 7.5vh 4.7vw 10vh;
  }
}
@media screen and (max-width: 1024px) {
  .c-news-wrapper.c-card {
    padding: 4rem 6%;
  }
}
@media screen and (max-width: 768px) {
  .c-news-wrapper.c-card {
    padding: 3rem 0 4.5rem;
  }
}
.c-news-wrapper.c-card h2 {
  font-size: clamp(2.5rem, 1.46vw, 2.8rem);
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .c-news-wrapper.c-card h2 {
    font-size: clamp(2.2rem, 1.25vw, 2.4rem);
  }
}
@media screen and (max-width: 768px) {
  .c-news-wrapper.c-card h2 {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
  }
}
.c-news-wrapper .c-news__list {
  margin-bottom: 5rem;
}
@media screen and (max-width: 1024px) {
  .c-news-wrapper .c-news__list {
    margin-bottom: 3rem;
  }
}
.c-news-wrapper .c-news__item {
  border-bottom: 1px dashed #333;
}
@media screen and (max-width: 1280px) {
  .c-news-wrapper .c-news__item {
    font-size: 1.4rem;
  }
}
.c-news-wrapper .c-news__link {
  width: 100%;
  display: flex;
  justify-self: center;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 2rem;
}
@media screen and (max-width: 768px) {
  .c-news-wrapper .c-news__link {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 2rem 1rem;
  }
}
.c-news-wrapper .c-news__meta {
  display: flex;
  align-items: center;
}
.c-news-wrapper .c-news__date {
  font-size: clamp(1.6rem, 0.94vw, 1.8rem);
}
@media screen and (max-width: 1024px) {
  .c-news-wrapper .c-news__date {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .c-news-wrapper .c-news__date {
    font-size: 1.4rem;
  }
}
.c-news-wrapper .c-news__label {
  display: block;
  color: #19b59e;
  border: 1px solid #19b59e;
  padding: 0 1.5rem;
  margin-left: 2rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .c-news-wrapper .c-news__label {
    margin-left: 1rem;
    font-size: 1.2rem;
    padding: 0 0.6rem;
    vertical-align: middle;
  }
}
.c-news-wrapper .c-news__title {
  flex: 1;
}

.c-nav-fukidashi {
  display: flex;
  gap: clamp(2rem, 1.3vw, 2.5rem);
  position: relative;
}
@media screen and (max-width: 1280px) {
  .c-nav-fukidashi {
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem 2rem;
  }
}
@media screen and (max-width: 768px) {
  .c-nav-fukidashi {
    gap: 2rem 1rem;
    justify-content: flex-start;
    margin-bottom: 3rem;
  }
  .c-nav-fukidashi:after {
    content: "";
    position: absolute;
    bottom: 30%;
    right: 0;
    transform: translate(0%, 100%);
    width: 100%;
    max-width: 122px;
    height: 91px;
    background: url(../../img/facility/facility_nav_bg.svg) no-repeat center;
    background-size: contain;
    z-index: -1;
  }
}
.c-nav-fukidashi::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-90%, 0%);
  width: 100%;
  max-width: 160px;
  height: 118px;
  background: url(../../img/facility/facility_nav_bg.svg) no-repeat center;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .c-nav-fukidashi::before {
    transform: scale(0.75);
    transform-origin: left;
    top: auto;
    bottom: 0;
    transform: translate(-50%, 40%);
  }
}
@media screen and (max-width: 1024px) {
  .c-nav-fukidashi::before {
    display: none;
  }
}
.c-nav-fukidashi__item {
  flex: 1;
}
@media screen and (max-width: 1280px) {
  .c-nav-fukidashi__item {
    flex: auto;
    width: 100%;
    max-width: calc(33.3333333333% - 2rem);
  }
}
@media screen and (max-width: 768px) {
  .c-nav-fukidashi__item {
    max-width: calc(50% - 0.5rem);
  }
}
.c-nav-fukidashi__link {
  display: block;
  width: 100%;
  text-align: center;
  font-size: clamp(1.6rem, 1.05vw, 2rem);
  font-weight: bold;
  border-radius: 31px;
  padding: 1.4rem 0;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .c-nav-fukidashi__link {
    padding: 1rem 0;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .c-nav-fukidashi__link {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .c-nav-fukidashi__link {
    font-size: 1.3rem;
    padding: 0.8rem 1.4rem;
  }
}
.c-nav-fukidashi__link::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -11px;
  border: 11px solid transparent;
}
@media screen and (max-width: 1024px) {
  .c-nav-fukidashi__link::after {
    margin-left: -12px;
    border: 12px solid transparent;
  }
}
@media screen and (max-width: 768px) {
  .c-nav-fukidashi__link::after {
    margin-left: -6px;
    border: 6px solid transparent;
  }
}
.c-nav-fukidashi--mint .c-nav-fukidashi__link {
  background-color: var(--color-light-mint);
}
.c-nav-fukidashi--mint .c-nav-fukidashi__link::after {
  border-top: 18px solid var(--color-light-mint);
}
@media screen and (max-width: 1024px) {
  .c-nav-fukidashi--mint .c-nav-fukidashi__link::after {
    border-top: 20px solid var(--color-light-mint);
  }
}
@media screen and (max-width: 768px) {
  .c-nav-fukidashi--mint .c-nav-fukidashi__link::after {
    border-top: 8px solid var(--color-light-mint);
  }
}
.c-nav-fukidashi--light-green .c-nav-fukidashi__link {
  background-color: #B2DB90;
}
.c-nav-fukidashi--light-green .c-nav-fukidashi__link::after {
  border-top: 18px solid #B2DB90;
}
@media screen and (max-width: 1024px) {
  .c-nav-fukidashi--light-green .c-nav-fukidashi__link::after {
    border-top: 20px solid #B2DB90;
  }
}
@media screen and (max-width: 768px) {
  .c-nav-fukidashi--light-green .c-nav-fukidashi__link::after {
    border-top: 8px solid #B2DB90;
  }
}

.c-faq .c-border-ttl {
  padding-top: 11rem;
}
.c-faq .c-border-ttl.first {
  padding-top: 0;
}
@media screen and (max-width: 1024px) {
  .c-faq .c-border-ttl {
    padding-top: 4rem;
  }
}

/* 
.%%%%%%...%%%%...%%%%%..
...%%....%%..%%..%%..%%.
...%%....%%..%%..%%%%%..
...%%....%%..%%..%%.....
...%%.....%%%%...%%.....
........................
*/
.p-top .p-top__text {
  line-height: 2.06;
}
@media screen and (max-width: 768px) {
  .p-top .p-top__text {
    line-height: 1.85;
  }
}
.p-top .l-fv {
  padding: 0;
}
.p-top .l-fv__sp-logo {
  display: none;
}
@media screen and (max-width: 1024px) {
  .p-top .l-fv {
    padding-top: 0;
  }
  .p-top .l-fv__sp-logo {
    width: 100%;
    height: 86px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 1rem;
  }
}
.p-top .l-fv__wrapper {
  position: relative;
}
.p-top .l-fv__wrapper:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -32px;
  width: 100%;
  max-width: 17vw;
  height: 209px;
  background: url(../../img/top/fv_txt.svg) no-repeat center;
  background-size: contain;
  z-index: 900;
  animation-fill-mode: both;
  animation-duration: 2s;
  animation-name: fadeInBlur;
  visibility: visible !important;
  filter: blur(10px);
  opacity: 0;
  will-change: opacity, filter;
  /* パフォーマンス向上のため追加 */
}
@media screen and (max-width: 1280px) {
  .p-top .l-fv__wrapper:before {
    bottom: -10%;
    left: -25px;
  }
}
@media screen and (max-width: 1024px) {
  .p-top .l-fv__wrapper:before {
    left: -5px;
  }
}
@media screen and (max-width: 768px) {
  .p-top .l-fv__wrapper:before {
    display: none;
  }
}
.p-top__about {
  padding-top: 9.5vh;
}
@media screen and (max-width: 1024px) {
  .p-top__about {
    padding-bottom: 2rem;
  }
  .p-top__about .c-sec-ttl__img--sp img {
    max-width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .p-top__about {
    padding: 3rem 0 4.7rem;
  }
  .p-top__about .c-sec-ttl__img--sp {
    text-align: right;
  }
}
@media screen and (max-width: 500px) {
  .p-top__about .c-sec-ttl__img--sp img {
    max-width: 280px;
  }
}
.p-top__about:before {
  content: "";
  position: absolute;
  top: 50px;
  left: 62px;
  width: 100%;
  max-width: 5vw;
  height: 150px;
  aspect-ratio: 1/1;
  background: url(../../img/top/about_ttl.svg) no-repeat center;
  background-size: contain;
  z-index: 0;
}
@media screen and (max-width: 1280px) {
  .p-top__about:before {
    top: 0;
  }
}
@media screen and (max-width: 1024px) {
  .p-top__about:before {
    left: auto;
    right: 41%;
  }
}
@media screen and (max-width: 768px) {
  .p-top__about:before {
    max-width: 57px;
    top: -6px;
    right: 6%;
  }
}
.p-top__about:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: clamp(800px, 66vw, 1293px);
  height: 100%;
  background: url(../../img/top/about_bg.png) no-repeat center;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .p-top__about:after {
    max-width: 950px;
  }
}
@media screen and (max-width: 768px) {
  .p-top__about:after {
    max-width: 94%;
    background: url(../../img/top/about_bg_sp.png) no-repeat center;
    background-size: contain;
    top: 0;
    bottom: auto;
    transform: translate(0, -25%);
  }
}
.p-top__about .c-sec-ttl__heading {
  width: 100%;
  max-width: clamp(400px, 24.16vw, 464px);
}
@media screen and (max-width: 1024px) {
  .p-top__about .c-sec-ttl__heading {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-top__about .c-sec-ttl__heading h2 {
    margin-bottom: 1rem;
  }
}
.p-top__feature-bg {
  width: 100%;
  max-width: clamp(950px, 68.64vw, 1318px);
  background: url(../../img/top/feature_bg.png) no-repeat left;
  background-size: contain;
}
@media screen and (max-width: 1024px) {
  .p-top__feature-bg img {
    max-width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .p-top__feature-bg {
    background: url(../../img/top/feature_bg_sp.png) no-repeat top;
    background-size: contain;
    background-position: top;
  }
  .p-top__feature-bg .c-sec-ttl__img--sp {
    text-align: left;
  }
}
@media screen and (max-width: 500px) {
  .p-top__feature-bg .c-sec-ttl__img--sp img {
    max-width: 280px;
  }
}
.p-top__feature-bg:before {
  content: "";
  position: absolute;
  top: -145px;
  left: 0;
  width: 100%;
  max-width: 23.85vw;
  height: 458px;
  aspect-ratio: 1/1;
  background: url(../../img/common/abstract_green.svg) no-repeat center;
  background-size: contain;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .p-top__feature-bg:before {
    left: -5px;
    top: -150px;
    max-width: 30vw;
  }
}
@media screen and (max-width: 768px) {
  .p-top__feature-bg:before {
    max-width: 138px;
    height: 138px;
    top: -47px;
  }
}
.p-top__feature-bg:after {
  content: "";
  position: absolute;
  top: -45px;
  right: 41px;
  width: 100%;
  max-width: 5vw;
  height: 150px;
  background: url(../../img/top/feature_ttl.svg) no-repeat center;
  background-size: contain;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .p-top__feature-bg:after {
    right: auto;
    left: 4%;
    top: -53px;
    max-width: 53px;
    height: 83px;
  }
}
.p-top__feature-inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 4.3rem 6.14vw 0 0;
}
.p-top__feature-inner p {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-top__feature-inner {
    padding: 0;
  }
}
.p-top__feature .c-sec-ttl--right {
  padding-right: clamp(150px, 9vw, 178px);
}
@media screen and (max-width: 1024px) {
  .p-top__feature .c-sec-ttl--right {
    padding-right: 6%;
  }
}
.p-top__feature .c-sec-ttl__img {
  position: relative;
  bottom: -30px;
  margin-right: 2.9vw;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .p-top__feature .c-sec-ttl__heading {
    text-align: right;
  }
  .p-top__feature .c-sec-ttl__heading h2 {
    margin-bottom: 2rem;
  }
}
.p-top__service {
  background: url(../../img/top/service_bg.png) no-repeat top;
  background-size: cover;
  padding-bottom: 19.54vh;
}
@media screen and (max-width: 1024px) {
  .p-top__service {
    padding-bottom: 10.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top__service {
    background: url(../../img/top/service_bg_sp.png) no-repeat top;
    background-size: cover;
    padding-bottom: 6.5rem;
  }
}
.p-top__service:before {
  content: "";
  position: absolute;
  top: 50px;
  left: 62px;
  width: 100%;
  max-width: 5vw;
  height: 150px;
  background: url(../../img/top/service_ttl.svg) no-repeat center;
  background-size: contain;
  z-index: 0;
}
@media screen and (max-width: 1280px) {
  .p-top__service:before {
    top: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .p-top__service:before {
    left: auto;
    right: 6%;
  }
}
@media screen and (max-width: 768px) {
  .p-top__service:before {
    top: 20px;
    max-width: 57px;
    height: 85px;
  }
}
.p-top__service:after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: 0;
  width: 100%;
  max-width: 43vw;
  height: 117px;
  background: url(../../img/top/service_abstract_bg.png) no-repeat center;
  background-size: contain;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .p-top__service:after {
    background: url(../../img/top/service_abstract_bg_sp.png) no-repeat center;
    background-size: contain;
    max-width: 339px;
    bottom: -90px;
  }
}
.p-top__service-facilities .l-flex {
  gap: 4.68vw;
  width: 100%;
  max-width: 57vw;
  margin: 7.5vh auto 0;
}
@media screen and (max-width: 1024px) {
  .p-top__service-facilities .l-flex {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top__service-facilities .l-flex {
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
    gap: 5.6rem;
    width: 100%;
    max-width: 500px;
  }
}
.p-top__service-facility-location {
  display: block;
  text-align: center;
  font-size: clamp(2.2rem, 1.25vw, 2.4rem);
  font-family: var(--font-serif);
  margin-bottom: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-top__service-facility-location {
    font-size: 1.5rem;
  }
}
.p-top__service-facility-link {
  display: block;
  width: 100%;
  position: relative;
}
.p-top__service-facility-link img {
  transition: opacity 0.3s;
}
.p-top__service-facility-link:after {
  position: absolute;
  bottom: -30px;
  right: 50%;
  content: "";
  display: block;
  width: 100%;
  max-width: 65px;
  height: 65px;
  aspect-ratio: 1/1;
  background: url(../../img/top/service_arrow.png) no-repeat center;
  background-size: contain;
  transform: translate(50%, 0);
  transition: background 0.3s;
  pointer-events: none;
}
@media (any-hover: hover) {
  .p-top__service-facility-link:hover:after {
    background: url(../../img/top/service_arrow_hover.png) no-repeat center;
    background-size: contain;
  }
}
.p-top__service-facility-info {
  text-align: center;
  margin-top: 3rem;
}
.p-top__service-facility-info p {
  font-weight: bold;
  font-family: var(--font-zen-maru-gothic);
  line-height: 2.2;
  font-size: clamp(1.6rem, 0.94vw, 1.8rem);
}
@media screen and (max-width: 768px) {
  .p-top__service-facility-info p {
    font-size: 1.5rem;
    line-height: 1.3;
  }
}
.p-top__service-facility-info img {
  max-width: clamp(125px, 9.1vw, 175px);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-top__service-facility-info {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1rem;
  }
  .p-top__service-facility-info img {
    max-width: 100px;
    margin: 0;
  }
}
.p-top__service-flow.c-card {
  width: 100%;
  max-width: clamp(900px, 58.69vw, 1127px);
  display: flex;
  margin: 12.1vh auto 0;
  position: relative;
  background-color: var(--color-white);
  border-radius: 36px;
  z-index: 1;
  box-shadow: none;
}
@media screen and (max-width: 1024px) {
  .p-top__service-flow.c-card {
    width: 100%;
    max-width: 430px;
    margin: 5.7rem auto 0;
    flex-direction: column;
    align-items: center;
  }
  .p-top__service-flow.c-card h2 {
    text-align: center;
  }
}
.p-top__service-flow.c-card:after {
  content: "";
  position: absolute;
  top: -50px;
  right: 30px;
  width: 100%;
  max-width: 5vw;
  height: 150px;
  background: url(../../img/top/flow_ttl.svg) no-repeat center;
  background-size: contain;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .p-top__service-flow.c-card:after {
    max-width: 57px;
    height: 64px;
    right: auto;
    left: 4%;
    top: 45%;
  }
}
@media screen and (max-width: 768px) {
  .p-top__service-flow.c-card:after {
    top: 25%;
  }
}
.p-top__service-flow-content {
  flex: 1;
  padding: 3.04vh 4.1vw 3.61vh;
}
@media screen and (max-width: 1024px) {
  .p-top__service-flow-content {
    padding: 2rem 6% 4rem;
  }
}
.p-top__service-flow-content .c-btn {
  margin-top: 2rem;
}
.p-top__service-flow-image {
  width: 100%;
  max-width: clamp(430px, 25.6vw, 493px);
}
.p-top__service-flow-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 36px 0 0 36px;
}
@media screen and (max-width: 1024px) {
  .p-top__service-flow-image img {
    border-radius: 0;
  }
}
@media screen and (max-width: 1024px) {
  .p-top__service-flow-image {
    flex: 1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-top__recruit {
  padding: 21vh 0;
}
@media screen and (max-width: 768px) {
  .p-top__recruit {
    padding: 8.6rem 0 6rem;
  }
  .p-top__recruit .c-sec-ttl__img--sp img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}
.p-top__recruit .c-sec-ttl {
  width: 100%;
  max-width: 58.69vw;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-top__recruit .c-sec-ttl {
    max-width: 100%;
  }
}
.p-top__recruit .c-sec-ttl .c-sec-ttl__heading {
  max-width: 368px;
  padding-top: 5rem;
}
@media screen and (max-width: 1024px) {
  .p-top__recruit .c-sec-ttl .c-sec-ttl__heading {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-top__recruit .c-sec-ttl .c-sec-ttl__heading {
    padding-top: 0;
  }
}
.p-top__recruit .c-sec-ttl .c-sec-ttl__img {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-top__recruit .c-sec-ttl .c-sec-ttl__img img {
    max-width: 100%;
  }
}
.p-top__recruit .c-sec-ttl:after {
  content: "";
  position: absolute;
  top: -40px;
  right: 30px;
  width: 100%;
  max-width: 5vw;
  height: 150px;
  background: url(../../img/top/recruit_ttl.svg) no-repeat center;
  background-size: contain;
  z-index: 0;
}
@media screen and (max-width: 1280px) {
  .p-top__recruit .c-sec-ttl:after {
    right: -80px;
  }
}
@media screen and (max-width: 1024px) {
  .p-top__recruit .c-sec-ttl:after {
    max-width: 57px;
    height: 83px;
    right: 4%;
    top: -20px;
  }
}
.p-top__recruit .c-btn-wrapper {
  margin: 5rem auto 0 10vw;
  gap: 2.4rem;
  position: relative;
  z-index: 2;
}
.p-top__recruit .c-btn-wrapper > a {
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .p-top__recruit .c-btn-wrapper {
    margin: 5rem auto 0;
    padding-left: 6%;
  }
}
@media screen and (max-width: 768px) {
  .p-top__recruit .c-btn-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
.p-top__news {
  background: url(../../img/top/news_bg.png) no-repeat center;
  background-size: cover;
  padding: 10.69vh 0 28vh;
}
@media screen and (max-width: 1280px) {
  .p-top__news {
    padding: 10.69vh 0 15.38vh;
  }
}
@media screen and (max-width: 1024px) {
  .p-top__news {
    padding: 8rem 0 10rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top__news {
    padding: 5.4rem 0 9rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top__news .c-news-wrapper.c-card {
    padding: 2rem 6% 4.5rem;
  }
}
.p-top .c-sec-ttl__img-secondary {
  position: absolute;
  top: 135px;
  right: 12%;
  transform: translate(50%, 0);
}

/*
..%%%%...%%%%%....%%%%...%%..%%..%%%%%%..........%%..%%...%%%%..
.%%..%%..%%..%%..%%..%%..%%..%%....%%............%%..%%..%%.....
.%%%%%%..%%%%%...%%..%%..%%..%%....%%............%%..%%...%%%%..
.%%..%%..%%..%%..%%..%%..%%..%%....%%............%%..%%......%%.
.%%..%%..%%%%%....%%%%....%%%%.....%%.............%%%%....%%%%..
................................................................
*/
.p-about-us__policy {
  padding: 2.63vh 0 7.9vh;
}
.p-about-us__policy .c-border-heading {
  margin-bottom: 6vh;
}
@media screen and (max-width: 1024px) {
  .p-about-us__policy .c-border-heading {
    margin-bottom: 2rem;
  }
}
.p-about-us__policy .c-border-heading h3 {
  font-weight: bold;
}
@media screen and (max-width: 1280px) {
  .p-about-us__policy {
    padding-top: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-about-us__policy {
    padding-bottom: 0;
  }
}
.p-about-us__policy-hero {
  text-align: center;
  margin-bottom: 4rem;
}
.p-about-us__policy-hero img {
  max-width: clamp(600px, 45.15vw, 867px);
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-about-us__policy-hero img {
    max-width: 100%;
  }
}
.p-about-us__policy-content {
  background: var(--color-background-cream, #fefded);
  border-radius: 20px;
  padding-bottom: 7.8rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-about-us__policy-content {
    padding-bottom: 0;
  }
}
.p-about-us__policy-content::before {
  content: "";
  position: absolute;
  top: -38px;
  right: -10px;
  width: 100%;
  max-width: 8.54vw;
  height: 154px;
  background: url(../../img/common/abstract_square_bg.png) no-repeat center;
  background-size: contain;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .p-about-us__policy-content::before {
    top: -11px;
    right: -10px;
    width: 100%;
    max-width: 47px;
    height: 44px;
    background: url(../../img/common/abstract_square_bg_sp.png) no-repeat center;
    background-size: contain;
  }
}
.p-about-us__policy-content::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -57px;
  width: 100%;
  max-width: 9.48vw;
  height: 220px;
  background: url(../../img/common/abstract_square_bg_02.png) no-repeat center;
  background-size: contain;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .p-about-us__policy-content::after {
    top: auto;
    bottom: -10px;
    right: auto;
    left: -10px;
    width: 100%;
    max-width: 47px;
    height: 44px;
    background: url(../../img/common/abstract_square_bg_02_sp.png) no-repeat center;
    background-size: contain;
  }
}
.p-about-us__policy-inner {
  width: 100%;
  max-width: clamp(700px, 49.79vw, 956px);
  padding: 4rem 0;
  margin: 4rem auto 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .p-about-us__policy-inner {
    max-width: 100%;
    padding: 4rem 6%;
  }
}
@media screen and (max-width: 768px) {
  .p-about-us__policy-inner {
    padding: 2.6rem 6% 4rem;
  }
}
.p-about-us__policy-philosophy {
  margin-bottom: 4rem;
}
.p-about-us__policy-principles {
  width: 100%;
  margin: 0 auto 2rem;
  list-style: none;
  padding: 0;
  text-align: center;
}
.p-about-us__policy-principle {
  margin-bottom: 0.5rem;
  font-size: clamp(1.8rem, 1.05vw, 2rem);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-about-us__policy-principle {
    font-size: 1.5rem;
    align-items: flex-start;
    margin-bottom: 1rem;
  }
}
.p-about-us__policy-principle:last-child {
  margin-bottom: 0;
}
.p-about-us__policy-principle-number {
  margin-right: 1rem;
  flex-shrink: 0;
}
.p-about-us__policy-principle-text {
  flex: 1;
  line-height: 1.6;
}
.p-about-us__policy-operations {
  margin-top: 3rem;
}
.p-about-us__policy-guidelines {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 2rem auto 0;
  list-style: none;
  padding: 0;
}
.p-about-us__policy-guideline {
  font-size: clamp(1.6rem, 0.94vw, 1.8rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  .p-about-us__policy-guideline {
    font-size: 1.4rem;
  }
}
.p-about-us__policy-guideline:last-child {
  margin-bottom: 0;
}
.p-about-us__policy-guideline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  background-color: var(--color-primary, #19b59e);
  border-radius: 50%;
  transform: translate(0, -50%);
}
.p-about-us__greeting {
  padding-top: 6.26vh;
}
@media screen and (max-width: 768px) {
  .p-about-us__greeting {
    padding-top: 4.2rem;
  }
}
.p-about-us__greeting-header {
  margin-bottom: 3.13vh;
}
@media screen and (max-width: 768px) {
  .p-about-us__greeting-header {
    margin-bottom: 2.5rem;
  }
}
.p-about-us__greeting-content .l-flex {
  gap: 3.12vw;
  align-items: flex-start;
}
@media screen and (max-width: 1280px) {
  .p-about-us__greeting-content .l-flex {
    justify-content: center;
  }
}
@media screen and (max-width: 1024px) {
  .p-about-us__greeting-content .l-flex {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .p-about-us__greeting-content .l-flex {
    flex-direction: column-reverse;
    align-items: center;
    gap: 2rem;
  }
}
.p-about-us__greeting-text {
  flex: 1;
  max-width: clamp(500px, 28.74vw, 552px);
}
@media screen and (max-width: 1024px) {
  .p-about-us__greeting-text {
    max-width: 100%;
  }
}
.p-about-us__greeting-text p {
  font-size: 1.6rem;
  line-height: 2.08;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .p-about-us__greeting-text p {
    font-size: 1.4rem;
    line-height: 1.85;
  }
}
.p-about-us__greeting-image {
  flex-shrink: 0;
}
.p-about-us__greeting-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .p-about-us__greeting-image img {
    border-radius: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-about-us__greeting-profile {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
  }
  .p-about-us__greeting-image {
    flex: 1;
  }
  .p-about-us__greeting-name {
    flex: 1;
  }
  .p-about-us__greeting-name p {
    font-size: 2rem;
    font-family: var(--font-serif);
  }
}
@media screen and (max-width: 500px) {
  .p-about-us__greeting-name p {
    font-size: 1.5rem;
    font-weight: bold;
  }
}
.p-about-us__overview .c-info-table {
  width: 100%;
  border: 1px solid var(--color-grey);
}
.p-about-us__overview .c-info-table__header {
  width: 200px;
  text-align: center;
  vertical-align: top;
  font-size: clamp(1.5rem, 0.89vw, 1.7rem);
  font-weight: bold;
  background-color: var(--color-beige);
  padding: 2rem 0;
  border-collapse: collapse;
  border-right: 1px solid var(--color-grey);
}
@media screen and (max-width: 1024px) {
  .p-about-us__overview .c-info-table__header {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-about-us__overview .c-info-table__header {
    width: 100px;
  }
}
.p-about-us__overview .c-info-table__row {
  border-bottom: 1px solid var(--color-grey);
}
.p-about-us__overview .c-info-table__row:last-child {
  border-bottom: none;
}
.p-about-us__overview .c-info-table__content {
  width: calc(100% - 200px);
  vertical-align: middle;
  padding: 2rem 4.5rem;
}
.p-about-us__overview .c-info-table__content span {
  margin-right: 1.5rem;
}
.p-about-us__overview .c-info-table__content span:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .p-about-us__overview .c-info-table__content span {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-about-us__overview .c-info-table__content {
    font-size: 1.4rem;
    padding: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-about-us__overview .c-info-table__director-item {
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  .p-about-us__overview .c-info-table__director-title {
    font-size: 1rem;
  }
}
.p-about-us__history {
  background: url(../../img/about_us/history_bg.png) no-repeat top;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .p-about-us__history .l-flex {
    justify-content: center;
    gap: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-about-us__history {
    background: url(../../img/about_us/history_bg_sp.png) no-repeat top;
    background-size: cover;
  }
}
.p-about-us__history:before {
  content: "";
  position: absolute;
  top: -145px;
  left: 0;
  width: 100%;
  max-width: 23.85vw;
  height: 458px;
  background: url(../../img/common/abstract_green.svg) no-repeat center;
  background-size: contain;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .p-about-us__history:before {
    top: -40px;
    max-width: 137px;
    height: 135px;
  }
}
.p-about-us__history-item {
  display: flex;
  align-items: center;
  gap: 2.08vw;
  margin-bottom: 2rem;
  position: relative;
}
.p-about-us__history-item:last-child .p-about-us__history-date:after {
  display: none;
}
.p-about-us__history-date {
  position: relative;
  width: 100%;
  max-width: clamp(150px, 8.95vw, 172px);
}
@media screen and (max-width: 768px) {
  .p-about-us__history-date {
    max-width: 100px;
  }
}
.p-about-us__history-date:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 3px;
  height: 100%;
  background-color: var(--color-black);
  bottom: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
.p-about-us__history-description {
  font-size: clamp(1.6rem, 0.99vw, 1.9rem);
  flex: 1;
}
@media screen and (max-width: 768px) {
  .p-about-us__history-description {
    font-size: 1.4rem;
  }
}
.p-about-us__history-img {
  padding-top: 12vh;
  width: 100%;
  max-width: clamp(350px, 23.28vw, 447px);
}
@media screen and (max-width: 768px) {
  .p-about-us__history-img {
    display: none;
  }
}

/*
.%%%%%%..%%.......%%%%...%%...%%.
.%%......%%......%%..%%..%%...%%.
.%%%%....%%......%%..%%..%%.%.%%.
.%%......%%......%%..%%..%%%%%%%.
.%%......%%%%%%...%%%%....%%.%%..
.................................
*/
.p-flow__top .c-sec-ttl--lower {
  margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .p-flow__top .c-sec-ttl--lower {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .p-flow__sp-nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .p-flow__sp-nav-list {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .p-flow__sp-nav-item {
    width: 100%;
    max-width: 33.3333333333%;
  }
  .p-flow__sp-nav-item a {
    display: block;
    width: 100%;
    height: auto;
  }
}
.p-flow__step {
  background-color: var(--color-mint);
}
.p-flow__step-content {
  position: relative;
}
.p-flow__step-content:after {
  content: "";
  position: absolute;
  width: 51px;
  height: 100%;
  top: 0;
  left: 14%;
  transform: translate(-50%, 0);
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 0;
}
@media screen and (max-width: 1280px) {
  .p-flow__step-content:after {
    left: 16%;
  }
}
@media screen and (max-width: 1024px) {
  .p-flow__step-content:after {
    right: 50%;
    left: 50%;
  }
}
@media screen and (max-width: 768px) {
  .p-flow__step {
    padding-top: 5rem;
  }
}
.p-flow__step .c-card {
  padding: 2.3rem 4.58vw 4.1rem 2.6vw;
  border-radius: 26px;
  margin-bottom: 7vh;
  position: relative;
  z-index: 1;
}
.p-flow__step .c-card .c-cta__actions {
  justify-content: flex-start;
}
@media screen and (max-width: 1024px) {
  .p-flow__step .c-card .c-cta__actions {
    justify-content: center;
  }
}
@media screen and (max-width: 1024px) {
  .p-flow__step .c-card {
    padding: 2.3rem 6% 4.1rem;
    margin-bottom: 4rem;
  }
}
.p-flow__step .c-card--step1 .c-card__body-text {
  width: 100%;
  max-width: 100%;
}
.p-flow__step .c-card--step1 .c-card__icon img {
  max-width: clamp(100px, 6.4vw, 123px);
}
.p-flow__step .c-card--step2 .c-card__icon img {
  max-width: clamp(110px, 7.7vw, 149px);
}
.p-flow__step .c-card--step3 .c-card__icon img {
  max-width: clamp(110px, 7.4vw, 142px);
}
.p-flow__step .c-card--step4 .c-card__icon img {
  max-width: clamp(75px, 4.4vw, 85px);
}
.p-flow__step .c-card--step5 .c-card__icon img {
  max-width: clamp(85px, 4.9vw, 95px);
}
.p-flow__step .c-card--step6 .c-card__icon img {
  max-width: clamp(110px, 6.77vw, 130px);
}
.p-flow__step .c-card p {
  font-size: clamp(1.6rem, 0.94vw, 1.8rem);
  line-height: 1.83;
}
@media screen and (max-width: 768px) {
  .p-flow__step .c-card p {
    font-size: 1.4rem;
  }
}
.p-flow__step .c-card__ttl {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.3vw, 2.5rem);
  margin-bottom: 1rem;
}
@media screen and (max-width: 1280px) {
  .p-flow__step .c-card__ttl {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1024px) {
  .p-flow__step .c-card__ttl {
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-flow__step .c-card__ttl {
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
  }
}
.p-flow__step .c-card__ttl h3 {
  font-size: clamp(2.4rem, 1.46vw, 2.8rem);
  font-weight: bold;
  font-family: var(--font-serif);
}
@media screen and (max-width: 768px) {
  .p-flow__step .c-card__ttl h3 {
    font-size: 2rem;
  }
}
.p-flow__step .c-card__icon {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media screen and (max-width: 1024px) {
  .p-flow__step .c-card__icon {
    display: none;
  }
}
.p-flow__step .c-card__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  padding-left: 8rem;
}
@media screen and (max-width: 1024px) {
  .p-flow__step .c-card__body {
    padding-left: 0;
  }
}
.p-flow__step .c-card__body .l-flex {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-flow__step .c-card__body .l-flex {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}
.p-flow__step .c-card__body-text {
  width: 100%;
  max-width: 775px;
}
.p-flow__step .c-card .c-cta {
  margin: 3.5rem auto 0 0;
  padding: 0;
}
.p-flow__step .c-card .c-cta__contact-text p {
  font-size: clamp(1.4rem, 0.84vw, 1.6rem);
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .p-flow__step .c-card .c-cta {
    width: 100%;
    max-width: 100%;
    margin: 3.5rem auto 0;
  }
}

/*
.%%%%%%..%%%%%%...%%%%...%%%%%%..%%..%%..%%%%%...%%%%%%...%%%%..
.%%......%%......%%..%%....%%....%%..%%..%%..%%..%%......%%.....
.%%%%....%%%%....%%%%%%....%%....%%..%%..%%%%%...%%%%.....%%%%..
.%%......%%......%%..%%....%%....%%..%%..%%..%%..%%..........%%.
.%%......%%%%%%..%%..%%....%%.....%%%%...%%..%%..%%%%%%...%%%%..
................................................................
*/
@media screen and (max-width: 768px) {
  .p-features .l-container--right,
  .p-features .l-container--left {
    padding: 0;
  }
}
.p-features__top .c-sec-ttl--lower-heading {
  font-size: clamp(2.8rem, 1.88vw, 3.6rem);
}
@media screen and (max-width: 1024px) {
  .p-features__top .c-sec-ttl--lower-heading {
    font-size: clamp(2.5rem, 1.46vw, 2.8rem);
  }
}
@media screen and (max-width: 768px) {
  .p-features__top .c-sec-ttl--lower-heading {
    font-size: 2rem;
  }
}
.p-features__top-text {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
}
.p-features__top-text p {
  font-size: clamp(1.6rem, 0.94vw, 1.8rem);
}
@media screen and (max-width: 1024px) {
  .p-features__top-text p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .p-features__top-text p {
    font-size: 1.4rem;
  }
}
.p-features__nav {
  background-color: var(--color-dark-beige);
  padding: 4.5rem 0 17.56vh;
}
@media screen and (max-width: 1024px) {
  .p-features__nav {
    padding: 3rem 0 14rem;
  }
}
@media screen and (max-width: 768px) {
  .p-features__nav {
    padding: 2rem 0 4.8rem;
  }
}
.p-features__nav .c-sec-ttl--lower-heading {
  margin: 5rem auto 3.3rem;
}
@media screen and (max-width: 768px) {
  .p-features__nav .c-sec-ttl--lower-heading {
    margin: 1rem auto 0;
  }
}
.p-features__nav-num {
  font-size: 6rem;
  color: var(--color-orange);
}
@media screen and (max-width: 768px) {
  .p-features__nav-num {
    font-size: 4rem;
  }
}
.p-features__nav-list {
  width: 100%;
  max-width: clamp(850px, 47.39vw, 910px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .p-features__nav-list {
    flex-direction: column;
    gap: 0;
  }
}
.p-features__nav-item {
  width: 100%;
  max-width: calc(33.3333333333% - 3rem);
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-features__nav-item {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}
.p-features__nav-item--first:before {
  content: "";
  position: absolute;
  width: 145px;
  height: 156px;
  top: 70%;
  left: 0;
  transform: translate(-50%, -50%);
  background: url(../../img/features/features_nav_bg.svg) no-repeat center;
  background-size: contain;
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .p-features__nav-item--first:before {
    top: 26%;
    left: -21%;
    transform: scale(0.7);
    transform-origin: left;
  }
}
@media screen and (max-width: 768px) {
  .p-features__nav-item--first:before {
    transform: scale(1);
    transform-origin: inherit;
    width: 67px;
    height: 72px;
    left: -5%;
    top: 30%;
  }
}
.p-features__nav-item--first:after {
  content: "";
  position: absolute;
  width: 106px;
  height: 106px;
  top: 80%;
  right: -30%;
  transform: translate(-50%, -50%);
  background: url(../../img/features/features_nav_txt.svg) no-repeat center;
  background-size: contain;
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .p-features__nav-item--first:after {
    top: 47%;
    right: -14%;
    transform: scale(0.8);
    transform-origin: left;
  }
}
@media screen and (max-width: 768px) {
  .p-features__nav-item--first:after {
    transform: scale(1);
    transform-origin: inherit;
    width: 70px;
    height: 70px;
    top: 0;
    right: -5%;
  }
}
.p-features__nav-item--last:before {
  content: "";
  position: absolute;
  width: 103px;
  height: 136px;
  top: 70%;
  right: -30%;
  transform: translate(0, -50%);
  background: url(../../img/features/features_nav_bg_02.svg) no-repeat center;
  background-size: contain;
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .p-features__nav-item--last:before {
    right: -28%;
    top: 55%;
    transform: scale(0.7);
    transform-origin: top;
  }
}
@media screen and (max-width: 768px) {
  .p-features__nav-item--last:before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .p-features__nav-item:nth-child(3):after {
    content: "";
    position: absolute;
    width: 58px;
    height: 76px;
    bottom: -40px;
    right: -15px;
    transform: translate(0, -50%);
    background: url(../../img/features/features_nav_bg_02.svg) no-repeat center;
    background-size: contain;
    z-index: 1;
  }
}
.p-features__unit {
  position: relative;
  margin-top: 11.3rem;
}
@media screen and (max-width: 1280px) {
  .p-features__unit {
    margin-top: 8rem;
  }
}
.p-features__unit-img {
  width: 100%;
  max-width: clamp(600px, 47.65vw, 100%);
}
@media screen and (max-width: 1024px) {
  .p-features__unit {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .p-features__unit {
    margin-top: 0;
  }
}
.p-features__unit-text {
  width: 100%;
  max-width: 25vw;
  position: absolute;
  top: 50%;
  left: 16%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-size: 2rem;
  font-family: var(--font-serif);
  background-color: var(--color-white);
  border: 1px solid var(--color-grey);
  border-radius: 28px;
  padding: 3rem 5rem;
}
@media screen and (max-width: 1280px) {
  .p-features__unit-text {
    left: 21%;
    padding: 3rem;
    max-width: -moz-fit-content !important;
    max-width: fit-content !important;
  }
}
@media screen and (max-width: 1024px) {
  .p-features__unit-text {
    padding: 3rem;
    max-width: 88% !important;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
  }
}
@media screen and (max-width: 768px) {
  .p-features__unit-text {
    height: -moz-fit-content;
    height: fit-content;
    max-width: 100%;
    left: 50%;
    padding: 2rem;
    top: 35%;
    height: fit-content;
    border-radius: 19px;
  }
}
.p-features__unit-text h3 {
  font-weight: bold;
  line-height: 1.9;
  text-align: left;
}
@media screen and (max-width: 1280px) {
  .p-features__unit-text h3 {
    font-size: 1.8rem;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .p-features__unit-text h3 {
    max-width: 100%;
    font-size: 1.6rem;
    line-height: 1.625;
    letter-spacing: 0.1em;
  }
}
.p-features__unit-text span {
  font-size: clamp(2.5rem, 1.46vw, 2.8rem);
  color: var(--color-dark-mint);
}
@media screen and (max-width: 1280px) {
  .p-features__unit-text span {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-features__unit-text span {
    font-size: clamp(1.8rem, 0.93vw, 1.8rem);
  }
}
@media screen and (max-width: 768px) {
  .p-features__unit-text span {
    font-size: 1.8rem;
  }
}
.p-features__unit--left .p-features__unit-img {
  text-align: left;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .p-features__unit--left .p-features__unit-img {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}
.p-features__unit--left .p-features__unit-text {
  left: auto;
  right: -21%;
}
@media screen and (max-width: 1280px) {
  .p-features__unit--left .p-features__unit-text {
    right: -24%;
  }
}
@media screen and (max-width: 1024px) {
  .p-features__unit--left .p-features__unit-text {
    left: 50%;
    right: auto;
  }
}
.p-features__unit--right .p-features__unit-img {
  text-align: right;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .p-features__unit--right .p-features__unit-img {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}
.p-features__kumon {
  padding: 0;
}
.p-features__kumon .p-features__unit-text {
  max-width: 25vw;
}
.p-features__kumon-text {
  margin-top: 10.44vh;
}
@media screen and (max-width: 1024px) {
  .p-features__kumon-text {
    margin-top: 18rem;
  }
}
@media screen and (max-width: 768px) {
  .p-features__kumon-text {
    margin-top: 11rem;
  }
}
.p-features__kumon-text .c-sec-ttl--lower {
  display: flex;
  align-items: center;
}
.p-features__kumon-text .c-sec-ttl--lower-heading {
  display: block;
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  font-size: clamp(2.5rem, 1.46vw, 2.8rem);
  font-weight: bold;
  text-align: left;
  font-family: var(--font-serif);
  margin-right: 2rem;
}
@media screen and (max-width: 1024px) {
  .p-features__kumon-text .c-sec-ttl--lower-heading {
    font-size: 1.7rem;
    margin-right: 1rem;
  }
}
.p-features__kumon-text .c-sec-ttl--lower hr {
  width: 100%;
  height: 1px;
  display: block;
  background-color: var(--color-dark-mint);
}
.p-features__kumon-text-inner {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
  padding: 3.6rem 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-features__kumon-text-inner {
    padding: 0;
  }
}
.p-features__kumon-text-inner p {
  font-size: clamp(1.5rem, 0.89vw, 1.7rem);
}
@media screen and (max-width: 768px) {
  .p-features__kumon-text-inner p {
    font-size: 1.4rem;
  }
}
.p-features__kumon-text-inner:after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -20%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 157px;
  height: 168px;
  background: url(../../img/features/features_nav_bg.svg) no-repeat center;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .p-features__kumon-text-inner:after {
    bottom: -50px;
    right: -10%;
    transform: scale(0.7);
    transform-origin: left;
  }
}
@media screen and (max-width: 1024px) {
  .p-features__kumon-text-inner:after {
    display: none;
  }
}
.p-features__kumon-about {
  background: url(../../img/features/features_about_bg.png) no-repeat center;
  background-size: cover;
  margin-top: 12.5rem;
  padding-bottom: 11.5rem;
}
@media screen and (max-width: 1280px) {
  .p-features__kumon-about {
    margin-top: 7.5rem;
    padding-bottom: 6.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-features__kumon-about {
    background: url(../../img/features/features_about_bg_sp.png) no-repeat center;
    background-size: cover;
  }
}
.p-features__kumon-about .c-sec-ttl--radius {
  position: relative;
  top: -50%;
  transform: translate(0, -50%);
}
.p-features__kumon-about .l-flex {
  gap: 2.5rem;
  max-width: 72.9vw;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .p-features__kumon-about .l-flex {
    max-width: 700px;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .p-features__kumon-about .l-flex {
    max-width: 100%;
    gap: 4rem !important;
  }
  .p-features__kumon-about .l-flex .c-card {
    max-width: 310px;
    margin: 0 auto;
  }
}
.p-features__kumon-about .c-card {
  border: 2px solid var(--color-light-black);
  border-radius: 15px;
  padding: 4rem 2rem 4.5rem;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .p-features__kumon-about .c-card {
    width: 100%;
    max-width: calc(50% - 1.5rem);
  }
}
@media screen and (max-width: 1024px) {
  .p-features__kumon-about .c-card {
    width: 100%;
    max-width: calc(50% - 2.5rem);
  }
}
@media screen and (max-width: 768px) {
  .p-features__kumon-about .c-card {
    max-width: 100%;
    margin: 0 auto;
    padding: 3.4rem 2rem 2rem;
  }
}
.p-features__kumon-about .c-card__num {
  position: absolute;
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .p-features__kumon-about .c-card__num {
    max-width: 46px;
  }
}
.p-features__kumon-about .c-card img {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-features__kumon-about .c-card img {
    margin-bottom: 1.5rem;
  }
}
.p-features__kumon-about .c-card p {
  font-size: clamp(1.6rem, 0.99vw, 1.9rem);
  font-weight: bold;
  color: var(--color-light-black);
}
@media screen and (max-width: 768px) {
  .p-features__kumon-about .c-card p {
    font-size: 1.5rem;
  }
}
.p-features__kumon .l-flex {
  gap: 1.82vw;
  margin-top: 6rem;
}
@media screen and (max-width: 1280px) {
  .p-features__kumon .l-flex {
    gap: 6rem 3rem;
  }
}
@media screen and (max-width: 768px) {
  .p-features__kumon .l-flex {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
  }
}
.p-features__support {
  padding: 0;
}
.p-features__support .p-features__unit-text {
  max-width: 28.5vw;
}
@media screen and (max-width: 768px) {
  .p-features__support .p-features__unit-text {
    top: 30%;
  }
}
.p-features__support-inner {
  width: 100%;
  max-width: 1323px;
}
.p-features__support-inner.right {
  margin-right: 5.26vw;
  margin-left: auto;
}
.p-features__support-inner.left {
  margin-right: auto;
  margin-left: 5.26vw;
}
@media screen and (max-width: 1024px) {
  .p-features__support-inner.left {
    margin-left: 0;
  }
}
.p-features__support-inner.center {
  max-width: 64.68vw;
  margin: 0 auto;
}
.p-features__support-inner.large {
  max-width: 73.17vw;
  margin: 0 auto;
}
.p-features__support-bg {
  background-color: var(--color-light-beige);
  margin-top: 6.58vh;
  padding: 6rem 0 14.8rem;
}
@media screen and (max-width: 1280px) {
  .p-features__support-bg {
    padding: 6rem 0 10.8rem;
  }
}
@media screen and (max-width: 768px) {
  .p-features__support-bg {
    padding: 11rem 0 6.5rem;
    margin-top: 0;
  }
}
.p-features__support .l-flex {
  justify-content: center;
  gap: 1.66vw;
}
@media screen and (max-width: 1024px) {
  .p-features__support .l-flex {
    gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-features__support .l-flex {
    flex-direction: column;
    align-items: center;
  }
}
.p-features__support .c-card {
  width: 100%;
  max-width: 372px;
  border-radius: 32px;
}
@media screen and (max-width: 768px) {
  .p-features__support .c-card {
    border-radius: 28px;
  }
}
.p-features__support .c-card__image {
  position: relative;
}
.p-features__support .c-card__image-ttl {
  width: 100%;
  position: absolute;
  bottom: 0;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1.2rem 0;
}
@media screen and (max-width: 768px) {
  .p-features__support .c-card__image-ttl {
    padding: 0.5rem 0;
  }
}
.p-features__support .c-card__image-ttl h4 {
  font-size: clamp(2.2rem, 1.31vw, 2.5rem);
  font-weight: bold;
  font-family: var(--font-serif);
}
@media screen and (max-width: 1024px) {
  .p-features__support .c-card__image-ttl h4 {
    font-size: clamp(1.6rem, 0.94vw, 1.8rem);
  }
}
@media screen and (max-width: 768px) {
  .p-features__support .c-card__image-ttl h4 {
    font-size: 1.8rem;
  }
}
.p-features__support .c-card__text {
  padding: 3.86vh 1.4vw;
}
@media screen and (max-width: 1024px) {
  .p-features__support .c-card__text {
    padding: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-features__support .c-card__text {
    padding: 1.5rem 2rem;
  }
}
.p-features__support .c-card__text p {
  font-size: clamp(1.6rem, 0.94vw, 1.8rem);
  line-height: 1.94;
}
@media screen and (max-width: 1024px) {
  .p-features__support .c-card__text p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .p-features__support .c-card__text p {
    font-size: 1.4rem;
    line-height: 1.85;
  }
}
.p-features__wellness {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .p-features__wellness {
    padding-bottom: 5rem;
  }
}
.p-features__wellness .p-features__unit-text {
  max-width: 27.86vw;
}
@media screen and (max-width: 1280px) {
  .p-features__wellness .p-features__unit-text {
    left: 25%;
  }
}
@media screen and (max-width: 1024px) {
  .p-features__wellness .p-features__unit-text {
    left: 50%;
  }
}
.p-features__wellness .l-flex {
  justify-content: flex-end;
  align-items: center;
  margin-top: 9.09vh;
  gap: 2.34vw;
}
.p-features__wellness .l-flex > div:first-child {
  width: 100%;
  max-width: clamp(300px, 42.89vw, 549px);
}
@media screen and (max-width: 1280px) {
  .p-features__wellness .l-flex > div:first-child {
    max-width: 400px;
  }
}
.p-features__wellness .l-flex p {
  font-size: clamp(1.6rem, 1.05vw, 2rem);
  padding-right: 2rem;
}
@media screen and (max-width: 1024px) {
  .p-features__wellness .l-flex p {
    padding-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .p-features__wellness .l-flex {
    justify-content: center;
    margin-top: 12.09vh;
  }
}
@media screen and (max-width: 768px) {
  .p-features__wellness .l-flex {
    flex-direction: column-reverse;
    align-items: center;
    gap: 2rem;
    padding: 0 6%;
    margin-top: 10rem;
  }
  .p-features__wellness .l-flex p {
    font-size: 1.4rem;
  }
}
.p-features__nutrition {
  padding-top: 0;
  padding-bottom: 18.5vh;
}
@media screen and (max-width: 1024px) {
  .p-features__nutrition {
    padding-bottom: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .p-features__nutrition {
    padding-bottom: 5rem;
  }
}
.p-features__nutrition .p-features__unit-text {
  max-width: 28.43vw;
}
@media screen and (max-width: 1280px) {
  .p-features__nutrition .p-features__unit-text {
    right: -22%;
  }
}
@media screen and (max-width: 768px) {
  .p-features__nutrition .p-features__unit-text {
    top: 25%;
  }
}
.p-features__nutrition .l-flex {
  gap: 1.5rem;
  margin-top: 10.44vh;
}
@media screen and (max-width: 1024px) {
  .p-features__nutrition .l-flex {
    margin-top: 16.44vh;
  }
}
@media screen and (max-width: 768px) {
  .p-features__nutrition .l-flex {
    flex-wrap: wrap;
    gap: 2rem 1rem;
    margin-top: 17rem;
  }
  .p-features__nutrition .l-flex > div {
    width: 100%;
    max-width: calc(50% - 0.5rem);
  }
}
.p-features__staff {
  padding: 0 0 18.5vh;
}
@media screen and (max-width: 768px) {
  .p-features__staff {
    padding-top: 1rem;
    padding-bottom: 22rem;
  }
}
.p-features__staff .p-features__unit-text {
  max-width: 30.31vw;
}
@media screen and (max-width: 1280px) {
  .p-features__staff .p-features__unit-text {
    left: 28%;
  }
}
@media screen and (max-width: 1024px) {
  .p-features__staff .p-features__unit-text {
    left: 50%;
  }
}
@media screen and (max-width: 768px) {
  .p-features__staff .p-features__unit-text {
    top: 20%;
  }
}
.p-features__family-support {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .p-features__family-support {
    background-color: #CDEBE4;
  }
}
.p-features__family-support .p-features__unit-text {
  max-width: 28.43vw;
}
@media screen and (max-width: 1280px) {
  .p-features__family-support .p-features__unit-text {
    right: -26%;
  }
}
.p-features__family-support-points {
  gap: 2.5rem;
  margin-top: 12.53vh;
}
@media screen and (max-width: 1024px) {
  .p-features__family-support-points {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .p-features__family-support-points {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 12rem;
  }
}
.p-features__family-support-item {
  position: relative;
  width: 100%;
  max-width: 22vw;
  padding: 5rem 3.6rem 5.6rem;
  background-color: #cdebe4;
  border-radius: 15px;
}
@media screen and (max-width: 1280px) {
  .p-features__family-support-item {
    padding: 4rem 3rem 3rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-features__family-support-item {
    max-width: calc(50% - 1.25rem);
    padding: 5rem 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-features__family-support-item {
    max-width: 100%;
    padding: 0 2rem 3rem;
  }
}
.p-features__family-support-item img {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 1280px) {
  .p-features__family-support-item img {
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-features__family-support-item img {
    margin-bottom: 1rem;
  }
}
.p-features__family-support-item p {
  font-size: clamp(1.6rem, 0.94vw, 1.8rem);
}
@media screen and (max-width: 1024px) {
  .p-features__family-support-item p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .p-features__family-support-item p {
    font-size: 1.4rem;
  }
}
.p-features__family-support-num {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, -50%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-features__family-support-num {
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.p-features__family-support-num img {
  width: 100%;
  max-width: clamp(60px, 3.95vw, 100%);
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-features__family-support-num img {
    max-width: 56px;
  }
}
@media screen and (max-width: 768px) {
  .p-features__family-support-image {
    position: relative;
  }
}
.p-features__voice {
  background: url(../../img/features/features_voice_bg.png) no-repeat top;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .p-features__voice {
    background: url(../../img/features/features_voice_bg_sp.png) no-repeat top;
    background-size: cover;
  }
}
.p-features__voice-card {
  position: relative;
  border-radius: 10px;
  padding: 2.3rem 5.2rem 7.7rem;
}
@media screen and (max-width: 1024px) {
  .p-features__voice-card {
    width: 100%;
    max-width: 100%;
    padding: 2.3rem 2.5rem 7.7rem;
  }
}
@media screen and (max-width: 768px) {
  .p-features__voice-card {
    padding: 1rem 1.4rem 5rem;
  }
}
.p-features__voice-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 288px;
  height: 155px;
  background: url(../../img/features/features_voice_parts_orange.png) no-repeat center;
  background-size: contain;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .p-features__voice-card:before {
    max-width: 99px;
    height: 53px;
    border-radius: 10px 0 0 0;
  }
}
.p-features__voice-card--secondary {
  margin-top: 7.7rem;
}
@media screen and (max-width: 1024px) {
  .p-features__voice-card--secondary {
    margin-top: 3.5rem;
  }
}
.p-features__voice-card--secondary:before {
  content: "";
  background: url(../../img/features/features_voice_parts_pink.png) no-repeat center;
  background-size: contain;
}
.p-features__voice-card--secondary .p-features__voice-activity-label {
  color: var(--color-brown);
  background: var(--color-gradient-pink--bottom);
}
.p-features__voice-card--secondary .p-features__voice-activity-header {
  background-color: var(--color-light-pink);
}
.p-features__voice-content {
  padding: 0 1.4vw;
}
@media screen and (max-width: 768px) {
  .p-features__voice-content {
    padding: 0;
  }
}
.p-features__voice-content p {
  font-size: clamp(1.6rem, 0.94vw, 1.8rem);
  font-weight: bold;
  color: #777777;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1024px) {
  .p-features__voice-content p {
    font-size: 1.6rem;
  }
}
.p-features__voice-header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-bottom: 1px solid var(--color-grey);
  margin-bottom: 2.5rem;
  gap: 1.7rem;
  padding: 0 7.5vw 2rem 0;
}
@media screen and (max-width: 1280px) {
  .p-features__voice-header {
    padding: 0 3.5vw 2rem 0;
  }
}
@media screen and (max-width: 1024px) {
  .p-features__voice-header {
    padding: 0 15% 2rem 0;
  }
}
@media screen and (max-width: 768px) {
  .p-features__voice-header {
    padding: 0 0 1rem 2rem;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .p-features__voice-avatar {
    max-width: 82px;
  }
  .p-features__voice-number {
    padding-left: 1rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .p-features__voice-number {
    padding-left: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-features__voice-number img {
    max-width: 66px;
  }
}
.p-features__voice-title {
  text-align: center;
}
.p-features__voice-profile {
  padding-top: 2rem;
}
@media screen and (max-width: 768px) {
  .p-features__voice-profile {
    padding-top: 0;
  }
}
.p-features__voice-name {
  font-size: clamp(3rem, 1.78vw, 3.4rem);
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .p-features__voice-name {
    font-size: clamp(2.5rem, 1.46vw, 2.8rem);
  }
}
@media screen and (max-width: 768px) {
  .p-features__voice-name {
    font-size: 2.3rem;
  }
}
.p-features__voice-detail {
  font-size: 2.3rem;
  font-weight: bold;
  margin-left: 1rem;
}
@media screen and (max-width: 768px) {
  .p-features__voice-detail {
    font-size: 1.5rem;
    margin-left: 0;
  }
}
.p-features__voice-intro span {
  color: var(--color-blue);
}
.p-features__voice-activity-header {
  width: 100%;
  max-width: 33vw;
  background-color: var(--color-light-orange);
  position: relative;
  padding: 3rem 0 2rem;
  border-radius: 16px;
  margin: 3rem auto 1.7rem;
}
@media screen and (max-width: 1024px) {
  .p-features__voice-activity-header {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-features__voice-activity-header {
    padding: 2rem 0 1rem;
  }
}
.p-features__voice-activity-label {
  width: 100%;
  max-width: 434px;
  font-size: clamp(1.6rem, 0.94vw, 1.8rem);
  font-weight: bold;
  text-align: center;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 18px;
  color: var(--color-white);
  background: var(--color-gradient-orange--bottom);
}
@media screen and (max-width: 768px) {
  .p-features__voice-activity-label {
    max-width: 100%;
    font-size: 1.5rem;
    padding: 0.2rem 0;
  }
}
.p-features__voice-activity-title {
  font-size: clamp(2.5rem, 1.46vw, 2.8rem);
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .p-features__voice-activity-title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-features__voice-activity-title {
    font-size: clamp(2rem, 1.15vw, 2.2rem);
  }
}
@media screen and (max-width: 768px) {
  .p-features__voice-activity-title {
    font-size: 1.8rem;
  }
}
.p-features__voice-activity-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.8rem;
}
@media screen and (max-width: 768px) {
  .p-features__voice-activity-content {
    flex-direction: column;
    align-items: center;
  }
}
.p-features__voice-process {
  margin-bottom: 3.6rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-features__voice-process {
    margin-bottom: 1.5rem;
  }
}
.p-features__voice-process-flow {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-features__voice-process-flow {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}
.p-features__voice-process-flow-inner {
  padding: 1.5rem 1.5rem 3.5rem;
}
@media screen and (max-width: 768px) {
  .p-features__voice-process-flow-inner {
    padding: 1.5rem 1.5rem 1.8rem;
  }
}
.p-features__voice-process-flow-item {
  position: relative;
  width: 100%;
  max-width: 382px;
  flex: 1;
  border-radius: 28px;
  border: 1px solid var(--color-grey);
}
@media screen and (max-width: 768px) {
  .p-features__voice-process-flow-item {
    border-radius: 14px;
  }
}
.p-features__voice-process-flow-item:first-child:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-24%, -10%);
  width: 100%;
  max-width: 172px;
  height: 177px;
  background: url(../../img/features/features_process_flow_img_01.png) no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .p-features__voice-process-flow-item:first-child:before {
    max-width: 84px;
    height: 90px;
  }
}
.p-features__voice-process-flow-item:nth-child(2):before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(50%, 45%);
  width: 100%;
  max-width: 151px;
  height: 168px;
  background: url(../../img/features/features_process_flow_img_02.png) no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .p-features__voice-process-flow-item:nth-child(2):before {
    max-width: 57px;
    height: 69px;
  }
}
.p-features__voice-process-flow-image {
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .p-features__voice-process-flow-image {
    margin-bottom: 1rem;
  }
}
.p-features__voice-process-flow-heading {
  text-align: center;
  color: var(--color-light-black);
  background: var(--color-gradient-pink--bottom);
  padding: 1.5rem 0;
  border-radius: 28px 28px 0 0;
}
@media screen and (max-width: 768px) {
  .p-features__voice-process-flow-heading {
    border-radius: 14px 14px 0 0;
  }
}
.p-features__voice-process-flow-heading h4 {
  font-size: clamp(2rem, 1.15vw, 2.2rem);
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .p-features__voice-process-flow-heading h4 {
    font-size: clamp(1.6rem, 0.94vw, 1.8rem);
  }
}
.p-features__voice-gallery {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 4.6rem;
}
@media screen and (max-width: 768px) {
  .p-features__voice-gallery {
    flex-direction: column;
    align-items: center;
    margin-top: 1.5rem;
  }
}

/*
.%%%%%%...%%%%....%%%%...%%%%%%..%%......%%%%%%..%%%%%%..%%..%%.
.%%......%%..%%..%%..%%....%%....%%........%%......%%.....%%%%..
.%%%%....%%%%%%..%%........%%....%%........%%......%%......%%...
.%%......%%..%%..%%..%%....%%....%%........%%......%%......%%...
.%%......%%..%%...%%%%...%%%%%%..%%%%%%..%%%%%%....%%......%%...
................................................................
*/
.p-facility {
  /* ===================================
  * コンポーネント: 料金表
  * ===================================*/
}
.p-facility .l-container--small {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-facility .l-pricing-table-wrapper {
    overflow-x: scroll;
  }
}
.p-facility__top {
  padding-bottom: 2.5vh;
}
.p-facility__top .c-sec-ttl--lower-heading {
  line-height: 1.5;
}
.p-facility__top-text {
  position: relative;
  gap: clamp(2rem, 2.35vw, 4.5rem);
  margin: 5.4rem auto 15rem;
}
@media screen and (max-width: 1024px) {
  .p-facility__top-text {
    gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-facility__top-text {
    flex-direction: column;
    margin: 2.5rem auto 4.5rem;
  }
}
.p-facility__top-text p {
  font-size: clamp(1.5rem, 0.94vw, 1.8rem);
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .p-facility__top-text p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .p-facility__top-text p {
    font-size: 1.4rem;
  }
}
.p-facility__top-text:after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: 0;
  transform: translate(60%, 20%);
  width: 100%;
  max-width: 160px;
  height: 118px;
  background: url(../../img/facility/facility_top_bg.svg) no-repeat center;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .p-facility__top-text:after {
    transform: scale(0.7);
    transform-origin: center;
  }
}
@media screen and (max-width: 1024px) {
  .p-facility__top-text:after {
    transform: scale(1);
    transform-origin: inherit;
    right: 100px;
  }
}
@media screen and (max-width: 768px) {
  .p-facility__top-text:after {
    display: none;
  }
}
.p-facility__rooms {
  padding-top: 8vh;
}
@media screen and (max-width: 768px) {
  .p-facility__rooms {
    padding-bottom: 0;
  }
}
.p-facility__rooms-contents {
  margin-top: 4.5rem;
}
@media screen and (max-width: 1024px) {
  .p-facility__rooms-contents {
    margin-top: 2.5rem;
  }
}
.p-facility__rooms .l-flex {
  gap: 5.5rem 4vw;
  flex-wrap: wrap;
  margin-top: 5.5rem;
}
@media screen and (max-width: 768px) {
  .p-facility__rooms .l-flex {
    margin-top: 2.5rem;
    gap: 2.5rem 2rem;
  }
}
.p-facility__rooms .l-flex > div {
  width: 100%;
  max-width: calc(50% - 4vw);
}
.p-facility__schedule-contents {
  margin-top: 3.5rem;
}
.p-facility__schedule-text h3 {
  font-size: clamp(2.2rem, 1.25vw, 2.4rem);
  font-weight: bold;
  font-family: var(--font-serif);
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-facility__schedule-text h3 {
    font-size: 1.7rem;
  }
}
.p-facility__schedule-text p {
  font-size: clamp(1.6rem, 0.94vw, 1.8rem);
}
@media screen and (max-width: 768px) {
  .p-facility__schedule-text p {
    font-size: 1.4rem;
  }
}
.p-facility__schedule-image {
  margin: 4.7rem 0 12.2rem;
}
@media screen and (max-width: 768px) {
  .p-facility__schedule-image {
    width: 100%;
    max-width: 500px;
    margin: 2.5rem auto 4.7rem;
  }
}
.p-facility__schedule-yearly {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7.2rem 2rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-facility__schedule-yearly {
    gap: 2rem;
  }
}
.p-facility__schedule-yearly-item {
  width: 100%;
  max-width: 228px;
}
@media screen and (max-width: 768px) {
  .p-facility__schedule-yearly-item {
    max-width: calc(50% - 1rem);
  }
}
.p-facility__schedule-yearly li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-facility__schedule-yearly li {
    font-size: 1.2rem;
    padding: 0 0 0 1.5rem;
  }
}
.p-facility__schedule-yearly li img {
  margin-bottom: 1rem;
}
.p-facility__schedule-yearly li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  background-color: var(--color-primary, #19b59e);
  border-radius: 50%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  .p-facility__pricing {
    padding-bottom: 0;
  }
  .p-facility__pricing .c-sec-ttl--facility h2 {
    line-height: 1;
    padding: 1rem 0;
  }
  .p-facility__pricing .c-sec-ttl--facility h2 span {
    font-size: 1.1rem;
  }
  .p-facility__pricing .c-pricing-table--sp.u-show-sp768 {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}
.p-facility__pricing-caution {
  margin-top: 3.6rem;
  font-size: 1.6rem;
  line-height: 1.56;
}
.p-facility td,
.p-facility th {
  vertical-align: middle;
  text-align: center;
  font-size: clamp(1.4rem, 0.84vw, 1.6rem);
}
.p-facility .c-pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 6.6rem 0 0;
  background-color: var(--color-white);
  border: 1px solid var(--color-grey);
}
@media screen and (max-width: 768px) {
  .p-facility .c-pricing-table {
    margin: 1.5rem 0 0;
  }
}
.p-facility .c-pricing-table__header {
  background-color: #ffefde;
  border: 1px solid var(--color-grey);
  padding: 1rem;
  text-align: center;
  font-weight: bold;
  font-size: clamp(1.5rem, 0.89vw, 1.7rem);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-facility .c-pricing-table__header {
    font-size: 1.2rem;
  }
  .p-facility .c-pricing-table__header span {
    font-size: 1.5rem;
  }
}
.p-facility .c-pricing-table__cell {
  border: 1px solid var(--color-grey);
  padding: 0.8rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-facility .c-pricing-table__cell {
    font-size: 1.3rem;
    padding: 0.8rem;
  }
}
.p-facility .c-pricing-table__cell--merged {
  border-left: none;
  border-right: none;
}
.p-facility .c-pricing-table__cell--primary, .p-facility .c-pricing-table__cell--total {
  border: 1px solid var(--color-grey);
  font-weight: bold;
  background-color: #ffefde;
}
.p-facility .c-pricing-table__cell--total .c-pricing-table__price {
  color: #ff4141;
}
.p-facility .c-pricing-table__row-header {
  font-weight: bold;
  padding: 0.8rem 1rem;
  background-color: #ffefde;
  border-right: 1px solid var(--color-grey);
  border-bottom: 1px solid var(--color-grey);
  line-height: 1.47;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-facility .c-pricing-table__row-header {
    font-size: 1.2rem;
    text-align: left;
  }
}
.p-facility .c-pricing-table__price {
  color: var(--color-light-black);
}
.p-facility .c-pricing-table--sp img {
  width: 100%;
}
.p-facility__access-text {
  margin: 6.8vh 0 1.045vh;
}
@media screen and (max-width: 768px) {
  .p-facility__access-text {
    margin: 2.5rem 0;
  }
}
.p-facility__overview {
  padding-bottom: 23rem;
  /* ===================================
  * コンポーネント: 施設情報表
  * ===================================*/
}
@media screen and (max-width: 768px) {
  .p-facility__overview {
    padding-bottom: 10.5rem;
  }
}
.p-facility__overview .c-facility-table {
  width: 100%;
  border-collapse: collapse;
  margin: 7rem 0 0;
  background-color: var(--color-white);
  border: 1px solid var(--color-grey);
}
@media screen and (max-width: 768px) {
  .p-facility__overview .c-facility-table {
    margin-top: 2.4rem;
  }
}
.p-facility__overview .c-facility-table__header {
  background-color: #f8f5f0;
  border: 1px solid var(--color-grey);
  padding: 1.8rem 1rem;
  text-align: center;
  font-weight: bold;
  font-size: clamp(1.5rem, 0.89vw, 1.7rem);
  color: var(--color-light-black);
  width: 200px;
  vertical-align: middle;
  line-height: 1.47;
}
@media screen and (max-width: 768px) {
  .p-facility__overview .c-facility-table__header {
    width: 100px;
    vertical-align: top;
    line-height: 1.71;
    padding: 2.5rem 1rem;
  }
}
.p-facility__overview .c-facility-table__cell {
  border: 1px solid var(--color-grey);
  padding: 2.08vh 2.6vw;
  font-size: clamp(1.4rem, 0.84vw, 1.6rem);
  color: var(--color-light-black);
  vertical-align: middle;
  line-height: 1.6;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-facility__overview .c-facility-table__cell {
    padding: 1.3rem;
    font-size: 1.4rem;
  }
}
.p-facility__overview .c-facility-table__cell--multi-line {
  padding: 1.04vh 0;
}
.p-facility__overview .c-facility-table__cell--multi-line .c-facility-table__cell--multi-item {
  display: block;
  border-bottom: 1px solid var(--color-grey);
  padding: 0 2.6vw 1rem;
}
@media screen and (max-width: 768px) {
  .p-facility__overview .c-facility-table__cell--multi-line .c-facility-table__cell--multi-item {
    padding: 0 1.3rem 1rem;
  }
}
.p-facility__overview .c-facility-table__cell--multi-line .c-facility-table__cell--multi-item:last-child {
  border-bottom: none;
  padding: 1rem 2.6vw 0;
}
@media screen and (max-width: 768px) {
  .p-facility__overview .c-facility-table__cell--multi-line .c-facility-table__cell--multi-item:last-child {
    padding: 1rem 1.3rem 0;
  }
}
.p-facility__overview .c-facility-table__cell-special {
  font-weight: bold;
  color: #0066cc;
}
.p-facility__overview .c-facility-table__unit {
  font-size: 0.9em;
  color: #666;
}

/*
.%%%%%...%%%%%%...%%%%...%%%%%...%%..%%..%%%%%%..%%%%%%.
.%%..%%..%%......%%..%%..%%..%%..%%..%%....%%......%%...
.%%%%%...%%%%....%%......%%%%%...%%..%%....%%......%%...
.%%..%%..%%......%%..%%..%%..%%..%%..%%....%%......%%...
.%%..%%..%%%%%%...%%%%...%%..%%...%%%%...%%%%%%....%%...
........................................................
*/
.p-recruit .l-lower-fv {
  background-color: var(--color-light-blue);
}
.p-recruit__top {
  background-color: var(--color-light-blue);
}
.p-recruit__top .c-sec-ttl--lower {
  color: var(--color-blue);
}
.p-recruit__recruiting {
  margin-bottom: 10.5rem;
}
@media screen and (max-width: 768px) {
  .p-recruit__recruiting {
    margin-bottom: 7.2rem;
  }
}
.p-recruit__job-list {
  display: flex;
  gap: 2.5rem;
  margin-top: 10rem;
}
@media screen and (max-width: 1024px) {
  .p-recruit__job-list {
    flex-wrap: wrap;
    gap: 8rem 2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__job-list {
    flex-direction: column;
    align-items: center;
    gap: 6rem 2rem;
    width: 100%;
    max-width: 500px;
    margin: 6rem auto 0;
  }
}
.p-recruit__flow {
  background: url(../..//img/recruit/recruit_flow_bg.png) no-repeat center top;
  background-size: contain;
  position: relative;
  padding-bottom: 17rem;
}
@media screen and (max-width: 768px) {
  .p-recruit__flow {
    background: url(../..//img/recruit/recruit_flow_bg_sp.png) no-repeat center top;
    background-size: cover;
    padding-bottom: 6.6rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__flow {
    background-size: contain;
  }
}
.p-recruit__flow .l-container--small {
  margin: 0 auto;
}
.p-recruit__flow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 708px;
  height: 199px;
  background: url(../../img/common/abstract_bg_01.png) no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .p-recruit__flow::before {
    max-width: 293px;
    height: 70px;
    background: url(../../img/common/abstract_bg_01_sp.png) no-repeat center;
    background-size: contain;
  }
}
.p-recruit__flow::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 941px;
  height: 242px;
  background: url(../../img/common/abstract_bg_02.png) no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .p-recruit__flow::after {
    max-width: 293px;
    height: 70px;
    background: url(../../img/common/abstract_bg_02_sp.png) no-repeat center;
    background-size: contain;
  }
}
.p-recruit__flow .l-flex {
  flex-wrap: wrap;
  gap: 8.3rem 2rem;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-recruit__flow .l-flex {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.p-recruit__flow .l-flex > div {
  width: 100%;
  max-width: calc(50% - 1rem);
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 19px;
}
@media screen and (max-width: 768px) {
  .p-recruit__flow .l-flex > div {
    max-width: 100%;
  }
}
.p-recruit__flow .c-accordion__item {
  background-color: transparent;
}
.p-recruit__flow .c-accordion__header {
  justify-content: center;
  color: var(--color-white);
  position: relative;
  font-weight: bold;
  top: 6px;
}
.p-recruit__flow .c-accordion__header::after {
  width: 14px;
  height: 7px;
  top: 50%;
  right: 80px;
  transform: translateY(-50%);
  background: url(../../img/recruit/white_arrow_down.png) no-repeat center;
  background-size: contain;
}
.p-recruit__flow .c-accordion__header p {
  font-size: 1.7rem;
}
.p-recruit__flow .c-accordion__header.active:after {
  background: url(../../img/recruit/white_arrow_up.png) no-repeat center;
  background-size: contain !important;
}
.p-recruit__flow .c-accordion__header--early {
  background: linear-gradient(#fbf055 0%, #ffc130 1.26%, #ffaa34 100%, #ff893a 100%);
}
.p-recruit__flow .c-accordion__header--early .c-accordion__icon {
  max-width: 41px;
}
.p-recruit__flow .c-accordion__header--day {
  background: linear-gradient(#fc7438 0%, #fe993e 0%, #ff703a 100%);
}
.p-recruit__flow .c-accordion__header--day .c-accordion__icon {
  max-width: 34px;
}
.p-recruit__flow .c-accordion__header--late {
  background: linear-gradient(#01a1e8 0%, #347bde 37.66%, #306ed9 100%);
}
.p-recruit__flow .c-accordion__header--late .c-accordion__icon {
  max-width: 41px;
}
.p-recruit__flow .c-accordion__header--night {
  background: linear-gradient(#000 0%, #0000b5 100%);
}
.p-recruit__flow .c-accordion__header--night .c-accordion__icon {
  max-width: 28px;
}
.p-recruit__flow .c-accordion__icon {
  border-right: none;
  padding-right: 0;
}
.p-recruit__flow .c-accordion__content img {
  width: 100%;
}
.p-recruit__flow .c-accordion .c-accordion__header.active + .c-accordion__content {
  display: block;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .p-recruit__faq {
    padding-bottom: 10rem;
  }
  .p-recruit__faq .c-faq .c-border-ttl.first {
    padding-top: 3.7rem;
  }
}
.p-recruit__benefits .c-sec-ttl--lower {
  margin-bottom: 5.6rem;
}
@media screen and (max-width: 1024px) {
  .p-recruit__benefits .c-sec-ttl--lower {
    margin-bottom: 2rem;
  }
}
.p-recruit__benefits .l-flex {
  justify-content: center;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .p-recruit__benefits .l-flex {
    flex-direction: column;
    gap: 3rem;
  }
}
.p-recruit__benefits .l-flex > div {
  width: calc(50% - 1rem);
}
@media screen and (max-width: 768px) {
  .p-recruit__benefits .l-flex > div {
    width: 100%;
  }
}
.p-recruit__faq {
  background-color: var(--color-light-beige);
}
.p-recruit__faq .c-sec-ttl--lower {
  margin-bottom: 6rem;
}
@media screen and (max-width: 1280px) {
  .p-recruit__faq .c-sec-ttl--lower {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1024px) {
  .p-recruit__faq .c-sec-ttl--lower {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit__faq .c-sec-ttl--lower {
    margin-bottom: 0;
  }
}
.p-recruit__faq .c-accordion__header .c-accordion__icon {
  border-right: 5px solid var(--color-blue);
}
@media screen and (max-width: 768px) {
  .p-recruit__faq .c-accordion__header .c-accordion__icon {
    border-right: 3px solid var(--color-blue);
  }
}
.p-recruit__faq .c-accordion__header:after {
  background: url(../../img/faq/arrow_bottom_blue.svg) no-repeat center;
  background-size: contain;
}
.p-recruit__faq .c-accordion__header.active:after {
  background: url(../../img/faq/arrow_top_sky_blue.svg) no-repeat center;
  background-size: contain;
}
.p-recruit__faq .c-accordion__content .c-accordion__icon {
  border-right: 5px solid var(--color-sky-blue);
}

.c-job-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: var(--color-white);
  border-radius: 19px;
  padding: 7.3rem 2.3rem 3.7rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .c-job-card {
    width: 100%;
    max-width: calc(50% - 1rem);
    padding: 5rem 2.3rem 3.7rem;
  }
}
@media screen and (max-width: 768px) {
  .c-job-card {
    width: 100%;
    max-width: 100%;
  }
}
.c-job-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: clamp(80px, 5.52vw, 106px);
  aspect-ratio: 1/1;
  background-size: contain;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .c-job-card::before {
    max-width: 81px;
  }
}
.c-job-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: clamp(90px, 6.04vw, 116px);
  aspect-ratio: 1/1;
  background-size: contain;
  transform: translate(-50%, -50%);
  background-color: var(--color-white);
  z-index: 1;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .c-job-card::after {
    max-width: 91px;
  }
}
.c-job-card:first-child::before {
  background: url(../../img/recruit/recruiting_icon_01.png) no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .c-job-card:first-child::before {
    background: url(../../img/recruit/recruiting_icon_01_sp.png) no-repeat center;
    background-size: contain;
  }
}
.c-job-card:nth-child(2)::before {
  background: url(../../img/recruit/recruiting_icon_02.png) no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .c-job-card:nth-child(2)::before {
    background: url(../../img/recruit/recruiting_icon_02_sp.png) no-repeat center;
    background-size: contain;
  }
}
.c-job-card:last-child::before {
  background: url(../../img/recruit/recruiting_icon_03.png) no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .c-job-card:last-child::before {
    background: url(../../img/recruit/recruiting_icon_03_sp.png) no-repeat center;
    background-size: contain;
  }
}
.c-job-card__header {
  text-align: center;
}
.c-job-card__category {
  font-size: clamp(1.6rem, 0.99vw, 1.9rem);
  font-weight: bold;
}
.c-job-card__category--mid-career {
  color: var(--color-blue);
}
.c-job-card__category--new-graduate {
  color: var(--color-dark-green);
}
.c-job-card__title {
  font-size: clamp(2.5rem, 1.52vw, 2.9rem);
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .c-job-card__title {
    font-size: 2rem;
  }
}
.c-job-card__employment {
  font-size: 1.4rem;
}
.c-job-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.c-job-card__description {
  margin: 1.5rem 0 2.5rem;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .c-job-card__description {
    margin: 1.5rem 0;
  }
}
.c-job-card__image {
  text-align: center;
  margin-top: auto;
}
.c-job-card__image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.c-message-card {
  display: flex;
  justify-content: center;
  gap: 2vw;
  background-color: var(--color-white);
  border-radius: 19px;
  padding: 4rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .c-message-card {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .c-message-card:nth-child(2) {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 768px) {
  .c-message-card {
    padding: 2rem;
    width: 100%;
    max-width: 100%;
  }
}
.c-message-card__image {
  width: 100%;
  max-width: 339px;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-message-card__image {
    display: none;
  }
}
.c-message-card__image img {
  position: relative;
  z-index: 2;
}
.c-message-card__image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -30px;
  width: 82px;
  height: 72px;
  background: url(../../img/common/abstract_square_blue.png) no-repeat center;
  background-size: contain;
  z-index: 1;
}
.c-message-card--secondary .c-message-card__image::before {
  top: auto;
  left: auto;
  right: -30px;
  bottom: -25px;
  background: url(../../img/common/abstract_square_green.png) no-repeat center;
  background-size: contain;
  z-index: 3;
}
.c-message-card__content {
  flex: 1;
  max-width: 31.25vw;
}
@media screen and (max-width: 1024px) {
  .c-message-card__content {
    max-width: 650px;
  }
}
.c-message-card__title {
  font-size: clamp(1.8rem, 1.05vw, 2rem);
  font-weight: bold;
  color: var(--color-blue);
  margin-bottom: 1rem;
  padding-left: 2rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-message-card__title {
    font-size: 1.8rem;
    padding-left: 0;
    text-align: center;
    margin-bottom: 1.5rem;
  }
}
.c-message-card__description {
  width: 100%;
  max-width: 516px;
  border-radius: 17px;
  border: 2px solid var(--color-blue);
  padding: 0.8rem 1.5rem;
  position: relative;
  line-height: 1.47;
}
.c-message-card__description p {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .c-message-card__description p {
    font-size: 1.4rem;
    letter-spacing: normal;
  }
}
.c-message-card__description:before {
  content: "";
  position: absolute;
  bottom: 50%;
  left: 0;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  background-color: var(--color-white);
  rotate: 135deg;
  translate: -50%;
}
.c-message-card__description:after {
  content: "";
  position: absolute;
  bottom: 50%;
  left: 0;
  z-index: -1;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  border: 2px solid;
  border-color: transparent var(--color-blue) var(--color-blue) transparent;
  background-color: var(--color-white);
  rotate: 135deg;
  translate: -50%;
  z-index: 2;
}
.c-message-card__intro {
  display: flex;
  gap: 1.5rem;
  padding-left: 2rem;
}
@media screen and (max-width: 1024px) {
  .c-message-card__intro {
    padding-left: 0;
    align-items: center;
  }
}
.c-message-card__target {
  background-color: #e8eff8;
  padding: 2rem 2rem 1rem;
  margin-top: 3rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .c-message-card__target {
    padding: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .c-message-card__target {
    padding: 2.3rem 0;
  }
}
.c-message-card__target-title {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 0 1.5rem;
  font-size: clamp(1.4rem, 0.84vw, 1.6rem);
  line-height: 1.8;
  font-weight: 500;
  color: var(--color-white);
  background-color: var(--color-blue);
  transform: translateY(-50%);
  position: absolute;
  top: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c-message-card__target-title {
    max-width: 218px;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
  }
}
.c-message-card__target-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2rem;
}
@media screen and (max-width: 768px) {
  .c-message-card__target-list {
    width: 100%;
    max-width: -moz-fit-content;
    max-width: fit-content;
    flex-direction: column;
    margin: 0 auto;
  }
}
.c-message-card__target-list li {
  width: 100%;
  max-width: calc(50% - 1rem);
  line-height: 1.8;
  font-size: clamp(1.4rem, 0.84vw, 1.6rem);
}
@media screen and (max-width: 768px) {
  .c-message-card__target-list li {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
.c-message-card__target-list li span {
  color: var(--color-blue);
}
.c-message-card:nth-child(2) .c-message-card__title {
  color: var(--color-dark-green);
}
.c-message-card:nth-child(2) .c-message-card__description {
  border: 2px solid var(--color-dark-green);
}
.c-message-card:nth-child(2) .c-message-card__description:after {
  content: "";
  border-color: transparent var(--color-dark-green) var(--color-dark-green) transparent;
}
.c-message-card:nth-child(2) .c-message-card__target {
  background-color: #e7f8f5;
}
.c-message-card:nth-child(2) .c-message-card__target-list li span {
  color: var(--color-dark-green);
}
.c-message-card:nth-child(2) .c-message-card__target-title {
  background-color: var(--color-dark-green);
}

.c-work-schedule {
  width: 100%;
  margin: 0 auto;
  background-color: var(--color-white);
  padding: 1.5rem 1.5rem 2.2rem;
}
@media screen and (max-width: 768px) {
  .c-work-schedule {
    padding: 1rem 1rem 1.5rem;
  }
}
.c-work-schedule__overview {
  width: 100%;
  max-width: 33.4vw;
  margin: 0 auto 1rem;
  font-weight: bold;
  text-align: center;
  color: var(--color-blue);
  background-color: var(--color-light-blue);
}
@media screen and (max-width: 768px) {
  .c-work-schedule__overview {
    max-width: 100%;
  }
}
.c-work-schedule__overview p {
  font-size: 2.2rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .c-work-schedule__overview p {
    font-size: 1.7rem;
  }
}
.c-work-schedule__shift-list {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
.c-work-schedule__shift-item {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  line-height: 1.625;
}
@media screen and (max-width: 768px) {
  .c-work-schedule__shift-item {
    gap: 1rem;
    font-size: 1.4rem;
  }
}
.c-work-schedule__shift-label {
  width: 100%;
  max-width: 90px;
}
@media screen and (max-width: 768px) {
  .c-work-schedule__shift-label {
    max-width: 72px;
  }
}
.c-work-schedule__shift-time {
  text-align: left;
  width: 100%;
}
.c-work-schedule__note {
  text-align: center;
  margin-bottom: 8.7rem;
}
@media screen and (max-width: 768px) {
  .c-work-schedule__note {
    margin: 0.5rem 0 2.7rem;
  }
}
.c-work-schedule__note p {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-work-schedule__note p {
    font-size: 1.2rem;
  }
}

.c-employment-card {
  display: flex;
  flex-direction: column;
}
.c-employment-card__title {
  font-size: clamp(1.8rem, 1.05vw, 2rem);
  font-weight: bold;
  color: var(--color-white);
  padding: 0.7rem 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 768px) {
  .c-employment-card__title {
    font-size: 1.5rem;
  }
}
.c-employment-card__title--fulltime {
  background: var(--color-gradient-blue--left);
}
.c-employment-card__title--parttime {
  background: var(--color-dark-mint);
}
.c-employment-card__content {
  border: 1px solid var(--color-grey);
  padding: 4.5rem 2.5rem;
  flex: 1;
  line-height: 1.75;
  font-size: clamp(1.4rem, 0.84vw, 1.6rem);
}
@media screen and (max-width: 768px) {
  .c-employment-card__content {
    padding: 2rem;
  }
}
.c-employment-card__content p {
  font-size: clamp(1.4rem, 0.84vw, 1.6rem);
}

.c-benefit-item {
  display: flex;
  gap: 2rem;
  margin-top: 4.49vh;
}
@media screen and (max-width: 768px) {
  .c-benefit-item {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 2.5rem;
  }
}
.c-benefit-item:first-child {
  margin-top: 0;
}
.c-benefit-item--highlight {
  display: block;
}
.c-benefit-item--highlight .c-benefit-item__details {
  margin-left: 13.3rem;
}
@media screen and (max-width: 768px) {
  .c-benefit-item--highlight .c-benefit-item__details {
    margin-left: 0;
  }
}
.c-benefit-item__label {
  width: 100%;
  max-width: 113px;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  font-size: clamp(1.5rem, 0.89vw, 1.7rem);
  font-weight: bold;
  background-color: #E3E3E3;
}
@media screen and (max-width: 768px) {
  .c-benefit-item__label {
    max-width: -moz-fit-content;
    max-width: fit-content;
    padding: 0 1.5rem;
    font-size: 1.4rem;
  }
}
.c-benefit-item__label--highlight {
  width: 100%;
  max-width: 100%;
  text-align: left;
  background-color: #A3E1D8;
  margin-bottom: 3rem;
  padding-left: 1rem;
}
@media screen and (max-width: 768px) {
  .c-benefit-item__label--highlight {
    margin-bottom: 1rem;
  }
}
.c-benefit-item__main {
  font-size: clamp(2rem, 1.25vw, 2.4rem);
  line-height: 1.4;
  font-weight: bold;
  vertical-align: middle;
}
@media screen and (max-width: 1024px) {
  .c-benefit-item__main {
    font-size: 1.9rem;
  }
}
.c-benefit-item__note {
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .c-benefit-item__note {
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
}

.c-recruit-cta {
  padding-bottom: 13.8rem;
  background-color: var(--color-light-blue);
}
@media screen and (max-width: 768px) {
  .c-recruit-cta {
    padding-bottom: 9rem;
  }
}
.c-recruit-cta__flow {
  display: flex;
  gap: 3.5rem;
  margin: 8.8rem auto 7.3rem;
}
@media screen and (max-width: 768px) {
  .c-recruit-cta__flow {
    flex-direction: column;
    gap: 8rem;
    margin: 4.7rem auto 3.8rem;
  }
}
.c-recruit-cta__flow-item {
  width: 100%;
  max-width: 290px;
  border-radius: 19px;
  padding: 4rem 2.5rem 2.5rem;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .c-recruit-cta__flow-item {
    padding: 3.5rem 1.5rem 2rem;
  }
}
@media screen and (max-width: 1024px) {
  .c-recruit-cta__flow-item {
    padding: 3rem 2rem 2rem;
  }
}
@media screen and (max-width: 768px) {
  .c-recruit-cta__flow-item {
    margin: 0 auto;
  }
}
.c-recruit-cta__flow-item:last-child::after {
  display: none;
}
.c-recruit-cta__flow-item:after {
  content: "";
  position: absolute;
  bottom: 45%;
  right: -28px;
  width: 100%;
  max-width: 20px;
  height: 54px;
  background: url(../../img/recruit/recruit_flow_arrow_right.svg) no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .c-recruit-cta__flow-item:after {
    max-width: 54px;
    height: 20px;
    bottom: -5%;
    right: 50%;
    transform: translate(50%, 100%);
    background: url(../../img/recruit/recruit_flow_arrow_bottom.svg) no-repeat center;
    background-size: contain;
  }
}
.c-recruit-cta__flow-num {
  position: absolute;
  width: 60px;
  height: 61px;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-recruit-cta__flow-title {
  font-size: clamp(1.8rem, 1.05vw, 2rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--color-blue);
}
.c-recruit-cta__flow-image {
  margin-bottom: 1.6rem;
}
.c-recruit-cta__flow p {
  line-height: 1.5;
}
.c-recruit-cta__contact {
  width: 100%;
  max-width: 978px;
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
  border-radius: 19px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .c-recruit-cta__contact {
    padding-right: 3.33vw;
  }
}
@media screen and (max-width: 768px) {
  .c-recruit-cta__contact {
    flex-direction: column;
    padding-right: 0;
  }
}
.c-recruit-cta__contact-label {
  width: 100%;
  max-width: 248px;
  line-height: 1.47;
  font-weight: bold;
  background-color: var(--color-blue);
  color: var(--color-white);
  text-align: center;
  padding: 3.5rem 3rem 3.5rem 2rem;
  border-radius: 19px 0 152px 19px;
}
@media screen and (max-width: 768px) {
  .c-recruit-cta__contact-label {
    padding: 1rem;
    max-width: 100%;
    box-shadow: var(--shadow-default);
    max-width: 90%;
    padding: 0.7rem 0 0.7rem 2rem;
  }
}
.c-recruit-cta__contact-label p {
  font-size: clamp(1.6rem, 0.99vw, 1.9rem);
}
@media screen and (max-width: 768px) {
  .c-recruit-cta__contact-label p {
    font-size: 1.5rem;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
.c-recruit-cta__contact-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: clamp(3rem, 2.14vw, 4.1rem);
  font-weight: bold;
  font-family: var(--font-roboto);
  line-height: 1;
  flex: 1;
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.c-recruit-cta__contact-tel img {
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .c-recruit-cta__contact-tel img {
    max-width: 23px;
  }
}
.c-recruit-cta__contact-tel-label {
  text-align: center;
  font-size: clamp(1.6rem, 0.99vw, 1.9rem);
  font-weight: bold;
  color: var(--color-blue);
}
@media screen and (max-width: 768px) {
  .c-recruit-cta__contact-tel-label {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
}
.c-recruit-cta__contact-btn {
  width: 100%;
  flex: 1;
}
.c-recruit-cta__contact-actions {
  width: 100%;
  display: flex;
  gap: 2.6vw;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .c-recruit-cta__contact-actions {
    flex-direction: column;
    align-items: center;
    padding-bottom: 2.2rem;
  }
}

/*
.%%%%%%...%%%%....%%%%..
.%%......%%..%%..%%..%%.
.%%%%....%%%%%%..%%.%%%.
.%%......%%..%%..%%..%%.
.%%......%%..%%...%%%%%.
........................
*/
.p-faq__contents {
  padding: 14.83vh 0 12.53vh;
}
@media screen and (max-width: 768px) {
  .p-faq__contents {
    padding: 5.2rem 0 9rem;
  }
}

/*
.%%..%%..%%%%%%..%%...%%...%%%%..
.%%%.%%..%%......%%...%%..%%.....
.%%.%%%..%%%%....%%.%.%%...%%%%..
.%%..%%..%%......%%%%%%%......%%.
.%%..%%..%%%%%%...%%.%%....%%%%..
.................................
*/
.p-news--archive {
  padding-top: 4rem;
}
.p-news--archive .c-card {
  box-shadow: none;
}

.p-news--single {
  padding: 16.5vh 0 12.74vh;
}
@media screen and (max-width: 768px) {
  .p-news--single {
    padding: 5.8rem 0 10.5rem;
  }
}

.c-news-article__header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .c-news-article__header {
    margin: 3rem 0 1.2rem;
    gap: 1rem;
  }
}
.c-news-article__date {
  font-size: clamp(1.8rem, 1.05vw, 2rem);
  font-weight: 500;
  flex-shrink: 0;
  padding-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .c-news-article__date {
    font-size: 1.4rem;
    padding-top: 0;
  }
}
.c-news-article__meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 50.93vw;
}
.c-news-article__label {
  color: var(--color-dark-mint);
  border: 1px solid var(--color-dark-mint);
  padding: 0 2rem;
  font-size: clamp(1.6rem, 0.94vw, 1.8rem);
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .c-news-article__label {
    font-size: 1.2rem;
    padding: 0 1rem;
  }
}
.c-news-article__title {
  font-size: clamp(1.8rem, 1.05vw, 2rem);
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .c-news-article__title {
    font-size: 1.7rem;
  }
}
.c-news-article__content {
  width: 100%;
  max-width: 50.93vw;
  margin: 0 auto 6rem;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .c-news-article__content {
    max-width: 100%;
    margin-bottom: 8.5rem;
  }
}
.c-news-article__content p {
  margin-bottom: 2rem;
}
.c-news-article__content p:last-child {
  margin-bottom: 0;
}
.c-news-article__content h2,
.c-news-article__content h3,
.c-news-article__content h4 {
  margin: 3rem 0 1.5rem;
  font-weight: bold;
}
.c-news-article__content ul,
.c-news-article__content ol {
  margin: 2rem 0;
  padding-left: 2rem;
}
.c-news-article__content img {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
}
.c-news-article__footer {
  text-align: center;
}
.c-news-article__footer .c-btn--green {
  margin: 4rem auto 0;
}

/* 
..%%%%....%%%%...%%..%%..%%%%%%...%%%%....%%%%...%%%%%%.
.%%..%%..%%..%%..%%%.%%....%%....%%..%%..%%..%%....%%...
.%%......%%..%%..%%.%%%....%%....%%%%%%..%%........%%...
.%%..%%..%%..%%..%%..%%....%%....%%..%%..%%..%%....%%...
..%%%%....%%%%...%%..%%....%%....%%..%%...%%%%.....%%...
........................................................
*/
.p-contact__top {
  padding-bottom: 0;
}
.p-contact__form {
  padding-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-contact__form {
    background-color: #eef7e6;
    padding-top: 0;
  }
}
.p-contact__form-bg {
  position: relative;
  background-color: #eef7e6;
  padding: 6rem 11.25vw 16.8rem;
  border-radius: 0 0 28px 28px;
}
@media screen and (max-width: 768px) {
  .p-contact__form-bg {
    padding: 2.5rem 0 8.4rem;
    background-color: inherit;
  }
}
.p-contact__form-header h2 {
  font-size: clamp(2rem, 1.15vw, 2.2rem);
  padding: 0.5rem 0;
  margin-bottom: 2.6rem;
  font-weight: bold;
  color: var(--color-white);
  text-align: center;
  background: linear-gradient(to right, rgba(25, 181, 158, 0), rgb(25, 181, 158) 10%, rgb(25, 181, 158) 90%, rgba(25, 181, 158, 0));
}

.c-phone-contact {
  width: 100%;
  max-width: 796px;
  margin: 0 auto;
  border: 2px solid #19b59e;
  border-radius: 8px;
  padding: 6rem 0 4rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-phone-contact {
    border: none;
    padding-bottom: 3rem;
  }
  .c-phone-contact__facility {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.c-phone-contact__item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.c-phone-contact__item:last-child {
  margin-bottom: 0;
}
.c-phone-contact__header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  display: block;
  padding: 0 1rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .c-phone-contact__header {
    padding: 0;
  }
}
.c-phone-contact__header h2 {
  display: block;
  font-size: clamp(2rem, 1.15vw, 2.2rem);
  padding: 0.5rem 0;
  font-weight: bold;
  color: var(--color-white);
  text-align: center;
  background: linear-gradient(to right, rgba(25, 181, 158, 0), rgb(25, 181, 158) 10%, rgb(25, 181, 158) 90%, rgba(25, 181, 158, 0));
}
@media screen and (max-width: 768px) {
  .c-phone-contact__header h2 {
    position: inherit;
    width: 100%;
    font-size: 1.8rem;
  }
}
.c-phone-contact__facility-name {
  font-weight: bold;
  padding: 0 1rem;
  font-size: clamp(1.4rem, 0.84vw, 1.6rem);
}
@media screen and (max-width: 768px) {
  .c-phone-contact__facility-name {
    font-size: 1.2rem;
    padding: 0 0.5rem;
  }
}
.c-phone-contact__facility-text {
  font-size: clamp(2.2rem, 1.25vw, 2.4rem);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-phone-contact__facility-text {
    font-size: 1.8rem;
  }
}
.c-phone-contact__tel {
  font-size: clamp(3.5rem, 2.14vw, 4.1rem);
  font-weight: bold;
  font-family: var(--font-roboto);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-phone-contact__tel {
    font-size: 3rem;
  }
}
.c-phone-contact__tel-location {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-phone-contact__tel-location {
    display: block;
    text-align: center;
    font-size: 1.3rem;
    line-height: 1;
  }
}

.c-contact-form {
  max-width: 810px;
  margin: 6rem auto 0;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .c-contact-form {
    padding: 0;
    margin: 2rem auto 0;
  }
}
.c-contact-form__field {
  margin-bottom: 3.7rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .c-contact-form__field {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }
}
.c-contact-form__field:last-child {
  margin-bottom: 0;
}
.c-contact-form__label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #333;
  min-width: 145px;
  flex-shrink: 0;
}
.c-contact-form__required {
  font-size: 0.9rem;
  color: #ff2121;
  margin-left: 0.25rem;
  vertical-align: top;
}
.c-contact-form__radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
@media screen and (max-width: 1024px) {
  .c-contact-form__radio-group {
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .c-contact-form__radio-group {
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0;
  }
}
.c-contact-form__radio-group .c-contact-form__radio-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.c-contact-form__radio-group .c-contact-form__radio-item .c-contact-form__radio {
  margin: 0;
}
.c-contact-form__radio-group .c-contact-form__radio-item .c-contact-form__radio-label {
  font-weight: normal;
  margin: 0;
  cursor: pointer;
}
.c-contact-form__input-wrapper {
  flex: 1;
}
.c-contact-form .wpcf7-form-control-wrap {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-contact-form .wpcf7-list-item {
    width: calc(50% - 1rem);
    margin: 0;
    font-size: 1.5rem;
  }
}
.c-contact-form .wpcf7-list-item.first {
  margin-left: 0;
}
.c-contact-form__input, .c-contact-form__textarea {
  width: 100%;
  padding: 1.3rem;
  border: 2px solid #c4c4c4;
  border-radius: 4px;
  font-size: 1.6rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .c-contact-form__input, .c-contact-form__textarea {
    font-size: 1.4rem;
  }
}
.c-contact-form__input:focus, .c-contact-form__textarea:focus {
  outline: none;
  border-color: #c4c4c4;
}
.c-contact-form__textarea {
  min-height: 200px;
  font-family: inherit;
  resize: vertical;
}
.c-contact-form__privacy {
  text-align: center;
  margin: 2rem 0 2rem;
  padding-right: 2rem;
}
@media screen and (max-width: 768px) {
  .c-contact-form__privacy {
    padding-right: 0;
  }
}
.c-contact-form__privacy-link {
  color: var(--color-blue);
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .c-contact-form__privacy-link {
    font-size: 1.5rem;
  }
}
.c-contact-form__privacy-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0 5.7rem;
}
.c-contact-form__privacy-check .wpcf7-form-control-wrap {
  width: -moz-fit-content;
  width: fit-content;
}
.c-contact-form__privacy-check .wpcf7-list-item {
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .c-contact-form__privacy-check {
    text-align: center;
  }
}
.c-contact-form__checkbox {
  margin: 0;
}
.c-contact-form__checkbox-label {
  font-weight: normal;
  margin: 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .c-contact-form__checkbox-label {
    font-size: 1.5rem;
  }
}
.c-contact-form__submit-btn {
  display: block;
  width: 290px;
  border: none;
  padding: 1.5rem 2.5rem;
  font-size: clamp(1.6rem, 0.94vw, 1.8rem);
  font-weight: bold;
  border-radius: 65px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  gap: 0.5rem;
  position: relative;
  box-shadow: var(--shadow-default);
  margin: 0 auto;
  background: var(--color-gradient-green--right);
  color: var(--color-white);
  position: relative;
}
.c-contact-form__submit-btn:after {
  content: "";
  position: absolute;
  background: url(../../img/common/arrow_white_right.svg) no-repeat center;
  background-size: contain;
  width: 100%;
  height: 100%;
  max-width: 40px;
  aspect-ratio: 1/1;
  right: 1rem;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .c-contact-form__submit-btn:after {
    max-width: 34px;
  }
}
@media (any-hover: hover) {
  .c-contact-form__submit-btn:hover {
    color: var(--color-mint);
    background: var(--color-white) !important;
    opacity: 1;
  }
  .c-contact-form__submit-btn:hover:before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--color-gradient-mint);
    border-radius: 68px;
    z-index: -1;
    opacity: 1;
  }
}
.c-contact-form__submit-btn:after {
  content: "";
  position: absolute;
  background: url(../../img/common/arrow_white_right.svg) no-repeat center;
  background-size: contain;
  width: 100%;
  height: 100%;
  max-width: 40px;
  aspect-ratio: 1/1;
  right: 1rem;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .c-contact-form__submit-btn:after {
    max-width: 34px;
  }
}
@media (any-hover: hover) {
  .c-contact-form__submit-btn:hover {
    color: var(--color-mint);
    background: var(--color-white) !important;
    opacity: 1;
  }
  .c-contact-form__submit-btn:hover:before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--color-gradient-green--right);
    border-radius: 68px;
    z-index: -1;
    opacity: 1;
  }
  .c-contact-form__submit-btn:hover:after {
    background: url(../../img/common/arrow_mint.svg) no-repeat center;
    background-size: contain;
  }
}

/* 
.%%%%%....%%%%...%%......%%%%%%...%%%%...%%..%%.
.%%..%%..%%..%%..%%........%%....%%..%%...%%%%..
.%%%%%...%%..%%..%%........%%....%%........%%...
.%%......%%..%%..%%........%%....%%..%%....%%...
.%%.......%%%%...%%%%%%..%%%%%%...%%%%.....%%...
................................................
*/
.p-privacy-policy__contents {
  padding: 11.89vh 0 10.46vh;
}
@media screen and (max-width: 768px) {
  .p-privacy-policy__contents {
    padding: 10rem 0 9rem;
  }
}
.p-privacy-policy .l-lower-fv__ttl {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  margin-bottom: 11.7vh;
}
@media screen and (max-width: 768px) {
  .p-privacy-policy .l-lower-fv__ttl {
    margin-bottom: 4rem;
  }
}
.p-privacy-policy .l-lower-fv__ttl h1 {
  color: var(--color-black);
}
.p-privacy-policy__block {
  margin-bottom: 7vh;
}
@media screen and (max-width: 768px) {
  .p-privacy-policy__block {
    margin-bottom: 4rem;
  }
}
.p-privacy-policy__block--first {
  margin-bottom: 12.3vh;
}
@media screen and (max-width: 768px) {
  .p-privacy-policy__block--first {
    margin-bottom: 7rem;
  }
}
.p-privacy-policy__block-ttl {
  font-size: clamp(2rem, 1.15vw, 2.2rem);
  font-weight: bold;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--color-grey);
}
@media screen and (max-width: 768px) {
  .p-privacy-policy__block-ttl {
    font-size: 1.8rem;
  }
}/*# sourceMappingURL=style.css.map */