@charset "UTF-8";
/* system
--------------------------- */
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap);
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@500;700&display=swap");
/* reset
--------------------------- */
/* 
 * destyle.css v1.0.14
 * https://github.com/nicolas-cusan/destyle.css 
 */
* {
  box-sizing: border-box;
}

::after,
::before {
  box-sizing: inherit;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

address,
blockquote,
dl,
figure,
form,
iframe,
p,
pre,
table {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  vertical-align: bottom;
}

embed,
iframe,
object {
  border: 0;
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: 0 0;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[type=button],
[type=reset],
[type=submit],
button {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled],
button[disabled] {
  cursor: default;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

select::-ms-expand {
  display: none;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable] {
  outline: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

.font-jost {
  font-family: "Jost", sans-serif;
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

@media (min-width: 769px) {
  .sp-only {
    display: none;
  }
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.noscroll {
  height: 100vh;
  overflow-y: hidden;
}

@supports (-webkit-touch-callout: none) {
  /* iPhoneの表示のみ指定を上書き */
  .noscroll {
    min-height: 100%;
    height: -webkit-fill-available;
  }
}
/* base
--------------------------- */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  color: #222;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.833;
  max-width: 100vw;
  min-width: 375px;
  width: 100%;
  background-color: #FFF;
}
@media (min-width: 769px) {
  body {
    min-width: 1120px;
  }
}

::selection {
  background-color: rgba(0, 0, 0, 0.7);
  color: #FFF;
}

img,
video,
object {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}

em {
  font-style: normal;
}

a {
  color: #222;
  text-decoration: none;
  position: relative;
}
@media (min-width: 769px) {
  a img {
    transition: all 0.4s;
  }
  a:hover {
    text-decoration: underline;
  }
}

@media (min-width: 769px) {
  a[href*="tel:"] {
    text-decoration: none;
    pointer-events: none;
    cursor: default;
  }
}

a,
button,
input[type=submit] {
  transition: all 0.4s;
}

button,
input,
select,
textarea {
  font-size: 1rem;
  font-family: inherit;
}

label {
  display: inline-block;
  user-select: none;
}

button,
select,
label {
  cursor: pointer;
}

/* l-header
--------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #FFF;
  z-index: 9000;
}
@media (min-width: 769px) {
  .l-header {
    position: sticky;
    min-width: 1120px;
    border-bottom: solid 1px #ECECEC;
  }
}
@media (min-width: 769px) {
  .l-header a:hover {
    text-decoration: none;
  }
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  border-bottom: solid 1px #ECECEC;
}
@media (max-width: 768px) {
  .l-header__inner {
    position: relative;
    background-color: #FFF;
    z-index: 9900;
  }
}
.l-header__logo {
  display: flex;
  justify-content: space-between;
  width: 247px;
}
@media (min-width: 769px) {
  .l-header__logo {
    width: 391px;
    margin: 2px 0 0 15px;
  }
}
@media (max-width: 768px) {
  .l-header__logo-too img, .l-header__logo-jamf img {
    height: 48px;
  }
}
@media (max-width: 768px) {
  .l-header__btn {
    display: flex;
    gap: 0 1px;
  }
}
.l-header__btn a,
.l-header__btn button {
  color: #FFF;
  font-weight: 700;
  text-align: center;
  display: block;
}
@media (max-width: 768px) {
  .l-header__btn a,
  .l-header__btn button {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 60px;
    height: 100%;
  }
}
@media (min-width: 769px) {
  .l-header__btn a,
  .l-header__btn button {
    font-size: 0.875rem;
    line-height: 1.429;
    letter-spacing: 0.1em;
    margin: 10px;
    padding: 17px 23px 19px;
  }
}
.l-header__btn a em,
.l-header__btn button em {
  position: relative;
  display: inline-block;
}
@media (max-width: 768px) {
  .l-header__btn a em,
  .l-header__btn button em {
    font-size: 0.625rem;
    transform: scale(0.8);
    line-height: 1;
    margin: 0 -1em;
  }
}
.l-header__btn-contact a {
  background-color: #F29830;
  border: solid 1px #F29830;
}
@media (max-width: 768px) {
  .l-header__btn-contact a {
    position: relative;
    padding-top: 19px;
  }
  .l-header__btn-contact a::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translate(-50%, 0);
    display: block;
    width: 17px;
    height: 13px;
    background-image: url(img/ico_contact.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
  }
}
@media (min-width: 769px) {
  .l-header__btn-contact a em {
    padding-left: 27px;
  }
  .l-header__btn-contact a em::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 17px;
    height: 1.429em;
    mask: url(img/ico_contact.svg) center center/contain no-repeat;
    background-color: #FFF;
    transition: all 0.4s;
  }
  .l-header__btn-contact a:hover {
    color: #F29830;
    background-color: #FFF;
  }
  .l-header__btn-contact a:hover em::before {
    background-color: #F29830;
  }
}
@media (min-width: 769px) {
  .l-header__nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.l-header__nav ul a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.429;
  display: block;
}
@media (min-width: 769px) {
  .l-header__nav ul a {
    padding: 13px 1.53em 14px;
  }
  .l-header__nav ul a:hover {
    color: #4369A2;
  }
}
@media (max-width: 768px) {
  .l-header.active .l-header__btn-menu em {
    overflow: hidden;
    height: 0;
    padding-top: 1em;
  }
  .l-header.active .l-header__btn-menu em::after {
    content: "閉じる";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
  }
  .l-header.active .l-header__btn-ham span:nth-child(1) {
    top: 6px;
    transform: rotate(45deg);
  }
  .l-header.active .l-header__btn-ham span:nth-child(2) {
    opacity: 0;
  }
  .l-header.active .l-header__btn-ham span:nth-child(3) {
    top: -6px;
    transform: rotate(-45deg);
  }
  .l-header.active .l-header__overlay {
    opacity: 1;
    visibility: visible;
    z-index: 9800;
  }
  .l-header__btn-menu button {
    background-color: #4369A2;
    border: solid 1px #4369A2;
  }
  .l-header__btn-ham {
    display: block;
    width: 20px;
    margin: 0 auto 5px;
  }
  .l-header__btn-ham span {
    position: relative;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #FFF;
    border-radius: 9999px;
    transition: all 0.25s;
  }
  .l-header__btn-ham span:nth-child(1), .l-header__btn-ham span:nth-child(3) {
    top: 0;
  }
  .l-header__btn-ham span:nth-child(2) {
    margin: 4px 0;
  }
  .l-header__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #FFF;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    z-index: 1;
    visibility: hidden;
    transition: all 0.3s;
  }
  .l-header__overlay-inner {
    display: table;
    width: 100%;
    height: 100%;
  }
  .l-header__nav {
    text-align: center;
    vertical-align: middle;
    display: table-cell;
    padding: 48px 0 50px;
  }
  .l-header__nav a {
    padding: 16px 10px 18px;
  }
  .l-header__nav li {
    border-bottom: solid 1px #ECECEC;
  }
  .l-header__nav li:first-child {
    border-top: solid 1px #ECECEC;
  }
  .l-header__nav li:first-child a {
    padding-top: 18px;
  }
  .l-header__nav li:last-child a {
    padding-bottom: 19px;
  }
}

@media (max-width: 768px) {
  @supports (-webkit-touch-callout: none) {
    /* iPhoneの表示のみ指定を上書き */
    .l-header__overlay {
      min-height: 100%;
      height: -webkit-fill-available;
    }
  }
}
/* l-main
--------------------------- */
.l-main {
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .l-main {
    padding-top: 49px;
  }
}

/* l-footer
--------------------------- */
.l-footer {
  font-weight: 500;
  letter-spacing: 0.05em;
  overflow-x: hidden;
  padding: 60px 0 20px;
}
@media (min-width: 769px) {
  .l-footer {
    padding-bottom: 59px;
  }
}
.l-footer__logo {
  display: flex;
  justify-content: space-between;
  width: 355px;
  margin: 0 auto 40px;
}
@media (min-width: 769px) {
  .l-footer__logo {
    width: 391px;
  }
}
@media (max-width: 768px) {
  .l-footer__logo-too img, .l-footer__logo-jamf img {
    height: 69px;
  }
}
.l-footer__link {
  font-size: 0.875rem;
  line-height: 1.429;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.l-footer__link li {
  position: relative;
  margin-left: 1.05em;
  padding-left: 2.1em;
}
.l-footer__link li::before {
  content: "｜";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1.05em;
  height: 1.429em;
}
.l-footer__link li:first-child {
  margin-left: 0;
  padding-left: 0;
}
.l-footer__link li:first-child::before {
  content: none;
}
.l-footer small {
  font-size: 0.75rem;
  line-height: 1.417;
  text-align: center;
  display: block;
  margin-top: 50px;
}
@media (min-width: 769px) {
  .l-footer small {
    margin-top: 45px;
  }
}

/* c-section
--------------------------- */
.c-section {
  padding: 60px 0;
}
@media (min-width: 769px) {
  .c-section {
    padding: 99px 0 100px;
  }
}
.c-section__inner {
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .c-section__inner {
    max-width: 640px;
  }
}
@media (min-width: 1121px) {
  .c-section__inner {
    max-width: 1080px;
    padding-left: 0;
    padding-right: 0;
  }
}
.c-section__note01 {
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .c-section__note01 {
    line-height: 2;
    text-align: justify;
  }
}
@media (min-width: 769px) {
  .c-section__note01 {
    font-size: 1.125rem;
    font-weight: 500;
  }
}
.c-section__bg01 {
  background: linear-gradient(0deg, #4e6bad 0%, #7a8bba 100%);
}
.c-section__bg02 {
  overflow: hidden;
  background-color: #F8FCFF;
}
@media (min-width: 769px) {
  .c-section__bg02 {
    background-image: url(img/bg01.png);
    background-repeat: no-repeat;
    background-size: 1366px auto;
    background-position: right bottom;
  }
}
.c-section__bg02 .c-section__inner {
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .c-section__bg02-figure__sp {
    position: relative;
    display: block;
    max-width: 375px;
    margin: 0 auto;
    z-index: 2;
  }
  .c-section__bg02-figure__sp::after {
    content: "";
    position: absolute;
    right: -693px;
    bottom: 0;
    display: block;
    width: 1366px;
    height: 1424px;
    background-image: url(img/bg01.png);
    background-size: 100% auto;
    background-position: right bottom;
    z-index: -1;
  }
}
.c-section__box01 {
  background-color: #FFF;
  border-radius: 20px;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.2);
}
.c-section__title01 {
  font-size: 2.0625rem;
  font-weight: 700;
  line-height: 1.515;
}
@media (min-width: 769px) {
  .c-section__title01 {
    position: relative;
    font-size: 3.3125rem;
    font-weight: 500;
    line-height: 1.434;
    z-index: 20;
  }
}
.c-section__title01 em {
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
}
@media (min-width: 380px) {
  .c-section__title01 em {
    padding: 0 47px;
  }
}
.c-section__title01 em::before, .c-section__title01 em::after {
  content: "";
  position: absolute;
  top: 11.11%;
  display: block;
  width: 1px;
  height: 90.91%;
  background-color: #222;
}
@media (min-width: 769px) {
  .c-section__title01 em::before, .c-section__title01 em::after {
    top: 17.24%;
    height: 101.72%;
  }
}
.c-section__title01 em::before {
  left: -10px;
  transform: rotate(-25deg);
  transform-origin: left top;
}
.c-section__title01 em::after {
  right: -10px;
  transform: rotate(25deg);
  transform-origin: right top;
}
.c-section__title02 {
  margin-bottom: 39px;
}
@media (min-width: 769px) {
  .c-section__title02 {
    margin-bottom: 55px;
  }
}
.c-section__title02 .font-jost {
  color: #4369A2;
  font-size: 1.375rem;
  letter-spacing: 0.1em;
  line-height: 1.455;
  position: relative;
  display: inline-block;
  padding-left: 30px;
}
@media (min-width: 769px) {
  .c-section__title02 .font-jost {
    font-size: 1.875rem;
    line-height: 1.434;
    padding-left: 40px;
  }
}
.c-section__title02 .font-jost::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  display: block;
  width: 20px;
  height: 2px;
  background-color: #4369A2;
}
.c-section__title02 em {
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.538;
  display: block;
  margin-top: 14px;
}
@media (min-width: 769px) {
  .c-section__title02 em {
    font-size: 2.5rem;
    line-height: 1.55;
    margin-top: 19px;
  }
}
.c-section__title02.c-text__white .font-jost {
  color: #FFF;
}
.c-section__title02.c-text__white .font-jost::before {
  background-color: #FFF;
}
.c-section__img img {
  overflow: hidden;
  border-radius: 10px;
}

/* c-text
--------------------------- */
.c-text__center {
  text-align: center !important;
}
.c-text__right {
  text-align: right !important;
}
.c-text__white {
  color: #FFF !important;
}
.c-text__primary {
  color: #4369A2 !important;
}
.c-text__emp {
  color: #F29830 !important;
}

/* c-link
--------------------------- */
.c-link__area {
  position: relative;
  transition: all 0.3s;
}
.c-link__href {
  position: static;
  display: block;
}
.c-link__href::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  pointer-events: auto;
  background-color: transparent;
}

/* c-contact
--------------------------- */
.c-contact {
  background-image: url(img/contact_bg01.jpg);
  background-size: 1366px auto;
  background-position: 30% 70%;
}
@media (min-width: 769px) {
  .c-contact {
    background-size: cover;
    background-position: center bottom;
  }
  .c-contact.c-section {
    padding: 58px 0;
  }
}
.c-contact .c-section__title02 {
  margin-bottom: 29px;
}
@media (min-width: 769px) {
  .c-contact .c-section__title02 {
    margin-bottom: 30px;
  }
}
.c-contact__btn {
  max-width: 400px;
  margin: 0 auto;
}
.c-contact__btn a {
  color: #F29830;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-align: center;
  display: block;
  padding: 11px 15px 13px;
  background-color: #FFF;
  border: solid 3px #F29830;
  border-radius: 9999px;
}
@media (min-width: 769px) {
  .c-contact__btn a {
    padding-top: 21px;
    padding-bottom: 24px;
  }
  .c-contact__btn a:hover {
    color: #FFF;
    text-decoration: none;
    background-color: #F29830;
    border-color: #FFF;
  }
}
@media (min-width: 769px) {
  .c-contact:last-child .c-contact__btn {
    max-width: 600px;
  }
}

/* c-slide
--------------------------- */
@media (max-width: 768px) {
  .c-slide {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media screen and (max-width: 768px) and (max-width: 425px) {
  .c-slide {
    margin-top: -14%;
    margin-bottom: -11%;
  }
}
@media (max-width: 768px) {
  .c-slide .splide__slide {
    opacity: 0.5;
    max-width: 334px;
    transition: all 0.4s;
  }
  .c-slide .splide__slide .c-slide__blc {
    height: 100%;
    transform: scale(0.85);
    transition: all 0.4s;
  }
}
@media screen and (max-width: 768px) and (max-width: 425px) {
  .c-slide .splide__slide .c-slide__blc {
    margin-left: -9%;
    margin-right: -9%;
    transform: scale(0.7);
  }
}
@media (max-width: 768px) {
  .c-slide .splide__slide.is-active {
    opacity: 1;
  }
  .c-slide .splide__slide.is-active .c-slide__blc {
    transform: scale(1);
  }
}
@media screen and (max-width: 768px) and (max-width: 425px) {
  .c-slide .splide__slide.is-active .c-slide__blc {
    transform: scale(0.82);
  }
}
@media (max-width: 768px) {
  .c-slide .splide__arrow--prev,
  .c-slide .splide__arrow--next {
    width: 4rem;
    height: 100%;
    opacity: 0 !important;
  }
  .c-slide .splide__arrow--prev {
    left: 0;
  }
  .c-slide .splide__arrow--next {
    right: 0;
  }
}
@media (min-width: 769px) {
  .c-slide .splide__list {
    display: flex !important;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

/* p-mv
--------------------------- */
@media (max-width: 768px) {
  .p-mv {
    padding: 32px 0 18px;
  }
}
@media (min-width: 769px) {
  .p-mv {
    position: relative;
    overflow: hidden;
  }
  .p-mv::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 50%;
    height: 100%;
    background: linear-gradient(0deg, #a4badb 0%, #7b92b5 100%);
    z-index: -1;
  }
}
.p-mv .c-section__inner {
  position: relative;
}
@media (max-width: 768px) {
  .p-mv .c-section__inner {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 769px) {
  .p-mv .c-section__inner {
    padding-top: 52px;
    padding-bottom: 52px;
    background-color: #FFF;
  }
  .p-mv .c-section__inner::before, .p-mv .c-section__inner::after {
    content: "";
    position: absolute;
    display: block;
    width: 1366px;
    height: 100%;
    background-repeat: no-repeat;
  }
  .p-mv .c-section__inner::before {
    top: 0;
    left: -439px;
    background-image: url(img/mv_bg01.png);
    background-size: 100% auto;
  }
  .p-mv .c-section__inner::after {
    right: -123px;
    bottom: 0;
    display: block;
    width: 1366px;
    height: 100%;
    background-image: url(img/mv_bg02.png);
    background-size: cover;
  }
}
@media (min-width: 1121px) {
  .p-mv .c-section__inner::before {
    left: -459px;
  }
  .p-mv .c-section__inner::after {
    right: -143px;
  }
}
.p-mv__title01 {
  font-weight: 500;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .p-mv__title01 {
    font-size: 2.1875rem;
    line-height: 1.4;
    max-width: 355px;
    margin: 0 auto 30px;
    padding-left: 10px;
  }
  .p-mv__title01::before {
    content: "";
    position: absolute;
    top: -180px;
    left: -340px;
    display: block;
    width: 1366px;
    height: 300px;
    background-image: url(img/mv_bg01.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    z-index: -1;
  }
}
@media (min-width: 769px) {
  .p-mv__title01 {
    font-size: 3.9375rem;
    line-height: 1.508;
    margin-bottom: 34px;
  }
}
.p-mv__title01 em {
  background: linear-gradient(transparent 60%, #F0F6FF 60%, #F0F6FF 98%, transparent 98%);
}
@media (min-width: 769px) {
  .p-mv__title01 em {
    background: linear-gradient(transparent 57%, #F0F6FF 57%, #F0F6FF 99%, transparent 99%);
  }
}
.p-mv__title02 {
  font-weight: 500;
}
@media (max-width: 768px) {
  .p-mv__title02 {
    font-size: 1.0625rem;
    line-height: 1.471;
    max-width: 355px;
    margin: 0 auto -5px;
    padding-left: 10px;
  }
  .p-mv__title02 .pnc {
    font-weight: 700;
    display: inline-block;
    margin: 0 -0.15em 0 -0.5em;
    transform: scale(0.6, 1);
  }
  .p-mv__title02 .pnc:last-child {
    margin-left: -0.18em;
    margin-right: -0.5em;
  }
}
@media (min-width: 769px) {
  .p-mv__title02 {
    font-size: 1.625rem;
    line-height: 1.423;
    margin-bottom: -3px;
  }
}
.p-mv__title02-logo {
  display: block;
  margin-top: 1px;
}
@media (max-width: 768px) {
  .p-mv__title02-logo {
    width: 246px;
  }
}
@media (min-width: 769px) {
  .p-mv__wrap01 {
    position: relative;
  }
}
.p-mv__txt01 {
  position: relative;
  z-index: 9;
}
@media (max-width: 768px) {
  .p-mv__txt01 .c-section__note01 {
    text-shadow: 0 0 10px #FFF, 0 0 5px #FFF, 0 0 2px #FFF, 0 0 1px #FFF;
    min-height: 8em;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 769px) {
  .p-mv__txt01 .c-section__note01 {
    font-weight: 400;
    width: 470px;
  }
}
.p-mv__img01 {
  position: relative;
  z-index: 5;
}
@media (max-width: 768px) {
  .p-mv__img01 {
    max-width: 375px;
    margin: -10px -10px 0;
  }
  .p-mv__img01::after {
    content: "";
    position: absolute;
    right: -528px;
    bottom: -18px;
    display: block;
    width: 1366px;
    height: 636px;
    background-image: url(img/mv_bg02.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    z-index: -1;
  }
}
@media (min-width: 395px) {
  .p-mv__img01 {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 769px) {
  .p-mv__img01 {
    position: absolute;
    right: -58px;
    bottom: -73px;
  }
}

/* p-sec01
--------------------------- */
.p-sec01 {
  padding: 59px 0 89px;
  background-color: #F8FCFF;
}
@media (min-width: 769px) {
  .p-sec01 {
    padding: 93px 0 117px;
  }
}
.p-sec01 .c-section__title01 {
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  .p-sec01 .c-section__title01 {
    font-size: 1.625rem;
    line-height: 1.538;
  }
}
@media (min-width: 769px) {
  .p-sec01 .c-section__title01 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 65px;
  }
}
.p-sec01__title01 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.55;
}
@media (min-width: 769px) {
  .p-sec01__title01 {
    font-size: 1.5rem;
    line-height: 1.583;
  }
}
.p-sec01__wrap01 {
  display: flex;
  justify-content: center;
  gap: 46px 20px;
}
@media (max-width: 768px) {
  .p-sec01__wrap01 {
    flex-wrap: wrap;
  }
}
@media (min-width: 769px) {
  .p-sec01__wrap01 {
    justify-content: space-between;
  }
}
.p-sec01__blc01 {
  position: relative;
  width: 292px;
  aspect-ratio: 1/1;
  padding-top: 42px;
  background-color: #FFF;
  border: solid 3px #4369A2;
  border-radius: 50%;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.1);
}
@media (min-width: 769px) {
  .p-sec01__blc01 {
    padding-top: 49px;
    width: 333px;
  }
}
.p-sec01__img01 {
  position: absolute;
  left: 50%;
  bottom: -32px;
  transform: translate(-50%, 0);
}
@media (max-width: 768px) {
  .p-sec01__img01 {
    width: 130px;
  }
}
@media (min-width: 769px) {
  .p-sec01__img01 {
    bottom: -38px;
  }
}

/* p-sec02
--------------------------- */
.p-sec02 {
  position: relative;
}
.p-sec02::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -36px;
  transform: translate(-50%, 0);
  display: block;
  width: 55px;
  height: 40px;
  background-color: #4E6BAD;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  z-index: 15;
}
@media (min-width: 769px) {
  .p-sec02::after {
    bottom: -98px;
    width: 200px;
    height: 99px;
  }
}
.p-sec02 .c-section__box01 {
  margin: 0 -10px;
  padding: 29px 10px;
}
@media (min-width: 769px) {
  .p-sec02 .c-section__box01 {
    max-width: 990px;
    margin: 0 auto;
    padding: 35px 50px 37px 60px;
  }
}
.p-sec02 .c-section__box01 li {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.556;
  position: relative;
  margin-top: 19px;
  padding-left: 41px;
}
@media (min-width: 769px) {
  .p-sec02 .c-section__box01 li {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    line-height: 1.458;
    margin-top: 25px;
    padding-left: 46px;
  }
}
.p-sec02 .c-section__box01 li:first-child {
  margin-top: 0;
}
.p-sec02 .c-section__box01 li::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  display: block;
  width: 20px;
  height: 1.556em;
  background-image: url(img/ico_check01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
}
@media (min-width: 769px) {
  .p-sec02 .c-section__box01 li::before {
    top: 2px;
    width: 25px;
    height: 1.458em;
  }
}
.p-sec02 .c-section__box01 li em {
  background: linear-gradient(transparent 35%, #E3EEFF 35%);
}
@media (min-width: 769px) {
  .p-sec02 .c-section__box01 li em {
    background: linear-gradient(transparent 55%, #E3EEFF 55%);
  }
}

/* p-sec03
--------------------------- */
.p-sec03 .c-section__inner {
  padding-top: 88px;
  padding-bottom: 55px;
}
@media (min-width: 769px) {
  .p-sec03 .c-section__inner {
    padding-top: 168px;
    padding-bottom: 96px;
  }
}
@media (min-width: 769px) {
  .p-sec03 .c-section__bg02-figure__pc::after {
    bottom: -96px;
  }
}
@media (max-width: 768px) {
  .p-sec03 .c-section__title01 em {
    padding: 0 47px;
  }
  .p-sec03 .c-section__title01 em::before {
    left: 0;
  }
  .p-sec03 .c-section__title01 em::after {
    right: 0;
  }
}
.p-sec03 .c-section__title02 {
  margin-top: 60px;
  margin-bottom: 28px;
}
@media (min-width: 769px) {
  .p-sec03 .c-section__title02 {
    margin-bottom: 50px;
  }
}
.p-sec03__wrap01 {
  position: relative;
  z-index: 20;
}
@media (min-width: 769px) {
  .p-sec03__wrap01 {
    margin-bottom: 38px;
    padding-bottom: 34px;
  }
}
@media (max-width: 768px) {
  .p-sec03__wrap01 .c-section__note01 {
    letter-spacing: 0;
  }
}
@media (min-width: 769px) {
  .p-sec03__wrap01 .c-section__note01 {
    line-height: 2;
  }
}
@media (min-width: 769px) {
  .p-sec03__txt01 {
    max-width: 515px;
  }
}
@media (max-width: 768px) {
  .p-sec03__img01, .p-sec03__blc01-img {
    text-align: center;
  }
  .p-sec03__img01 img, .p-sec03__blc01-img img {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .p-sec03__img01 {
    margin: 30px -10px 0;
  }
}
@media (min-width: 769px) {
  .p-sec03__img01 {
    position: absolute;
    top: 0;
    right: -83px;
  }
}
.p-sec03__wrap02 {
  margin-top: 40px;
}
@media (min-width: 769px) {
  .p-sec03__wrap02 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 35px 10px;
    margin-top: -13px;
  }
}
@media (max-width: 768px) {
  .p-sec03__blc01 {
    margin-top: 46px;
  }
}
@media (min-width: 769px) {
  .p-sec03__blc01 {
    width: 326px;
  }
}
.p-sec03__blc01-title {
  font-weight: 700;
  text-align: center;
  position: relative;
  margin-top: -9px;
  padding: 19px 35px 10px 45px;
}
@media (min-width: 769px) {
  .p-sec03__blc01-title {
    margin-top: -6px;
    padding: 24px 42px 19px 52px;
  }
}
.p-sec03__blc01-title .font-jost {
  color: #4369A2;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
}
@media (min-width: 769px) {
  .p-sec03__blc01-title .font-jost {
    font-size: 5rem;
  }
}
.p-sec03__blc01-title em {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1.45;
}
@media (min-width: 769px) {
  .p-sec03__blc01-title em {
    font-size: 1.5rem;
    line-height: 1.458;
  }
}
@media (max-width: 768px) {
  .p-sec03__blc01-note {
    font-size: 0.9375rem;
    line-height: 2;
  }
  .p-sec03__blc01-note.adj {
    letter-spacing: -0.02em;
    margin-right: -0.3em;
  }
}
@media (min-width: 769px) {
  .p-sec03__blc01-note {
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 2.063;
    margin-top: -4px;
  }
  .p-sec03__blc01-note.adj {
    letter-spacing: 0;
  }
}
@media (max-width: 768px) {
  .p-sec03__blc01:first-child {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .p-sec03__blc01:first-child .p-sec03__blc01-note {
    letter-spacing: -0.02em;
    margin-right: -0.3em;
  }
}

/* p-sec04
--------------------------- */
.p-sec04 .c-section__inner {
  padding-top: 73px;
  padding-bottom: 31px;
}
@media (min-width: 769px) {
  .p-sec04 .c-section__inner {
    padding-top: 99px;
    padding-bottom: 21px;
  }
}
.p-sec04 .c-section__inner .c-section__title01:last-child {
  margin-top: 59px;
}
@media (min-width: 769px) {
  .p-sec04 .c-section__inner .c-section__title01:last-child {
    font-size: 3rem;
    margin: 100px -8px 0;
  }
}
@media (max-width: 768px) {
  .p-sec04 .c-section__inner .c-section__title01:last-child em {
    letter-spacing: 0.05em;
  }
  .p-sec04 .c-section__inner .c-section__title01:last-child em::before {
    transform: rotate(-15deg);
  }
  .p-sec04 .c-section__inner .c-section__title01:last-child em::after {
    transform: rotate(15deg);
  }
}
@media (max-width: 768px) {
  .p-sec04 .c-section__title02 {
    margin-left: -5px;
    margin-right: -5px;
  }
  .p-sec04 .c-section__title02 em {
    letter-spacing: 0;
  }
}
@media (min-width: 769px) {
  .p-sec04 .c-slide .splide__list {
    gap: 40px 10px;
  }
  .p-sec04 .c-slide .splide__slide {
    width: 333px;
  }
}
.p-sec04 .c-slide__blc {
  overflow: hidden;
  background-color: #FFFBED;
  border-radius: 20px;
  border: solid 2px #4369A2;
}
.p-sec04__title01 {
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 154px;
  padding: 12px 5px 14px;
  background-color: #4369A2;
}
@media (min-width: 769px) {
  .p-sec04__title01 {
    font-size: 1.5rem;
    line-height: 1.5;
    min-height: 188px;
    padding: 18px 5px 20px;
  }
}
.p-sec04__title01::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translate(-50%, 0);
  display: block;
  width: 20px;
  height: 15px;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  background-color: #4369A2;
}
.p-sec04__title02 {
  font-weight: 700;
  text-align: center;
  position: relative;
  margin-top: -9px;
  padding: 19px 35px 10px 45px;
}
@media (min-width: 769px) {
  .p-sec04__title02 {
    margin-top: -6px;
    padding: 24px 42px 19px 52px;
  }
}
.p-sec04__title02 .font-jost {
  color: #F29830;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
}
@media (min-width: 769px) {
  .p-sec04__title02 .font-jost {
    font-size: 5rem;
  }
}
.p-sec04__title02 em {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1.45;
}
@media (min-width: 769px) {
  .p-sec04__title02 em {
    font-size: 1.5rem;
    line-height: 1.458;
  }
}
.p-sec04__txt01 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 155px;
  padding: 35px 5px 24px;
  background-color: #FFF;
  background-image: url(img/sec04_bg01.svg);
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 768px) {
  .p-sec04__txt01 {
    background-size: 70px auto;
  }
}
@media (min-width: 769px) {
  .p-sec04__txt01 {
    min-height: 178px;
    padding-top: 40px;
    padding-bottom: 28px;
  }
}
.p-sec04__txt01 .c-text__center {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
}
@media (min-width: 769px) {
  .p-sec04__txt01 .c-text__center {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
.p-sec04__blc01 {
  padding: 0 10px 20px;
}
@media (min-width: 769px) {
  .p-sec04__blc01 {
    padding: 0 12px 21px;
  }
}
.p-sec04__img01 {
  text-align: center;
  margin: 0 -10px;
}
@media (min-width: 769px) {
  .p-sec04__img01 {
    margin: 0 -12px;
  }
}
.p-sec04__img01 img {
  display: inline-block;
}

/* p-sec05
--------------------------- */
.p-sec05 {
  background-image: url(img/sec05_bg01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
.p-sec05 .c-section__title02 em .u-inline-blc {
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
}
@media (min-width: 769px) {
  .p-sec05 .c-section__title02 em .u-inline-blc {
    padding-left: 86px;
    padding-right: 86px;
  }
}
.p-sec05 .c-section__title02 em .u-inline-blc::before, .p-sec05 .c-section__title02 em .u-inline-blc::after {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 30px;
  height: 1.538em;
  background-image: url(img/deco_bg01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
}
@media (min-width: 769px) {
  .p-sec05 .c-section__title02 em .u-inline-blc::before, .p-sec05 .c-section__title02 em .u-inline-blc::after {
    width: 50px;
    height: 1.55em;
  }
}
.p-sec05 .c-section__title02 em .u-inline-blc::before {
  left: -5px;
}
.p-sec05 .c-section__title02 em .u-inline-blc::after {
  right: -5px;
}
@media (min-width: 769px) {
  .p-sec05 .c-slide .splide__list {
    gap: 40px 10px;
  }
  .p-sec05 .c-slide .splide__slide {
    width: 520px;
  }
}
.p-sec05 .c-slide__blc {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  background-color: #FFF;
  border-top-right-radius: 24px;
  border-bottom-left-radius: 20px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}
.p-sec05__title01 {
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.45;
  position: relative;
  padding: 20px 40px 22px;
  background-color: #F29830;
  border-top-right-radius: 20px;
}
@media (min-width: 769px) {
  .p-sec05__title01 {
    font-size: 1.625rem;
    line-height: 1.424;
    padding: 24px 70px 23px;
  }
}
.p-sec05__title01::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%);
  display: block;
  width: 30px;
  height: 30px;
  background-image: url(img/deco_bg01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
}
@media (min-width: 769px) {
  .p-sec05__title01::before {
    left: 30px;
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 768px) {
  .p-sec05__title01.small {
    font-size: 1.125rem;
  }
}
.p-sec05__txt01 {
  display: flex;
  padding: 15px 10px 0;
}
@media (max-width: 768px) {
  .p-sec05__txt01 {
    flex: 1;
    flex-direction: column;
  }
}
@media (min-width: 769px) {
  .p-sec05__txt01 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.p-sec05__note01 {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 2;
}
@media (max-width: 768px) {
  .p-sec05__note01 {
    text-align: justify;
    margin-bottom: 15px;
  }
}
@media (min-width: 769px) {
  .p-sec05__note01 {
    letter-spacing: 0.05em;
    width: 303px;
  }
}
@media (max-width: 768px) {
  .p-sec05__note01.adj01 {
    letter-spacing: -0.015em;
  }
}
@media (min-width: 769px) {
  .p-sec05__note01.adj02 {
    letter-spacing: 0;
  }
}
.p-sec05__note02 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.45;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 110px;
  margin: auto;
  padding-bottom: 19px;
  aspect-ratio: 130/145;
  background-image: url(img/deco_bg02.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 769px) {
  .p-sec05__note02 {
    font-size: 1.5rem;
    line-height: 1.5;
    width: 130px;
    margin: 0;
  }
}
.p-sec05__note02.adj {
  padding-top: 8px;
}
.p-sec05__note02 span {
  font-size: 1.5rem;
  line-height: 1;
}
@media (min-width: 769px) {
  .p-sec05__note02 span {
    font-size: 1.875rem;
  }
}

/* p-sec06
--------------------------- */
.p-sec06 .c-section__inner {
  padding-top: 60px;
  padding-bottom: 62px;
}
@media (min-width: 769px) {
  .p-sec06 .c-section__inner {
    padding-top: 100px;
    padding-bottom: 98px;
  }
}
.p-sec06__note01 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.45;
  margin: -24px -5px 40px;
}
@media (min-width: 769px) {
  .p-sec06__note01 {
    margin: -26px 0 60px;
  }
}
@media (min-width: 769px) {
  .p-sec06 .c-slide .splide__list {
    gap: 0 10px;
  }
  .p-sec06 .c-slide .splide__slide {
    width: 520px;
  }
}
.p-sec06 .c-slide__blc {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-bottom: 35px;
}
@media (min-width: 769px) {
  .p-sec06 .c-slide__blc {
    padding-bottom: 43px;
  }
}
.p-sec06 .c-slide__blc.even .p-sec06__bln::before, .p-sec06 .c-slide__blc.even .p-sec06__bln::after {
  clip-path: polygon(100% 0, 0 0, 0 100%);
}
.p-sec06 .c-slide__blc.even .p-sec06__bln::after {
  transform: translate(-49.5%, 0);
}
.p-sec06 .c-slide__blc .font-jost {
  color: #7395C7;
  display: flex;
  align-items: center;
  margin-bottom: -15px;
}
.p-sec06 .c-slide__blc .font-jost dt,
.p-sec06 .c-slide__blc .font-jost dd {
  font-weight: 500;
}
.p-sec06 .c-slide__blc .font-jost dt {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-right: 7px;
  padding-top: 7px;
}
.p-sec06 .c-slide__blc .font-jost dd {
  font-size: 2.4375rem;
  line-height: 1.462;
}
.p-sec06__bln {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 17px 19px 0;
  background-color: #FFF;
  border: solid 1px #4369A2;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}
@media (min-width: 769px) {
  .p-sec06__bln {
    padding: 26px 29px 0;
    border-width: 2px;
  }
}
.p-sec06__bln::before, .p-sec06__bln::after {
  content: "";
  position: absolute;
  left: 50%;
  display: block;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.p-sec06__bln::before {
  bottom: -20px;
  transform: translate(-50%, 0);
  width: 14px;
  height: 20px;
  background-color: #4369A2;
}
@media (min-width: 769px) {
  .p-sec06__bln::before {
    bottom: -24px;
    width: 20px;
    height: 24px;
  }
}
.p-sec06__bln::after {
  bottom: -17px;
  transform: translate(-50.5%, 0);
  width: 12px;
  height: 18px;
  background-color: #FFF;
}
@media (min-width: 769px) {
  .p-sec06__bln::after {
    bottom: -20px;
    width: 17px;
    height: 21px;
  }
}
@media (max-width: 768px) {
  .p-sec06__bln .c-section__note01 {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.833;
  }
}
.p-sec06__logo {
  text-align: right;
  margin: auto -19px 0 0;
}
@media (min-width: 769px) {
  .p-sec06__logo {
    margin-right: -29px;
  }
}
.p-sec06__logo img {
  display: inline-block;
}

/* p-sec07
--------------------------- */
.p-sec07 .c-section__box01 {
  padding: 26px 19px 36px;
}
@media (min-width: 769px) {
  .p-sec07 .c-section__box01 {
    padding: 71px 44px 55px;
  }
}
.p-sec07__faq {
  margin-top: 25px;
  padding-top: 27px;
  background-image: linear-gradient(to right, #4369A2, #4369A2 2px, transparent 2px);
  background-size: 4px 1px;
  background-position: left top;
  background-repeat: repeat-x;
}
@media (min-width: 769px) {
  .p-sec07__faq {
    margin-top: 35px;
    padding-top: 52px;
  }
}
.p-sec07__faq:first-child {
  margin-top: 0;
  padding-top: 0;
  background: none;
}
.p-sec07__faq dt,
.p-sec07__faq dd {
  position: relative;
  padding-left: 42px;
}
@media (min-width: 769px) {
  .p-sec07__faq dt,
  .p-sec07__faq dd {
    padding-left: 58px;
  }
}
.p-sec07__faq dt::before,
.p-sec07__faq dd::before {
  font-family: "Jost", sans-serif;
  font-size: 1.5625rem;
  font-weight: 700;
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 1em;
  height: 2em;
}
@media (min-width: 769px) {
  .p-sec07__faq dt::before,
  .p-sec07__faq dd::before {
    font-size: 2.5rem;
  }
}
.p-sec07__faq dt {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.833;
}
@media (min-width: 769px) {
  .p-sec07__faq dt {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    line-height: 1.458;
  }
}
.p-sec07__faq dt::before {
  line-height: 1.32;
  color: #4369A2;
  content: "Q";
  left: 1px;
}
@media (min-width: 769px) {
  .p-sec07__faq dt::before {
    line-height: 1;
    top: -2px;
  }
}
.p-sec07__faq dd {
  margin-top: 15px;
}
@media (min-width: 769px) {
  .p-sec07__faq dd {
    margin-top: 17px;
  }
}
.p-sec07__faq dd::before {
  line-height: 1.2;
  color: #F29830;
  content: "A";
  left: 2px;
}
@media (min-width: 769px) {
  .p-sec07__faq dd::before {
    line-height: 1;
    top: 12px;
    left: 3px;
    height: 1em;
  }
}
@media (max-width: 768px) {
  .p-sec07__faq .adj01 {
    letter-spacing: 0 !important;
  }
}
@media (max-width: 768px) {
  .p-sec07__faq .adj02 {
    letter-spacing: -0.02em !important;
  }
}

/* utility
--------------------------- */
.u-inline-blc {
  display: inline-block;
}

.u-hidden {
  opacity: 0;
  visibility: hidden;
}

.u-url {
  letter-spacing: 0;
  word-break: break-all;
}

.u-ytb {
  position: relative;
  aspect-ratio: 16/9;
}
.u-ytb iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}