@charset "UTF-8";
/******
共通
******/
:root {
  --inner-padding: 15px;
  --font-size-base: 0.9375rem;
  --font-size-16: 0.9375rem;
  --font-size-20: 1.125rem;
  --font-size-22: 1.125rem;
  --font-size-24: 1.25rem;
  --font-size-28: 1.375rem;
  --font-size-30: 1.375rem;
  --font-size-32: 1.5rem;
  --inner-width-small: 1000px;
  --inner-width-normal: 1100px;
  --color-link: #FB6B71;
  --color-pink: #F7C9CB;
  --color-pink-2: #F89A9E;
  --color-pink-bg: #FEEAEB;
  --color-pink-bg-2: #F7EEEB;
  --color-black: #585455;
  --color-yellow: #F8EEC4;
  --color-yellow-2: #FAF4E3;
  --color-blue: #D5E9E9;
  --color-green: #DEEBC5;
  --color-green-2: #ADD664;
  --color-border: #B0B0B0;
  --color-border-pink: #DDCCCC;
  --font-family-base: "Sawarabi Gothic", sans-serif;
  --font-family-en: "Poppins", sans-serif;
  --line-height-base: 1.5;
  --line-height-large: 1.8;
}

@media screen and (min-width: 768px) {
  :root {
    --inner-padding: 50px;
    --line-height-large: 2;
    --font-size-16: 0.9375rem;
    --font-size-20: 1.25rem;
    --font-size-22: 1.375rem;
    --font-size-24: 1.5rem;
    --font-size-28: 1.75rem;
    --font-size-30: 1.875rem;
    --font-size-32: 2rem;
  }
}
* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

p {
  line-height: var(--line-height-large);
}

ul, ol {
  list-style: none;
}

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

html {
  font-size: 4.2666666667vw;
}

