@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
:root {
  --base: #000;
  --blue1: #0B7ACC;
  --blue2: #F4F7FB;
  --blue3: #00275A;
  --blue4: #F1F9FF;
  --gray1: #F5F5F5;
  --red1: #CE0026;
  color-scheme: light;
}

/*-- リセット --*/
h1,
h2,
h3,
h4,
h5,
p,
b,
dt,
dd,
li,
span,
a,
strong {
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  min-height: 0%;
  vertical-align: top;
}

figure {
  width: 100%;
  min-height: 0%;
  line-height: 0;
  margin: 0 auto;
  padding: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  backface-visibility: hidden;
  transition: 0.3s;
}
a img {
  display: inline-block;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

html {
  font-size: 62.5%;
}
@media only screen and (max-width: 1400px) {
  html {
    font-size: 0.7142857143vw;
  }
}
@media only screen and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #FFF;
  position: relative;
  font-feature-settings: "palt";
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  color: var(--base);
}
@media only screen and (max-width: 768px) {
  body {
    min-width: initial;
    overflow: hidden;
    overflow-y: scroll;
  }
}

input[type=text],
input[type=email],
input[type=tel],
textarea,
button,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: 0;
  border-radius: 0;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
}

label {
  cursor: pointer;
}

img {
  vertical-align: middle;
}

a:hover {
  text-decoration: none;
}

.l-main {
  display: block;
}

