@charset "UTF-8";
/* ------------------------
    base
------------------------ */
html,
body {
  overflow-x: clip;
}

body {
  min-height: 100svh;
  line-height: 1.5;
  line-break: strict;
  word-break: normal;
  overflow-wrap: anywhere;
}

a {
  display: block;
}

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

textarea {
  resize: vertical;
}

/* ------------------------
    utility
------------------------ */
.u-word {
  display: inline-block;
}

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

.u-tab {
  display: none;
}
@media (max-width: 1024px) {
  .u-tab {
    display: block;
  }
}

.u-sp {
  display: none;
}
@media (max-width: 768px) {
  .u-sp {
    display: block;
  }
}

:root {
  --base-font-color: #000;
  --white: #fff;
  --main: #374ca7;
  --accent: #f46188;
  --navy: #0f1a4d;
  --light-blue: #c1c9f0;
  --bg-pink: #ffebf0;
  --bg-light-blue: #e1e5f5;
  --transition: 0.3s ease;
  --fs-16: 1rem;
  --fs-18: 1.125rem;
  --fs-19: 1.1875rem;
  --fs-20: 1.25rem;
  --fs-24: 1.5rem;
  --fs-26: 1.625rem;
  --fs-30: 1.875rem;
  --fs-40: 2.5rem;
  --fs-70: 4.375rem;
  --lh-20: 1.8;
  --header-height: 90px;
  --br-s: 20px;
  --br-m: 40px;
}

@media (max-width: 1024px) {
  :root {
    --fs-16: 0.9375rem;
    --fs-18: 1.0625rem;
    --fs-19: 1.125rem;
    --fs-20: 1.1875rem;
    --fs-24: 1.3125rem;
    --fs-26: 1.4375rem;
    --fs-30: 1.6875rem;
    --fs-40: 2.3125rem;
    --fs-70: 4.0625rem;
    --br-s: 15px;
    --br-m: 30px;
  }
}
@media (max-width: 768px) {
  :root {
    --fs-16: 0.875rem;
    --fs-18: 0.9375rem;
    --fs-19: 1rem;
    --fs-20: 1.0625rem;
    --fs-24: 1.1875rem;
    --fs-26: 1.25rem;
    --fs-30: 1.3125rem;
    --fs-40: 1.75rem;
    --fs-70: 2.875rem;
    --br-s: 10px;
    --br-m: 15px;
    --header-height: 50px;
  }
}
/* ------------------------
    common
------------------------ */
body {
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  position: relative;
  font-size: var(--fs-16);
  font-weight: 500;
  line-height: 1.6875;
  color: var(--base-font-color);
  background-color: var(--white);
}

main {
  position: relative;
  overflow: clip;
}

