@charset "utf-8";
/* Reset some default styles */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
a {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}

/* Base styles */
:root {
  font-size: min(10px, calc(10 / 1920 * 100vw));
  --container-width: 110rem;
  --container-margin: calc((100vw - var(--container-width)) / 2);
  --middle-container-width: 130rem;
  --middle-container-margin: calc((100vw - var(--middle-container-width)) / 2);
  --large-container-width: 142.7rem;
  --large-container-margin: calc((100vw - var(--large-container-width)) / 2);
}

@media screen and (max-width: 767px) {
  :root {
    font-size: calc(10 / 430 * 100vw);
    --container-width: 40rem;
    --middle-container-width: 40rem;
    --large-container-width: 40rem;
  }
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Hiragino Sans", sans-serif;
  line-height: 1.6;
  color: #191919;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

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

/* Header */
header {
  box-shadow: 0px 0.3rem 0.6rem #00000029;
  position: relative;
  z-index: 1000;
}

.header_container {
  max-width: 172rem;
  height: 3.6rem;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.2rem 2rem;
}

@media screen and (max-width: 767px) {
  .header_container {
    max-width: none;
    padding-inline: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .header__logo {
    margin-left: 0.6rem;
    width: 8.1rem;
    height: 8rem;
  }
}

.header__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 18.3rem;
  min-height: 3.6rem;
  padding: 0.5rem 1rem;
  background: transparent linear-gradient(90deg, #e18c32 0%, #f3c144 100%) 0% 0% no-repeat padding-box;
  border-radius: 4.6rem;
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 600;
  position: relative;
}

@media screen and (max-width: 767px) {
  .header__btn {
    min-width: 14.8rem;
    font-size: 1.5rem;
  }
}

.header__btn::after {
  content: "";
  width: 1rem;
  height: 0.6rem;
  background: url(./img/img_right_arrow_white.png) no-repeat center / contain;
  position: absolute;
  top: 50%;
  right: 1rem;
  translate: 0 -50%;
}

/* Footer */
footer {
  padding: 2rem;
  background: #000000;
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
}

/* Cv */
.cv {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .cv {
    margin-inline: var(--container-margin);
  }
}

.cv__text {
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .cv__text {
    font-size: 2rem;
  }
}

.cv__btn {
  display: flex;
  align-items: center;
  min-width: 52.9rem;
  min-height: 5.7rem;
  margin-top: 0.7rem;
  padding: 0.5rem 5.4rem;
  background: transparent linear-gradient(90deg, #e18c32 0%, #f3c144 100%) 0% 0% no-repeat padding-box;
  border-radius: 4.6rem;
  box-shadow: 0px 0.3rem 1.6rem #00000057;
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 600;
  position: relative;
}

@media screen and (max-width: 767px) {
  .cv__btn {
    width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 1.4rem 3rem;
    font-size: 1.8rem;
  }
}

.cv__btn::after {
  content: "";
  width: 2rem;
  height: 1rem;
  background: url(./img/img_right_arrow_white.png) no-repeat center / contain;
  position: absolute;
  top: 50%;
  right: 2.5rem;
  translate: 0 -50%;
}

.cv__btn-emphasis-text {
  font-size: 2.4rem;
}

@media screen and (max-width: 767px) {
  .cv__btn-emphasis-text {
    font-size: 2rem;
  }
}

.cv__img {
  margin-top: 4.8rem;
}

@media screen and (max-width: 767px) {
  .cv__img {
    margin-top: 5rem;
  }
}

/* Hero */
.hero {
  position: relative;
}

.hero::before {
  content: "";
  width: 100%;
  height: 103.6rem;
  background-color: #f0f6fc;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
}

.hero__container {
  margin-inline: var(--container-margin);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 3.5rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .hero__container {
    margin-inline: 0;
  }
}

/* Section-1 */
.section-1__container {
  margin-inline: var(--container-margin);
  padding: 10rem 0;
}

@media screen and (max-width: 767px) {
  .section-1__container {
    padding: 7rem 0 6rem;
  }
}

.section-1__body {
  display: flex;
  gap: 6rem;
  margin-top: 6rem;
}

@media screen and (max-width: 767px) {
  .section-1__body {
    flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
  }
}

.section-1__body-img {
  width: 52rem;
}

@media screen and (max-width: 767px) {
  .section-1__body-img {
    width: 100%;
    text-align: center;
  }
}

.section-1__body-text p {
  font-size: 1.6rem;
  line-height: calc(27 / 16);
}

.section-1__body-text p + p {
  margin-top: 1em;
}

/* Section-2 */
.section-2 {
  background: #fafafa;
  position: relative;
}

.section-2::after {
  content: "";
  width: 100%;
  height: 10.4rem;
  background: #fafafa;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .section-2::after {
    height: 5.4rem;
  }
}

.section-2__container {
  margin-inline: var(--container-margin);
  padding: 10rem 0;
}

@media screen and (max-width: 767px) {
  .section-2__container {
    padding: 5rem 0;
  }
}

.section-2__body {
  margin-top: 5.4rem;
  padding: 5.7rem 12.2rem;
  background: #ffffff url(./img/img_grid.svg) no-repeat center / cover;
}

@media screen and (max-width: 767px) {
  .section-2__body {
    margin-top: 4rem;
    padding: 3.6rem 2rem 3rem;
  }
}

.checklist__item {
  padding-top: 0.4rem;
  padding-left: 4.6rem;
  font-size: 2.2rem;
  font-weight: 600;
  position: relative;
}

@media screen and (max-width: 767px) {
  .checklist__item {
    font-size: 1.8rem;
  }
}

.checklist__item + .checklist__item {
  margin-top: 1em;
}

.checklist__item::before {
  content: "";
  width: 3.2rem;
  height: 3.1rem;
  background: url(./img/img_checkbox.svg) no-repeat center / contain;
  position: absolute;
  top: 0.3rem;
  left: 0;
}

/* Section-3 */
.section-3 {
  background: #f0f6fc;
}

.section-3__container {
  width: fit-content;
  margin-inline: auto;
  padding: 21.2rem 0 10rem;
}

@media screen and (max-width: 767px) {
  .section-3__container {
    padding: 11rem 0 5rem;
  }
}

.section-3__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12rem;
  margin: 5rem 0 6rem;
}

@media screen and (max-width: 767px) {
  .section-3__body {
    grid-template-columns: 1fr;
    margin: 4rem 0;
    gap: 5rem;
  }
}

.section-3__body-item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: subgrid;
  grid-row: span 2;
  justify-items: center;
  gap: 2.7rem;
}