@media screen and (min-width: 375px) {
  html {
    font-size: 100%;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  html {
    font-size: 100%;
  }
}
body {
  font-family: var(--font-family-base);
  color: var(--color-black);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
}

/*****
layout
*****/
.l-siteWrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.l-main {
  flex: 1;
}

.l-container {
  margin-inline: auto;
  position: relative;
}

.l-container--normal {
  width: min(100% - min(var(--inner-padding) * 2), var(--inner-width-normal));
}

.l-container--small {
  width: min(100% - var(--inner-padding) * 2, var(--inner-width-small));
}

/*****
parts
*****/
.c-title-1--center {
  text-align: center;
}

.c-title-1__en {
  font-size: var(--font-size-20);
  font-weight: 500;
  color: var(--color-pink);
  letter-spacing: 0.1em;
  font-family: var(--font-family-en);
  text-transform: uppercase;
}

.c-title-1__en--regular {
  text-transform: none;
}

.c-title-1__ja {
  font-size: var(--font-size-30);
  font-weight: 400;
}

.c-title-h2 {
  font-size: var(--font-size-30);
  font-weight: 400;
  letter-spacing: 0.1em;
}

.c-title-2.c-title-2--center {
  text-align: center;
}

.c-title-2 {
  --_color: var(--color-black);
}

.c-title-2--pink.c-title-2 {
  --_color: var(--color-pink);
}

.c-title-2__en {
  display: inline-block;
  margin-bottom: 4px;
  text-transform: uppercase;
  font-size: var(--font-size-16);
  font-weight: 400;
  letter-spacing: 0.1em;
  font-family: var(--font-family-en);
  color: var(--_color);
}

.c-title-2__ja {
  font-size: var(--font-size-32);
  font-weight: 400;
}

/** c-table **/
.c-table {
  width: 1000px;
  border-collapse: collapse;
  border: 1px solid var(--color-border);
  table-layout: fixed;
}
.c-table th,
.c-table td {
  border: 1px solid var(--color-border);
  text-align: left;
  vertical-align: middle;
  padding: 1.5em;
  line-height: var(--line-height-large);
}
.c-table__col-1 {
  width: 7.5rem;
}
.c-table__col-2 {
  width: 12.1875rem;
}
.c-table__col-3 {
  width: 7.25rem;
}
.c-table__col-4 {
  width: auto;
}
.c-table thead th {
  background-color: var(--color-green-2);
  font-weight: 400;
  color: #fff;
  text-align: center;
}
.c-table tbody th {
  background-color: #fff;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
}
.c-table tbody td {
  background-color: #fff;
}

/** utility **/
.u-only-sp {
  display: block;
}

@media screen and (min-width: 768px) {
  .u-only-sp {
    display: none;
  }
}
/** l-header **/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.l-header__inner {
  padding-top: 13px;
  padding-inline: 15px;
  display: flex;
  justify-content: space-between;
}

.l-header__logo {
  cursor: pointer;
  width: 150px;
  display: block;
}
.l-header__logo img {
  width: 100%;
  height: auto;
  aspect-ratio: 250/63;
}

.l-header__menu-button {
  --_offset: 4px;
  --_size: 40px;
  width: var(--_size);
  height: var(--_size);
  display: block;
  background-color: var(--color-link);
  border-radius: 50%;
  border: none;
  position: relative;
  z-index: 5;
  cursor: pointer;
}
.l-header__menu-button span {
  display: block;
  width: 34.2857142857%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transition: all 0.3s ease-out;
}
.l-header__menu-button span:nth-child(1) {
  translate: -50% calc(-50% - var(--_offset));
}
.l-header__menu-button span:nth-child(2) {
  translate: -50% -50%;
}
.l-header__menu-button span:nth-child(3) {
  translate: -50% calc(-50% + var(--_offset));
}

.l-header__menu-button.is-active span:nth-child(1) {
  translate: -50% -50%;
  rotate: 45deg;
}
.l-header__menu-button.is-active span:nth-child(2) {
  translate: -50% -50%;
  opacity: 0;
}
.l-header__menu-button.is-active span:nth-child(3) {
  translate: -50% -50%;
  rotate: -45deg;
}

@media screen and (min-width: 768px) {
  .l-header__logo {
    width: 250px;
    transition: opacity 0.3s ease-out;
  }
  .l-header__logo:hover {
    opacity: 0.75;
  }
  .l-header__inner {
    padding-top: 24px;
    padding-left: 22px;
    padding-right: 38px;
  }
  .l-header__menu-button {
    --_offset: 9px;
    --_size: 70px;
  }
}
/** l-header__nav **/
.l-header__nav {
  z-index: 3;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background-color: var(--color-link);
  max-height: 100vh;
  height: 100%;
  font-size: var(--font-size-18);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
}

.l-header__nav.is-active {
  transform: translateX(0);
}

.l-header__nav-list {
  padding-inline: 40px;
  padding-top: 60px;
  padding-bottom: 70px;
}

@media screen and (min-width: 768px) {
  .l-header__nav {
    width: min(100%, 550px);
  }
  .l-header__nav-list {
    padding-inline: 80px;
    padding-top: 140px;
    padding-bottom: 100px;
  }
}
.l-header__nav-link {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #fff;
  font-weight: 500;
  padding: 20px 0;
  transition: opacity 0.3s ease-out;
}

.l-header__nav-link:hover {
  opacity: 0.75;
}

/** p-hero **/
.p-hero {
  padding-top: 65px;
  width: 100%;
  height: auto;
  min-height: 640px;
  background-color: var(--color-pink-bg-2);
  overflow-x: clip;
}

.p-hero__inner {
  position: relative;
  height: inherit;
  display: flex;
  flex-direction: column-reverse;
}

.p-hero__title {
  padding-bottom: 80px;
  position: relative;
  z-index: 3;
  padding-inline: 15px;
  padding-bottom: 30px;
}

.p-hero__title h1 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.p-hero__title p {
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  line-height: 1.7777777778em;
}

.p-hero__figure {
  margin-bottom: 20px;
  width: var(--_width);
  margin-inline: auto;
}
.p-hero__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: var(--_aspect-ratio);
}

.p-hero__figure--1,
.p-hero__figure--2 {
  display: none;
}

.p-hero__figure--3 {
  --_width: min(100%, 500px);
  --_aspect-ratio: 339.45 / 402;
}

.p-hero__icon {
  z-index: 2;
  position: absolute;
  bottom: 0;
  width: 11.1875rem;
  right: -80px;
  translate: 0 50%;
}
.p-hero__icon img {
  width: 100%;
  height: auto;
  aspect-ratio: 224/121;
}