.section {
  padding-top: 125px;
  padding-bottom: 130px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .section {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}

.inner {
  width: 92%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
.inner--m {
  max-width: 1100px;
}
.inner--l {
  max-width: 1200px;
}
@media (max-width: 768px) {
  .inner {
    width: 90%;
  }
}

.btn {
  position: relative;
  display: grid;
  place-content: center;
  width: fit-content;
  min-width: 400px;
  min-height: 70px;
  padding: 1em;
  margin-inline: auto;
  margin-top: 50px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  background: url("../images/icon_arrow_right.svg") no-repeat calc(100% - 1.5em) center/0.5em, var(--accent);
  border: 1px solid var(--accent);
  border-radius: 9999px;
  transition: transform var(--transition);
}
@media (max-width: 1024px) {
  .btn {
    font-size: 1.0625rem;
  }
}
@media (max-width: 768px) {
  .btn {
    min-width: 300px;
    min-height: 60px;
    margin-top: 30px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover, .btn:focus {
    transform: scale(1.07);
  }
}
@media (hover: none) {
  .btn:active {
    transform: scale(1.07);
  }
}

.heading-container {
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .heading-container {
    margin-bottom: 40px;
  }
}

.heading-container-s {
  margin-bottom: 50px;
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 768px) {
  .heading-container-s {
    margin-bottom: 40px;
  }
}

.heading {
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
}
@media (max-width: 1024px) {
  .heading {
    font-size: 2.625rem;
  }
}
@media (max-width: 768px) {
  .heading {
    font-size: 1.875rem;
  }
}

.heading-en {
  font-family: REM, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.heading-container-s .heading-en {
  font-size: 2rem;
  color: var(--accent);
}
@media (max-width: 768px) {
  .heading-container-s .heading-en {
    font-size: 1.5rem;
  }
}
.heading-container .heading-en {
  margin-bottom: -0.45em;
  font-size: 150px;
  line-height: 1;
}
@media (max-width: 1024px) {
  .heading-container .heading-en {
    font-size: 100px;
  }
}
@media (max-width: 768px) {
  .heading-container .heading-en {
    font-size: 70px;
  }
}

.lead {
  margin-bottom: 100px;
  font-size: var(--fs-20);
  line-height: var(--lh-20);
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .lead {
    margin-bottom: 60px;
  }
}

#entry-btn {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
}

#entry-btn.is-show {
  visibility: visible;
  opacity: 1;
}

.entry-btn-group {
  position: fixed;
  right: 10px;
  bottom: 10%;
  z-index: 30;
}
@media (max-width: 768px) {
  .entry-btn-group {
    right: 0;
    bottom: 0;
    transform: translateY(100%);
    transition: transform var(--transition);
  }
  .entry-btn-group.is-show {
    transform: translateY(0);
  }
}

.entry-btn {
  width: 180px;
  transition: transform 0.3s cubic-bezier(0.45, 0, 0.55, 1);
}
@media (max-width: 1024px) {
  .entry-btn {
    width: 140px;
  }
}
@media (max-width: 768px) {
  .entry-btn {
    width: 90px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .entry-btn:hover, .entry-btn:focus {
    transform: scale(1.07);
  }
}
@media (hover: none) {
  .entry-btn:active {
    transform: scale(1.07);
  }
}

/* ------------------------
    header
------------------------ */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding-right: 15px;
  background-color: var(--white);
}
.header_logo {
  display: flex;
  align-items: center;
  width: auto;
  height: 100%;
  padding-inline: 35px 43px;
  border-bottom-right-radius: var(--br-20);
  transition: opacity var(--transition);
}
@media (max-width: 768px) {
  .header_logo {
    width: 200px;
    height: auto;
    padding-inline: 0;
    margin-left: 10px;
    border-radius: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header_logo:hover, .header_logo:focus {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .header_logo:active {
    opacity: 0.7;
  }
}
.header_logo img {
  width: auto;
  height: 64%;
}
@media (max-width: 1300px) {
  .header_logo img {
    height: 52%;
  }
}
@media (max-width: 1200px) {
  .header_logo img {
    height: 64%;
  }
}

.header-nav {
  border-radius: var(--br-20);
  transition: transform var(--transition);
}
.header-nav_list {
  display: flex;
  gap: 0 1.5em;
  align-items: center;
  padding: 20px 40px;
  font-size: 1.0625rem;
  text-align: center;
}
@media (max-width: 1300px) {
  .header-nav_list {
    font-size: 1rem;
  }
}
.header-nav_link {
  transition: color var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .header-nav_link:hover, .header-nav_link:focus {
    color: var(--accent);
  }
}
@media (hover: none) {
  .header-nav_link:active {
    color: var(--accent);
  }
}
.header-nav_btn-wrap {
  display: none;
}
.header-nav_btn {
  width: 13em;
  padding: 0.9em 1em;
  font-size: 1.125rem;
  color: var(--white);
  background-color: var(--accent);
  transition: background-color 0.3s cubic-bezier(0.45, 0, 0.55, 1);
}
@media (hover: hover) and (pointer: fine) {
  .header-nav_btn:hover, .header-nav_btn:focus {
    background-color: #f23064;
  }
}
@media (hover: none) {
  .header-nav_btn:active {
    background-color: #f23064;
  }
}

.hamburger {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 150;
  display: none;
  width: calc(var(--header-height) - 10px);
  height: calc(var(--header-height) - 10px);
  background-color: var(--main);
  border-radius: 50%;
}
.hamburger > span {
  position: absolute;
  left: 50%;
  display: block;
  width: 58%;
  height: 3px;
  background: var(--white);
  transform: translateX(-50%);
  transition: ease 0.3s;
}
@media (max-width: 768px) {
  .hamburger > span {
    height: 2px;
  }
}
.hamburger > span:nth-of-type(1) {
  top: 34%;
}
.hamburger > span:nth-of-type(2) {
  top: 49%;
}
.hamburger > span:nth-of-type(3) {
  top: 64%;
}
.hamburger.js-close > span:nth-of-type(1) {
  top: 49%;
  transform: translateX(-50%) rotate(35deg);
}
.hamburger.js-close > span:nth-of-type(2) {
  opacity: 0;
}
.hamburger.js-close > span:nth-of-type(3) {
  top: 50%;
  transform: translateX(-50%) rotate(-35deg);
}

@media (max-width: 1200px) {
  .header {
    position: relative;
    padding: 4px 10px;
    margin-bottom: calc(var(--header-height) * -1);
    background-color: unset;
  }
  .header-nav-container {
    position: fixed;
    inset: 0;
    z-index: 99;
    visibility: hidden;
    width: 100vw;
    height: 100vh;
    overflow: hidden auto;
    overscroll-behavior-y: none;
    content: "";
    background: rgba(29, 32, 136, 0.7) !important;
    opacity: 0;
    backdrop-filter: unset;
    transition: opacity var(--transition);
  }
  .js-active .header-nav-container {
    visibility: visible;
    opacity: 1;
  }
  .header-nav-container::after {
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100%;
    height: calc(100% + 1px);
    pointer-events: none;
    content: "";
  }
  .header-nav {
    display: grid;
    align-content: center;
    width: min(90%, 400px);
    min-height: 100%;
    padding: var(--header-height) 1em 50px;
    margin-left: auto;
    background-color: var(--white);
    border-radius: 0;
    transform: translateX(110%);
    transition: transform var(--transition);
  }
  .js-active .header-nav {
    transform: translateX(0);
  }
  .header-nav_list {
    flex-direction: column;
    row-gap: 1.8em;
    font-size: 1.125rem;
  }
}
@media (max-width: 1200px) and (max-width: 768px) {
  .header-nav_list {
    row-gap: 1.2em;
    font-size: 1.0625rem;
  }
}
@media (max-width: 1200px) {
  .header-nav_item {
    width: 100%;
  }
  .header-nav_item + .header-nav_btn-wrap {
    margin-top: 1em;
  }
  .header-nav_btn-wrap {
    display: block;
  }
  .hamburger {
    display: block;
  }
}
/* ------------------------
    footer
------------------------ */
.footer {
  position: relative;
  padding: 50px 5% 60px;
  font-size: 0.9375rem;
  color: var(--white);
  background-color: var(--main);
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 2% 80px;
    font-size: 0.75rem;
  }
}
@media (max-width: 500px) {
  .footer {
    font-size: 0.6875rem;
  }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em 2em;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .footer-nav {
    margin-bottom: 10px;
  }
}
.footer-nav_item {
  position: relative;
}
.footer-nav_item::before {
  position: absolute;
  top: 50%;
  bottom: 0;
  left: -1em;
  width: 1px;
  height: 1.1em;
  content: "";
  background-color: var(--white);
  opacity: 0;
  transform: translate(-50%, -50%);
}
.footer-nav_item:first-child::before,
.footer-nav_item .is-first-in-row::before {
  opacity: 0;
}
.footer-nav_item:not(.is-first-in-row)::before {
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .footer-nav_item:hover, .footer-nav_item:focus {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .footer-nav_item:active {
    opacity: 0.7;
  }
}

.copyright {
  line-height: 1.3;
  text-align: center;
}

/* ------------------------
    mv
------------------------ */
.mv {
  position: relative;
  padding-top: 1vw;
  padding-bottom: 4.0625vw;
  margin-top: var(--header-height);
  background: url("../images/bg_mv.svg") no-repeat center calc(100% + 18.75vw)/106.25vw;
}
@media (max-width: 768px) {
  .mv {
    padding-bottom: 30vw;
    background: url("../images/bg_mv.svg") no-repeat center calc(100% - 21.25vw)/106.25vw, linear-gradient(to bottom, var(--white) calc(100% - 61.25vw), var(--bg-pink) calc(100% - 31.25vw), var(--bg-pink) 100%);
  }
}
.mv::after {
  position: absolute;
  top: 2%;
  left: 9%;
  z-index: 1;
  display: block;
  width: 14.125%;
  aspect-ratio: 225/313;
  content: "";
  background: url("../images/deco_01.svg") no-repeat center/contain;
}
@media (max-width: 768px) {
  .mv::after {
    top: 1%;
    left: 2%;
    width: 25%;
  }
}
@media (max-width: 768px) {
  .mv_slide {
    padding-inline: 5%;
  }
}
.mv_txt-container {
  position: absolute;
  bottom: 1.5625vw;
  left: 5%;
  z-index: 5;
}
@media (max-width: 1024px) {
  .mv_txt-container {
    bottom: 0.5vw;
  }
}
@media (max-width: 768px) {
  .mv_txt-container {
    bottom: 4.5vw;
  }
}
.mv_copy {
  width: 53.125vw;
}
@media (max-width: 1024px) {
  .mv_copy {
    width: 58vw;
  }
}
@media (max-width: 768px) {
  .mv_copy {
    width: 98%;
  }
}
.mv_site-name {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 0.4em;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--main);
  letter-spacing: 0.04em;
}
@media (max-width: 1024px) {
  .mv_site-name {
    font-size: 1.3125rem;
  }
}
@media (max-width: 768px) {
  .mv_site-name {
    font-size: 3.5vw;
  }
}
.mv_site-name::before {
  width: 1em;
  height: 3px;
  content: "";
  background-color: currentcolor;
}
@media (max-width: 768px) {
  .mv_site-name::before {
    height: 2px;
  }
}
.mv_entry {
  position: absolute;
  right: 4%;
  bottom: 2%;
  z-index: 5;
  width: min(26.25%, 420px);
  transition: transform 0.2s ease;
}
@media (max-width: 768px) {
  .mv_entry {
    right: 1%;
    bottom: 23%;
    width: 165px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .mv_entry:hover, .mv_entry:focus {
    transform: scale(1.07);
  }
}
@media (hover: none) {
  .mv_entry:active {
    transform: scale(1.07);
  }
}

/* ------------------------
    message
------------------------ */
.message {
  position: relative;
  padding-block: 165px;
  text-align: center;
  background-color: var(--bg-pink);
}
@media (max-width: 768px) {
  .message {
    padding-block: 115px;
  }
}
.message::after {
  position: absolute;
  right: 15%;
  bottom: 2%;
  z-index: 1;
  display: block;
  width: max(170px, 12.125%);
  aspect-ratio: 37/39;
  content: "";
  background: url("../images/deco_02.svg") no-repeat center/contain;
}
@media (max-width: 1300px) {
  .message::after {
    right: 150px;
  }
}
@media (max-width: 1024px) {
  .message::after {
    right: 5%;
    width: 18%;
  }
}
@media (max-width: 768px) {
  .message::after {
    width: 110px;
  }
}
.message_heading {
  font-family: REM, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.1em;
  font-size: 3.25rem;
  color: var(--main);
}
@media (max-width: 768px) {
  .message_heading {
    font-size: 2.375rem;
  }
}
.message_container {
  position: relative;
  z-index: 1;
}
.message_txt {
  font-size: var(--fs-20);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .message_txt {
    font-size: 1rem;
  }
}
.message_txt + .message_txt {
  margin-top: 0.7em;
}
.message_txt .emphasis {
  font-size: 1.2em;
  font-weight: 700;
  color: #f23064;
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: var(--bg-light-blue);
  text-decoration-skip-ink: none;
  text-underline-offset: -0.2em;
}
@media (max-width: 768px) {
  .message_txt .emphasis {
    display: inline-block;
    font-size: 1em;
    text-decoration: none;
  }
}
.message_bg {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  min-width: 1200px;
  transform: translate(-50%, -46%);
}
@media (max-width: 1024px) {
  .message_bg {
    min-width: 1070px;
  }
}
@media (max-width: 768px) {
  .message_bg {
    min-width: 880px;
    transform: translate(-50%, -49%);
  }
}

/* ------------------------
    about
------------------------ */
.about {
  padding-top: 50px;
  padding-bottom: 70px;
  background: url("../images/bg_works.svg") no-repeat center calc(100% + 12.5vw)/106.25vw, var(--bg-pink);
}
@media (max-width: 1300px) {
  .about {
    padding-top: 8vw;
  }
}
@media (max-width: 1024px) {
  .about {
    padding-top: 16vw;
  }
}
@media (max-width: 768px) {
  .about {
    padding-top: 20vw;
  }
}
.about .heading-container-s {
  position: relative;
  width: fit-content;
  margin-inline: auto;
}
.about .heading-container-s::before {
  position: absolute;
  right: calc(100% + 2vw);
  bottom: 0;
  display: block;
  width: min(16.25vw, 260px);
  aspect-ratio: 263/198;
  content: "";
  background: url("../images/deco_03.svg") no-repeat center/contain;
}
@media (max-width: 1300px) {
  .about .heading-container-s::before {
    bottom: 100%;
    left: 0;
    width: 200px;
    transform: translateY(20%);
  }
}
@media (max-width: 1024px) {
  .about .heading-container-s::before {
    width: 170px;
    transform: translateY(25%);
  }
}
@media (max-width: 768px) {
  .about .heading-container-s::before {
    left: 50%;
    width: 120px;
    transform: translateX(-148%);
  }
}
.about_item-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 5%;
}
@media (max-width: 1024px) {
  .about_item-group {
    gap: 20px 2%;
  }
}
@media (max-width: 768px) {
  .about_item-group {
    grid-template-columns: 90%;
    justify-content: center;
  }
}
.about_item {
  padding: 30px 10px 45px;
  color: var(--white);
  text-align: center;
  background-color: var(--accent);
  border-radius: var(--br-m);
}
@media (max-width: 768px) {
  .about_item {
    padding: 20px 10px 25px;
  }
}
.about_item:nth-child(even) {
  background-color: var(--main);
}
.about_item-ttl {
  font-size: 2rem;
}
@media (max-width: 1024px) {
  .about_item-ttl {
    font-size: 1.75rem;
  }
}
@media (max-width: 768px) {
  .about_item-ttl {
    font-size: 1.375rem;
  }
}
.about_item-txt {
  font-size: var(--fs-18);
}
.about_item-link {
  margin-top: 0.5em;
  text-decoration: underline;
}

/* ------------------------
    works
------------------------ */
.works {
  padding-top: 30px;
  padding-bottom: 70px;
}
.works .heading-container {
  text-align: center;
}
.works .heading-en {
  color: var(--bg-light-blue);
}
.works_top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 4%;
}
@media (max-width: 768px) {
  .works_top {
    grid-template-columns: 1fr;
  }
}
.works_img {
  border-radius: var(--br-s);
}
.works_cont {
  display: grid;
  gap: 10px;
  align-items: start;
}
.works_cont-ttl {
  display: flex;
  gap: 0.5em;
  align-items: center;
  font-size: var(--fs-24);
  font-weight: 700;
}
.works_cont-ttl::before {
  width: 8px;
  height: 1.3em;
  content: "";
  background-color: var(--main);
  border-radius: 9999px;
  transform: translateY(5%);
}
.works_shift {
  align-self: end;
  padding: 8px 24px 12px;
  border: 6px solid var(--bg-light-blue);
  border-radius: var(--br-s);
}
.works_shift-ttl {
  display: flex;
  gap: 0.4em;
  align-items: center;
  margin-bottom: 0.3em;
  font-weight: 700;
  color: var(--main);
}
.works_shift-ttl::before {
  width: 1.1em;
  aspect-ratio: 1;
  content: "";
  background: url("../images/icon_clock.svg") no-repeat center/contain;
  transform: translateY(5%);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 4%;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .stats {
    grid-template-columns: 90%;
    justify-content: center;
  }
}
.stats_item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 15px;
  padding: 20px 25px 40px;
  font-weight: 700;
  color: var(--main);
  text-align: center;
  background-color: var(--bg-light-blue);
  border-radius: var(--br-s);
}
@media (max-width: 768px) {
  .stats_item {
    padding: 20px 25px 22px;
  }
}
.stats_item-img {
  max-height: 130px;
}
@media (max-width: 768px) {
  .stats_item-img {
    max-height: 110px;
  }
}
.stats_item-ttl {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .stats_item-ttl {
    font-size: 1.4375rem;
  }
}
.stats_item-txt {
  align-content: center;
  line-height: 1.5;
}

/* ------------------------
    voice
------------------------ */
.voice {
  position: relative;
  padding-top: 230px;
  padding-bottom: 460px;
  margin-bottom: -200px;
  background: url("../images/bg_works.svg") no-repeat center calc(0% - 15.625vw)/106.25vw, url("../images/deco_07.svg") no-repeat 5% 120px/23.8125vw, url("../images/deco_08.svg") no-repeat 95% calc(100% - 270px)/23.8125vw, var(--main);
}
@media (max-width: 768px) {
  .voice {
    padding-top: 210px;
    padding-bottom: 320px;
    margin-bottom: -70px;
    background-position: center calc(0% - 15.625vw), 5% 60px, 95% calc(100% - 170px);
    background-size: 106.25vw, min(37%, 230px), min(37%, 230px);
  }
}
.voice::before {
  position: absolute;
  top: 0;
  right: 5%;
  display: block;
  width: min(19.875%, 350px);
  aspect-ratio: 53/50;
  content: "";
  background: url("../images/deco_06.svg") no-repeat center/contain;
}
@media (max-width: 768px) {
  .voice::before {
    width: max(120px, 19.875%);
  }
}
.voice .heading {
  color: var(--white);
}
.voice_item {
  display: flex;
  gap: 45px;
  max-width: 670px;
}
@media (max-width: 768px) {
  .voice_item {
    gap: 15px;
  }
}
.voice_item + .voice_item {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .voice_item + .voice_item {
    margin-top: 35px;
  }
}
.voice_item:nth-child(odd) {
  margin-left: auto;
}
.voice_comment {
  position: relative;
  flex: 1;
  align-content: center;
  padding: 1em;
  font-size: var(--fs-24);
  font-weight: 700;
  line-height: 1.36;
  color: var(--navy);
  text-align: center;
  background-color: var(--accent);
  border-radius: 9999px;
}
@media (max-width: 768px) {
  .voice_comment {
    font-size: 0.9375rem;
  }
}
.voice_comment::before {
  position: absolute;
  top: 45%;
  right: 0;
  display: block;
  width: 72px;
  aspect-ratio: 1;
  content: "";
  background-image: url("../images/deco_04.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateX(46%);
}
@media (max-width: 768px) {
  .voice_comment::before {
    width: 50px;
  }
}
.voice_item:nth-child(even) .voice_comment::before {
  right: unset;
  left: 0;
  background-image: url("../images/deco_05.svg");
  transform: translateX(-46%) rotate(180deg);
}
.voice_comment .emphasis {
  color: var(--white);
}
.voice_item:nth-child(odd) .voice_comment {
  background-color: var(--white);
}
.voice_item:nth-child(odd) .voice_comment .emphasis {
  color: var(--accent);
}
.voice_avatar {
  width: 140px;
}
@media (max-width: 768px) {
  .voice_avatar {
    width: 80px;
  }
}
.voice_item:nth-child(even) .voice_avatar {
  order: -1;
}

/* ------------------------
    flow
------------------------ */
.flow {
  position: relative;
  padding-top: 100px;
  padding-bottom: 330px;
  margin-bottom: -200px;
  background-color: var(--bg-light-blue);
  border-top-right-radius: 200px;
}
@media (max-width: 1024px) {
  .flow {
    border-top-right-radius: 150px;
  }
}
@media (max-width: 768px) {
  .flow {
    padding-top: 70px;
    padding-bottom: 150px;
    margin-bottom: -70px;
    border-top-right-radius: 70px;
  }
}
.flow::before {
  position: absolute;
  top: calc(0% - 70px);
  left: 3%;
  display: block;
  width: 31.75%, 550px;
  aspect-ratio: 127/90;
  content: "";
  background: url("../images/deco_09.svg") no-repeat center/contain;
}
@media (max-width: 768px) {
  .flow::before {
    width: max(170px, 31.75%);
  }
}
.flow .heading-container {
  text-align: right;
}
@media (max-width: 768px) {
  .flow .heading {
    padding-right: 0.5em;
  }
}
.flow .heading-en {
  color: var(--light-blue);
}
@media (max-width: 768px) {
  .flow_list-wrap {
    display: flex;
  }
}
.flow_list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 175px);
  justify-content: space-between;
}
@media (max-width: 768px) {
  .flow_list {
    grid-template-columns: repeat(4, auto);
    gap: 3%;
  }
}
.flow_list::before {
  position: absolute;
  top: 87.5px;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 10px;
  content: "";
  background-color: var(--white);
}
@media (max-width: 768px) {
  .flow_list::before {
    top: 34%;
    height: 5px;
  }
}
@media (max-width: 768px) {
  .flow_item {
    max-width: 120px;
  }
}
.flow_item-ttl {
  margin-top: 0.3em;
  font-size: var(--fs-24);
  font-weight: 700;
  color: var(--main);
  text-align: center;
}
@media (max-width: 768px) {
  .flow_item-ttl {
    font-size: 1.0625rem;
  }
}
.flow_arrow {
  margin-top: 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .flow_arrow {
    width: 92%;
    margin-inline: auto;
    margin-top: 10px;
  }
}
.flow_arrow-img {
  transform: translateX(-100%);
  transform-origin: left;
  animation: arrowDraw 2s 3s ease forwards;
}
@keyframes arrowDraw {
  to {
    transform: translateX(0);
  }
}
.flow_txt {
  margin-top: 10px;
  font-size: var(--fs-20);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
}
@media (max-width: 768px) {
  .flow_txt {
    font-size: 0.9375rem;
  }
}

