@charset "UTF-8";
:root {
  --header-height: 8rem;
}
@media screen and (max-width: 767px) {
  :root {
    --header-height: 7.3rem;
  }
}

*, *::after, *::before {
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-inline-size: 0;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, picture,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  font: normal normal 400 100%/1 "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  color: #383131;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

html {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
  height: 100%;
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.3333333333vw;
  }
}

body {
  min-height: 100vh;
}
@media screen and (min-width: 768px) {
  body {
    min-width: calc(1366 / 10 * 1rem);
  }
}

a {
  color: inherit;
  text-decoration: none;
  outline: none;
  background-color: transparent;
}
a:focus-visible {
  text-decoration: none;
}
@media (any-hover: hover) {
  a[href*="tel:"] {
    pointer-events: none;
  }
  a:hover {
    text-decoration: none;
  }
}

abbr[title] {
  border-bottom: none;
  text-decoration: none;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

span,
small {
  font: inherit;
  color: inherit;
}

picture {
  display: block;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img, svg {
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-style: none;
}

button, input, optgroup, select, textarea {
  font: normal normal 400 100%/1 "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  color: #383131;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

::-webkit-input-placeholder {
  color: #A8A8A8;
}

::-moz-placeholder {
  color: #A8A8A8;
}

:-ms-input-placeholder {
  color: #A8A8A8;
}

::-ms-input-placeholder {
  color: #A8A8A8;
}

::placeholder {
  color: #A8A8A8;
}

select:invalid {
  color: #A8A8A8;
}

button, input {
  overflow: visible;
}
button[disabled], input[disabled] {
  cursor: not-allowed;
}

button, select {
  text-transform: none;
}

button {
  text-align: left;
  cursor: pointer;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

textarea {
  display: block;
  resize: none;
  field-sizing: content;
  overflow: auto;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=checkbox], [type=radio] {
  position: absolute;
  visibility: hidden;
  width: 1px;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

pre {
  white-space: pre-wrap;
}

ul, ol {
  list-style: none;
}

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

th, td {
  background-clip: padding-box;
}

.l-header {
  position: fixed;
  bottom: 6rem;
  right: 0;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header {
    right: 50%;
    bottom: 4rem;
    translate: 50% 0;
  }
}
.l-header.is-action {
  opacity: 1;
  pointer-events: all;
}
.l-header .btn_link {
  --_color-01: #fff;
  --_color-02: #e9528e;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--_color-01);
  text-align: center;
  display: -ms-grid;
  display: grid;
  place-content: center;
  position: relative;
  padding: 2.6rem 1.6rem 5rem 2rem;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  border: 0.2rem solid #e9528e;
  border-radius: 1.5rem 0 0 1.5rem;
  background: var(--_color-02);
  -webkit-box-shadow: 0 0 0.2rem rgba(165, 162, 164, 0.5);
          box-shadow: 0 0 0.2rem rgba(165, 162, 164, 0.5);
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header .btn_link {
    font-size: 3.2rem;
    letter-spacing: 0.04em;
    padding: 1.9rem 0 2rem;
    width: 63rem;
    border-radius: calc(infinity * 1px);
    -webkit-box-shadow: 0 0.5rem 0 #9b2a66;
            box-shadow: 0 0.5rem 0 #9b2a66;
  }
}
.l-header .btn_link:focus-visible {
  --_color-01: #e9528e;
  --_color-02: #fff;
}
@media (any-hover: hover) {
  .l-header .btn_link:hover {
    --_color-01: #e9528e;
    --_color-02: #fff;
  }
}
.l-header .btn_link::before, .l-header .btn_link::after {
  content: "";
  position: absolute;
  translate: -50% 0;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header .btn_link::before, .l-header .btn_link::after {
    translate: 0 50%;
  }
}
.l-header .btn_link::before {
  left: calc(50% + 0.2rem);
  bottom: 2.6rem;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background: var(--_color-01);
}
@media screen and (max-width: 767px) {
  .l-header .btn_link::before {
    left: auto;
    right: 4.9rem;
    bottom: calc(50% - 0.1rem);
    width: 2.3rem;
    height: 2.3rem;
  }
}
.l-header .btn_link::after {
  left: calc(50% + 0.3rem);
  bottom: 2.9rem;
  width: 0.6rem;
  height: 0.7rem;
  background: var(--_color-02);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media screen and (max-width: 767px) {
  .l-header .btn_link::after {
    left: auto;
    right: 5.5rem;
    bottom: calc(50% - 0.1rem);
    width: 0.9rem;
    height: 1.1rem;
  }
}

.l-footer {
  background: #383131;
}
@media screen and (min-width: 768px) {
  .l-footer .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-inline: 3rem;
    height: 7.7rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .inner {
    padding-block: 4rem 15.9rem;
  }
}
.l-footer .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .l-footer .list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.l-footer .list_item:nth-child(n+2) {
  position: relative;
  margin-left: 3rem;
  padding-left: 3.1rem;
}
.l-footer .list_item:nth-child(n+2)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 0.1rem;
  height: 1.9rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .l-footer .list_item:nth-child(n+2)::before {
    width: 0.2rem;
    height: 3rem;
  }
}
.l-footer .list_link {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: #fff;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .l-footer .list_link {
    font-size: 2.2rem;
  }
}
.l-footer .list_link:focus-visible {
  opacity: 0.6;
}
@media (any-hover: hover) {
  .l-footer .list_link:hover {
    opacity: 0.6;
  }
}
.l-footer .copy {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-footer .copy {
    font-size: 2.2rem;
    text-align: center;
    margin-top: 2rem;
  }
}

.js-acd_cont {
  height: 0;
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  overflow: hidden;
}

.c-wrap {
  margin-inline: auto;
  width: calc(680 / 750 * 100%);
  max-width: 100rem;
}

.c-hgroup {
  text-align: center;
}
.c-hgroup_en {
  font-size: 5rem;
  line-height: 1.32;
  font-weight: 600;
  font-family: "Exo", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  color: #003DAA;
}
@media screen and (min-width: 768px) {
  .c-hgroup_en._lg {
    font-size: 7rem;
    line-height: 1.1285714286;
  }
}
.c-hgroup_en_accent {
  color: #383131;
}
.c-hgroup_jp {
  font-size: 2.4rem;
  line-height: 1.0833333333;
  font-weight: 700;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .c-hgroup_jp {
    font-size: 2rem;
    line-height: 1.45;
    margin-top: -0.4rem;
  }
}

.p-kv {
  position: relative;
  z-index: 1;
  padding-top: 9.3rem;
  height: 61.3rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-kv {
    padding-block: 7.5rem 8.8rem;
    height: auto;
  }
}
.p-kv .bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100.1%;
}
.p-kv .bg img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left bottom;
     object-position: left bottom;
}
.p-kv .lang-btn {
  position: absolute;
  top: 0;
  right: 2rem;
  z-index: 1;
}
.p-kv .lang-btn_link {
  --_color-01: #fff;
  --_color-02: #e9528e;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 1.8rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-indent: 0.12em;
  color: var(--_color-01);
  text-align: center;
  display: -ms-grid;
  display: grid;
  place-content: center;
  padding-bottom: 0.2rem;
  width: 12.7rem;
  height: 4rem;
  border: 0.2rem solid #e9528e;
  border-radius: 0 0 1.5rem 1.5rem;
  background: var(--_color-02);
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .p-kv .lang-btn_link {
    font-size: 2.2rem;
    width: 15.3rem;
    height: 4.8rem;
  }
}
.p-kv .lang-btn_link:focus-visible {
  --_color-01: #e9528e;
  --_color-02: #fff;
}
@media (any-hover: hover) {
  .p-kv .lang-btn_link:hover {
    --_color-01: #e9528e;
    --_color-02: #fff;
  }
}
.p-kv .c-wrap {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-kv .c-wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 51rem 2.4rem 1fr;
    grid-template-columns: 51rem 1fr;
    -webkit-column-gap: 2.4rem;
       -moz-column-gap: 2.4rem;
            column-gap: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .p-kv .hgroup {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 1;
    grid-column: 1;
    position: relative;
  }
}
.p-kv .hgroup_badge {
  position: absolute;
  top: -0.7rem;
  left: -9.9rem;
  width: 13.6rem;
}
@media screen and (max-width: 767px) {
  .p-kv .hgroup_badge {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-kv .hgroup_ttl {
    margin-inline: auto;
    width: 63.2rem;
  }
}
.p-kv .hgroup_txt {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 2.2rem;
  line-height: 1.8181818182;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-kv .hgroup_txt {
    font-size: 2.7rem;
    line-height: 1.8148148148;
    text-align: center;
  }
}
.p-kv .hgroup_txt_lg {
  font-size: 2.7rem;
  color: #ad2a2d;
}
@media screen and (max-width: 767px) {
  .p-kv .hgroup_txt_lg {
    font-size: 3.3rem;
  }
}
.p-kv .fig {
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  .p-kv .fig {
    -ms-grid-row-span: 3;
    grid-row: span 3;
    -ms-grid-column: 2;
    grid-column: 2;
    margin-right: calc(50% - 50vw);
  }
}
@media screen and (max-width: 767px) {
  .p-kv .fig {
    display: -ms-grid;
    display: grid;
    margin-top: 0.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-kv .fig_img {
    width: 63.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-kv .fig_img {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 1;
    grid-column: 1;
  }
}
.p-kv .fig_cap {
  margin-top: 1.5rem;
  padding-inline: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-kv .fig_cap {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 1;
    grid-column: 1;
    margin-top: 43.4rem;
    padding-inline: 4.4rem;
  }
}
@media screen and (min-width: 768px) {
  .p-kv .fig_cap_txt {
    width: 56.4rem;
  }
}
.p-kv .btn {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-kv .btn {
    margin-top: 6.5rem;
  }
}
.p-kv .btn_link {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 2rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #fff;
  text-align: center;
  display: -ms-grid;
  display: grid;
  place-content: center;
  position: relative;
  margin-inline: auto;
  width: 40rem;
  height: 7.4rem;
  border-radius: calc(infinity * 1px);
  background: #e9528e;
  -webkit-box-shadow: 0 0.5rem 0 #9b2a66;
          box-shadow: 0 0.5rem 0 #9b2a66;
  -webkit-transition: translate 0.3s, -webkit-box-shadow 0.3s;
  transition: translate 0.3s, -webkit-box-shadow 0.3s;
  transition: translate 0.3s, box-shadow 0.3s;
  transition: translate 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
@media screen and (max-width: 767px) {
  .p-kv .btn_link {
    font-size: 3.2rem;
    letter-spacing: 0.04em;
    width: 63rem;
    height: 10.5rem;
  }
}
.p-kv .btn_link:focus-visible {
  translate: 0 0.5rem;
  -webkit-box-shadow: 0 0 0 #9b2a66;
          box-shadow: 0 0 0 #9b2a66;
}
@media (any-hover: hover) {
  .p-kv .btn_link:hover {
    translate: 0 0.5rem;
    -webkit-box-shadow: 0 0 0 #9b2a66;
            box-shadow: 0 0 0 #9b2a66;
  }
}
.p-kv .btn_link::before, .p-kv .btn_link::after {
  content: "";
  position: absolute;
  top: calc(50% + 0.1rem);
  translate: 0 -50%;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .p-kv .btn_link::before, .p-kv .btn_link::after {
    top: calc(50% + 0.2rem);
  }
}
.p-kv .btn_link::before {
  right: 3rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-kv .btn_link::before {
    right: 4.9rem;
    width: 2.3rem;
    height: 2.3rem;
  }
}
.p-kv .btn_link::after {
  right: 3.3rem;
  width: 0.6rem;
  height: 0.7rem;
  background: #e9528e;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media screen and (max-width: 767px) {
  .p-kv .btn_link::after {
    right: 5.5rem;
    width: 0.9rem;
    height: 1.1rem;
  }
}

.p-intro {
  position: relative;
  z-index: 1;
  padding-bottom: 8rem;
  background: url(../img/intro_ttl_bg.png) center top repeat-x #f9f8f2;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-intro {
    padding-bottom: 16rem;
    background: url(../img/intro_ttl_bg.png) center top/230% auto repeat-x #f9f8f2;
  }
}
@media screen and (min-width: 768px) {
  .p-intro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: url(../img/intro_ttl_bg.png) center top no-repeat;
    scale: -1 1;
  }
}
.p-intro .c-wrap {
  position: relative;
}
.p-intro .cherry-blossom-petals {
  position: absolute;
}
.p-intro .cherry-blossom-petals._01 {
  top: 14.9rem;
  left: -8.2rem;
  width: 8.7rem;
  rotate: -14deg;
}
@media screen and (max-width: 767px) {
  .p-intro .cherry-blossom-petals._01 {
    left: -3.8rem;
  }
}
.p-intro .cherry-blossom-petals._02 {
  top: 3rem;
  right: -8.2rem;
  width: 5.4rem;
  rotate: 31deg;
}
@media screen and (max-width: 767px) {
  .p-intro .cherry-blossom-petals._02 {
    right: -3.8rem;
  }
}
.p-intro .ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-block: 4rem 5.1rem;
}
@media screen and (max-width: 767px) {
  .p-intro .ttl {
    padding-block: 4.3rem 4.7rem;
  }
}
.p-intro .ttl::after {
  content: "";
  position: absolute;
  top: 5.8rem;
  right: -4.4rem;
  width: 14.5rem;
  height: 24.7rem;
  background: url(../img/intro_illustration_01.png) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-intro .ttl::after {
    top: 10rem;
    right: -3rem;
  }
}
.p-intro .ttl_img {
  width: 53.8rem;
}
.p-intro .ttl_txt01 {
  font-size: 4.1rem;
  letter-spacing: -0.08em;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-intro .ttl_txt01 {
    text-align: center;
    margin-top: 1.5rem;
    width: 100%;
  }
}
.p-intro .ttl_txt01_lg {
  font-size: 5.1rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #f9f6b7;
  margin-left: 0.08em;
}
.p-intro .ttl_txt02 {
  font-size: 5.5rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-top: 2rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-intro .ttl_txt02 {
    margin-top: 1.5rem;
  }
}
.p-intro .sttl01 {
  font-size: 4.2rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-align: center;
  margin-top: 5.8rem;
}
@media screen and (max-width: 767px) {
  .p-intro .sttl01 {
    font-size: 4rem;
  }
}
.p-intro .check-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.8rem 2rem;
  position: relative;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-intro .check-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-inline: auto;
    width: 64rem;
  }
}
.p-intro .check-list::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: -9rem;
  z-index: 1;
  width: 13rem;
  height: 13rem;
  background: url(../img/intro_illustration_02.png) center/contain no-repeat;
  rotate: -9deg;
}
@media screen and (max-width: 767px) {
  .p-intro .check-list::before {
    top: -6.5rem;
    left: -6.5rem;
  }
}
.p-intro .check-list_item {
  position: relative;
  padding-block: 2.7rem 1.5rem;
  border: 0.2rem solid #ad2a2d;
  border-radius: 1rem;
  background: #fff;
  -webkit-box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.1);
}
.p-intro .check-list_item::before {
  content: "";
  position: absolute;
  top: -2rem;
  left: 50%;
  translate: -50% 0;
  width: 4.2rem;
  height: 4.2rem;
  background: url(../img/icn_check.svg) center/contain no-repeat;
}
.p-intro .check-list_txt {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 1.8rem;
  line-height: 1.6666666667;
  letter-spacing: 0.07em;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-intro .check-list_txt {
    font-size: 3.2rem;
  }
}
.p-intro .sttl02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin: 4.7rem auto 0;
  padding-inline: 3.5rem 6.4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-intro .sttl02 {
    padding-inline: 3rem;
  }
}
.p-intro .sttl02::before, .p-intro .sttl02::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 3.2rem;
  height: 5.5rem;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 55"><polygon points="27.31 54.8 7.46 1.74 12.15 0 32 53.06 27.31 54.8" fill="%23ad2a2d"/><polygon points="14.47 55 0 24.52 4.52 22.39 18.99 52.87 14.47 55" fill="%23ad2a2d"/></svg>') center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-intro .sttl02::before, .p-intro .sttl02::after {
    top: 65%;
    width: 5rem;
    height: 9.6rem;
  }
}
.p-intro .sttl02::before {
  left: 0;
}
.p-intro .sttl02::after {
  right: 0;
  scale: -1 1;
}
.p-intro .sttl02_img {
  width: 53.8rem;
}
.p-intro .sttl02_txt {
  font-size: 4.7rem;
  letter-spacing: 0.04em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-intro .sttl02_txt {
    margin-top: 1rem;
  }
}
.p-intro .sttl02_txt_lg {
  font-size: 5.8rem;
  letter-spacing: 0.04em;
  font-weight: 700;
}
.p-intro .list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3.95rem 1fr 3.95rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.95rem;
  position: relative;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-intro .list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-inline: auto;
    width: 64rem;
  }
}
.p-intro .list::after {
  content: "";
  position: absolute;
  bottom: -5.5rem;
  right: -14.7rem;
  width: 17.5rem;
  height: 17.5rem;
  background: url(../img/intro_illustration_03.png) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-intro .list::after {
    bottom: -10rem;
    right: -4rem;
  }
}
.p-intro .list_item {
  border-radius: 1rem;
  background: #fff;
  -webkit-box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.1);
}
.p-intro .list_img img {
  border-radius: 1rem 1rem 0 0;
}
.p-intro .list_txt {
  font-size: 2.2rem;
  line-height: 1.5454545455;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-align: center;
  padding-block: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-intro .list_txt {
    font-size: 4rem;
  }
}
.p-intro .list_txt_color {
  color: #ad2a2d;
}

