@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
}

html {
  color: #000;
  background: #FFF;
}

body {
  -webkit-text-size-adjust: 100%;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
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,
input, textarea, button, select,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

td, th {
  vertical-align: top;
}

img {
  vertical-align: bottom;
}

ul, ol, li {
  list-style: none;
}

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

p, li, dd, dt, td, th {
  word-wrap: break-word;
}

select, input {
  word-wrap: normal;
}

address, caption, cite, code, dfn, em, strong, th, var, time, mark {
  font-style: normal;
  font-weight: normal;
}

caption, th {
  text-align: left;
}

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

abbr, acronym {
  border: 0;
  font-variant: normal;
}

mark {
  color: #000;
  background: #FFF;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input, textarea, select, keygen {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}

pre, code,
kbd, samp, tt {
  font-family: monospace;
  line-height: 100%;
}

input:not([type=radio]):not([type=checkbox]), textarea, button {
  /* iosでボタンなどのデフォルト装飾を解除 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
}

/* Firefoxでボタン系の高さが1pxずれる対策 */
button::-moz-focus-inner,
input[type=button]::-moz-focus-inner,
input[type=reset]::-moz-focus-inner,
input[type=submit]::-moz-focus-inner {
  border: 0px;
}

/*----------------------
     html base
---------------------------------------- */
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 10px; /* 1rem = 10px */
}

body {
  min-height: 100%;
  font-size: 16px;
  font-size: 1.6rem;
  color: #000;
  line-height: 1;
  font-family: Noto Sans JP, 游ゴシック, YuGothic, ヒラギノ角ゴ ProN W3, Hiragino Kaku Gothic ProN, メイリオ, Meiryo, Arimo, sans-serif;
  font-weight: 400;
}

a {
  color: #000;
  text-decoration: none;
  transition: all 1s;
}
a:hover {
  opacity: 0.7;
}

button, input, textarea {
  font-family: Noto Sans JP, 游ゴシック, YuGothic, ヒラギノ角ゴ ProN W3, Hiragino Kaku Gothic ProN, メイリオ, Meiryo, Arimo, sans-serif;
}

input[type=text], textarea, select, input[type=password] {
  padding: 0.5em 1em;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 6px;
  width: 100%;
}

textarea {
  height: 10em;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
}

@media (max-width: 767px) {
  img {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .l-container {
    background-size: 150%;
  }
}

.l-header {
  width: 100%;
  margin-inline: auto;
  max-width: 100%rem;
}
.l-header_inner {
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.6rem;
  max-width: 121.6rem;
}

.l-main {
  width: 100%;
  margin-inline: auto;
  max-width: 120rem;
  padding-block: 8rem;
}

.l-subcontents {
  display: grid;
  grid-template-columns: clamp(210px, 20%, 250px) minmax(300px, 950px);
}
@media (max-width: 767px) {
  .l-subcontents {
    grid-template-columns: 1fr;
  }
}

.l-header {
  position: relative;
  width: 100%;
}

.l-header_nav {
  position: relative;
  z-index: 10;
  width: 100%;
  margin-inline: auto;
  max-width: 120rem;
  margin: 1.6rem auto;
  display: flex;
  gap: 1.6rem;
  justify-content: space-around;
  align-items: center;
}
.l-header_nav_logo {
  width: 14rem;
}
.l-header_nav_list {
  display: flex;
  row-gap: 0.5em;
  flex-wrap: wrap;
  grid-template-columns: repeat(10, auto);
}
.l-header_nav_list .__item:not(:last-of-type) {
  border-right: 1px solid;
}
.l-header_nav_list a {
  font-weight: 700;
  font-size: 1.8rem;
  display: block;
  padding: 0 1em;
  text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.3764705882);
}
@media (max-width: 767px) {
  .l-header_nav {
    margin: 0;
    height: auto;
    display: none;
  }
  .l-header_nav_logo {
    display: none;
  }
  .l-header_nav_list {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    width: 70vw;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    padding-top: 5vh;
    margin-top: 0;
    transition: all 0.3s;
  }
  .l-header_nav_list li {
    width: 100%;
    text-align: left;
    padding: 0rem 3.2rem;
  }
  .l-header_nav_list li:not(:last-child):after {
    content: "";
  }
  .l-header_nav_list li:before {
    content: "";
    display: inline-block;
    margin-right: 1em;
  }
  .l-header_nav.open {
    display: block;
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background: rgba(0, 0, 0, 0.4);
  }
}

.l-footer {
  position: relative;
}

.c-btn {
  font-weight: 600;
  font-size: 1.6rem;
  font-family: "Montserrat", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  place-content: center;
  background: #e60021;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5em 2em;
  border-radius: 2em;
  height: 5.5rem;
  min-width: 18rem;
}
.c-btn_contact {
  background: #e60021;
  color: #fff;
}
.c-btn_more {
  background: #005bac;
  color: #fff;
  min-width: 24rem;
}
.c-btn_more:after {
  content: "";
  display: inline-block;
  width: 1em;
  background: url(../images/icon_arrow_wr.svg) no-repeat center center/contain;
  aspect-ratio: 1/1;
}
.c-btn_entry {
  background: #e60021;
}
.c-btn_radio {
  background: #6fc9f3;
  color: #fff;
  min-width: 24rem;
}
.c-btn_radio:after {
  content: "";
  display: inline-block;
  width: 1em;
  background: url(../images/icon_arrow_wr.svg) no-repeat center center/contain;
  aspect-ratio: 1/1;
}
.c-btn_pdf {
  background: #e60021;
  display: flex;
  gap: 0.5em;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.4;
}
.c-btn_pdf:after {
  content: "PDF";
  background: #fff;
  color: #e60021;
  font-weight: 700;
  font-size: 1.2rem;
  font-family: "Montserrat", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
  padding-inline: 0.2em;
}
.c-btn.__disabled {
  background: #969696;
  pointer-events: none;
}

.c-more_btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.c-more_btn img {
  width: 25.2rem;
  height: 5.6rem;
  aspect-ratio: 252/56;
}

.c-nowrap {
  display: inline-block;
}

.c-icon_list_item {
  display: flex;
}
.c-icon_list_item:before {
  content: attr(data-icon);
  display: block;
  margin-right: 0.2em;
}

.c-plus_minus {
  background: #6fc9f3;
  width: 2rem;
  height: 2rem;
  border-radius: 1rem;
  position: relative;
  cursor: pointer;
}
.c-plus_minus:before, .c-plus_minus:after {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
.c-plus_minus:after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.3s;
}
.c-plus_minus.__show:before {
  transform: translate(-50%, -50%) rotate(180deg);
  opacity: 0;
}
.c-plus_minus.__show:after {
  transform: translate(-50%, -50%) rotate(180deg);
}

.c-underline {
  display: inline-block;
  border-bottom: 5px solid;
  padding-bottom: 0.2em;
  margin: 0 0.1em;
  font-feature-settings: "palt";
}
.c-underline.__yellow {
  display: inline-block;
  border-bottom: 5px solid #fff;
  margin: 0 0.1em;
  font-feature-settings: "palt";
}

.c-underline_text {
  display: inline-block;
  text-decoration: underline;
  text-decoration-thickness: 5px;
  text-underline-offset: 0.5em;
  margin: 0 0.1em;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .c-underline_text {
    text-underline-offset: 0.2em;
  }
}
.c-underline_text.__yellow {
  display: inline-block;
  border-bottom: 5px solid #fff;
  margin: 0 0.1em;
  font-feature-settings: "palt";
}

.c-round_image img {
  overflow: hidden;
  border-radius: 1rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .c-round_image img {
    border-radius: 0;
  }
}

.c-mynavi_logo {
  width: 6.6rem;
}
@media (max-width: 767px) {
  .c-mynavi_logo {
    width: 4rem;
  }
}

@media (max-width: 767px) {
  .c-sns_logo {
    width: 3.2rem;
  }
}

.p-parts_talk {
  background: #fff url(../images/bg_contents.svg) no-repeat center 15rem/contain;
}
@media (max-width: 767px) {
  .p-parts_talk {
    background: #fffde5;
    border-radius: 2rem;
  }
}
.p-parts_talk_inner {
  width: 100%;
  margin-inline: auto;
  max-width: 75rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-parts_talk_inner {
    padding: 1.6rem;
  }
}
.p-parts_talk_heading {
  width: clamp(18rem, 50%, 38rem);
  z-index: 50;
  position: absolute;
  top: 0rem;
}
.p-parts_talk_heading.__type1 {
  left: 0;
}
.p-parts_talk_heading.__type2 {
  right: 0;
}
@media (max-width: 767px) {
  .p-parts_talk_heading {
    top: 1.6rem;
  }
}
.p-parts_talk_heading_mainimage {
  position: relative;
  z-index: 49;
  text-align: right;
  margin-block: 4.8rem;
}
.p-parts_talk_heading_mainimage.__type1 {
  text-align: right;
}
.p-parts_talk_heading_mainimage.__type2 {
  text-align: left;
}
@media (max-width: 767px) {
  .p-parts_talk_heading_mainimage {
    margin-block: 3.2rem;
  }
  .p-parts_talk_heading_mainimage img {
    width: 80%;
  }
}
.p-parts_talk_description {
  display: grid;
  gap: 3.2rem;
}
@media (max-width: 767px) {
  .p-parts_talk_description {
    gap: 2.4rem;
  }
}
.p-parts_talk_description .__desc1 {
  display: grid;
  gap: 2.4rem;
  grid-template-areas: "title" "detail";
}
@media (max-width: 767px) {
  .p-parts_talk_description .__desc1 {
    gap: 1.6rem;
  }
}
.p-parts_talk_description .__desc2 {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: 1fr 1.2fr;
  grid-template-areas: "image title" "image detail";
}
@media (max-width: 767px) {
  .p-parts_talk_description .__desc2 {
    gap: 1.6rem;
    grid-template-columns: 1fr;
    grid-template-areas: "image " "title" "detail";
  }
}
.p-parts_talk_description .__desc_title {
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  grid-area: title;
  line-height: 1.4;
}
.p-parts_talk_description .__desc_title.__blue {
  color: #0068b7;
}
.p-parts_talk_description .__desc_title.__pink {
  color: #ea545b;
}
.p-parts_talk_description .__desc_title.__orange {
  color: #ed6c00;
}
@media (max-width: 767px) {
  .p-parts_talk_description .__desc_title {
    letter-spacing: 0;
    font-weight: 500;
    font-size: 1.6rem;
  }
}
.p-parts_talk_description .__detail {
  line-height: 1.8;
  font-weight: 400;
  font-size: 1.4rem;
  text-align: justify;
  text-justify: inter-ideograph;
  grid-area: detail;
}
.p-parts_talk_description .__image {
  grid-area: image;
}
@media (max-width: 767px) {
  .p-parts_talk_description .__image {
    width: 70%;
  }
}

.p-parts_table {
  width: 100%;
  margin-inline: auto;
  max-width: 75rem;
  background: #eaf6fd;
  padding: 3.2rem;
}
@media (max-width: 767px) {
  .p-parts_table {
    border-radius: 2rem;
    padding: 2.4rem;
  }
}
.p-parts_table_inner {
  width: 100%;
  margin-inline: auto;
  max-width: 67rem;
  display: grid;
  gap: 3.2rem;
}
@media (max-width: 767px) {
  .p-parts_table_inner {
    gap: 2.4rem;
  }
}
.p-parts_table_heading {
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: 0.5em;
  text-indent: 1em;
}
.p-parts_table_contents {
  border-radius: 2rem;
  background: #fff;
  padding: 2.4rem 3.2rem;
}
@media (max-width: 767px) {
  .p-parts_table_contents {
    padding: 1.6rem;
  }
}
.p-parts_table_list .__group {
  padding: 2.4rem 1em;
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1fr 3fr;
}
.p-parts_table_list .__group:not(:last-of-type) {
  border-bottom: 1px solid #4c4948;
}
@media (max-width: 767px) {
  .p-parts_table_list .__group {
    grid-template-columns: 1fr;
    padding: 1.6rem 0.4rem;
    gap: 0.8rem;
  }
  .p-parts_table_list .__group:not(:last-of-type) {
    border-bottom: none;
  }
}
.p-parts_table_list .__title {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  line-height: 2;
}
@media (max-width: 767px) {
  .p-parts_table_list .__title {
    border-bottom: 1px solid #4c4948;
  }
}
.p-parts_table_list .__title.__long {
  letter-spacing: 0;
}
.p-parts_table_list .__detail {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2;
}

@media (max-width: 767px) {
  .p-parts_title {
    padding-inline: 2vw;
  }
}
.p-parts_title_upper {
  text-align: center;
  margin-bottom: 4rem;
}
.p-parts_title_upper.__row2 img {
  max-height: 5.2rem;
}
@media (max-width: 767px) {
  .p-parts_title_upper.__sp_row3 img {
    max-height: 19rem;
  }
}
.p-parts_title_lower {
  text-align: center;
  line-height: 1.6;
  font-weight: 500;
  font-size: 1.4rem;
}

.p-parts_border {
  border: 0;
  background: url(../images/line_dot.png) no-repeat center center/contain;
  height: 0.3rem;
}
@media (max-width: 767px) {
  .p-parts_border {
    background: url(../images/line_dot_b.png) no-repeat center center/contain;
    height: 1.6rem;
  }
}

.p-parts_timeline {
  width: 100%;
  margin-inline: auto;
  max-width: 75rem;
  background: #f7f8f8;
  padding: 3.2rem;
}
.p-parts_timeline_title {
  font-weight: 500;
  font-size: 2rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
}
@media (max-width: 767px) {
  .p-parts_timeline_title {
    font-weight: 500;
    font-size: 1.6rem;
  }
}
.p-parts_timeline_list {
  margin-top: 1.6rem;
  border-top: 1px dashed #333333;
}
.p-parts_timeline_item {
  border-bottom: 1px dashed #333333;
  padding: 1em 0.2em;
  display: grid;
  grid-template-columns: 3em auto;
  gap: 1em;
  color: #357a72;
  font-weight: 500;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
  line-height: 1.4;
}
.p-parts_timeline_item .__time {
  text-align: right;
}
@media (max-width: 1024px) {
  .p-parts_timeline_item {
    font-weight: 500;
    font-size: 1.4rem;
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
  }
}

@media (max-width: 767px) {
  .p-internship {
    overflow: hidden;
  }
  .p-internship_guideline {
    position: relative;
  }
  .p-internship_guideline:after {
    content: "";
    display: block;
    width: 35vw;
    height: 35vw;
    aspect-ratio: 1/1;
    background: url(../images/img_internship_guideline_onepoint.png) no-repeat center center/contain;
    position: absolute;
    top: 1.6rem;
    right: -10vw;
  }
}

.p-guideline {
  overflow: hidden;
}
.p-guideline_list {
  position: relative;
}
.p-guideline_list:after {
  content: "";
  display: block;
  width: 24rem;
  height: 24rem;
  aspect-ratio: 1/1;
  background: url(../images/img_guideline_onepoint.png) no-repeat center center/contain;
  position: absolute;
  top: -8rem;
  right: -8rem;
}
.p-guideline_list .__inner_list.__col2 {
  -moz-column-count: 2;
       column-count: 2;
}
@media (max-width: 767px) {
  .p-guideline_list .__inner_list.__col2 {
    -moz-column-count: 1;
         column-count: 1;
  }
}
@media (max-width: 767px) {
  .p-guideline_list {
    position: relative;
  }
  .p-guideline_list:after {
    width: 35vw;
    height: 35vw;
    top: -4rem;
    right: -4rem;
  }
}

.p-faq {
  overflow: hidden;
}
.p-faq_list {
  position: relative;
}
.p-faq_list:after {
  content: "";
  display: block;
  width: 24rem;
  height: 24rem;
  aspect-ratio: 1/1;
  background: url(../images/img_faq_onepoint.png) no-repeat center center/contain;
  position: absolute;
  top: -8rem;
  right: -8rem;
}
.p-faq_list .__inner_list.__col2 {
  -moz-column-count: 2;
       column-count: 2;
}
@media (max-width: 767px) {
  .p-faq_list .__inner_list.__col2 {
    -moz-column-count: 1;
         column-count: 1;
  }
}
@media (max-width: 767px) {
  .p-faq_list {
    position: relative;
  }
  .p-faq_list:after {
    width: 35vw;
    height: 35vw;
    top: -4rem;
    right: -4rem;
  }
}
.p-faq_group {
  padding: 2.4rem 0;
}
.p-faq_group_title {
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  margin-bottom: 2.4rem;
}
.p-faq_table_list {
  border-top: 2px solid #4c4948;
}
.p-faq_table_list .__group {
  border-bottom: 1px solid #4c4948;
  padding-inline: 0.5em 0;
}
.p-faq_table_list .__ques {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.6rem;
}
.p-faq_table_list .__ques .__icon {
  margin-right: 1.6rem;
  flex-shrink: 0;
}
.p-faq_table_list .__ques_inner {
  display: flex;
  gap: 0.4em;
  color: #4c4948;
  line-height: 1.6;
  font-weight: 700;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 1em 0;
  position: relative;
}
.p-faq_table_list .__ques_inner:before {
  content: "Q.";
  font-weight: 700;
  font-size: 1.4rem;
  width: 1.2em;
  text-align: center;
}
.p-faq_table_list .__ans {
  border-top: 1px dashed #727171;
  padding: 1em 0;
}
.p-faq_table_list .__ans_inner {
  display: flex;
  gap: 0.4em;
  color: #727171;
  line-height: 1.6;
  font-weight: 400;
  font-size: 1.4rem;
}
.p-faq_table_list .__ans_inner:before {
  content: "A.";
  font-weight: 700;
  font-size: 1.4rem;
  color: #e60012;
  width: 1.2em;
  text-align: center;
}
.p-faq_table_list .__ans_inner a {
  color: #4c4948;
}

.p-employee_index {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .p-employee_index {
    display: none;
  }
}

.p-top_container {
  overflow-x: hidden;
}

.p-top_main {
  background: url(../images/bg_top_icon.png) no-repeat center 70rem/95%, url(../images/bg_top.svg) no-repeat center 35rem/cover;
}
@media (max-width: 767px) {
  .p-top_main {
    padding-top: 3.2rem;
    background: url(../images/bg_top_sp.svg) no-repeat center 13rem/cover;
    padding-bottom: 1.6rem;
  }
}

.p-mv {
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.6rem;
  max-width: 121.6rem;
  text-align: center;
}
@media (min-width: 1025px) {
  .p-mv {
    margin-top: calc(7.2rem * 0.75);
    margin-bottom: calc(7.2rem * 0.75);
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-mv {
    margin-top: calc(5.6rem * 0.75);
    margin-bottom: calc(5.6rem * 0.75);
  }
}
@media (max-width: 767px) {
  .p-mv {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0.75);
  }
}
@media (max-width: 1024px) {
  .p-mv {
    padding-inline: 10vw;
  }
}
.p-mv_image {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.p-mv_movie {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
}
.p-mv_movie_btn {
  background: transparent;
}
@media (max-width: 767px) {
  .p-mv_movie_btn {
    width: 10vw;
  }
}

.p-top_catch {
  display: grid;
  gap: 3.2rem;
  position: relative;
}
@media (min-width: 1025px) {
  .p-top_catch {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-top_catch {
    margin-top: calc(5.6rem * 1);
    margin-bottom: calc(5.6rem * 1);
  }
}
@media (max-width: 767px) {
  .p-top_catch {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-top_catch:before {
  position: absolute;
  content: "";
  background: url(../images/img_top_bg_01.png) no-repeat center center/contain;
  width: 36.3rem;
  aspect-ratio: 363/263;
  top: 16rem;
  left: 0;
  transform: translateX(-45%);
}
.p-top_catch:after {
  position: absolute;
  content: "";
  background: url(../images/img_top_bg_02.png) no-repeat center center/contain;
  width: 36.3rem;
  aspect-ratio: 362/261;
  top: 0;
  right: 0;
  transform: translateX(45%);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-top_catch:before {
    width: 16rem;
  }
  .p-top_catch:after {
    width: 16rem;
  }
}
@media (max-width: 767px) {
  .p-top_catch:before {
    top: -3.2rem;
    width: 12rem;
  }
  .p-top_catch:after {
    width: 12rem;
  }
}
.p-top_catch_title {
  width: 100%;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .p-top_catch_title {
    max-width: 60vw;
  }
}
.p-top_catch_text {
  line-height: 1.6;
  text-align: center;
  color: #454545;
}
@media (max-width: 767px) {
  .p-top_catch_text {
    font-weight: "";
    font-size: 1.4rem;
  }
}

@media (min-width: 768px) {
  .p-top_oneday {
    padding-top: 16rem;
    overflow: hidden;
    padding-inline: 1.6rem;
  }
  .p-top_oneday_title {
    z-index: 2;
    position: relative;
    width: 40%;
    max-width: 43.5rem;
    transform: translate(60%, -30%);
  }
  .p-top_oneday_wrap {
    width: 100%;
    margin-inline: auto;
    max-width: 95rem;
  }
  .p-top_oneday_contents {
    margin-left: 4rem;
    z-index: 1;
    padding: 6.4rem 4rem 4rem;
    background: #fff;
    border-radius: 6.2rem;
    position: relative;
    max-height: 78rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 4fr 1fr 1fr 4fr;
    grid-template-areas: "cont2 cont1" "cont2 cont3" "cont4 cont3" "cont4 btn";
    gap: 2.4rem;
    justify-items: center;
    align-items: start;
  }
}
@media (min-width: 768px) and (max-width: 767px) {
  .p-top_oneday_contents {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "cont1" "cont2" "cont3" "cont4" " btn";
  }
}
@media (min-width: 768px) {
  .p-top_oneday_contents .__cont_main {
    position: absolute;
    top: -36rem;
    width: 130%;
  }
}
@media (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
  .p-top_oneday_contents .__cont_main {
    top: -28rem;
  }
}
@media (min-width: 768px) {
  .p-top_oneday_contents .__cont_main .__desc {
    position: relative;
    top: -2.4rem;
    margin-left: 3.2rem;
    display: flex;
    gap: 2.4rem;
    align-items: center;
  }
  .p-top_oneday_contents .__cont_main .__desc img.__text {
    max-height: 12.3rem;
  }
  .p-top_oneday_contents .__cont_main .__desc img.__icon {
    min-height: 12.3rem;
    max-height: 19.8rem;
  }
  .p-top_oneday_contents .__cont_in {
    position: relative;
    overflow: hidden;
    max-width: 34rem;
    width: 100%;
  }
  .p-top_oneday_contents .__cont_in .__image {
    position: absolute;
    top: 0;
    left: 0;
  }
  .p-top_oneday_contents .__cont_in .__desc {
    width: 31rem;
    padding: 16rem 4.8rem 2.4rem;
    margin-top: 4.8rem;
    margin-left: 2.4rem;
    background: #fffcd1;
    border-radius: 1.2rem;
  }
  .p-top_oneday_contents .__cont_in .__desc img {
    max-height: 9rem;
  }
  .p-top_oneday_contents .__btn {
    grid-area: btn;
    justify-self: end;
    align-self: end;
  }
  .p-top_oneday_contents .__btn img {
    width: 25.2rem;
    height: 5.6rem;
    aspect-ratio: 252/56;
  }
  .p-top_oneday_contents .__cont1 {
    grid-area: cont1;
  }
  .p-top_oneday_contents .__cont2 {
    grid-area: cont2;
  }
  .p-top_oneday_contents .__cont3 {
    grid-area: cont3;
  }
  .p-top_oneday_contents .__cont4 {
    grid-area: cont4;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-top_oneday {
    padding-top: 8rem;
  }
}
@media (max-width: 767px) {
  .p-top_oneday {
    padding-inline: 5vw;
    position: relative;
    padding-top: 2.4rem;
  }
}
@media (max-width: 767px) and (min-width: 1025px) {
  .p-top_oneday {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (max-width: 767px) and (min-width: 768px) and (max-width: 1024px) {
  .p-top_oneday {
    margin-top: calc(5.6rem * 1);
    margin-bottom: calc(5.6rem * 1);
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-top_oneday {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-top_oneday_title {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 5vw;
    width: 60%;
    max-width: 24rem;
  }
  .p-top_oneday_contents {
    background: #fff;
    padding: 10rem 1.6rem 4rem;
    border-radius: 3.2rem;
  }
  .p-top_oneday .__cont_main {
    margin-left: 5vw;
  }
  .p-top_oneday .__cont_main .__desc {
    display: flex;
    gap: 1.6rem;
    margin-top: 1.6rem;
  }
  .p-top_oneday .__cont_main .__desc .__icon {
    width: 10vw;
    position: relative;
    top: -4rem;
  }
  .p-top_oneday .__cont_main .__desc img.__text {
    max-height: 8.8rem;
  }
  .p-top_oneday .__cont_in {
    position: relative;
    padding-block: 1.6rem;
  }
  .p-top_oneday .__cont_in .__image {
    position: absolute;
    width: 51%;
    z-index: 2;
    top: 0rem;
  }
  .p-top_oneday .__cont_in .__desc {
    position: relative;
    width: 90%;
    background: #fffcd1;
    border-radius: 1.2rem;
    padding: 2.4rem;
    z-index: 1;
  }
  .p-top_oneday .__cont_in .__desc img {
    max-height: 5.4rem;
  }
  .p-top_oneday .__cont_in.__sp_cont_r .__image {
    left: 0;
  }
  .p-top_oneday .__cont_in.__sp_cont_r .__desc {
    margin-inline: auto 0;
    padding-left: 50%;
    text-align: right;
    padding-right: 1.6rem;
  }
  .p-top_oneday .__cont_in.__sp_cont_l .__image {
    right: 0;
  }
  .p-top_oneday .__cont_in.__sp_cont_l .__desc {
    padding-left: 1.6rem;
    padding-right: 50%;
    margin-inline: 0 auto;
  }
  .p-top_oneday .__btn {
    margin-block-start: 1.6rem;
  }
  .p-top_oneday .__btn a {
    display: block;
    margin-inline: auto;
  }
}
@media (min-width: 768px) {
  .p-top_internship {
    padding-inline: 1.6rem;
  }
}
@media (min-width: 768px) and (min-width: 1025px) {
  .p-top_internship {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
  .p-top_internship {
    margin-top: calc(5.6rem * 1);
    margin-bottom: calc(5.6rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 767px) {
  .p-top_internship {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (min-width: 768px) {
  .p-top_internship_title {
    z-index: 2;
    position: relative;
    width: 40%;
    max-width: 45.3rem;
    transform: translate(105%, 20%);
  }
  .p-top_internship_wrap {
    width: 100%;
    margin-inline: auto;
    max-width: 95rem;
  }
  .p-top_internship_contents {
    margin-right: 4rem;
    z-index: 1;
    padding: 8.8rem 4rem 4rem;
    background: #fff;
    border-radius: 6.2rem;
    position: relative;
    max-height: 40rem;
    height: 40rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-areas: ". cont1 cont1 cont1 cont2" ". . . btn btn";
  }
  .p-top_internship_contents .__cont_main {
    position: relative;
  }
  .p-top_internship_contents .__cont_main .__image {
    position: absolute;
    bottom: 4rem;
    left: -26rem;
  }
  .p-top_internship_contents .__cont_main .__desc {
    margin-inline: auto;
    background: #fffcd1;
    -webkit-clip-path: polygon(8% 0, 92% 6%, 100% 86%, 0 100%);
            clip-path: polygon(8% 0, 92% 6%, 100% 86%, 0 100%);
    width: 100%;
    max-width: 36.5rem;
    aspect-ratio: 365/226;
    position: relative;
    display: flex;
    gap: 2.4rem;
    align-items: center;
    justify-content: center;
  }
  .p-top_internship_contents .__cont_main .__desc img.__text {
    max-height: 12.3rem;
  }
  .p-top_internship_contents .__cont_main2 {
    position: absolute;
  }
}
@media (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
  .p-top_internship_contents .__cont_main2 {
    top: -28rem;
  }
}
@media (min-width: 768px) {
  .p-top_internship_contents .__cont_main2 .__desc {
    background: #fffcd1;
    -webkit-clip-path: polygon(8% 0, 92% 6%, 100% 86%, 0 100%);
            clip-path: polygon(8% 0, 92% 6%, 100% 86%, 0 100%);
    width: 36.5rem;
    aspect-ratio: 365/226;
    position: relative;
    display: flex;
    gap: 2.4rem;
    align-items: center;
    justify-content: center;
  }
  .p-top_internship_contents .__cont_main2 .__desc img.__text {
    max-height: 12.3rem;
  }
  .p-top_internship_contents .__cont_main2 .__desc img.__icon {
    min-height: 12.3rem;
    max-height: 19.8rem;
  }
  .p-top_internship_contents .__cont_in {
    position: relative;
    overflow: hidden;
    max-width: 34rem;
    width: 100%;
  }
  .p-top_internship_contents .__cont_in .__image {
    position: absolute;
    top: 0;
    left: 0;
  }
  .p-top_internship_contents .__cont_in .__desc {
    width: 31rem;
    padding: 16rem 4.8rem 2.4rem;
    margin-top: 4.8rem;
    margin-left: 2.4rem;
    background: #fffcd1;
    border-radius: 1.2rem;
  }
  .p-top_internship_contents .__cont_in .__desc img {
    max-height: 9rem;
  }
  .p-top_internship_contents .__btn {
    grid-area: btn;
    justify-self: end;
    align-self: end;
  }
  .p-top_internship_contents .__btn img {
    width: 25.2rem;
    height: 5.6rem;
    aspect-ratio: 252/56;
  }
  .p-top_internship_contents .__cont1 {
    grid-area: cont1;
  }
  .p-top_internship_contents .__cont2 {
    grid-area: cont2;
  }
  .p-top_internship_contents .__cont3 {
    grid-area: cont3;
  }
  .p-top_internship_contents .__cont4 {
    grid-area: cont4;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-top_internship {
    padding-top: 4rem;
  }
}
@media (max-width: 767px) {
  .p-top_internship {
    padding-inline: 5vw;
    position: relative;
    padding-top: 2.4rem;
  }
}
@media (max-width: 767px) and (min-width: 1025px) {
  .p-top_internship {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (max-width: 767px) and (min-width: 768px) and (max-width: 1024px) {
  .p-top_internship {
    margin-top: calc(5.6rem * 1);
    margin-bottom: calc(5.6rem * 1);
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-top_internship {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-top_internship_title {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 5vw;
    width: 60%;
    max-width: 24rem;
  }
  .p-top_internship_contents {
    background: #fff;
    padding: 9rem 1.6rem 4rem;
    border-radius: 3.2rem;
    position: relative;
  }
  .p-top_internship .__cont_main {
    margin-left: 5vw;
  }
  .p-top_internship .__cont_main .__image {
    text-align: right;
    position: relative;
    right: -0.8rem;
  }
  .p-top_internship .__cont_main .__image img {
    width: 70%;
  }
  .p-top_internship .__cont_main .__desc {
    display: flex;
    gap: 1.6rem;
    margin-top: 1.6rem;
  }
  .p-top_internship .__cont_main .__desc img.__text {
    max-height: 8.8rem;
  }
  .p-top_internship .__cont2 {
    position: absolute;
    top: 20rem;
    left: 3.2rem;
  }
  .p-top_internship .__cont2 img {
    width: 20vw;
  }
  .p-top_internship .__btn {
    margin-block-start: 2.4rem;
  }
  .p-top_internship .__btn a {
    display: block;
    margin-inline: auto;
  }
}
.p-top_guideline {
  padding: 10rem 15rem 8rem 6.4rem;
  background: url(../images/bg_top_guideline_pc.png) no-repeat center center/90%, url(../images/bg_top_guideline.svg) no-repeat 6rem center/80%;
}
@media (max-width: 767px) {
  .p-top_guideline {
    background: #f4b3c2;
    border-radius: 3.2rem;
    margin-inline: 5vw;
    position: relative;
    padding: 0;
  }
}
@media (max-width: 767px) and (min-width: 1025px) {
  .p-top_guideline {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (max-width: 767px) and (min-width: 768px) and (max-width: 1024px) {
  .p-top_guideline {
    margin-top: calc(5.6rem * 1);
    margin-bottom: calc(5.6rem * 1);
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-top_guideline {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-top_guideline {
    padding: 2.4rem 15rem 1.6rem 6.4rem;
  }
}
.p-top_guideline_title {
  width: 100%;
  max-width: 41rem;
}
.p-top_guideline_title img {
  height: 3.6rem;
  width: 100%;
  aspect-ratio: 406/36;
}
@media (max-width: 767px) {
  .p-top_guideline_title img {
    height: 2rem;
  }
}
.p-top_guideline_inner {
  height: 55rem;
  padding: 8rem 15rem 12rem 6.4rem;
  display: flex;
  gap: 2.4rem;
  flex-direction: column;
  justify-content: center;
  margin-left: 16%;
  z-index: 1;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-top_guideline_inner {
    height: 46rem;
  }
}
.p-top_guideline_inner .__text {
  color: #454545;
  line-height: 1.6;
  width: 100%;
  max-width: 41rem;
}
.p-top_guideline_inner .__btn {
  width: 100%;
  max-width: 41rem;
  align-items: center;
}
@media (max-width: 767px) {
  .p-top_guideline_inner {
    padding: 6.4rem 3.2rem 4rem;
    margin-inline: auto;
    height: auto;
    gap: 1.6rem;
  }
  .p-top_guideline_inner:before {
    content: "";
    position: absolute;
    top: -2.4rem;
    left: 50%;
    transform: translateX(-50%);
    width: 110%;
    aspect-ratio: 917/780;
    background: url(../images/bg_top_guideline_sp.png) no-repeat top center/110%;
  }
  .p-top_guideline_inner .__text {
    text-align: center;
    line-height: 1.6;
    font-weight: 400;
    font-size: 1.4rem;
    width: 100%;
    max-width: 41rem;
    margin-bottom: 14rem;
  }
  .p-top_guideline_inner .__btn {
    justify-content: center;
    display: flex;
  }
}

.p-top_faq {
  width: 80%;
  max-width: 78rem;
  max-height: 47rem;
  aspect-ratio: 78/47;
  background: url(../images/bg_top_faq_pc.png) no-repeat center center/contain;
  display: grid;
  place-content: center;
  margin-inline: auto 6.4rem;
}
@media (max-width: 767px) {
  .p-top_faq {
    background: #fffabc;
    background: #fffabc url(../images/bg_top_faq_sp.png) no-repeat left 0.4rem/98%;
    border-radius: 3.2rem;
    margin-inline: 5vw;
    width: auto;
    padding-block: 3.2rem;
  }
}
@media (max-width: 767px) and (min-width: 1025px) {
  .p-top_faq {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (max-width: 767px) and (min-width: 768px) and (max-width: 1024px) {
  .p-top_faq {
    margin-top: calc(5.6rem * 1);
    margin-bottom: calc(5.6rem * 1);
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-top_faq {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-top_faq_title {
  width: 100%;
  max-width: 41rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.p-top_faq_title img {
  height: 7.5rem;
  aspect-ratio: 185/75;
}
@media (max-width: 767px) {
  .p-top_faq_title img {
    height: 4.8rem;
  }
}
.p-top_faq_inner {
  display: grid;
  gap: 2.4rem;
  width: 40rem;
  margin-top: 3.2rem;
}
.p-top_faq_inner .__text {
  color: #454545;
  line-height: 1.6;
  margin-left: 6.4rem;
}
.p-top_faq_inner .__btn {
  width: 100%;
  max-width: 41rem;
  align-items: center;
  margin-left: 6.4rem;
}
@media (max-width: 767px) {
  .p-top_faq_inner {
    margin-top: auto;
  }
  .p-top_faq_inner .__text {
    text-align: center;
    margin-left: 0;
    font-weight: 400;
    font-size: 1.4rem;
  }
  .p-top_faq_inner .__btn {
    margin-left: 0;
  }
  .p-top_faq_inner .__btn a {
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.p-top_work {
  background: url(../images/bg_top_work_pc.png) no-repeat center center/contain;
  aspect-ratio: 933/623;
  width: 80%;
  max-width: 93.3rem;
  padding-bottom: 4rem;
  display: flex;
  align-items: end;
  margin-left: 8rem;
  position: relative;
}
@media (min-width: 1025px) {
  .p-top_work {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-top_work {
    margin-top: calc(5.6rem * 1);
    margin-bottom: calc(5.6rem * 1);
  }
}
@media (max-width: 767px) {
  .p-top_work {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-top_work:after {
  position: absolute;
  content: "";
  background: url(../images/img_top_bg_03.png) no-repeat center center/contain;
  width: 36.3rem;
  aspect-ratio: 363/263;
  top: -16rem;
  left: 0;
  transform: translateX(-40%);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-top_work:after {
    top: -4rem;
    width: 16rem;
    left: 0;
    transform: translateX(-60%);
  }
}
@media (max-width: 767px) {
  .p-top_work {
    margin-inline: auto;
    position: relative;
    padding-bottom: 0;
    background: none;
  }
}
@media (max-width: 767px) and (min-width: 1025px) {
  .p-top_work {
    margin-top: calc(7.2rem * 3);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (max-width: 767px) and (min-width: 768px) and (max-width: 1024px) {
  .p-top_work {
    margin-top: calc(5.6rem * 3);
    margin-bottom: calc(5.6rem * 1);
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-top_work {
    margin-top: calc(4rem * 3);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-top_work:before {
    content: "";
    background: url(../images/bg_top_works_sp_img.png) no-repeat 9vw top/104%;
    width: 125%;
    position: absolute;
    top: -7rem;
    left: 50%;
    transform: translateX(-50%);
    aspect-ratio: 1002/750;
  }
  .p-top_work:after {
    width: 14rem;
    top: -6rem;
  }
}
.p-top_work_title {
  margin-bottom: 0.8rem;
}
.p-top_work_title img {
  height: 2.3rem;
}
@media (max-width: 767px) {
  .p-top_work_title {
    text-align: center;
  }
  .p-top_work_title img {
    height: 4.8rem;
  }
}
.p-top_work_inner {
  margin-left: 12rem;
}
.p-top_work_inner .__text {
  color: #454545;
  line-height: 1.6;
  width: 100%;
  margin-bottom: 2.4rem;
}
.p-top_work_inner .__btn {
  display: flex;
  gap: 1.6rem;
}
@media (max-width: 767px) {
  .p-top_work_inner {
    background: url(../images/bg_top_works_sp.png) no-repeat center left/110%;
    aspect-ratio: 835/1097;
    width: 100%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 3.2rem;
  }
  .p-top_work_inner .__text {
    text-align: center;
    font-weight: 400;
    font-size: 1.4rem;
  }
  .p-top_work_inner .__btn {
    flex-direction: column;
  }
}

.p-top_message {
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.6rem;
  max-width: 96.6rem;
  padding-left: 6rem;
}
@media (max-width: 767px) {
  .p-top_message {
    padding-left: 5vw;
    padding-block: 5vw;
  }
}
.p-top_message_title {
  margin-bottom: 2.4rem;
}
.p-top_message_title img {
  height: 4.8rem;
}
@media (max-width: 767px) {
  .p-top_message_title img {
    height: 3.2rem;
  }
}
.p-top_message_inner {
  background: #fffcdb;
  border-radius: 6.4rem;
  padding: 4.8rem;
  text-align: center;
  position: relative;
}
.p-top_message_inner:after {
  content: "";
  background: url(../images/icon_top_message.svg) no-repeat center center/contain;
  position: absolute;
  bottom: 0.8rem;
  right: 1.6rem;
  aspect-ratio: 115/196;
  max-width: 9rem;
  width: 13%;
}
@media (max-width: 767px) {
  .p-top_message_inner {
    padding: 4.8rem 2.4rem;
    border-radius: 3.2rem;
  }
  .p-top_message_inner:after {
    bottom: auto;
    top: 0.8rem;
    right: 1.6rem;
  }
}
.p-top_message_inner .__image {
  margin-bottom: 3.2rem;
}
.p-top_message_inner .__text {
  text-align: center;
  line-height: 1.6;
  color: #454545;
  font-weight: 400;
  font-size: 1.4rem;
}

.p-mynavi {
  margin-block: 6.4rem 3.2rem;
}
.p-mynavi_inner {
  width: 100%;
  margin-inline: auto;
  max-width: 67rem;
  background: #ff7bac;
  padding: 2.4rem;
}
.p-mynavi_title {
  padding-inline: 2.4rem;
}
.p-mynavi_content {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  padding-top: 2.4rem;
  padding-inline: 5.6rem;
}
.p-mynavi_content a {
  display: block;
  width: 100%;
  max-width: 30rem;
}

.p-external_link {
  display: flex;
  gap: 1.6rem;
}

@media (max-width: 767px) {
  .p-external_link {
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-external_link {
    gap: 0.8rem;
  }
}
.p-external_link a {
  display: block;
  width: 24rem;
  text-align: center;
  color: #fff;
  line-height: 1.4;
  font-weight: 700;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
  padding-block: 0.2em 0.4em;
  padding-inline: 1em;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .p-external_link a {
    font-weight: 700;
    font-size: 1rem;
    width: 15.6rem;
    padding-inline: 0.4em;
  }
}
.p-external_link_tanakagumi {
  background: #135776;
}

.p-external_link_dx {
  background: #da8678;
}

.page-top .p-header {
  background: #fff !important;
}

.p-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: url(../images/bg_wave.svg) no-repeat center -10rem/363rem;
}
@media (max-width: 767px) {
  .p-header {
    background: url(../images/bg_wave_sp2.svg) no-repeat center top/100%;
  }
}
.p-header_root {
  color: #fff;
  font-weight: 700;
  font-size: 2.4rem;
  display: block;
}
@media (max-width: 767px) {
  .p-header_root {
    font-weight: 700;
    font-size: 1.8rem;
  }
}
.p-header_title {
  width: 100%;
  background: url(../images/bg_subcontents.svg) no-repeat center 5rem/150rem, url(../images/bg_wave.svg) no-repeat bottom center/363rem;
  overflow: hidden;
  min-height: 40rem;
}
.p-header_title .__image {
  width: clamp(20rem, 70%, 58rem);
  margin-left: auto;
  margin-right: auto;
  margin-top: 10rem;
}
@media (max-width: 767px) {
  .p-header_title {
    display: flex;
    align-items: end;
    padding-bottom: 1rem;
    background: url(../images/bg_wave_sp.svg) no-repeat bottom center/100%;
    min-height: 16rem;
    aspect-ratio: 375/160;
  }
  .p-header_title .__image {
    margin-block: auto 3.2rem;
  }
}
.p-header_inner {
  padding-block: 0.8rem;
  display: flex;
  gap: 1.6rem;
  justify-content: space-between;
  align-items: center;
}
.p-header_logo {
  font-weight: 500;
  color: #fff;
  z-index: 11;
}
.p-header_logo .__logo {
  width: 100%;
  aspect-ratio: 186/26;
  height: 5vh;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-header_logo .__logo.__with_ext {
    height: 3vh;
  }
}
.p-header_nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3.2rem;
}
@media (max-width: 767px) {
  .p-header_nav {
    background: #6fc9f3;
    height: 100vh;
    height: 100dvh;
    position: fixed;
    width: 100%;
    justify-content: center;
    flex-direction: column;
    top: 4.6rem;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s;
    visibility: hidden;
  }
  .p-header_nav.is-open {
    display: flex;
    opacity: 1;
    z-index: 10;
    visibility: visible;
  }
}
@media (max-width: 767px) and (min-width: 768px) and (max-width: 1024px) {
  .p-header_nav.__with_ext {
    gap: 0.8rem;
  }
}
.p-header_nav_list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  -moz-column-gap: 1.6rem;
       column-gap: 1.6rem;
  row-gap: 0.8rem;
  padding-top: 0.8rem;
}
@media (max-width: 767px) {
  .p-header_nav_list {
    display: block;
    -moz-column-count: 2;
         column-count: 2;
    justify-content: center;
    flex-direction: column;
  }
  .p-header_nav_list .__item {
    padding: 0.5em;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-header_nav_list.__with_ext {
    -moz-column-gap: 0.8rem;
         column-gap: 0.8rem;
  }
}
.p-header_nav_list .__item {
  position: relative;
}
.p-header_nav_list .__item a {
  font-weight: 400;
  font-size: 1.4rem;
  display: block;
  color: #fff;
}
.p-header_nav_list .__item a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.p-header_nav_external {
  flex-shrink: 0;
}
.p-header .__mynavi_logo {
  width: 12rem;
}
@media (max-width: 767px) {
  .p-header .__mynavi_logo {
    width: 4dvh;
  }
}
@media (max-width: 767px) {
  .p-header .__sns_logo {
    width: 3.2rem;
  }
}
.p-header .__sakura_logo {
  width: 5rem;
  display: grid;
  place-content: center;
  width: 5rem;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .p-header .__sakura_logo {
    width: 4rem;
  }
}

.p-header_index .p-header_nav_list a {
  color: #000;
}

.p-footer {
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.6rem;
  max-width: 100%1.6rem;
  z-index: 95;
}
.p-footer_inner {
  width: 100%;
  margin-inline: auto;
  max-width: 120rem;
}
@media (max-width: 767px) {
  .p-footer_inner {
    padding: 2.4rem 5vw;
  }
}
.p-footer_logo {
  width: clamp(20rem, 50%, 25rem);
}
.p-footer_upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #4c4948;
  padding: 0.8rem 0.4rem;
}
@media (max-width: 767px) {
  .p-footer_upper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.6rem;
  }
}
.p-footer_lower {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0.4rem;
  gap: 1.6rem;
}
@media (max-width: 767px) {
  .p-footer_lower {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.p-footer .__recruit {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding-inline: 2em 0;
}
@media (max-width: 767px) {
  .p-footer .__recruit {
    flex-wrap: wrap;
    justify-content: left;
    padding: 1.6rem;
  }
}
.p-footer .__info {
  border: 1px solid #4c4948;
  padding: 0.5em 1em;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  flex-shrink: 0;
}
.p-footer .__footer_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem 1em;
  align-items: center;
}
.p-footer .__footer_nav a {
  font-weight: 400;
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .p-footer .__footer_nav {
    justify-content: left;
    padding: 0.8rem;
    gap: 1em;
  }
}
.p-footer .__footer_sns {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .p-footer .__footer_sns {
    flex-wrap: nowrap;
    gap: 0.5em;
  }
}
.p-footer .__mynavi_logo {
  width: 12rem;
}
@media (max-width: 767px) {
  .p-footer .__mynavi_logo {
    width: 8rem;
  }
}
@media (max-width: 767px) {
  .p-footer .__sns_logo {
    width: 3.2rem;
  }
}

.p-sp_side {
  display: none;
}
@media (max-width: 767px) {
  .p-sp_side {
    display: block;
  }
  .p-sp_side .p-side {
    display: block;
  }
  .p-sp_side .p-side_inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    max-width: none;
    width: 80vw;
    background: #fff;
    padding: 1.6rem;
  }
  .p-sp_side .p-side_title {
    font-size: 1.6rem;
  }
  .p-sp_side .p-side_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
  }
  .p-sp_side .p-side_list .__item {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-sp_side .p-side_list .__icon {
    display: none;
  }
  .p-sp_side .p-side_list2 {
    width: -moz-fit-content;
    width: fit-content;
  }
  .p-sp_side .p-side_external {
    display: flex;
    justify-content: center;
    width: -moz-fit-content;
    width: fit-content;
  }
  .p-sp_side .p-side_external .__mynavi_logo {
    width: 9rem;
  }
}

@media (max-width: 767px) {
  .p-side {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-side {
    height: 100vh;
    position: sticky;
    top: 10rem;
    left: 0;
  }
}
.p-side_inner {
  display: grid;
  gap: 1.6rem;
  max-width: 20rem;
  margin-inline: auto;
}
.p-side_title {
  background: #6fc9f3;
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0.4em;
  border-radius: 2em;
  padding: 0.8rem;
}
.p-side_list .__item {
  display: grid;
  grid-template-columns: 4.2rem auto;
  gap: 1.6rem;
  align-items: center;
}
.p-side_list .__item a img {
  height: 1.5rem;
}
.p-side_list2 {
  display: flex;
  gap: 1.6rem;
}
.p-side_external {
  display: grid;
  gap: 1.6rem;
}
.p-side_external .__mynavi_logo {
  width: 8rem;
}

.p-pagetop {
  position: fixed;
  right: 10px;
  z-index: 90;
  opacity: 0;
  transform: translateY(100px);
}
.p-pagetop > span {
  display: grid;
  place-content: center;
  text-align: center;
  align-items: center;
  width: 4.5rem;
  height: 4.5rem;
  transition: all 0.3s;
  cursor: pointer;
  background: #9fd9f6;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
.p-pagetop > span:hover {
  opacity: 0.7;
}
.p-pagetop.upMove {
  animation: UpAnime 0.5s forwards;
}
.p-pagetop.downMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
.u-hidden {
  overflow: hidden;
}

body.is-open {
  position: fixed;
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
}

.c-hamburger {
  display: none;
  position: relative;
  width: 3rem;
  height: 2rem;
  cursor: pointer;
  background: transparent;
  transition: transform 0.3s;
}
@media (max-width: 767px) {
  .c-hamburger {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    z-index: 11;
    width: -moz-fit-content;
    width: fit-content;
  }
  .c-hamburger .__hum {
    height: -moz-fit-content;
    height: fit-content;
  }
  .c-hamburger .__menu {
    width: 100%;
    display: flex;
    place-content: center;
  }
  .c-hamburger .__menu img {
    aspect-ratio: 46/10;
    height: 1rem;
  }
}

.c-hamburger__top,
.c-hamburger__center,
.c-hamburger__bottom {
  position: relative;
  display: block;
  width: 30px;
  height: 1px;
  margin-right: auto;
  margin-left: auto;
  transition: all 0.3s;
  border-radius: 5px;
  background-color: #fff;
}

.page-top .c-hamburger__top,
.page-top .c-hamburger__center,
.page-top .c-hamburger__bottom {
  background-color: #727171;
}

.c-hamburger__top {
  top: 0;
}

.c-hamburger__center {
  margin-top: 3px;
  margin-bottom: 3px;
}

.c-hamburger__bottom {
  top: 0;
}

.c-hamburger.is-open .c-hamburger__top {
  top: 4px;
  width: 20px;
  transform: rotate(-45deg);
  background-color: #fff;
}

.c-hamburger.is-open .c-hamburger__center {
  opacity: 0;
}

.c-hamburger.is-open .c-hamburger__bottom {
  top: -4px;
  width: 20px;
  transform: rotate(45deg);
  background-color: #fff;
}

.p-subcontents {
  border-left: 1px solid #6fc9f3;
  padding-block: 1.6rem;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .p-subcontents {
    border-left: none;
    padding-inline: 5vw;
    overflow: hidden;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-subcontents {
    border-left: 1px solid #6fc9f3;
    padding-inline: 5vw;
    overflow: hidden;
  }
}
.p-subcontents_inner {
  display: grid;
  gap: 6.4rem;
}
@media (max-width: 767px) {
  .p-subcontents_inner {
    gap: 4rem;
  }
}
.p-subcontents_external .p-mynavi {
  margin-block: 0;
}

@media (min-width: 1025px) {
  .h-pc_hide,
  .h-pc_tab_hide {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .h-tab_hide,
  .h-pc_tab_hide,
  .h-sp_tab_hide {
    display: none;
  }
}
@media (max-width: 767px) {
  .h-sp_hide,
  .h-sp_tab_hide {
    display: none;
  }
}
.h-hide {
  display: none;
}

.h-disabled {
  pointer-events: none;
}

.hp_mb0 {
  margin-bottom: 0rem !important;
}
@media (max-width: 767px) {
  .hp_mb0 {
    margin-bottom: 0rem !important;
  }
}

.hp_pb0 {
  padding-bottom: 0rem !important;
}
@media (max-width: 767px) {
  .hp_pb0 {
    padding-bottom: 0rem !important;
  }
}

.hp_mb10 {
  margin-bottom: 1.6rem !important;
}
@media (max-width: 767px) {
  .hp_mb10 {
    margin-bottom: 0.8rem !important;
  }
}

.hp_pb10 {
  padding-bottom: 1.6rem !important;
}
@media (max-width: 767px) {
  .hp_pb10 {
    padding-bottom: 0.8rem !important;
  }
}

.hp_mb20 {
  margin-bottom: 3.2rem !important;
}
@media (max-width: 767px) {
  .hp_mb20 {
    margin-bottom: 1.6rem !important;
  }
}

.hp_pb20 {
  padding-bottom: 3.2rem !important;
}
@media (max-width: 767px) {
  .hp_pb20 {
    padding-bottom: 1.6rem !important;
  }
}

.hp_mb30 {
  margin-bottom: 4.8rem !important;
}
@media (max-width: 767px) {
  .hp_mb30 {
    margin-bottom: 2.4rem !important;
  }
}

.hp_pb30 {
  padding-bottom: 4.8rem !important;
}
@media (max-width: 767px) {
  .hp_pb30 {
    padding-bottom: 2.4rem !important;
  }
}

.hp_mb40 {
  margin-bottom: 6.4rem !important;
}
@media (max-width: 767px) {
  .hp_mb40 {
    margin-bottom: 3.2rem !important;
  }
}

.hp_pb40 {
  padding-bottom: 6.4rem !important;
}
@media (max-width: 767px) {
  .hp_pb40 {
    padding-bottom: 3.2rem !important;
  }
}

.hp_mb50 {
  margin-bottom: 8rem !important;
}
@media (max-width: 767px) {
  .hp_mb50 {
    margin-bottom: 4rem !important;
  }
}

.hp_pb50 {
  padding-bottom: 8rem !important;
}
@media (max-width: 767px) {
  .hp_pb50 {
    padding-bottom: 4rem !important;
  }
}

.hp_mb60 {
  margin-bottom: 9.6rem !important;
}
@media (max-width: 767px) {
  .hp_mb60 {
    margin-bottom: 4.8rem !important;
  }
}

.hp_pb60 {
  padding-bottom: 9.6rem !important;
}
@media (max-width: 767px) {
  .hp_pb60 {
    padding-bottom: 4.8rem !important;
  }
}

.hp_mb70 {
  margin-bottom: 11.2rem !important;
}
@media (max-width: 767px) {
  .hp_mb70 {
    margin-bottom: 5.6rem !important;
  }
}

.hp_pb70 {
  padding-bottom: 11.2rem !important;
}
@media (max-width: 767px) {
  .hp_pb70 {
    padding-bottom: 5.6rem !important;
  }
}

.hp_mb80 {
  margin-bottom: 12.8rem !important;
}
@media (max-width: 767px) {
  .hp_mb80 {
    margin-bottom: 6.4rem !important;
  }
}

.hp_pb80 {
  padding-bottom: 12.8rem !important;
}
@media (max-width: 767px) {
  .hp_pb80 {
    padding-bottom: 6.4rem !important;
  }
}

.hp_mb90 {
  margin-bottom: 14.4rem !important;
}
@media (max-width: 767px) {
  .hp_mb90 {
    margin-bottom: 7.2rem !important;
  }
}

.hp_pb90 {
  padding-bottom: 14.4rem !important;
}
@media (max-width: 767px) {
  .hp_pb90 {
    padding-bottom: 7.2rem !important;
  }
}

.hp_mb100 {
  margin-bottom: 16rem !important;
}
@media (max-width: 767px) {
  .hp_mb100 {
    margin-bottom: 8rem !important;
  }
}

.hp_pb100 {
  padding-bottom: 16rem !important;
}
@media (max-width: 767px) {
  .hp_pb100 {
    padding-bottom: 8rem !important;
  }
}

.hp_mt0 {
  margin-top: 0rem !important;
}

.hp_mt10 {
  margin-top: 1.6rem !important;
}

.hp_mt20 {
  margin-top: 3.2rem !important;
}

.hp_mt30 {
  margin-top: 4.8rem !important;
}

.hp_mt40 {
  margin-top: 6.4rem !important;
}

.hp_mt50 {
  margin-top: 8rem !important;
}

.hp_mt60 {
  margin-top: 9.6rem !important;
}

.hp_mt70 {
  margin-top: 11.2rem !important;
}

.hp_mt80 {
  margin-top: 12.8rem !important;
}

.hp_mt90 {
  margin-top: 14.4rem !important;
}

.hp_mt100 {
  margin-top: 16rem !important;
}

.hp_bold {
  font-weight: 700;
}

.hp_white {
  color: #fff;
}

.hp_black {
  color: #000;
}

.hp_tac {
  text-align: center;
}

@media (max-width: 767px) {
  .hp_sp_tal {
    text-align: left;
  }
}

.hp_tal {
  text-align: left;
}

@media (max-width: 767px) {
  .hp_sp_padding {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}

.hp_bg_white {
  background: #fff;
}
.hp_bg_white .__note {
  color: #000;
}

.hp_bg_radius {
  border-radius: 1.4rem;
}

.hp_contents_padding {
  padding: 2.4rem;
}

.hp_image_org_width img {
  width: auto !important;
}

.hp_fontL {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .hp_fontL {
    font-size: 1.8rem;
  }
}

.hp_fontS {
  font-size: 80%;
}

.hp_notice {
  font-size: 80%;
}

.h-link_underline {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.h-fadein {
  opacity: 0;
  transition: 2s;
  transform: translate3d(0, 50px, 0);
}

.h-fadein.__visibled {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}