.section-3__body-item-text {
  font-size: 2rem;
  font-weight: 600;
  line-height: calc(37 / 20);
  text-align: center;
}

/* Section-4 */
.section-4__container {
  margin-inline: var(--container-margin);
  padding: 12rem 0 14rem;
}

@media screen and (max-width: 767px) {
  .section-4__container {
    padding: 5rem 0;
  }
}

.section-4__hgroup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}

.section-4__body {
  margin-bottom: 8.2rem;
}

@media screen and (max-width: 767px) {
  .section-4__body {
    margin-bottom: 4rem;
  }
}

.section-4__body-text {
  margin-top: 5rem;
  font-size: 2rem;
  line-height: calc(44 / 20);
  text-align: center;
}

@media screen and (max-width: 767px) {
  .section-4__body-text {
    margin-top: 4rem;
  }
}

.section-4__body-img {
  display: block;
  margin-top: 7rem;
}

@media screen and (max-width: 767px) {
  .section-4__body-img {
    text-align: center;
    margin: 0 auto;
    margin-top: 4rem;
  }
}

.section-4__body-img + .section-4__body-img {
  margin-top: 11.1rem;
  position: relative;
}

.section-4__body-img + .section-4__body-img::before {
  content: "";
  width: 5.1rem;
  height: 5.1rem;
  background: url(./img/img_plus.svg) no-repeat center / contain;
  position: absolute;
  bottom: calc(100% + 3rem);
  left: 50%;
  translate: -50% 0;
}