.p-about {
  position: relative;
  overflow: hidden;
  background: #f9f8f2;
}
.p-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4rem 4rem 0 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(252, 242, 242)), to(rgb(244, 222, 219)));
  background: linear-gradient(0deg, rgb(252, 242, 242) 0%, rgb(244, 222, 219) 100%);
}
.p-about .inner {
  position: relative;
  padding-block: 6rem 8rem;
  border-radius: 4rem 4rem 0 0;
  background: url(../img/about_bg.png) center top/100% auto no-repeat;
  overflow: hidden;
}
.p-about .ttl {
  margin-inline: auto;
  width: 63rem;
}
.p-about .intro {
  position: relative;
  z-index: 2;
  margin-top: 4.8rem;
}
.p-about .intro::before, .p-about .intro::after {
  content: "";
  position: absolute;
  top: 8.2rem;
  left: 0;
  width: 100%;
}
.p-about .intro::before {
  z-index: -2;
  height: calc(100% - 8.2rem);
  border-radius: 1rem;
  background: #fff;
  -webkit-box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.1);
}
.p-about .intro::after {
  z-index: -1;
  height: 27.2rem;
  border-radius: 1rem 1rem 0 0;
  background: #f9f8f2;
}
.p-about .intro_txt {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 2.2rem;
  line-height: 1.8181818182;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: center;
  padding-block: 3.1rem;
}
@media screen and (max-width: 767px) {
  .p-about .intro_txt {
    font-size: 2.6rem;
    line-height: 1.7692307692;
    letter-spacing: 0.02em;
    font-weight: 700;
    padding-block: 3rem;
  }
}
.p-about .anchor-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-about .anchor-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.p-about .anchor-list_item {
  -webkit-box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.1);
}
.p-about .anchor-list_link {
  display: block;
  border: 0.2rem solid #ad2a2d;
  border-radius: 1rem;
  background: #fff;
  overflow: hidden;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-about .anchor-list_link:focus-visible {
  opacity: 0.6;
}
@media (any-hover: hover) {
  .p-about .anchor-list_link:hover {
    opacity: 0.6;
  }
}
.p-about .anchor-list_point {
  display: -ms-grid;
  display: grid;
  place-content: center;
  position: relative;
  height: 5.4rem;
  background: #ad2a2d;
}
@media screen and (max-width: 767px) {
  .p-about .anchor-list_point {
    height: 8.8rem;
  }
}
.p-about .anchor-list_point::before, .p-about .anchor-list_point::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
.p-about .anchor-list_point::before {
  right: 2rem;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-about .anchor-list_point::before {
    right: 3.4rem;
    width: 3.6rem;
    height: 3.6rem;
  }
}
.p-about .anchor-list_point::after {
  right: 2.5rem;
  width: 0.9rem;
  height: 1.1rem;
  background: #ad2a2d;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media screen and (max-width: 767px) {
  .p-about .anchor-list_point::after {
    right: 4.4rem;
    width: 1.4rem;
    height: 1.8rem;
  }
}
.p-about .anchor-list_point_img._01 {
  width: 15.2rem;
}
@media screen and (max-width: 767px) {
  .p-about .anchor-list_point_img._01 {
    width: 27.4rem;
  }
}
.p-about .anchor-list_point_img._02 {
  width: 15.6rem;
}
@media screen and (max-width: 767px) {
  .p-about .anchor-list_point_img._02 {
    width: 28.2rem;
  }
}
.p-about .anchor-list_point_img._03 {
  width: 15.7rem;
}
@media screen and (max-width: 767px) {
  .p-about .anchor-list_point_img._03 {
    width: 28.4rem;
  }
}
.p-about .anchor-list_txt {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 2.2rem;
  line-height: 1.5454545455;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  padding-block: 2.4rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-about .anchor-list_txt {
    font-size: 3.2rem;
  }
}
.p-about .point-list {
  margin-top: 6rem;
}
.p-about .point-list_item {
  position: relative;
  border-radius: 1rem;
  background: #fff;
  -webkit-box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.1);
}
.p-about .point-list_item:nth-child(n+2) {
  margin-top: 6rem;
}
.p-about .point-list_item_img01 {
  position: absolute;
  top: 2.5rem;
  left: -9.4rem;
  z-index: 1;
  width: 12.9rem;
}
@media screen and (max-width: 767px) {
  .p-about .point-list_item_img01 {
    top: -1rem;
    left: -3rem;
  }
}
.p-about .point-list_item_img02 {
  position: absolute;
  top: 2.7rem;
  right: -6.2rem;
  z-index: 1;
  width: 16.5rem;
}
@media screen and (max-width: 767px) {
  .p-about .point-list_item_img02 {
    right: -3rem;
  }
}
.p-about .point-list_item_inner {
  padding: 3.2rem 4.5rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-about .point-list_item_inner {
    padding-inline: 3.5rem;
  }
}
.p-about .point-list_hgroup {
  padding-block: 2.8rem 2.9rem;
  border-radius: 1rem 1rem 0 0;
  background: #ad2a2d;
}
@media screen and (max-width: 767px) {
  .p-about .point-list_hgroup {
    padding-block: 4rem 3.8rem;
  }
}
.p-about .point-list_hgroup_point {
  margin-inline: auto;
  width: 15.9rem;
}
@media screen and (max-width: 767px) {
  .p-about .point-list_hgroup_point {
    width: 28rem;
  }
}
.p-about .point-list_hgroup_ttl {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-top: 0.6rem;
}
@media screen and (max-width: 767px) {
  .p-about .point-list_hgroup_ttl {
    font-size: 4rem;
    line-height: 1.5;
  }
}
.p-about .point-list_ttl {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 2.8rem;
  line-height: 1.3571428571;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 0.2rem solid #ad2a2d;
}
@media screen and (max-width: 767px) {
  .p-about .point-list_ttl {
    font-size: 3.6rem;
  }
}
.p-about .point-list_fig {
  margin-top: 1.8rem;
}
.p-about .point-list_fig + .point-list_ttl {
  margin-top: 2.8rem;
}
.p-about .point-list_fig_cap {
  margin-top: 1.5rem;
}
.p-about .point-list_fig_cap_txt {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 1.8rem;
  line-height: 1.6666666667;
  letter-spacing: 0.07em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-about .point-list_fig_cap_txt {
    font-size: 2.4rem;
    line-height: 1.8333333333;
    letter-spacing: 0.04em;
  }
}
.p-about .point-list_box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3.2rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem;
  margin-top: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-about .point-list_box {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.p-about .point-list_box + .point-list_ttl {
  margin-top: 2.7rem;
}
.p-about .point-list_box_mv {
  aspect-ratio: 439/247;
  overflow: hidden;
}
.p-about .point-list_box_mv video {
  width: 100%;
  height: 100%;
  border: 0.1rem solid #e5e5e5;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-about .point-list_box_txt {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 1.8rem;
  line-height: 1.6666666667;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-top: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-about .point-list_box_txt {
    font-size: 2.4rem;
    line-height: 1.8333333333;
    letter-spacing: 0.04em;
  }
}
.p-about .point-list_additionally {
  position: relative;
  margin-top: 7.4rem;
  padding: 5.5rem 4rem 3.4rem;
  border-radius: 1rem;
  background: #f9eae8;
}
@media screen and (max-width: 767px) {
  .p-about .point-list_additionally {
    padding-inline: 2rem;
  }
}
.p-about .point-list_additionally_hgroup_txt {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 3.4rem;
  letter-spacing: 0.07em;
  font-weight: 700;
  color: #fff;
  text-align: center;
  position: absolute;
  top: -4.2rem;
  left: 50%;
  z-index: 1;
  translate: -50% 0;
  padding-top: 1rem;
  width: 31.2rem;
  height: 7.6rem;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 312 76"><path d="M309.25,3.5c3.96-1.93,3.6-3.5-.8-3.5H3.55C-.85,0-1.21,1.58,2.75,3.5l146.05,71.05c3.96,1.93,10.44,1.93,14.4,0L309.25,3.5Z" fill="%23ad2a2d"/></svg>') center/contain no-repeat;
}
.p-about .point-list_additionally_hgroup_ttl {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 2.8rem;
  line-height: 1.3571428571;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 0.4rem dotted #ad2a2d;
}
@media screen and (max-width: 767px) {
  .p-about .point-list_additionally_hgroup_ttl {
    font-size: 3.6rem;
  }
}

.p-cta {
  padding-block: 3.7rem 5.5rem;
  background: #fffdf5;
}
@media screen and (max-width: 767px) {
  .p-cta {
    padding-block: 3.2rem 5.4rem;
  }
}
.p-cta .c-wrap {
  position: relative;
}
.p-cta_hgroup_sub {
  margin-inline: auto;
  width: 86.3rem;
}
@media screen and (max-width: 767px) {
  .p-cta_hgroup_sub {
    width: 100%;
  }
}
.p-cta_hgroup_ttl {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 5rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  margin: 0.6rem auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-cta_hgroup_ttl {
    font-size: 3.9rem;
    position: relative;
    margin-top: 5rem;
    padding-right: 8.6rem;
  }
}
.p-cta_hgroup_ttl::after {
  content: "";
  position: absolute;
  top: 5.9rem;
  right: -7.4rem;
  width: 14.8rem;
  height: 21rem;
  background: url(../img/cta_illustration.png) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-cta_hgroup_ttl::after {
    top: -4.4rem;
    right: 0;
    width: 8.1rem;
    height: 11.5rem;
  }
}
.p-cta_btn {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-cta_btn {
    margin-top: 5rem;
  }
}
.p-cta_btn_link {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 2rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #fff;
  text-align: center;
  display: -ms-grid;
  display: grid;
  place-content: center;
  position: relative;
  margin-inline: auto;
  width: 40rem;
  height: 7.4rem;
  border-radius: calc(infinity * 1px);
  background: #e9528e;
  -webkit-box-shadow: 0 0.5rem 0 #9b2a66;
          box-shadow: 0 0.5rem 0 #9b2a66;
  -webkit-transition: translate 0.3s, -webkit-box-shadow 0.3s;
  transition: translate 0.3s, -webkit-box-shadow 0.3s;
  transition: translate 0.3s, box-shadow 0.3s;
  transition: translate 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
@media screen and (max-width: 767px) {
  .p-cta_btn_link {
    font-size: 3.2rem;
    letter-spacing: 0.04em;
    width: 63rem;
    height: 10.5rem;
  }
}
.p-cta_btn_link:focus-visible {
  translate: 0 0.5rem;
  -webkit-box-shadow: 0 0 0 #9b2a66;
          box-shadow: 0 0 0 #9b2a66;
}
@media (any-hover: hover) {
  .p-cta_btn_link:hover {
    translate: 0 0.5rem;
    -webkit-box-shadow: 0 0 0 #9b2a66;
            box-shadow: 0 0 0 #9b2a66;
  }
}
.p-cta_btn_link::before, .p-cta_btn_link::after {
  content: "";
  position: absolute;
  top: calc(50% + 0.1rem);
  translate: 0 -50%;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .p-cta_btn_link::before, .p-cta_btn_link::after {
    top: calc(50% + 0.2rem);
  }
}
.p-cta_btn_link::before {
  right: 3rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-cta_btn_link::before {
    right: 4.9rem;
    width: 2.3rem;
    height: 2.3rem;
  }
}
.p-cta_btn_link::after {
  right: 3.3rem;
  width: 0.6rem;
  height: 0.7rem;
  background: #e9528e;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media screen and (max-width: 767px) {
  .p-cta_btn_link::after {
    right: 5.5rem;
    width: 0.9rem;
    height: 1.1rem;
  }
}

.p-voice {
  position: relative;
  z-index: 1;
  padding-block: 8rem 8.5rem;
  background: #f9f8f2;
  overflow: hidden;
}
.p-voice::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 4rem 4rem 0 0;
  background: url(../img/voice_bg.jpg) center top repeat #dae5e5;
}
.p-voice .ttl {
  margin-inline: auto;
  width: 20.7rem;
}
.p-voice .voice-list {
  margin-top: 6rem;
}
.p-voice .voice-list_item {
  position: relative;
  z-index: 1;
  padding: 4rem 5rem 5rem;
  border-radius: 1rem;
  background: #fff;
  -webkit-box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-voice .voice-list_item {
    padding: 4.8rem 4.3rem 4rem;
  }
}
.p-voice .voice-list_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 17.8rem;
  height: 20.6rem;
  border-top-left-radius: 1rem;
  background: #f9eae8;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
@media screen and (max-width: 767px) {
  .p-voice .voice-list_item::before {
    width: 16.3rem;
    height: 18.8rem;
  }
}
.p-voice .voice-list_item:nth-child(n+2) {
  margin-top: 4.7rem;
}
.p-voice .voice-list_hgroup {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 14.9rem 1fr;
  grid-template-columns: 14.9rem 1fr;
}
@media screen and (max-width: 767px) {
  .p-voice .voice-list_hgroup {
    -ms-grid-columns: 11.7rem 1fr;
    grid-template-columns: 11.7rem 1fr;
  }
}
.p-voice .voice-list_hgroup_num {
  -ms-grid-row-span: 4;
  grid-row: span 4;
  -ms-grid-column: 1;
  grid-column: 1;
}
@media screen and (max-width: 767px) {
  .p-voice .voice-list_hgroup_num {
    -ms-grid-row-span: 3;
    grid-row: span 3;
  }
}
.p-voice .voice-list_hgroup_num_img {
  position: absolute;
  top: 3.4rem;
  left: 3rem;
  width: 12.7rem;
}
@media screen and (max-width: 767px) {
  .p-voice .voice-list_hgroup_num_img {
    position: relative;
    top: -1.8rem;
    left: -1.8rem;
    width: 10.9rem;
  }
}
.p-voice .voice-list_hgroup_ttl {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 2.6rem;
  line-height: 1.3076923077;
  letter-spacing: 0.05em;
  font-weight: 700;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 2;
  grid-column: 2;
}
@media screen and (max-width: 767px) {
  .p-voice .voice-list_hgroup_ttl {
    font-size: 3.2rem;
    line-height: 1.25;
  }
}
.p-voice .voice-list_hgroup_name {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 2rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-weight: 700;
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 2;
  grid-column: 2;
  margin-top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-voice .voice-list_hgroup_name {
    font-size: 2.4rem;
    line-height: 1.6666666667;
  }
}
.p-voice .voice-list_hgroup_label {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 1.8rem;
  line-height: 1.8888888889;
  letter-spacing: 0.05em;
  font-weight: 700;
  -ms-grid-row: 3;
  grid-row: 3;
  -ms-grid-column: 2;
  grid-column: 2;
  margin-top: 1.3rem;
  padding-inline: 2rem;
  width: 100%;
  background: #f9eae8;
}
@media screen and (max-width: 767px) {
  .p-voice .voice-list_hgroup_label {
    font-size: 2.2rem;
    line-height: 1.8181818182;
    -ms-grid-row: 4;
    grid-row: 4;
    -ms-grid-column-span: 2;
    grid-column: span 2;
    margin-top: 1.5rem;
  }
}
.p-voice .voice-list_box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 29rem 4rem 1fr;
  grid-template-columns: 29rem 1fr;
  gap: 4rem;
  margin-top: 3rem;
  padding-left: 14.9rem;
}
@media screen and (max-width: 767px) {
  .p-voice .voice-list_box {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3.6rem;
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-voice .voice-list_box_img {
    margin-inline: auto;
    width: 34.8rem;
  }
}
.p-voice .voice-list_box_txt {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 1.8rem;
  line-height: 1.6666666667;
  letter-spacing: 0.04em;
  font-weight: 500;
  margin-top: calc((1em - 1lh) / 2);
}
@media screen and (max-width: 767px) {
  .p-voice .voice-list_box_txt {
    font-size: 2.4rem;
    line-height: 1.8333333333;
  }
}
.p-voice .voice-list_acd {
  --_rotate: 0deg;
  margin-top: 4rem;
  padding-inline: 3.8rem 4rem;
  -webkit-transition: padding 0.3s, background-color 0.3s;
  transition: padding 0.3s, background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .p-voice .voice-list_acd {
    padding-inline: 4.7rem;
  }
}
.p-voice .voice-list_acd.is-open {
  --_rotate: 180deg;
}
.p-voice .voice-list_acd_cont_inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4.4rem 38.2rem;
  grid-template-columns: 1fr 38.2rem;
  gap: 2.6rem 4.4rem;
  padding-bottom: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-voice .voice-list_acd_cont_inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 4rem;
    padding-bottom: 2.8rem;
  }
}
.p-voice .voice-list_acd_cont_inner.nogrid {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-voice .voice-list_acd_cont_img {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 2;
    grid-column: 2;
  }
}
@media screen and (max-width: 767px) {
  .p-voice .voice-list_acd_cont_img {
    margin-inline: auto;
    width: 36.6rem;
  }
}
.p-voice .voice-list_acd_cont_txt {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 1.8rem;
  line-height: 1.6666666667;
  font-weight: 500;
  margin-top: calc((1em - 1lh) / 2);
}
@media screen and (min-width: 768px) {
  .p-voice .voice-list_acd_cont_txt {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 1;
    grid-column: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-voice .voice-list_acd_cont_txt {
    font-size: 2.3rem;
    line-height: 1.652173913;
  }
}
@media screen and (min-width: 768px) {
  .p-voice .voice-list_acd_cont_txt + .voice-list_acd_cont_txt {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}
.p-voice .voice-list_acd_cont_comment {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 2.2rem;
  line-height: 1.3636363636;
  font-weight: 500;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-voice .voice-list_acd_cont_comment {
    font-size: 2.6rem;
  }
}
.p-voice .voice-list_acd_cont_comment + .voice-list_acd_cont_txt {
  margin-top: 0.4em;
}
.p-voice .voice-list_acd_cont_learner {
  margin-top: 3.5rem;
}
.p-voice .voice-list_acd_cont_learner_item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 8.5rem 3rem 1fr;
  grid-template-columns: 8.5rem 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
.p-voice .voice-list_acd_cont_learner_item_name {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 1.8rem;
  line-height: 1.6666666667;
  font-weight: 700;
  margin-top: calc((1em - 1lh) / 2);
}
@media screen and (max-width: 767px) {
  .p-voice .voice-list_acd_cont_learner_item_name {
    font-size: 2.3rem;
    line-height: 1.652173913;
  }
}
.p-voice .voice-list_acd_cont_learner_item_txt {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 1.8rem;
  line-height: 1.6666666667;
  font-weight: 500;
  margin-top: 0.4em;
}
@media screen and (max-width: 767px) {
  .p-voice .voice-list_acd_cont_learner_item_txt {
    font-size: 2.3rem;
    line-height: 1.652173913;
  }
}
.p-voice .voice-list_acd_btn {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 2.3rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fff;
  text-align: center;
  display: -ms-grid;
  display: grid;
  place-content: center;
  position: relative;
  margin-inline: auto;
  padding-bottom: 0.2rem;
  width: 32rem;
  height: 5rem;
  border-radius: 1rem;
  background: #e9528e;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-voice .voice-list_acd_btn:focus-visible {
  opacity: 0.6;
}
@media (any-hover: hover) {
  .p-voice .voice-list_acd_btn:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .p-voice .voice-list_acd_btn {
    font-size: 2.9rem;
    width: 40.4rem;
    height: 6.3rem;
  }
}
.p-voice .voice-list_acd_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  translate: 0 -50%;
  rotate: var(--_rotate);
  width: 1.4rem;
  height: 1.4rem;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path fill="%23fff" d="M14,7c0-3.87-3.13-7-7-7C3.13,0,0,3.13,0,7c0,3.87,3.13,7,7,7,3.87,0,7-3.13,7-7ZM3.48,4.68h7.04s-3.52,5.85-3.52,5.85l-3.52-5.85Z"/></svg>') center/contain no-repeat;
  -webkit-transition: rotate 0.3s;
  transition: rotate 0.3s;
}
@media screen and (max-width: 767px) {
  .p-voice .voice-list_acd_btn::after {
    right: 2.5rem;
    width: 1.8rem;
    height: 1.8rem;
  }
}

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

.u-text-color-blue {
  color: #003DAA;
}

.u-text-color-yellow {
  color: #FFE200;
}

.u-text-align-left {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .u-text-align-left-sp {
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .u-text-align-left-pc {
    text-align: left;
  }
}
.u-text-align-center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .u-text-align-center-sp {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .u-text-align-center-pc {
    text-align: center;
  }
}
.u-text-align-right {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .u-text-align-right-sp {
    text-align: right;
  }
}
@media screen and (min-width: 768px) {
  .u-text-align-right-pc {
    text-align: right;
  }
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}

.u-leading-trim {
  margin-block: calc((1em - 1lh) / 2);
}

.u-leading-trim-top {
  margin-top: calc((1em - 1lh) / 2);
}

.u-leading-trim-bottom {
  margin-bottom: calc((1em - 1lh) / 2);
}

.u-border-radius-infinity {
  border-radius: calc(infinity * 1px);
}
/*# sourceMappingURL=style.css.map */