@charset "UTF-8";
/*----------------------------------------------------------

mixin

----------------------------------------------------------*/
/*----------------------------------------------------------

Reset

----------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
large,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

button {
  border: 0;
}

/*----------------------------------------------------------

全体

----------------------------------------------------------*/
:root {
  --header-block-size: 95px;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: "BIZ UDPGothic", "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #333;
  text-align: left;
  line-height: 2;
}

body * {
  box-sizing: border-box;
}

summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

button {
  background: none;
  padding: 0;
  font-family: inherit;
}
button a {
  display: block;
  width: 100%;
  height: 100%;
}

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

@media (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

main {
  padding-top: var(--header-block-size);
  overflow: hidden;
}

.visually-hidden {
  position: fixed !important;
  top: 0px !important;
  left: 0px !important;
  width: 4px !important;
  height: 4px !important;
  opacity: 0 !important;
  overflow: hidden !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  visibility: visible !important;
}

.is-fix-sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .is-fix-sp {
    display: block;
  }
}

.is-fix-pc {
  display: block;
}
@media only screen and (max-width: 768px) {
  .is-fix-pc {
    display: none;
  }
}

.is-min-pc {
  display: none;
}
@media only screen and (min-width: 1081px) {
  .is-min-pc {
    display: block;
  }
}

.is-tab-pc {
  display: none;
}
@media only screen and (max-width: 1080px) {
  .is-tab-pc {
    display: block;
  }
}

.inner {
  max-width: 1280px;
  padding-inline: 40px;
  margin-inline: auto;
}
@media only screen and (max-width: 1080px) {
  .inner {
    padding-inline: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .inner {
    padding-inline: 16px;
  }
}

.inner--wide {
  max-width: 1440px;
  padding-inline: 60px;
  margin-inline: auto;
}
@media only screen and (max-width: 1080px) {
  .inner--wide {
    padding-inline: 0px;
  }
}
@media only screen and (max-width: 768px) {
  .inner--wide {
    padding-inline: 20px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 999;
  padding-block: 26px 25px;
}
@media only screen and (max-width: 768px) {
  .header {
    padding-block: 8px 8px;
  }
}

.header__inner {
  max-width: 1440px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-inline: 143px 143px;
  margin-inline: auto;
}
@media only screen and (max-width: 1300px) {
  .header__inner {
    padding-inline: 20px 20px;
  }
}
@media only screen and (max-width: 1080px) {
  .header__inner {
    justify-content: space-between;
    padding-inline: 22px 20px;
  }
}

.header__headline {
  width: 162px;
}
@media only screen and (max-width: 1080px) {
  .header__headline {
    width: 100px;
  }
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media only screen and (max-width: 1300px) {
  .header__menu {
    gap: 20px;
  }
}
.header__menu.is-min-pc {
  display: none;
}
@media only screen and (min-width: 1081px) {
  .header__menu.is-min-pc {
    display: flex;
  }
}

.header__menu-nav {
  display: flex;
  gap: 19px;
}

.header__items {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__item.--purchase .header__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px 39px 5px 38px;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.03em;
  border: 1px solid #333;
  border-radius: 40px;
  background: #fff;
}
@media (any-hover: hover) {
  .header__item.--purchase .header__link:hover {
    opacity: 1;
    background: #EDFFFE;
  }
}
.header__item.--purchase .header__link:active {
  background: #D2F2F1;
}

.header__link {
  color: #333;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.03em;
  width: 100%;
  display: block;
  height: 100%;
}

.header__sns {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__sns.is-min-pc {
  display: none;
}
@media only screen and (min-width: 1081px) {
  .header__sns.is-min-pc {
    display: flex;
  }
}

.header__sns-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  aspect-ratio: 1/1;
}
.header__sns-link img {
  width: 100%;
}

.header__sp-menu {
  display: none;
  align-items: center;
}
@media only screen and (max-width: 1080px) {
  .header__sp-menu.is-tab-pc {
    display: flex;
    gap: 11px;
  }
}

.header__sp-menu-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 6px 24px;
  border-radius: 40px;
  border: 1px solid #333;
  background: #FFF;
  color: #333;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.7px;
}
@media only screen and (max-width: 360px) {
  .header__sp-menu-link {
    padding: 6px;
  }
}

.header-drawer-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 41px;
  aspect-ratio: 1/1;
  padding: 8px;
  transition: opacity 0.3s;
  cursor: pointer;
}
.header-drawer-button img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (any-hover: hover) {
  .header-drawer-button:hover {
    opacity: 0.7;
  }
}

.header-drawer {
  width: 82%;
  height: 100%;
  background-color: #D2F2F1;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  translate: 100% 0;
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  overflow: auto;
}
.header-drawer.js-open {
  translate: 0 0;
}

.header-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 22px 19px;
  padding-top: 20px;
}

.header-drawer__body {
  padding: 12px 26px;
}

.header-drawer__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.header-drawer__item {
  width: 100%;
  border-bottom: 1px solid #767676;
}

.header-drawer__item.--contact {
  border-bottom: none;
  margin-top: 31px;
  text-align: center;
  border-radius: 40px;
  border: 1px solid #333;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.header-drawer__link {
  display: block;
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  padding-left: 10px;
  padding-block: 21px;
}

.header-drawer__item.--contact .header-drawer__link {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.8px;
  padding-block: 15px;
}

.header-drawer__bottom {
  margin-top: 32px;
}

.header-drawer__bottom-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: center;
}

.header-drawer__sns-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 8px;
}

.header-drawer__sns-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
}
.header-drawer__sns-link img {
  width: 100%;
}

.c-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(51, 51, 51, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 90;
}

body.js-open .c-drawer-overlay {
  opacity: 1;
  visibility: visible;
}

body.js-open .header__logo img {
  opacity: 0.1;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.c-footer {
  padding: 80px 0;
  background: #E6E6E6;
  border-top: 1px solid #333;
}
@media only screen and (max-width: 768px) {
  .c-footer {
    padding: 38px 0;
  }
}

.c-footer__inner {
  display: flex;
  gap: 48px;
  padding-inline: 46px;
}
@media only screen and (max-width: 1080px) {
  .c-footer__inner {
    flex-flow: column;
    gap: 29px;
    padding-inline: 16px;
  }
}

.c-footer__info {
  max-width: 520px;
}
@media only screen and (max-width: 1080px) {
  .c-footer__info {
    margin-inline: auto;
  }
}

.c-footer__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
@media only screen and (max-width: 768px) {
  .c-footer__head {
    gap: 9px;
  }
}
@media only screen and (max-width: 768px) {
  .c-footer__head img {
    width: 40px;
  }
}

.c-footer__company {
  color: #333;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.c-footer__company-text-wrap {
  font-size: 18px;
  line-height: 1.3;
  margin-top: 10px;
  letter-spacing: 0.05em;
  display: flex;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .c-footer__company-text-wrap {
    flex-flow: column;
    margin-top: 5px;
  }
}

@media only screen and (max-width: 768px) {
  .c-footer__company-text-wrap a {
    padding-left: 7px;
  }
}

.c-footer__meta {
  margin-top: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .c-footer__meta {
    margin-top: 7px;
  }
}

.c-footer__desc {
  margin-top: 14px;
  padding-right: 23px;
  font-size: 14px;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 400;
  line-height: 1.71;
}
@media only screen and (max-width: 768px) {
  .c-footer__desc {
    margin-top: 14px;
  }
}

.c-footer__sns {
  display: flex;
  gap: 16px;
  margin-top: 17px;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .c-footer__sns {
    gap: 12px;
    margin-top: 18px;
  }
}

.c-footer__sns img {
  width: 32px;
  height: auto;
}

.c-footer__nav {
  display: flex;
  gap: 58px;
}
@media only screen and (max-width: 1080px) {
  .c-footer__nav {
    justify-content: center;
  }
}
@media only screen and (max-width: 768px) {
  .c-footer__nav {
    flex-flow: column;
    gap: 34px;
  }
}

.c-footer__menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
  color: #333;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: 0.05em;
}

.c-footer__menu a {
  color: #333;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.18em;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .c-footer__menu a {
    font-size: 16px;
    gap: 32px;
    letter-spacing: 0.05em;
  }
}

@media (hover: hover) {
  .c-footer__menu a:hover {
    text-decoration: underline;
  }
}
.breadcrumb {
  padding-block: 20px 20px;
  overflow-x: auto;
}
@media only screen and (max-width: 768px) {
  .breadcrumb {
    padding-block: 16px 12px;
  }
}

.breadcrumb__items {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media only screen and (max-width: 768px) {
  .breadcrumb__items {
    gap: 2px;
  }
}
.breadcrumb__items > li {
  display: flex;
  align-items: center;
  gap: 2px;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  vertical-align: middle;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .breadcrumb__items > li {
    font-size: 12px;
    gap: 4px;
  }
}
.breadcrumb__items > li:after {
  content: "";
  display: inline-block;
  background: url("../img/common/icon-breadcrumb-arrow.svg") no-repeat center center/contain;
  width: 16px;
  height: 16px;
}
.breadcrumb__items > li:last-child:after {
  content: none;
}
.breadcrumb__items > li:not(:has(+ li))::after {
  content: none;
}
.breadcrumb__items > li a {
  display: block;
  color: #0e4988;
}
.wpcf7-spinner {
  display: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

.c-form__content {
  padding-top: 32px;
}

.c-form__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background-color: #fff;
  padding: 40px;
}
@media only screen and (max-width: 768px) {
  .c-form__container {
    gap: 24px;
    padding: 32px 20px;
  }
}

.c-form__item-label {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 32.3404255319%;
  min-width: 210px;
  height: -moz-fit-content;
  height: fit-content;
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #2e3139;
  padding: 12px;
}
@media only screen and (max-width: 768px) {
  .c-form__item-label {
    gap: 8px;
    width: 100%;
    font-size: 12px;
    padding: 0;
  }
}
.c-form__item-label .required {
  font-weight: 700;
  font-size: 10px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #fff;
  border-radius: 4px;
  padding: 2px 8px;
}
@media only screen and (max-width: 768px) {
  .c-form__item-label .required {
    font-size: 10px;
  }
}
.c-form__item-label .optional {
  font-weight: 700;
  font-size: 10px;
  line-height: 150%;
  letter-spacing: 0.02em;
  background-color: #e0e6eb;
  border-radius: 4px;
  padding: 2px 8px;
}
@media only screen and (max-width: 768px) {
  .c-form__item-label .optional {
    font-size: 10px;
  }
}
.c-form__item-label:not(:has(.required)):not(:has(.optional)) {
  padding-left: 64px;
}
@media only screen and (max-width: 768px) {
  .c-form__item-label:not(:has(.required)):not(:has(.optional)) {
    padding-left: 0;
  }
}

.c-form__item-content {
  width: 100%;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  align-content: center;
  resize: none;
  display: flex;
  flex-direction: column;
  min-height: 41px;
  flex: 1;
}
.c-form__item-content.page-title input {
  border: none;
  padding-left: 0;
  pointer-events: none;
}
.c-form__item-content input,
.c-form__item-content textarea,
.c-form__item-content select {
  width: 100%;
  border: 1px solid #cbd1d9;
  border-radius: 8px;
  padding: 14px 12px;
}
.c-form__item-content select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url("../img/cf7/icon-form-select-arrow.svg") no-repeat right 16px center/24px 24px;
}

.c-form__item-note {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #5e6472;
  margin-top: 8px;
}
@media only screen and (max-width: 768px) {
  .c-form__item-note {
    font-size: 12px;
  }
}

.c-form__notice {
  margin-top: 32px;
}

.c-form__notice-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 768px) {
  .c-form__notice-title {
    font-size: 20px;
  }
}
.c-form__notice-title::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #cbd1d9;
  flex: 1;
}

.c-form__notice-list {
  margin-top: 16px;
}

.c-form__notice-list-item {
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0.02em;
  text-indent: -1em;
  padding-left: 1em;
}
@media only screen and (max-width: 768px) {
  .c-form__notice-list-item {
    font-size: 14px;
  }
}
.c-form__notice-list-item::before {
  content: "・";
}
.c-form__notice-list-item a {
  color: #0e4988;
  text-decoration: underline;
}

.c-form__notice-regal {
  background-color: #e0e6eb;
  padding: 20px;
  margin-top: 32px;
}

.c-form__notice-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .c-form__notice-text {
    font-size: 14px;
  }
}
.c-form__notice-text a {
  color: #0e4988;
}

.contact .wpcf7-not-valid-tip {
  margin-top: 8px;
  color: #ca0c0c;
  font-size: 14px;
  line-height: 1.71429;
  line-height: 1.4;
  min-height: 1.4em;
  display: block;
}

