:root {
  --inner: 1152px;
  --inner-small: 917px;
  --sp-max-width: 540px;
  --padding-pc: 25px;
  --padding-sp: 24px;
}

:root {
  --base-font: "Noto Sans JP", sans-serif;
  --second-font: "Noto Serif JP", serif;
}

:root {
  --c-base: #fff;
  --c-gray: #efefef;
  --c-corporate: #faa72b;
  --c-dark: #e09524;
  --c-accent: #fae52b;
  --c-text: #000;
  --c-text-hover: #6b6b6b;
  --c-text-white: #fff;
}

:root {
  --z-index-modal: 50;
  --z-index-modal-open: 100;
  --z-index-overlay: 40;
  --z-index-sp-menu: 30;
  --z-index-header: 10;
  --z-index-page-top: 5;
  --z-index-following-banner: 5;
}

:root {
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);
}

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

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

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

ul,
ol {
  list-style: none;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background: none;
  touch-action: manipulation;
}

[type=text],
[type=email],
[type=tel],
select,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  border: none;
  border-radius: 0;
  width: 100%;
  background-color: var(--c-base);
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  padding: 0;
}

textarea {
  resize: none;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 200px;
  }
}

body {
  font-family: var(--base-font);
  font-size: 16px;
  color: var(--c-text);
  background-color: var(--c-base);
}

a {
  transition: opacity 0.3s;
  cursor: pointer;
}

@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
.c-heading-with-en {
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}

.c-heading-with-en__ja {
  font-size: 30px;
}
@media screen and (min-width: 768px) {
  .c-heading-with-en__ja {
    font-size: 50px;
  }
}

.c-heading-with-en__en {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .c-heading-with-en__en {
    font-size: 20px;
  }
}

.c-heading-left-line {
  position: relative;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .c-heading-left-line {
    padding-left: 30px;
  }
}

.c-heading-left-line::before {
  content: "";
  width: 8px;
  height: 50px;
  background-color: var(--c-corporate);
  position: absolute;
  top: -4px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .c-heading-left-line::before {
    top: 2px;
  }
}

.c-heading-left-line--accent::before {
  background-color: var(--c-accent);
}

.c-heading-left-line__inner {
  display: inline-block;
  font-size: 25px;
}
@media screen and (min-width: 768px) {
  .c-heading-left-line__inner {
    font-size: 35px;
  }
}

.c-heading-simple {
  font-size: 22px;
}
@media screen and (min-width: 768px) {
  .c-heading-simple {
    font-size: 24px;
  }
}

.c-button-submit {
  display: block;
  width: 100%;
  background-color: var(--c-corporate);
  border-radius: 50px;
  padding: 14px;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-button-submit {
    padding: 24px;
    transition: background-color 0.3s;
    cursor: pointer;
  }
}

.c-button-submit__text {
  display: inline-block;
  font-size: 22px;
}

.c-button-submit__icon {
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
  display: inline-block;
  width: 35px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--c-base);
}
@media screen and (min-width: 768px) {
  .c-button-submit__icon {
    width: 44px;
    right: 23px;
  }
}

.c-button-submit__icon::before {
  content: "";
  width: 16px;
  aspect-ratio: 1;
  background-color: var(--c-corporate);
  -webkit-mask-image: url(/img/common/icon_arrow.svg);
          mask-image: url(/img/common/icon_arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
@media screen and (min-width: 768px) {
  .c-button-submit__icon::before {
    width: 22px;
    -webkit-mask-image: url(/img/common/icon_arrow_pc.svg);
            mask-image: url(/img/common/icon_arrow_pc.svg);
    transition: background-color 0.3s;
  }
}

@media (any-hover: hover) {
  .c-button-submit:hover {
    opacity: 1;
    background-color: var(--c-dark);
  }
  .c-button-submit:hover .c-button-submit__icon::before {
    background-color: var(--c-dark);
  }
}
.c-button-submit--reverse .c-button-submit__icon {
  right: auto;
  left: 20px;
}
@media screen and (min-width: 768px) {
  .c-button-submit--reverse .c-button-submit__icon {
    left: 23px;
  }
}

.c-button-submit--reverse .c-button-submit__icon::before {
  transform: scale(-1, 1);
}

.c-button-submit:active {
  background-color: var(--c-dark);
}

.c-button-contact {
  background-color: var(--c-corporate);
  border-radius: 40px;
  text-align: center;
  width: 203px;
  padding: 19px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background-color 0.3s;
}

.c-button-contact__ja {
  display: inline-block;
  font-size: 22px;
}

.c-button-contact__en {
  display: inline-block;
  font-size: 14px;
}

@media (any-hover: hover) {
  .c-button-contact:hover {
    opacity: 1;
    background-color: var(--c-dark);
  }
}
.c-button-phone {
  display: block;
  width: 60px;
  aspect-ratio: 1;
  border-radius: 23px;
  background-color: var(--c-corporate);
  position: relative;
}

.c-button-phone::before {
  content: "";
  width: 20px;
  height: 32px;
  background-color: var(--c-base);
  -webkit-mask-image: url(/img/common/icon_phone.svg);
          mask-image: url(/img/common/icon_phone.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.c-text-required {
  display: inline-block;
  background-color: var(--c-corporate);
  padding: 0 10px;
}

.c-link-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  transition: color 0.3s;
  color: var(--c-text-white);
}
@media screen and (min-width: 768px) {
  .c-link-nav {
    gap: 5px;
  }
}
@media screen and (min-width: 1024px) {
  .c-link-nav {
    color: var(--c-text);
  }
}

.c-link-nav__ja {
  display: inline-block;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .c-link-nav__ja {
    font-size: 22px;
  }
}

.c-link-nav__en {
  display: inline-block;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .c-link-nav__en {
    font-size: 14px;
  }
}

@media (any-hover: hover) {
  .c-link-nav:hover {
    opacity: 1;
    color: var(--c-text-hover);
  }
}
.c-hamburger {
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  width: 60px;
  aspect-ratio: 1;
  border-radius: 23px;
  background-color: #2b72fa;
}

.c-hamburger__line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 30px;
  height: 3px;
  background-color: var(--c-base);
  border-radius: 5px;
}

.c-hamburger__line::before,
.c-hamburger__line::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  content: "";
  transition: transform 0.3s, top 0.3s;
  border-radius: inherit;
}

.c-hamburger__line::before {
  top: -10px;
}

.c-hamburger__line::after {
  top: 10px;
}

.c-hamburger[aria-expanded=true] {
  background-color: var(--c-corporate);
}

.c-hamburger[aria-expanded=true] .c-hamburger__line {
  background-color: transparent;
}

.c-hamburger[aria-expanded=true] .c-hamburger__line::before,
.c-hamburger[aria-expanded=true] .c-hamburger__line::after {
  top: 0;
  background-color: #fff;
}

.c-hamburger[aria-expanded=true] .c-hamburger__line::before {
  transform: rotate(45deg);
}

.c-hamburger[aria-expanded=true] .c-hamburger__line::after {
  transform: rotate(-45deg);
}

.l-inner {
  width: min(var(--sp-max-width), 100%);
  padding: 0 var(--padding-sp);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    width: min(var(--inner) + var(--padding-pc) * 2, 100%);
    padding: 0 var(--padding-pc);
  }
}