@media screen and (min-width: 768px) {
  .p-hero {
    padding-top: 0;
    height: 700px;
    min-height: 0;
  }
  .p-hero__inner {
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
  }
  .p-hero__title {
    padding-bottom: 80px;
  }
  .p-hero__title h1 {
    margin-bottom: 30px;
    font-size: 2.25rem;
  }
  .p-hero__title p {
    font-size: 0.875rem;
  }
  .p-hero__figure {
    margin-bottom: 0;
    position: absolute;
    margin-inline: 0;
  }
  .p-hero__figure--1,
  .p-hero__figure--2 {
    display: block;
  }
  .p-hero__figure--1 {
    --_width: 21.25rem;
    --_aspect-ratio: 340 / 261;
    bottom: 185px;
    left: -12.1875rem;
  }
  .p-hero__figure--2 {
    --_width: 21.625rem;
    --_aspect-ratio: 345.93 / 360;
    bottom: 245px;
    left: 10.3125rem;
  }
  .p-hero__figure--3 {
    --_width: 46.125rem;
    --_aspect-ratio: 738 / 586;
    bottom: 0;
    left: 31.25rem;
  }
  .p-hero__icon {
    translate: 0 100%;
    right: auto;
    width: 14rem;
    left: -11.875rem;
  }
}
/** p-concept **/
.p-concept {
  margin-bottom: 60px;
}

.p-concept__text-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.p-concept__figure img {
  display: block;
  width: min(100%, 400px);
  aspect-ratio: 529.63/574;
  height: auto;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .p-concept {
    margin-bottom: 110px;
  }
  .p-concept__text-wrapper {
    grid-template-columns: 53.1818181818% 1fr;
    gap: 50px;
  }
  .p-concept__figure img {
    width: min(37.8571428571vw, 530px);
    margin-inline: 0;
  }
}
.p-concept__title {
  margin-bottom: 30px;
}

.p-concept__text {
  font-size: var(--font-size-16);
}

.p-concept__text p:not(:last-child) {
  margin-bottom: 2em;
}

/** p-persona **/
.p-persona {
  margin-bottom: 60px;
}

.p-persona__title {
  margin-bottom: 35px;
  text-align: center;
}

.p-persona__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 40px;
}

.p-persona__list-item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  gap: 38px;
}

.p-persona__list-item--yellow {
  --color-bg: var(--color-yellow);
}

.p-persona__list-item--green {
  --color-bg: var(--color-green);
}

.p-persona__list-item--blue {
  --color-bg: var(--color-blue);
}

.p-persona__list-item-number {
  position: relative;
}

.p-persona__list-item-number svg {
  fill: var(--color-bg);
  width: min(100%, 340px);
  aspect-ratio: 340/261;
  height: auto;
  margin-inline: auto;
  display: block;
}

.p-persona__list-item-number-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -65%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.p-persona__list-item-number-text div {
  font-size: var(--font-size-30);
  font-weight: 500;
  letter-spacing: 0.1em;
  font-family: var(--font-family-en);
  line-height: 1;
}
.p-persona__list-item-number-text h3 {
  font-size: var(--font-size-22);
  font-weight: 400;
}

.p-persona__icon {
  display: none;
}

@media screen and (min-width: 768px) {
  .p-persona {
    margin-bottom: 100px;
  }
  .p-persona__title {
    margin-bottom: 50px;
  }
  .p-persona__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .p-persona__icon {
    display: block;
    position: absolute;
    top: 45px;
    right: 0;
    translate: 70% 0;
    width: clamp(50px, 5.5vw, 77px);
    aspect-ratio: 76.84/235.01;
    height: auto;
  }
}
/** p-work **/
.p-work {
  background-color: var(--color-pink-bg-2);
  padding-bottom: 60px;
}

.p-work__title,
.p-work__lead {
  margin-bottom: 30px;
  text-align: center;
}

.p-work__lead {
  font-size: var(--font-size-22);
  line-height: 1.8;
}

.p-work__paragraph {
  margin-bottom: 60px;
}

.p-work__table-wrapper {
  margin-bottom: 40px;
  padding-bottom: 3px;
}