.c-form__notice-regal .wpcf7-form-control-wrap {
  display: block;
  padding-block: 6px;
  margin-top: 12px;
}
.c-form__notice-regal .wpcf7-form-control-wrap .wpcf7-list-item {
  display: block;
  margin: 0;
}
.c-form__notice-regal .wpcf7-form-control-wrap label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}
.c-form__notice-regal .wpcf7-form-control-wrap input[type=checkbox] {
  width: 32px;
  height: 32px;
  background-color: #FFF;
  border: 1px solid #cbd1d9;
  border-radius: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  cursor: pointer;
  margin: 0;
}
.c-form__notice-regal .wpcf7-form-control-wrap input[type=checkbox]:checked {
  background-color: #0e4988;
  border-color: #0e4988;
}
.c-form__notice-regal .wpcf7-form-control-wrap input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  width: 10px;
  height: 16px;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(45deg);
}
.c-form__notice-regal .wpcf7-form-control-wrap .wpcf7-list-item-label {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.c-form__group-wrap {
  display: flex;
  flex-flow: column;
  gap: 23px;
}

.c-form__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
@media only screen and (max-width: 768px) {
  .c-form__wrap {
    flex-direction: column-reverse;
  }
}

.c-form__notice-recaptcha {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  vertical-align: middle;
  margin-top: 32px;
}
.c-form__notice-recaptcha a {
  color: #0e4988;
}

.c-form__thanks-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .c-form__thanks-title {
    font-size: 20px;
  }
}

.c-form__thanks-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 768px) {
  .c-form__thanks-text {
    font-size: 14px;
  }
}

.c-form__thanks-note {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #5e6472;
  margin-top: 16px;
}
@media only screen and (max-width: 768px) {
  .c-form__thanks-note {
    font-size: 12px;
  }
}

.c-form__thanks-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-form__thanks-detail-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #5e6472;
}
@media only screen and (max-width: 768px) {
  .c-form__thanks-detail-text {
    font-size: 12px;
  }
}

.c-form__thanks-detail-mail {
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.04em;
  color: #0e4988;
}

.c-form__button {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .c-form__button {
    margin-top: 20px;
  }
}

.p-article {
  background: #fff;
}

.p-article-fv {
  padding-block: 81px 79px;
}
@media only screen and (max-width: 768px) {
  .p-article-fv {
    padding-block: 32px;
  }
}

.p-article-fv__title {
  color: #333;
  text-align: center;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 80px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  .p-article-fv__title {
    font-size: 26px;
    line-height: 1.38;
  }
}

.p-article-contents {
  background: #F8F8F8;
}

.p-article-contents__inner {
  max-width: 1121px;
  margin: 0 auto;
  padding: 0 24px;
  padding-block: 72px 80px;
}
@media only screen and (max-width: 768px) {
  .p-article-contents__inner {
    padding-block: 32px;
    padding-inline: 0;
  }
}

.p-article-tabs {
  position: relative;
  border-bottom: 1px solid #cfcfcf;
}
@media only screen and (max-width: 768px) {
  .p-article-tabs {
    border-bottom: 1px solid #333;
    margin-inline: auto;
    width: 100%;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    overflow-y: hidden;
    padding-inline: 16px;
  }
}

.p-article-tabs__list {
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  .p-article-tabs__list {
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.p-article-tabs__item {
  flex: 1;
}
@media only screen and (max-width: 768px) {
  .p-article-tabs__item {
    display: flex;
    justify-content: center;
  }
}

/* Chrome / Safari */
.p-article-tabs::-webkit-scrollbar {
  display: none;
}

/* Firefox */
.p-article-tabs {
  scrollbar-width: none;
}

/* IE / Edge(旧) */
.p-article-tabs {
  -ms-overflow-style: none;
}

.p-article-tabs__link {
  position: relative;
  display: inline-block;
  padding: 12px 0;
  color: #333;
  font-size: 14px;
  text-decoration: none;
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.48px;
  font-family: "BIZ UDPGothic", sans-serif;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .p-article-tabs__link {
    padding: 8px 12px;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
  }
}

.p-article-tabs__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 4px;
  background: #333;
  opacity: 0;
  transition: opacity 0.3s;
}

.p-article-tabs__link.is-active::after {
  opacity: 1;
}

.p-article-tabs__link:hover::after {
  opacity: 0.4;
}

.p-article-card__thumb img {
  aspect-ratio: 320/180;
  width: 100%;
  border-radius: 8px 8px 0 0;
}

.p-article-card {
  background: #fff;
  border-radius: 8px;
}

.p-article-card__link {
  display: flex;
  flex-flow: column;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  transition: 0.3s;
  height: 100%;
}

@media (any-hover: hover) {
  .p-article-card__link:hover {
    box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.15);
    opacity: 1;
  }
}
.p-article-card__title-wrap {
  padding-block: 24px;
  padding-inline: 16px;
  height: 100%;
  display: flex;
  flex-flow: column;
}
@media only screen and (max-width: 768px) {
  .p-article-card__title-wrap {
    padding-block: 24px 30px;
    padding-inline: 16px;
  }
}

.p-article-card__title {
  color: #000;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.9px;
}

.p-article-card__grade {
  color: #767676;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin-top: 8px;
}

.p-article-card__text {
  overflow: hidden;
  color: #000;
  text-overflow: ellipsis;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-block: 8px 28px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .p-article-card__text {
    margin-block: 8px 16px;
  }
}

.p-article-card__date {
  display: block;
  color: #333;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.56px;
  margin-top: auto;
}

.p-article-card__tags {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1;
  margin-top: 8px;
}

.p-article-card__tag {
  color: #767676;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  line-height: 1;
}

.p-pagination__item.is-current {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 40px;
  border: 1px solid #767676;
}
@media only screen and (max-width: 768px) {
  .p-pagination__item.is-current {
    width: 30px;
    height: 30px;
  }
}

.p-pagination__item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .p-pagination__item {
    width: 30px;
    height: 30px;
  }
}
@media only screen and (max-width: 430px) {
  .p-pagination__item {
    width: 27px;
    height: 27px;
  }
}

.p-pagination__list {
  margin-top: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .p-pagination__list {
    gap: 20px;
  }
}
@media only screen and (max-width: 390px) {
  .p-pagination__list {
    gap: 15px;
  }
}
@media only screen and (max-width: 350px) {
  .p-pagination__list {
    gap: 10px;
  }
}

.p-pagination__list .dots {
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .p-pagination__list .dots {
    width: 30px;
    height: 30px;
  }
}
@media only screen and (max-width: 430px) {
  .p-pagination__list .dots {
    width: 10px;
    height: 10px;
    font-size: 10px;
  }
}

.p-pagination__item a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-pagination__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}
@media only screen and (max-width: 768px) {
  .p-pagination__arrow {
    width: 30px;
    height: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .p-pagination__arrow {
    width: 27px;
    height: 27px;
  }
}

.p-pagination__arrow a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-article-group__title {
  color: #000;
  text-align: center;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: 1.6px;
  margin-top: 76px;
}
@media only screen and (max-width: 768px) {
  .p-article-group__title {
    font-size: 22px;
  }
}

.p-article-group__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 45px;
  padding-inline: 28px;
}
@media only screen and (max-width: 768px) {
  .p-article-group__grid {
    grid-template-columns: repeat(1, 1fr);
    padding-inline: 24px;
    gap: 16px;
    margin-top: 28px;
  }
}

.p-article-group__grid:has(> :only-child) {
  grid-template-columns: 1fr;
  justify-content: center;
  margin-inline: auto;
  max-width: 375px;
}
@media only screen and (max-width: 768px) {
  .p-article-group__grid:has(> :only-child) {
    max-width: unset;
  }
}

.p-article-group__grid:has(> :nth-child(2):last-child) {
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  margin-inline: auto;
  max-width: 728px;
}
@media only screen and (max-width: 768px) {
  .p-article-group__grid:has(> :nth-child(2):last-child) {
    grid-template-columns: repeat(1, 1fr);
    max-width: unset;
  }
}

.p-article-group__more {
  margin-top: 38px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-article-group__more {
    margin-top: 32px;
  }
}
.p-article-group__more a {
  display: flex;
  max-width: 227px;
  margin-inline: auto;
  padding-block: 5px;
  padding-inline: 0;
}

.p-article-single {
  padding: 80px 0 0;
}
@media only screen and (max-width: 768px) {
  .p-article-single {
    padding: 56px 0 0;
  }
}

.p-article-single__inner {
  max-width: 840px;
  margin: 0 auto;
  padding: 64px 20px 0;
}
@media only screen and (max-width: 768px) {
  .p-article-single__inner {
    padding: 24px 16px 0;
  }
}

/* ======================
   パンくず
====================== */
.p-article-single__breadcrumb {
  font-size: 14px;
  color: #333;
  font-family: "BIZ UDPGothic", sans-serif;
  line-height: 1.71;
}

.p-article-single__breadcrumb a {
  color: #333;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.71;
  text-decoration: none;
}

.p-article-single__article {
  margin-top: 24px;
}
@media only screen and (max-width: 768px) {
  .p-article-single__article {
    margin-top: 16px;
  }
}

.wp-block-post-excerpt__excerpt {
  color: #000;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.05em;
}

/* ======================
   タイトル
====================== */
.p-article-single__title {
  color: #333;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.66;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  .p-article-single__title {
    font-size: 26px;
    line-height: 1.38;
  }
}

/* ======================
   日付
====================== */
.p-article-single__date {
  display: block;
  margin-top: 24px;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
}
@media only screen and (max-width: 768px) {
  .p-article-single__date {
    margin-top: 16px;
    font-size: 16px;
  }
}

/* ======================
   タグ（ピル）
====================== */
.p-article-single__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
@media only screen and (max-width: 768px) {
  .p-article-single__tags {
    margin-top: 16px;
  }
}

.p-article-single__tag {
  display: inline-block;
  padding: 4px 12px;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #333;
  text-decoration: none;
  background: #A5D7D6;
  border-radius: 40px;
}
@media only screen and (max-width: 768px) {
  .p-article-single__tag {
    font-size: 12px;
  }
}

/* ======================
   メイン画像
====================== */
.p-article-single__thumb {
  padding-block: 40px 64px;
}
@media only screen and (max-width: 768px) {
  .p-article-single__thumb {
    padding-block: 40px 24px;
  }
}

.p-article-single__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

/* ======================
   本文
====================== */
.p-article-single__content {
  font-size: 15px;
  line-height: 2;
  color: #333;
  padding-block: 64px;
  display: flex;
  flex-flow: column;
  gap: 24px;
}
@media only screen and (max-width: 768px) {
  .p-article-single__content {
    padding-block: 32px;
  }
}
.p-article-single__content .text-large {
  font-size: 18px;
  line-height: 2.2222222222;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  .p-article-single__content .text-large {
    font-size: 16px;
    line-height: 26px;
  }
}