/* ------------------------
    area
------------------------ */
.area {
  position: relative;
  padding-top: 100px;
  padding-bottom: 110px;
  background: url("../images/deco_10.svg") no-repeat 97% 100px/26.125%, var(--bg-pink);
  border-top-left-radius: 200px;
}
@media (max-width: 1024px) {
  .area {
    border-top-left-radius: 150px;
  }
}
@media (max-width: 768px) {
  .area {
    padding-top: 70px;
    background-position: calc(100% + 19px) 136px;
    background-size: 140px;
    border-top-left-radius: 70px;
  }
}
@media (max-width: 768px) {
  .area .heading {
    padding-left: 0.5em;
  }
}
.area .heading-en {
  color: #fcc8d6;
}
.area_cont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 4%;
  align-items: start;
  color: var(--navy);
}
@media (max-width: 768px) {
  .area_cont {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .area_list-container {
    padding-left: 2%;
  }
}
.area_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 1em;
  font-size: var(--fs-20);
}
@media (max-width: 768px) {
  .area_list {
    font-size: 1rem;
  }
}
.area_list-ttl {
  display: flex;
  gap: 0.5em;
  align-items: center;
  margin-bottom: 0.5em;
  font-size: 1.75rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .area_list-ttl {
    margin-bottom: 0.2em;
    font-size: 1.3125rem;
  }
}
.area_list-ttl::before {
  width: 10px;
  height: 1.3em;
  content: "";
  background-color: var(--main);
  border-radius: 9999px;
  transform: translateY(5%);
}
@media (max-width: 768px) {
  .area_list-ttl::before {
    width: 6px;
  }
}
.area_list-ttl--accent::before {
  background-color: var(--accent);
}
.area_list + .area_list-ttl {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .area_list + .area_list-ttl {
    margin-top: 23px;
  }
}
.area .office-link {
  text-decoration: underline;
  transition: color 0.2s ease;
}
.area .office-link.is-active {
  color: var(--accent);
}
@media (hover: hover) and (pointer: fine) {
  .area .office-link:hover, .area .office-link:focus {
    color: var(--accent);
  }
}
@media (hover: none) {
  .area .office-link:active {
    color: var(--accent);
  }
}