.pc {
  display: block;
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.tab {
  display: none;
}
@media only screen and (max-width: 1400px) {
  .tab {
    display: block;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.inline-pc {
  display: inline;
}
@media only screen and (max-width: 768px) {
  .inline-pc {
    display: none;
  }
}

.inline-sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .inline-sp {
    display: inline;
  }
}

.no-link {
  pointer-events: none;
}

.page-links {
  scroll-margin-top: 9rem;
}
@media only screen and (max-width: 768px) {
  .page-links {
    scroll-margin-top: 6.4rem;
  }
}

.l-header {
  width: 100%;
  height: 50.3571428571vw;
  position: relative;
  background: url(../img/mv.webp) 50% 50%/cover no-repeat;
}
@media only screen and (max-width: 768px) {
  .l-header {
    height: 67.6rem;
    background-image: url(../img/mv-sp.webp);
  }
}
.l-header__logo {
  width: 18.2rem;
  position: absolute;
  top: 2.4rem;
  left: 2.4rem;
}
@media only screen and (max-width: 768px) {
  .l-header__logo {
    width: 13.2rem;
    top: 2rem;
    left: 2rem;
  }
}
.l-header__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 0 1.5rem;
  box-sizing: border-box;
}
.l-header__copy {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding-right: 21.3rem;
  position: relative;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-align: left;
  font-size: 11.6rem;
  font-weight: 600;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .l-header__copy {
    padding-right: 0;
    z-index: 1;
    font-size: 4.6rem;
  }
}
.l-header__copy_sub {
  font-size: 3.5rem;
}
@media only screen and (max-width: 768px) {
  .l-header__copy_sub {
    font-size: 2.3rem;
  }
}
.l-header__copy_free {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 18.5rem;
  aspect-ratio: 1/1;
  padding-bottom: 0.5rem;
  box-sizing: border-box;
  border-radius: 100%;
  background: var(--red1);
  position: absolute;
  right: 0;
  bottom: -4.5rem;
  overflow: hidden;
  line-height: 1.2040816327;
  letter-spacing: 0.05em;
  font-size: 4.9rem;
}
@media only screen and (max-width: 768px) {
  .l-header__copy_free {
    width: 8.7rem;
    top: -1.7rem;
    z-index: -1;
    font-size: 2.2rem;
  }
}

.l-footer {
  padding: 4.8rem 0 4.9rem;
  background: var(--blue3);
}
@media only screen and (max-width: 768px) {
  .l-footer {
    padding: 4.8rem 0;
  }
}
.l-footer__container {
  max-width: 96rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 4rem;
  box-sizing: border-box;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .l-footer__container {
    padding: 0 2.8rem;
  }
}
.l-footer__archives {
  text-align: left;
}
.l-footer__archives_title {
  margin: 0 0 2.7rem;
  line-height: 1.619047619;
  letter-spacing: 0.03em;
  font-size: 2.1rem;
  font-weight: 700;
  color: #FFF;
}
.l-footer__archives_list {
  display: flex;
  gap: 2.5rem;
  line-height: 1.4;
  letter-spacing: 0.03em;
  font-size: 1.6rem;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .l-footer__archives_list {
    display: grid;
    grid-template-columns: 33.3% 33.3%;
    gap: 1.2rem 1.8rem;
  }
}
.l-footer__archives_list li {
  padding-left: 3.2rem;
  position: relative;
}
.l-footer__archives_list li::before {
  content: "";
  width: 2rem;
  aspect-ratio: 1/1;
  background: url(../img/arrow-01-white.svg) 50% 50%/100% no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.l-footer__archives_list li a {
  color: #FFF;
}
.l-footer__award {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4.8rem 0 0;
  padding: 0.8rem 1.2rem 0.8rem 4.4rem;
  border-radius: 0.5rem;
  box-sizing: border-box;
  background: #FFF;
  position: relative;
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 1.6rem;
  color: var(--blue3);
}
@media only screen and (max-width: 768px) {
  .l-footer__award {
    margin: 4.8rem auto 0;
  }
}
.l-footer__award::before {
  content: "";
  width: 2rem;
  aspect-ratio: 1/1;
  background: url(../img/arrow-01-blue.svg) 50% 50%/100% no-repeat;
  position: absolute;
  top: 50%;
  left: 1.2rem;
  transform: translateY(-50%);
}
.l-footer__award span {
  text-decoration: underline;
}
.l-footer__award:hover span {
  text-decoration: none;
}
.l-footer__top {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  right: 0;
  bottom: 0;
  line-height: 1.4;
  letter-spacing: 0.03em;
  font-size: 1.6rem;
  font-weight: 400;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .l-footer__top {
    margin: 1.2rem 0 0 auto;
    position: static;
  }
}

.l-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 4rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .l-container {
    padding: 0 2.75rem;
  }
}
.l-container--ptn1 {
  max-width: 96rem;
}

.l-section--ptn1 {
  padding: 7.4rem 0 8rem;
}
@media only screen and (max-width: 768px) {
  .l-section--ptn1 {
    padding: 3.2rem 0 8.1rem;
  }
}

.c-btn {
  text-decoration: none;
  cursor: pointer;
}
.c-btn--ptn1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 7.2rem;
  border-radius: 100px;
  box-sizing: border-box;
  background: var(--blue1);
  position: relative;
  line-height: 1.6666666667;
  letter-spacing: 0.03em;
  font-size: 1.8rem;
  font-weight: 400;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .c-btn--ptn1 {
    width: 26rem;
    margin: 0 auto;
  }
}
.c-btn--ptn1::after {
  content: "";
  width: 1rem;
  aspect-ratio: 1/1;
  border-width: 0.2rem 0.2rem 0 0;
  border-style: solid;
  border-color: #FFF;
  position: absolute;
  top: 50%;
  right: 2.05rem;
  transform: translateY(-50%) rotate(45deg);
}
.c-btn--ptn1-typ2 {
  width: 30rem;
  margin: 0 auto 2em;
}
@media only screen and (max-width: 768px) {
  .c-btn--ptn1-typ2 {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .c-btn--ptn1[target=_blank] {
    width: 26rem;
  }
}
.c-btn--ptn1[target=_blank]::after {
  width: 1.429rem;
  height: 1.525rem;
  border: 0;
  background: url(../img/icon_blank.svg) 50% 50%/100% no-repeat;
  right: 3.27rem;
  transform: translateY(-50%) rotate(0);
}

.p-info {
  position: relative;
  overflow: hidden;
}
.p-info::before {
  content: "";
  width: 135.031rem;
  height: 13.148rem;
  background: url(../img/mv-decoration.webp) 50% 50%/100% no-repeat;
  position: absolute;
  top: -0.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .p-info::before {
    width: 47.94rem;
    height: 4.668rem;
    top: 0;
  }
}
.p-info__block {
  display: flex;
  align-items: flex-start;
  gap: 3.2rem;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .p-info__block {
    flex-direction: column;
    gap: 0.8rem;
  }
}
.p-info__block + .p-info__block {
  margin-top: 1.7rem;
}
@media only screen and (max-width: 768px) {
  .p-info__block + .p-info__block {
    margin-top: 2.5rem;
  }
}
.p-info__block_title {
  display: block;
  width: 10rem;
  margin-top: 0.45rem;
  padding: 0.2rem 0 0.4rem;
  box-sizing: border-box;
  background: var(--blue1);
  line-height: 1.6;
  letter-spacing: 0.03em;
  font-size: 2.1rem;
  font-weight: 700;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .p-info__block_title {
    margin: 0;
  }
}
.p-info__block_content {
  width: calc(100% - 10rem - 3.2rem);
  line-height: 1.875;
  letter-spacing: 0.03em;
  text-align: left;
  font-size: 2.4rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .p-info__block_content {
    width: 100%;
    line-height: 1.8333333333;
    font-size: 1.8rem;
  }
}
.p-info__block_online {
  display: inline-block;
  margin: 0 0 0 1.6rem;
  padding: 0.3rem 1rem 0.3rem;
  border: 1px solid var(--blue1);
  border-radius: 0.5rem;
  box-sizing: border-box;
  line-height: 1.4;
  letter-spacing: 0.03em;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--blue1);
}
@media only screen and (max-width: 768px) {
  .p-info__block_online {
    font-size: 1.5rem;
  }
}
.p-info__block_address {
  display: inline-block;
  line-height: 1.875;
  letter-spacing: 0.03em;
  font-size: 1.8rem;
  font-weight: 400;
}
.p-info__block_address a {
  display: inline-block;
  margin-left: 1.2rem;
  padding-right: 1.55rem;
  position: relative;
  color: var(--blue1);
}
@media only screen and (max-width: 768px) {
  .p-info__block_address a {
    margin-left: 0;
  }
}
.p-info__block_address a::after {
  content: "";
  width: 0.95rem;
  height: 1.4rem;
  background: url(../img/icon-pin-blue.svg) 50% 50%/100% no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.p-info__program {
  margin: 6.4rem auto 0;
  padding: 4.5rem 10rem 4.6rem 4rem;
  border: 0.3rem solid var(--gray1);
  box-sizing: border-box;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .p-info__program {
    margin: 4rem auto 0;
    padding: 3.2rem 2rem 3.3rem;
  }
}
.p-info__program_block {
  margin: 0 auto;
  padding-left: 14.996rem;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-info__program_block {
    padding: 10.4rem 0 0;
  }
}
.p-info__program_block::before {
  content: "";
  width: 11.246rem;
  height: 8rem;
  background: url(../img/cpdmark.webp) 50% 50%/100% no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .p-info__program_block::before {
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.p-info__program_title {
  margin: 0 0 1.3rem;
  line-height: 1.619047619;
  letter-spacing: 0.03em;
  font-size: 2.1rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .p-info__program_title {
    font-size: 1.8rem;
  }
}
.p-info__program_content {
  line-height: 1.8888888889;
  letter-spacing: 0.03em;
  font-size: 1.8rem;
  font-weight: 400;
}
.p-info__program_content span {
  color: var(--blue1);
}
.p-info__coming {
  margin: 6.4rem auto 0;
  line-height: 1.8888888889;
  letter-spacing: 0.03em;
  font-size: 1.8rem;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .p-info__coming {
    margin: 4rem auto 0;
    text-align: left;
  }
}

.p-contact__wrap {
  margin: 6.4rem auto 0;
  padding: 3rem 5rem;
  border-radius: 1rem;
  box-sizing: border-box;
  background: var(--gray1);
}
@media only screen and (max-width: 768px) {
  .p-contact__wrap {
    margin-top: 4.1rem;
    padding: 3rem 2rem;
  }
}
.p-contact__title {
  margin: 0 auto 3.1rem;
  line-height: 1.625;
  letter-spacing: 0.03em;
  font-size: 3.2rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .p-contact__title {
    font-size: 2.4rem;
  }
}
.p-contact__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3.1rem 0 3.3rem;
  background: #FFF;
}
@media only screen and (max-width: 768px) {
  .p-contact__block {
    padding: 2.5rem 1rem;
  }
}
.p-contact__block_title {
  margin: 0 auto 2.4rem;
  line-height: 1.3333333333;
  letter-spacing: 0.03em;
  font-size: 2.1rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .p-contact__block_title {
    font-size: 1.8rem;
  }
}
.p-contact__block_title span {
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .p-contact__block_title span {
    font-size: 1.4rem;
  }
}
.p-contact__box {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  line-height: 1.8888888889;
  letter-spacing: 0.03em;
  text-align: left;
  font-size: 1.8rem;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .p-contact__box {
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
  }
  .p-contact__box + .p-contact__box {
    margin-top: 1.7rem;
  }
}
.p-contact__box_title {
  width: 20.7rem;
}
@media only screen and (max-width: 768px) {
  .p-contact__box_title {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.p-contact__box_content {
  width: -moz-fit-content;
  width: fit-content;
}
.p-contact__box_content a {
  text-decoration: none;
  color: var(--base);
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  .p-contact__box_content a {
    text-decoration: underline;
    pointer-events: auto;
  }
}
.p-contact__btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30rem;
  height: 7.2rem;
  border-radius: 100px;
  box-sizing: border-box;
  position: relative;
  background: var(--blue1);
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 400;
  color: #FFF;
  transition: 0.3s opacity;
}
@media only screen and (max-width: 768px) {
  .p-contact__btn {
    width: 100%;
  }
}
.p-contact__btn:hover {
  opacity: 0.7;
}
.p-contact__btn::after {
  content: "";
  width: 1rem;
  aspect-ratio: 1/1;
  border-width: 0.2rem 0.2rem 0 0;
  border-style: solid;
  border-color: #FFF;
  position: absolute;
  top: 50%;
  right: 2.05rem;
  transform: translateY(-50%) rotate(45deg);
}

.p-cpd {
  margin: 6.5rem auto 0;
  padding: 4.5rem 9.3rem;
  border: 0.3rem solid var(--gray1);
  border-radius: 1rem;
  box-sizing: border-box;
  line-height: 1.8888888889;
  letter-spacing: 0.03em;
  font-size: 1.8rem;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .p-cpd {
    margin-top: 4.1rem;
    padding: 3.2rem 2rem;
    text-align: left;
  }
}
.p-cpd p + p {
  margin-top: 1em;
}
.p-cpd__att_btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 42.5rem;
  height: 7.2rem;
  margin: 3.2rem auto 0;
  padding-left: 7.6rem;
  border: 0.2rem solid #0C7ACC;
  border-radius: 100px;
  box-sizing: border-box;
  position: relative;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: left;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 400;
  color: #0C7ACC;
}
@media only screen and (max-width: 768px) {
  .p-cpd__att_btn {
    width: 28rem;
    margin-top: 2.7rem;
    padding-left: 7.8rem;
    font-size: 1.6rem;
  }
}
.p-cpd__att_btn::before {
  content: "";
  width: 4.5rem;
  height: 3.2rem;
  background: url(../img/cpdmark.webp) 50% 50%/100% no-repeat;
  position: absolute;
  top: 50%;
  left: 1.8rem;
  transform: translateY(-50%);
}
.p-cpd__att_btn::after {
  content: "";
  width: 0.8rem;
  aspect-ratio: 1/1;
  border-width: 0 0.2rem 0.2rem 0;
  border-style: solid;
  border-color: #0C7ACC;
  position: absolute;
  top: 50%;
  right: 1.75rem;
  transform: translateY(-50%) rotate(45deg);
}

.p-poster {
  margin: 6.4rem auto 0;
  padding: 4.5rem 0 4.6rem;
  border: 0.3rem solid var(--gray1);
  border-radius: 1rem;
  box-sizing: border-box;
  line-height: 1.8888888889;
  letter-spacing: 0.03em;
  font-size: 1.8rem;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .p-poster {
    margin-top: 4.1rem;
    padding: 3.2rem 2rem 3.3rem;
    text-align: left;
  }
}
.p-poster__btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin: 2.5rem auto 0;
  line-height: 1.8888888889;
  letter-spacing: 0.03em;
  font-size: 1.8rem;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .p-poster__btns {
    flex-direction: column;
    align-items: center;
  }
}
.p-poster__btns + .p-poster__btns {
  margin-top: 1rem;
}
.p-poster__btns_item {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 1.4rem;
  position: relative;
  color: var(--blue1);
}
.p-poster__btns_item::after {
  content: "";
  width: 0.8rem;
  aspect-ratio: 1/1;
  border-width: 0.2rem 0.2rem 0 0;
  border-style: solid;
  border-color: var(--blue1);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
}

.p-att {
  margin: 4.1rem auto 0;
}
@media only screen and (max-width: 768px) {
  .p-att {
    margin-top: 5.3rem;
  }
}
.p-att__title {
  margin: 0 auto 3.7rem;
  line-height: 1.619047619;
  letter-spacing: 0.03em;
  font-size: 2.1rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .p-att__title {
    margin-bottom: 3.2rem;
    font-size: 1.8rem;
  }
}
.p-att__text {
  line-height: 1.7142857143;
  letter-spacing: 0.03em;
  text-align: left;
  font-size: 1.4rem;
  font-weight: 400;
}

.p-application {
  padding: 0 0 8.7rem;
}
@media only screen and (max-width: 768px) {
  .p-application {
    padding-bottom: 6.1rem;
  }
}
.p-application-header {
  display: flex;
  justify-content: center;
  padding: 2.4rem 0 2.5rem;
}
@media only screen and (max-width: 768px) {
  .p-application-header {
    padding: 2rem 0 1.3rem;
  }
}
.p-application-header__logo {
  position: static;
}
.p-application__title {
  margin: 0 auto 3.9rem;
  line-height: 1.625;
  letter-spacing: 0.03em;
  font-size: 3.2rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .p-application__title {
    margin-bottom: 3.7rem;
    line-height: 1.6666666667;
    font-size: 2.4rem;
  }
}
.p-application__lead {
  display: flex;
  flex-direction: column;
  gap: 2.7rem;
  margin: 0 auto 8rem;
  line-height: 1.8888888889;
  letter-spacing: 0.03em;
  font-size: 1.8rem;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .p-application__lead {
    gap: 3rem;
    margin-bottom: 2.6rem;
    text-align: left;
  }
}
.p-application__lead_att {
  font-size: 0.7777777778em;
}
.p-application__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3.7rem 3.7rem 3.7rem 3.2rem;
  border: 0.3rem solid var(--gray1);
  border-radius: 1rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .p-application__box {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }
}
.p-application__box + .p-application__box {
  margin-top: 3rem;
}
@media only screen and (max-width: 768px) {
  .p-application__box + .p-application__box {
    margin-top: 2rem;
  }
}
.p-application__box_content {
  width: 49.8rem;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .p-application__box_content {
    width: 100%;
  }
}
.p-application__box_title {
  margin: 0 0 1.2rem;
  line-height: 1.7142857143;
  letter-spacing: 0.03em;
  font-size: 1.8rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .p-application__box_title {
    margin-bottom: 1rem;
  }
}
.p-application__box_caption {
  line-height: 1.7142857143;
  letter-spacing: 0.03em;
  font-size: 1.4rem;
  font-weight: 400;
}
.p-application__box_btn {
  width: 30rem;
}
@media only screen and (max-width: 768px) {
  .p-application__box_btn {
    width: 100%;
  }
}