/* Section-5 */
.section-5 {
  background: #3c5a89;
  color: #ffffff;
  padding-bottom: 60px;
}

.section-5__container {
  margin-inline: var(--container-margin);
  padding: 11rem 0 10rem;
}

@media screen and (max-width: 767px) {
  .section-5__container {
    padding: 5rem 0 0;
  }
}

.section-5__body {
  display: flex;
  gap: 7rem;
  margin: 8rem 0;
}

@media screen and (max-width: 767px) {
  .section-5__body {
    flex-direction: column;
    margin: 4rem 0;
  }
}

.section-5__body-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.section-5__body-item-movie {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 560 / 315;
  width: 51rem;
  /* background: #ffffff; */
  color: #191919;
  font-size: 4rem;
}

@media screen and (max-width: 767px) {
  .section-5__body-item-movie {
    width: var(--container-width);
    height: calc(var(--container-width) * 315 / 560);
  }
}

.section-5__body-item-movie iframe {
  width: 100%;
  height: 100%;
}

.section-5__body-item-label {
  padding: 1rem 3rem;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .section-5__body-item-label {
    padding: 1rem 2rem;
    font-size: 2rem;
  }
}

/* Section-6 */
.section-6__container {
  margin-inline: var(--container-margin);
  padding: 10rem 0 23.5rem;
}

@media screen and (max-width: 767px) {
  .section-6__container {
    padding: 5rem 0;
  }
}

.section-6__body {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin: 6rem 0 5.4rem;
}

@media screen and (max-width: 767px) {
  .section-6__body {
    flex-direction: column;
    margin: 4rem 0;
  }
}

.section-6__body-img {
  width: 52rem;
}

@media screen and (max-width: 767px) {
  .section-6__body-img {
    width: 100%;
  }
}

.section-6__body-text {
  width: 52rem;
}

@media screen and (max-width: 767px) {
  .section-6__body-text {
    width: 100%;
  }
}

.section-6__body-profile {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: calc(61 / 36);
}

.section-6__body-profile-company {
  display: block;
  font-size: 2.6rem;
  line-height: calc(44 / 26);
}

.section-6__body-text-description {
  margin-top: 3.5rem;
  font-size: 2rem;
  line-height: calc(34 / 20);
}

/* Section-7 */
.section-7 {
  background: #fafafa;
}
.section-7__container {
  margin-inline: var(--container-margin);
  padding: 11rem 0 10rem;
}

@media screen and (max-width: 767px) {
  .section-7__container {
    padding: 5rem 0;
  }
}

.section-7__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .section-7__body {
    flex-direction: column;
    row-gap: 4rem;
  }
}

.circlechecklist__item {
  padding-left: 6.4rem;
  font-size: 2rem;
  font-weight: 600;
  line-height: calc(45 / 20);
  position: relative;
}

@media screen and (max-width: 767px) {
  .circlechecklist__item {
    padding-top: 0.4rem;
    padding-left: 5.9rem;
    font-size: 1.8rem;
    line-height: 1.8;
  }
}

.circlechecklist__item + .circlechecklist__item {
  margin-top: 3rem;
}

.circlechecklist__item::before {
  content: "";
  width: 4.5rem;
  height: 4.5rem;
  background: url(./img/img_circle_check.svg) no-repeat center / contain;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .circlechecklist__item::before {
    width: 4rem;
    height: 4rem;
  }
}

/* Section-8 */
.section-8 {
  background: url(./img/img_06.jpg) no-repeat center / cover;
}

@media screen and (max-width: 767px) {
  .section-8 {
    background-image: url(./img/img_06_sp.jpg);
  }
}