.map {
  width: min(100%, 480px);
  padding: 23px 7%;
  margin-left: auto;
  background-color: var(--white);
  border-radius: var(--br-m);
}
@media (max-width: 768px) {
  .map {
    width: 100%;
  }
}
.map svg {
  display: block;
  width: min(90%, 310px);
  margin-inline: auto;
}
.map .map-pin * {
  transition: fill 0.2s ease;
}
.map .map-pin.is-active * {
  fill: var(--accent) !important;
}
@media (hover: hover) and (pointer: fine) {
  .map .map-pin:hover *, .map .map-pin:focus * {
    fill: var(--accent) !important;
  }
}
@media (hover: none) {
  .map .map-pin:active * {
    fill: var(--accent) !important;
  }
}

/* ------------------------
    company
------------------------ */
.company {
  padding-top: 100px;
  padding-bottom: 100px;
  color: var(--navy);
}
@media (max-width: 768px) {
  .company {
    padding-top: 70px;
    padding-bottom: 50px;
  }
}
.company_heading {
  font-family: REM, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 50px;
  font-size: 4.5rem;
  color: var(--main);
  text-align: center;
}
@media (max-width: 768px) {
  .company_heading {
    margin-bottom: 30px;
    font-size: 2.375rem;
  }
}
.company_img {
  border-radius: var(--br-m);
}
.company_cont-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 5%;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .company_cont-wrap {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 40px;
  }
}
.company_item {
  font-weight: 700;
}
.company_item + .company_item {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .company_item + .company_item {
    margin-top: 15px;
  }
}
.company_item-ttl {
  display: flex;
  gap: 0.5em;
  align-items: center;
  margin-bottom: 0.5em;
  font-size: 1.75rem;
}
@media (max-width: 768px) {
  .company_item-ttl {
    margin-bottom: 0.2em;
    font-size: 1.25rem;
  }
}
.company_item-ttl::before {
  width: 10px;
  height: 1.3em;
  content: "";
  background-color: var(--main);
  border-radius: 9999px;
  transform: translateY(5%);
}
@media (max-width: 768px) {
  .company_item-ttl::before {
    width: 6px;
  }
}
.company_item-ttl--accent::before {
  background-color: var(--accent);
}
.company_item-txt {
  font-size: var(--fs-20);
}
@media (max-width: 768px) {
  .company_item-txt {
    font-size: 0.9375rem;
  }
}
.company_detail-item {
  position: relative;
  padding-left: 1em;
}
.company_detail-item::before {
  position: absolute;
  left: 0;
  content: "・";
}
.company_logo {
  display: block;
  width: 320px;
  margin-top: 45px;
  margin-left: auto;
}
@media (max-width: 768px) {
  .company_logo {
    width: 220px;
    margin-top: 25px;
  }
}/*# sourceMappingURL=style.css.map */