.p-article-single__content p {
  color: #000;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}
@media only screen and (max-width: 768px) {
  .p-article-single__content p {
    line-height: 1.71;
    font-size: 14px;
  }
}

@media only screen and (max-width: 768px) {
  .p-article-single__content p {
    font-size: 14px;
  }
}

/* =========================
   Article Heading
========================= */
.p-article-single__content h2,
.p-article-single__content h3,
.p-article-single__content h4,
.p-article-single__content h5,
.p-article-single__content h6 {
  padding-left: 20px;
  margin-block: 16px;
  font-family: "BIZ UDPGothic", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: 1.6px;
  color: #000;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-article-single__content h2,
  .p-article-single__content h3,
  .p-article-single__content h4,
  .p-article-single__content h5,
  .p-article-single__content h6 {
    line-height: 1.36;
  }
}

.p-article-single__content h2::before,
.p-article-single__content h3::before,
.p-article-single__content h4::before,
.p-article-single__content h5::before,
.p-article-single__content h6::before {
  content: "";
  position: absolute;
  display: inline-block;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #81BBBF;
  border-radius: 20px;
}

/* ===== font-size ===== */
.p-article-single__content h2 {
  font-size: 32px;
}
@media only screen and (max-width: 768px) {
  .p-article-single__content h2 {
    font-size: 22px;
  }
}

.p-article-single__content h3 {
  font-size: 26px;
}
@media only screen and (max-width: 768px) {
  .p-article-single__content h3 {
    font-size: 20px;
  }
}

.p-article-single__content h4 {
  font-size: 22px;
}
@media only screen and (max-width: 768px) {
  .p-article-single__content h4 {
    font-size: 18px;
  }
}

.p-article-single__content h5 {
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .p-article-single__content h5 {
    font-size: 16px;
  }
}

.p-article-single__content h6 {
  font-size: 16px;
}

.p-article-single__content li:not(:first-child) {
  margin-top: 6px;
}

.wp-block-list li {
  position: relative;
  padding-left: 12px;
  color: #000;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}
.wp-block-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  background: #ACA696;
  border-radius: 50%;
  display: inline-block;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .wp-block-list li {
    font-size: 14px;
  }
}

.p-article-single__content figure {
  text-align: center;
}

.p-article-single__content figcaption {
  margin-top: 8px;
  font-size: 12px;
  color: #888;
}

.wp-block-quote {
  position: relative;
  padding-left: 16px;
  margin-block: 16px;
  color: #000;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}
.wp-block-quote::before {
  content: "";
  position: absolute;
  display: inline-block;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #ACA696;
  border-radius: 20px;
}

.wp-block-image img {
  aspect-ratio: 342/192;
  width: 100%;
  height: 100%;
}

.p-article-single__content figcaption {
  margin-block: 12px 0;
  color: #000;
  text-align: center;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.04en;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p-top-fv__catch {
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 600ms;
  animation-timing-function: ease-out;
  animation-delay: 100ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.p-top-feature__head {
  opacity: 0;
}

.p-top-feature__head.is-animate {
  animation: fadeIn 400ms ease-out 0ms forwards;
}

.p-top-feature__item {
  opacity: 0;
}

.p-top-feature__item.is-animate {
  animation: fadeIn 400ms ease-out 0ms forwards;
}

.js-kids {
  animation: kidsFloatQuick 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  will-change: transform;
}

.kid-1 {
  animation-delay: 0s;
}

.kid-2 {
  animation-delay: 0.25s;
}

.kid-3 {
  animation-delay: 0.5s;
}

.kid-4 {
  animation-delay: 0.75s;
}

.kid-5 {
  animation-delay: 1s;
}

@keyframes kidsFloatQuick {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-6px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}
.p-top-fv__visual-deco {
  opacity: 0;
  transform: translate(60px, -60px) rotate(8deg);
}

@keyframes birdFlyIn {
  0% {
    opacity: 0;
    transform: translate(60px, -60px) rotate(8deg);
  }
  80% {
    opacity: 1;
    transform: translate(-3px, 2px) rotate(-3deg);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg);
  }
}
.p-top-fv__visual-deco.is-animate {
  animation: birdFlyIn 800ms ease-out forwards;
}

.p-top-commitment__bird {
  position: absolute;
  height: auto;
  width: 57px;
  top: calc(50% - 63px);
  left: calc(50% - 279px);
  z-index: 2;
  transform: translate(-50%, -50%) translate(-90px, -40px) rotate(-12deg);
}
@media only screen and (max-width: 768px) {
  .p-top-commitment__bird {
    width: 32px;
    top: calc(50% - 36px);
    left: calc(50% - 148px);
  }
}

@keyframes birdFlyInLeft {
  0% {
    opacity: 0;
    transform: translate(-90px, -40px) rotate(-12deg);
  }
  80% {
    opacity: 1;
    transform: translate(2px, 1px) rotate(4deg);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg);
  }
}
.p-top-commitment__bird.is-animate {
  animation: birdFlyInLeft 1.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.p-top-fit__fukidashi {
  position: relative;
}

.p-top-fit__fukidashi-svg {
  position: absolute;
  inset: 0;
  top: calc(50% + 12px);
  left: calc(50% - 1px);
  transform: translate(-50%, -50%);
  width: 500px;
  aspect-ratio: 500/246;
}
@media only screen and (max-width: 768px) {
  .p-top-fit__fukidashi-svg {
    top: calc(50% + 7px);
    left: calc(50% - 1px);
    max-width: 328px;
    width: 100%;
  }
}

.p-top-fit__fukidashi-line {
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
}

.p-top-fit__fukidashi.is-animate .p-top-fit__fukidashi-line {
  animation: fukidashiDraw 3s ease forwards;
}

@keyframes sway {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.p-top-fit__boy,
.p-top-fit__girl,
.p-top-fit__illust,
.p-top-fit__cloud {
  transform-origin: bottom center;
}

.p-top-fit__boy.is-animate,
.p-top-fit__girl.is-animate,
.p-top-fit__illust.is-animate,
.p-top-fit__cloud.is-animate {
  animation: sway 1.2s ease-in-out 0s 3 forwards;
}

.p-top-lineup__item,
.p-top-lineup__badge {
  opacity: 0;
  transform: translateX(-40px);
}

.p-top-lineup__item.is-animate,
.p-top-lineup__badge.is-animate {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.p-top-lineup__arrow {
  opacity: 0;
  transform: translateX(-24px) rotate(-8deg);
  transform-origin: center;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

@media screen and (max-width: 767px) {
  .p-top-lineup__arrow.is-fix-sp {
    transform: translateY(-20px) rotate(-6deg);
  }
}
.p-top-lineup__arrow.is-animate {
  opacity: 1;
  transform: translateX(0) rotate(0deg);
}

/* ======================
   p-top-news arrowアニメーション
====================== */
.p-top-news__arrow path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: stroke-dashoffset;
}

.p-top-news__arrow path:nth-of-type(1) {
  transition-delay: 0s;
}

.p-top-news__arrow path:nth-of-type(2) {
  transition-delay: 0.18s;
}

.p-top-news__arrow path:nth-of-type(3) {
  transition-delay: 0.36s;
}

.p-top-news__arrow path:nth-of-type(4) {
  transition-delay: 0.54s;
}

.p-top-news__arrow.is-animate path {
  stroke-dashoffset: 0;
}

.p-top-commitment__item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.p-top-commitment__item.is-animate {
  opacity: 1;
  transform: translateY(0);
}

.p-top-usability__grid {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.p-top-usability__grid.is-animate {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   開発ストーリー 吹き出し
======================================== */
.development-story__title-wrap {
  position: relative;
}

.development-story__fukidashi {
  position: absolute;
  top: calc(50% + 1px);
  left: calc(50% - 1px);
  transform: translate(-50%, -50%);
  width: 474px;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .development-story__fukidashi {
    max-width: 304px;
    width: 100%;
  }
}

.development-story__fukidashi-line {
  fill: none;
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.development-story__title-wrap.is-animate .development-story__fukidashi-line {
  animation: fukidashiDraw 3s ease forwards;
}

@keyframes fukidashiDraw {
  to {
    stroke-dashoffset: 0;
  }
}
/* ========================================
  フェードアップアニメーション
======================================== */
.js-fade-up {
  opacity: 0;
}

.js-fade-up.is-animate {
  animation: fadeIn 600ms ease-out 100ms forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ========================================
　開発背景　男の子・女の子アニメーション
======================================== */
.development-message__girl,
.development-message__boy {
  opacity: 0;
  transform: translateX(80px);
}

.is-animate .development-message__girl {
  animation: walkIn 0.8s ease-out 0.2s forwards;
}

.is-animate .development-message__boy {
  animation: walkIn 0.8s ease-out 0.4s forwards;
}

@keyframes walkIn {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.development-message__visual.is-animate img {
  animation: floatWalk 3s ease-in-out infinite;
}

/* ========================================
　開発背景　走っている男の子　アニメーション
======================================== */
.development-story__visual {
  opacity: 0;
  transform: translateX(-80px);
}

.is-animate .development-story__visual {
  animation: runIn 0.8s ease-out forwards;
}

.development-story__visual.is-animate {
  animation: floatWalk 3s ease-in-out infinite;
  opacity: 1;
}

@keyframes runIn {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes floatWalk {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}
.page__headline {
  font-weight: 700;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 768px) {
  .page__headline {
    font-size: 24px;
  }
}

.single__body.page__body {
  padding-top: 32px;
  padding-bottom: 0px;
}
@media only screen and (max-width: 768px) {
  .single__body.page__body {
    padding-top: 20px;
  }
}

.c-title {
  color: #333;
  text-align: center;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.66;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 768px) {
  .c-title {
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.46;
  }
}

ruby {
  ruby-position: over;
  ruby-align: center;
}

rt {
  text-align: center;
  white-space: nowrap;
  padding-bottom: 3px;
  font-size: 0.55em;
}

.p-top-fv {
  position: relative;
  padding: 26px 0;
  background-image: url(../img/top/fv_back.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  height: 592px;
}
@media only screen and (min-width: 1441px) {
  .p-top-fv {
    background-position: bottom;
    background-size: cover;
    padding: 50px 0;
    height: unset;
  }
}
@media only screen and (min-width: 2400px) {
  .p-top-fv {
    padding: 150px 0;
  }
}
@media only screen and (max-width: 1080px) {
  .p-top-fv {
    height: auto;
    background-position: bottom;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-fv {
    padding: 8px 0 207px;
    background-image: url(../img/top/fv_back_sp.png);
    background-size: cover;
  }
}

.p-top-fv::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 250px;
  background-color: #FFFCDE;
  display: inline-block;
  z-index: -1;
}
@media only screen and (min-width: 1441px) {
  .p-top-fv::before {
    height: 661px;
  }
}

.p-top-fv__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .p-top-fv__inner {
    flex-flow: column;
    gap: 9px;
  }
}

.p-top-fv__visual {
  position: relative;
}

.p-top-fv__visual-main {
  z-index: 2;
  height: auto;
  width: 100%;
  max-width: clamp(160px, 38vw, 526px);
}
@media only screen and (max-width: 768px) {
  .p-top-fv__visual-main {
    max-width: 400px;
    margin-inline: auto;
    width: 88%;
  }
}

.p-top-fv__visual-deco {
  width: 4vw;
  position: absolute;
  top: 47%;
  right: 19%;
  z-index: 2;
  height: auto;
}
@media only screen and (min-width: 1600px) {
  .p-top-fv__visual-deco {
    width: 57px;
    top: 47%;
    right: 19%;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-fv__visual-deco {
    width: 39px;
    top: 46%;
    right: 23%;
  }
}

.p-top-fv__content {
  position: absolute;
  top: 2.4rem;
  left: 3.8rem;
  z-index: 3;
  width: 524px;
  height: auto;
}
@media only screen and (min-width: 1600px) {
  .p-top-fv__content {
    transform: translateX(-50%);
    left: calc(50% - 400px);
  }
}
@media only screen and (max-width: 1080px) {
  .p-top-fv__content {
    left: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-fv__content {
    position: unset;
  }
}

.p-top-fv__catch {
  color: #333;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: clamp(26px, 3.3vw, 48px);
  font-weight: 700;
  line-height: 1.66;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 768px) {
  .p-top-fv__catch {
    text-align: center;
    font-size: 26px;
    line-height: 1.56;
  }
}

.p-top-fv__text {
  padding-left: 13px;
  padding-top: 18px;
}
@media only screen and (max-width: 768px) {
  .p-top-fv__text {
    padding-left: 3px;
    padding-top: 16px;
  }
}

.p-top-fv__catch-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .p-top-fv__catch-row {
    justify-content: center;
  }
}

.p-top-fv__dekita {
  flex-shrink: 0;
}

.p-top-fv__dekita img {
  display: block;
  width: 100%;
  height: auto;
  max-width: clamp(140px, 17vw, 243px);
}
@media only screen and (max-width: 768px) {
  .p-top-fv__dekita img {
    width: 134px;
    max-width: unset;
  }
}

.p-top-fv__catch-sub {
  margin-left: 9rem;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-top-fv__catch-sub {
    margin-left: 0.9rem;
  }
}

.p-top-fv__catch-sub-rub {
  font-size: 16px;
  position: absolute;
  top: -26px;
  left: 27px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 1300px) {
  .p-top-fv__catch-sub-rub {
    left: 16px;
    top: -18px;
    font-size: 14px;
    font-size: clamp(12px, 0.3vw, 16px);
  }
}
@media only screen and (max-width: 768px) {
  .p-top-fv__catch-sub-rub {
    left: 15px;
    top: -14px;
    font-size: 8px;
  }
}

.p-top-fv__bg01 {
  position: absolute;
  transform: translateX(50%);
  left: calc(50% + 25.2vw);
  bottom: 15px;
  width: 7.6vw;
}
@media only screen and (min-width: 1600px) {
  .p-top-fv__bg01 {
    left: calc(50% + 363px);
    bottom: 15px;
    width: 109px;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-fv__bg01 {
    left: calc(50% + 18.2vw);
    bottom: -162px;
    width: 17.6vw;
  }
}

.p-top-fv__bg02 {
  position: absolute;
  transform: translateX(50%);
  left: calc(50% + 16.69vw);
  bottom: 12px;
  width: 6.4vw;
}
@media only screen and (min-width: 1600px) {
  .p-top-fv__bg02 {
    width: 92px;
    left: calc(50% + 239px);
  }
}
@media only screen and (max-width: 768px) {
  .p-top-fv__bg02 {
    left: calc(50% + 2.69vw);
    bottom: -181px;
    width: 14.5vw;
  }
}

.p-top-fv__bg03 {
  position: absolute;
  transform: translateX(50%);
  left: calc(50% - 47.3vw);
  bottom: 26px;
  width: 7.3vw;
}
@media only screen and (min-width: 1600px) {
  .p-top-fv__bg03 {
    left: calc(50% - 680px);
    bottom: 26px;
    width: 105px;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-fv__bg03 {
    bottom: -163px;
    width: 68px;
    left: calc(50% - 54.1vw);
    width: 17.6vw;
  }
}

.p-top-fv__bg04 {
  position: absolute;
  transform: translateX(50%);
  left: calc(50% - 41vw);
  bottom: 2px;
  width: 9.1vw;
}
@media only screen and (min-width: 1600px) {
  .p-top-fv__bg04 {
    left: calc(50% - 589px);
    bottom: 15px;
    width: 131px;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-fv__bg04 {
    bottom: -179px;
    width: 68px;
    left: calc(50% - 37.7vw);
    width: 21vw;
  }
}

.p-top-fv__bg05 {
  position: absolute;
  transform: translateX(50%);
  left: calc(50% - 27.5vw);
  bottom: 26px;
  width: 6.1vw;
}
@media only screen and (min-width: 1600px) {
  .p-top-fv__bg05 {
    left: calc(50% - 397px);
    bottom: 15px;
    width: 87px;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-fv__bg05 {
    bottom: -128px;
    width: 68px;
    left: calc(50% - 14.7vw);
    width: 14vw;
  }
}

.p-top-fv__bg06 {
  position: absolute;
  transform: translateX(50%);
  left: calc(50% - 40.8vw);
  bottom: 16.5vw;
  width: 2.2vw;
}
@media only screen and (min-width: 1600px) {
  .p-top-fv__bg06 {
    left: calc(50% - 584px);
    bottom: 240px;
    width: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-fv__bg06 {
    display: none;
  }
}

.p-top-fv__bg07 {
  position: absolute;
  transform: translateX(50%);
  left: calc(50% + 16.2vw);
  bottom: 25.5vw;
  width: 7.6vw;
}
@media only screen and (min-width: 1600px) {
  .p-top-fv__bg07 {
    left: calc(50% + 195px);
    bottom: 15px;
    width: 109px;
    top: 28px;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-fv__bg07 {
    left: calc(50% - 54.8vw);
    bottom: -162px;
    width: 17vw;
    top: 66px;
  }
}

.p-top-fv__bg08 {
  position: absolute;
  transform: translateX(50%);
  left: calc(50% + 30.3vw);
  bottom: 29.4vw;
  width: 6.6vw;
}
@media only screen and (min-width: 1600px) {
  .p-top-fv__bg08 {
    left: calc(50% + 363px);
    bottom: 15px;
    width: 109px;
    top: -10px;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-fv__bg08 {
    left: calc(50% + 21.2vw);
    bottom: -165px;
    width: 16.5vw;
    top: 90px;
    bottom: unset;
  }
}

/* ===============================
   feature　セクション
=============================== */
.p-top-feature {
  padding-block: 75px 92px;
}
@media only screen and (max-width: 768px) {
  .p-top-feature {
    padding-block: 39px 40px;
  }
}

.p-top-feature__inner {
  display: flex;
  margin-top: 52px;
  max-width: 1280px;
  gap: 39px;
  align-items: center;
  padding-inline: 127px;
}
@media only screen and (max-width: 1080px) {
  .p-top-feature__inner {
    padding-inline: 40px;
    flex-flow: column;
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-feature__inner {
    margin-top: 29px;
    padding-inline: 15px;
    gap: 33px;
  }
}

.p-top-feature__title {
  color: #333;
  text-align: center;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: clamp(24px, 3.3vw, 42px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.85;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 768px) {
  .p-top-feature__title {
    font-size: 20px;
    line-height: 2;
  }
}

.p-top-feature__title-line rt {
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .p-top-feature__title-line rt {
    font-size: 9px;
  }
}

.p-top-feature__content {
  width: 488px;
}
@media only screen and (max-width: 768px) {
  .p-top-feature__content {
    width: 100%;
    max-width: 488px;
  }
}

.p-top-feature__item {
  color: #333;
  text-align: center;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.9px;
  border-bottom: 1px solid #dcdcdc;
  padding-block: 8px 10px;
}
@media only screen and (max-width: 768px) {
  .p-top-feature__item {
    font-size: clamp(14px, 4.2vw, 16px);
    padding-block: 13px 9px;
    letter-spacing: 0.04em;
    line-height: 1.625;
    letter-spacing: 0.05em;
  }
}

.p-top-feature__item ruby {
  ruby-position: over;
  ruby-merge: collapse;
  ruby-align: center;
}

.p-top-feature__item rt {
  font-size: 0.55em;
  text-align: center;
  white-space: nowrap;
}

.p-top-feature__movie {
  width: 100%;
  flex: 1;
  max-width: 496px;
}

.p-top-feature__movie-inner {
  position: relative;
}

.p-top-feature__movie-inner video {
  inset: 0;
  display: block;
  height: auto;
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 496/331;
  border: 1px solid #333;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-mv__video {
  width: 100%;
  display: block;
}

.p-video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 49px;
  height: 49px;
  border: none;
  background: none;
  cursor: pointer;
  transition: opacity 0.3s;
}
.p-video-play.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.p-top-feature__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: transform 0.25s ease;
}

.p-top-feature__play:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.p-top-feature__play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-left: 16px solid #333;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

/* ===============================
   Fit　セクション
=============================== */
.p-top-fit {
  padding: 77px 0 92px;
  background: #EDFAFF;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-top-fit {
    padding: 77px 0 50px;
  }
}

.p-top-fit::before {
  content: "";
  position: absolute;
  bottom: 119px;
  width: 48.4vw;
  aspect-ratio: 105/84;
  left: 0;
  background: #333;
  height: 1px;
}
@media only screen and (max-width: 1080px) {
  .p-top-fit::before {
    width: 42.4vw;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-fit::before {
    display: none;
  }
}

.p-top-fit::after {
  content: "";
  position: absolute;
  bottom: 119px;
  width: 14.4vw;
  aspect-ratio: 105/84;
  right: 0;
  background: #333;
  height: 1px;
}
@media only screen and (max-width: 768px) {
  .p-top-fit::after {
    display: none;
  }
}

.p-top-fit__inner {
  display: flex;
  align-items: self-end;
  gap: 63px;
  max-width: 1100px;
  padding-block: 0px;
}
@media only screen and (max-width: 1080px) {
  .p-top-fit__inner {
    gap: 0px;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-fit__inner {
    flex-flow: column;
    gap: 48px;
  }
}

.p-top-fit__visual {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: baseline;
  margin-top: 87px;
  gap: 16px;
  position: relative;
  top: 10px;
}
@media only screen and (max-width: 768px) {
  .p-top-fit__visual {
    margin-top: 5px;
    margin-inline: auto;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-fit__visual::before {
    content: "";
    position: absolute;
    bottom: 24px;
    width: 114vw;
    aspect-ratio: 105/84;
    left: -21.6vw;
    background: #333;
    height: 1px;
  }
}

figure.p-top-fit__illust {
  width: 7.8vw;
  max-width: 112px;
  margin-right: 8px;
}
@media only screen and (max-width: 768px) {
  figure.p-top-fit__illust {
    width: 20.5vw;
    max-width: 112px;
    position: relative;
    left: 0px;
  }
}

.p-top-fit__cloud {
  position: absolute;
  top: -71px;
  width: 110px;
  width: 7.8vw;
  max-width: 110px;
}
@media only screen and (max-width: 768px) {
  .p-top-fit__cloud {
    top: -52px;
    width: 110px;
    width: 27.4vw;
    left: 2px;
  }
}

.p-top-fit__boy {
  width: 10.4vw;
  max-width: 149px;
  height: auto;
  margin-right: -5px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-top-fit__boy {
    width: 28.4vw;
    left: -14px;
  }
}

.p-top-fit__girl {
  max-width: 135px;
  width: 9.4vw;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-top-fit__girl {
    max-width: 135px;
    width: 25.8vw;
    left: -15px;
  }
}

.p-top-fit__content {
  max-width: 532px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .p-top-fit__content {
    margin-inline: auto;
  }
}

.p-top-fit__fukidashi {
  position: relative;
  padding: 32px 40px;
}

.p-top-fit__fukidashi-text {
  color: #333;
  text-align: center;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.62;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 768px) {
  .p-top-fit__fukidashi-text {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.05em;
  }
}

.p-top-fit__text {
  color: #333;
  text-align: center;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.03em;
  margin-top: 56px;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .p-top-fit__text {
    letter-spacing: 0em;
    margin-top: 33px;
    white-space: unset;
    font-size: 14px;
    text-align: left;
  }
}

.p-top-fit ruby {
  ruby-position: over;
}

.p-top-fit rt {
  font-size: 9px;
  text-align: center;
  white-space: nowrap;
  padding-bottom: 3px;
}
@media only screen and (max-width: 768px) {
  .p-top-fit rt {
    padding-bottom: 2px;
  }
}

.p-top-lineup {
  padding: 94px 0;
}
@media only screen and (max-width: 768px) {
  .p-top-lineup {
    padding: 63px 0;
  }
}

.p-top-lineup__arrow {
  position: relative;
  top: -10px;
}

.p-top-lineup__items {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 67px;
  max-width: 955px;
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .p-top-lineup__items {
    flex-wrap: wrap;
    gap: 19px;
    margin-top: 32px;
    row-gap: 17px;
  }
}

.p-top-lineup__item {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-top-lineup__item {
    width: 104px;
  }
}

@media only screen and (max-width: 768px) {
  figure.p-top-lineup__img {
    width: 108px;
  }
}

.p-top-lineup__img img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 180px;
}

.p-top-lineup__name {
  margin-top: 17px;
  color: #333;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  .p-top-lineup__name {
    margin-top: 9px;
    font-size: 16px;
    font-weight: 400;
  }
}

.p-top-lineup__badge {
  margin-top: 68px;
  width: 115px;
}
@media only screen and (max-width: 768px) {
  .p-top-lineup__badge {
    margin-top: 33px;
    width: 93px;
  }
}

.p-top-lineup__cta {
  margin-top: 76px;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  .p-top-lineup__cta {
    margin-top: 101px;
  }
  .p-top-lineup__cta svg {
    position: absolute;
    transform: translateX(-50%);
    left: calc(50% - 8px);
    top: -61px;
  }
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 80px;
  border-radius: 999px;
  border: 1px solid #333;
  color: #333;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: 0.25s ease;
  cursor: pointer;
  background: #fff;
}
@media (any-hover: hover) {
  .c-btn:hover {
    opacity: 1;
    background: #EDFFFE;
  }
}
.c-btn:active {
  background: #D2F2F1;
}
@media only screen and (max-width: 768px) {
  .c-btn {
    font-size: 14px;
    padding: 11px 79px;
  }
}

.c-btn-news.c-btn {
  padding: 9px 68px;
}
@media only screen and (max-width: 768px) {
  .c-btn-news.c-btn {
    padding: 11px 79px;
  }
}

.p-top-news {
  padding: 80px 0 87px;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .p-top-news {
    padding: 65px 0 62px;
  }
}

.p-top-news__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.p-top-news__list {
  border-top: 1px solid #e5e5e5;
  margin-top: 65px;
  max-width: 797px;
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .p-top-news__list {
    margin-top: 39px;
    gap: 58px;
  }
}

.p-top-news__item {
  border-bottom: 1px solid #e5e5e5;
}

.p-top-news__link {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 18px 0 15px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
@media only screen and (max-width: 768px) {
  .p-top-news__link {
    gap: 17px;
  }
}
.p-top-news__link:hover {
  opacity: 0.7;
}

.p-top-news__thumb {
  flex-shrink: 0;
  width: 192px;
  aspect-ratio: 192/108;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .p-top-news__thumb {
    aspect-ratio: 1/1;
    width: 106px;
  }
}
.p-top-news__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-news__body {
  flex: 1;
}

.p-top-news__date {
  display: block;
  font-size: 14px;
  color: #333;
  font-family: "BIZ UDPGothic", sans-serif;
}

.p-top-news__title {
  color: #333;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.03em;
  margin-top: 8px;
}
@media only screen and (max-width: 768px) {
  .p-top-news__title {
    margin-top: 2px;
  }
}

.p-top-news__btn {
  margin-top: 74px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 8px;
}
@media only screen and (max-width: 768px) {
  .p-top-news__btn {
    margin-top: 107px;
    position: relative;
  }
}
.p-top-news__btn svg {
  position: relative;
  top: -13px;
}
@media only screen and (max-width: 768px) {
  .p-top-news__btn svg {
    position: absolute;
    transform: translateX -50%;
    left: calc(50% - 13px);
    top: -61px;
  }
}

.c-btn-line {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid #333;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
}
.c-btn-line:hover {
  background: #333;
  color: #fff;
}

.p-top-commitment {
  padding: 110px 0 87px;
  background: #F8FBE6;
  overflow: hidden;
  position: relative;
  background-image: url(../img/top/features.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media (min-width: 1441px) {
  .p-top-commitment {
    background-position: bottom;
  }
}
@media (min-width: 1700px) {
  .p-top-commitment {
    background-image: url(../img/top/features_lg.png);
  }
}
@media only screen and (max-width: 768px) {
  .p-top-commitment {
    padding: 63px 0 20px;
    background-image: none;
  }
}

@media (min-width: 1440px) {
  .p-top-commitment::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -120px;
    width: 100%;
    height: 120px;
    background-image: url(../img/top/features.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    z-index: 1;
    pointer-events: none;
  }
  .p-top-usability {
    position: relative;
    z-index: 2;
  }
}
.p-top-commitment__inner {
  max-width: 1002px;
  margin: 0 auto;
  padding: 0 20px;
}

.p-top-commitment__bird {
  position: absolute;
  height: auto;
  width: 57px;
  top: calc(50% - 63px);
  left: calc(50% - 279px);
  z-index: 2;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 768px) {
  .p-top-commitment__bird {
    position: absolute;
    width: 32px;
    top: calc(50% - 36px);
    left: calc(50% - 148px);
  }
}

.p-top-commitment__deco-wrap {
  position: relative;
  margin-top: 22px;
  width: 100vw;
  left: -20px;
}

.p-top-commitment__deco-girl {
  position: absolute;
  transform: translate(-50%, -50%);
  left: calc(50% + 7px);
  bottom: calc(50% - 91px);
  width: 56px;
}

.p-top-commitment__deco-boy01 {
  position: absolute;
  transform: translate(-50%, -50%);
  left: calc(50% - 9px);
  bottom: calc(50% - 99px);
  width: 68px;
}

.p-top-commitment__deco-boy02 {
  position: absolute;
  transform: translate(-50%, -50%);
  left: calc(50% + 80px);
  bottom: calc(50% - 108px);
  width: 85px;
}

.p-top-commitment__deco-girls {
  position: absolute;
  transform: translate(-50%, -50%);
  left: calc(50% + 56px);
  top: calc(50% - 9px);
  width: 155px;
}

.p-top-commitment__title-wrap {
  position: relative;
}

.p-top-commitment__list {
  display: flex;
  flex-direction: column;
  gap: 77px;
  margin-top: 115px;
}
@media only screen and (max-width: 768px) {
  .p-top-commitment__list {
    gap: 59px;
    margin-top: 59px;
    max-width: 420px;
    margin-inline: auto;
    padding-inline: 4px;
  }
}

.p-top-commitment__list.--type2 {
  margin-top: 74px;
}
@media only screen and (max-width: 768px) {
  .p-top-commitment__list.--type2 {
    margin-top: 58px;
  }
}

.p-top-commitment__item {
  width: 100%;
  max-width: 648px;
}
@media only screen and (max-width: 768px) {
  .p-top-commitment__item {
    display: flex;
  }
}

.p-top-commitment__item.is-right {
  margin-left: auto;
}

.p-top-commitment__item.is-left .p-top-commitment__img img {
  border-radius: 20px 0px 20px 0px;
}
@media only screen and (max-width: 768px) {
  .p-top-commitment__item.is-left .p-top-commitment__img img {
    border-radius: 0 20px 0 20px;
  }
}

.p-top-commitment__box {
  display: flex;
  align-items: center;
  gap: 21px;
  padding: 22px 25px;
  border: 1px solid #333;
  background: #FFF;
  border-radius: 0 16px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-top-commitment__box {
    flex-flow: column;
    padding: 20px;
    gap: 12px;
  }
}
@media only screen and (max-width: 350px) {
  .p-top-commitment__box {
    padding: 15px 10px;
  }
}

.p-top-commitment__box-catch-wrap {
  position: absolute;
  right: 27px;
  top: -50px;
  color: #057D86;
  text-align: center;
  font-family: "BIZ UDPGothic";
  font-size: 18px;
  font-weight: 700;
  line-height: 2.2;
  letter-spacing: 0.9px;
  rotate: 2deg;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 768px) {
  .p-top-commitment__box-catch-wrap {
    top: -39px;
    rotate: 0deg;
    right: unset;
    font-size: 16px;
    letter-spacing: 0.05em;
  }
}

.p-top-commitment__box-catch {
  position: relative;
}

.p-top-commitment__box-catch::before {
  content: "";
  position: absolute;
  inset: 0;
  top: calc(50% + 2px);
  left: calc(50% - 153px);
  width: 16px;
  aspect-ratio: 16/24;
  transform: translate(-50%, -50%);
  background-color: #057D86;
  -webkit-mask: url("../img/top/g_line_left.svg") no-repeat center/contain;
          mask: url("../img/top/g_line_left.svg") no-repeat center/contain;
}
@media only screen and (max-width: 768px) {
  .p-top-commitment__box-catch::before {
    top: calc(50% + 2px);
    left: calc(50% - 125px);
    width: 11px;
    -webkit-mask: url("../img/top/g_line_left_sp.svg") no-repeat center/contain;
            mask: url("../img/top/g_line_left_sp.svg") no-repeat center/contain;
  }
}

.p-top-commitment__box-catch::after {
  content: "";
  position: absolute;
  inset: 0;
  top: calc(50% + 2px);
  left: calc(50% + 151px);
  width: 16px;
  aspect-ratio: 16/24;
  transform: translate(-50%, -50%);
  background-color: #057D86;
  -webkit-mask: url("../img/top/g_line_right.svg") no-repeat center/contain;
          mask: url("../img/top/g_line_right.svg") no-repeat center/contain;
}
@media only screen and (max-width: 768px) {
  .p-top-commitment__box-catch::after {
    top: calc(50% + 2px);
    left: calc(50% + 130px);
    width: 12px;
    -webkit-mask: url("../img/top/g_line_right_sp.svg") no-repeat center/contain;
            mask: url("../img/top/g_line_right_sp.svg") no-repeat center/contain;
  }
}

.p-top-commitment__item:nth-of-type(2) .p-top-commitment__box {
  border-radius: 16px 0;
}
@media only screen and (max-width: 768px) {
  .p-top-commitment__item:nth-of-type(2) .p-top-commitment__box {
    flex-direction: column-reverse;
  }
}
.p-top-commitment__item:nth-of-type(2) .p-top-commitment__box-catch-wrap {
  color: #B85C00;
  rotate: -2deg;
  left: 29px;
  top: -49px;
}
@media only screen and (max-width: 768px) {
  .p-top-commitment__item:nth-of-type(2) .p-top-commitment__box-catch-wrap {
    top: -40px;
    rotate: 0deg;
    left: unset;
  }
}
.p-top-commitment__item:nth-of-type(2) .p-top-commitment__box-catch::before {
  content: "";
  top: calc(50% + 2px);
  left: calc(50% - 126px);
  background-color: #B85C00;
}
@media only screen and (max-width: 768px) {
  .p-top-commitment__item:nth-of-type(2) .p-top-commitment__box-catch::before {
    content: "";
    left: calc(50% - 105px);
    width: 14px;
  }
}
.p-top-commitment__item:nth-of-type(2) .p-top-commitment__box-catch::after {
  top: calc(50% + 2px);
  left: calc(50% + 125px);
  background-color: #B85C00;
}
@media only screen and (max-width: 768px) {
  .p-top-commitment__item:nth-of-type(2) .p-top-commitment__box-catch::after {
    left: calc(50% + 108px);
    width: 14px;
  }
}
.p-top-commitment__item:nth-of-type(2) .p-top-commitment__heading {
  background: #FFE2D5;
}
.p-top-commitment__item:nth-of-type(2) .p-top-commitment__text {
  color: #B85C00;
}
@media only screen and (max-width: 768px) {
  .p-top-commitment__item:nth-of-type(2) .p-top-commitment__img img {
    border-radius: 20px 0px 20px 0px;
  }
}

.p-top-commitment__list:nth-of-type(5) .p-top-commitment__item:nth-of-type(1) .p-top-commitment__box-catch-wrap {
  color: #0B5BA0;
}
.p-top-commitment__list:nth-of-type(5) .p-top-commitment__item:nth-of-type(1) .p-top-commitment__box-catch::before {
  top: calc(50% + 2px);
  left: calc(50% - 119px);
}
@media only screen and (max-width: 768px) {
  .p-top-commitment__list:nth-of-type(5) .p-top-commitment__item:nth-of-type(1) .p-top-commitment__box-catch::before {
    left: calc(50% - 99px);
  }
}
.p-top-commitment__list:nth-of-type(5) .p-top-commitment__item:nth-of-type(1) .p-top-commitment__box-catch::before {
  background-color: #0B5BA0;
}
.p-top-commitment__list:nth-of-type(5) .p-top-commitment__item:nth-of-type(1) .p-top-commitment__box-catch::after {
  top: calc(50% + 2px);
  left: calc(50% + 114px);
}
@media only screen and (max-width: 768px) {
  .p-top-commitment__list:nth-of-type(5) .p-top-commitment__item:nth-of-type(1) .p-top-commitment__box-catch::after {
    left: calc(50% + 96px);
  }
}
.p-top-commitment__list:nth-of-type(5) .p-top-commitment__item:nth-of-type(1) .p-top-commitment__box-catch::after {
  background-color: #0B5BA0;
}
.p-top-commitment__list:nth-of-type(5) .p-top-commitment__item:nth-of-type(1) .p-top-commitment__heading {
  background: #D3F1FF;
}
.p-top-commitment__list:nth-of-type(5) .p-top-commitment__item:nth-of-type(1) .p-top-commitment__text {
  color: #0B5BA0;
}
.p-top-commitment__list:nth-of-type(5) .p-top-commitment__item:nth-of-type(2) .p-top-commitment__box {
  border-radius: 16px 0;
}
.p-top-commitment__list:nth-of-type(5) .p-top-commitment__item:nth-of-type(2) .p-top-commitment__box-catch-wrap {
  color: #C83D80;
  right: unset;
  rotate: -2deg;
  left: 28px;
}
@media only screen and (max-width: 768px) {
  .p-top-commitment__list:nth-of-type(5) .p-top-commitment__item:nth-of-type(2) .p-top-commitment__box-catch-wrap {
    left: unset;
    rotate: 0deg;
  }
}
.p-top-commitment__list:nth-of-type(5) .p-top-commitment__item:nth-of-type(2) .p-top-commitment__box-catch::before {
  top: calc(50% + 0px);
  left: calc(50% - 146px);
  background-color: #C83D80;
}
@media only screen and (max-width: 768px) {
  .p-top-commitment__list:nth-of-type(5) .p-top-commitment__item:nth-of-type(2) .p-top-commitment__box-catch::before {
    left: calc(50% - 122px);
  }
}
.p-top-commitment__list:nth-of-type(5) .p-top-commitment__item:nth-of-type(2) .p-top-commitment__box-catch::after {
  top: calc(50% + 2px);
  left: calc(50% + 145px);
  background-color: #C83D80;
}
@media only screen and (max-width: 768px) {
  .p-top-commitment__list:nth-of-type(5) .p-top-commitment__item:nth-of-type(2) .p-top-commitment__box-catch::after {
    left: calc(50% + 121px);
  }
}
.p-top-commitment__list:nth-of-type(5) .p-top-commitment__item:nth-of-type(2) .p-top-commitment__heading {
  background: #FFE4F1;
}
.p-top-commitment__list:nth-of-type(5) .p-top-commitment__item:nth-of-type(2) .p-top-commitment__text {
  color: #C83D80;
}

.p-top-commitment__content {
  flex: 1;
}

.p-top-commitment__label {
  background: #e6f4f8;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
  color: #333;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.p-top-commitment__heading {
  color: #333;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  padding: 12px 20px;
  display: inline;
  padding: 0.4em 0.3em;
  line-height: 2.1;
  background: #DEF9F8;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}
@media only screen and (max-width: 768px) {
  .p-top-commitment__heading {
    font-size: 18px;
    letter-spacing: -0.01em;
    padding: 0.4em 0.7em;
  }
}
@media only screen and (max-width: 350px) {
  .p-top-commitment__heading {
    font-size: 16px;
  }
}

.p-top-commitment__text {
  color: #057D86;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.8px;
  margin-top: 8px;
}

.p-top-commitment__img {
  flex: 0 0 257px;
  width: 257px;
}
@media only screen and (max-width: 768px) {
  .p-top-commitment__img {
    width: 100%;
    flex: 0;
  }
}
.p-top-commitment__img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0 20px 0 20px;
}
@media only screen and (max-width: 768px) {
  .p-top-commitment__img img {
    aspect-ratio: 294/218;
  }
}

.p-top-usability {
  padding: 91px 0 32px;
  background: #F8FBE6;
}
@media only screen and (max-width: 768px) {
  .p-top-usability {
    padding: 24px 0 65px;
  }
}

.p-top-usability__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.p-top-usability__grid-wrap {
  margin-top: 80px;
  max-width: 940px;
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .p-top-usability__grid-wrap {
    margin-top: 17px;
    max-width: 420px;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-usability__grid-wrap .p-top-usability__main {
    margin-top: 50px;
    width: 193px;
    left: 25px;
  }
}

.p-top-usability__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 240px 1fr 1fr;
  gap: 24px;
  align-items: center;
}
@media only screen and (max-width: 1080px) {
  .p-top-usability__grid {
    grid-template-columns: 1fr 160px 1fr 1fr;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-usability__grid {
    gap: 14px;
  }
}

.p-top-usability__grid.--type2 {
  grid-template-columns: 1fr 1fr 240px 1fr;
  margin-top: 89px;
}
@media only screen and (max-width: 768px) {
  .p-top-usability__grid.--type2 {
    margin-top: 0;
  }
}
@media only screen and (max-width: 1080px) {
  .p-top-usability__grid.--type2 {
    grid-template-columns: 1fr 1fr 160px 1fr;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-usability__grid.--type2 {
    grid-template-columns: 1fr;
  }
}
.p-top-usability__grid.--type2 .p-top-usability__card {
  min-height: 384px;
}
@media only screen and (max-width: 768px) {
  .p-top-usability__grid.--type2 .p-top-usability__card {
    min-height: unset;
  }
}
.p-top-usability__grid.--type2 .p-top-usability__main {
  max-width: 236px;
  left: 0px;
  top: 0px;
}

@media only screen and (max-width: 768px) {
  .p-top-usability__grid.--type2 .p-top-usability__card-link:nth-of-type(3) .p-top-usability__card .p-top-usability__card-title {
    margin-top: 1px;
    line-height: 1.6;
  }
}

@media only screen and (max-width: 768px) {
  .p-top-usability__grid.--type2 .p-top-usability__card-link:nth-of-type(3) .p-top-usability__card .p-top-usability__card-text {
    margin-top: 8px;
  }
}

@media only screen and (max-width: 768px) {
  .p-top-usability__grid.--type2 .p-top-usability__card-text {
    margin-top: 8px;
  }
}

@media only screen and (max-width: 768px) {
  .p-top-usability__grid.--type2 .p-top-usability__card-link-text {
    margin-top: 8px;
  }
}

@media only screen and (max-width: 768px) {
  .p-top-usability__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .p-top-usability__grid:nth-of-type(3) {
    margin-top: 33px;
  }
}
.p-top-usability__main {
  text-align: center;
  max-width: 240px;
  position: relative;
}
@media only screen and (max-width: 1080px) {
  .p-top-usability__main {
    left: 0;
  }
}
@media only screen and (max-width: 768px) {
  .p-top-usability__main {
    max-width: unset;
    width: 180px;
    margin-inline: auto;
    margin-top: 24px;
  }
}

@media only screen and (max-width: 768px) {
  .p-top-usability__main.--type2 {
    margin-top: 41px;
    width: 202px;
    left: -20px;
  }
}

@media only screen and (max-width: 768px) {
  .p-top-usability__grid-wrap.--type2 {
    margin-top: 31px;
  }
}

.p-top-usability__main img {
  width: 100%;
  max-width: 320px;
  height: auto;
}

.p-top-usability__main img.line01 {
  position: absolute;
  transform: translate(-50%, -50%);
  left: calc(50% - 87px);
  top: calc(50% - 19px);
  width: 107px;
  height: auto;
}

.p-top-usability__main img.line02 {
  position: absolute;
  transform: translate(-50%, -50%);
  left: calc(50% + 98px);
  top: calc(50% + 102px);
  width: 76px;
}

.p-top-usability__main img.line03 {
  position: absolute;
  transform: translate(-50%, -50%);
  left: calc(50% + 223px);
  top: calc(50% + 154px);
  width: 509px;
  max-width: unset;
}
@media only screen and (max-width: 1080px) {
  .p-top-usability__main img.line03 {
    left: calc(50% + 230px);
    top: calc(50% + 156px);
    width: 503px;
  }
}
@media only screen and (max-width: 900px) {
  .p-top-usability__main img.line03 {
    left: calc(50% + 214px);
    top: calc(50% + 144px);
    width: 467px;
  }
}

.p-top-usability__main img.line04 {
  position: absolute;
  transform: translate(-50%, -50%);
  left: calc(50% + 109px);
  top: calc(50% + 6px);
  width: 72px;
}

.p-top-usability__main img.line05 {
  position: absolute;
  transform: translate(-50%, -50%);
  left: calc(50% - 93px);
  top: calc(50% + 6px);
  width: 86px;
}

.p-top-usability__main img.line06 {
  position: absolute;
  transform: translate(-50%, -50%);
  left: calc(50% - 258px);
  top: calc(50% + 168px);
  width: 426px;
  max-width: unset;
}
@media only screen and (max-width: 1080px) {
  .p-top-usability__main img.line06 {
    left: calc(50% - 200px);
    top: calc(50% + 168px);
    width: 387px;
  }
}

.p-top-usability__main img.num01 {
  position: absolute;
  transform: translate(-50%, -50%);
  left: calc(50% - 102px);
  top: calc(50% - 57px);
  width: 33px;
}
@media only screen and (max-width: 768px) {
  .p-top-usability__main img.num01 {
    left: calc(50% - 97px);
    top: calc(50% - 78px);
  }
}

.p-top-usability__main img.num02 {
  position: absolute;
  transform: translate(-50%, -50%);
  left: calc(50% + 108px);
  top: calc(50% - 9px);
  width: 33px;
}
@media only screen and (max-width: 768px) {
  .p-top-usability__main img.num02 {
    left: calc(50% + 108px);
  }
}

.p-top-usability__main img.num03 {
  position: absolute;
  transform: translate(-50%, -50%);
  left: calc(50% - 16px);
  top: calc(50% - 15px);
  width: 33px;
}
@media only screen and (max-width: 768px) {
  .p-top-usability__main img.num03 {
    left: calc(50% - 36px);
    top: calc(50% + 22px);
  }
}

.p-top-usability__main img.num04 {
  position: absolute;
  transform: translate(-50%, -50%);
  left: calc(50% - 121px);
  top: calc(50% - 54px);
  width: 33px;
}
@media only screen and (max-width: 768px) {
  .p-top-usability__main img.num04 {
    left: calc(50% - 46px);
    top: calc(50% - 38px);
  }
}

.p-top-usability__main img.num05 {
  position: absolute;
  transform: translate(-50%, -50%);
  left: calc(50% - 52px);
  top: calc(50% - 0px);
  width: 33px;
}
@media only screen and (max-width: 768px) {
  .p-top-usability__main img.num05 {
    left: calc(50% + 70px);
    top: calc(50% + 24px);
  }
}

.p-top-usability__main img.num06 {
  position: absolute;
  transform: translate(-50%, -50%);
  left: calc(50% + 58px);
  top: calc(50% - 37px);
  width: 33px;
}
@media only screen and (max-width: 768px) {
  .p-top-usability__main img.num06 {
    left: calc(50% + 123px);
    top: calc(50% - 47px);
  }
}

.p-top-usability__main img.arrow01 {
  position: absolute;
  transform: translate(-50%, -50%);
  left: calc(50% - 91px);
  top: calc(50% - 15px);
  width: 27px;
}
@media only screen and (max-width: 768px) {
  .p-top-usability__main img.arrow01 {
    left: calc(50% - 86px);
    top: calc(50% - 38px);
  }
}

.p-top-usability__main img.arrow02 {
  position: absolute;
  transform: translate(-50%, -50%);
  left: calc(50% + 94px);
  top: calc(50% + 29px);
  width: 26px;
}
@media only screen and (max-width: 768px) {
  .p-top-usability__main img.arrow02 {
    left: calc(50% + 71px);
    top: calc(50% + 23px);
    width: 46px;
  }
}

.p-top-usability__main img.arrow03 {
  display: block;
  position: absolute;
  transform: translate(-50%, -50%);
  left: calc(50% + 116px);
  top: calc(50% - 18px);
  width: 21px;
}
@media only screen and (max-width: 768px) {
  .p-top-usability__main img.arrow03 {
    display: none;
  }
}

.p-top-usability__main img.arrow04 {
  display: none;
}
@media only screen and (max-width: 768px) {
  .p-top-usability__main img.arrow04 {
    display: block;
    position: absolute;
    transform: translate(-50%, -50%);
    left: calc(50% + 112px);
    top: calc(50% - 14px);
    width: 21px;
  }
}

.p-top-usability__card {
  background: #fff;
  border-radius: 20px;
  padding: 19px 13px;
  text-align: center;
  height: 100%;
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 768px) {
  .p-top-usability__card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0px 15px;
    padding: 16px 12px;
  }
}

.p-top-usability__card-title {
  color: #C83D80;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.33;
  letter-spacing: 0.05em;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-top-usability__card-title {
    grid-column: 2;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 3px;
    text-align: left;
  }
}

.p-top-usability__card-img {
  margin-top: 10px;
  max-width: 148px;
  margin-inline: auto;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .p-top-usability__card-img {
    grid-row: 1/span 3;
    grid-column: 1;
    margin-top: 0;
    width: 124px;
    height: 100%;
  }
}

.p-top-usability__card-img img {
  width: 100%;
  height: auto;
  transition: 0.3s;
}

.p-top-usability__card-text {
  color: #333;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.04em;
  margin-top: 1.42;
  text-align: left;
  margin-top: 12px;
}
@media only screen and (max-width: 768px) {
  .p-top-usability__card-text {
    grid-column: 2;
    font-size: 12px;
    margin-top: 11px;
    letter-spacing: 0.01em;
    line-height: 1.5;
  }
}

.p-top-usability__card-bottom {
  margin-top: 8px;
}

.p-top-usability__card-link-wrap {
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .p-top-usability__card-link-wrap {
    grid-column: 2;
    line-height: 1;
    margin-top: 6px;
  }
}

.p-top-usability__card-link {
  display: block;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .p-top-usability__card-link.--sp-6 {
    order: 1;
  }
}

@media only screen and (max-width: 768px) {
  .p-top-usability__card-link.--type2 .p-top-usability__card {
    grid-template-rows: 32px 52px 41px;
  }
}

@media only screen and (max-width: 768px) {
  .p-top-usability__card-link.--type2 .p-top-usability__card .p-top-usability__card-title {
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 1px;
  }
}

@media only screen and (max-width: 768px) {
  .p-top-usability__card-link.--type2 .p-top-usability__card .p-top-usability__card-text {
    margin-top: 0px;
  }
}

@media only screen and (max-width: 768px) {
  .p-top-usability__card-link.--type2 .p-top-usability__card .p-top-usability__card-link-text {
    margin-top: 0;
    position: relative;
    top: -6px;
  }
}

.p-top-usability__card-link-text {
  color: #333;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0.08em;
  text-align: right;
  margin-top: 8px;
}
@media only screen and (max-width: 768px) {
  .p-top-usability__card-link-text {
    margin-top: 8px;
    padding-right: 5px;
    letter-spacing: 0.05em;
  }
}

@media (any-hover: hover) {
  .p-top-usability__card-link:hover {
    opacity: 1;
  }
  .p-top-usability__card-link:hover .p-top-usability__card-img img {
    scale: 1.1;
  }
}
.p-top-usability__spec-wrap {
  margin-top: 45px;
  padding: 48px 0;
}
@media only screen and (max-width: 768px) {
  .p-top-usability__spec-wrap {
    margin-top: 23px;
    padding: 0px 0;
  }
}

.p-top-usability__spec-grid {
  display: flex;
  align-items: flex-start;
  gap: 35px;
  padding-inline: 50px;
  margin-top: 35px;
}
@media only screen and (max-width: 1080px) {
  .p-top-usability__spec-grid {
    flex-flow: column;
    padding-inline: 0;
    margin-top: 24px;
  }
}

.p-top-usability__spec {
  flex: 1;
}

.p-top-usability__dl {
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .p-top-usability__dl {
    display: flex;
    flex-flow: column;
    gap: 3px;
  }
}

.p-top-usability__row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #333;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 768px) {
  .p-top-usability__row {
    flex-flow: unset;
    gap: 44px;
  }
}
.p-top-usability__dt {
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .p-top-usability__dt {
    white-space: nowrap;
    width: 12%;
  }
}

.p-top-usability__dd {
  margin: 0;
  line-height: 1.9;
}
@media only screen and (max-width: 768px) {
  .p-top-usability__dd {
    flex: 1;
    line-height: 1.66;
  }
}

.p-top-usability__warranty {
  border: 2px solid #0a7b86;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  max-width: 430px;
  width: 100%;
  margin-top: 8px;
}
@media only screen and (max-width: 1080px) {
  .p-top-usability__warranty {
    margin-inline: auto;
  }
}

.p-top-usability__warranty-head {
  padding: 0px 20px 5px;
  background: #057D86;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-top-usability__warranty-head {
    padding: 2px 20px 5px;
  }
}

.p-top-usability__warranty-title {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.02em;
}

.p-top-usability__warranty-body {
  padding: 17px 22px 24px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-top-usability__warranty-body {
    padding: 13px 22px 23px;
  }
}

.p-top-usability__warranty-text {
  line-height: 1.9;
  text-align: center;
  color: #333;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media only screen and (max-width: 768px) {
  .p-top-usability__warranty-text {
    font-size: 14px;
    letter-spacing: -0.01em;
  }
}

.p-top-usability__warranty-btn {
  display: block;
  max-width: 252px;
  margin-top: 17px;
  margin-inline: auto;
  padding: 14px 22px 15px;
  border: 1px solid #333;
  border-radius: 40px;
  background: #fff;
  color: #333;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42;
}
@media (any-hover: hover) {
  .p-top-usability__warranty-btn:hover {
    opacity: 1;
    background: #EDFFFE;
  }
}
.p-top-usability__warranty-btn:active {
  background: #D2F2F1;
}

@media (max-width: 600px) {
  .p-top-usability__warranty-btn {
    width: 100%;
    min-width: auto;
  }
}
.c-heading-h1 {
  text-align: center;
  font-size: clamp(26px, 3.33vw, 48px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.66667;
  letter-spacing: 0.08em;
  translate: 2px;
}
@media only screen and (max-width: 768px) {
  .c-heading-h1 {
    translate: 0;
    line-height: 1.46154;
  }
}

.c-heading-h2 {
  font-size: clamp(22px, 2.22vw, 32px);
  font-weight: 700;
  line-height: 1.625;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 768px) {
  .c-heading-h2 {
    line-height: 1.45455;
    letter-spacing: 0.05em;
  }
}

.c-heading-h3 {
  font-size: clamp(18px, 4.62vw, 20px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  .c-heading-h3 {
    line-height: 1.33333;
    letter-spacing: 0;
  }
}

@media only screen and (max-width: 768px) {
  .c-text-sp {
    font-size: 14px;
  }
}

.c-development-btn {
  font-size: 14px;
  line-height: 1.42857;
  letter-spacing: 0;
  border-radius: 40px;
  border: 1px solid #767676;
  padding-block: 15px;
  padding-inline: 79px;
}

/* ===============================
   FV　セクション
=============================== */
.development-fv {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1440/480;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .development-fv {
    aspect-ratio: 390/172;
  }
}

.development-fv::before {
  content: "";
  position: absolute;
  background: url("../../assets/img/development/fv.jpg") no-repeat center center/cover;
  width: 100%;
  height: auto;
  aspect-ratio: 1440/1080;
  bottom: -26.74vw;
  left: 0;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .development-fv::before {
    aspect-ratio: 390/292;
    bottom: -16.41vw;
  }
}

.development-fv::after {
  content: "";
  position: absolute;
  opacity: 0.75;
  background-color: #333333;
  z-index: 2;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.development-fv__title {
  color: #fff;
  font-size: clamp(26px, 3.33vw, 48px);
  z-index: 3;
  position: relative;
  text-align: center;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 700;
  line-height: 1.66;
  letter-spacing: 0.06em;
  opacity: 0;
  animation: fadeIn 600ms ease-out 100ms 1 forwards;
}
@media only screen and (max-width: 768px) {
  .development-fv__title {
    font-size: 26px;
    text-align: center;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ===============================
   Message　セクション
=============================== */
.development-message {
  z-index: 2;
  position: relative;
  background-color: #fff;
  padding-block: 88px;
}
@media only screen and (max-width: 768px) {
  .development-message {
    padding-block: 40px;
  }
}

.development-message__inner {
  max-width: 1034px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media only screen and (max-width: 768px) {
  .development-message__inner {
    padding-inline: 16px;
    gap: 24px;
    align-self: stretch;
  }
}

.development-message__title {
  font-size: clamp(26px, 3.33vw, 48px);
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 700;
  line-height: 1.66;
  letter-spacing: 0.06em;
  opacity: 0;
  animation: fadeIn 1000ms ease-out 100ms 1 forwards;
}
@media only screen and (max-width: 768px) {
  .development-message__title {
    font-size: 26px;
    text-align: center;
  }
}

.development-message__content {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 40px;
}
@media only screen and (max-width: 1080px) {
  .development-message__content {
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: center;
    align-self: stretch;
  }
}

.development-message__text-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-width: 600px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .development-message__text-area {
    align-self: stretch;
    margin-inline: auto;
  }
}

.development-message__heading {
  color: #057d86;
}

.development-message__visual {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  max-width: 202px;
  width: 100%;
}

.development-message__girl {
  max-width: 87px;
}

.development-message__boy {
  max-width: 91px;
}

/* ===============================
   Story　セクション
=============================== */
.development-story {
  position: relative;
  margin-top: 4.03vw;
  background-color: #f2f2f2;
  padding-block: 32px 88px;
}
@media only screen and (max-width: 768px) {
  .development-story {
    margin-top: 15px;
    padding-block: 32px 88px;
  }
}

.development-story::before {
  content: "";
  position: absolute;
  width: 100%;
  height: auto;
  aspect-ratio: 1440/58;
  top: -4.03vw;
  background: url("../../assets/img/development/story-top-bg.svg") no-repeat center center/cover;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .development-story::before {
    aspect-ratio: 390/15;
    top: -16px;
    width: 111vw;
  }
}
@media only screen and (max-width: 400px) {
  .development-story::before {
    top: -13px;
  }
}

.development-story::after {
  content: "";
  position: absolute;
  width: 100%;
  height: auto;
  aspect-ratio: 1440/58;
  top: -4.03vw;
  left: 0;
  background: #fff;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .development-story::after {
    aspect-ratio: 390/15;
    top: -15px;
  }
}

.development-story__inner {
  max-width: 956px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .development-story__inner {
    padding-inline: 16px;
    align-self: stretch;
  }
}

.development-story__top {
  display: flex;
  align-items: flex-end;
  gap: 22px;
}
@media only screen and (max-width: 1080px) {
  .development-story__top {
    flex-direction: column-reverse;
    align-items: center;
    align-self: stretch;
    gap: 24px;
  }
}

.development-story__visual {
  max-width: 110px;
  translate: 0 1px;
}
@media only screen and (max-width: 768px) {
  .development-story__visual {
    translate: 0;
  }
}

.development-story__title-wrap {
  position: relative;
}

.development-story__title {
  position: relative;
  translate: 2px;
  padding-block: 52px 80px;
  padding-inline: 79px 53px;
  text-align: center;
  font-size: clamp(26px, 3.33vw, 48px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.66667;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 1080px) {
  .development-story__title {
    padding-block: 39px 60px;
    padding-inline: 72px 50px;
    translate: 1px;
  }
}
@media only screen and (max-width: 768px) {
  .development-story__title {
    translate: 0;
    line-height: 1.46154;
  }
}

.development-story__items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .development-story__items {
    align-self: stretch;
  }
}

.development-story__item {
  display: flex;
  padding-block: 38px 32px;
  padding-inline: 32px;
  justify-content: center;
  align-items: center;
  gap: 32px;
  width: 100%;
  position: relative;
  max-width: 856px;
  margin-inline: auto;
  background-color: #FFF;
}
@media only screen and (max-width: 1080px) {
  .development-story__item {
    padding-block: 26px 23px;
    padding-inline: 24px;
    flex-direction: column;
    gap: 16px;
    align-self: stretch;
  }
}

.development-story__item--media-right {
  border-radius: 0 16px;
}

.development-story__item--media-left {
  border-radius: 16px 0;
  flex-direction: row-reverse;
}
@media only screen and (max-width: 1080px) {
  .development-story__item--media-left {
    flex-direction: column;
  }
}

.development-story__item--multi {
  border-radius: 0 16px;
  flex-direction: column;
}

.development-story__item--theme-green {
  padding-block: 38px 32px;
}
@media only screen and (max-width: 768px) {
  .development-story__item--theme-green {
    padding-block: 26px 23px;
  }
}

.development-story__item--theme-orange {
  padding-block: 35px 32px;
}
@media only screen and (max-width: 768px) {
  .development-story__item--theme-orange {
    padding-block: 26px 23px;
  }
}

.development-story__item--theme-pink {
  padding-block: 33px 29px;
  max-width: 100%;
}
@media only screen and (max-width: 768px) {
  .development-story__item--theme-pink {
    padding-block: 27px 23px;
    gap: 22px;
  }
}

.development-story__item::before {
  position: absolute;
  content: "";
  width: clamp(48px, 4.44vw, 64px);
  height: auto;
  aspect-ratio: 1/1;
  top: -32px;
}

.development-story__item--media-right::before {
  left: 24px;
}
@media only screen and (max-width: 1080px) {
  .development-story__item--media-right::before {
    left: auto;
  }
}

.development-story__item--media-left::before {
  right: 20px;
}
@media only screen and (max-width: 1080px) {
  .development-story__item--media-left::before {
    right: auto;
  }
}

.development-story__item--multi::before {
  left: 24px;
}
@media only screen and (max-width: 1080px) {
  .development-story__item--multi::before {
    left: auto;
  }
}

.development-story__item--theme-green::before {
  background: url("../../assets/img/development/question.svg") no-repeat center center/contain;
}
@media only screen and (max-width: 1080px) {
  .development-story__item--theme-green::before {
    top: 24px;
    right: 24px;
  }
}

.development-story__item--theme-orange::before {
  background: url("../../assets/img/development/bubble-accent.svg") no-repeat center center/contain;
}
@media only screen and (max-width: 1080px) {
  .development-story__item--theme-orange::before {
    top: 16px;
    left: 24px;
  }
}

.development-story__item--theme-blue::before {
  background: url("../../assets/img/development/peoples.svg") no-repeat center center/contain;
}
@media only screen and (max-width: 1080px) {
  .development-story__item--theme-blue::before {
    top: 15px;
    right: 31px;
  }
}

.development-story__item--theme-pink::before {
  background: url("../../assets/img/development/kirakira.svg") no-repeat center center/contain;
  right: 40px;
  top: -33px;
}
@media only screen and (max-width: 1080px) {
  .development-story__item--theme-pink::before {
    left: 16px;
    top: 16px;
  }
}

.development-story__content {
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 21px;
}
@media only screen and (max-width: 1080px) {
  .development-story__content {
    align-self: stretch;
    max-width: 100%;
    gap: 20px;
  }
}

.development-story__item--media-right .development-story__content {
  align-items: flex-start;
}

.development-story__item--media-left .development-story__content {
  align-items: flex-end;
}

.development-story__item--theme-pink .development-story__content {
  max-width: 420px;
  gap: 24px;
}
@media only screen and (max-width: 1080px) {
  .development-story__item--theme-pink .development-story__content {
    align-self: stretch;
    max-width: 100%;
    gap: 21px;
  }
}

.development-story__item-heading {
  display: flex;
  padding: 4px 12px 6px 12px;
  flex-direction: column;
  align-items: flex-start;
}
@media only screen and (max-width: 768px) {
  .development-story__item-heading {
    font-weight: 400;
  }
}

.development-story__item--media-right .development-story__item-heading,
.development-story__item--multi .development-story__item-heading {
  transform: rotate(-2deg);
}

.development-story__item--media-left .development-story__item-heading {
  transform: rotate(2deg);
}

.development-story__item--theme-green .development-story__item-heading {
  background-color: #def9f8;
}

.development-story__item--theme-orange .development-story__item-heading {
  background-color: #ffe2d5;
}

.development-story__item--theme-blue .development-story__item-heading {
  background-color: #d3f1ff;
}

.development-story__item--theme-pink .development-story__item-heading {
  background-color: #ffe4f1;
  white-space: nowrap;
}

.development-story__text {
  line-height: 1.625;
  letter-spacing: 0.05em;
}

.development-story__item--theme-green .development-story__text {
  color: #057d86;
}

.development-story__item--theme-orange .development-story__text {
  color: #b85c00;
}

.development-story__item--theme-blue .development-story__text {
  color: #0b5ba0;
}

.development-story__item--theme-pink .development-story__text {
  color: #c83d80;
  padding-left: 20px;
}
@media only screen and (max-width: 768px) {
  .development-story__item--theme-pink .development-story__text {
    padding-left: 0;
  }
}

.development-story__pic {
  max-width: 360px;
  height: auto;
  aspect-ratio: 3/2;
  width: 100%;
  margin-bottom: 0;
  margin-top: -2px;
}
@media only screen and (max-width: 1080px) {
  .development-story__pic {
    align-self: stretch;
    max-width: 100%;
    margin-top: 0;
  }
}

.development-story__pic img {
  width: 100%;
}

.development-story__item--theme-pink .development-story__pic {
  aspect-ratio: 127/85;
}
@media only screen and (max-width: 1080px) {
  .development-story__item--theme-pink .development-story__pic {
    aspect-ratio: 3/2;
  }
}

.development-story__item--media-right .development-story__pic img {
  border-radius: 0 8px;
}

.development-story__item--media-left .development-story__pic img {
  border-radius: 8px 0;
}

.development-story__group {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1080px) {
  .development-story__group {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
  }
}

.development-story__group--media-left {
  display: flex;
  align-items: flex-start;
  align-self: stretch;
  flex-direction: row-reverse;
}
@media only screen and (max-width: 1080px) {
  .development-story__group--media-left {
    flex-direction: column;
  }
}

.development-story__pics {
  display: flex;
  max-width: 360px;
  width: 100%;
  height: auto;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
@media only screen and (max-width: 1080px) {
  .development-story__pics {
    max-width: 100%;
  }
}

.development-story__pics .development-story__pic {
  max-width: 178px;
  width: 100%;
}
@media only screen and (max-width: 1080px) {
  .development-story__pics .development-story__pic {
    max-width: 100%;
  }
}

.development-story__group--media-right .development-story__pics .development-story__pic {
  margin-bottom: 7px;
}
@media only screen and (max-width: 1080px) {
  .development-story__group--media-right .development-story__pics .development-story__pic {
    margin-bottom: 0;
  }
}

.development-story__pics .development-story__pic:nth-of-type(1) img {
  border-radius: 0 0 0 8px;
}

.development-story__pics .development-story__pic:nth-of-type(2) img {
  border-radius: 0 8px 0 0px;
}

.development-story__group--media-right .development-story__pics .development-story__pic:nth-of-type(2) img {
  border-radius: 0 8px 0 0;
}

.development-story__arrow:nth-of-type(1) {
  max-width: 18px;
  width: 100%;
}

.development-story__arrow:nth-of-type(2) {
  max-width: 18px;
  width: 100%;
}
@media only screen and (max-width: 1080px) {
  .development-story__arrow:nth-of-type(2) {
    max-width: 19px;
  }
}

.development-story__arrow:nth-of-type(3) {
  max-width: 20px;
  width: 100%;
}

/* ===============================
   Interview　セクション
=============================== */
.development-interview {
  padding-block: 80px;
}
@media only screen and (max-width: 768px) {
  .development-interview {
    padding-block: 44px;
  }
}

.development-interview__inner {
  max-width: 936px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 31px;
}
@media only screen and (max-width: 768px) {
  .development-interview__inner {
    padding-inline: 16px;
    gap: 23px;
    align-self: stretch;
  }
}

.development-interview__top {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .development-interview__top {
    gap: 24px;
  }
}

.development-interview__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media only screen and (max-width: 768px) {
  .development-interview__title {
    align-self: stretch;
    gap: 10px;
  }
}

.development-interview__title-catch {
  font-weight: 400;
  padding-block: 11px;
  padding-inline: 32px;
  position: relative;
  letter-spacing: 0;
}
@media only screen and (max-width: 768px) {
  .development-interview__title-catch {
    padding-block: 0;
    padding-inline: 18px;
  }
}

.development-interview__title-catch::before {
  position: absolute;
  content: "";
  background: url("../../assets/img/development/lead-line-left.svg") no-repeat center center/contain;
  width: clamp(10px, 1.39vw, 20px);
  height: auto;
  aspect-ratio: 20/47;
  left: 0;
  bottom: 0;
}
@media only screen and (max-width: 768px) {
  .development-interview__title-catch::before {
    aspect-ratio: 5/12;
    bottom: 50%;
    translate: 0 50%;
  }
}

.development-interview__title-catch::after {
  position: absolute;
  content: "";
  background: url("../../assets/img/development/lead-line-right.svg") no-repeat center center/contain;
  width: clamp(10px, 1.39vw, 20px);
  height: auto;
  aspect-ratio: 20/47;
  right: 0;
  bottom: 0;
}
@media only screen and (max-width: 768px) {
  .development-interview__title-catch::after {
    aspect-ratio: 5/12;
    bottom: 50%;
    translate: 0 50%;
  }
}

@media only screen and (max-width: 768px) {
  .development-interview__title-main {
    translate: 1px;
  }
}

.development-interview__lead {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 2.22222;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  .development-interview__lead {
    font-size: 16px;
    line-height: 1.625;
  }
}

.development-interview__items {
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #333;
}
@media only screen and (max-width: 768px) {
  .development-interview__items {
    padding-top: 24px;
    gap: 24px;
    align-self: stretch;
  }
}

.development-interview__item {
  border-bottom: 1px solid #333;
  width: 100%;
}

.development-interview__article {
  display: flex;
  padding-block: 32px 64px;
  padding-inline: 72px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 768px) {
  .development-interview__article {
    padding-block: 16px 40px;
    padding-inline: 16px;
    gap: 16px;
    align-self: stretch;
  }
}

.development-interview__head {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media only screen and (max-width: 768px) {
  .development-interview__head {
    flex-direction: column;
    gap: 16px;
    align-self: stretch;
  }
}

.development-interview__visual {
  max-width: 160px;
  height: auto;
  aspect-ratio: 1/1;
  width: 100%;
  border-radius: 160px;
}

.development-interview__heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.development-interview__item:nth-of-type(1) .development-interview__item-title {
  color: #057d86;
}

.development-interview__item:nth-of-type(2) .development-interview__item-title {
  color: #b85c00;
}

.development-interview__school-year {
  line-height: 1.625;
  letter-spacing: 0.05em;
}

.development-interview__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media only screen and (max-width: 768px) {
  .development-interview__content {
    gap: 24px;
  }
}

.development-interview__text {
  align-self: stretch;
}
.development-interview__text + .development-interview__text {
  margin-top: 8px;
}

.development-interview__voice {
  margin-top: 24px;
}

.development-interview__voice-title.--blue {
  color: #057D86;
}
.development-interview__voice-title.--orange {
  color: #B85C00;
}

/* ===============================
   Collaboration　セクション
=============================== */
.development-collaboration {
  padding-block: 80px;
}
@media only screen and (max-width: 768px) {
  .development-collaboration {
    padding-block: 44px 80px;
  }
}

.development-collaboration__inner {
  max-width: 936px;
  padding-inline: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
@media only screen and (max-width: 768px) {
  .development-collaboration__inner {
    padding-inline: 11px;
    gap: 16px;
  }
}

.development-collaboration__top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
@media only screen and (max-width: 768px) {
  .development-collaboration__top {
    gap: 17px;
  }
}

.development-collaboration__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media only screen and (max-width: 768px) {
  .development-collaboration__title {
    gap: 16px;
  }
}

.development-collaboration__partners {
  font-weight: 400;
  text-align: center;
  padding-inline: 31px;
  position: relative;
  font-size: clamp(18px, 2.22vw, 32px);
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  .development-collaboration__partners {
    padding-inline: 18px;
    letter-spacing: 0;
  }
}

.development-collaboration__partners::before {
  position: absolute;
  content: "";
  background: url("../../assets/img/development/lead-line-left.svg") no-repeat center center/contain;
  width: clamp(10px, 1.39vw, 20px);
  height: auto;
  aspect-ratio: 20/47;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
@media only screen and (max-width: 768px) {
  .development-collaboration__partners::before {
    aspect-ratio: 5/12;
  }
}

.development-collaboration__partners::after {
  position: absolute;
  content: "";
  background: url("../../assets/img/development/lead-line-right.svg") no-repeat center center/contain;
  width: clamp(10px, 1.39vw, 20px);
  height: auto;
  aspect-ratio: 20/47;
  right: 0;
  top: 50%;
  translate: 0 -50%;
}
@media only screen and (max-width: 768px) {
  .development-collaboration__partners::after {
    aspect-ratio: 5/12;
  }
}

.development-collaboration__lead {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 2.22222;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  .development-collaboration__lead {
    font-size: 16px;
    line-height: 1.625;
    text-align: left;
  }
}

.development-collaboration__article {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media only screen and (max-width: 768px) {
  .development-collaboration__article {
    gap: 15px;
  }
}

.development-collaboration__pic {
  width: 100%;
}

.development-collaboration__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media only screen and (max-width: 768px) {
  .development-collaboration__content {
    gap: 16px;
  }
}

.development-collaboration__text {
  letter-spacing: 0.03em;
  text-align: center;
  max-width: 640px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .development-collaboration__text {
    letter-spacing: 0;
    padding-inline: 5px;
    text-align: left;
  }
}

.contact {
  padding-block: 72px 64px;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .contact {
    padding-block: 32px;
  }
}

.contact__inner {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .contact__inner {
    padding-inline: 24px;
  }
}

.contact__top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .contact__top {
    gap: 8px;
  }
}

.contact__title {
  letter-spacing: 0.05em;
  font-weight: 400;
  translate: 0;
  font-size: 48px;
}
@media only screen and (max-width: 768px) {
  .contact__title {
    line-height: 1.38462;
    font-size: 26px;
  }
}

@media only screen and (max-width: 768px) {
  .contact__text {
    font-size: 14px;
    line-height: 1.42857;
    letter-spacing: 0.04em;
  }
}

/* ==================================================
  CF7: contact section only
================================================== */
.contact__form {
  margin-top: 79px;
}
@media only screen and (max-width: 768px) {
  .contact__form {
    margin-top: 62px;
  }
}

.contact .c-form__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .contact .c-form__container {
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
  }
}

.contact .c-form__group {
  display: flex;
  width: 100%;
  gap: 16px;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .contact .c-form__group {
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
  }
}

.contact .c-form__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.contact .c-form__group .c-form__item {
  flex: 1;
}

.contact .c-form__item-content input:not(:-moz-placeholder), .contact .c-form__item-content textarea:not(:-moz-placeholder) {
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #767676;
}

.contact .c-form__item-content input:not(:placeholder-shown),
.contact .c-form__item-content textarea:not(:placeholder-shown) {
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #767676;
}

.contact .c-form__item-label {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.71429;
  gap: 0;
  letter-spacing: 0;
  font-weight: 400;
  min-width: auto;
  padding: 0;
}

.contact .c-form__item-label .required {
  font-size: 14px;
  line-height: 1.71429;
  color: #333;
  padding: 0;
  font-weight: 400;
  letter-spacing: 0;
}

.contact .c-form__item-label:not(:has(.required)):not(:has(.optional)) {
  padding-left: 0;
}

.contact .c-form__item-content input,
.contact .c-form__item-content textarea {
  border: none;
  outline: none;
  border-radius: 4px;
  background-color: #f2f2f2;
  padding-block: 8px;
  padding-inline: 16px;
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  color: #333;
  font-family: "BIZ UDPGothic", "Noto Sans JP", sans-serif;
}

.contact .c-form__item-content input::-moz-placeholder, .contact .c-form__item-content textarea::-moz-placeholder {
  color: #767676;
}

.contact .c-form__item-content input::placeholder,
.contact .c-form__item-content textarea::placeholder {
  color: #767676;
}

.contact .c-form__item-content input:focus,
.contact .c-form__item-content textarea:focus,
.contact .c-form__item-content input:hover,
.contact .c-form__item-content textarea:hover {
  background-color: #fff;
  border: 1px solid #767676;
}

.contact .c-form__item-content input {
  height: 40px;
}

.contact .c-form__item-content textarea {
  height: 120px;
  resize: none;
}

.contact .c-form__notice {
  margin-top: 34px;
}

.contact .c-form__notice-text {
  text-align: center;
  font-size: 14px;
  line-height: 1.71429;
  letter-spacing: 0;
}
@media only screen and (max-width: 768px) {
  .contact .c-form__notice-text {
    text-align: left;
  }
}

.contact .wpcf7-not-valid {
  border: 1px solid #ca0c0c;
  background-color: #fff;
}

.contact .c-form__button {
  margin-top: 24px;
}

.c-form__button .c-btn {
  padding-block: 11px;
  color: #222;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857;
  letter-spacing: 0;
  border-radius: 40px;
  border: 1px solid #767676;
  transition: 0.3s;
}

@media (any-hover: hover) {
  .contact .c-form__button .c-btn:hover {
    opacity: 0.7;
  }
}
input.wpcf7-not-valid,
textarea.wpcf7-not-valid,
select.wpcf7-not-valid {
  border: 2px solid #ff4d4f !important;
  background-color: #fff5f5;
}

.contact-thanks__title {
  color: #333;
  text-align: center;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.66;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  .contact-thanks__title {
    font-size: 26px;
    line-height: 1.38;
  }
}

.contact-thanks {
  padding-block: 81px 64px;
}
@media only screen and (max-width: 1080px) {
  .contact-thanks {
    padding-block: 32px 64px;
  }
}

.contact-thanks__inner {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .contact-thanks__inner {
    align-self: stretch;
  }
}

.contact-thanks .c-form__content {
  padding-top: 80px;
}
@media only screen and (max-width: 1080px) {
  .contact-thanks .c-form__content {
    padding-top: 32px;
  }
}

.contact-thanks .c-form__container {
  padding: 0;
  justify-content: center;
  align-items: center;
  gap: 39px;
}
@media only screen and (max-width: 768px) {
  .contact-thanks .c-form__container {
    align-self: stretch;
    gap: 41px;
  }
}

.contact-thanks .c-form__thanks-text {
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .contact-thanks .c-form__thanks-text {
    align-self: stretch;
    text-align: left;
    font-size: 16px;
  }
}

.contact-thanks .c-form__thanks-text .blank {
  display: inline-block;
  width: 5px;
}

.contact-thanks .c-form__button {
  margin-top: 0;
}

.contact-thanks .c-button-wrapper {
  padding-block: 0;
}/*# sourceMappingURL=style.css.map */