@media screen and (min-width: 768px) {
  .l-inner--small {
    width: min(var(--inner-small) + var(--padding-pc) * 2, 100%);
  }
}

.l-header {
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-index-header);
  background-color: var(--c-base);
  transition: padding 0.3s;
}
@media screen and (min-width: 768px) {
  .l-header {
    padding: 25px;
  }
}
@media screen and (min-width: 1310px) {
  .l-header {
    padding: 45px 0 40px;
  }
}

.l-header--border {
  border-bottom: 1px solid;
}

.l-header__inner {
  display: flex;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1310px) {
  .l-header__inner {
    padding: 0 40px;
  }
}

.l-header__logo {
  width: 143px;
  transition: width 0.3s;
}
@media screen and (min-width: 768px) {
  .l-header__logo {
    width: min(275px, 100%);
  }
}
@media screen and (min-width: 1310px) {
  .l-header__logo {
    width: min(434px, 100%);
  }
}

.l-header__btns {
  margin-left: auto;
  display: flex;
  gap: 10px;
}
@media screen and (min-width: 1024px) {
  .l-header__btns {
    display: none;
  }
}

.l-header__nav {
  display: none;
}
@media screen and (min-width: 1024px) {
  .l-header__nav {
    margin-left: auto;
    display: block;
  }
}

.l-header__nav-list {
  display: flex;
  align-items: center;
}

.l-header__nav-item + .l-header__nav-item {
  margin-left: 40px;
}
@media screen and (min-width: 1310px) {
  .l-header__nav-item + .l-header__nav-item {
    margin-left: 80px;
  }
}

.l-header__nav-item + .l-header__nav-item--contact {
  margin-left: 30px;
}
@media screen and (min-width: 1310px) {
  .l-header__nav-item + .l-header__nav-item--contact {
    margin-left: 52px;
  }
}

.l-header__sp-menu {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 28vh;
  overflow: auto;
  translate: 0 calc(-100% - 1px);
  transition: 0.3s;
  z-index: var(--z-index-sp-menu);
}
@media screen and (min-width: 768px) {
  .l-header__sp-menu {
    bottom: 0;
  }
}

.l-header__hamburger {
  position: relative;
  z-index: var(--z-index-modal);
}

.l-header__background {
  position: fixed;
  z-index: 3;
  width: 100vw;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.1);
  color: #fff;
  visibility: hidden;
  opacity: 0;
}

body.is-drawerActive .l-header__sp-menu {
  translate: 0 0;
  transition: 0.3s;
}

body.is-drawerActive .l-header__background {
  visibility: visible;
  opacity: 0.8;
  transition: 0.3s;
}

@media screen and (min-width: 768px) {
  body.is-scrolled .l-header {
    padding: 20px 0;
  }
}

@media screen and (min-width: 1310px) {
  body.is-scrolled .l-header__logo {
    width: min(300px, 100%);
  }
}

.l-footer {
  margin-top: 130px;
}
@media screen and (min-width: 768px) {
  .l-footer {
    margin-top: 150px;
  }
}

.l-footer__logo-area {
  border-top: 1px solid;
}

.l-footer__logo {
  margin: 20px auto 0;
  width: 145px;
}
@media screen and (min-width: 768px) {
  .l-footer__logo {
    margin: 50px auto 0;
    width: 287px;
  }
}