.p-work__list {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.p-work__list-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.p-work__list-item dt {
  width: min(100%, 135px);
  margin-inline: auto;
  aspect-ratio: 1;
  background-color: var(--color-green-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-16);
  color: #fff;
  border-radius: 50%;
}
.p-work__list-item dd {
  line-height: var(--line-height-large);
}

.p-work__icon {
  display: block;
  width: clamp(145px, 19.646%, 196.46px);
  aspect-ratio: 196.46/277.01;
  height: auto;
  margin-inline: auto;
}

.p-work__table-wrapper {
  overflow-x: auto;
}

@media screen and (min-width: 768px) {
  .p-work__paragraph {
    margin-bottom: 100px;
  }
  .p-work__table-wrapper {
    margin-bottom: 55px;
  }
  .p-work__list {
    margin-bottom: 0;
    gap: 25px;
  }
  .p-work__list-item {
    align-items: center;
    grid-template-columns: 8.4375rem 1fr;
    width: min(75.5%, 755px);
    gap: 50px;
  }
  .p-work__icon {
    position: absolute;
    bottom: 0;
    right: 0;
    width: min(19.646%, 196.46px);
  }
}
/** p-message **/
.p-message {
  margin-bottom: 70px;
}

.p-message__title {
  margin-bottom: 40px;
}

.p-message__figure {
  margin-bottom: 50px;
}
.p-message__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1100/400;
}

.p-message__blocks,
.p-message__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.p-message__list dt {
  font-size: var(--font-size-24);
  margin-bottom: 18px;
}
.p-message__list dd {
  font-size: var(--font-size-16);
  line-height: var(--line-height-large);
}

@media screen and (min-width: 768px) {
  .p-message {
    margin-bottom: 130px;
  }
  .p-message__title {
    margin-bottom: 70px;
  }
  .p-message__figure {
    margin-bottom: 50px;
  }
  .p-message__blocks,
  .p-message__list {
    gap: 50px;
  }
}
/** p-space **/
.p-space {
  margin-top: -30px;
  padding-bottom: 60px;
  background-color: var(--color-yellow);
}

.p-space__section:not(:last-child) {
  margin-bottom: 60px;
}

.p-space__title {
  margin-bottom: 60px;
}

.p-space__subtitle,
.p-space__lead {
  margin-bottom: 30px;
}

.p-space__subtitle,
.p-space__lead,
.p-space__paragraph {
  text-align: center;
}

.p-space__subtitle {
  font-size: var(--font-size-28);
  font-weight: 400;
  font-family: var(--font-family-en);
}

.p-space__lead {
  font-size: var(--font-size-22);
  font-weight: 400;
}

.p-space__paragraph {
  margin-bottom: 50px;
}

.p-space__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 10px;
  justify-content: center;
}

.p-space__item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 1fr auto;
  gap: 0;
  background-color: #fff;
  border-radius: 10px;
  padding: 13px 15px;
}

.p-space__item h4 {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 14px;
}

.p-space__item p {
  margin-bottom: 1em;
  font-size: 0.75rem;
  line-height: var(--line-height-normal);
}

.p-space__item-icon {
  margin-bottom: 5px;
}
.p-space__item-icon img {
  display: block;
  width: min(100%, 90px);
  height: auto;
  aspect-ratio: 120/120;
  margin-inline: auto;
}

.p-space__item-lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.p-space__item-list {
  text-align: center;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--_background-color);
  border-radius: 4px;
}

.p-space__item-list--green {
  --_background-color: var(--color-green);
}

.p-space__item-list--blue {
  --_background-color: var(--color-blue);
}

@media screen and (min-width: 768px) {
  .p-space {
    margin-top: -40px;
    padding-bottom: 100px;
  }
  .p-space__title {
    margin-bottom: 100px;
  }
  .p-space__section:not(:last-child) {
    margin-bottom: 100px;
  }
  .p-space__paragraph {
    margin-bottom: 60px;
  }
  .p-space__items {
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 340px));
    gap: 30px 40px;
  }
  .p-space__item {
    padding: 50px 24px;
  }
  .p-space__item h4 {
    font-size: 1.5rem;
  }
  .p-space__item p {
    font-size: 1rem;
  }
  .p-space__item-icon img {
    width: min(100%, 120px);
  }
}
.p-space__edu-lists {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.p-space__edu-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 40px 20px 30px;
  background-color: #fff;
  border-radius: 10px;
}

.p-space__edu-figure img {
  display: block;
  width: min(100%, 300px);
  height: auto;
  aspect-ratio: 300/200;
  margin-inline: auto;
}

.p-space__edu-text h4 {
  font-size: var(--font-size-24);
  font-weight: 400;
  margin-bottom: 0.75em;
}

@media screen and (min-width: 768px) {
  .p-space__edu-lists {
    gap: 50px;
  }
  .p-space__edu-list {
    padding: 60px 50px 50px;
    grid-template-columns: 30.303030303% 1fr;
    gap: 50px;
  }
}
/** p-office **/
.p-office {
  padding-bottom: 75px;
  background-color: var(--color-yellow);
}