.section-8__container {
  margin-inline: var(--container-margin);
  padding: 10rem 0;
}

@media screen and (max-width: 767px) {
  .section-8__container {
    padding: 5rem 0;
  }
}

.section-8__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6rem;
}

@media screen and (max-width: 767px) {
  .section-8__body {
    margin-top: 4rem;
  }
}

.checklist-blue {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .checklist-blue {
    align-items: stretch;
    width: auto;
    margin-right: calc(-1 * var(--container-margin));
  }
}

.checklist-blue__item {
  padding: 2.2rem 4.5rem 2.2rem 9.6rem;
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: calc(42 / 20);
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  .checklist-blue__item {
    padding: 2.2rem 0 2.2rem 7.6rem;
    font-size: 1.9rem;
    line-height: calc(28 / 19);
  }
}

.checklist-blue__item + .checklist-blue__item {
  margin-top: 3rem;
}

.checklist-blue__item::before {
  content: "";
  width: 4.2rem;
  height: 4.3rem;
  margin-block: auto;
  background: url(./img/img_checkbox_blue.svg) no-repeat center / contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 4.4rem;
}

@media screen and (max-width: 767px) {
  .checklist-blue__item::before {
    left: 2.5rem;
  }
}

.checklist-blue__item::after {
  content: "";
  width: 100%;
  height: 100%;
  background: transparent linear-gradient(90deg, #3ebcc1 0%, #311bdd 100%) 0% 0% no-repeat padding-box;
  clip-path: polygon(2.4rem 0%, 100% 0%, calc(100% - 2.4rem) 100%, 0% 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .checklist-blue__item::after {
    content: "";
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(90deg, #3ebcc1 0%, #311bdd 100%) 0% 0% no-repeat padding-box;
    clip-path: polygon(1.9rem 0%, 100% 0%, 100% 100%, 0% 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}

/* Section-9 */
.section-9__container {
  margin-inline: var(--large-container-margin);
  padding: 10rem 0 8rem;
}

@media screen and (max-width: 767px) {
  .section-9__container {
    padding: 5rem 0;
  }
}

.section-9__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 7.3rem 14rem;
  margin-top: 6rem;
}

@media screen and (max-width: 767px) {
  .section-9__body {
    flex-direction: column;
    margin-top: 4rem;
  }
}

.section-9__body-grid-item {
  flex: 1 1 0;
}

.section-9__body-grid-item + .section-9__body-grid-item {
  position: relative;
}

.section-9__body-grid-item::before {
  content: "";
  width: 3.7rem;
  height: 3.3rem;
  background: url(./img/img_arrow.svg) no-repeat center / contain;
  position: absolute;
  top: 15rem;
  right: calc(100% + 5.3rem);
}

@media screen and (max-width: 767px) {
  .section-9__body-grid-item::before {
    margin-inline: auto;
    top: auto;
    right: 0;
    bottom: calc(100% + 1.8rem);
    left: 0;
    rotate: 90deg;
  }
}

.section-9__body-grid-item .checklist {
  margin-top: 3.5rem;
}

@media screen and (max-width: 767px) {
  .section-9__body-grid-item .checklist {
    margin-top: 1rem;
  }
}

.section-9__body-grid-item .checklist__item {
  font-size: 2rem;
}

/* Section-10 */
.section-10 {
  background: #edf4ff;
}

.section-10__container {
  margin-inline: var(--middle-container-margin);
  padding: 7rem 0 16rem;
}

@media screen and (max-width: 767px) {
  .section-10__container {
    padding: 5rem 0;
  }
}

.section-10__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 6rem;
  margin-top: 6rem;
}

@media screen and (max-width: 767px) {
  .section-10__body {
    flex-direction: column;
    margin-top: 4rem;
  }
}

.section-10__body-grid {
  display: flex;
  justify-content: space-between;
  gap: 5.6rem;
  padding: 6rem 4.5rem 6rem 5.5rem;
  background: #ffffff;
}

@media screen and (max-width: 767px) {
  .section-10__body-grid {
    flex-direction: column;
    gap: 3rem;
    padding: 3rem 1.5rem;
  }
}

.section-10__body-grid-item:has(.section-10__body-grid-item-img) {
  flex-shrink: 0;
  width: 59.3rem;
}

@media screen and (max-width: 767px) {
  .section-10__body-grid-item:has(.section-10__body-grid-item-img) {
    width: 100%;
  }
}

.section-10__body-heading {
  font-size: 2.7rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .section-10__body-heading {
    font-size: 2.4rem;
  }
}

.section-10__body-heading .heading-section__emphasis-text {
  margin-inline: 0;
}

.section-10__body-heading .heading-section__emphasis-text + .heading-section__emphasis-text {
  margin-top: 2rem;
}

@media screen and (max-width: 767px) {
  .section-10__body-heading .heading-section__emphasis-text + .heading-section__emphasis-text {
    margin-top: 0.6rem;
  }
}

@media screen and (max-width: 767px) {
  .section-10__body-heading .heading-section__emphasis-text + .heading-section__emphasis-text.l-mt {
    margin-top: 0.9rem;
  }
}

.section-10__body-grid-item-img {
  margin: 2.5rem 0 0;
}

.section-10__body-grid-item-img figcaption {
  margin-top: 1rem;
  font-size: 2rem;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .section-10__body-grid-item-img figcaption {
    font-size: 1.5rem;
  }
}

.section-10__body-grid-item-text {
  font-size: 2rem;
  line-height: calc(38 / 20);
}

@media screen and (max-width: 767px) {
  .section-10__body-grid-item-text {
    font-size: 1.7rem;
    line-height: calc(34 / 17);
  }
}

.section-10__body-grid-item-text--emphasis {
  color: #b20606;
  font-weight: bold;
}

/* Utility classes */
.heading-section {
  font-size: 4rem;
  font-weight: 600;
  line-height: calc(68 / 40);
  text-align: center;
}

@media screen and (max-width: 767px) {
  .heading-section {
    font-size: 2.5rem;
  }
}

.heading-section__emphasis-text {
  display: block;
  width: fit-content;
  margin-inline: auto;
  padding: 0.8rem 1.3rem;
}

@media screen and (max-width: 767px) {
  .heading-section__emphasis-text {
    padding: 1rem;
  }
}

.heading-section__emphasis-text + .heading-section__emphasis-text {
  margin-top: 0.8rem;
}

.heading-section__emphasis-text--inline {
  display: inline-block;
}

.heading-label__emphasis-text {
  display: block;
  width: fit-content;
  margin-inline: auto;
  padding: 1.5rem 1.9rem;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
}

.heading-label__emphasis-text + .heading-label__emphasis-text {
  margin-top: 0.8rem;
}

.heading-label__emphasis-text--inline {
  display: inline-block;
}

.gradient-text {
  color: #ffffff;
  line-height: 1.5;
  background: transparent linear-gradient(94deg, #950d59 0%, #63b1e2 100%) 0% 0% no-repeat padding-box;
  white-space: nowrap;
}

.yellow-underline-text {
  text-decoration: underline;
  text-decoration-color: #fcd905;
  text-underline-offset: -0.2rem;
  text-decoration-thickness: 1rem;
}

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

@media not screen and (max-width: 767px) {
  .for-sp {
    display: none;
  }
}


  .section-5__body {
    display: flex;
    flex-wrap: wrap;
    gap: 7rem;
    margin: 8rem 0 3rem;
    justify-content: center;
  }
  .section-5__body-item {
    flex: 0 1 calc(50% - 3.5rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  .section-5__body-item-movie {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
    overflow: hidden;
    cursor: pointer;
  }
  .section-5__body-item-movie img,
  .section-5__body-item-movie iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
  }
  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }
  .play-button::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
  }