.p-question {
  margin: 3.9rem auto 0;
  padding: 4.6rem 0 5.5rem;
  border-radius: 1rem;
  box-sizing: border-box;
  background: var(--blue4);
}
@media only screen and (max-width: 768px) {
  .p-question {
    margin-top: 2.5rem;
    padding: 2.6rem 0 4.1rem;
  }
}
.p-question__title {
  margin: 0 auto 2.3rem;
  line-height: 1.3333333333;
  letter-spacing: 0.03em;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--blue1);
}
@media only screen and (max-width: 768px) {
  .p-question__title {
    margin-bottom: 2.5rem;
    line-height: 1.4444444444;
    font-size: 1.8rem;
  }
}
.p-question__link {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2.5rem auto 0;
  position: relative;
  line-height: 1.8888888889;
  letter-spacing: 0.03em;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--blue1);
}
@media only screen and (max-width: 768px) {
  .p-question__link {
    margin-top: 2.9rem;
  }
}
.p-question__link::after {
  content: "";
  width: 0.8rem;
  aspect-ratio: 1/1;
  border-width: 0.2rem 0.2rem 0 0;
  border-style: solid;
  border-color: var(--blue1);
  position: absolute;
  top: 0.8em;
  left: calc(100% + 0.8rem);
  rotate: 45deg;
}