.p-office__title,
.p-office__lead {
  margin-bottom: 30px;
  text-align: center;
}

.p-office__lead {
  font-size: var(--font-size-22);
}

.p-office__paragraph {
  width: fit-content;
  margin-inline: auto;
  text-align: left;
  margin-bottom: 35px;
}

.p-office__images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 10px;
  justify-content: center;
}

.p-office__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 340/264;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .p-office {
    padding-bottom: 150px;
  }
  .p-office__images {
    gap: 40px;
  }
  .p-office__paragraph {
    text-align: center;
  }
}
/** p-way **/
.p-way {
  margin-bottom: 70px;
}

.p-way__title {
  margin-bottom: 30px;
}

.p-way__blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.p-way__block-title {
  margin-bottom: 30px;
  background-color: #ADD664;
  height: 4.375rem;
  font-size: var(--font-size-24);
  color: #fff;
  display: flex;
  align-items: center;
  border-radius: 10px;
  padding: 0 1.4583333333em;
}

.p-way__block-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.p-way__block-figure {
  padding: 0 30px;
}
.p-way__block-figure img {
  display: block;
  width: min(100%, 240px);
  aspect-ratio: 240/240;
  height: auto;
  margin-inline: auto;
  object-fit: cover;
  border-radius: 50%;
}

.p-way__block-lists {
  margin-bottom: 24px;
  line-height: var(--line-height-large);
}

@media screen and (min-width: 768px) {
  .p-way {
    margin-bottom: 130px;
  }
  .p-way__title {
    margin-bottom: 60px;
  }
  .p-way__blocks {
    gap: 60px;
  }
  .p-way__block-title {
    margin-bottom: 50px;
  }
  .p-way__block-content {
    grid-template-columns: 27.2727272727% 1fr;
    gap: 35px;
  }
  .p-way__block-figure {
    padding: 0 30px;
  }
}
/** p-data **/
.c-decoration {
  position: relative;
}
.c-decoration > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
  min-height: 100px;
}

.c-decoration--white {
  background-color: #fff;
  padding-top: max(100px, 10vw);
}

.c-decoration--yellow {
  padding-top: max(100px, 7.8571428571vw);
  background-color: var(--color-yellow);
}

.c-decoration--pink {
  padding-top: max(100px, 7.8571428571vw);
  background-color: var(--color-pink-bg);
}

.c-decoration--pink-2 {
  padding-top: max(100px, 12.5vw);
  background-color: var(--color-pink-bg-2);
}

.p-data {
  background-color: var(--color-pink-bg);
  padding-top: 60px;
  padding-bottom: 60px;
}

.p-data__title {
  text-align: center;
  margin-bottom: 30px;
}

.p-data__lead {
  text-align: center;
  margin-bottom: 40px;
  font-size: var(--font-size-22);
}

.p-data__lists {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px 0;
}

.p-data__list {
  padding: 0 20px;
}

.p-data__list-title {
  text-align: center;
  font-size: var(--font-size-24);
  font-weight: 400;
  margin-bottom: 0.8333333333em;
}

.p-data__list-paragraph {
  text-align: center;
}

.p-data__list-figure {
  margin-bottom: 30px;
}

.p-data__list-figure img {
  width: min(100%, 356px);
  height: auto;
  aspect-ratio: 1;
  display: block;
  margin-inline: auto;
}

.p-data__list-icon {
  width: min(100%, 240px);
  border-radius: 50%;
  aspect-ratio: 356/356;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--_background-color);
}

.p-data__list-icon-number {
  font-size: 3.125rem;
  font-family: var(--font-family-en);
  color: #fff;
}

.p-data__list-icon--light-pink {
  --_background-color: var(--color-pink);
}

.p-data__list-icon--deep-pink {
  --_background-color: var(--color-pink-2);
}

@media screen and (min-width: 600px) {
  .p-data__lists {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 0;
  }
}
@media screen and (min-width: 768px) {
  .p-data {
    padding-top: 115px;
    padding-bottom: 115px;
  }
  .p-data__lead {
    margin-bottom: 85px;
  }
  .p-data__list-icon {
    width: min(100%, 356px);
  }
}
/** p-sdgs **/
.p-sdgs {
  margin-bottom: 60px;
}

.p-sdgs__title {
  text-align: center;
  margin-bottom: 50px;
}

