@charset "UTF-8";
/*
==============================
  アバンツァーレスポーツ
  メインスタイルシート
==============================
*/
/*
==============================
  Variables
  プロジェクト全体で使用する変数
==============================
*/
/*
==============================
  Mixins
  プロジェクト全体で使用するミックスイン
==============================
*/
/*
==============================
  Reset
  ブラウザのデフォルトスタイルをリセット
==============================
*/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
* {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
/* Additional reset styles */
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Fix for IE */
main {
  display: block;
}

/* Remove default button styles */
button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* Remove default fieldset styles */
fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

/* Remove default legend styles */
legend {
  padding: 0;
}

/*
==============================
  Base
  基本的なHTMLタグのスタイル定義
==============================
*/
html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #102448;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #ffffff;
  background-image: url("../images/common/bg-texture.jpg");
  background-repeat: repeat;
  background-size: auto;
  background-attachment: fixed;
  background-position: center;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.25rem;
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-size: 1.875rem;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  h3 {
    font-size: 2rem;
  }
}

h4 {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

small {
  font-size: 0.875rem;
}

a {
  color: #102448;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.8;
}

ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

ul {
  list-style-type: none;
}

ol {
  list-style-type: none;
}

li {
  margin-bottom: 0.25rem;
}
li:last-child {
  margin-bottom: 0;
}

blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid #11c1d3;
  background-color: #f4f4f2;
  font-style: italic;
}
blockquote p:last-child {
  margin-bottom: 0;
}
blockquote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-style: normal;
  color: #11c1d3;
}
blockquote cite::before {
  content: "— ";
}

code {
  font-family: "Consolas", "Monaco", "Courier New", monospace;
  font-size: 0.9em;
  padding: 2px 4px;
  background-color: #f4f4f2;
  border-radius: 4px;
}

pre {
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: #f4f4f2;
  border-radius: 8px;
  overflow-x: auto;
}
pre code {
  padding: 0;
  background-color: transparent;
}

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

figure img {
  width: 100%;
}
figure figcaption {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #102448;
  text-align: center;
}

/*
 * clip-pathなどの定義用で、画面に表示する必要のないSVGを隠す
 * レイアウトに影響を与えないようにする
 */
svg[width="0"][height="0"] {
  position: absolute;
  overflow: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

th,
td {
  padding: 0.5rem 1rem;
  text-align: left;
  border-bottom: 1px solid #f4f4f2;
}

th {
  font-weight: 700;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ==================================================
   ヘッダーのスタイル
   ================================================== */
.l-header {
  position: relative;
  padding: 3rem 0 0 0;
}
.l-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 237px;
  aspect-ratio: 1480/237;
  background-image: url("../images/common/header-wave-bg.svg");
  background-position: center top;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 1;
}
.l-header__container {
  position: relative;
  margin: 0 auto;
  padding: 0 6rem 0 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 10;
}
@media (max-width: 768px) {
  .l-header__container {
    padding: 1rem 1rem 0 1rem;
  }
}
.l-header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.l-header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
}
.l-header__nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 90%;
  max-width: 400px;
  height: 90vh;
  min-height: 640px;
  background-color: #ffffff;
  padding: 8rem 3rem;
  border-radius: 0 0 0 3rem;
  z-index: 901;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.l-header__nav.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (max-width: 768px) {
  .l-header__nav {
    padding: 6rem 2rem 2rem;
    height: 100vh;
    border-radius: 0;
  }
}
.l-header__nav-list {
  font-family: "Kiwi Maru", "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
}
.l-header__nav-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  width: 100%;
  max-width: 270px;
}
.l-header__nav-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
}
.l-header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 193, 211, 0.4);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.l-header__overlay.is-active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .l-header {
    padding: 0.5rem 0;
  }
  .l-header__actions {
    display: none;
  }
}
body.is-nav-active .l-header__nav {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
body.is-nav-active .l-header__overlay {
  opacity: 1;
  visibility: visible;
}

/* ==================================================
   コンテナレイアウト
   ================================================== */
.l-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .l-container {
    padding: 0 1rem;
  }
}
.l-container--wide {
  max-width: 1400px;
}
.l-container--narrow {
  max-width: 800px;
}
.l-container--full {
  max-width: none;
}

/* ==================================================
   フッターのスタイル
   ================================================== */
.l-footer {
  padding: 16rem 0 30px;
}
@media (max-width: 768px) {
  .l-footer {
    padding: 9rem 0 30px;
  }
}
.l-footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  padding-bottom: 40px;
  grid-template-areas: "logo   nav     nav" "logo   actions actions";
}
@media (max-width: 1200px) {
  .l-footer__main {
    grid-template-columns: 1.25fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .l-footer__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
}
.l-footer__info {
  grid-area: logo;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
}
.l-footer__info-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-footer__info .l-footer__logo {
  display: block;
  max-width: 250px;
  margin-bottom: 20px;
}
.l-footer__info .l-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.l-footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column: 2/4;
  gap: 20px;
  grid-area: nav;
}
@media (max-width: 768px) {
  .l-footer__nav {
    display: none;
  }
}
.l-footer__nav-list {
  color: #102448;
  font-size: 1.125rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-footer__nav-item {
  position: relative;
  z-index: 5;
}
.l-footer__nav-item:not(:last-child) {
  margin-bottom: 1em;
}
.l-footer__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  grid-area: actions;
}
@media (max-width: 768px) {
  .l-footer__actions {
    display: none;
  }
}
.l-footer__bottom {
  font-size: clamp(0.75rem, 2.5vw, 0.875rem);
  padding-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .l-footer__bottom {
    padding-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
  }
}

/* ==========================
  wave
========================== */
/* ==================================================
   ボタンコンポーネント
   ================================================== */