.l-footer__nav-area {
  margin-top: 20px;
  background-color: var(--c-dark);
}
@media screen and (min-width: 768px) {
  .l-footer__nav-area {
    margin-top: 55px;
    padding: 42px 0 16px;
  }
}

@media screen and (min-width: 768px) {
  .l-footer__nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .l-footer__nav-item:nth-of-type(n + 2) {
    margin-left: 25px;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .l-footer__nav-item:nth-of-type(n + 2)::before {
    content: "";
    width: 1.5px;
    height: 1.25em;
    background-color: currentColor;
    position: absolute;
    top: 50%;
    left: -12px;
    translate: 0 -45%;
  }
}

@media screen and (min-width: 768px) {
  .l-footer__nav-item a {
    display: inline-block;
    font-size: 22px;
  }
}

.l-footer__copy {
  font-size: 14px;
  text-align: center;
  padding: 8px;
}
@media screen and (min-width: 768px) {
  .l-footer__copy {
    margin-top: 45px;
    padding: 0;
  }
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.is-drawerActive {
  overflow-y: hidden;
}

.l-wrapper {
  flex-grow: 1;
  overflow-x: clip;
}

.l-main {
  margin-top: 80px;
  transition: margin-top 0.3s;
}
@media screen and (min-width: 768px) {
  .l-main {
    margin-top: 126px;
  }
}
@media screen and (min-width: 1024px) {
  .l-main {
    margin-top: 146px;
  }
}
@media screen and (min-width: 1310px) {
  .l-main {
    margin-top: 206px;
  }
}

.card-media {
  display: flex;
  flex-direction: column-reverse;
}

.card-media__body-title {
  margin-top: 3px;
  display: block;
  font-size: 15px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .card-media__body-title {
    margin-top: 8px;
    font-size: 20px;
  }
}

.card-media__tags {
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 5px;
}
@media screen and (min-width: 768px) {
  .card-media__tags {
    margin-top: 8px;
  }
}

.card-media__img {
  border: 1px solid var(--c-dark);
  border-radius: 3px;
  padding: 19px 22px;
  background-color: var(--c-base);
  position: relative;
}
@media screen and (min-width: 768px) {
  .card-media__img {
    padding: 25px 32px;
    border: 2px solid var(--c-dark);
    transition: border 0.3s;
  }
}

.card-media__img::before {
  content: "";
  width: 30px;
  height: 26px;
  background-color: var(--c-corporate);
  -webkit-clip-path: var(--clip-triangle-lower-right);
          clip-path: var(--clip-triangle-lower-right);
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .card-media__img::before {
    width: 37px;
    height: 31px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
  }
}

.card-media__img-inner img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 113/163;
}
@media screen and (min-width: 768px) {
  .card-media__img-inner img {
    aspect-ratio: 216/310;
  }
}

.card-media .card-media__img-inner img {
  transition: scale 0.3s;
}

@media (any-hover: hover) {
  .card-media:hover {
    opacity: 1;
  }
  .card-media:hover .card-media__img {
    border: 2px solid var(--c-corporate);
  }
  .card-media:hover .card-media__img-inner img {
    scale: 1.05;
  }
  .card-media:hover .card-media__img::before {
    opacity: 1;
    visibility: visible;
  }
}
.card-media-type01 {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .card-media-type01 {
    gap: 15px;
  }
}

@media (any-hover: hover) {
  .card-media-type01:hover {
    opacity: 1;
  }
  .card-media-type01:hover .card-media-type01__img {
    border: 3px solid var(--c-corporate);
    padding: 15px;
  }
  .card-media-type01:hover .card-media-type01__img-inner img {
    scale: 1.0445;
  }
  .card-media-type01:hover .card-media-type01__title span {
    background-size: 100% 1px;
  }
}
.card-media-type01__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-media-type01__title {
  margin-top: 8px;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .card-media-type01__title {
    font-size: 18px;
  }
}

.card-media-type01__title > span {
  --transition-second: 0.6s;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.card-media-type01__img {
  border: 2px solid var(--c-dark);
  border-radius: 3px;
  padding: 16px;
  background-color: var(--c-base);
  transition: border-color 0.3s;
}

.card-media-type01__img-inner {
  overflow: hidden;
}

.card-media-type01__img-inner img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 330/189;
}
@media screen and (min-width: 768px) {
  .card-media-type01__img-inner img {
    aspect-ratio: 337/189;
    transition: scale 0.3s;
  }
}

.card-media-type02 {
  display: flex;
  flex-direction: column-reverse;
  gap: 15px;
}

.card-media-type02__title {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .card-media-type02__title {
    font-size: 20px;
  }
}

.card-media-type02__tags {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.card-media-type02__text {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .card-media-type02__text {
    margin-top: 14px;
  }
}

.card-media-type02__link {
  margin: 0 auto;
  display: block;
  width: min(260px, 100%);
  position: relative;
}
@media screen and (min-width: 768px) {
  .card-media-type02__link {
    width: 100%;
  }
}

.card-media-type02__link-inner {
  border: 2px solid var(--c-dark);
  border-radius: 3px;
  background-color: var(--c-base);
  padding: 1px;
  transition: border-color 0.3s;
}

@media (any-hover: hover) {
  .card-media-type02__link:hover {
    opacity: 1;
  }
  .card-media-type02__link:hover .card-media-type02__link-inner {
    border: 3px solid var(--c-corporate);
    padding: 0;
  }
  .card-media-type02__link:hover .card-media-type02__img-inner img {
    scale: 1.0656;
  }
}
.card-media-type02__img {
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .card-media-type02__img {
    padding: 28px;
  }
}

.card-media-type02__img-inner img {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 220/224;
  transition: scale 0.3s;
}
@media screen and (min-width: 768px) {
  .card-media-type02__img-inner img {
    aspect-ratio: 305/310;
  }
}

.card-media-type02__img-icon {
  --size: 30px;
  --position: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--size);
  height: var(--size);
  background-color: var(--c-corporate);
  border-radius: 50%;
  position: absolute;
  bottom: var(--position);
  right: var(--position);
}
@media screen and (min-width: 768px) {
  .card-media-type02__img-icon {
    --size: 36px;
  }
}

.card-media-type02__img-icon img {
  display: inline-block;
  width: 14px;
  height: auto;
  translate: 1px 0;
}
@media screen and (min-width: 768px) {
  .card-media-type02__img-icon img {
    width: 16px;
  }
}

.card-media-type03__inner {
  display: block;
  padding: 18px 10px 20px 14px;
  display: grid;
  grid-template-columns: 104px 1fr;
  grid-template-rows: max-content max-content;
  -moz-column-gap: 10px;
       column-gap: 10px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .card-media-type03__inner {
    display: flex;
    gap: 15px;
    padding: 30px 20px 28px 20px;
  }
}

.card-media-type03__img {
  display: block;
  grid-column: 1/2;
  grid-row: 1/2;
  padding-top: 5px;
}
@media screen and (min-width: 768px) {
  .card-media-type03__img {
    padding-top: 0;
    width: 37.84%;
  }
}

.card-media-type03__body {
  display: contents;
}
@media screen and (min-width: 768px) {
  .card-media-type03__body {
    display: block;
    width: 58.82%;
  }
}

.card-media-type03__texts {
  display: block;
  grid-column: 2/3;
  grid-row: 1/2;
  transition: color 0.3s;
}

.card-media-type03__name {
  display: block;
}
@media screen and (min-width: 768px) {
  .card-media-type03__name {
    font-size: 20px;
  }
}

.card-media-type03__title {
  display: block;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .card-media-type03__title {
    margin-top: 18px;
    font-size: 20px;
  }
}

.card-media-type03__genre {
  margin-top: 7px;
  grid-column: 1/3;
  grid-row: 2/3;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .card-media-type03__genre {
    margin-top: 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.card-media-type03__genre-text {
  display: block;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .card-media-type03__genre-text {
    font-size: 16px;
  }
}

.card-media-type03__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
}
@media screen and (min-width: 768px) {
  .card-media-type03__tags {
    gap: 5px;
  }
}

.card-media-type03__tag {
  display: block;
}

.card-media-type03__icon {
  --position: -6px;
  position: absolute;
  bottom: var(--position);
  right: var(--position);
}
@media screen and (min-width: 768px) {
  .card-media-type03__icon {
    --position: -10px;
    transition: translate 0.3s;
  }
}

.card-media-type03 .shadow-box__inner::before {
  --margin: 0;
}

@media (any-hover: hover) {
  .card-media-type03:hover .card-media-type03__texts {
    opacity: 1;
    color: var(--c-corporate);
  }
  .card-media-type03:hover .card-media-type03__icon {
    translate: 10px 10px;
  }
  .card-media-type03:hover .round-arrow {
    --size: 57px;
    background-color: var(--c-base);
  }
  .card-media-type03:hover .round-arrow svg path {
    fill: var(--c-corporate);
  }
  .card-media-type03:hover .round-arrow.round-arrow--large svg {
    width: 18px;
    height: 26px;
  }
  .card-media-type03:hover .shadow-box__inner::before {
    --margin: 10px;
  }
}
.card-media-type04__inner {
  display: grid;
  grid-template-columns: 104px 1fr;
  grid-template-rows: max-content max-content max-content max-content;
  padding: 18px 15px 20px;
}
@media screen and (min-width: 768px) {
  .card-media-type04__inner {
    display: flex;
    justify-content: space-between;
    gap: 1em;
    padding: 65px 50px 30px 48px;
  }
}

.card-media-type04__left,
.card-media-type04__right {
  display: contents;
}
@media screen and (min-width: 768px) {
  .card-media-type04__left,
  .card-media-type04__right {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .card-media-type04__left {
    width: 28.68%;
  }
}

@media screen and (min-width: 768px) {
  .card-media-type04__right {
    width: 68.31%;
  }
}

.card-media-type04__img {
  grid-column: 1/2;
  grid-row: 1/2;
  padding-top: 5px;
}
@media screen and (min-width: 768px) {
  .card-media-type04__img {
    margin: 0 auto;
    width: min(265px, 100%);
    padding-top: 0;
  }
}

.card-media-type04__header {
  grid-column: 2/3;
  grid-row: 1/2;
}

@media screen and (min-width: 768px) {
  .card-media-type04__name {
    font-size: 24px;
    font-weight: 500;
  }
}

@media screen and (min-width: 768px) {
  .card-media-type04__title {
    margin-top: 20px;
  }
}

.card-media-type03__genre {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  grid-column: 1/3;
  grid-row: 2/3;
}
@media screen and (min-width: 768px) {
  .card-media-type03__genre {
    margin-top: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.card-media-type03__genre-text {
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .card-media-type03__genre-text {
    font-size: 16px;
  }
}

.card-media-type03__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
}
@media screen and (min-width: 768px) {
  .card-media-type03__tags {
    gap: 5px;
  }
}

.card-media-type04__text {
  margin-top: 14px;
  grid-column: 1/3;
  grid-row: 3/4;
}

.card-media-type04__btn {
  margin: 15px auto 0;
  width: min(300px, 100%);
  grid-column: 1/3;
  grid-row: 4/5;
}
@media screen and (min-width: 768px) {
  .card-media-type04__btn {
    margin: 36px auto 0;
    width: min(270px, 100%);
  }
}

.card-media-type04__btn button {
  display: block;
  width: 100%;
  cursor: pointer;
  outline: none;
}

.card-media-type04__close {
  display: block;
  --size: 60px;
  width: var(--size);
  height: var(--size);
  position: absolute;
  top: -30px;
  right: 31px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .card-media-type04__close {
    --size: 76px;
    top: -38px;
    right: 67px;
  }
}

.p-sp-menu {
  background-color: #2b72fa;
  padding: 74px 20px;
}
@media screen and (min-width: 768px) {
  .p-sp-menu {
    padding: 140px 20px;
  }
}

.p-sp-menu__item + .p-sp-menu__item {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-sp-menu__item + .p-sp-menu__item {
    margin-top: 50px;
  }
}

.p-sp-menu__item a:active {
  color: #6b6b6b;
}

.p-index-mv {
  position: relative;
  padding: 100px 0;
}
@media screen and (min-width: 768px) {
  .p-index-mv {
    padding: 150px 0;
  }
}

.p-index-mv::before {
  content: "";
  width: min(475px, 76.9230769231vw);
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-clip-path: polygon(0 0, 100% 0%, max(53.33%, 160px) 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, max(53.33%, 160px) 100%, 0% 100%);
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-index-mv::before {
    width: max(625px, 58.3333333333vw);
    -webkit-clip-path: polygon(0 0, 100% 0%, max(75.5%, 475px) 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, max(75.5%, 475px) 100%, 0% 100%);
  }
}

.p-index-mv__inner {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.p-index-mv__copy {
  font-size: 25px;
  text-shadow: 0px 1px 1px rgb(172, 172, 172);
}
@media screen and (min-width: 768px) {
  .p-index-mv__copy {
    font-size: 60px;
  }
}

.p-index-mv__labels {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-index-mv__labels {
    margin-top: 90px;
  }
}

.p-index-mv__label {
  display: block;
  width: 170px;
  text-align: center;
  font-size: 20px;
  background-color: var(--c-accent);
  border-radius: 50px;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .p-index-mv__label {
    font-size: 40px;
    width: min(400px, 100%);
    padding: 20px;
  }
}

.p-index-mv__label + .p-index-mv__label {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-index-mv__label + .p-index-mv__label {
    margin-top: 40px;
  }
}

.p-index-mv__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.p-index-mv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-index-about {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-index-about {
    margin-top: 100px;
  }
}

@media screen and (min-width: 768px) {
  .p-index-about__inner {
    width: min(916px + var(--padding-pc) * 2, 100%);
  }
}

.p-index-about__title {
  font-size: 22px;
  text-align: center;
  width: 110%;
  translate: -8px 0;
}
@media screen and (min-width: 768px) {
  .p-index-about__title {
    width: 100%;
    translate: initial;
    font-size: 40px;
  }
}

.p-index-about__title span {
  font-size: 27px;
}
@media screen and (min-width: 768px) {
  .p-index-about__title span {
    font-size: 50px;
  }
}

.p-index-about__cols {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (min-width: 768px) {
  .p-index-about__cols {
    margin-top: 70px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
  }
}

.p-index-about__img {
  margin: 0 auto;
  width: min(325px, 73.1%);
}
@media screen and (min-width: 768px) {
  .p-index-about__img {
    margin: 0;
    width: 47.6%;
  }
}

@media screen and (min-width: 768px) {
  .p-index-about__body {
    width: 48.58%;
  }
}

.p-index-about__text + .p-index-about__text {
  margin-top: 1.25em;
}

.p-index-works {
  margin-top: 70px;
}
@media screen and (min-width: 768px) {
  .p-index-works {
    margin-top: 100px;
  }
}

.p-index-works__title {
  margin: 0 auto;
}

.p-index-works__items {
  margin-top: 50px;
  display: grid;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-index-works__items {
    margin-top: 100px;
    grid-template-columns: repeat(2, 1fr);
    gap: min(64px, 5.3244592346vw);
  }
}

.p-index-works__item {
  display: flex;
  flex-direction: column-reverse;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .p-index-works__item {
    gap: 60px;
  }
}

.p-index-works__item-texts {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-index-works__item-texts {
    margin-top: 40px;
  }
}

.p-index-works__item-text + .p-index-works__item-text {
  margin-top: 1.5em;
}

.p-index-works__item-img {
  flex-grow: 1;
}

.p-index-worry {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .p-index-worry {
    margin-top: 120px;
  }
}

.p-index-worry__title {
  font-size: 22px;
  background-color: var(--c-corporate);
  text-align: center;
  padding: 10px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-index-worry__title {
    font-size: 35px;
    padding: 25px;
  }
}

.p-index-worry__title::before {
  content: "";
  width: 16px;
  height: 14px;
  background-color: var(--c-corporate);
  -webkit-clip-path: var(--clip-triangle-bottom);
          clip-path: var(--clip-triangle-bottom);
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
}
@media screen and (min-width: 768px) {
  .p-index-worry__title::before {
    width: min(50px, 4.159733777vw);
    height: min(45px, 3.7437603993vw);
  }
}

.p-index-worry__body {
  background-color: #f9f9f9;
  padding: 40px 0 60px;
}
@media screen and (min-width: 768px) {
  .p-index-worry__body {
    padding: 82px 0;
  }
}

.p-index-worry__boxes {
  display: grid;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-index-worry__boxes {
    margin: 0 auto;
    max-width: var(--sp-max-width);
  }
}
@media screen and (min-width: 1024px) {
  .p-index-worry__boxes {
    max-width: initial;
    grid-template-columns: repeat(2, 1fr);
    gap: min(80px, 6.1538461538vw);
    width: min(1122px, 100%);
    padding: 0 25px;
  }
}

.p-index-worry__box {
  border-radius: 20px;
  padding: 30px 34px 50px 25px;
  background-color: var(--c-base);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) {
  .p-index-worry__box {
    padding: 44px min(62px, 4.7692307692vw) 58px min(58px, 4.4615384615vw);
  }
}

.p-index-worry__box-title {
  margin: 0 auto;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-size: min(20px, 5.3333333333vw);
}

.p-index-worry__box-title::after {
  margin-left: 10px;
  display: inline-block;
  content: "";
  width: 20px;
  height: 35px;
  background-image: url(/img/index/icon_worry.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  translate: 0 8px;
}

.p-index-worry__list {
  margin-top: 30px;
  display: grid;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-index-worry__list {
    margin-top: 40px;
  }
}

.p-index-worry__text {
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 768px) {
  .p-index-worry__text {
    font-size: 22px;
    padding-left: 1em;
    text-indent: -1em;
  }
}

.p-index-worry__footer {
  padding: 90px 25px 0;
}
@media screen and (min-width: 768px) {
  .p-index-worry__footer {
    padding: 140px 0 0;
  }
}

.p-index-worry__items {
  display: grid;
  gap: 68px;
}
@media screen and (min-width: 768px) {
  .p-index-worry__items {
    grid-template-columns: repeat(3, 1fr);
    gap: min(48px, 3.993344426vw);
  }
}

.p-index-worry__item {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  gap: 30px;
}

.p-index-worry__item-text {
  margin-top: 20px;
}

.p-index-recruit {
  margin-top: 100px;
  --pc-width: 74.26%;
  background-image: url(/img/index/img_recruit_bg_sp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
  padding: 28px 0 0;
}
@media screen and (min-width: 768px) {
  .p-index-recruit {
    margin-top: 190px;
    background-image: url(/img/index/img_recruit_bg_pc.jpg);
    padding: 50px 0 90px;
  }
}

@media screen and (min-width: 768px) {
  .p-index-recruit__inner {
    position: relative;
  }
}

.p-index-recruit__title {
  margin: 0 auto;
}

.p-index-recruit__body {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-index-recruit__body {
    margin-top: 70px;
    width: var(--pc-width);
  }
}

.p-index-recruit__text + .p-index-recruit__text {
  margin-top: 1.5em;
}

.p-index-recruit__footer {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-index-recruit__footer {
    margin-top: 50px;
    width: var(--pc-width);
  }
}

.p-index-recruit__sub-title {
  display: inline-block;
  font-size: 22px;
  font-weight: 400;
}

.p-index-recruit__occupations {
  margin-top: 1em;
}

.p-index-recruit__link-wrapper {
  margin-top: 15px;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-index-recruit__link-wrapper {
    margin-top: 0;
    position: absolute;
    right: 0;
    bottom: -85px;
  }
}

.p-index-recruit__link {
  display: inline-block;
}

@media (any-hover: hover) {
  .p-index-recruit__link:hover {
    opacity: 1;
  }
  .p-index-recruit__link:hover .p-index-recruit__link-text {
    color: #6b6b6b;
  }
  .p-index-recruit__link:hover .p-index-recruit__link-icon {
    opacity: 0.5;
  }
}
.p-index-recruit__link-text {
  display: block;
  font-size: 16px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-index-recruit__link-text {
    font-size: 20px;
    transition: color 0.3s;
  }
}

.p-index-recruit__link-icon {
  display: block;
  margin: 0 auto;
  width: 123px;
  translate: 0 -10px;
}
@media screen and (min-width: 768px) {
  .p-index-recruit__link-icon {
    width: 200px;
    transition: opacity 0.3s;
  }
}

.p-index-recruit__link:active {
  color: #6b6b6b;
}

.p-index-company {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .p-index-company {
    margin-top: 160px;
  }
}

.p-index-company__title {
  margin: 0 auto;
}

.p-index-company__items {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-index-company__items {
    margin: 100px auto 0;
    max-width: 916px;
  }
}

.p-index-company__item {
  display: flex;
  gap: 20px;
  padding: 18px 5px;
}
@media screen and (min-width: 768px) {
  .p-index-company__item {
    font-size: 20px;
    padding: 20px 30px;
  }
}

.p-index-company__item:nth-of-type(odd) {
  background-color: var(--c-gray);
}

.p-index-company__term {
  min-width: 113px;
}
@media screen and (min-width: 768px) {
  .p-index-company__term {
    min-width: 250px;
  }
}

.p-index-company__map {
  margin: 42px auto 0;
  width: min(87.72%, 375px);
}
@media screen and (min-width: 768px) {
  .p-index-company__map {
    margin: 80px auto 0;
    width: 100%;
  }
}

.p-index-company__map-inner {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 64.67%;
}
@media screen and (min-width: 768px) {
  .p-index-company__map-inner {
    padding-top: 31.34%;
  }
}

.p-index-company__map-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-index-contact {
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .p-index-contact {
    margin-top: 160px;
  }
}

@media screen and (min-width: 768px) {
  .p-index-contact__inner {
    width: min(957px + var(--padding-pc) * 2, 100%);
  }
}

.p-index-contact__title {
  margin: 0 auto;
}

.p-index-contact__lead {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-index-contact__lead {
    margin-top: 100px;
  }
}

@media screen and (min-width: 768px) {
  .p-index-contact__text {
    text-align: center;
  }
}

.p-index-contact__text + .p-index-contact__text {
  margin-top: 1.5em;
}

.p-index-contact__form {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-index-contact__form {
    margin-top: 100px;
    padding: 0 20px;
  }
}

.p-contact-form [type=text],
.p-contact-form [type=email],
.p-contact-form [type=tel],
.p-contact-form textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  border: solid 1px #a7a7a7;
  border-radius: 10px;
  width: 100%;
  background-color: #f9f9f9;
  font-family: inherit;
  font-size: 16px;
  color: inherit;
  padding: 8px 10px;
  box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 768px) {
  .p-contact-form [type=text],
  .p-contact-form [type=email],
  .p-contact-form [type=tel],
  .p-contact-form textarea {
    padding: 15px;
  }
}

.p-contact-form textarea {
  resize: none;
  height: 90px;
}
@media screen and (min-width: 768px) {
  .p-contact-form textarea {
    height: 150px;
  }
}

.p-contact-form [type=text]::-moz-placeholder, .p-contact-form [type=email]::-moz-placeholder, .p-contact-form [type=tel]::-moz-placeholder {
  color: #acacac;
}

.p-contact-form [type=text]::placeholder,
.p-contact-form [type=email]::placeholder,
.p-contact-form [type=tel]::placeholder {
  color: #acacac;
}

.p-contact-form__item + .p-contact-form__item {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-contact-form__item + .p-contact-form__item {
    margin-top: 50px;
  }
}

.p-contact-form__item {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media screen and (min-width: 768px) {
  .p-contact-form__item {
    flex-direction: row;
    justify-content: space-between;
    gap: 1em;
  }
}

@media screen and (min-width: 768px) {
  .p-contact-form__item--fstart {
    align-items: flex-start;
  }
}

.p-contact-form__label {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-contact-form__label {
    gap: 30px;
    width: 35%;
    min-width: 245px;
  }
}

@media screen and (min-width: 768px) {
  .p-contact-form__item--fstart .p-contact-form__label {
    padding-top: 10px;
  }
}

.p-contact-form__label label,
.p-contact-form__label p {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .p-contact-form__label label,
  .p-contact-form__label p {
    font-size: 20px;
  }
}

@media screen and (min-width: 768px) {
  .p-contact-form__input {
    width: 64.3%;
  }
}

.p-contact-form__input--row {
  display: flex;
  align-items: center;
  gap: 70px;
}
@media screen and (min-width: 768px) {
  .p-contact-form__input--row {
    padding: 0 27px;
  }
}

.p-contact-form__privacy {
  margin: 60px auto 0;
  width: min(300px, 100%);
  padding: 15px 22px 15px 20px;
  overflow-y: scroll;
  border: 1px solid #9e9e9e;
  box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 768px) {
  .p-contact-form__privacy {
    margin-top: 105px;
    width: min(600px, 100%);
  }
}

.p-contact-form__privacy-inner {
  height: 90px;
}
@media screen and (min-width: 768px) {
  .p-contact-form__privacy-inner {
    height: 170px;
  }
}

.p-contact-form__privacy-title {
  display: block;
  font-size: 18px;
}

.p-contact-form__privacy-items {
  margin-top: 20px;
}

.p-contact-form__privacy-item + .p-contact-form__privacy-item {
  margin-top: 25px;
}

.p-contact-form__privacy-sub-title {
  display: block;
}

.p-contact-form__privacy-text {
  margin-top: 1em;
}

.p-contact-form__privacy-item:last-of-type {
  padding-bottom: 15px;
}

.p-contact-form__agree {
  margin-top: 50px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact-form__agree {
    margin-top: 105px;
  }
}

.p-contact-form__button {
  margin: 65px auto 0;
  width: min(300px, 100%);
}
@media screen and (min-width: 768px) {
  .p-contact-form__button {
    margin: 115px auto 0;
    width: min(400px, 100%);
  }
}

.p-contact-form__radio {
  opacity: 0;
  position: absolute;
}

.p-contact-form__radio-inner {
  display: inline-block;
  padding-left: 27px;
  position: relative;
  cursor: pointer;
}

.p-contact-form__radio-inner::before {
  content: "";
  width: 17px;
  aspect-ratio: 1;
  border: 1px solid;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--c-base);
  border-radius: 50%;
}

.p-contact-form__radio-inner::after {
  content: "";
  width: 11px;
  aspect-ratio: 1;
  background-color: var(--c-corporate);
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  display: none;
}

.p-contact-form__radio:checked + span::after {
  display: block;
}

.p-contact-form__checkbox {
  opacity: 0;
  position: absolute;
}

.p-contact-form__checkbox-inner {
  display: inline-block;
  padding-left: 40px;
  position: relative;
  font-weight: 700;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-contact-form__checkbox-inner {
    padding-left: 58px;
  }
}

.p-contact-form__checkbox-inner::before {
  content: "";
  width: 25px;
  aspect-ratio: 1;
  background-color: var(--c-base);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  border-radius: 5px;
  border: 1px solid;
}
@media screen and (min-width: 768px) {
  .p-contact-form__checkbox-inner::before {
    width: 38px;
    border-radius: 10px;
  }
}

.p-contact-form__checkbox-inner::after {
  position: absolute;
  top: 4px;
  transform: translateY(-50%);
  left: 4px;
  display: none;
  content: "";
  width: 18px;
  height: 9px;
  border-left: 2px solid;
  border-bottom: 2px solid;
  transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .p-contact-form__checkbox-inner::after {
    width: 26px;
    height: 13px;
    top: 3px;
    left: 6px;
  }
}

.p-contact-form__checkbox:checked + .p-contact-form__checkbox-inner::after {
  display: block;
}

.p-page-confirm {
  padding-top: 90px;
}
@media screen and (min-width: 768px) {
  .p-page-confirm {
    padding-top: 150px;
  }
}

@media screen and (min-width: 768px) {
  .p-page-confirm__inner {
    width: min(916px + var(--padding-pc) * 2, 100%);
  }
}

.p-page-confirm__title {
  text-align: center;
  font-size: 22px;
}
@media screen and (min-width: 768px) {
  .p-page-confirm__title {
    font-size: 30px;
  }
}

.p-page-confirm__text {
  margin-top: 90px;
}
@media screen and (min-width: 768px) {
  .p-page-confirm__text {
    margin-top: 40px;
    text-align: center;
  }
}

.p-page-confirm__body {
  margin-top: 80px;
}

.p-page-confirm__body tr:last-of-type {
  display: none;
}

@media screen and (min-width: 768px) {
  .p-page-confirm__table {
    table-layout: fixed;
    border-collapse: collapse;
    width: 100%;
  }
}

.p-page-confirm__table th,
.p-page-confirm__table td {
  display: block;
  text-align: left;
  padding: 6px 0;
}
@media screen and (min-width: 768px) {
  .p-page-confirm__table th,
  .p-page-confirm__table td {
    display: inline-block;
    padding: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-page-confirm__table tr {
    display: block;
    padding: 40px 0;
  }
}

@media screen and (min-width: 768px) {
  .p-page-confirm__table tr:not(:nth-last-of-type(2)) {
    border-bottom: 1px dashed;
  }
}

.p-page-confirm__table th {
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-page-confirm__table th {
    width: 35%;
    text-align: center;
  }
}

.p-page-confirm__table td {
  padding-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .p-page-confirm__table td {
    font-weight: 500;
    width: 65%;
    padding-bottom: 0;
  }
}

.p-page-confirm__btns {
  margin: 80px auto 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (min-width: 768px) {
  .p-page-confirm__btns {
    flex-direction: row-reverse;
    justify-content: center;
    gap: 30px;
  }
}

.p-page-confirm__btns button {
  margin: 0 auto;
  width: min(300px, 100%);
}
@media screen and (min-width: 768px) {
  .p-page-confirm__btns button {
    margin: 0;
    width: min(400px, 100%);
  }
}

.p-page-thanks {
  padding-top: 100px;
}
@media screen and (min-width: 768px) {
  .p-page-thanks {
    padding-top: 170px;
  }
}

.p-page-thanks__title {
  text-align: center;
  font-size: 22px;
}
@media screen and (min-width: 768px) {
  .p-page-thanks__title {
    font-size: 30px;
  }
}

.p-page-thanks__text {
  margin-top: 90px;
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .p-page-thanks__text {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .p-page-thanks__text {
    margin-top: 40px;
    text-align: center;
  }
}

.p-page-thanks__button {
  margin: 120px auto 0;
  width: min(300px, 100%);
}
@media screen and (min-width: 768px) {
  .p-page-thanks__button {
    width: min(400px, 100%);
  }
}

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

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

.u-dib {
  display: inline-block;
}

.u-ff-serif {
  font-family: var(--second-font);
}

.u-fz16 {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .u-fz16 {
    font-size: 18px;
  }
}

.u-fz20 {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .u-fz20 {
    font-size: 25px;
  }
}

.u-fw700 {
  font-weight: 700;
}

.u-fw500 {
  font-weight: 500;
}

.u-ls-small {
  letter-spacing: 0.01em;
}

.u-ls-middle {
  letter-spacing: 0.05em;
}

.u-ls-large {
  letter-spacing: 0.1em;
}

.u-cl-c {
  color: var(--c-corporate);
}

.u-cl-w {
  color: var(--c-text-white);
}