.p-sdgs__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 90px;
}

.p-sdgs__item-title-wrapper {
  position: relative;
}

.p-sdgs__item-images {
  margin-bottom: 40px;
  width: min(100%, 26.875rem);
  height: auto;
  display: flex;
}
.p-sdgs__item-images img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  width: 25%;
}

.p-sdgs__item-title--green {
  --_background-color: var(--color-green);
}

.p-sdgs__item-title--pink {
  --_background-color:#F5E4E3;
}

.p-sdgs__item-title--blue {
  --_background-color:#D5E9E9;
}

.p-sdgs__item-title {
  margin-bottom: 10px;
  display: flex;
  gap: 30px;
  align-items: center;
  letter-spacing: 0.1em;
  background-color: var(--_background-color);
  border-radius: 10px;
  padding: 0 1.875rem;
  height: 4.0625rem;
}

@media screen and (min-width: 768px) {
  .p-sdgs {
    margin-bottom: 120px;
  }
  .p-sdgs__item-images {
    margin-bottom: 0px;
    position: absolute;
    top: 0;
    right: 20px;
    translate: 0 -30%;
    justify-content: flex-end;
    gap: 10px;
  }
  .p-sdgs__item-images img {
    width: calc(25% - 7.5px);
  }
  .p-sdgs__item-title {
    margin-bottom: 50px;
    height: 5.9375rem;
    padding: 0 2.8125rem;
  }
}
.p-sdgs__item-title-en {
  font-size: var(--font-size-20);
  font-weight: 300;
  font-family: var(--font-family-en);
  text-transform: capitalize;
}

.p-sdgs__item-title-ja {
  font-size: var(--font-size-28);
  font-weight: 400;
}

.p-sdgs__item-lists {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.p-sdgs__item-list dt {
  font-size: var(--font-size-20);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.p-sdgs__item-list dd {
  line-height: var(--line-height-large);
}

@media screen and (min-width: 768px) {
  .p-sdgs {
    padding-top: 60px;
  }
  .p-sdgs__title {
    margin-bottom: 85px;
  }
}
/** p-recruit **/
.p-recruit {
  margin-bottom: 60px;
}

.p-recruit__title {
  text-align: center;
}

.p-recruit__title,
.p-recruit__lists {
  margin-bottom: 40px;
}

.p-recruit__lists {
  display: flex;
  gap: 20px;
}

.p-recruit__list {
  --_color: var(--color-pink-2);
  --_background-color: #fff;
  font-size: var(--font-size-20);
  font-weight: 400;
  font-family: inherit;
  color: var(--_color);
  background-color: var(--_background-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 14.0625rem);
  height: 3.75rem;
  border: 1px solid var(--color-pink-2);
  transition: all 0.3s ease-out;
  cursor: pointer;
  padding: 0;
}

.p-recruit__list.is-active {
  --_color: #fff;
  --_background-color: var(--color-pink-2);
  pointer-events: none;
}

.p-recruit__data-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  padding: 20px 0;
  border-top: 1px solid var(--color-border-pink);
}
.p-recruit__data-list:last-child {
  border-bottom: 1px solid var(--color-border-pink);
}
.p-recruit__data-list dt {
  font-weight: 700;
}
.p-recruit__data-list dt, .p-recruit__data-list dd {
  padding: 0 15px;
  line-height: var(--line-height-large);
}
.p-recruit__data-list strong {
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .p-recruit {
    margin-bottom: 100px;
  }
  .p-recruit__title,
  .p-recruit__lists {
    margin-bottom: 60px;
  }
  .p-recruit__list:hover {
    opacity: 0.8;
  }
  .p-recruit__data-list {
    gap: 0px;
    grid-template-columns: 11.875rem 1fr;
    padding: 25px 0;
  }
  .p-recruit__data-list dt {
    font-weight: 400;
  }
  .p-recruit__data-list dt, .p-recruit__data-list dd {
    padding: 0 30px;
  }
}
/** p-entry **/
.p-entry {
  margin-bottom: 60px;
}

.p-entry__title {
  text-align: center;
  margin-bottom: 35px;
}

.p-entry__form-icon {
  display: block;
  height: auto;
  position: absolute;
  bottom: -25px;
}

.p-entry__form-icon--woman {
  width: clamp(50px, 8.3333333333vw, 100px);
  aspect-ratio: 100.88/262;
  left: 0;
  translate: -30% 0;
}

.p-entry__form-icon--man {
  width: clamp(45px, 7.5475vw, 90.57px);
  aspect-ratio: 90.57/277.01;
  right: 0;
  translate: 35% 0;
}

.p-entry__phone {
  position: relative;
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: var(--color-yellow-2);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(100%, 40rem);
  margin-inline: auto;
}

.p-entry__phone-title {
  font-size: var(--font-size-28);
  font-weight: 400;
  margin-bottom: 1em;
}

.p-entry__phone-link {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--color-black);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1;
  font-family: var(--font-family-en);
  letter-spacing: 0.05em;
  transition: color 0.3s ease-out;
}
.p-entry__phone-link svg {
  vertical-align: middle;
  width: 1rem;
  height: auto;
  aspect-ratio: 16/22;
  fill: currentColor;
  transition: fill 0.3s ease-out;
}

