@charset "UTF-8";
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
figure {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

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

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

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

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

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  border-radius: 0;
  border: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

main {
  display: block;
}

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

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

body {
  color: #333333;
  font-family: "Noto Sans JP", serif;
}

/* ボタン
--------------------------------------------- */
/* 募集要項(ヘッダー) */
.btn-entry {
  display: block;
  font-size: 16px;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(#FB6159), color-stop(46%, #F06832), to(#E03345)), #FFFFFF;
  background: linear-gradient(90deg, #FB6159 0%, #F06832 46%, #E03345 100%), #FFFFFF;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 100%;
  height: 100%;
  padding: 10px 0;
  transition: background 0.4, color 0.4s, -webkit-text-fill-color 0.4s;
}

.btn-entry__wrap {
  display: inline-block;
  background-color: #FFFFFF;
  text-align: center;
  width: 116px;
  max-width: 100%;
  border-radius: 30px;
  border: 2px solid #FB6159;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}
.btn-entry__wrap:hover {
  background-color: #ED5B37;
}
.btn-entry__wrap:hover .btn-entry {
  -webkit-text-fill-color: #FFFFFF;
}

/* カジュアル面談(ヘッダー) */
.btn-interview {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.28px;
  color: #FFFFFF;
  background: -webkit-gradient(linear, left top, right top, from(#FB6159), color-stop(46%, #F06832), to(#E03345));
  background: linear-gradient(90deg, #FB6159 0%, #F06832 46%, #E03345 100%);
  border-radius: 60px;
  padding: 10px 0;
  text-align: center;
  width: 167px;
  max-width: 100%;
  -webkit-transition: color 0.4s, background 0.4s;
  transition: color 0.4s, background 0.4s;
}
.btn-interview:hover {
  color: #FB6159;
  background: #FFFFFF;
}

/* カジュアル面談 */
.btn-interview02 {
  max-width: 354px;
  width: 100%;
  padding: 18px 58px 20px 30px;
  border-radius: 60px;
  border: 1px solid #ED5B37;
  background: -webkit-gradient(linear, left top, right top, from(#FB6159), color-stop(46%, #F06832), to(#E03345));
  background: linear-gradient(90deg, #FB6159 0%, #F06832 46%, #E03345 100%);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.6px;
  position: relative;
  -webkit-transition: background 0.4s, color 0.4s, border 0.4s;
  transition: background 0.4s, color 0.4s, border 0.4s;
}
@media screen and (max-width:768px) {
  .btn-interview02 {
    padding: 14px 42px 16px 22px;
  }
}
@media (max-width: 390px) {
  .btn-interview02 {
    font-size: 18px;
  }
}
.btn-interview02::before {
  content: "オンラインでOK";
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 30px;
  border: 2px solid #FB6159;
  color: #FB6159;
  background-color: #FFFFFF;
  padding: 4px 24px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.64px;
  white-space: nowrap;
  -webkit-transition: background-color 0.4s, color 0.4s;
  transition: background-color 0.4s, color 0.4s;
}
@media screen and (max-width:768px) {
  .btn-interview02::before {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}
.btn-interview02.btn-interview02--ok::before {
  content: "1分で予約完了";
}
.btn-interview02.btn-interview02--top::before {
  content: "もっと詳しく知りたい人へ";
}
.btn-interview02.is-single::before {
  content: none;
}
.btn-interview02::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 48%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  background-color: #FFFFFF;
  -webkit-mask-image: url(../img/btn-arrow-white02.svg);
          mask-image: url(../img/btn-arrow-white02.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: auto;
          mask-size: auto;
  -webkit-mask-position: center center;
          mask-position: center center;
  width: 28px;
  height: 8px;
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}
.btn-interview02:hover {
  background: #FFFFFF;
  color: #ED5B37;
}
.btn-interview02:hover::before {
  background-color: #ED5B37;
  color: #FFFFFF;
}
.btn-interview02:hover::after {
  background-color: #ED5B37;
}
@media screen and (max-width:768px) {
  .btn-interview02:hover {
    background: -webkit-gradient(linear, left top, right top, from(#FB6159), color-stop(46%, #F06832), to(#E03345));
    background: linear-gradient(90deg, #FB6159 0%, #F06832 46%, #E03345 100%);
    color: #FFFFFF;
  }
  .btn-interview02:hover::before {
    color: #FB6159;
    background-color: #FFFFFF;
  }
  .btn-interview02:hover::after {
    background-color: #FFFFFF;
  }
}
.btn-interview02.btn-interview02--bordered {
  border: 2px solid #FFFFFF;
  padding: 16px 58px 20px 30px;
}
.btn-interview02.btn-interview02--bordered:hover {
  border: 2px solid #ED5B37;
}

/* 送信ボタン */
.btn-submit__wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  max-width: 354px;
  width: 100%;
  border-radius: 60px;
  border: 1px solid #ED5B37;
  background: -webkit-gradient(linear, left top, right top, from(#FB6159), color-stop(46%, #F06832), to(#E03345));
  background: linear-gradient(90deg, #FB6159 0%, #F06832 46%, #E03345 100%);
  padding: 16px 58px 20px 30px;
  color: #FFFFFF;
  cursor: pointer;
  position: relative;
  -webkit-transition: background 0.4s, color 0.4s;
  transition: background 0.4s, color 0.4s;
}
@media screen and (max-width:768px) {
  .btn-submit__wrap {
    padding: 12px 42px 16px 22px;
  }
}
.btn-submit__wrap svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 28px;
          flex: 0 0 28px;
  width: 28px;
  height: 6px;
}
.btn-submit__wrap:hover {
  background: #FFFFFF;
  color: #ED5B37;
}
.btn-submit__wrap:hover .btn-submit {
  background: #FFFFFF;
}
.btn-submit__wrap.is-disabled {
  background: #CECFCF;
  color: #FFFFFF;
  border: 1px solid #CECFCF;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: initial;
}
.btn-submit__wrap.is-disabled .btn-submit {
  background: #CECFCF;
}

.btn-submit {
  display: block;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#FB6159), color-stop(46%, #F06832), to(#E03345));
  background: linear-gradient(90deg, #FB6159 0%, #F06832 46%, #E03345 100%);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.6px;
  cursor: pointer;
  -webkit-transition: background 0.4, color 0.4s;
  transition: background 0.4, color 0.4s;
}
@media screen and (max-width:768px) {
  .btn-submit {
    font-size: 18px;
    letter-spacing: 1.44px;
  }
}

/* 見出し
--------------------------------------------- */
/* セクション見出し */
.section-heading {
  text-align: center;
  position: relative;
  z-index: 2;
}
.section-heading span {
  display: inline-block;
}
.section-heading span.is-large {
  font-size: 54px;
  font-weight: 700;
  letter-spacing: 4.32px;
  color: #07538A;
}
@media screen and (max-width:1440px) {
  .section-heading span.is-large {
    font-size: 50px;
  }
}
@media screen and (max-width:1024px) {
  .section-heading span.is-large {
    font-size: 46px;
  }
}
@media screen and (max-width:900px) {
  .section-heading span.is-large {
    font-size: 42px;
  }
}
@media screen and (max-width:768px) {
  .section-heading span.is-large {
    font-size: 32px;
  }
}
.section-heading span.is-small {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 2.24px;
  color: #333333;
}
@media screen and (max-width:768px) {
  .section-heading span.only-pc {
    display: none;
  }
}
.section-heading::after {
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 128px;
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: 10.24px;
  text-transform: uppercase;
  z-index: -1;
}
@media screen and (max-width:1440px) {
  .section-heading::after {
    font-size: 120px;
  }
}
@media screen and (max-width:1024px) {
  .section-heading::after {
    font-size: 105px;
  }
}
@media screen and (max-width:900px) {
  .section-heading::after {
    font-size: 95px;
  }
}
@media screen and (max-width:768px) {
  .section-heading::after {
    font-size: 51px;
  }
}
.section-heading.section-heading--skyblue {
  color: #C8E9F8;
}
.section-heading.section-heading--gray01 {
  color: #F8F8F8;
}
.section-heading.section-heading--gray02 {
  color: #E8E8E8;
}
@media screen and (max-width:768px) {
  .section-heading.section-heading--number span.is-large {
    font-size: 48px;
  }
  .section-heading.section-heading--number span.is-small {
    font-size: 24px;
  }
}
.section-heading.section-heading--number::after {
  content: "number";
}
@media screen and (max-width:768px) {
  .section-heading.section-heading--number::after {
    font-size: 70px;
    letter-spacing: 5.76px;
  }
}
@media screen and (max-width:768px) {
  .section-heading.section-heading--work span.is-large {
    font-size: 48px;
  }
  .section-heading.section-heading--work span.is-small {
    font-size: 28px;
  }
}
.section-heading.section-heading--work::after {
  content: "work";
}
@media screen and (max-width:768px) {
  .section-heading.section-heading--work::after {
    font-size: 96px;
    letter-spacing: 7.68px;
  }
}
@media screen and (max-width:768px) {
  .section-heading.section-heading--episode span.is-large {
    font-size: 48px;
  }
  .section-heading.section-heading--episode span.is-small {
    font-size: 28px;
  }
}
.section-heading.section-heading--episode::after {
  content: "episode";
}
@media screen and (max-width:768px) {
  .section-heading.section-heading--episode::after {
    font-size: 70px;
    letter-spacing: 5.76px;
  }
}
@media screen and (max-width:768px) {
  .section-heading.section-heading--values span.is-large {
    font-size: 36px;
  }
}
.section-heading.section-heading--values::after {
  content: "values";
}
@media screen and (max-width:768px) {
  .section-heading.section-heading--values::after {
    font-size: 84px;
    letter-spacing: 6.4px;
  }
}
@media screen and (max-width:768px) {
  .section-heading.section-heading--interviews span.is-large {
    font-size: 32px;
  }
}
.section-heading.section-heading--interviews::after {
  content: "interviews";
}
@media screen and (max-width:768px) {
  .section-heading.section-heading--interviews::after {
    font-size: 50px;
    letter-spacing: 4.072px;
  }
}
@media screen and (max-width:768px) {
  .section-heading.section-heading--flow span.is-large {
    font-size: 48px;
  }
}
.section-heading.section-heading--flow::after {
  content: "flow";
}
@media screen and (max-width:768px) {
  .section-heading.section-heading--flow::after {
    font-size: 96px;
    letter-spacing: 7.68px;
  }
}
@media screen and (max-width:768px) {
  .section-heading.section-heading--form span.is-large {
    font-size: 32px;
  }
}
.section-heading.section-heading--form::after {
  content: "form";
}
@media screen and (max-width:768px) {
  .section-heading.section-heading--form::after {
    font-size: 96px;
    letter-spacing: 7.68px;
    color: #A9DDFE;
  }
}
@media (max-width: 1180px) {
  .section-heading.section-heading--description span.is-large {
    font-size: 54px;
  }
}
@media (max-width: 680px) {
  .section-heading.section-heading--description span.is-large {
    font-size: 48px;
  }
}
.section-heading.section-heading--description span.is-en {
  position: absolute;
  top: 53%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
  color: #A9DDFE;
  font-size: 128px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 10.24px;
  z-index: -1;
}
@media (max-width: 1340px) {
  .section-heading.section-heading--description span.is-en {
    font-size: 110px;
  }
}
@media (max-width: 1180px) {
  .section-heading.section-heading--description span.is-en {
    font-size: 95px;
  }
}
@media (max-width: 1030px) {
  .section-heading.section-heading--description span.is-en {
    font-size: 85px;
  }
}
@media (max-width: 950px) {
  .section-heading.section-heading--description span.is-en {
    font-size: 75px;
  }
}
@media (max-width: 850px) {
  .section-heading.section-heading--description span.is-en {
    font-size: 65px;
  }
}
@media screen and (max-width:768px) {
  .section-heading.section-heading--description span.is-en {
    font-size: 55px;
  }
}
@media (max-width: 680px) {
  .section-heading.section-heading--description span.is-en {
    font-size: 45px;
  }
}
@media (max-width: 600px) {
  .section-heading.section-heading--description span.is-en {
    font-size: 35px;
    letter-spacing: 2.8px;
  }
}

/* セクション見出し(文字水色) */
/* セクション見出し(文字白) */
/* inner
--------------------------------------------- */
.inner {
  max-width: 1114px;
  margin: 0 auto;
  padding: 0 17px;
}

/* header
--------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 90;
}
@media screen and (max-width:768px) {
  .header {
    height: 60px;
    padding-left: 17px;
    background-color: rgba(255, 255, 255, 0.4);
  }
}

.header__inner {
  max-width: 1274px;
  margin: 0 auto;
  padding: 0 17px;
  height: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width:768px) {
  .header__inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
  }
}

.header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 225px;
          flex: 0 0 225px;
}
@media screen and (max-width:768px) {
  .header__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 199px;
            flex: 0 0 199px;
  }
}
.header__logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__links {
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 20px;
}
@media screen and (max-width:768px) {
  .header__links {
    display: none;
  }
}

/* SPのみリンク */
.header__link-sp {
  display: none;
}
@media screen and (max-width:768px) {
  .header__link-sp {
    display: grid;
    place-items: center;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60px;
            flex: 0 0 60px;
    height: 100%;
    background-color: #FFFFFF;
  }
}

.header__link-sp-anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__link-sp-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.96px;
  color: #ED5B37;
}

/* footer
--------------------------------------------- */
.footer {
  padding: 80px 0 66px;
  background-color: #CECFCF;
  position: relative;
}
@media screen and (max-width:768px) {
  .footer {
    padding: 60px 0;
  }
}
@media screen and (max-width:768px) {
  .footer::before {
    content: "";
    position: absolute;
    top: -80px;
    right: 16px;
    background-image: url(../img/sp/icon-form.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    display: inline-block;
    width: 148px;
    height: 80px;
  }
  .footer.thanks__footer::before {
    content: none;
  }
}

.footer__inner {
  max-width: 508px;
  margin: 0 auto;
  padding: 0 17px;
}

/* トップ */
.footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width:768px) {
  .footer__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}

.footer__logo img {
  width: 225px;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__address-text {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.56px;
}

/* リンク */
.footer__link-wrap {
  margin-top: 40px;
}
@media screen and (max-width:768px) {
  .footer__link-wrap {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 16px auto 0;
    padding-right: 16px;
  }
}

.footer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 2px;
}
@media screen and (max-width:768px) {
  .footer__link {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.footer__link img {
  width: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__link-text {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.56px;
}

/* コピーライト */
.footer__copyright {
  margin-top: 40px;
  display: block;
  text-align: center;
}

.footer__copyright-text {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.56px;
}
@media screen and (max-width:768px) {
  .footer__copyright-text {
    font-size: 13px;
  }
}

/* ---------- utility ---------- */
/* マーカー */
.u-marker-yellow {
  display: inline;
}

.u-marker-pink {
  display: inline;
  font-weight: 700;
}

.u-underline-yellow {
  text-decoration: underline;
  text-decoration-thickness: 0.4em;
  text-underline-offset: -4px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

/* 改行 */
.u-br-sp {
  display: none;
}
@media screen and (max-width:375px) {
  .u-br-sp {
    display: inline;
  }
}

.u-br-sm {
  display: inline;
}
@media screen and (max-width:500px) {
  .u-br-sm {
    display: none;
  }
}

.u-br-tab {
  display: none;
}
@media screen and (max-width:768px) {
  .u-br-tab {
    display: inline;
  }
}

.u-br-tab-lg {
  display: inline;
}
@media screen and (max-width:800px) {
  .u-br-tab-lg {
    display: none;
  }
}

.u-br-pc {
  display: inline;
}
@media screen and (max-width:1024px) {
  .u-br-pc {
    display: none;
  }
}

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

/* 文字色：メインカラー */
.u-font-main {
  font-weight: 700;
}

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

/* 太字 */
.u-is-bold {
  font-weight: 700;
}

/* fv
--------------------------------------------- */
.fv {
  padding: 80px 0 0;
  background-image: url(../img/pc/fv-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}
@media screen and (max-width:768px) {
  .fv {
    padding: 93px 0 0;
  }
}

.fv__inner {
  display: contents;
}
@media screen and (max-width:800px) {
  .fv__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 18px;
  }
}

.fv__photo {
  display: block;
  width: 84.3%;
  margin-left: auto;
}
@media screen and (max-width:800px) {
  .fv__photo {
    width: 100%;
    margin-left: initial;
    padding-left: 17px;
  }
}

.fv__btn {
  position: absolute;
  right: 100px;
  bottom: 53px;
}
@media screen and (max-width:1240px) {
  .fv__btn {
    right: 50px;
    bottom: 40px;
  }
}
@media screen and (max-width:1024px) {
  .fv__btn {
    right: 20px;
    bottom: 46px;
  }
}
@media screen and (max-width:800px) {
  .fv__btn {
    right: initial;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 16px;
    width: 100%;
    text-align: center;
  }
}

.fv__box {
  position: absolute;
  left: 100px;
  bottom: 30px;
}
@media screen and (max-width:1240px) {
  .fv__box {
    left: 60px;
  }
}
@media screen and (max-width:1024px) {
  .fv__box {
    left: 30px;
  }
}
@media screen and (max-width:800px) {
  .fv__box {
    position: static;
    left: initial;
    bottom: initial;
    padding: 0 17px;
  }
}
@media (max-width: 440px) {
  .fv__box {
    padding: 0 14px;
  }
}
@media (max-width: 400px) {
  .fv__box {
    padding: 0 10px;
  }
}

.fv__box-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 90px;
  font-weight: 700;
  letter-spacing: 5.6px;
}
@media screen and (max-width:1240px) {
  .fv__box-title {
    font-size: 74px;
  }
}
@media screen and (max-width:1024px) {
  .fv__box-title {
    font-size: 60px;
  }
}
@media screen and (max-width:900px) {
  .fv__box-title {
    font-size: 54px;
  }
}
@media screen and (max-width:800px) {
  .fv__box-title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 0;
    background-color: #FFFFFF;
    padding: 5px 9px;
  }
}
@media screen and (max-width:500px) {
  .fv__box-title {
    padding: 5px 5px;
  }
}
.fv__box-title span.is-only-tab {
  display: none;
}
@media screen and (max-width:800px) {
  .fv__box-title span.is-only-tab {
    display: inline-block;
    font-size: 28px;
    letter-spacing: -0.36em;
  }
}
@media (max-width: 440px) {
  .fv__box-title span.is-only-tab {
    font-size: 26px;
  }
}
.fv__box-title span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  background-color: #FFFFFF;
  color: #07538A;
  padding: 0 8px;
}
@media screen and (max-width:800px) {
  .fv__box-title span {
    width: auto;
    background-color: initial;
    padding: 0;
  }
  .fv__box-title span.is-first {
    font-size: 42px;
  }
}
@media screen and (max-width:800px) and (max-width: 600px) {
  .fv__box-title span.is-first {
    font-size: 39px;
  }
}
@media screen and (max-width:800px) and (max-width: 560px) {
  .fv__box-title span.is-first {
    font-size: 37px;
  }
}
@media screen and (max-width:800px) and (max-width: 540px) {
  .fv__box-title span.is-first {
    font-size: 36px;
  }
}
@media screen and (max-width:800px) and (max-width: 530px) {
  .fv__box-title span.is-first {
    font-size: 35px;
  }
}
@media screen and (max-width:800px) and (max-width: 515px) {
  .fv__box-title span.is-first {
    font-size: 34px;
  }
}
@media screen and (max-width:800px) and (max-width: 505px) {
  .fv__box-title span.is-first {
    font-size: 33px;
  }
}
@media screen and (max-width:800px) and (max-width: 494px) {
  .fv__box-title span.is-first {
    font-size: 32px;
  }
}
@media screen and (max-width:800px) and (max-width: 484px) {
  .fv__box-title span.is-first {
    font-size: 31px;
  }
}
@media screen and (max-width:800px) and (max-width: 471px) {
  .fv__box-title span.is-first {
    font-size: 30px;
  }
}
@media screen and (max-width:800px) and (max-width: 462px) {
  .fv__box-title span.is-first {
    font-size: 29px;
  }
}
@media screen and (max-width:800px) and (max-width: 450px) {
  .fv__box-title span.is-first {
    font-size: 28px;
  }
}
@media screen and (max-width:800px) and (max-width: 434px) {
  .fv__box-title span.is-first {
    font-size: 27px;
  }
}
@media screen and (max-width:800px) and (max-width: 422px) {
  .fv__box-title span.is-first {
    font-size: 26px;
  }
}
@media screen and (max-width:800px) and (max-width: 412px) {
  .fv__box-title span.is-first {
    font-size: 25px;
  }
}
@media screen and (max-width:800px) and (max-width: 392px) {
  .fv__box-title span.is-first {
    font-size: 24px;
  }
}
@media screen and (max-width:800px) and (max-width: 382px) {
  .fv__box-title span.is-first {
    font-size: 23px;
  }
}
@media screen and (max-width:800px) and (max-width: 370px) {
  .fv__box-title span.is-first {
    font-size: 22px;
  }
}
@media screen and (max-width:800px) and (max-width: 360px) {
  .fv__box-title span.is-first {
    font-size: 21px;
  }
}
@media screen and (max-width:800px) {
  .fv__box-title span.is-second {
    font-size: 42px;
  }
}
@media screen and (max-width:800px) and (max-width: 600px) {
  .fv__box-title span.is-second {
    font-size: 39px;
  }
}
@media screen and (max-width:800px) and (max-width: 560px) {
  .fv__box-title span.is-second {
    font-size: 37px;
  }
}
@media screen and (max-width:800px) and (max-width: 540px) {
  .fv__box-title span.is-second {
    font-size: 36px;
  }
}
@media screen and (max-width:800px) and (max-width: 530px) {
  .fv__box-title span.is-second {
    font-size: 35px;
  }
}
@media screen and (max-width:800px) and (max-width: 515px) {
  .fv__box-title span.is-second {
    font-size: 34px;
  }
}
@media screen and (max-width:800px) and (max-width: 505px) {
  .fv__box-title span.is-second {
    font-size: 33px;
  }
}
@media screen and (max-width:800px) and (max-width: 494px) {
  .fv__box-title span.is-second {
    font-size: 32px;
  }
}
@media screen and (max-width:800px) and (max-width: 484px) {
  .fv__box-title span.is-second {
    font-size: 31px;
  }
}
@media screen and (max-width:800px) and (max-width: 471px) {
  .fv__box-title span.is-second {
    font-size: 30px;
  }
}
@media screen and (max-width:800px) and (max-width: 462px) {
  .fv__box-title span.is-second {
    font-size: 29px;
  }
}
@media screen and (max-width:800px) and (max-width: 450px) {
  .fv__box-title span.is-second {
    font-size: 28px;
  }
}
@media screen and (max-width:800px) and (max-width: 434px) {
  .fv__box-title span.is-second {
    font-size: 27px;
  }
}
@media screen and (max-width:800px) and (max-width: 422px) {
  .fv__box-title span.is-second {
    font-size: 26px;
  }
}
@media screen and (max-width:800px) and (max-width: 412px) {
  .fv__box-title span.is-second {
    font-size: 25px;
  }
}
@media screen and (max-width:800px) and (max-width: 392px) {
  .fv__box-title span.is-second {
    font-size: 24px;
  }
}
@media screen and (max-width:800px) and (max-width: 382px) {
  .fv__box-title span.is-second {
    font-size: 23px;
  }
}
@media screen and (max-width:800px) and (max-width: 370px) {
  .fv__box-title span.is-second {
    font-size: 22px;
  }
}
@media screen and (max-width:800px) and (max-width: 360px) {
  .fv__box-title span.is-second {
    font-size: 21px;
  }
}

.fv__box-sub-title {
  margin-top: 40px;
  background-color: #FFFFFF;
  color: #07538A;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1.6px;
  padding: 4px 15px 4px 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width:1240px) {
  .fv__box-sub-title {
    font-size: 25px;
  }
}
@media screen and (max-width:1024px) {
  .fv__box-sub-title {
    font-size: 20px;
  }
}
@media screen and (max-width:900px) {
  .fv__box-sub-title {
    margin-top: 20px;
  }
}
@media screen and (max-width:500px) {
  .fv__box-sub-title {
    margin-top: 8px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
    background-color: initial;
    font-size: 18px;
    padding: 0;
  }
  .fv__box-sub-title span {
    display: inline-block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 20px;
    padding: 4px 8px;
    background-color: #FFFFFF;
  }
}

/* sec01
--------------------------------------------- */
.sec01 {
  padding: 80px 0 0;
  background-image: url(../img/pc/lead-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width:800px) {
  .sec01 {
    padding: 64px 0 0;
  }
}
@media screen and (max-width:768px) {
  .sec01 {
    padding: 40px 0 0;
  }
}

.sec01__inner {
  max-width: 1314px;
  margin-left: auto;
}

/* 追加：YouTube紹介 */
.sec01__youtube {
  padding: 0 15px;
  overflow-x: hidden;
}

.sec01__youtube-lead {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.sec01__youtube-lead::before, .sec01__youtube-lead::after {
  content: "";
  position: absolute;
  top: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: inline-block;
  width: 28px;
  height: 72px;
}
.sec01__youtube-lead::before {
  background-image: url(../img/title-deco-left.png);
  left: -28px;
}
.sec01__youtube-lead::after {
  background-image: url(../img/title-deco-right.png);
  right: -28px;
}

.sec01__youtube-lead-text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.7;
}
.sec01__youtube-lead-text span.is-colored {
  color: #F7225D;
}
.sec01__youtube-lead-text span.is-large {
  font-size: 36px;
}

.sec01__youtube-intro {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 18px auto 0;
}
@media screen and (max-width:768px) {
  .sec01__youtube-intro {
    margin-top: 10px;
    position: relative;
  }
  .sec01__youtube-intro::before, .sec01__youtube-intro::after {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    display: inline-block;
    width: 35px;
    height: 61px;
  }
  .sec01__youtube-intro::before {
    background-image: url(../img/sp/youtube-deco-left.png);
    top: 4px;
    left: -23px;
  }
  .sec01__youtube-intro::after {
    background-image: url(../img/sp/youtube-deco-right.png);
    top: -5px;
    right: -21px;
  }
}

.sec01__youtube-intro-text {
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width:768px) {
  .sec01__youtube-intro-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.sec01__youtube-intro-text span.is-first {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.96px;
}
@media screen and (max-width:768px) {
  .sec01__youtube-intro-text span.is-first {
    font-size: 19px;
    letter-spacing: 0.8px;
  }
}
.sec01__youtube-intro-text span.is-second {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 1.12px;
}
@media screen and (max-width:768px) {
  .sec01__youtube-intro-text span.is-second {
    font-size: 22px;
    letter-spacing: 0.76px;
  }
}
.sec01__youtube-intro-text span.is-second span.is-colored {
  color: #F7225D;
}

.sec01__youtube-wrap {
  max-width: 640px;
  margin: 8px auto 0;
  position: relative;
}
.sec01__youtube-wrap::before, .sec01__youtube-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: inline-block;
  width: 242px;
  height: 353px;
  z-index: 2;
}
@media screen and (max-width:768px) {
  .sec01__youtube-wrap::before, .sec01__youtube-wrap::after {
    content: none;
  }
}
.sec01__youtube-wrap::before {
  background-image: url(../img/pc/youtube-deco-left.png);
  left: -242px;
}
.sec01__youtube-wrap::after {
  background-image: url(../img/pc/youtube-deco-right.png);
  right: -242px;
}

.sec01__youtube-inner {
  aspect-ratio: 603/332;
}
@media screen and (max-width:768px) {
  .sec01__youtube-inner {
    aspect-ratio: 342/188;
  }
}
.sec01__youtube-inner iframe {
  width: 100%;
  height: 100%;
}

.sec01__contents {
  margin-top: 240px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 27px;
  position: relative;
}
@media screen and (max-width:1240px) {
  .sec01__contents {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media screen and (max-width:1024px) {
  .sec01__contents {
    gap: 16px;
  }
}
@media screen and (max-width:800px) {
  .sec01__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
@media screen and (max-width:768px) {
  .sec01__contents {
    margin-top: 32px;
  }
}
.sec01__contents::before {
  content: "";
  position: absolute;
  top: -165px;
  left: -82px;
  background-image: url(../img/pc/ticket.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: block;
  width: 632px;
  aspect-ratio: 632/317;
  z-index: 2;
}
@media screen and (max-width:1440px) {
  .sec01__contents::before {
    top: -210px;
    left: 30px;
  }
}
@media screen and (max-width:1240px) {
  .sec01__contents::before {
    width: 470px;
    top: -220px;
    left: 40px;
  }
}
@media screen and (max-width:900px) {
  .sec01__contents::before {
    width: 430px;
  }
}
@media screen and (max-width:800px) {
  .sec01__contents::before {
    content: none;
  }
}
@media (min-width: 1440px) {
  .sec01__contents::before {
    left: 0;
  }
}

.sec01__tab-box {
  display: none;
}
@media screen and (max-width:800px) {
  .sec01__tab-box {
    display: block;
  }
}

.sec01__tab-box-lead {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2.56px;
  text-align: center;
}
.sec01__tab-box-lead span.is-colored {
  color: #ED5B37;
}

.sec01__tab-box-message {
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.72px;
  font-weight: 500;
  text-align: center;
}

.sec01__photo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 781px;
          flex: 0 0 781px;
}
@media screen and (max-width:1440px) {
  .sec01__photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 700px;
            flex: 0 0 700px;
  }
}
@media screen and (max-width:1240px) {
  .sec01__photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 550px;
            flex: 0 0 550px;
  }
}
@media screen and (max-width:900px) {
  .sec01__photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 460px;
            flex: 0 0 460px;
  }
}
@media screen and (max-width:800px) {
  .sec01__photo {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    padding-left: 17px;
  }
}
@media (max-width: 700px) {
  .sec01__photo {
    padding-left: 0;
    padding-right: 17px;
  }
}
.sec01__photo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sec01__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-bottom: 102px;
}
@media screen and (max-width:1240px) {
  .sec01__body {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}
@media screen and (max-width:800px) {
  .sec01__body {
    width: 100%;
    padding-bottom: initial;
    padding: 0 17px;
  }
}

@media screen and (max-width:800px) {
  .sec01__textarea {
    margin-top: 12px;
  }
}

.sec01__text {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 2.24px;
}
@media screen and (max-width:1240px) {
  .sec01__text {
    font-size: 26px;
  }
}
@media screen and (max-width:1024px) {
  .sec01__text {
    font-size: 22px;
  }
}
@media screen and (max-width:900px) {
  .sec01__text {
    font-size: 20px;
  }
}
@media screen and (max-width:800px) {
  .sec01__text {
    font-size: 22px;
    letter-spacing: 1.76px;
  }
}
@media screen and (max-width:768px) {
  .sec01__text {
    text-align: center;
  }
}
.sec01__text span.is-colored {
  color: #ED5B37;
}

.sec01__btn-wrap {
  margin-top: 40px;
}
@media screen and (max-width:768px) {
  .sec01__btn-wrap {
    margin-top: 36px;
    text-align: center;
  }
}

/* sec02
--------------------------------------------- */
.sec02 {
  padding: 100px 0 53px;
  background-image: url(../img/pc/sec02-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width:768px) {
  .sec02 {
    padding: 40px 0 49px;
  }
}

.sec02__top {
  border-radius: 16px;
  position: relative;
}
.sec02__top::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -81px;
  background-image: url(../img/pc/orange-down-triangle.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: inline-block;
  width: 261px;
  height: 118px;
}
@media screen and (max-width:768px) {
  .sec02__top::after {
    width: 173px;
    height: 60px;
    bottom: -82px;
    background-image: url(../img/sp/worries-down-triangle.png);
  }
}

.sec02__top-area01 {
  padding: 48px 0 36px;
  text-align: center;
  background-color: #FFFCF3;
  border-radius: 12px 12px 0 0;
}

.sec02__top-area02 {
  background-color: #EAEAEA;
  padding: 34px 0 60px;
  border-radius: 0 0 12px 12px;
  margin-top: -1px;
  position: relative;
}
@media screen and (max-width:768px) {
  .sec02__top-area02 {
    padding: 40px 0 27px;
  }
}
.sec02__top-area02::before {
  content: "だけど…";
  position: absolute;
  top: -19px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 2px 10px;
  background-color: #07538A;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 1.6px;
}

.sec02__top-area02-box {
  text-align: center;
}

.sec02__top-area02__text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 1.92px;
}
.sec02__top-area02__text span {
  display: inline-block;
}
.sec02__top-area02__text span.is-colored {
  color: #ED5B37;
}
.sec02__top-area02__text span.is-large {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 2.88px;
}
@media screen and (max-width:768px) {
  .sec02__top-area02__text span.is-large {
    font-size: 26px;
  }
}
.sec02__top-area02__text span.has-margin {
  margin-left: 4px;
}
.sec02__top-area02__text img {
  position: relative;
  -webkit-transform: translateY(-7px);
          transform: translateY(-7px);
  width: 31px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width:768px) {
  .sec02__top-area02__text img {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
}

.sec02__top-main-text {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2.56px;
}
@media screen and (max-width:768px) {
  .sec02__top-main-text {
    font-size: 20px;
    letter-spacing: 1.6px;
  }
}

.sec02__top-small-text {
  margin-top: 12px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 1.6px;
}

.sec02__top-sub-text {
  margin-top: 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 1.92px;
}
@media screen and (max-width:1024px) {
  .sec02__top-sub-text {
    font-size: 22px;
  }
}
@media screen and (max-width:900px) {
  .sec02__top-sub-text {
    font-size: 20px;
  }
}
@media screen and (max-width:768px) {
  .sec02__top-sub-text {
    font-size: 24px;
    line-height: 1.4;
  }
}
.sec02__top-sub-text span {
  display: inline-block;
}
.sec02__top-sub-text span.is-large {
  margin: 0 6px;
  color: #ED5B37;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 2.88px;
}
@media screen and (max-width:1024px) {
  .sec02__top-sub-text span.is-large {
    font-size: 32px;
  }
}
@media screen and (max-width:900px) {
  .sec02__top-sub-text span.is-large {
    font-size: 30px;
  }
}

.sec02__top-pics {
  max-width: 978px;
  margin: 28px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width:768px) {
  .sec02__top-pics {
    margin-top: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 16px;
  }
}

.sec02__top-pic {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width:768px) {
  .sec02__top-pic {
    width: 100%;
  }
}
.sec02__top-pic img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sec02__lead-title {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width:768px) {
  .sec02__lead-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 16px;
  }
}
.sec02__lead-title img {
  width: 469px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width:1024px) {
  .sec02__lead-title img {
    width: 400px;
  }
}
@media screen and (max-width:900px) {
  .sec02__lead-title img {
    width: 380px;
  }
}
@media screen and (max-width:500px) {
  .sec02__lead-title img {
    width: 100%;
  }
}
.sec02__lead-title span {
  display: inline-block;
}
.sec02__lead-title span.is-text {
  padding-bottom: 7px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 2.24px;
}
@media screen and (max-width:1024px) {
  .sec02__lead-title span.is-text {
    font-size: 26px;
    padding-bottom: 0;
  }
}
@media screen and (max-width:768px) {
  .sec02__lead-title span.is-text {
    font-size: 28px;
  }
}

.sec02__middle {
  margin-top: 40px;
}
@media screen and (max-width:768px) {
  .sec02__middle {
    margin-top: 24px;
  }
}

.sec02__middle-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 32px;
}
@media screen and (max-width:1024px) {
  .sec02__middle-cards {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    row-gap: 26px;
  }
}
@media screen and (max-width:900px) {
  .sec02__middle-cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.sec02__middle-card {
  width: calc((100% - 40px) / 3);
  border-radius: 24px;
  background-color: #FFFFFF;
  padding: 52px 20px 43px;
}
@media screen and (max-width:900px) {
  .sec02__middle-card {
    width: auto;
  }
}

.sec02__middle-card-body {
  margin-top: 8px;
}

.sec02__middle-card-title {
  text-align: center;
  color: #ED5B37;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 2.24px;
}
@media screen and (max-width:1024px) {
  .sec02__middle-card-title {
    font-size: 24px;
  }
}
@media screen and (max-width:768px) {
  .sec02__middle-card-title {
    font-size: 28px;
  }
}

.sec02__middle-card-text {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.64px;
}
@media screen and (max-width:1024px) {
  .sec02__middle-card-text {
    font-size: 15px;
  }
}
.sec02__middle-card-text span.is-colored {
  color: #ED5B37;
  font-weight: 700;
}

.sec02__middle-card-pic {
  height: 185px;
}
@media screen and (max-width:1024px) {
  .sec02__middle-card-pic {
    height: 150px;
  }
}
@media screen and (max-width:500px) {
  .sec02__middle-card-pic {
    height: auto;
  }
}
.sec02__middle-card-pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.sec02__bottom {
  max-width: 718px;
  margin: 152px auto 0;
}
@media screen and (max-width:1024px) {
  .sec02__bottom {
    margin: 120px auto 0;
  }
}
@media screen and (max-width:800px) {
  .sec02__bottom {
    margin: 64px auto 0;
  }
}
@media screen and (max-width:768px) {
  .sec02__bottom {
    margin: 120px auto 0;
    position: relative;
  }
  .sec02__bottom::before {
    content: "";
    position: absolute;
    top: -96px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-image: url(../img/sp/orange-down-triangle.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    display: inline-block;
    width: 200px;
    height: 72px;
  }
}
.sec02__bottom img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* sec ok
--------------------------------------------- */
.sec-ok {
  background: linear-gradient(173deg, #FEFBE2 39.05%, #FEE3CB 95.57%);
  padding: 52px 0 100px;
}
@media screen and (max-width:768px) {
  .sec-ok {
    padding: 49px 0 60px;
    background: linear-gradient(179deg, #FEFBE2 38.54%, #FEE3CB 57.83%, #FEFBE2 72.3%, #FFD1BE 91.33%);
  }
}

.sec-ok__inner {
  max-width: 1094px;
  margin: 0 auto;
  padding: 0 17px;
}

.sec-ok-lead {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 2.24px;
}
@media screen and (max-width:768px) {
  .sec-ok-lead {
    font-size: 22px;
    letter-spacing: 1.76px;
  }
}
.sec-ok-lead span.is-large {
  font-size: 32px;
  letter-spacing: 2.56px;
}
@media screen and (max-width:768px) {
  .sec-ok-lead span.is-large {
    display: block;
    margin-left: 13px;
    font-size: 36px;
    letter-spacing: 2.88px;
    text-align: center;
  }
}

.sec-ok__btn-wrap {
  margin-top: 52px;
  text-align: center;
}

/* sec03
--------------------------------------------- */
.sec03 {
  background-color: #E8E8E8;
  position: relative;
  overflow-x: hidden;
}
@media screen and (max-width:768px) {
  .sec03 {
    padding: 0 0 60px;
  }
}
@media screen and (max-width:768px) {
  .sec03::before {
    position: absolute;
    top: 11px;
    left: 0;
    background-image: url(../img/sp/blue-line01.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    display: inline-block;
    width: 76px;
    height: 56px;
  }
}
@media screen and (max-width:768px) {
  .sec03::after {
    position: absolute;
    bottom: 6px;
    right: -9px;
    background-image: url(../img/sp/blue-line01.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    display: inline-block;
    width: 76px;
    height: 56px;
  }
}

.sec03__number-heading {
  position: relative;
  z-index: 1;
}
@media screen and (max-width:768px) {
  .sec03__number-heading::before {
    position: absolute;
    top: -66px;
    right: -25px;
    background-image: url(../img/sp/blue-line01.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    display: inline-block;
    width: 76px;
    height: 56px;
  }
}

.sec03__work-heading {
  position: relative;
  z-index: 1;
}
@media screen and (max-width:768px) {
  .sec03__work-heading::before {
    position: absolute;
    top: -50px;
    left: 0px;
    background-image: url(../img/sp/blue-line01.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    display: inline-block;
    width: 76px;
    height: 56px;
  }
}

.sec03__card-wrap {
  padding: 134px 0 116px;
  background-image: url(../img/pc/work-bg01.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width:768px) {
  .sec03__card-wrap {
    padding: 154px 0 20px;
    background-image: url(../img/sp/work-bg01.webp);
  }
}
@media (min-width: 1400px) {
  .sec03__card-wrap {
    padding: 144px 0 134px;
  }
}
@media (min-width: 1500px) {
  .sec03__card-wrap {
    padding: 155px 0 155px;
  }
}
@media (min-width: 1560px) {
  .sec03__card-wrap {
    padding: 175px 0 175px;
  }
}
@media (min-width: 1650px) {
  .sec03__card-wrap {
    padding: 185px 0 185px;
  }
}

.sec03__card {
  max-width: 874px;
  margin: 0 auto;
  background-color: #FFFCF3;
  padding: 44px 100px 51px;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width:1024px) {
  .sec03__card {
    padding: 44px 60px 44px;
  }
}
@media screen and (max-width:900px) {
  .sec03__card {
    padding: 44px 44px 44px;
    margin: 0 17px;
  }
}
@media screen and (max-width:800px) {
  .sec03__card {
    padding: 32px 32px 32px;
  }
}
@media screen and (max-width:768px) {
  .sec03__card {
    padding: 20px 21px 40px;
  }
}
.sec03__card::before {
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../img/pc/text-punctual.webp);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 469px;
  height: 94px;
}
@media screen and (max-width:1024px) {
  .sec03__card::before {
    width: 400px;
  }
}
@media screen and (max-width:900px) {
  .sec03__card::before {
    width: 380px;
    height: 84px;
  }
}
@media screen and (max-width:800px) {
  .sec03__card::before {
    width: 360px;
  }
}
@media screen and (max-width:768px) {
  .sec03__card::before {
    width: 343px;
  }
}
.sec03__card::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -62px;
  background-image: url(../img/pc/icon-magnifying-glass.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: inline-block;
  width: 212px;
  height: 192px;
}
@media screen and (max-width:1024px) {
  .sec03__card::after {
    right: -40px;
    width: 160px;
    height: 130px;
  }
}
@media screen and (max-width:900px) {
  .sec03__card::after {
    right: -30px;
    width: 140px;
    height: 110px;
  }
}
@media screen and (max-width:768px) {
  .sec03__card::after {
    width: 109px;
    height: 100px;
    top: 43px;
    right: -20px;
  }
}
@media screen and (max-width:500px) {
  .sec03__card::after {
    width: 85px;
    height: 80px;
    top: 20px;
    right: -30px;
  }
}
.sec03__card.sec03__card--second {
  margin-top: 282px;
}
@media screen and (max-width:1024px) {
  .sec03__card.sec03__card--second {
    margin-top: 160px;
  }
}
@media screen and (max-width:768px) {
  .sec03__card.sec03__card--second {
    margin-top: 123px;
  }
}
@media screen and (max-width:768px) {
  .sec03__card.sec03__card--second .sec03__card-top-title {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.sec03__card-title {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sec03__work-text {
  width: 149px;
  margin-left: 46px;
}

.sec03__card-icon {
  position: absolute;
}

.sec03__card-top-text {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 2.24px;
}
@media screen and (max-width:1024px) {
  .sec03__card-top-text {
    font-size: 26px;
  }
}
@media screen and (max-width:768px) {
  .sec03__card-top-text {
    font-size: 22px;
  }
}

.sec03__card-top-title {
  margin-top: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: left;
}
@media screen and (max-width:900px) {
  .sec03__card-top-title {
    margin-top: 24px;
  }
}
@media screen and (max-width:768px) {
  .sec03__card-top-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.sec03__card-top-title span {
  display: inline-block;
  color: #07538A;
}
@media screen and (max-width:768px) {
  .sec03__card-top-title span {
    line-height: 1.4;
  }
}
.sec03__card-top-title span.is-first, .sec03__card-top-title span.is-third {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 3.84px;
}
@media screen and (max-width:1024px) {
  .sec03__card-top-title span.is-first, .sec03__card-top-title span.is-third {
    font-size: 44px;
  }
}
@media screen and (max-width:900px) {
  .sec03__card-top-title span.is-first, .sec03__card-top-title span.is-third {
    font-size: 42px;
  }
}
@media screen and (max-width:800px) {
  .sec03__card-top-title span.is-first, .sec03__card-top-title span.is-third {
    font-size: 38px;
  }
}
@media screen and (max-width:768px) {
  .sec03__card-top-title span.is-first, .sec03__card-top-title span.is-third {
    font-size: 36px;
  }
}
@media screen and (max-width:500px) {
  .sec03__card-top-title span.is-first, .sec03__card-top-title span.is-third {
    font-size: 32px;
  }
}
.sec03__card-top-title span.is-second {
  font-size: 51px;
  font-weight: 400;
  margin: 0 4px;
}
@media screen and (max-width:1024px) {
  .sec03__card-top-title span.is-second {
    font-size: 46px;
  }
}
@media screen and (max-width:900px) {
  .sec03__card-top-title span.is-second {
    font-size: 42px;
  }
}
@media screen and (max-width:800px) {
  .sec03__card-top-title span.is-second {
    font-size: 38px;
  }
}
@media screen and (max-width:768px) {
  .sec03__card-top-title span.is-second {
    font-size: 22px;
  }
}

.sec03__card-textarea {
  text-align: left;
  margin-top: 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.72px;
}

.sec03__work-title {
  font-size: 28px;
  color: #07538A;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 2.24px;
}
@media (max-width: 1160px) {
  .sec03__work-title {
    font-size: 26px;
  }
}
@media screen and (max-width:1024px) {
  .sec03__work-title {
    font-size: 28px;
  }
}

.sec03__work-desc {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.72px;
}
@media (max-width: 1160px) {
  .sec03__work-desc {
    font-size: 16px;
  }
}

.sec03__work-example-title {
  margin-top: 32px;
  font-size: 18px;
  background-color: #07538A;
  color: #FFFFFF;
  letter-spacing: 0.72px;
  font-weight: 500;
  line-height: 1.7;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 32px 0 60px;
  margin-left: -60px;
  position: relative;
}
@media screen and (max-width:1440px) {
  .sec03__work-example-title {
    margin-left: -50px;
  }
}
@media screen and (max-width:1240px) {
  .sec03__work-example-title {
    margin-left: -40px;
  }
}
@media (max-width: 1160px) {
  .sec03__work-example-title {
    margin-left: -24px;
  }
}
@media screen and (max-width:768px) {
  .sec03__work-example-title {
    padding: 0 28px 0 32px;
  }
}
.sec03__work-example-title::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-right: 7px solid #FFFFFF;
  border-left: 0;
  z-index: 2;
}

.sec03__work-example-desc {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.64px;
}
@media (max-width: 1160px) {
  .sec03__work-example-desc {
    font-size: 15px;
  }
}
@media screen and (max-width:768px) {
  .sec03__work-example-desc {
    font-size: 16px;
  }
}

.sec03__number {
  padding-top: 69px;
  padding-bottom: 102px;
  background-image: url(../img/pc/work-bg03.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width:768px) {
  .sec03__number {
    background-image: url(../img/sp/work-bg03.webp);
    padding-top: 48px;
    padding-bottom: 0;
  }
}

.sec03__number-inner {
  max-width: 1184px;
  margin: 0 auto;
  padding: 0 17px;
}

.sec03__contents {
  margin-top: 91px;
}
@media screen and (max-width:768px) {
  .sec03__contents {
    margin-top: 40px;
  }
}

.sec03__number-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media screen and (max-width:1024px) {
  .sec03__number-list {
    gap: 24px;
  }
}
@media (max-width: 1150px) {
  .sec03__number-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.sec03__number-item {
  width: calc((100% - 48px) / 3);
  background-color: #FEFFFF;
  padding: 24px 24px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 437px;
}
@media (max-width: 1150px) {
  .sec03__number-item {
    width: 65%;
    margin: 0 auto;
  }
}
@media screen and (max-width:768px) {
  .sec03__number-item {
    width: initial;
    margin: initial;
    padding: 24px 16px 24px;
    min-height: 409px;
  }
}
.sec03__number-item.sec03__number-item--first {
  position: relative;
}
@media screen and (max-width:768px) {
  .sec03__number-item.sec03__number-item--first::before {
    position: absolute;
    left: -26px;
    bottom: -45px;
    background-image: url(../img/sp/blue-line01.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    display: inline-block;
    width: 76px;
    height: 46px;
  }
}
.sec03__number-item.sec03__number-item--second {
  position: relative;
  z-index: 2;
}
.sec03__number-item.sec03__number-item--third {
  position: relative;
}
@media screen and (max-width:768px) {
  .sec03__number-item.sec03__number-item--third::before {
    position: absolute;
    top: -35px;
    right: -20px;
    background-image: url(../img/sp/blue-line04.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    display: inline-block;
    width: 76px;
    height: 36px;
  }
}

.sec03__number-graph {
  margin-top: 10px;
  text-align: center;
}
.sec03__number-graph.is-first img {
  width: 233px;
}
.sec03__number-graph.is-second img {
  width: 215px;
}
.sec03__number-graph.is-third img {
  width: 282px;
}

.sec03__number-title {
  margin-top: 14px;
  text-align: center;
}
.sec03__number-title span {
  display: inline-block;
  color: #07538A;
}
.sec03__number-title span.is-align {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
}
.sec03__number-title span.is-large {
  font-family: "Jost", sans-serif;
  font-size: 62px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 5.12px;
}
@media (max-width: 400px) {
  .sec03__number-title span.is-large {
    font-size: 58px;
    letter-spacing: 0.4px;
  }
}
.sec03__number-title span.is-medium {
  font-size: 48px;
  line-height: 1;
  letter-spacing: 3.84px;
  position: relative;
  -webkit-transform: translateY(-18px);
          transform: translateY(-18px);
}
@media screen and (max-width:1240px) {
  .sec03__number-title span.is-medium {
    font-size: 20px;
  }
}
@media screen and (max-width:768px) {
  .sec03__number-title span.is-medium {
    font-size: 48px;
  }
}
.sec03__number-title span.is-normal {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.6px;
}

.sec03__number-arrow-icon {
  width: 24px;
}

.sec03__number-tag {
  display: inline-block;
  margin: 0 auto;
  color: #FFFFFF;
  background-color: #07538A;
  padding: 2px 10px;
  border-radius: 2px;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.64px;
}

.sec03__number-textarea {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.64px;
}
@media screen and (max-width:1240px) {
  .sec03__number-textarea {
    font-size: 15px;
  }
}
@media screen and (max-width:768px) {
  .sec03__number-textarea {
    margin-top: 20px;
    font-size: 16px;
  }
}
.sec03__number-textarea.is-third {
  margin-top: 36px;
}
@media (max-width: 1150px) {
  .sec03__number-textarea.is-third {
    margin-top: 20px;
  }
}

.sec03__work {
  padding-top: 62px;
  padding-bottom: 199px;
  background-image: url(../img/pc/work-bg02.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width:768px) {
  .sec03__work {
    background-image: url(../img/sp/work-bg02.webp);
    padding-top: 94px;
    padding-bottom: 40px;
  }
}

.sec03__work-list {
  margin-top: 90px;
}
@media screen and (max-width:768px) {
  .sec03__work-list {
    margin-top: 40px;
  }
}

.sec03__work-item {
  max-width: 1260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width:1024px) {
  .sec03__work-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sec03__work-item.sec03__work-item--second {
  position: relative;
}
@media screen and (max-width:768px) {
  .sec03__work-item.sec03__work-item--second::before {
    position: absolute;
    top: 600px;
    left: -6px;
    background-image: url(../img/sp/blue-line03.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    display: inline-block;
    width: 30px;
    height: 40px;
  }
}
.sec03__work-item.sec03__work-item--third {
  position: relative;
}
@media screen and (max-width:768px) {
  .sec03__work-item.sec03__work-item--third::before {
    position: absolute;
    top: -44px;
    right: 12px;
    background-image: url(../img/sp/blue-line02.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    display: inline-block;
    width: 76px;
    height: 46px;
  }
}
@media screen and (max-width:768px) {
  .sec03__work-item.sec03__work-item--third::after {
    content: "";
    position: absolute;
    bottom: -27px;
    left: 34px;
    background-image: url(../img/sp/number-blue-line02.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    display: inline-block;
    width: 76px;
    height: 46px;
  }
}
.sec03__work-item:nth-child(odd) {
  margin-right: auto;
  padding-right: 17px;
}
.sec03__work-item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-left: auto;
  padding-left: 17px;
}
@media screen and (max-width:1024px) {
  .sec03__work-item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sec03__work-item:not(:first-child) {
  margin-top: 80px;
}
@media screen and (max-width:1024px) {
  .sec03__work-item:not(:first-child) {
    margin-top: 120px;
  }
}
@media screen and (max-width:768px) {
  .sec03__work-item:not(:first-child) {
    margin-top: 60px;
  }
}
.sec03__work-item:nth-child(2) {
  margin-top: 180px;
}
@media screen and (max-width:1024px) {
  .sec03__work-item:nth-child(2) {
    margin-top: 120px;
  }
}
@media screen and (max-width:768px) {
  .sec03__work-item:nth-child(2) {
    margin-top: 60px;
  }
}
.sec03__work-item:nth-child(3) {
  margin-top: 253px;
}
@media screen and (max-width:1024px) {
  .sec03__work-item:nth-child(3) {
    margin-top: 120px;
  }
}
@media screen and (max-width:768px) {
  .sec03__work-item:nth-child(3) {
    margin-top: 60px;
  }
}

.sec03__work-photo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 720px;
          flex: 0 0 720px;
}
@media screen and (max-width:1440px) {
  .sec03__work-photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 620px;
            flex: 0 0 620px;
  }
}
@media screen and (max-width:1240px) {
  .sec03__work-photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 520px;
            flex: 0 0 520px;
  }
}
@media (max-width: 1160px) {
  .sec03__work-photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 480px;
            flex: 0 0 480px;
  }
}
@media screen and (max-width:1024px) {
  .sec03__work-photo {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}

.sec03__work-body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 630px;
          flex: 0 0 630px;
  background-color: #FFFFFF;
  padding: 60px;
  position: relative;
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
}
@media screen and (max-width:1440px) {
  .sec03__work-body {
    padding: 50px;
  }
}
@media screen and (max-width:1240px) {
  .sec03__work-body {
    padding: 40px;
  }
}
@media (max-width: 1160px) {
  .sec03__work-body {
    padding: 32px 30px;
  }
}
@media screen and (max-width:1024px) {
  .sec03__work-body {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    -webkit-transform: translateY(-16px);
            transform: translateY(-16px);
    padding: 40px 22px 64px;
  }
}
@media screen and (max-width:768px) {
  .sec03__work-body {
    padding: 40px 22px 40px;
  }
}
.sec03__work-body::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.sec03__work-body.is-first {
  -webkit-transform: translateY(80px) translateX(-80px);
          transform: translateY(80px) translateX(-80px);
}
@media (max-width: 1160px) {
  .sec03__work-body.is-first {
    -webkit-transform: translateY(80px) translateX(-140px);
            transform: translateY(80px) translateX(-140px);
  }
}
@media screen and (max-width:1024px) {
  .sec03__work-body.is-first {
    -webkit-transform: translateY(-16px);
            transform: translateY(-16px);
    margin-left: 17px;
  }
}
@media screen and (max-width:768px) {
  .sec03__work-body.is-first::before {
    position: absolute;
    bottom: -92px;
    right: 0px;
    background-image: url(../img/sp/blue-line01.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    display: inline-block;
    width: 76px;
    height: 56px;
    z-index: 1;
  }
}
.sec03__work-body.is-first::after {
  background-image: url(../img/pc/sec03-work-pic01.webp);
  right: -50px;
  bottom: -37px;
  width: 119px;
  height: 185px;
}
@media screen and (max-width:1240px) {
  .sec03__work-body.is-first::after {
    right: -45px;
    width: 105px;
    height: 170px;
  }
}
@media (max-width: 1160px) {
  .sec03__work-body.is-first::after {
    right: -25px;
    width: 85px;
    height: 140px;
  }
}
@media screen and (max-width:1024px) {
  .sec03__work-body.is-first::after {
    right: -4px;
    bottom: -49px;
    width: 93px;
    height: 123px;
  }
}
.sec03__work-body.is-second {
  -webkit-transform: translateY(80px) translateX(80px);
          transform: translateY(80px) translateX(80px);
}
@media (max-width: 1160px) {
  .sec03__work-body.is-second {
    -webkit-transform: translateY(80px) translateX(140px);
            transform: translateY(80px) translateX(140px);
  }
}
@media screen and (max-width:1024px) {
  .sec03__work-body.is-second {
    -webkit-transform: translateY(-16px);
            transform: translateY(-16px);
    margin-right: 17px;
  }
}
.sec03__work-body.is-second::after {
  background-image: url(../img/pc/sec03-work-pic02.webp);
  right: -157px;
  bottom: -3px;
  width: 217px;
  height: 176px;
}
@media screen and (max-width:1240px) {
  .sec03__work-body.is-second::after {
    right: -150px;
    bottom: -7px;
    width: 190px;
    height: 160px;
  }
}
@media (max-width: 1160px) {
  .sec03__work-body.is-second::after {
    right: -90px;
    width: 150px;
    height: 120px;
  }
}
@media screen and (max-width:1024px) {
  .sec03__work-body.is-second::after {
    left: -6px;
    right: initial;
    bottom: -64px;
    width: 130px;
    height: 107px;
  }
}
.sec03__work-body.is-third {
  -webkit-transform: translateY(80px) translateX(-80px);
          transform: translateY(80px) translateX(-80px);
}
@media (max-width: 1160px) {
  .sec03__work-body.is-third {
    -webkit-transform: translateY(80px) translateX(-140px);
            transform: translateY(80px) translateX(-140px);
  }
}
@media screen and (max-width:1024px) {
  .sec03__work-body.is-third {
    -webkit-transform: translateY(-16px);
            transform: translateY(-16px);
    margin-left: 17px;
  }
}
.sec03__work-body.is-third::after {
  background-image: url(../img/pc/sec03-work-pic03.webp);
  right: -95px;
  bottom: -82px;
  width: 176px;
  height: 246px;
}
@media screen and (max-width:1240px) {
  .sec03__work-body.is-third::after {
    right: -95px;
    bottom: -65px;
    width: 140px;
    height: 200px;
  }
}
@media (max-width: 1160px) {
  .sec03__work-body.is-third::after {
    right: -65px;
    width: 110px;
    height: 180px;
  }
}
@media screen and (max-width:1024px) {
  .sec03__work-body.is-third::after {
    width: 83px;
    height: 123px;
    right: -12px;
    bottom: -61px;
  }
}

/* sec04
--------------------------------------------- */
.sec04 {
  padding: 109px 0 0;
  background-color: #C8E9F8;
}
@media screen and (max-width:768px) {
  .sec04 {
    padding: 60px 0 0;
  }
}

.sec04__lead {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 44px auto 0;
  padding: 0 17px;
}

@media screen and (max-width:768px) {
  .sec04__lead-text-br {
    display: none;
  }
}

.sec04__lead-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 1.6px;
}

.sec04__top {
  margin-top: 100px;
  background-color: #C8E9F8;
}
@media screen and (max-width:768px) {
  .sec04__top {
    margin-top: 40px;
    padding-bottom: 36px;
  }
}

.sec04__top-item {
  max-width: 1294px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 58px;
  background-color: #FFFFFF;
  padding: 60px 0 60px 0;
  position: relative;
}
@media screen and (max-width:1440px) {
  .sec04__top-item {
    gap: 42px;
  }
}
@media (max-width: 1100px) {
  .sec04__top-item {
    padding: 42px 0 42px 0;
    gap: 20px;
  }
}
@media screen and (max-width:1024px) {
  .sec04__top-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-left: 17px;
    margin-right: 17px;
  }
}
@media screen and (max-width:768px) {
  .sec04__top-item {
    padding: 64px 0 42px 0;
  }
}
.sec04__top-item:not(:first-child) {
  margin-top: 100px;
}
@media screen and (max-width:500px) {
  .sec04__top-item:not(:first-child) {
    margin-top: 20px;
  }
}
.sec04__top-item:nth-child(odd) {
  margin-right: auto;
  padding-right: 17px;
  padding-left: 100px;
  border-radius: 0 4px 4px 0;
}
@media screen and (max-width:1440px) {
  .sec04__top-item:nth-child(odd) {
    padding-left: 80px;
  }
}
@media screen and (max-width:1240px) {
  .sec04__top-item:nth-child(odd) {
    padding-left: 60px;
  }
}
@media (max-width: 1100px) {
  .sec04__top-item:nth-child(odd) {
    padding-left: 17px;
  }
}
@media screen and (max-width:1024px) {
  .sec04__top-item:nth-child(odd) {
    margin-left: 17px;
    margin-right: 17px;
  }
}
.sec04__top-item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-left: auto;
  padding-left: 17px;
  padding-right: 100px;
  border-radius: 4px 0 0 4px;
}
@media screen and (max-width:1440px) {
  .sec04__top-item:nth-child(even) {
    padding-right: 80px;
  }
}
@media screen and (max-width:1240px) {
  .sec04__top-item:nth-child(even) {
    padding-right: 60px;
  }
}
@media (max-width: 1100px) {
  .sec04__top-item:nth-child(even) {
    padding-right: 17px;
  }
}
@media screen and (max-width:1024px) {
  .sec04__top-item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-left: 17px;
    margin-right: 17px;
  }
}

.sec04__top-item-place {
  position: absolute;
  top: 0;
  width: 60px;
}
@media screen and (max-width:768px) {
  .sec04__top-item-place {
    width: 45px;
  }
}
.sec04__top-item-place.is-right {
  right: 40px;
}
@media (max-width: 1100px) {
  .sec04__top-item-place.is-right {
    right: 20px;
  }
}
@media screen and (max-width:1024px) {
  .sec04__top-item-place.is-right {
    right: 16px;
  }
}
.sec04__top-item-place.is-left {
  left: 40px;
}
@media (max-width: 1100px) {
  .sec04__top-item-place.is-left {
    left: 20px;
  }
}
@media screen and (max-width:1024px) {
  .sec04__top-item-place.is-left {
    right: 16px;
    left: initial;
  }
}
.sec04__top-item-place img {
  width: 100%;
  height: 100%;
}

.sec04__top-item-photo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 440px;
          flex: 0 0 440px;
}
@media screen and (max-width:1440px) {
  .sec04__top-item-photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 380px;
            flex: 0 0 380px;
  }
}
@media (max-width: 1100px) {
  .sec04__top-item-photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 330px;
            flex: 0 0 330px;
  }
}
@media screen and (max-width:1024px) {
  .sec04__top-item-photo {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}
.sec04__top-item-photo.is-first {
  margin-top: -160px;
}
@media (max-width: 1100px) {
  .sec04__top-item-photo.is-first {
    margin-top: -230px;
  }
}
@media screen and (max-width:1024px) {
  .sec04__top-item-photo.is-first {
    margin-top: 0;
  }
}
.sec04__top-item-photo.is-second {
  margin-top: -230px;
}
@media screen and (max-width:1024px) {
  .sec04__top-item-photo.is-second {
    margin-top: 0;
  }
}
.sec04__top-item-photo.is-third {
  margin-top: -200px;
}
@media (max-width: 1100px) {
  .sec04__top-item-photo.is-third {
    margin-top: -260px;
  }
}
@media screen and (max-width:1024px) {
  .sec04__top-item-photo.is-third {
    margin-top: 0;
  }
}
.sec04__top-item-photo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sec04__top-item-body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 510px;
          flex: 0 0 510px;
}
@media screen and (max-width:1440px) {
  .sec04__top-item-body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 490px;
            flex: 0 0 490px;
  }
}
@media (max-width: 1100px) {
  .sec04__top-item-body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 530px;
            flex: 0 0 530px;
  }
}
@media screen and (max-width:1024px) {
  .sec04__top-item-body {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}

.sec04__top-item-lead {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 2px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.6px;
  line-height: 1.7;
}
@media screen and (max-width:768px) {
  .sec04__top-item-lead {
    display: inline-block;
  }
}
.sec04__top-item-lead span {
  display: inline-block;
}
.sec04__top-item-lead span.is-deco {
  font-size: 20px;
  background-color: #ED5B37;
  color: #FFFFFF;
  padding: 0 2px;
}
@media screen and (max-width:768px) {
  .sec04__top-item-lead span.has-margin {
    margin: 0 4px;
  }
}
@media screen and (max-width:768px) {
  .sec04__top-item-lead span.has-mt {
    margin-top: 2px;
  }
}

.sec04__top-item-heading {
  margin-top: 2px;
  font-size: 36px;
  color: #07538A;
  font-weight: 700;
  letter-spacing: 2.88px;
}
@media screen and (max-width:1440px) {
  .sec04__top-item-heading {
    font-size: 34px;
  }
}
@media (max-width: 1100px) {
  .sec04__top-item-heading {
    font-size: 30px;
  }
}
@media screen and (max-width:768px) {
  .sec04__top-item-heading {
    font-size: 32px;
  }
}

.sec04__top-item-textarea {
  margin-top: 20px;
}

.sec04__top-item-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.72px;
}
.sec04__top-item-text span.is-colored {
  color: #ED5B37;
}

.sec04__top-btn-wrap {
  text-align: center;
  margin-top: 60px;
  padding: 0 17px;
}
@media screen and (max-width:768px) {
  .sec04__top-btn-wrap {
    margin-top: 40px;
  }
}

/* 下部セクション */
.sec04__bottom {
  padding: 50px 0 151px;
  background-color: #EBF9FF;
}
@media screen and (max-width:768px) {
  .sec04__bottom {
    padding: 50px 0 60px;
  }
}

.sec04__wave-bg {
  background-color: #EBF9FF;
}
.sec04__wave-bg img {
  width: 100%;
}

.sec04__bottom-inner {
  max-width: 934px;
  padding: 0 17px;
  margin: 0 auto;
}

.sec04__title {
  text-align: center;
}
.sec04__title img {
  width: 469px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width:1024px) {
  .sec04__title img {
    width: 400px;
  }
}
@media screen and (max-width:800px) {
  .sec04__title img {
    width: 360px;
  }
}
.sec04__title span {
  display: inline-block;
}
.sec04__title span.is-normal {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 2.24px;
}
@media screen and (max-width:1024px) {
  .sec04__title span.is-normal {
    font-size: 26px;
  }
}
@media screen and (max-width:800px) {
  .sec04__title span.is-normal {
    font-size: 24px;
  }
}
@media screen and (max-width:768px) {
  .sec04__title span.is-normal {
    font-size: 22px;
  }
}
@media screen and (max-width:768px) {
  .sec04__title span .is-pc {
    display: none;
  }
}
.sec04__title span.has-left-margin {
  margin-left: -5px;
}
.sec04__title span.is-large {
  font-size: 48px;
  color: #07538A;
  font-weight: 700;
  letter-spacing: 3.84px;
  margin: 0 8px;
  position: relative;
}
@media screen and (max-width:1024px) {
  .sec04__title span.is-large {
    font-size: 42px;
  }
}
@media screen and (max-width:800px) {
  .sec04__title span.is-large {
    font-size: 40px;
  }
}
@media screen and (max-width:768px) {
  .sec04__title span.is-large {
    font-size: 36px;
  }
}
.sec04__title span.is-large::after {
  position: absolute;
  top: 0;
  right: -8px;
  background-image: url(../img/pc/icon-text-deco.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: inline-block;
  width: 30px;
  height: 20px;
}
.sec04__title span.is-bottom {
  margin-top: 16px;
  display: block;
}
@media screen and (max-width:768px) {
  .sec04__title span.is-bottom {
    margin-top: 0;
    display: inline;
  }
}
.sec04__title span.is-tab {
  display: none;
}
@media screen and (max-width:768px) {
  .sec04__title span.is-tab {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 2.24px;
  }
}

.sec04__bottom01 {
  margin-top: 40px;
}
@media screen and (max-width:768px) {
  .sec04__bottom01 {
    margin-top: 24px;
  }
}

.sec04__bottom01-pic img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.sec04__bottom01-body {
  padding: 34px 42px 38px;
  background-color: #FFFFFF;
  border-radius: 12px;
  position: relative;
}
@media screen and (max-width:768px) {
  .sec04__bottom01-body {
    padding: 40px 24px 45px;
  }
}
@media screen and (max-width:500px) {
  .sec04__bottom01-body {
    padding: 40px 20px 45px;
  }
}
@media (max-width: 400px) {
  .sec04__bottom01-body {
    padding: 40px 10px 45px;
  }
}
.sec04__bottom01-body::before, .sec04__bottom01-body::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #07538A;
}
.sec04__bottom01-body::before {
  top: 20px;
  left: 42px;
}
@media screen and (max-width:768px) {
  .sec04__bottom01-body::before {
    top: 16px;
    left: 16px;
  }
}
.sec04__bottom01-body::after {
  top: 20px;
  right: 42px;
}
@media screen and (max-width:768px) {
  .sec04__bottom01-body::after {
    top: 16px;
    right: 16px;
  }
}

.sec04__bottom01-icon01,
.sec04__bottom01-icon02 {
  position: absolute;
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #07538A;
}

.sec04__bottom01-icon01 {
  bottom: 20px;
  left: 42px;
}

.sec04__bottom01-icon02 {
  bottom: 20px;
  right: 42px;
}

.sec04__bottom01-inner {
  display: contents;
}
@media screen and (max-width:768px) {
  .sec04__bottom01-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
  }
}

.sec04__bottom01-items {
  margin: 18px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 28px;
  max-width: 695px;
}
@media screen and (max-width:900px) {
  .sec04__bottom01-items {
    margin: 21px auto 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 16px;
  }
}

.sec04__bottom01-item {
  width: calc((100% - 84px) / 4);
}
@media screen and (max-width:900px) {
  .sec04__bottom01-item {
    width: calc((100% - 32px) / 2);
  }
}
@media screen and (max-width:500px) {
  .sec04__bottom01-item {
    width: calc((100% - 16px) / 2);
  }
}

.sec04__bottom01-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: 1.28px;
  color: #FFFFFF;
  background-color: #07538A;
  padding: 4px 16px;
  border-radius: 30px;
}

.sec01__bottom01-item-title {
  font-size: 18px;
  color: #07538A;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.72px;
  text-align: center;
}
@media screen and (max-width:500px) {
  .sec01__bottom01-item-title {
    font-size: 16px;
  }
}

.sec01__bottom01-item-pic {
  width: 112px;
  height: 112px;
  margin: 0 auto;
}
.sec01__bottom01-item-pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.sec04__bottom02 {
  margin-top: 171px;
  position: relative;
}
@media screen and (max-width:768px) {
  .sec04__bottom02 {
    margin-top: 100px;
    padding: 0 17px;
  }
}
.sec04__bottom02::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -106px;
  background-image: url(../img/pc/orange-down-triangle-sm.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: inline-block;
  width: 160px;
  height: 56px;
}
@media screen and (max-width:768px) {
  .sec04__bottom02::before {
    content: none;
  }
}
@media screen and (max-width:768px) {
  .sec04__bottom02::after {
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: -77px;
    background-image: url(../img/sp/orange-down-triangle.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    display: inline-block;
    width: 64px;
    height: 23px;
  }
}

.sec04__bottom02-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 2.88px;
  position: relative;
}
@media screen and (max-width:1024px) {
  .sec04__bottom02-title {
    font-size: 34px;
  }
}
@media screen and (max-width:900px) {
  .sec04__bottom02-title {
    font-size: 30px;
  }
}
@media screen and (max-width:768px) {
  .sec04__bottom02-title {
    font-size: 28px;
  }
}
.sec04__bottom02-title span.is-colored {
  color: #ED5B37;
}
.sec04__bottom02-title::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 22px;
  display: inline-block;
  background-image: url(../img/pc/sec04-banzai-text.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 131px;
  height: 34px;
}
@media screen and (max-width:1024px) {
  .sec04__bottom02-title::before {
    left: 24px;
  }
}
@media screen and (max-width:900px) {
  .sec04__bottom02-title::before {
    left: 34px;
  }
}
@media screen and (max-width:768px) {
  .sec04__bottom02-title::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.sec04__bottom02-content {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
@media screen and (max-width:768px) {
  .sec04__bottom02-content {
    margin-top: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 26px;
  }
}

.sec04__bottom02-pic {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 240px;
          flex: 0 0 240px;
}
@media screen and (max-width:900px) {
  .sec04__bottom02-pic {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
  }
}
@media screen and (max-width:768px) {
  .sec04__bottom02-pic {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}
.sec04__bottom02-pic img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.sec04__bottom02-body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  position: relative;
}
@media screen and (max-width:768px) {
  .sec04__bottom02-body {
    text-align: center;
  }
}
.sec04__bottom02-body::after {
  content: "";
  position: absolute;
  top: -12px;
  right: 0;
  background-image: url(../img/pc/icon-beginner.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: inline-block;
  width: 103px;
  height: 93px;
}
@media screen and (max-width:900px) {
  .sec04__bottom02-body::after {
    width: 70px;
    height: 70px;
  }
}
@media screen and (max-width:768px) {
  .sec04__bottom02-body::after {
    content: none;
  }
}

.se04__bottom02-lead {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 1.6px;
}
@media (max-width: 400px) {
  .se04__bottom02-lead {
    font-size: 18px;
  }
}
.se04__bottom02-lead span.is-colored {
  color: #ED5B37;
}

.sec04__bottom02-text {
  margin-top: 25px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.72px;
}
@media screen and (max-width:768px) {
  .sec04__bottom02-text {
    margin-top: 12px;
  }
}

.sec04__bottom03 {
  margin-top: 90px;
  background-color: #FFFCF3;
  padding: 68px 56px 40px;
  position: relative;
}
@media screen and (max-width:500px) {
  .sec04__bottom03 {
    padding: 68px 21px 40px;
  }
}
.sec04__bottom03::before {
  content: "";
  position: absolute;
  top: -36px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../img/pc/sec04-down-rect.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 270px;
  height: 80px;
}
@media screen and (max-width:900px) {
  .sec04__bottom03::before {
    width: 240px;
  }
}
@media screen and (max-width:768px) {
  .sec04__bottom03::before {
    background-image: url(../img/sp/sec04-down-rect.png);
    width: 174px;
    height: 73px;
    top: -37px;
  }
}

.sec04__bottom03-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 76px;
}
@media screen and (max-width:768px) {
  .sec04__bottom03-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

.sec04__bottom03-body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.sec04__bottom03-pic {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 135px;
          flex: 0 0 135px;
}
@media screen and (max-width:900px) {
  .sec04__bottom03-pic {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 115px;
            flex: 0 0 115px;
  }
}
@media screen and (max-width:768px) {
  .sec04__bottom03-pic {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 135px;
            flex: 0 0 135px;
    width: 135px;
    -ms-flex-item-align: center;
        align-self: center;
  }
}
.sec04__bottom03-pic img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.sec04__bottom03-lead {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 1.6px;
}
@media screen and (max-width:900px) {
  .sec04__bottom03-lead {
    font-size: 18px;
  }
}
@media screen and (max-width:768px) {
  .sec04__bottom03-lead {
    font-size: 20px;
  }
}
.sec04__bottom03-lead span {
  display: inline-block;
}
.sec04__bottom03-lead span.is-large {
  font-size: 28px;
  color: #FFFFFF;
  background-color: #ED5B37;
  padding: 0 8px;
  margin-right: 5px;
}
@media screen and (max-width:900px) {
  .sec04__bottom03-lead span.is-large {
    font-size: 24px;
  }
}
@media screen and (max-width:768px) {
  .sec04__bottom03-lead span.is-large {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: initial;
    padding: 0;
    margin-right: 0;
    gap: 4px;
  }
}
@media screen and (max-width:768px) {
  .sec04__bottom03-lead span.is-tab {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #ED5B37;
    color: #FFFFFF;
    padding: 0 8px;
  }
}
@media screen and (max-width:768px) {
  .sec04__bottom03-lead span.tab-br {
    display: none;
  }
}
.sec04__bottom03-lead span.tab-display {
  display: none;
}
@media screen and (max-width:768px) {
  .sec04__bottom03-lead span.tab-display {
    background-color: initial;
    display: inline-block;
    margin-left: -47px;
  }
}
@media screen and (max-width:768px) {
  .sec04__bottom03-lead span.is-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.sec04__bottom03-textarea {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.72px;
}
@media screen and (max-width:900px) {
  .sec04__bottom03-textarea {
    font-size: 16px;
  }
}
@media screen and (max-width:768px) {
  .sec04__bottom03-textarea {
    margin-top: 20px;
    font-size: 18px;
  }
}
.sec04__bottom03-textarea span.is-colored {
  color: #ED5B37;
}

/* sec05
--------------------------------------------- */
.sec05 {
  padding: 102px 0 108px;
  background-color: #F8F8F8;
}
@media screen and (max-width:768px) {
  .sec05 {
    padding: 60px 17px;
  }
}

.se05__inner {
  max-width: 828px;
  margin: 0 auto;
  padding: 0 17px;
}

.sec05__lead {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 44px auto 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.6px;
}
@media screen and (max-width:768px) {
  .sec05__lead {
    margin: 12px auto 0;
    font-size: 20px;
    text-align: center;
  }
}

@media screen and (max-width:768px) {
  .sec05__lead-br {
    display: none;
  }
}

.sec05__pic {
  margin-top: 35px;
}
@media screen and (max-width:768px) {
  .sec05__pic {
    margin-top: 20px;
  }
}
.sec05__pic img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* sec06
--------------------------------------------- */
.sec06 {
  padding: 111px 0 100px;
  background-image: url(../img/pc/interviers-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width:768px) {
  .sec06 {
    background-image: url(../img/sp/interviers-bg.webp);
    padding: 60px 0 61px;
  }
}

.sec06__items {
  margin-top: 115px;
}
@media screen and (max-width:768px) {
  .sec06__items {
    margin-top: 40px;
  }
}

.sec06__item-photo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sec06__item-profile {
  margin-top: 16px;
}

.sec06__item-name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 1.6px;
}

.sec06__item-history {
  margin-top: 4px;
  font-size: 14px;
  letter-spacing: 0.56px;
  line-height: 1.5;
}

.sec06__item-textarea {
  margin-top: 16px;
}

.sec06__item-text {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.64px;
}
.sec06__item-text span.is-colored {
  color: #ED5B37;
}

/* slider */
@media screen and (max-width:768px) {
  .swiper-container {
    position: relative;
    padding-bottom: 52px;
  }
}

.swiper-wrapper {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.swiper-slide {
  width: calc((100% - 56px) / 3);
}
@media screen and (max-width:768px) {
  .swiper-slide {
    width: 100%;
  }
}

@media screen and (max-width:768px) {
  .swiper-pagination {
    bottom: 0 !important;
    left: 50% !important;
    -webkit-transform: translateX(-50%) !important;
            transform: translateX(-50%) !important;
  }
}

@media screen and (max-width:768px) {
  .swiper-pagination-bullet {
    background-color: #CECFCF;
    opacity: 1 !important;
    width: 12px !important;
    height: 12px !important;
  }
}

@media screen and (max-width:768px) {
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #07538A;
  }
}

@media screen and (max-width:768px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 13px !important;
  }
}

/* sec-job: 募集要領
--------------------------------------------- */
.sec-job {
  padding: 94px 0 81px;
  background-color: #EBF9FF;
}
@media screen and (max-width:768px) {
  .sec-job {
    padding: 40px 0 40px;
  }
}

.sec-job__inner {
  max-width: 894px;
  margin: 0 auto;
  padding: 0 17px;
}

.sec-job__content {
  margin-top: 72px;
  background-color: #FFFFFF;
  padding: 50px 0 30px;
}
@media screen and (max-width:768px) {
  .sec-job__content {
    margin-top: 32px;
  }
}

.sec-job__items {
  max-width: 660px;
  margin: 0 auto;
}
@media screen and (max-width:768px) {
  .sec-job__items {
    padding: 0 21px;
  }
}

.sec-job__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media screen and (max-width:768px) {
  .sec-job__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.sec-job__item.is-align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width:768px) {
  .sec-job__item.is-align-center {
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
  }
}
.sec-job__item:not(:last-child) {
  padding-bottom: 26px;
  border-bottom: 1px solid #07538A;
}
@media screen and (max-width:768px) {
  .sec-job__item:not(:last-child) {
    padding-bottom: 16px;
  }
}
.sec-job__item:not(:first-child) {
  margin-top: 24px;
}
@media screen and (max-width:768px) {
  .sec-job__item:not(:first-child) {
    margin-top: 16px;
  }
}

.sec-job__term {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 164px;
          flex: 0 0 164px;
  height: 112px;
  display: grid;
  place-items: center;
  color: #FFFFFF;
  background-color: #07538A;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (max-width:768px) {
  .sec-job__term {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    height: auto;
    display: block;
    text-align: center;
    padding: 4px 0;
    font-size: 20px;
    line-height: 1.45;
  }
}
.sec-job__term.is-fourth {
  height: 273px;
}
@media screen and (max-width:768px) {
  .sec-job__term.is-fourth {
    height: auto;
  }
}
.sec-job__term.is-fifth {
  height: 336px;
}
@media screen and (max-width:768px) {
  .sec-job__term.is-fifth {
    height: auto;
  }
}
.sec-job__term.is-sixth {
  height: 2575px;
}
@media screen and (max-width:768px) {
  .sec-job__term.is-sixth {
    height: auto;
  }
}

.sec-job__desc {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (max-width:768px) {
  .sec-job__desc {
    font-size: 13px;
    line-height: 2;
  }
}

/* sec07
--------------------------------------------- */
.sec07 {
  padding: 111px 0 125px;
  background-color: #F8F8F8;
}
@media screen and (max-width:768px) {
  .sec07 {
    padding: 79px 0 45px;
  }
}

.sec07__items {
  margin-top: 118px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 84px;
}
@media screen and (max-width:1440px) {
  .sec07__items {
    gap: 64px;
  }
}
@media screen and (max-width:1024px) {
  .sec07__items {
    gap: 24px;
  }
}
@media screen and (max-width:768px) {
  .sec07__items {
    margin-top: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 43px;
  }
}

.sec07__item {
  width: calc((100% - 252px) / 3);
  position: relative;
}
@media screen and (max-width:768px) {
  .sec07__item {
    width: auto;
  }
}
.sec07__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -47px;
  background-image: url(../img/icon-flow-triangle-right.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: inline-block;
  width: 27px;
  height: 27px;
}
@media screen and (max-width:1440px) {
  .sec07__item:not(:last-child)::after {
    right: -27px;
  }
}
@media screen and (max-width:1024px) {
  .sec07__item:not(:last-child)::after {
    right: -24px;
  }
}
@media screen and (max-width:768px) {
  .sec07__item:not(:last-child)::after {
    content: none;
  }
}
@media screen and (max-width:768px) {
  .sec07__item:not(:first-child)::before {
    content: "";
    position: absolute;
    right: initial;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: -45px;
    background-image: url(../img/icon-flow-triangle-down.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    display: inline-block;
    width: 27px;
    height: 27px;
  }
}

.sec07__item-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 1.92px;
}
@media screen and (max-width:1024px) {
  .sec07__item-title {
    font-size: 22px;
  }
}
@media screen and (max-width:800px) {
  .sec07__item-title {
    font-size: 20px;
  }
}
@media screen and (max-width:768px) {
  .sec07__item-title {
    font-size: 24px;
  }
}

.sec07__item-pic {
  width: 205px;
  height: 205px;
  margin: 0 auto;
}
@media screen and (max-width:1440px) {
  .sec07__item-pic {
    width: 190px;
    height: 190px;
  }
}
@media screen and (max-width:1024px) {
  .sec07__item-pic {
    width: 160px;
    height: 160px;
  }
}
.sec07__item-pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* sec08
--------------------------------------------- */
.sec08 {
  padding: 34px 0 100px;
  background-color: #C8E9F8;
}
@media screen and (max-width:768px) {
  .sec08 {
    padding: 12px 0 80px;
  }
}

.faq__heading {
  font-family: "Jost", sans-serif;
  color: #FFFFFF;
  font-size: 128px;
  line-height: 1.7;
  letter-spacing: 10.24px;
  text-align: center;
}
@media screen and (max-width:1240px) {
  .faq__heading {
    font-size: 114px;
  }
}
@media screen and (max-width:1024px) {
  .faq__heading {
    font-size: 100px;
  }
}
@media screen and (max-width:900px) {
  .faq__heading {
    font-size: 96px;
  }
}

.sec08__inner {
  max-width: 874px;
  margin: 0 auto;
  padding: 0 17px;
}

.sec08__content {
  margin-top: 24px;
}
@media screen and (max-width:768px) {
  .sec08__content {
    margin-top: 23px;
  }
}

.sec08__item {
  border-radius: 10px;
  background-color: #FFFFFF;
  padding: 28px 48px;
}
@media screen and (max-width:1024px) {
  .sec08__item {
    padding: 28px 32px;
  }
}
@media screen and (max-width:768px) {
  .sec08__item {
    padding: 28px 21px;
  }
}
.sec08__item:not(:first-child) {
  margin-top: 24px;
}

.sec08__term {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  padding-right: 16px;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width:768px) {
  .sec08__term {
    gap: 18px;
  }
}
.sec08__term::before, .sec08__term::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  display: inline-block;
  width: 16px;
  height: 2px;
  background-color: #ED5B37;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.sec08__term::after {
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.sec08__term.is-open::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.sec08__desc {
  padding-top: 0;
  border-top: 1px solid #CECFCF;
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  opacity: 0;
  height: 0;
  -webkit-transition: padding-top 0.4s, margin-top 0.4s, line-height 0.4s, height 0.4s, opacity 0.1s;
  transition: padding-top 0.4s, margin-top 0.4s, line-height 0.4s, height 0.4s, opacity 0.1s;
}
.sec08__desc.is-open {
  margin-top: 28px;
  padding-top: 28px;
  line-height: 0;
  opacity: 1;
  height: auto;
}

.sec08__q,
.sec08__a {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
}

.sec08__q {
  color: #ED5B37;
}

.sec08__desc-text,
.sec08__term-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.72px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.sec08__desc-text span.is-colored,
.sec08__term-text span.is-colored {
  color: #ED5B37;
}

.sec08__a {
  color: #07538A;
}

/* sec09
--------------------------------------------- */
.sec09 {
  padding: 100px 0 100px;
  background-image: url(../img/pc/message-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width:768px) {
  .sec09 {
    background-image: url(../img/sp/message-bg-sp.webp);
    background-image: none;
    padding: 62px 17px 38px;
  }
  .sec09::before, .sec09::after {
    content: "";
    position: absolute;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    width: 200px;
    height: 200px;
  }
  .sec09::before {
    background-image: url(../img/sp/top-left-red-circle.webp);
    top: 0;
    left: 0;
  }
  .sec09::after {
    background-image: url(../img/sp/bottom-right-red-circle.webp);
    bottom: -18px;
    right: 0;
  }
}

.sec09__heading {
  font-size: 54px;
  font-weight: 700;
  letter-spacing: 4.32px;
  color: #07538A;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width:1240px) {
  .sec09__heading {
    font-size: 50px;
  }
}
@media screen and (max-width:1024px) {
  .sec09__heading {
    font-size: 46px;
  }
}
@media screen and (max-width:900px) {
  .sec09__heading {
    font-size: 40px;
  }
}
@media screen and (max-width:768px) {
  .sec09__heading {
    font-size: 32px;
  }
}

@media screen and (max-width:768px) {
  .sec09__heading-br {
    display: none;
  }
}

.sec09__textarea {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 48px auto 0;
}
@media screen and (max-width:768px) {
  .sec09__textarea {
    margin: 32px auto 0;
  }
}

.sec09__text {
  font-size: 24px;
  line-height: 1.7;
  letter-spacing: 0.96px;
}
@media screen and (max-width:1240px) {
  .sec09__text {
    font-size: 22px;
  }
}
@media screen and (max-width:1024px) {
  .sec09__text {
    font-size: 20px;
  }
}
@media screen and (max-width:768px) {
  .sec09__text {
    font-size: 24px;
  }
}
.sec09__text:not(:first-child) {
  margin-top: 32px;
}
@media screen and (max-width:1024px) {
  .sec09__text:not(:first-child) {
    margin-top: 26px;
  }
}
@media screen and (max-width:768px) {
  .sec09__text:not(:first-child) {
    margin-top: 24px;
  }
}

.sec09__message {
  color: #07538A;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 2.88px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width:1240px) {
  .sec09__message {
    font-size: 34px;
  }
}
@media screen and (max-width:1024px) {
  .sec09__message {
    font-size: 32px;
  }
}
@media screen and (max-width:900px) {
  .sec09__message {
    font-size: 30px;
  }
}
@media screen and (max-width:768px) {
  .sec09__message {
    font-size: 24px;
    text-align: center;
  }
}

.sec09__bottom-pic {
  margin-top: 42px;
}
.sec09__bottom-pic img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* sec10
--------------------------------------------- */
.sec10 {
  padding: 127px 0 100px;
  background-color: #8ACBF4;
}
@media screen and (max-width:768px) {
  .sec10 {
    padding: 60px 0 60px;
  }
}

.sec10__inner {
  max-width: 874px;
  margin: 0 auto;
  padding: 0 17px;
}

.sec10__form {
  margin-top: 107px;
  position: relative;
}
@media screen and (max-width:768px) {
  .sec10__form {
    margin-top: 40px;
  }
}
.sec10__form::before {
  content: "";
  position: absolute;
  top: -94px;
  right: 0;
  display: inline-block;
  background-image: url(../img/pc/icon-form.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 167px;
  height: 94px;
}
@media screen and (max-width:768px) {
  .sec10__form::before {
    content: none;
  }
}

/* フォーム */
.form {
  background-color: #FFFFFF;
  padding: 60px 100px 60px;
}
@media screen and (max-width:1024px) {
  .form {
    padding: 60px 80px 60px;
  }
}
@media screen and (max-width:900px) {
  .form {
    padding: 60px 60px 60px;
  }
}
@media screen and (max-width:768px) {
  .form {
    padding: 40px 16px 40px;
  }
}

.form__item:not(:first-child) {
  margin-top: 32px;
}

.form__title {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.form__control {
  margin-top: 8px;
}

.form__required,
.form__optional {
  display: inline-block;
  width: 36px;
  height: 18px;
  display: grid;
  place-items: center;
  font-size: 12px;
  line-height: 1;
  border-radius: 2px;
}

.form__required {
  background-color: #ED5B37;
  color: #FFFFFF;
}

.form__optional {
  background-color: #E8E8E8;
  color: #757575;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=number],
textarea {
  width: 100%;
  border: 1px solid #CECFCF;
  padding: 11px 16px 8px;
}

input[type=text]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #CECFCF;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.64px;
}

input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=number]::-moz-placeholder, textarea::-moz-placeholder {
  color: #CECFCF;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.64px;
}

input[type=text]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #CECFCF;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.64px;
}

input[type=text]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=number]::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #CECFCF;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.64px;
}

input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
input[type=number]::placeholder,
textarea::placeholder {
  color: #CECFCF;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.64px;
}

textarea {
  height: 117px;
  resize: none;
}

.form__privacy {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form__privacy-text {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.64px;
}

.form__privacy-link {
  color: #07538A;
}

input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
input[type=checkbox] + span {
  padding-left: 31px;
  cursor: pointer;
  position: relative;
}
input[type=checkbox] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 1px solid #CECFCF;
}
input[type=checkbox] + span::after {
  content: none;
}
input[type=checkbox]:checked + span::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 3px;
  width: 9px;
  height: 5px;
  border-bottom: 1.5px solid #07538A;
  border-left: 1.5px solid #07538A;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.form__btn-wrap {
  margin-top: 32px;
  text-align: center;
}

/* バリデーション */
.error-message {
  display: none;
  margin-top: 8px;
  font-size: 16px;
  color: #ED5B37;
}
@media screen and (max-width:768px) {
  .error-message {
    font-size: 14px;
  }
}
.error-message.is-error {
  display: block;
}

/* thanks
--------------------------------------------- */
.thanks {
  padding: 140px 0 146px;
  background-image: url(../img/pc/thanks-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.thanks__inner {
  max-width: 1234px;
  margin: 0 auto;
  padding: 0 17px;
}
@media (max-width: 450px) {
  .thanks__inner {
    padding: 0 10px;
  }
}

.thanks__content {
  background-color: #FEFFFF;
  padding: 0 86px 91px;
  border-radius: 30px;
}
@media screen and (max-width:1240px) {
  .thanks__content {
    padding: 24px 24px 70px;
  }
}
@media screen and (max-width:768px) {
  .thanks__content {
    padding: 24px 16px 42px;
  }
}
@media (max-width: 450px) {
  .thanks__content {
    padding: 24px 10px 42px;
  }
}

.thanks__title-en {
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  font-size: 128px;
  color: #CECFCF;
  line-height: 1.7;
  font-weight: 600;
  letter-spacing: 10.24px;
  text-align: center;
}
@media screen and (max-width:1240px) {
  .thanks__title-en {
    font-size: 100px;
  }
}
@media screen and (max-width:1024px) {
  .thanks__title-en {
    font-size: 80px;
  }
}
@media screen and (max-width:768px) {
  .thanks__title-en {
    font-size: 64px;
  }
}
@media (max-width: 600px) {
  .thanks__title-en {
    font-size: 50px;
  }
}
@media screen and (max-width:500px) {
  .thanks__title-en {
    font-size: 44px;
  }
}
@media (max-width: 450px) {
  .thanks__title-en {
    font-size: 40px;
    letter-spacing: 5px;
  }
}

.thanks__title-jp {
  text-align: center;
  color: #ED5B37;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 2.88px;
}
@media screen and (max-width:1024px) {
  .thanks__title-jp {
    font-size: 30px;
  }
}
@media screen and (max-width:768px) {
  .thanks__title-jp {
    font-size: 26px;
  }
}
@media (max-width: 600px) {
  .thanks__title-jp {
    font-size: 24px;
  }
}
@media screen and (max-width:500px) {
  .thanks__title-jp {
    font-size: 22px;
  }
}
@media (max-width: 450px) {
  .thanks__title-jp {
    font-size: 18px;
  }
}

.thanks__textarea {
  margin-top: 16px;
  text-align: center;
}

.thanks__message {
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 0.8px;
}
@media screen and (max-width:768px) {
  .thanks__message {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .thanks__message {
    font-size: 16px;
  }
}
@media screen and (max-width:500px) {
  .thanks__message {
    font-size: 14px;
  }
}
.thanks__message:not(:first-child) {
  margin-top: 1em;
}

.thanks__arrow {
  width: 50%;
  max-width: 300px;
  margin: 54px auto;
}
@media screen and (max-width:768px) {
  .thanks__arrow {
    margin: 32px auto;
  }
}
.thanks__arrow img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.thanks__embed {
  margin-top: 32px;
}/*# sourceMappingURL=style.css.map */