@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
  25% {
    -webkit-transform: translateY(-4px) scale(1);
            transform: translateY(-4px) scale(1);
  }
  50% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
  75% {
    -webkit-transform: translateY(-2px) scale(1);
            transform: translateY(-2px) scale(1);
  }
}
@keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
  25% {
    -webkit-transform: translateY(-4px) scale(1);
            transform: translateY(-4px) scale(1);
  }
  50% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
  75% {
    -webkit-transform: translateY(-2px) scale(1);
            transform: translateY(-2px) scale(1);
  }
}
.c-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 1rem 0.5rem 1.5rem;
  border: none;
  border-radius: 24px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  -webkit-transition: -webkit-filter 0.3s ease-in-out;
  transition: -webkit-filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
}
.c-button:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}
.c-button .c-button__text {
  font-family: "Kiwi Maru", "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 500;
  line-height: 1.6;
}
.c-button .c-button__icon {
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-button:hover .c-button__icon {
  -webkit-animation: bounce 0.6s ease-in-out;
          animation: bounce 0.6s ease-in-out;
}
.c-button--primary-gradient {
  background: -webkit-gradient(linear, left top, right top, from(#ed851d), to(#f26e14));
  background: linear-gradient(90deg, #ed851d, #f26e14);
  color: #f9f8dc;
}
.c-button--secondary-gradient {
  background: -webkit-gradient(linear, left top, right top, from(#11c1d3), to(#7ad34a));
  background: linear-gradient(90deg, #11c1d3, #7ad34a);
  color: #f9f8dc;
}
.c-button--primary-fill {
  background-color: #11c1d3;
  color: #ffffff;
}
.c-button--secondary-fill {
  background-color: #ffffff;
  color: #11c1d3;
}
.c-button--secondary-fill .c-button__icon {
  background-color: #11c1d3;
}
.c-button--tertiary {
  background-color: #ffffff;
  border: 2px solid #11c1d3;
  color: #11c1d3;
  padding: 0.5rem 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-button--cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 100%;
  max-width: 500px;
  z-index: 500;
  background: -webkit-gradient(linear, left top, right top, from(#ed851d), to(#f26e14));
  background: linear-gradient(90deg, #ed851d, #f26e14);
  color: #f9f8dc;
  border-radius: 48px;
  padding: 1rem 1.5rem 1rem 2rem;
  gap: 1.5rem;
  border: 6px solid #f9f8dc;
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, filter 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, filter 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.c-button--cta:hover {
  opacity: 1;
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}
.c-button--cta.is-hidden {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  .c-button--cta {
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
    width: 100%;
    padding: 1rem;
    gap: 1rem;
  }
  .c-button--cta.is-hidden {
    -webkit-transform: translateX(-50%) translateY(20px);
            transform: translateX(-50%) translateY(20px);
  }
}
.c-button--cta .c-button__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.5rem;
  width: 380px;
}
@media (max-width: 768px) {
  .c-button--cta .c-button__text {
    gap: 1rem;
  }
}
.c-button--cta .c-button__text-main {
  font-size: clamp(0.75rem, 0.25rem + 2vw, 0.875rem);
  line-height: 1.25;
  text-align: left;
  color: #ffffff;
}
.c-button--cta .c-button__text-action {
  font-size: clamp(1.125rem, 0.75rem + 2vw, 1.5rem);
}
.c-button--cta .c-button__icon {
  width: 16px;
  height: 16px;
}
.c-button--line {
  background-color: #ffffff;
  color: #11c1d3;
}
.c-button--line .c-button__text-brand {
  font-family: "Arial", sans-serif;
  font-weight: 700;
}
.c-button--line .c-button__icon {
  background-color: #11c1d3;
}
.c-button--instagram {
  background-color: #11c1d3;
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-button--instagram .c-button__instagram-icon {
  position: relative;
  top: 1px;
  font-size: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* ==================================================
   アイコンコンポーネント
   ================================================== */
.c-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 28px;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-icon:hover {
  opacity: 0.8;
}
.c-icon--instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.c-icon--line {
  background-color: #06c755;
}
.c-icon--line img {
  width: 30px;
}

/* ==================================================
   ハンバーガーメニューコンポーネント
   ================================================== */
.c-hamburger {
  position: fixed;
  top: 2rem;
  right: 0;
  z-index: 902;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2rem;
  gap: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .c-hamburger {
    top: 0;
  }
}
.c-hamburger:hover {
  opacity: 0.8;
}
.c-hamburger::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 55%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transform-origin: 50% 70%;
          transform-origin: 50% 70%;
  width: 132px;
  height: 132px;
  background-color: #11c1d3;
  border-radius: 50%;
  z-index: -1;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.c-hamburger[aria-expanded=true]::before {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.c-hamburger[aria-expanded=true] .c-hamburger__line:first-child {
  background-color: #ffffff;
  -webkit-transform: translateY(4.5px) rotate(20deg);
          transform: translateY(4.5px) rotate(20deg);
}
.c-hamburger[aria-expanded=true] .c-hamburger__line:last-child {
  background-color: #ffffff;
  -webkit-transform: translateY(-4.5px) rotate(-20deg);
          transform: translateY(-4.5px) rotate(-20deg);
}
.c-hamburger__line {
  width: 38px;
  height: 1px;
  background-color: #102448;
  border-radius: 1px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}

/*
body.is-nav-active{
  .c-hamburger{
    top: 0rem;
}
}*/
/* ==================================================
   ロゴコンポーネント
   ================================================== */
.c-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-logo__main {
  width: clamp(160px, 27vw, 250px);
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 375px) {
  .c-logo__main {
    width: clamp(100px, 33vw, 250px);
  }
}
.c-logo__secondary {
  width: clamp(80px, 15vw, 170px);
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .c-logo--footer .c-logo__main {
    width: 70%;
  }
  .c-logo--footer .c-logo__secondary {
    width: 50%;
  }
}
.c-logo:hover {
  opacity: 0.8;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

/* ==================================================
   カードコンポーネント
   ================================================== */
.c-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
}
.c-card__content {
  padding: 0 2rem;
}
.c-card__title {
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 1.875rem);
  font-weight: 500;
  font-family: "Kiwi Maru", "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  color: #102448;
  margin-bottom: 0;
}
.c-card__title + .c-card__text {
  margin-top: 1.5rem;
}
.c-card__subtitle {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 500;
  font-family: "Kiwi Maru", "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  color: #102448;
}
.c-card__text {
  font-size: clamp(0.95rem, 1vw + 0.8rem, 1rem);
  line-height: 2;
  margin-bottom: 1rem;
}
.c-card__text:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .c-card__text {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .c-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .c-card__image {
    width: 40%;
    margin: 0 auto;
  }
  .c-card__content {
    padding: 0;
    text-align: center;
  }
}

/* ==================================================
   カード画像ボックスコンポーネント
   ================================================== */
.c-image-box {
  position: relative;
  width: 100%;
  aspect-ratio: var(--aspect-ratio, 1/1);
  border-radius: 4rem;
  z-index: 2;
  overflow: hidden;
}
.c-image-box__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-image-box-wrapper {
  position: relative;
}
.c-image-box-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4rem;
  background: #ffffff;
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  z-index: 1;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.5s;
  transition: -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.5s;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.5s;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.5s, -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.5s;
}
@media (max-width: 768px) {
  .c-image-box-wrapper::before {
    border-radius: 2rem;
  }
}
.c-image-box-wrapper.is-animated::before {
  -webkit-transform: rotate(4deg);
          transform: rotate(4deg);
}
.c-image-box-wrapper--yellow::before {
  background: rgba(220, 226, 47, 0.3);
}
@media (max-width: 768px) {
  .c-image-box {
    border-radius: 2rem;
  }
}

/* ==================================================
   セクションタイトルコンポーネント
   ================================================== */
.c-section-heading__ja {
  font-size: clamp(1rem, 0.5rem + 1.5vw, 1.875rem);
  font-weight: 500;
  font-family: "Kiwi Maru", "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  color: #102448;
  line-height: 1.25;
  letter-spacing: 0.2em;
}
.c-section-heading__en-img {
  height: clamp(70px, 20vw, 170px);
}
.c-section-heading--vertical {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  .c-section-heading--vertical {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
}
.c-section-heading--vertical .c-section-heading__ja {
  position: relative;
  left: clamp(5px, 1vw, 10px);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media (max-width: 768px) {
  .c-section-heading--vertical .c-section-heading__ja {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
}
.c-section-heading--slanted {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  .c-section-heading--slanted {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
}
.c-section-heading--slanted .c-section-heading__en-img {
  -webkit-transform: rotate(-6deg);
          transform: rotate(-6deg);
}
@media (max-width: 768px) {
  .c-section-heading--slanted .c-section-heading__en-img {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.c-section-heading--slanted .c-section-heading__ja {
  position: relative;
  left: clamp(5px, 1vw, 10px);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media (max-width: 768px) {
  .c-section-heading--slanted .c-section-heading__ja {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
}
.c-section-heading--inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-section-heading--center {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-section-heading--center .c-section-heading__ja {
  position: relative;
  z-index: 2;
  margin-top: -1.5rem;
}
@media (max-width: 768px) {
  .c-section-heading--center .c-section-heading__ja {
    margin-top: -1em;
  }
}
.c-section-heading--center .c-section-heading__en-img {
  position: relative;
  z-index: 2;
}
.c-section-heading--center .c-section-heading__deco {
  position: absolute;
  z-index: 1;
  background: url("../images/common/deco-blob-lightgreen.png") no-repeat center/contain;
  width: 287px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0.3;
  margin-left: 10px;
}
@media (max-width: 768px) {
  .c-section-heading--center .c-section-heading__deco {
    width: 46%;
    max-width: 200px;
  }
}

/* ==================================================
   スタッフ紹介カードコンポーネント
   ================================================== */
.c-staff-card {
  position: relative;
}
.c-staff-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 3rem;
  z-index: 1;
}
@media (max-width: 768px) {
  .c-staff-card::before {
    border-radius: 2rem;
  }
}
.c-staff-card__figure {
  position: relative;
  width: 100%;
  aspect-ratio: 300/430;
  border-radius: 3rem;
  z-index: 2;
  overflow: hidden;
}
@media (max-width: 768px) {
  .c-staff-card__figure {
    border-radius: 2rem;
  }
}
.c-staff-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-staff-card__content {
  position: absolute;
  top: -20px;
  left: -30px;
  padding: 1rem 0.5rem;
  background-color: #ffffff;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .c-staff-card__content {
    left: -40px;
    top: -30px;
    padding: 1rem 0.5rem;
  }
}
.c-staff-card__text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: "Kiwi Maru", "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.25;
  height: clamp(200px, 33vw, 350px);
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .c-staff-card__text {
    height: clamp(225px, 37vw, 400px);
  }
}
.c-staff-card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 5px;
}
.c-staff-card__tag {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  display: inline-block;
  padding: 0.25rem 0 0.5rem;
  background-color: #ffffff;
  color: #102448;
  border: 1px solid #102448;
  border-radius: 1rem;
  font-family: "Kiwi Maru", "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 500;
}
.c-staff-card__button {
  position: absolute;
  bottom: 30px;
  right: -20px;
  z-index: 4;
  width: 100%;
  max-width: 350px;
  min-width: 315px;
  text-align: center;
  background-color: #ffffff;
  border-radius: 24px;
}
@media (max-width: 1200px) {
  .c-staff-card__button {
    min-width: 200px;
    border-radius: 10rem;
  }
}
@media (max-width: 768px) {
  .c-staff-card__button {
    bottom: 5px;
    right: -40px;
  }
}
.c-staff-card__button .c-button {
  border-radius: 24px;
}
@media (max-width: 1200px) {
  .c-staff-card__button .c-button {
    line-height: 1;
    border-radius: 10rem;
  }
}
.c-staff-card__button .c-button__text {
  text-align: left;
}
@media (max-width: 1200px) {
  .c-staff-card__button .c-button__text {
    line-height: 1.2;
  }
}

/* ==================================================
   コンテンツ説明コンポーネント
   ================================================== */
.c-content-description__heading {
  position: relative;
  z-index: 5;
}
.c-content-description__content {
  position: relative;
  z-index: 5;
}
.c-content-description__text {
  font-size: clamp(0.95rem, 1vw + 0.8rem, 1rem);
  line-height: 2;
  max-width: 700px;
  text-align: center;
  padding-top: clamp(1.5rem, 2vw + 1rem, 3rem);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .c-content-description__text {
    text-align: left;
  }
}

/* ==================================================
   CTAセクションコンポーネント
   ================================================== */
.c-cta {
  position: relative;
  background-color: #11c1d3;
  background-image: url("../images/common/bg-texture-blue.jpg");
  background-size: cover;
  padding: 4rem 0 6rem;
  border-radius: 4rem;
  margin-top: -4rem;
  overflow: hidden;
  z-index: 5;
  isolation: isolate;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
@media (max-width: 768px) {
  .c-cta {
    border-radius: 2.5rem;
    padding: 4rem 0 8rem;
  }
}
.c-cta__bg-image {
  position: absolute;
  background-repeat: no-repeat;
  mix-blend-mode: luminosity;
  z-index: 1;
}
@media (min-width: 769px) {
  .c-cta__bg-image--left {
    background-image: url("../images/common/recruit-bg-left.png");
    background-size: cover;
    background-position: right top;
    width: 25%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .c-cta__bg-image--right {
    background-image: url("../images/common/recruit-bg-right.png");
    background-size: cover;
    background-position: left top;
    width: 25%;
    height: 100%;
    top: 0;
    right: 0;
  }
}
@media (max-width: 768px) {
  .c-cta__bg-image--left {
    background-image: url("../images/common/recruit-bg-top.png");
    background-size: cover;
    background-position: bottom;
    width: 100%;
    height: clamp(20%, 40vw, 40%);
    top: 0;
    left: 0;
  }
  .c-cta__bg-image--right {
    background-image: url("../images/common/recruit-bg-bottom.png");
    background-size: cover;
    background-position: top;
    width: 100%;
    height: clamp(20%, 40vw, 40%);
    bottom: 0;
    left: 0;
  }
}
.c-cta__container {
  position: relative;
  z-index: 7;
  color: #ffffff;
  text-align: center;
}
.c-cta__title {
  display: inline-block;
}
.c-cta__title img {
  max-width: 250px;
  height: auto;
}
.c-cta__subtitle {
  font-family: "Kiwi Maru", "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  font-weight: 500;
  margin-bottom: clamp(1.5rem, 5vw, 2rem);
}
.c-cta__body {
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  line-height: 1.8;
}
.c-cta__body p:not(:last-child) {
  margin-bottom: clamp(0.5em, 2.5vw, 1em);
}
.c-cta__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  .c-cta__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-cta__button-wrapper {
  width: 100%;
  max-width: 350px;
  background-color: #ffffff;
  border-radius: 24px;
}
.c-cta.slide-in-img::before {
  z-index: 7;
}
.c-cta.slide-in-img .c-cta__bg-image.slide-in-img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.c-cta.slide-in-img .c-cta__bg-image.slide-in-img.is-visible {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* ==================================================
   インスタグラムフィードコンポーネント
   ================================================== */
.c-instagram {
  position: relative;
  padding: 14rem 0 1rem;
  text-align: center;
  background-color: #ffffff;
  margin-top: -4rem;
  margin-bottom: 10rem;
  z-index: 1;
}
@media (max-width: 1600px) {
  .c-instagram {
    margin-bottom: 6rem;
  }
}
@media (max-width: 992px) {
  .c-instagram {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .c-instagram {
    padding: 8rem 0 1rem;
  }
}
.c-instagram::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  width: 100%;
  background-image: url("../images/common/insta-wave-bg.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  aspect-ratio: 1485/384;
}
@media (max-width: 768px) {
  .c-instagram::after {
    aspect-ratio: 802/207;
    background-image: url("../images/common/insta-wave-bg-sp.svg");
  }
}
.c-instagram__deco-blob {
  position: absolute;
}
.c-instagram__deco-blob--01 {
  width: 25%;
  top: 14%;
  left: 13%;
  -webkit-transform: rotate(276deg);
          transform: rotate(276deg);
  z-index: 0;
}
@media (max-width: 768px) {
  .c-instagram__deco-blob--01 {
    width: 40%;
    top: 8%;
    left: 8%;
  }
}
.c-instagram__deco-blob--02 {
  width: 15%;
  bottom: -35%;
  right: 2%;
  z-index: 1;
}
@media (max-width: 1600px) {
  .c-instagram__deco-blob--02 {
    width: 17%;
    bottom: -24%;
  }
}
@media (max-width: 992px) {
  .c-instagram__deco-blob--02 {
    bottom: -21%;
  }
}
@media (max-width: 768px) {
  .c-instagram__deco-blob--02 {
    width: 23%;
    bottom: -24%;
  }
}
@media (max-width: 576px) {
  .c-instagram__deco-blob--02 {
    width: 33%;
    bottom: -11%;
  }
}
.c-instagram__title {
  position: relative;
  z-index: 2;
  font-size: clamp(1.25rem, 5vw, 1.875rem);
  font-weight: 500;
  font-family: "Kiwi Maru", "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  color: #102448;
  margin-bottom: 2rem;
}
.c-instagram__grid {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  display: grid;
  max-width: 1200px;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  z-index: 2;
}
@media (max-width: 576px) {
  .c-instagram__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-instagram__item {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.c-instagram__item a {
  display: block;
  width: 100%;
  height: 100%;
}
.c-instagram__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.c-instagram__item:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
@media (max-width: 576px) {
  .c-instagram__item:nth-child(n+7) {
    display: none;
  }
}
.c-instagram__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-instagram__button-wrapper {
  width: 100%;
  max-width: 350px;
  background-color: #ffffff;
  border-radius: 24px;
}
.c-instagram__button-wrapper .c-button--instagram {
  height: 100%;
}

/* ==================================================
   ページヘッダーコンポーネント
   ================================================== */
.c-page-hero {
  position: relative;
  padding-top: 12vh;
}
@media (max-width: 768px) {
  .c-page-hero {
    padding-top: 0;
  }
}
.c-page-hero__deco-photo {
  position: absolute;
  top: -140px;
  left: 55%;
  width: 40vw;
  max-width: 600px;
  aspect-ratio: 434/349;
  z-index: 3;
}
@media (max-width: 768px) {
  .c-page-hero__deco-photo {
    width: 55vw;
    aspect-ratio: 434/349;
    top: -20vh;
    left: 42%;
  }
}
.c-page-hero__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-page-hero__deco-circle {
  position: absolute;
}
.c-page-hero__deco-circle--01 {
  width: 9vw;
  top: -110px;
  left: 34%;
  z-index: 2;
  max-width: 125px;
}
@media (max-width: 768px) {
  .c-page-hero__deco-circle--01 {
    width: 12vw;
    top: -8vh;
    left: 13%;
  }
}
.c-page-hero__deco-circle--02 {
  width: 7vw;
  top: 300px;
  right: 22%;
  z-index: 2;
  max-width: 88px;
}
@media (max-width: 768px) {
  .c-page-hero__deco-circle--02 {
    width: 9vw;
    top: 10vh;
    left: 78%;
  }
}
.c-page-hero__deco-circle--03 {
  width: 10vw;
  top: 20px;
  right: 5%;
  z-index: 2;
  max-width: 140px;
}
@media (max-width: 768px) {
  .c-page-hero__deco-circle--03 {
    width: 13vw;
    top: -12vh;
    left: 86%;
  }
}
.c-page-hero__deco-blob {
  position: absolute;
}
.c-page-hero__deco-blob--01 {
  width: 25vw;
  top: 20px;
  left: 50%;
  z-index: 2;
  aspect-ratio: 16/13;
}
@media (max-width: 768px) {
  .c-page-hero__deco-blob--01 {
    width: 40vw;
    aspect-ratio: 16/13;
    top: -12vh;
    left: 38%;
  }
}
.c-page-hero__title {
  position: relative;
  z-index: 5;
  font-family: "Kiwi Maru", "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: clamp(1.75rem, 1.25rem + 2vw, 4rem);
  font-weight: 500;
  line-height: 1.2;
  color: #102448;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 4rem;
  padding-left: 3rem;
  padding-bottom: 1em;
  height: 120px;
  width: 100%;
}
.c-page-hero__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../images/common/deco-blob-blue.png") left center no-repeat;
  background-size: contain;
  aspect-ratio: 19/15;
  width: 380px;
  height: auto;
  z-index: -1;
}
@media (max-width: 768px) {
  .c-page-hero__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 2rem;
    margin-top: 5rem;
    margin-bottom: 0;
    height: 170px;
    width: 100%;
  }
  .c-page-hero__title::before {
    width: 200px;
    aspect-ratio: 19/15;
  }
}
.c-page-hero__bg-image {
  width: 100%;
  display: block;
  background: url("../images/common/divider-wave-01.svg") bottom center/contain no-repeat;
  aspect-ratio: 370/103;
  margin-top: -15vh;
}
@media (max-width: 992px) {
  .c-page-hero__bg-image {
    margin-top: -15vh;
  }
}
@media (max-width: 768px) {
  .c-page-hero__bg-image {
    background: url("../images/common/divider-wave-01-sp.svg") bottom center/contain no-repeat;
    aspect-ratio: 799/206;
    margin-top: -20vh;
    position: relative;
    top: 2px;
  }
}

.c-page-hero__deco-circle,
.c-page-hero__deco-blob {
  -webkit-animation: floatUpDown 5s ease-in-out infinite alternate;
          animation: floatUpDown 5s ease-in-out infinite alternate;
}

.c-page-hero__deco-circle--01 {
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
}

.c-page-hero__deco-circle--02 {
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.c-page-hero__deco-circle--03 {
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.c-page-hero__deco-blob--01 {
  -webkit-animation: none;
          animation: none;
}

.c-page-hero__deco-blob--02 {
  -webkit-animation: none;
          animation: none;
}

@-webkit-keyframes scaleInFadeIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0.95) rotate(var(--photo-rotate));
            transform: scale(0.95) rotate(var(--photo-rotate));
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) rotate(var(--photo-rotate));
            transform: scale(1) rotate(var(--photo-rotate));
  }
}

@keyframes scaleInFadeIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0.95) rotate(var(--photo-rotate));
            transform: scale(0.95) rotate(var(--photo-rotate));
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) rotate(var(--photo-rotate));
            transform: scale(1) rotate(var(--photo-rotate));
  }
}
.c-page-hero__image {
  opacity: 0;
  -webkit-animation: scaleInFadeIn 1s ease-out forwards;
          animation: scaleInFadeIn 1s ease-out forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.c-page-hero__deco-blob--01 {
  opacity: 0;
  -webkit-animation: scaleInFadeIn 1s ease-out forwards;
          animation: scaleInFadeIn 1s ease-out forwards;
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

/* ==================================================
   パンくずリストコンポーネント
   ================================================== */
.c-breadcrumb {
  position: relative;
  z-index: 5;
  margin-bottom: 2rem;
}
.c-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding-top: 10vh;
  padding-left: 3.5rem;
}
@media (max-width: 768px) {
  .c-breadcrumb__list {
    padding-top: 0vh;
    padding-left: 1rem;
  }
}
.c-breadcrumb__list:before {
  content: "";
  display: block;
  width: 0.8em;
  height: 0.8em;
  border-radius: 50%;
  background-color: #dce22f;
  margin-right: 0.5rem;
}
.c-breadcrumb__item {
  font-family: "Kiwi Maru", "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: clamp(0.875rem, 0.75rem + 0.5vw, 1rem);
  font-weight: 500;
  margin-bottom: 0;
}
.c-breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin: 0 0.8em;
  color: #102448;
}

/* ==================================================
   スケジュールコンポーネント
   ================================================== */
.c-timeline {
  position: relative;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}
.c-timeline::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 55px;
  width: 2px;
  background-image: linear-gradient(transparent 0, transparent 8px, #11c1d3 8px, #11c1d3 10px);
  background-size: 1px 10px;
}
@media (max-width: 768px) {
  .c-timeline::before {
    left: 40px;
  }
}
.c-timeline--bg-beige .c-timeline__item:last-child::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 54px;
  width: 4px;
  height: 90%;
  background-color: #f3f3f1;
  z-index: 1;
}
@media (max-width: 768px) {
  .c-timeline--bg-beige .c-timeline__item:last-child::after {
    left: 40px;
  }
}
.c-timeline--bg-white .c-timeline__item:last-child::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 54px;
  width: 4px;
  height: 90%;
  background-color: #ffffff;
  z-index: 1;
}
@media (max-width: 768px) {
  .c-timeline--bg-white .c-timeline__item:last-child::after {
    left: 40px;
  }
}

.c-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .c-timeline__item {
    grid-template-columns: 80px 1fr;
    gap: 1rem;
  }
}
.c-timeline__item:not(:last-child) {
  margin-bottom: 2rem;
}

.c-timeline__meta {
  text-align: left;
}

.c-timeline__time {
  display: inline-block;
  background-color: #11c1d3;
  color: #ffffff;
  font-family: "Kiwi Maru", "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-align: center;
  width: 110px;
  padding: 5px 12px 8px 16px;
  border-radius: 4rem;
  z-index: 2;
  position: relative;
}
@media (max-width: 768px) {
  .c-timeline__time {
    width: 80px;
    font-size: 0.875rem;
    padding: 4px 8px 6px 10px;
  }
}

.c-timeline__title {
  font-family: "Kiwi Maru", "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: clamp(1.25rem, 2.5vw + 0.5rem, 1.75rem);
  font-weight: 500;
  margin-bottom: 0.5em;
}

.c-timeline__description {
  line-height: 1.8;
}

.c-timeline__note {
  margin-top: 2rem;
  padding-left: calc(110px + 1.5rem);
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .c-timeline__note {
    margin-top: 1rem;
    padding-left: 0;
  }
}
.c-timeline__note-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.c-timeline__gallery {
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 768px) {
  .c-timeline__gallery {
    gap: 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .c-timeline__gallery .c-card__image {
    width: 100%;
  }
}

/* ==================================================
   アコーディオンコンポーネント
   ================================================== */
.c-accordion__item {
  position: relative;
}
.c-accordion__item:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(to right, #e6e6cf, #e6e6cf 2px, transparent 2px, transparent 10px);
}
.c-accordion__item.is-open .c-accordion__icon::before,
.c-accordion__item.is-open .c-accordion__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}
.c-accordion__item.is-open .c-accordion__panel {
  grid-template-rows: 1fr;
}
.c-accordion__title {
  margin-bottom: 0;
}
.c-accordion__trigger {
  background: none;
  border: none;
  width: 100%;
  padding: 2rem 1rem 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  cursor: pointer;
  font-size: 1.8rem;
}
.c-accordion__region {
  position: relative;
  padding-left: 1.5em;
}
@media (max-width: 768px) {
  .c-accordion__region {
    padding-left: 1.25em;
  }
}
.c-accordion__region:before {
  position: absolute;
  top: 55%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: block;
  width: 0.7em;
  height: 0.7em;
  border-radius: 50%;
  background-color: #dce22f;
  margin-right: 0.5rem;
}
@media (max-width: 768px) {
  .c-accordion__region:before {
    top: 60%;
  }
}
.c-accordion__region-text {
  color: #102448;
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 1.875rem);
}
.c-accordion__region-text:not(:last-child)::after {
  content: "―";
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  margin: 0 0.5em 0 0.8em;
}
.c-accordion__region-number {
  color: #102448;
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 400;
}
.c-accordion__icon {
  position: relative;
  width: 20px;
  height: 20px;
}
.c-accordion__icon::before, .c-accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 4rem;
  background-color: #102448;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-accordion__icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}
.c-accordion__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.c-accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  -webkit-transition: grid-template-rows 0.4s ease-in-out;
  transition: grid-template-rows 0.4s ease-in-out;
  transition: grid-template-rows 0.4s ease-in-out, -ms-grid-rows 0.4s ease-in-out;
}
.c-accordion__panel-inner {
  min-height: 0;
  padding: 0 5vw;
}

/* ==================================================
   事業所一覧コンポーネント
   ================================================== */
.c-office-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 3rem;
}
.c-office-card:not(:last-child) {
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .c-office-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
}
.c-office-card:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -3rem;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(to right, #e6e6cf, #e6e6cf 2px, transparent 2px, transparent 10px);
}
.c-office-card__title {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  margin-bottom: 0.5em;
}
.c-office-card__tags-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
  .c-office-card__tags-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.c-office-card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1em;
}
.c-office-card__tag {
  font-size: clamp(0.75rem, 1vw + 0.5rem, 1rem);
  border: 1px solid #102448;
  padding: 4px 12px;
  border-radius: 20px;
}
.c-office-card__address {
  font-size: clamp(0.75rem, 1vw + 0.5rem, 1rem);
  font-style: normal;
  line-height: 2;
  margin-bottom: 1em;
}
.c-office-card__button {
  width: 350px;
}
@media (max-width: 768px) {
  .c-office-card__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .c-office-card .c-card__image {
    width: 90%;
  }
}
.c-office-card--terra {
  margin-bottom: 0;
}
.c-office-card--terra:not(:last-child)::after {
  display: none;
}
.c-office-card__link {
  color: #11c1d3;
  text-decoration: underline;
}
.c-office-card__link:hover {
  opacity: 0.8;
}

/* ==================================================
   ご利用の流れコンポーネント
   ================================================== */
.c-step {
  list-style: none;
  padding: 0;
  margin: 60px 0 0;
}
@media (max-width: 768px) {
  .c-step {
    margin: 0;
  }
}
.c-step .c-step__item {
  position: relative;
}
.c-step .c-step__item:not(:last-child) {
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .c-step .c-step__item:not(:last-child) {
    margin-bottom: 60px;
  }
}
.c-step .c-step__item .c-step__content {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: "image title" "image body";
  gap: 0 2rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 70%;
}
.c-step .c-step__item .c-step__content::after {
  content: "";
  position: absolute;
  bottom: -3rem;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(to right, #e6e6cf, #e6e6cf 2px, transparent 2px, transparent 10px);
}
@media (max-width: 768px) {
  .c-step .c-step__item .c-step__content::after {
    bottom: -2rem;
  }
}
@media (max-width: 768px) {
  .c-step .c-step__item .c-step__content {
    grid-template-columns: 1fr;
    grid-template-areas: "heading" "body";
    gap: 1rem;
    max-width: none;
  }
}
@media (min-width: 769px) {
  .c-step .c-step__item:nth-child(1) .c-step__content {
    margin-left: 0;
  }
  .c-step .c-step__item:nth-child(2) .c-step__content {
    margin-left: 10%;
  }
  .c-step .c-step__item:nth-child(3) .c-step__content {
    margin-left: 20%;
  }
  .c-step .c-step__item:nth-child(4) .c-step__content {
    margin-left: 30%;
  }
}
.c-step .c-step__heading {
  display: contents;
}
@media (max-width: 768px) {
  .c-step .c-step__heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
  }
}
.c-step .c-step__step-img {
  grid-area: image;
  align-self: center;
}
@media (max-width: 768px) {
  .c-step .c-step__step-img {
    grid-area: unset;
    align-self: unset;
    width: 25%;
    max-width: 100px;
  }
}
.c-step .c-step__title {
  grid-area: title;
  align-self: end;
  margin: 0;
  font-family: "Kiwi Maru", "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: clamp(1.25rem, 2.5vw + 0.5rem, 1.75rem);
  font-weight: 500;
}
@media (max-width: 768px) {
  .c-step .c-step__title {
    grid-area: unset;
    align-self: unset;
  }
}
.c-step .c-step__body {
  grid-area: body;
  padding-top: 0.5em;
  line-height: 2;
  font-size: clamp(0.95rem, 1vw + 0.8rem, 1rem);
}
@media (max-width: 768px) {
  .c-step .c-step__body {
    grid-area: unset;
    padding-top: 0;
  }
}

/* ==================================================
   トップへ戻るボタンコンポーネント
   ================================================== */
.c-scroll-top {
  position: fixed;
  bottom: 110px;
  right: 28px;
  width: 50px;
  height: 50px;
  background: #ffffff;
  border: 2px solid #f26e14;
  border-radius: 50%;
  color: #f26e14;
  font-size: 18px;
  cursor: pointer;
  z-index: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  pointer-events: none;
}
.c-scroll-top.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}
.c-scroll-top:hover {
  background: #f26e14;
  color: #ffffff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}
.c-scroll-top:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media (max-width: 768px) {
  .c-scroll-top {
    width: 45px;
    height: 45px;
    font-size: 16px;
    bottom: 105px;
    right: 15px;
  }
}

/* ==================================================
   トップページ ヒーローセクション
   ================================================== */
.p-hero {
  position: relative;
  height: 110vh;
  min-height: 1100px;
  background-image: url("../images/common/bg-texture.jpg");
  margin-top: -250px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .p-hero {
    height: 80vh;
    min-height: 1100px;
  }
}
@media (max-width: 768px) {
  .p-hero {
    min-height: 78vh;
    height: auto;
  }
}
@media (max-width: 375px) {
  .p-hero {
    min-height: 90vh;
    height: auto;
  }
}
.p-hero__figure {
  position: absolute;
  overflow: hidden;
  aspect-ratio: 463/528;
  border-radius: 3rem;
}
@media (max-width: 992px) {
  .p-hero__figure {
    border-radius: 3rem;
  }
}
@media (max-width: 768px) {
  .p-hero__figure {
    border-radius: 2rem;
  }
}
.p-hero__figure--01 {
  width: 29vw;
  max-width: 425px;
  top: 38px;
  left: 35%;
  z-index: 3;
  --photo-rotate: -5deg;
}
@media (max-width: 992px) {
  .p-hero__figure--01 {
    width: 39vw;
    max-width: 250px;
    top: 21vh;
    left: 47%;
  }
}
@media (max-width: 768px) {
  .p-hero__figure--01 {
    width: 39vw;
    max-width: 250px;
    top: 21vh;
    left: 47%;
  }
}
@media (max-width: 375px) {
  .p-hero__figure--01 {
    width: 34vw;
    max-width: 250px;
    top: 31vh;
    left: 48%;
  }
}
.p-hero__figure--02 {
  width: 21vw;
  max-width: 327px;
  top: 220px;
  left: 75%;
  z-index: 2;
  --photo-rotate: 5deg;
}
@media (max-width: 992px) {
  .p-hero__figure--02 {
    width: 23vw;
    max-width: 170px;
    top: 43vh;
    left: 72%;
  }
}
@media (max-width: 768px) {
  .p-hero__figure--02 {
    width: 23vw;
    max-width: 170px;
    top: 43vh;
    left: 72%;
  }
}
@media (max-width: 375px) {
  .p-hero__figure--02 {
    width: 23vw;
    max-width: 170px;
    top: 53vh;
    left: 72%;
  }
}
.p-hero__figure--03 {
  width: 14vw;
  max-width: 200px;
  top: 520px;
  left: 49%;
  z-index: 5;
  --photo-rotate: 6deg;
}
@media (max-width: 992px) {
  .p-hero__figure--03 {
    display: none;
  }
}
@media (max-width: 768px) {
  .p-hero__figure--03 {
    display: none;
  }
}
.p-hero__figure--04 {
  width: 18vw;
  max-width: 263px;
  top: 590px;
  left: 67%;
  z-index: 4;
  --photo-rotate: -4deg;
}
@media (max-width: 992px) {
  .p-hero__figure--04 {
    width: 19vw;
    max-width: 135px;
    top: 55vh;
    left: 60%;
    border-radius: 1.5rem;
  }
}
@media (max-width: 768px) {
  .p-hero__figure--04 {
    width: 19vw;
    max-width: 135px;
    top: 55vh;
    left: 60%;
    border-radius: 1.5rem;
  }
}
@media (max-width: 375px) {
  .p-hero__figure--04 {
    width: 19vw;
    max-width: 135px;
    top: 63vh;
    left: 63%;
    border-radius: 1.5rem;
  }
}
.p-hero__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-hero__deco-blob {
  position: absolute;
}
.p-hero__deco-blob--01 {
  width: 25vw;
  max-width: 373px;
  top: 235px;
  left: 61%;
  z-index: 2;
}
@media (max-width: 992px) {
  .p-hero__deco-blob--01 {
    width: 39vw;
    max-width: 325px;
    top: 36vh;
    left: 58%;
  }
}
@media (max-width: 768px) {
  .p-hero__deco-blob--01 {
    width: 39vw;
    max-width: 325px;
    top: 36vh;
    left: 58%;
  }
}
@media (max-width: 375px) {
  .p-hero__deco-blob--01 {
    width: 39vw;
    max-width: 325px;
    left: 58%;
    top: 46vh;
  }
}
.p-hero__deco-blob--02 {
  width: 32vw;
  max-width: 447px;
  top: 450px;
  left: 23%;
  z-index: 2;
}
@media (max-width: 992px) {
  .p-hero__deco-blob--02 {
    width: 32vw;
    max-width: 380px;
    top: 54vh;
    left: 12%;
  }
}
@media (max-width: 768px) {
  .p-hero__deco-blob--02 {
    width: 40vw;
    max-width: 380px;
    top: 50vh;
    left: 12%;
  }
}
@media (max-width: 375px) {
  .p-hero__deco-blob--02 {
    width: 40vw;
    max-width: 380px;
    top: 62vh;
    left: 16%;
  }
}
.p-hero__deco-circle {
  position: absolute;
}
.p-hero__deco-circle--01 {
  width: 10vw;
  max-width: 114px;
  top: 240px;
  left: 30%;
  z-index: 2;
}
@media (max-width: 992px) {
  .p-hero__deco-circle--01 {
    width: 12vw;
    top: 29vh;
    left: 40%;
  }
}
@media (max-width: 768px) {
  .p-hero__deco-circle--01 {
    width: 12vw;
    top: 29vh;
    left: 40%;
  }
}
@media (max-width: 375px) {
  .p-hero__deco-circle--01 {
    width: 10vw;
    top: 40vh;
    left: 40%;
  }
}
.p-hero__deco-circle--02 {
  width: 7vw;
  max-width: 88px;
  top: 800px;
  left: 12%;
  z-index: 2;
}
@media (max-width: 992px) {
  .p-hero__deco-circle--02 {
    width: 8vw;
    top: 70vh;
    left: 4%;
  }
}
@media (max-width: 768px) {
  .p-hero__deco-circle--02 {
    width: 8vw;
    top: 62vh;
    left: 2%;
  }
}
@media (max-width: 375px) {
  .p-hero__deco-circle--02 {
    width: 6vw;
    top: 74vh;
    left: 2%;
  }
}
.p-hero__deco-circle--03 {
  width: 9vw;
  max-width: 140px;
  top: 185px;
  left: 87%;
}
@media (max-width: 992px) {
  .p-hero__deco-circle--03 {
    width: 14vw;
    top: 23vh;
    left: 82%;
  }
}
@media (max-width: 768px) {
  .p-hero__deco-circle--03 {
    width: 14vw;
    top: 23vh;
    left: 82%;
  }
}
@media (max-width: 375px) {
  .p-hero__deco-circle--03 {
    width: 12vw;
    top: 32vh;
    left: 79%;
  }
}
.p-hero__text-group {
  position: absolute;
  top: 340px;
  left: 8%;
  z-index: 10;
  font-family: "Kiwi Maru", "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  color: #102448;
}
@media (max-width: 992px) {
  .p-hero__text-group {
    top: 32vh;
    left: 5%;
  }
}
@media (max-width: 768px) {
  .p-hero__text-group {
    top: 36vh;
    left: 5%;
  }
}
@media (max-width: 375px) {
  .p-hero__text-group {
    top: 44vh;
    left: 5%;
  }
}
.p-hero__title {
  font-size: clamp(4rem, 1.5rem + 2vw, 4rem);
  font-weight: 500;
  line-height: 1.6;
}
@media (max-width: 992px) {
  .p-hero__title {
    font-size: clamp(3.5rem, 1.5rem + 2vw, 3.5rem);
    line-height: 1.4;
  }
}
@media (max-width: 768px) {
  .p-hero__title {
    font-size: clamp(1.8rem, 1.5rem + 1vw, 2.5rem);
    line-height: 1.4;
  }
}
.p-hero__subtitle {
  font-size: clamp(1rem, 0.75rem + 1vw, 2rem);
  line-height: 1.8;
}
@media (max-width: 992px) {
  .p-hero__subtitle {
    padding-left: 1rem;
    font-size: clamp(1rem, 0.75rem + 1vw, 2rem);
    line-height: 1.6;
  }
}
.p-hero__deco-text {
  position: absolute;
  width: 60vw;
  max-width: 874px;
  top: 460px;
  left: 36%;
  z-index: 5;
}
.p-hero__deco-text--sp {
  display: none;
}
@media (max-width: 992px) {
  .p-hero__deco-text {
    width: 33vw;
    top: 40vh;
    left: 49%;
  }
  .p-hero__deco-text--pc {
    display: none;
  }
  .p-hero__deco-text--sp {
    display: block;
  }
}
@media (max-width: 768px) {
  .p-hero__deco-text {
    width: 33vw;
    top: 40vh;
    left: 49%;
  }
  .p-hero__deco-text--pc {
    display: none;
  }
  .p-hero__deco-text--sp {
    display: block;
  }
}
@media (max-width: 375px) {
  .p-hero__deco-text {
    width: 33vw;
    top: 50vh;
    left: 47%;
  }
}

/* ファーストビュー：キャッチコピーのアニメーション */
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-hero__title-line {
  display: inline-block;
  opacity: 0;
  -webkit-animation: fadeInUp 0.8s ease-out forwards;
          animation: fadeInUp 0.8s ease-out forwards;
}

/* 2行目、3行目を少し遅らせて表示 */
.p-hero__title-line:nth-of-type(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.p-hero__title-line:nth-of-type(3) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

/* ファーストビュー：背景装飾のアニメーション */
@-webkit-keyframes floatUpDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes floatUpDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes subtleRotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes subtleRotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.p-hero__deco-circle,
.p-hero__deco-blob {
  -webkit-animation: floatUpDown 5s ease-in-out infinite alternate;
          animation: floatUpDown 5s ease-in-out infinite alternate;
}

.p-hero__deco-circle--01 {
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
}

.p-hero__deco-circle--02 {
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.p-hero__deco-circle--03 {
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.p-hero__deco-blob--01 {
  -webkit-animation: none;
          animation: none;
}

.p-hero__deco-blob--02 {
  -webkit-animation: none;
          animation: none;
}

/* ファーストビュー：写真のアニメーション */
@keyframes scaleInFadeIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0.95) rotate(var(--photo-rotate));
            transform: scale(0.95) rotate(var(--photo-rotate));
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) rotate(var(--photo-rotate));
            transform: scale(1) rotate(var(--photo-rotate));
  }
}
.p-hero__figure {
  opacity: 0;
  -webkit-animation: scaleInFadeIn 1s ease-out forwards;
          animation: scaleInFadeIn 1s ease-out forwards;
}

.p-hero__figure--01 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.p-hero__figure--02 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.p-hero__figure--03 {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.p-hero__figure--04 {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

/* ==================================================
   トップページ アバウトリードセクション
   ================================================== */
.p-about-lead {
  position: relative;
  background-color: #ffffff;
}
.p-about-lead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 370/103;
  background-image: url("../images/common/divider-wave-01.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-transform: translateY(-90%);
          transform: translateY(-90%);
}
@media (max-width: 768px) {
  .p-about-lead::before {
    background: url("../images/common/divider-wave-01-sp.svg") bottom center/contain no-repeat;
    aspect-ratio: 799/206;
  }
}
.p-about-lead::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: auto;
  background-image: url("../images/common/divider-wave-02.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  aspect-ratio: 741/211;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-about-lead::after {
    bottom: 5px;
    width: 100%;
    aspect-ratio: 809/213;
    background-image: url("../images/common/divider-wave-02-sp.svg");
  }
}
.p-about-lead__inner {
  position: relative;
  top: -40px;
  z-index: 2;
}
.p-about-lead__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  position: relative;
}
.p-about-lead__image-area {
  position: relative;
}
.p-about-lead__main-image {
  position: relative;
  border-radius: 3rem;
  overflow: hidden;
  aspect-ratio: 402/529;
  z-index: 2;
}
.p-about-lead__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-about-lead__deco-circle {
  position: absolute;
  z-index: 1;
}
.p-about-lead__deco-circle--01 {
  width: 33%;
  top: 87%;
  left: 77%;
}
@media (max-width: 768px) {
  .p-about-lead__deco-circle--01 {
    width: 53%;
    top: 30%;
    left: 90%;
  }
}
.p-about-lead__deco-blob {
  position: absolute;
  z-index: 1;
}
.p-about-lead__deco-blob--01 {
  width: 55%;
  top: 25%;
  left: 45%;
  background: url("../images/common/deco-blob-paleyellow.png") no-repeat center/contain;
}
.p-about-lead__content {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .p-about-lead__content {
    text-align: center;
  }
}
.p-about-lead__title {
  font-family: "Kiwi Maru", "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: clamp(1.25rem, 0.075rem + 2.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.3;
  color: #102448;
  margin-bottom: clamp(1.5rem, 1rem + 2vw, 3rem);
}
@media (max-width: 768px) {
  .p-about-lead__title {
    display: inline-block;
    text-align: left;
  }
}
.p-about-lead__title-line {
  display: block;
}
.p-about-lead__title-line:nth-child(1) {
  margin-bottom: 0.5rem;
}
.p-about-lead__title-line:nth-child(2) {
  padding-left: 1em;
}
.p-about-lead__text {
  margin-bottom: clamp(1.5rem, 1rem + 2vw, 3rem);
}
.p-about-lead__text p {
  font-size: 1rem;
  line-height: 2.5;
  color: #102448;
  margin-bottom: 0.5rem;
  padding-left: 2.5em;
  text-align: left;
}
@media (max-width: 768px) {
  .p-about-lead__text p {
    line-height: 2;
    padding-left: 0;
  }
}
.p-about-lead__text p:last-child {
  margin-bottom: 0;
}
.p-about-lead__button {
  width: 350px;
  padding-left: 2.5em;
}
@media (max-width: 768px) {
  .p-about-lead__button {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    padding-left: 0;
  }
}
.p-about-lead__partial-image-area {
  position: absolute;
  bottom: -30vh;
  right: 10%;
  width: 15%;
  max-width: 270px;
  z-index: 3;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .p-about-lead__partial-image-area {
    position: absolute;
    bottom: -20vh;
    right: 10%;
    width: 15%;
    max-width: 270px;
    z-index: 3;
  }
}
@media (max-width: 992px) {
  .p-about-lead__partial-image-area {
    position: absolute;
    bottom: -18vh;
    right: 10%;
    width: 15%;
    max-width: 270px;
    z-index: 3;
  }
}
.p-about-lead__partial-image {
  position: relative;
  border-radius: 2.5rem;
  overflow: hidden;
  aspect-ratio: 270/357;
  z-index: 2;
}
.p-about-lead__gallery {
  display: none;
}
@media (max-width: 768px) {
  .p-about-lead {
    padding: 2rem 0 4rem;
  }
  .p-about-lead__container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 15px;
  }
  .p-about-lead__content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-left: 0;
  }
  .p-about-lead__image-area {
    display: none;
  }
  .p-about-lead__partial-image-area {
    display: none;
  }
  .p-about-lead__partial-image {
    width: 200%;
    height: auto;
    aspect-ratio: 270/357;
  }
  .p-about-lead .p-about-lead__gallery {
    position: relative;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    gap: 8vw;
    padding: 0 8vw;
    margin-top: 2rem;
  }
  .p-about-lead .p-about-lead__main-image {
    border-radius: 2rem;
  }
  .p-about-lead .p-about-lead__sub-image {
    position: relative;
    z-index: 2;
    aspect-ratio: 270/357;
    border-radius: 2rem;
    overflow: hidden;
    -webkit-transform: translateY(30%);
            transform: translateY(30%);
  }
  .p-about-lead .p-about-lead__deco-circle {
    position: absolute;
    width: 27%;
    top: 36%;
    left: 45%;
    z-index: 0;
  }
}

/* ==================================================
   トップページ 仕事紹介セクション
   ================================================== */
.p-work-lead {
  position: relative;
  padding: 120px 0 80px;
}
.p-work-lead__deco-blob {
  position: absolute;
  bottom: 0;
  left: 15%;
  width: 20vw;
  z-index: 0;
}
@media (max-width: 992px) {
  .p-work-lead__deco-blob {
    bottom: 10vh;
    left: 10%;
  }
}
@media (max-width: 768px) {
  .p-work-lead__deco-blob {
    display: none;
  }
}
.p-work-lead__deco-circle {
  position: absolute;
  bottom: -28vh;
  right: 10%;
  width: 12vw;
  z-index: 1;
}
@media (max-width: 992px) {
  .p-work-lead__deco-circle {
    bottom: -14vh;
  }
}
@media (max-width: 768px) {
  .p-work-lead__deco-circle {
    bottom: -17vh;
    width: 22vw;
  }
}
.p-work-lead .l-container {
  position: relative;
  z-index: 2;
}
.p-work-lead__title-area {
  position: absolute;
}
.p-work-lead__list {
  display: grid;
  gap: 3rem;
  margin-bottom: clamp(2rem, 1rem + 2vw, 6rem);
  padding-left: 20vw;
  padding-top: 12rem;
  max-width: 1440px;
}
.p-work-lead__button {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .p-work-lead {
    padding: 100px 0 60px;
  }
  .p-work-lead__list {
    padding-left: 10vw;
    padding-top: 8rem;
  }
}
@media (max-width: 768px) {
  .p-work-lead {
    padding: 0 0 32px;
  }
  .p-work-lead__title-area {
    position: relative;
  }
  .p-work-lead__list {
    gap: 3rem;
    padding: 0;
  }
}

/* ==================================================
   トップページ スタッフ紹介セクション
   ================================================== */
.p-staff-lead {
  margin-top: -10rem;
  position: relative;
  padding: 20rem 0 16rem 0;
  width: 100%;
  background-color: #11c1d3;
  background-image: url("../images/common/bg-texture-blue.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  -webkit-clip-path: url("#staff-shape-pc");
          clip-path: url("#staff-shape-pc");
}
@media (max-width: 768px) {
  .p-staff-lead {
    margin-top: 0;
    padding: 6rem 0 8rem 0;
    -webkit-clip-path: url("#staff-shape-sp");
            clip-path: url("#staff-shape-sp");
  }
}
.p-staff-lead__slider-wrapper {
  margin: 0 auto;
  overflow: visible;
  margin-bottom: 4rem;
  position: relative;
}
@media (max-width: 768px) {
  .p-staff-lead__slider-wrapper {
    margin-bottom: 3rem;
  }
}
.p-staff-lead__slider-nav {
  position: absolute;
  bottom: 0;
  right: 3%;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}
@media (max-width: 768px) {
  .p-staff-lead__slider-nav {
    bottom: -20px;
    gap: 1.5rem;
  }
}
.p-staff-lead__slider-nav .swiper-button-prev,
.p-staff-lead__slider-nav .swiper-button-next {
  --swiper-navigation-color: transparent;
  position: static;
  width: 40px;
  height: 40px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (max-width: 768px) {
  .p-staff-lead__slider-nav .swiper-button-prev,
  .p-staff-lead__slider-nav .swiper-button-next {
    width: 20px;
    height: 20px;
  }
}
.p-staff-lead__slider-nav .swiper-button-prev {
  background-image: url("../images/environment/arrow-left.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.p-staff-lead__slider-nav .swiper-button-prev:hover {
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
}
.p-staff-lead__slider-nav .swiper-button-next {
  background-image: url("../images/environment/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.p-staff-lead__slider-nav .swiper-button-next:hover {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.p-staff-lead__slider-nav .swiper-button-prev::after,
.p-staff-lead__slider-nav .swiper-button-next::after {
  display: none;
}
.p-staff-lead__bottom-button {
  width: 350px;
  margin: 0 auto;
  text-align: center;
  background-color: #ffffff;
  border-radius: 24px;
}

.swiper.p-staff-lead__slider {
  width: 100%;
  padding: 1.5rem 0;
}
.swiper.p-staff-lead__slider .swiper-wrapper {
  overflow: visible;
}
.swiper.p-staff-lead__slider .swiper-slide {
  position: relative;
  width: 25%;
  opacity: 0.9;
  z-index: 1;
}
@media (max-width: 1200px) {
  .swiper.p-staff-lead__slider .swiper-slide {
    width: 29%;
  }
}
@media (max-width: 768px) {
  .swiper.p-staff-lead__slider .swiper-slide {
    width: 50%;
  }
}
.swiper.p-staff-lead__slider .swiper-slide__inner {
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}
.swiper.p-staff-lead__slider .swiper-slide-active {
  opacity: 1;
  z-index: 10;
}
.swiper.p-staff-lead__slider .swiper-slide-active .swiper-slide__inner {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.swiper.p-staff-lead__slider .swiper-slide-active .c-staff-card__content,
.swiper.p-staff-lead__slider .swiper-slide-active .c-staff-card__button {
  opacity: 1;
  pointer-events: auto;
}
.swiper.p-staff-lead__slider .swiper-slide-active .c-staff-card__figure {
  -webkit-transform: rotate(8deg);
          transform: rotate(8deg);
}
.swiper.p-staff-lead__slider .c-staff-card__content,
.swiper.p-staff-lead__slider .c-staff-card__button {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

/* ==================================================
   トップページ お知らせセクション
   ================================================== */
.p-news {
  padding: 0 0 10rem 0;
  background-color: #ffffff;
  position: relative;
}
@media (max-width: 768px) {
  .p-news {
    padding: 0 0 8rem 0;
  }
}
.p-news::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  width: 100%;
  background-image: url("../images/common/divider-wave-03.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  aspect-ratio: 1503/208;
}
@media (max-width: 768px) {
  .p-news::before {
    top: 5px;
    width: 100%;
    aspect-ratio: 804/103;
    background-image: url("../images/common/divider-wave-03-sp.svg");
  }
}
.p-news__main {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(4rem, 7vw, 10rem);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 7rem 0 0 9rem;
}
@media (max-width: 1200px) {
  .p-news__main {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .p-news__main {
    padding: 0;
    gap: 0;
  }
}
.p-news__heading-wrapper {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .p-news__heading-wrapper {
    position: relative;
  }
}
.p-news__content-wrapper {
  min-width: 0;
}
.p-news__list {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .p-news__list {
    margin-top: 0;
  }
}
.p-news__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding: 1rem 0;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
}
.p-news__date {
  margin-right: 30px;
  width: clamp(60px, 10vw, 100px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-news__title {
  min-width: 0;
}
.p-news__button-area {
  width: 350px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .p-news__button-area {
    margin: 40px auto 0;
    width: 100%;
    max-width: 350px;
  }
}
.p-news__image-area {
  position: relative;
}
@media (max-width: 1200px) {
  .p-news__image-area {
    display: none;
  }
}
.p-news__image-wrapper {
  position: relative;
  border-radius: 3rem;
  overflow: hidden;
  aspect-ratio: 420/300;
  z-index: 2;
}
.p-news__deco-blob {
  position: absolute;
  background: url("../images/common/deco-blob-green.png") no-repeat center/contain;
  width: 60%;
  height: 60%;
  top: -12%;
  right: -24%;
  z-index: 1;
}
@media (max-width: 1200px) {
  .p-news__deco-blob {
    width: 50%;
    height: 50%;
    top: -12%;
    right: -10%;
  }
}
@media (max-width: 768px) {
  .p-news__deco-blob {
    width: 30%;
    height: 30%;
    top: -12%;
    right: 0;
  }
}

/* ==================================================
   アバウトページ
   ================================================== */
.p-about-mission {
  position: relative;
  background-color: #ffffff;
  padding: 2rem 0 0 0;
}
@media (max-width: 768px) {
  .p-about-mission {
    padding: 4rem 0 3rem 0;
  }
}
.p-about-mission::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: auto;
  background-image: url("../images/common/divider-wave-02.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  aspect-ratio: 741/211;
  z-index: 1;
  z-index: 0;
}
@media (max-width: 768px) {
  .p-about-mission::after {
    bottom: 5px;
    width: 100%;
    aspect-ratio: 809/213;
    background-image: url("../images/common/divider-wave-02-sp.svg");
  }
}
.p-about-mission__heading {
  position: absolute;
  top: -10rem;
  left: 5%;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (max-width: 1200px) {
  .p-about-mission__heading {
    top: -4rem;
  }
}
@media (max-width: 768px) {
  .p-about-mission__heading {
    position: relative;
    top: 0;
  }
}
.p-about-mission__container {
  position: relative;
  top: -2rem;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-about-mission__container {
    top: 0;
  }
}
.p-about-mission__content-list {
  display: grid;
  gap: 5rem;
  padding-top: 3rem;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .p-about-mission__content-list {
    padding-top: 5rem;
  }
}
@media (max-width: 768px) {
  .p-about-mission__content-list {
    padding-top: 0;
  }
}
.p-about-mission__image--01 {
  position: relative;
  z-index: 2;
}
.p-about-mission__deco-circle {
  position: absolute;
  width: 13vw;
  max-width: 170px;
  bottom: -13%;
  right: -17%;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-about-mission__deco-circle {
    width: 22vw;
    max-width: 120px;
    bottom: -13%;
    right: -20%;
  }
}
.p-about-mission__content--01 {
  position: relative;
}
.p-about-mission__content--01 .c-card__title {
  position: relative;
  z-index: 2;
}
.p-about-mission__content--01 .c-card__text {
  position: relative;
  z-index: 2;
}
.p-about-mission__deco-blob {
  position: absolute;
  width: 40vw;
  max-width: 560px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
@media (max-width: 768px) {
  .p-about-mission__deco-blob {
    width: 88vw;
    max-width: 400px;
    top: 30%;
  }
}
@media (max-width: 768px) {
  .p-about-mission .c-card .p-about-mission__image--01 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 768px) {
  .p-about-mission .c-card .p-about-mission__content--01 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.p-about-soccer {
  position: relative;
  padding: 17rem 0 18rem 0;
}
@media (max-width: 992px) {
  .p-about-soccer {
    padding: 7rem 0 15rem 0;
  }
}
@media (max-width: 768px) {
  .p-about-soccer {
    padding: 7rem 0 32rem 0;
  }
}
.p-about-soccer .c-section-heading__ja {
  margin-top: 0;
}
.p-about-soccer__container {
  position: relative;
  z-index: 5;
}
.p-about-soccer__image {
  position: absolute;
}
.p-about-soccer__image--01 {
  width: 20vw;
  max-width: 340px;
  top: 9vh;
  left: -12%;
  -webkit-transform: rotate(-4deg);
          transform: rotate(-4deg);
  z-index: 2;
}
@media (max-width: 1600px) {
  .p-about-soccer__image--01 {
    top: 17vh;
    left: -6%;
  }
}
@media (max-width: 992px) {
  .p-about-soccer__image--01 {
    width: 25vw;
    left: -12%;
    top: 6rem;
  }
}
@media (max-width: 768px) {
  .p-about-soccer__image--01 {
    left: -2%;
    top: 40rem;
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
}
@media (max-width: 460px) {
  .p-about-soccer__image--01 {
    width: 36vw;
    max-width: 260px;
    top: 42rem;
  }
}
.p-about-soccer__image--02 {
  width: 20vw;
  max-width: 300px;
  top: -5vh;
  right: -10%;
  -webkit-transform: rotate(4deg);
          transform: rotate(4deg);
  z-index: 2;
}
@media (max-width: 1600px) {
  .p-about-soccer__image--02 {
    right: -6%;
  }
}
@media (max-width: 992px) {
  .p-about-soccer__image--02 {
    width: 26vw;
    right: -6%;
    top: -6rem;
  }
}
@media (max-width: 768px) {
  .p-about-soccer__image--02 {
    width: 36vw;
    right: 50%;
    top: 35rem;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
@media (max-width: 460px) {
  .p-about-soccer__image--02 {
    width: 41vw;
    top: 38rem;
    right: -5%;
    -webkit-transform: rotate(4deg);
            transform: rotate(4deg);
  }
}
.p-about-soccer__image--03 {
  width: 15vw;
  max-width: 260px;
  bottom: -15vh;
  right: -2%;
  -webkit-transform: rotate(4deg);
          transform: rotate(4deg);
  z-index: 2;
}
@media (max-width: 1600px) {
  .p-about-soccer__image--03 {
    width: 18vw;
    right: 0;
  }
}
@media (max-width: 992px) {
  .p-about-soccer__image--03 {
    width: 21vw;
    right: -3%;
    bottom: -8vh;
  }
}
@media (max-width: 768px) {
  .p-about-soccer__image--03 {
    width: 25vw;
    right: -3%;
    bottom: -23rem;
    -webkit-transform: rotate(6deg);
            transform: rotate(6deg);
  }
}
@media (max-width: 460px) {
  .p-about-soccer__image--03 {
    width: 30vw;
    bottom: -24rem;
    right: 13%;
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
}
.p-about-soccer__deco-circle {
  position: absolute;
  width: 10vw;
  top: 20vh;
  right: -13%;
  z-index: 1;
}
@media (max-width: 1600px) {
  .p-about-soccer__deco-circle {
    top: 9rem;
    right: -5%;
  }
}
@media (max-width: 992px) {
  .p-about-soccer__deco-circle {
    top: 6rem;
  }
}
@media (max-width: 768px) {
  .p-about-soccer__deco-circle {
    width: 20vw;
    top: 38rem;
    right: 4%;
  }
}
@media (max-width: 460px) {
  .p-about-soccer__deco-circle {
    width: 20vw;
    top: 46rem;
    right: -3%;
  }
}
.p-about-soccer__deco-blob {
  position: absolute;
  width: 16vw;
  top: 30rem;
  left: -5%;
  z-index: 1;
}
@media (max-width: 1600px) {
  .p-about-soccer__deco-blob {
    top: 25rem;
    left: 0;
  }
}
@media (max-width: 992px) {
  .p-about-soccer__deco-blob {
    top: 22rem;
    left: -3%;
  }
}
@media (max-width: 768px) {
  .p-about-soccer__deco-blob {
    width: 32vw;
    top: 47rem;
    left: 20%;
  }
}
@media (max-width: 460px) {
  .p-about-soccer__deco-blob {
    width: 32vw;
    top: 52rem;
    left: -3%;
  }
}

/* ==================================================
   働く環境ページ  
   ================================================== */
.p-environment-lead {
  position: relative;
  background-color: #ffffff;
  padding: 0 0 2rem 0;
}
@media (max-width: 992px) {
  .p-environment-lead {
    padding: 4rem 0 2rem 0;
  }
}
@media (max-width: 768px) {
  .p-environment-lead {
    padding: 4rem 0 22rem 0;
  }
}
.p-environment-lead::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: auto;
  background-image: url("../images/common/divider-wave-02.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  aspect-ratio: 741/211;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-environment-lead::after {
    bottom: 5px;
    width: 100%;
    aspect-ratio: 809/213;
    background-image: url("../images/common/divider-wave-02-sp.svg");
  }
}
.p-environment-lead .c-section-heading__ja {
  text-align: center;
  line-height: 1.6;
}
.p-environment-lead__container {
  position: relative;
  z-index: 5;
  top: -8rem;
}
@media (max-width: 768px) {
  .p-environment-lead__container {
    top: 0;
  }
}
.p-environment-lead__image {
  position: absolute;
}
.p-environment-lead__image--01 {
  width: 20vw;
  max-width: 340px;
  top: 9vh;
  left: -8%;
  -webkit-transform: rotate(-4deg);
          transform: rotate(-4deg);
  z-index: 2;
}
@media (max-width: 1600px) {
  .p-environment-lead__image--01 {
    top: 17vh;
    left: -4%;
  }
}
@media (max-width: 992px) {
  .p-environment-lead__image--01 {
    width: 25vw;
    left: -12%;
    top: 6rem;
  }
}
@media (max-width: 768px) {
  .p-environment-lead__image--01 {
    left: -2%;
    top: 33rem;
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
}
@media (max-width: 460px) {
  .p-environment-lead__image--01 {
    width: 36vw;
    max-width: 260px;
    left: -4%;
    top: 29rem;
  }
}
.p-environment-lead__image--02 {
  width: 20vw;
  max-width: 300px;
  top: -5vh;
  right: -8%;
  -webkit-transform: rotate(4deg);
          transform: rotate(4deg);
  z-index: 2;
}
@media (max-width: 1600px) {
  .p-environment-lead__image--02 {
    right: -3%;
  }
}
@media (max-width: 992px) {
  .p-environment-lead__image--02 {
    width: 26vw;
    right: -6%;
    top: -6rem;
  }
}
@media (max-width: 768px) {
  .p-environment-lead__image--02 {
    width: 36vw;
    right: 50%;
    top: 30rem;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
@media (max-width: 460px) {
  .p-environment-lead__image--02 {
    width: 41vw;
    top: 26rem;
    right: -5%;
    -webkit-transform: rotate(4deg);
            transform: rotate(4deg);
  }
}
.p-environment-lead__image--03 {
  width: 15vw;
  max-width: 260px;
  bottom: -15vh;
  right: -2%;
  -webkit-transform: rotate(4deg);
          transform: rotate(4deg);
  z-index: 2;
}
@media (max-width: 1600px) {
  .p-environment-lead__image--03 {
    width: 18vw;
    right: 0;
  }
}
@media (max-width: 992px) {
  .p-environment-lead__image--03 {
    width: 21vw;
    right: -3%;
    bottom: -8vh;
  }
}
@media (max-width: 768px) {
  .p-environment-lead__image--03 {
    width: 25vw;
    right: -3%;
    bottom: -20rem;
    -webkit-transform: rotate(6deg);
            transform: rotate(6deg);
  }
}
@media (max-width: 460px) {
  .p-environment-lead__image--03 {
    width: 30vw;
    bottom: -22rem;
    right: 13%;
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
}
.p-environment-lead__deco-circle {
  position: absolute;
  width: 10vw;
  top: 20vh;
  right: -13%;
  z-index: 1;
}
@media (max-width: 1600px) {
  .p-environment-lead__deco-circle {
    top: 9rem;
    right: -5%;
  }
}
@media (max-width: 992px) {
  .p-environment-lead__deco-circle {
    top: 6rem;
  }
}
@media (max-width: 768px) {
  .p-environment-lead__deco-circle {
    width: 20vw;
    top: 31rem;
    right: 4%;
  }
}
@media (max-width: 460px) {
  .p-environment-lead__deco-circle {
    width: 20vw;
    top: 35rem;
    right: -3%;
  }
}
.p-environment-lead__deco-blob {
  position: absolute;
  width: 16vw;
  top: 30rem;
  left: -5%;
  z-index: 1;
}
@media (max-width: 1600px) {
  .p-environment-lead__deco-blob {
    top: 25rem;
    left: 0;
  }
}
@media (max-width: 992px) {
  .p-environment-lead__deco-blob {
    top: 22rem;
    left: -3%;
  }
}
@media (max-width: 768px) {
  .p-environment-lead__deco-blob {
    width: 32vw;
    top: 39rem;
    left: 20%;
  }
}
@media (max-width: 460px) {
  .p-environment-lead__deco-blob {
    width: 32vw;
    top: 38rem;
    left: 8%;
  }
}

.p-environment-support {
  position: relative;
  padding: 10rem 0 6rem;
}
@media (max-width: 768px) {
  .p-environment-support {
    padding: 0;
  }
}
.p-environment-support__heading {
  position: absolute;
  top: 2rem;
  left: 5%;
  width: 100%;
  height: 100%;
  z-index: 5;
}
@media (max-width: 768px) {
  .p-environment-support__heading {
    position: relative;
  }
}
@media (max-width: 768px) {
  .p-environment-support__heading .c-section-heading--slanted {
    gap: 0;
  }
}
.p-environment-support__container {
  position: relative;
  top: -2rem;
  z-index: 1;
}
.p-environment-support__content-list {
  display: grid;
  gap: 3rem;
  margin-bottom: clamp(2rem, 1rem + 2vw, 6rem);
  padding-left: 20vw;
  padding-top: 10rem;
  max-width: 1440px;
}
@media (max-width: 1600px) {
  .p-environment-support__content-list {
    padding-left: 10vw;
  }
}
@media (max-width: 768px) {
  .p-environment-support__content-list {
    padding-left: 0;
    padding-top: 2rem;
  }
}
.p-environment-support__deco-circle {
  position: absolute;
  width: 10vw;
  bottom: -17rem;
  right: 0%;
  z-index: 1;
}
@media (max-width: 992px) {
  .p-environment-support__deco-circle {
    bottom: -14rem;
  }
}
@media (max-width: 768px) {
  .p-environment-support__deco-circle {
    width: 18vw;
    bottom: -10rem;
    right: 3%;
  }
}
.p-environment-support__deco-blob {
  position: absolute;
  width: 20vw;
  top: 24rem;
  right: -3%;
  z-index: 1;
}
@media (max-width: 992px) {
  .p-environment-support__deco-blob {
    display: none;
  }
}

.p-environment-staff {
  background-image: none;
  padding: 20rem 0 10rem 0;
}
@media (max-width: 768px) {
  .p-environment-staff {
    padding: 6rem 0 4rem 0;
  }
}

/* ==================================================
   私たちの仕事ページ
   ================================================== */
.p-work-summary {
  position: relative;
  background-color: #ffffff;
  padding: 0 0 4rem 0;
}
@media (max-width: 768px) {
  .p-work-summary {
    padding: 4rem 0 0;
  }
}
.p-work-summary::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: auto;
  background-image: url("../images/common/divider-wave-02.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  aspect-ratio: 741/211;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-work-summary::after {
    bottom: 5px;
    width: 100%;
    aspect-ratio: 809/213;
    background-image: url("../images/common/divider-wave-02-sp.svg");
  }
}
.p-work-summary__heading {
  position: absolute;
  top: -10rem;
  left: 5%;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (max-width: 1200px) {
  .p-work-summary__heading {
    top: -4rem;
  }
}
@media (max-width: 768px) {
  .p-work-summary__heading {
    position: relative;
    top: 0;
  }
}
.p-work-summary__container {
  position: relative;
  top: -2rem;
  z-index: 1;
}
@media (max-width: 1200px) {
  .p-work-summary__container {
    padding-top: 5rem;
  }
}
@media (max-width: 768px) {
  .p-work-summary__container {
    top: -5rem;
  }
}
.p-work-summary__deco-blob {
  position: absolute;
  bottom: -10%;
  left: -2%;
  width: 20vw;
  z-index: 0;
}
@media (max-width: 992px) {
  .p-work-summary__deco-blob {
    bottom: 10vh;
    left: 10%;
  }
}
@media (max-width: 768px) {
  .p-work-summary__deco-blob {
    display: none;
  }
}
.p-work-summary .l-container {
  position: relative;
  z-index: 2;
}
.p-work-summary__title-area {
  position: absolute;
}
.p-work-summary__list {
  display: grid;
  gap: 3rem;
  margin-bottom: clamp(2rem, 1rem + 2vw, 6rem);
  margin-left: auto;
  margin-right: auto;
  padding-top: 3rem;
  max-width: 1000px;
}
@media (max-width: 768px) {
  .p-work-summary__list {
    padding-top: 0;
    margin-bottom: 0;
  }
}

.p-work-afterschool {
  position: relative;
  padding: 10rem 0 12rem;
}
@media (max-width: 768px) {
  .p-work-afterschool {
    padding: 0 0 8rem;
  }
}
.p-work-afterschool__heading {
  position: absolute;
  top: 0;
  left: 5%;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-work-afterschool__heading {
    position: relative;
  }
}
@media (max-width: 768px) {
  .p-work-afterschool__heading .c-section-heading {
    gap: 0.5rem;
  }
}
.p-work-afterschool__container {
  position: relative;
  z-index: 2;
  padding: 8rem 0 0 0;
}
@media (max-width: 992px) {
  .p-work-afterschool__container {
    padding: 2rem 0 0 6rem;
  }
}
@media (max-width: 768px) {
  .p-work-afterschool__container {
    padding: 1rem 0 0 0;
  }
}
.p-work-afterschool__title {
  font-family: "Kiwi Maru", "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  font-weight: 500;
  margin-bottom: clamp(1.5rem, 1rem + 2vw, 3.5rem);
  text-align: center;
}
.p-work-afterschool__deco-circle {
  position: absolute;
  width: 15vw;
  bottom: -12vh;
  right: 0;
  z-index: 1;
}
.p-work-child {
  position: relative;
  background-color: #ffffff;
  padding: 0 0 16rem 0;
}
@media (max-width: 992px) {
  .p-work-child {
    padding: 2rem 0 12rem 0;
  }
}
.p-work-child::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  width: 100%;
  background-image: url("../images/common/divider-wave-03.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  aspect-ratio: 1503/208;
}
@media (max-width: 768px) {
  .p-work-child::before {
    top: 5px;
    width: 100%;
    aspect-ratio: 804/103;
    background-image: url("../images/common/divider-wave-03-sp.svg");
  }
}
.p-work-child__title {
  font-family: "Kiwi Maru", "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  font-weight: 500;
  margin-bottom: clamp(1.5rem, 1rem + 2vw, 3.5rem);
  text-align: center;
}
.p-work-child__deco-blob {
  position: absolute;
  width: 15vw;
  bottom: 19vh;
  right: 4%;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-work-child__deco-blob {
    width: 23vw;
    bottom: 10vh;
  }
}

.p-evaluation-top {
  position: relative;
  background-color: #ffffff;
  padding: 2rem 0 10rem 0;
}
@media (max-width: 992px) {
  .p-evaluation-top {
    padding: 0 0 10rem 0;
  }
}
@media (max-width: 768px) {
  .p-evaluation-top {
    padding: 6rem 0 10rem 0;
  }
}
.p-evaluation-top .l-container {
  margin-top: -5rem;
}
@media (max-width: 992px) {
  .p-evaluation-top .l-container {
    margin-top: 0rem;
  }
}
@media (max-width: 768px) {
  .p-evaluation-top .l-container {
    margin-top: 0rem;
  }
}
.p-evaluation-top__container {
  position: relative;
  z-index: 5;
}
@media (max-width: 768px) {
  .p-evaluation-top__container {
    margin-top: 0rem;
  }
}
.p-evaluation-top__text {
  line-height: 2;
  width: 100%;
  margin: 0 auto 4rem auto;
  max-width: 750px;
}
.p-evaluation-top__list {
  width: 100%;
  margin: 0 auto;
  max-width: 750px;
}
.p-evaluation-top__item {
  width: 100%;
  padding: 1rem 2rem;
  position: relative;
}
@media (max-width: 768px) {
  .p-evaluation-top__item {
    padding: 1rem 0;
  }
}
.p-evaluation-top__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(to right, #e6e6cf, #e6e6cf 2px, transparent 2px, transparent 10px);
}
.p-evaluation-top__item:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(to right, #e6e6cf, #e6e6cf 2px, transparent 2px, transparent 10px);
}
.p-evaluation-top__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-evaluation-top__item-title {
  font-weight: bold;
  width: 30vw;
}
.p-evaluation-top__item-body {
  width: 70vw;
}
.p-evaluation-top__item-body a {
  display: block;
  margin-bottom: 0.5rem;
}
.p-evaluation-top__item-body a:last-child {
  margin-bottom: 0;
}
.p-evaluation-top__deco-blob {
  position: absolute;
  background: url("../images/common/deco-blob-green.png") no-repeat center/contain;
  width: 170px;
  height: 170px;
  top: 54%;
  left: 80%;
}
@media (max-width: 1200px) {
  .p-evaluation-top__deco-blob {
    width: 16%;
    height: 16%;
    top: 72%;
    left: 80%;
  }
}
@media (max-width: 768px) {
  .p-evaluation-top__deco-blob {
    width: 16%;
    height: 16%;
    top: 78%;
    left: 80%;
  }
}

.p-evaluation-detail {
  position: relative;
  background-color: #ffffff;
  padding: 2rem 0 15rem 0;
}
@media (max-width: 992px) {
  .p-evaluation-detail {
    padding: 0 0 10rem 0;
  }
}
@media (max-width: 768px) {
  .p-evaluation-detail {
    padding: 6rem 0 10rem 0;
  }
}
.p-evaluation-detail .l-container {
  margin-top: -5rem;
  width: 100%;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 992px) {
  .p-evaluation-detail .l-container {
    margin-top: 0rem;
    padding-left: 4.5rem;
  }
}
@media (max-width: 768px) {
  .p-evaluation-detail .l-container {
    margin-top: 0rem;
    padding-left: 1rem;
  }
}
.p-evaluation-detail__container {
  position: relative;
  z-index: 5;
}
@media (max-width: 768px) {
  .p-evaluation-detail__container {
    margin-top: 0rem;
  }
}
.p-evaluation-detail__title {
  font-family: "Kiwi Maru", "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: normal;
  margin-bottom: 3rem;
}
.p-evaluation-detail__body {
  width: 100%;
  margin-bottom: 3rem;
  position: relative;
  padding: 0 0 3rem 0;
}
.p-evaluation-detail__body::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(to right, #e6e6cf, #e6e6cf 2px, transparent 2px, transparent 10px);
}
.p-evaluation-detail__list {
  width: 100%;
  margin: 0 auto;
}
.p-evaluation-detail__list-title {
  font-weight: bold;
  margin-bottom: 1rem;
  word-break: keep-all;
}
.p-evaluation-detail__body-list {
  list-style: disc;
  padding-left: 0rem;
  margin-left: 2rem;
}
.p-evaluation-detail__body-item {
  margin-bottom: 0.5rem;
}
.p-evaluation-detail__deco-blob {
  position: absolute;
  background: url("../images/common/deco-blob-green.png") no-repeat center/contain;
  width: 170px;
  height: 170px;
  top: 95%;
  left: 100%;
  z-index: -1;
}
@media (max-width: 1200px) {
  .p-evaluation-detail__deco-blob {
    width: 16%;
    height: 16%;
    top: 95%;
    left: 80%;
  }
}
@media (max-width: 768px) {
  .p-evaluation-detail__deco-blob {
    width: 16%;
    height: 16%;
    top: 96%;
    left: 80%;
  }
}
.p-evaluation-detail__button {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 3rem;
}
.p-evaluation-detail__button .c-button {
  width: 100%;
  max-width: 420px;
}

.p-contact-top {
  position: relative;
  background-color: #ffffff;
  padding: 2rem 0 0 0;
}
@media (max-width: 768px) {
  .p-contact-top {
    padding: 6rem 0 2rem 0;
  }
}
.p-contact-top::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: auto;
  background-image: url("../images/common/divider-wave-02.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  aspect-ratio: 741/211;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-contact-top::after {
    bottom: 5px;
    width: 100%;
    aspect-ratio: 809/213;
    background-image: url("../images/common/divider-wave-02-sp.svg");
  }
}
.p-contact-top .l-container {
  margin-top: -5rem;
}
@media (max-width: 992px) {
  .p-contact-top .l-container {
    margin-top: 0rem;
  }
}
@media (max-width: 768px) {
  .p-contact-top .l-container {
    margin-top: 0rem;
  }
}
.p-contact-top__container {
  position: relative;
  z-index: 5;
}
.p-contact-top__text {
  line-height: 2;
  margin-bottom: 4rem;
}
.p-contact-top__button {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2rem;
}
.p-contact-top__button .c-button {
  padding: 1.5rem;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 48px;
}
.p-contact-top__button .c-button__icon {
  width: 16px;
  height: 16px;
}
.p-contact-top__button .c-button__text {
  font-size: 1.3rem;
}

.p-contact-form {
  position: relative;
  padding: 20rem 0 20rem;
  background-image: url("../images/common/bg-texture.jpg");
  background-size: cover;
  background-repeat: repeat;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-contact-form {
    padding: 8rem 0;
  }
}
.p-contact-form .c-content-description__text {
  padding-bottom: 2rem;
}
.p-contact-form__row {
  margin-bottom: 2rem;
}
.p-contact-form__label {
  display: block;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: #102448;
  margin-bottom: 0.5rem;
}
.p-contact-form__required {
  display: inline-block;
  background-color: #ff6b35;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.2rem 0.5rem;
  border-radius: 2rem;
  margin-right: 0.5rem;
  font-weight: bold;
}
.p-contact-form__optional {
  display: inline-block;
  background-color: #11c1d3;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
  margin-right: 0.5rem;
}
.p-contact-form__input {
  width: 100%;
}
.p-contact-form__input-text {
  width: 100%;
  padding: 1rem;
  border: 1px solid #cccccc;
  border-radius: 0.5rem;
  font-size: 1rem;
  background-color: #ffffff;
}
.p-contact-form__input-text::-webkit-input-placeholder {
  color: #999;
  font-size: 1rem;
}
.p-contact-form__input-text::-moz-placeholder {
  color: #999;
  font-size: 1rem;
}
.p-contact-form__input-text:-ms-input-placeholder {
  color: #999;
  font-size: 1rem;
}
.p-contact-form__input-text::-ms-input-placeholder {
  color: #999;
  font-size: 1rem;
}
.p-contact-form__input-text::placeholder {
  color: #999;
  font-size: 1rem;
}
.p-contact-form__input-text:focus {
  outline: none;
  border-color: #11c1d3;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.p-contact-form select {
  width: 100%;
  padding: 1rem;
  padding-right: 2.5rem;
  border: 1px solid #cccccc;
  border-radius: 0.5rem;
  font-size: 1rem;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 1rem center;
  background-repeat: no-repeat;
  background-size: 2em 2em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.p-contact-form select:focus {
  outline: none;
  border-color: #11c1d3;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.p-contact-form__textarea {
  width: 100%;
  min-height: 120px;
  padding: 1rem;
  border: 1px solid #cccccc;
  border-radius: 0.5rem;
  font-size: 1rem;
  background-color: #ffffff;
  -webkit-transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  resize: vertical;
}
.p-contact-form__textarea::-webkit-input-placeholder {
  color: #999;
  font-size: 1rem;
}
.p-contact-form__textarea::-moz-placeholder {
  color: #999;
  font-size: 1rem;
}
.p-contact-form__textarea:-ms-input-placeholder {
  color: #999;
  font-size: 1rem;
}
.p-contact-form__textarea::-ms-input-placeholder {
  color: #999;
  font-size: 1rem;
}
.p-contact-form__textarea::placeholder {
  color: #999;
  font-size: 1rem;
}
.p-contact-form__textarea:focus {
  outline: none;
  border-color: #11c1d3;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.p-contact-form__privacy {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0.5rem;
  text-align: center;
  margin: 0 0 2rem 0;
}
@media (max-width: 768px) {
  .p-contact-form__privacy {
    padding: 2rem 1rem;
  }
}
.p-contact-form__privacy p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #102448;
}
@media (max-width: 768px) {
  .p-contact-form__privacy p {
    text-align: left;
  }
}
.p-contact-form__privacy .p-contact-form__checkbox {
  margin-right: 0.5rem;
  width: 1.2rem;
  height: 1.2rem;
  accent-color: #11c1d3;
}
.p-contact-form__checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 2rem;
}
.p-contact-form__checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  color: #102448;
}
.p-contact-form__checkbox-label input[type=checkbox] {
  width: 1.2rem;
  height: 1.2rem;
  accent-color: #11c1d3;
}
.p-contact-form__button {
  max-width: 400px;
  margin: 0 auto;
  max-height: 70px;
}
.p-contact-form__button .c-button {
  padding: 1.5rem;
  border-radius: 48px;
}
.p-contact-form__button .c-button__icon {
  width: 16px;
  height: 16px;
}
.p-contact-form__button .c-button__text {
  font-size: 1.3rem;
}

.p-contact-phone {
  position: relative;
  background-color: #ffffff;
  padding: 4rem 0 18rem 0;
}
@media (max-width: 992px) {
  .p-contact-phone {
    padding: 4rem 0 10rem 0;
  }
}
.p-contact-phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  width: 100%;
  background-image: url("../images/common/divider-wave-03.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  aspect-ratio: 1503/208;
}
@media (max-width: 768px) {
  .p-contact-phone::before {
    top: 5px;
    width: 100%;
    aspect-ratio: 804/103;
    background-image: url("../images/common/divider-wave-03-sp.svg");
  }
}
.p-contact-phone__deco-blob {
  position: absolute;
  background: url("../images/common/deco-blob-green.png") no-repeat center/contain;
  width: 16%;
  height: 16%;
  bottom: 6%;
  left: 80%;
  z-index: 1;
}
@media (max-width: 1200px) {
  .p-contact-phone__deco-blob {
    width: 16%;
    height: 16%;
    bottom: 6%;
    left: 80%;
  }
}
@media (max-width: 768px) {
  .p-contact-phone__deco-blob {
    width: 16%;
    height: 16%;
    bottom: -2%;
    left: 80%;
  }
}
.p-contact-phone .c-content-description__text {
  padding-bottom: 2rem;
}
.p-contact-phone__list {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.p-contact-phone__prefecture {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #102448;
  padding-bottom: 1rem;
  position: relative;
}
.p-contact-phone__prefecture::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(to right, #e6e6cf, #e6e6cf 2px, transparent 2px, transparent 10px);
}
.p-contact-phone__table {
  overflow: hidden;
}
.p-contact-phone__row {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 1rem;
  padding: 0.5rem 2rem 0.5rem 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-contact-phone__row:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .p-contact-phone__row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1rem 0;
    text-align: center;
    position: relative;
  }
  .p-contact-phone__row::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-image: repeating-linear-gradient(to right, #e6e6cf, #e6e6cf 2px, transparent 2px, transparent 10px);
  }
}
.p-contact-phone__facility p {
  font-weight: bold;
  color: #102448;
  margin: 0;
  font-size: 1rem;
}
.p-contact-phone__services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .p-contact-phone__services {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-contact-phone__service-bubble {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid #102448;
}
.p-contact-phone__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 768px) {
  .p-contact-phone__tel {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-contact-phone__tel-icon {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-contact-phone__tel a {
  color: #102448;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
}

.p-confirm {
  position: relative;
  background-color: #ffffff;
  padding: 2rem 0 0 0;
  margin-bottom: 10rem;
}
@media (max-width: 768px) {
  .p-confirm {
    padding: 9rem 0 2rem 0;
    margin-bottom: 2rem;
  }
}
.p-confirm::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  width: 100%;
  background-image: url("../images/common/insta-wave-bg.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  aspect-ratio: 1485/384;
}
@media (max-width: 768px) {
  .p-confirm::after {
    aspect-ratio: 802/207;
    background-image: url("../images/common/insta-wave-bg-sp.svg");
  }
}
.p-confirm__container {
  max-width: 800px;
  padding-bottom: 1rem;
  margin: 0 auto;
  position: relative;
  top: -2rem;
}
.p-confirm .c-section-heading__ja {
  font-size: clamp(1.25rem, 1rem + 1vw, 1.875rem);
}
.p-confirm p {
  position: relative;
  z-index: 5;
}
.p-confirm__button {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}
.p-confirm .c-button {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.5rem 1rem 0.5rem 1rem;
}

.p-thanks {
  position: relative;
  background-color: #ffffff;
  padding: 2rem 0 0 0;
  margin-bottom: 10rem;
}
@media (max-width: 768px) {
  .p-thanks {
    padding: 6rem 0 2rem 0;
    margin-bottom: 2rem;
  }
}
.p-thanks::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  width: 100%;
  background-image: url("../images/common/insta-wave-bg.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  aspect-ratio: 1485/384;
}
@media (max-width: 768px) {
  .p-thanks::after {
    aspect-ratio: 802/207;
    background-image: url("../images/common/insta-wave-bg-sp.svg");
  }
}
.p-thanks .l-container {
  margin-top: -5rem;
}
@media (max-width: 992px) {
  .p-thanks .l-container {
    margin-top: 0rem;
  }
}
@media (max-width: 768px) {
  .p-thanks .l-container {
    margin-top: 0rem;
  }
}
.p-thanks__container {
  position: relative;
  z-index: 5;
}
.p-thanks .c-section-heading__ja {
  font-size: clamp(1.25rem, 1rem + 1vw, 1.875rem);
}
@media (max-width: 768px) {
  .p-thanks .c-section-heading__ja {
    text-align: center;
  }
}
.p-thanks__text {
  line-height: 2;
  margin-bottom: 4rem;
}
.p-thanks__button {
  width: 100%;
  max-width: 350px;
  margin: 3rem auto 0 auto;
}
.p-thanks__deco-blob {
  position: absolute;
  width: 17%;
  bottom: -30vh;
  right: 2%;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-thanks__deco-blob {
    width: 33%;
    bottom: -17%;
    right: 2%;
  }
}

/* ==================================================
   事業所一覧ページ
   ================================================== */
.p-outline-main {
  position: relative;
  background-color: #ffffff;
  padding: 0;
}
@media (max-width: 768px) {
  .p-outline-main {
    padding: 2rem 0 4rem;
  }
}
.p-outline-main::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: auto;
  background-image: url("../images/common/divider-wave-02.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  aspect-ratio: 741/211;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-outline-main::after {
    bottom: 5px;
    width: 100%;
    aspect-ratio: 809/213;
    background-image: url("../images/common/divider-wave-02-sp.svg");
  }
}
.p-outline-main__container {
  position: relative;
  padding: 0 5vw;
  top: -8rem;
}
@media (max-width: 1200px) {
  .p-outline-main__container {
    top: -4rem;
  }
}
@media (max-width: 768px) {
  .p-outline-main__container {
    top: 0;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .p-outline-main .l-container {
    padding: 0 3vw;
  }
}

.p-outline-terra {
  padding: 20rem 0 10rem 0;
  position: relative;
}
@media (max-width: 768px) {
  .p-outline-terra {
    padding: 0 0 12rem 0;
  }
}
.p-outline-terra__heading {
  position: absolute;
  z-index: 5;
  top: 6rem;
  left: 5%;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .p-outline-terra__heading {
    position: relative;
    top: 0;
    margin-bottom: 2rem;
  }
}
.p-outline-terra__container {
  position: relative;
  z-index: 10;
}
.p-outline-terra__main {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .p-outline-terra__main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .p-outline-terra__image {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .p-outline-terra__content {
    text-align: center;
  }
}
.p-outline-terra__text {
  font-size: clamp(0.75rem, 1vw + 0.5rem, 1rem);
  font-style: normal;
  line-height: 2;
  margin-bottom: 1em;
}
.p-outline-terra__list {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  font-weight: bold;
  margin-bottom: 0.5em;
}
.p-outline-terra__service-type {
  font-size: clamp(0.75rem, 1vw + 0.5rem, 1rem);
  font-style: normal;
  margin-bottom: 2em;
}
.p-outline-terra__button {
  width: 350px;
}
@media (max-width: 768px) {
  .p-outline-terra__button {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
}
.p-outline-terra__deco-img {
  position: absolute;
  width: 15vw;
  max-width: 200px;
  top: -10rem;
  right: 0;
  z-index: 1;
  -webkit-transform: rotate(8deg);
          transform: rotate(8deg);
}
@media (max-width: 768px) {
  .p-outline-terra__deco-img {
    width: 27vw;
    top: -2rem;
  }
}
.p-outline-terra__deco-blob {
  position: absolute;
  width: 13vw;
  max-width: 200px;
  aspect-ratio: 1/1;
  bottom: -20%;
  right: 0;
  z-index: -1;
}
@media (max-width: 768px) {
  .p-outline-terra__deco-blob {
    width: 25%;
    bottom: -24%;
    right: 0;
  }
}

/* ==================================================
   ご利用案内ページ
   ================================================== */
.p-guide-flow {
  position: relative;
  background-color: #ffffff;
  padding: 2rem 0 10rem 0;
}
@media (max-width: 768px) {
  .p-guide-flow {
    padding: 4rem 0 10rem 0;
  }
}
.p-guide-flow::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: auto;
  background-image: url("../images/common/divider-wave-02.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  aspect-ratio: 741/211;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-guide-flow::after {
    bottom: 5px;
    width: 100%;
    aspect-ratio: 809/213;
    background-image: url("../images/common/divider-wave-02-sp.svg");
  }
}
.p-guide-flow__heading {
  position: absolute;
  top: -10rem;
  left: 5%;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (max-width: 1200px) {
  .p-guide-flow__heading {
    top: -4rem;
  }
}
@media (max-width: 768px) {
  .p-guide-flow__heading {
    position: relative;
    top: 0;
  }
}
.p-guide-flow__container {
  position: relative;
  top: -4rem;
  padding: 0 5vw;
  z-index: 1;
}
@media (max-width: 1200px) {
  .p-guide-flow__container {
    padding-top: 4rem;
  }
}
@media (max-width: 768px) {
  .p-guide-flow__container {
    top: 0;
    padding: 0 3vw;
  }
}
.p-guide-flow__deco-blob {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 18vw;
  z-index: -1;
}
@media (max-width: 768px) {
  .p-guide-flow__deco-blob {
    bottom: -16vh;
    left: 40vw;
    width: 50vw;
    z-index: -1;
  }
}

.p-guide-info {
  position: relative;
  padding: 10rem 0 24rem;
}
@media (max-width: 768px) {
  .p-guide-info {
    padding: 0 0 8rem;
  }
}
.p-guide-info__heading {
  position: absolute;
  top: 0;
  left: 5%;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-guide-info__heading {
    position: relative;
  }
}
@media (max-width: 768px) {
  .p-guide-info__heading .c-section-heading {
    gap: 0.5rem;
  }
}
.p-guide-info__container {
  position: relative;
  z-index: 2;
  top: 10rem;
}
@media (max-width: 768px) {
  .p-guide-info__container {
    top: 2rem;
  }
}
.p-guide-info__wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.p-guide-info__title {
  font-family: "Kiwi Maru", "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  font-weight: 500;
  margin-bottom: clamp(1.5rem, 5vw, 2rem);
  text-align: center;
}
.p-guide-info__deco-circle {
  position: absolute;
  width: 10vw;
  top: 30vh;
  right: 3%;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-guide-info__deco-circle {
    display: none;
  }
}
.p-guide-info__deco-circle2 {
  position: absolute;
  width: 8vw;
  bottom: 5vh;
  left: 5%;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-guide-info__deco-circle2 {
    position: absolute;
    width: 15vw;
    bottom: 0;
  }
}
.p-guide-info__list {
  margin-bottom: 6rem;
}
.p-guide-info__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5em;
  padding: 1.5em 0;
  line-height: 2;
  font-size: clamp(0.95rem, 1vw + 0.8rem, 1rem);
}
@media (max-width: 768px) {
  .p-guide-info__item {
    gap: 0;
  }
}
.p-guide-info__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(to right, #cccca3, #cccca3 2px, transparent 2px, transparent 10px);
}
.p-guide-info__term {
  -ms-flex-preferred-size: 12em;
      flex-basis: 12em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 700;
  padding-right: 2em;
}
@media (max-width: 768px) {
  .p-guide-info__term {
    -ms-flex-preferred-size: 7em;
        flex-basis: 7em;
  }
}
.p-guide-info__description {
  margin: 0;
}
.p-guide-info__description-single {
  text-align: center;
  line-height: 2;
}
@media (max-width: 768px) {
  .p-guide-info__description-single {
    text-align: left;
  }
}

.p-guide-question {
  position: relative;
  background-color: #ffffff;
  padding: 4rem 0 18rem 0;
}
@media (max-width: 992px) {
  .p-guide-question {
    padding: 4rem 0 10rem 0;
  }
}
.p-guide-question__deco-circle {
  position: absolute;
  bottom: -15vh;
  right: 2vw;
  width: 10vw;
}
.p-guide-question::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  width: 100%;
  background-image: url("../images/common/divider-wave-03.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  aspect-ratio: 1503/208;
}
@media (max-width: 768px) {
  .p-guide-question::before {
    top: 5px;
    width: 100%;
    aspect-ratio: 804/103;
    background-image: url("../images/common/divider-wave-03-sp.svg");
  }
}
.p-guide-question .p-guide-question__container {
  position: relative;
  margin-top: 4rem;
}
.p-guide-question .p-guide-question__question,
.p-guide-question .p-guide-question__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0;
  z-index: 1;
}
.p-guide-question .p-guide-question__question {
  font-family: "Kiwi Maru", "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: clamp(1.25rem, 2.5vw + 0.5rem, 1.75rem);
  font-weight: 500;
  color: #11c1d3;
  margin-bottom: 0.5em;
  padding-top: 1.5rem;
}
.p-guide-question .p-guide-question__question::before {
  content: "Q.";
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  margin-right: 0.5em;
  line-height: 1;
}
.p-guide-question .p-guide-question__answer {
  line-height: 2;
  position: relative;
  padding-bottom: 1.5rem;
}
.p-guide-question .p-guide-question__answer::before {
  content: "A.";
  color: #f26e14;
  font-family: "Kiwi Maru", "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  font-weight: 500;
  margin-right: 0.5em;
  line-height: 1;
}
.p-guide-question .p-guide-question__answer:not(:last-child) {
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .p-guide-question .p-guide-question__answer:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}
.p-guide-question .p-guide-question__answer::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(to right, #e6e6cf, #e6e6cf 2px, transparent 2px, transparent 10px);
}
@media (max-width: 768px) {
  .p-guide-question .p-guide-question__answer::after {
    bottom: -0.75rem;
  }
}
@media (max-width: 768px) {
  .p-guide-question .p-guide-question__deco-circle {
    position: absolute;
    bottom: -9vh;
    right: 2vw;
    width: 25vw;
  }
}

/* ==================================================
   404ページ
   ================================================== */
.p-404-content {
  position: relative;
  background-color: #ffffff;
  padding: 2rem 0 0 0;
  margin-bottom: 10rem;
  height: 50px;
}
@media (max-width: 992px) {
  .p-404-content {
    padding: 0;
    height: 8rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .p-404-content {
    padding: 3rem 0 2rem 0;
    height: auto;
    margin-bottom: 2rem;
  }
}
.p-404-content::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  width: 100%;
  background-image: url("../images/common/insta-wave-bg.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  aspect-ratio: 1485/384;
}
@media (max-width: 768px) {
  .p-404-content::after {
    aspect-ratio: 802/207;
    background-image: url("../images/common/insta-wave-bg-sp.svg");
  }
}
.p-404-content__container {
  position: absolute;
  top: -5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  width: 100%;
}
@media (max-width: 992px) {
  .p-404-content__container {
    top: -5rem;
  }
}
@media (max-width: 768px) {
  .p-404-content__container {
    position: relative;
    top: 0rem;
  }
}
.p-404-content__button {
  width: 100%;
  max-width: 350px;
  margin: 2rem auto 0 auto;
}
.p-404-content__deco-blob {
  position: absolute;
  width: 17%;
  bottom: -30vh;
  right: 2%;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-404-content__deco-blob {
    width: 33%;
    bottom: -37%;
    right: 2%;
  }
}

/* ==================================================
   マージンユーティリティ
   ================================================== */
.u-mt-s {
  margin-top: 10px;
}

.u-mt-m {
  margin-top: 20px;
}

.u-mt-l {
  margin-top: 40px;
}

.u-mb-s {
  margin-bottom: 10px;
}

.u-mb-m {
  margin-bottom: 20px;
}

.u-mb-l {
  margin-bottom: 40px;
}

.u-ml-s {
  margin-left: 10px;
}

.u-mr-s {
  margin-right: 10px;
}

.u-mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ==================================================
   ディスプレイユーティリティ
   ================================================== */
.u-sp-only {
  display: block;
}
@media (min-width: 768px) {
  .u-sp-only {
    display: none;
  }
}

.u-pc-only {
  display: none;
}
@media (min-width: 768px) {
  .u-pc-only {
    display: block;
  }
}

/* ==================================================
   アニメーション用スタイル
   ================================================== */
/* アニメーションの基本設定 */
.fade-in {
  opacity: 0;
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}

/* 上方向へのスライドイン */
.fade-in-up {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

/* 左方向からのスライドイン */
.fade-in-left {
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}

/* 右方向からのスライドイン */
.fade-in-right {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}

/* 時間差アニメーション用 */
.delay-100 {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.delay-200 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.delay-300 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.delay-400 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.delay-600 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.delay-800 {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

/* 画面内に入ったら適用するクラス */
.is-visible {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0); /* 位置を元に戻す */
}

/* スケールアニメーション */
.scale-in {
  opacity: 0;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}
.scale-in.is-visible {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* 回転アニメーション */
.rotate-in {
  opacity: 0;
  -webkit-transform: rotate(-10deg) scale(0.9);
          transform: rotate(-10deg) scale(0.9);
  -webkit-transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out, -webkit-transform 1s ease-out;
}
.rotate-in.is-visible {
  opacity: 1;
  -webkit-transform: rotate(0deg) scale(1);
          transform: rotate(0deg) scale(1);
}

@keyframes floatUpDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes subtleRotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* 上下にゆらゆら揺れる */
.u-anim-float {
  -webkit-animation: floatUpDown 5s ease-in-out infinite alternate;
          animation: floatUpDown 5s ease-in-out infinite alternate;
}

/* ゆっくり回転し続ける */
.u-anim-rotate-slow {
  -webkit-animation: subtleRotate 20s linear infinite;
          animation: subtleRotate 20s linear infinite;
}

/* ==================================================
   スクロール連動型コンテンツ表示アニメーション
   ================================================== */
.slide-in-img {
  position: relative;
  overflow: hidden;
}
.slide-in-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 20;
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.slide-in-img.is-visible::before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.slide-in-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.slide-in-img.is-visible img {
  -webkit-transform: scale(1);
          transform: scale(1);
}/*# sourceMappingURL=style.css.map */