.p-entry__form-header {
  margin-bottom: 30px;
}

.p-entry__form-title {
  font-size: var(--font-size-28);
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .p-entry {
    margin-bottom: 100px;
  }
  .p-entry__title {
    margin-bottom: 65px;
  }
  .p-entry__form-icon {
    bottom: -33px;
  }
  .p-entry__form-icon--woman {
    translate: -50% 0;
  }
  .p-entry__form-icon--man {
    translate: 50% 0;
  }
  .p-entry__phone {
    margin-bottom: 100px;
    padding: 73px 50px 62px;
  }
  .p-entry__phone-link {
    font-size: 2.25rem;
  }
  .p-entry__phone-link:hover {
    color: var(--color-link);
  }
  .p-entry__form-header {
    margin-bottom: 60px;
  }
}
/** form **/
.p-form {
  width: min(100%, 1000px);
}

.p-form__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 25px 0;
}

.p-form__label {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 400;
}

.p-form__required {
  display: inline-block;
  background-color: var(--color-pink-2);
  color: #fff;
  font-size: 0.8125rem;
  padding: 7px 13px;
  border-radius: 5px;
  line-height: 1;
}

.p-form__field {
  width: 100%;
}

.p-form__field--radio {
  display: flex;
  align-items: center;
  gap: 2em;
}

.p-form__field--inline {
  display: flex;
  align-items: center;
  gap: 8px;
}

.p-form__input {
  display: block;
  width: 100%;
  border: 1px solid #BABABA;
  border-radius: 0;
  padding: 0.7em 1em;
}
.p-form__input::placeholder {
  color: #BABABA;
}

.p-form__input--small {
  width: 120px;
}

.p-form__input--medium {
  width: 300px;
  max-width: 100%;
}

.p-form__input--full {
  width: 100%;
}

.p-form__unit {
  font-size: var(--font-size-base);
  white-space: nowrap;
}

.p-form__radio-label {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.p-form__radio {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-border);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
.p-form__radio:checked {
  border-color: var(--color-link);
}
.p-form__radio:checked::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: var(--color-link);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-form__select {
  padding: 0.7em 1em;
  border: 1px solid var(--color-border);
  border-radius: 0;
  font-size: var(--font-size-base);
  font-family: var(--font-family-base);
  background-color: #fff;
  appearance: none;
  max-width: 100%;
}

.p-form__field--address {
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  margin-bottom: 10px;
}

.p-form__address-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.p-form__address-row:last-child {
  flex-direction: column;
  align-items: flex-start;
}
.p-form__address-row:last-child .p-form__input--full {
  width: 100%;
}

.p-form__address-prefix {
  font-size: var(--font-size-base);
  white-space: nowrap;
}

.p-form__address-example {
  font-size: 0.8125rem;
  color: #888;
  white-space: nowrap;
}

.p-form__address-sublabel {
  font-size: 0.8125rem;
  white-space: nowrap;
}

.p-form__privacy {
  margin-bottom: 60px;
  border: 1px solid #BABABA;
  padding: 2em 2em 0;
  max-height: 250px;
  overflow-y: auto;
}

.p-form__privacy-title {
  font-size: var(--font-size-16);
  font-weight: 400;
  margin-bottom: 1.1em;
}

.p-form__privacy-text {
  font-size: 0.8125rem;
  line-height: 1.8;
}
.p-form__privacy-text p {
  margin-bottom: 2em;
}
.p-form__privacy-text p:last-child {
  margin-bottom: 0;
}

.p-form__agree {
  margin-bottom: 60px;
  text-align: center;
}

.p-form__agree-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: var(--font-size-base);
}

.p-form__checkbox {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-border);
  border-radius: 3px;
  position: relative;
  cursor: pointer;
  vertical-align: middle;
}
.p-form__checkbox:checked {
  background-color: var(--color-link);
  border-color: var(--color-link);
}
.p-form__checkbox:checked::before {
  content: "";
  display: block;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(45deg);
}

.p-form__submit {
  margin-top: 30px;
  text-align: center;
}

.p-form__submit-btn {
  width: min(100%, 300px);
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-pink-2);
  color: #fff;
  font-size: var(--font-size-20);
  font-weight: 400;
  letter-spacing: 0.05em;
  border-radius: 100px;
  border: none;
  margin-inline: auto;
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
  transition: opacity 0.3s ease-out;
}
.p-form__submit-btn.is-active {
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
}
.p-form__submit-btn.is-active:hover {
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .p-form__item {
    flex-direction: row;
    align-items: center;
    gap: 50px;
    padding: 30px 0;
  }
  .p-form__item--address {
    align-items: flex-start;
  }
  .p-form__item--address label {
    padding-top: 10px;
  }
  .p-form__label {
    width: min(100%, 200px);
    flex-shrink: 0;
    justify-content: space-between;
  }
  .p-form__field {
    flex: 1;
  }
  .p-form__privacy {
    margin-bottom: 60px;
    padding: 40px;
  }
  .p-form__submit-btn {
    width: min(100%, 400px);
    height: 5rem;
  }
}
/** footer **/
.l-footer {
  padding: 40px 0 25px;
  background-color: var(--color-pink-bg-2);
  text-align: center;
}

.l-footer__inner {
  margin-bottom: 40px;
}

.l-footer__logos {
  gap: 15px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  width: min(100%, 36.625rem);
  margin-inline: auto;
}

.l-footer__org img,
.l-footer__service img {
  display: block;
  width: var(--_width);
  height: auto;
  aspect-ratio: var(--_aspect-ratio);
  margin-inline: auto;
}

.l-footer__org {
  --_width: 12.5rem;
  --_aspect-ratio: 276 / 74;
}

.l-footer__service {
  --_width: 11.25rem;
  --_aspect-ratio: 243 / 61;
}

.l-footer__tel {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  color: var(--color-black);
  margin-bottom: 32px;
  transition: color 0.3s ease-out;
}
.l-footer__tel svg {
  width: 0.875rem;
  aspect-ratio: 14/19;
  height: auto;
  fill: currentColor;
  transition: fill 0.3s ease-out;
}

.l-footer__tel-number {
  font-size: var(--font-size-30);
  font-family: var(--font-family-en);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}

.l-footer__address {
  font-style: normal;
  color: var(--color-black);
  line-height: var(--line-height-large);
}

.l-footer__copyright {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
  .l-footer {
    padding: 95px 0 45px;
  }
  .l-footer__inner {
    margin-bottom: 60px;
  }
  .l-footer__tel:hover {
    color: var(--color-link);
  }
  .l-footer__logos {
    margin-bottom: 25px;
    gap: 60px;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
  }
  .l-footer__org {
    --_aspect-ratio: 276 / 74;
  }
  .l-footer__service {
    --_aspect-ratio: 243 / 61;
  }
}
.c-guide-button {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 3.75rem;
  background-color: var(--color-link);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  letter-spacing: 0.1em;
  font-family: var(--font-family-en);
  font-size: var(--font-size-24);
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  gap: 8px;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}
.c-guide-button.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .c-guide-button {
    position: fixed;
    bottom: 20px;
    right: 40px;
    width: 9.375rem;
    height: 9.375rem;
    flex-direction: column;
    border-radius: 50%;
  }
  .c-guide-button:hover {
    opacity: 0.75;
  }
}
.p-default {
  margin-top: 140px;
  padding-bottom: 50px;
}

.p-default__title {
  margin-bottom: 60px;
}

.p-default__content {
  width: min(100%, 600px);
  margin-inline: auto;
  text-align: center;
}

.p-default__paragraph {
  margin-bottom: 40px;
}

.p-default__link {
  color: var(--color-link);
  text-decoration: underline;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
}

@media screen and (min-width: 768px) {
  .p-default {
    padding-bottom: 100px;
  }
  .p-default__link:hover {
    opacity: 0.75;
  }
}/*# sourceMappingURL=style.css.map */