@charset "UTF-8";
/* reset */
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 {
  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;
  *font-size: 100%;
  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;
}

/* base */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  font-size: 16px;
}

/* layout */
/* header */
.inner {
  max-width: 792px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 360px) {
  .inner {
    padding: 0 16px;
  }
}

.header {
  height: 76px;
}
@media screen and (max-width:768px) {
  .header {
    height: 50px;
  }
}

.header__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo-link {
  display: block;
}

.header__logo-img {
  width: 105px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width:768px) {
  .header__logo-img {
    width: 86px;
  }
}

/* footer */
.footer {
  padding: 20px 0;
  background-color: #ff8e00;
}

.footer__company {
  text-align: center;
}

@media screen and (max-width:375px) {
  .footer__company {
    font-size: 14px;
  }
}

.footer__company-link {
  display: inline-block;
  margin-left: 10px;
  color: #0000ee;
  text-decoration: underline;
}

.footer__copyright {
  margin-top: 10px;
  text-align: center;
}

.footer__copyright-text {
  color: #fff;
  font-size: 14px;
  line-height: 1.7857142857;
}
@media screen and (max-width: 500px) {
  .footer__copyright-text {
    font-size: 12px;
  }
}

/* component */
/* CTAボタン */
.cta-button__wrap {
  position: relative;
}
@media screen and (max-width:375px) {
  .cta-button__wrap {
    margin-left: -6px;
    margin-right: -6px;
  }
}
.cta-button__wrap.is-scroll {
  max-width: 760px;
  display: block;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 21;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.cta-button__wrap.is-scroll:hover {
  opacity: 0.9;
}

.sticky-button {
  position: fixed;
  bottom: 0;
  left: 50%;
  width: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 48px 16px 24px;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 20;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
@media (max-width: 550px) {
  .sticky-button {
    padding: 38px 16px 20px;
  }
}
@media (max-width: 450px) {
  .sticky-button {
    padding: 32px 16px 18px;
  }
}
@media (max-width: 360px) {
  .sticky-button {
    padding: 32px 6px 18px;
  }
}
.sticky-button.is-visible {
  opacity: 1;
  visibility: visible;
}

.cta-button {
  display: block;
  text-align: center;
  background-color: #13bf5b;
  width: 100%;
  border-radius: 6px;
  -webkit-box-shadow: 0 4px #11ac52;
          box-shadow: 0 4px #11ac52;
  padding: 36px 18px 20px;
  overflow: hidden;
  position: relative;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width:768px) {
  .cta-button {
    padding: 32px 16px 16px;
  }
}
@media (max-width: 700px) {
  .cta-button {
    padding: 28px 16px 14px;
  }
}
@media (max-width: 600px) {
  .cta-button {
    padding: 26px 16px 12px;
  }
}
@media (max-width: 560px) {
  .cta-button {
    padding: 24px 16px 12px;
  }
}
@media (max-width: 450px) {
  .cta-button {
    padding: 26px 16px 12px;
  }
}
.cta-button::after {
  content: "";
  position: absolute;
  top: -10%;
  left: -30%;
  width: 80px;
  height: 100%;
  -webkit-transform: scale(2) rotate(20deg);
          transform: scale(2) rotate(20deg);
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.5) 100%, rgba(255, 255, 255, 0) 0%);
  -webkit-animation-name: shine;
          animation-name: shine;
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.cta-button.is-visible {
  opacity: 1;
  visibility: visible;
}

/* animation */
@-webkit-keyframes shine {
  0% {
    -webkit-transform: scale(0) rotate(25deg);
            transform: scale(0) rotate(25deg);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1) rotate(25deg);
            transform: scale(1) rotate(25deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(25deg);
            transform: scale(50) rotate(25deg);
    opacity: 0;
  }
}
@keyframes shine {
  0% {
    -webkit-transform: scale(0) rotate(25deg);
            transform: scale(0) rotate(25deg);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1) rotate(25deg);
            transform: scale(1) rotate(25deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(25deg);
            transform: scale(50) rotate(25deg);
    opacity: 0;
  }
}
.cta-button-lead {
  font-size: 26px;
  letter-spacing: 0.1em;
  font-weight: 700;
  border: 2px solid #13bf5b;
  border-radius: 6px;
  background-color: #fff;
  padding: 8px;
  display: block;
  max-width: 560px;
  width: 100%;
  text-align: center;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -25%;
  z-index: 2;
}
@media screen and (max-width:768px) {
  .cta-button-lead {
    max-width: 442px;
    font-size: 24px;
  }
}
@media (max-width: 700px) {
  .cta-button-lead {
    font-size: 20px;
    padding: 6px;
    max-width: 420px;
  }
}
@media (max-width: 600px) {
  .cta-button-lead {
    max-width: 380px;
  }
}
@media (max-width: 560px) {
  .cta-button-lead {
    max-width: 360px;
    font-size: 18px;
  }
}
@media (max-width: 500px) {
  .cta-button-lead {
    max-width: 336px;
    font-size: 16px;
  }
}
@media (max-width: 450px) {
  .cta-button-lead {
    max-width: 310px;
  }
}
@media (max-width: 400px) {
  .cta-button-lead {
    max-width: 296px;
  }
}
@media screen and (max-width:375px) {
  .cta-button-lead {
    max-width: 276px;
  }
}
.cta-button-lead span.is-colored {
  color: #db1d32;
}

.cta-button-main {
  display: block;
  font-size: 42px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width:768px) {
  .cta-button-main {
    font-size: 36px;
  }
}
@media (max-width: 700px) {
  .cta-button-main {
    font-size: 32px;
  }
}
@media (max-width: 600px) {
  .cta-button-main {
    font-size: 30px;
  }
}
@media (max-width: 560px) {
  .cta-button-main {
    font-size: 28px;
  }
}
@media (max-width: 500px) {
  .cta-button-main {
    font-size: 26px;
  }
}
@media (max-width: 450px) {
  .cta-button-main {
    font-size: 24px;
  }
}
@media (max-width: 400px) {
  .cta-button-main {
    font-size: 21px;
  }
}
@media screen and (max-width:375px) {
  .cta-button-main {
    font-size: 20px;
  }
}
.cta-button-main span.is-decoration {
  text-shadow: none;
  display: inline-block;
  width: 1px;
  height: 40px;
  background-color: #fff;
  margin: 0 20px;
  position: relative;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}
@media screen and (max-width:768px) {
  .cta-button-main span.is-decoration {
    height: 20px;
    margin: 0 10px 2px 12px;
  }
}

/* セクションタイトル */
.section-title {
  background-color: #ff8e00;
  padding: 20px 0;
  text-align: center;
  font-size: 31.33px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.15em;
  position: relative;
  z-index: 2;
}
@media screen and (max-width:768px) {
  .section-title {
    padding: 18px 0;
    font-size: 28px;
  }
}
@media (max-width: 650px) {
  .section-title {
    font-size: 27px;
  }
}
@media (max-width: 560px) {
  .section-title {
    font-size: 24px;
  }
}
@media (max-width: 500px) {
  .section-title {
    font-size: 22px;
  }
}
@media (max-width: 450px) {
  .section-title {
    font-size: 20px;
  }
}
@media (max-width: 400px) {
  .section-title {
    font-size: 18px;
  }
}
@media (max-width: 350px) {
  .section-title {
    font-size: 17px;
  }
}
.section-title::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 10px solid #ff8e00;
  border-bottom: 0;
}
.section-title span.is-large {
  color: #333333;
  font-size: 48.96px;
  letter-spacing: 0.05em;
}
@media screen and (max-width:768px) {
  .section-title span.is-large {
    font-size: 44px;
  }
}
@media (max-width: 650px) {
  .section-title span.is-large {
    font-size: 40px;
  }
}
@media (max-width: 560px) {
  .section-title span.is-large {
    font-size: 34px;
  }
}
@media (max-width: 500px) {
  .section-title span.is-large {
    font-size: 30px;
  }
}
@media (max-width: 450px) {
  .section-title span.is-large {
    font-size: 26px;
  }
}
@media (max-width: 400px) {
  .section-title span.is-large {
    font-size: 24px;
  }
}
@media (max-width: 350px) {
  .section-title span.is-large {
    font-size: 20px;
  }
}

/* utility */
.u-br-sp {
  display: none;
}
@media screen and (max-width:768px) {
  .u-br-sp {
    display: block;
  }
}

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

/* < 375 */
.u-br-sm {
  display: none;
}
@media screen and (max-width:375px) {
  .u-br-sm {
    display: block;
  }
}

/* fv */
.fv {
  height: 453px;
  background-color: #ff8e00;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width:768px) {
  .fv {
    height: auto;
  }
}
.fv::before, .fv::after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  z-index: 2;
}
@media screen and (max-width:768px) {
  .fv::before, .fv::after {
    content: none;
  }
}
.fv::before {
  background-image: url(../img/fv-deco-left.webp);
  left: -16px;
  bottom: -45px;
  width: 215px;
  height: 285px;
}
@media screen and (max-width:768px) {
  .fv::before {
    background-image: url(../img/fv-deco-left-sp.webp);
    width: 154px;
    height: 130px;
    left: 0;
    bottom: 0;
  }
}
.fv::after {
  background-image: url(../img/fv-deco-right.webp);
  right: -8px;
  top: -35px;
  width: 192px;
  height: 228px;
}
@media screen and (max-width:768px) {
  .fv::after {
    background-image: url(../img/fv-deco-right-sp.webp);
    right: 0;
    top: 142px;
    width: 70px;
    height: 66px;
  }
}

.fv__tab {
  display: none;
}
@media screen and (max-width:768px) {
  .fv__tab {
    display: block;
    width: 100%;
    height: 100%;
  }
}
.fv__tab img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.fv__inner {
  height: 100%;
}
@media screen and (max-width:768px) {
  .fv__inner {
    display: none;
  }
}
@media (max-width: 1400px) {
  .fv__inner {
    margin-left: 21%;
  }
}
@media (max-width: 1330px) {
  .fv__inner {
    margin-left: 15%;
  }
}
@media (max-width: 1280px) {
  .fv__inner {
    margin-left: 13%;
  }
}
@media (max-width: 1250px) {
  .fv__inner {
    margin-left: 11%;
  }
}
@media (max-width: 1220px) {
  .fv__inner {
    margin-left: 8%;
  }
}
@media (max-width: 1180px) {
  .fv__inner {
    margin-left: 5%;
  }
}
@media (max-width: 1140px) {
  .fv__inner {
    margin-left: 3%;
  }
}

.fv__pic {
  position: absolute;
  right: 17%;
  bottom: 0;
  height: 100%;
  z-index: 3;
}
@media (max-width: 2000px) {
  .fv__pic {
    right: 17%;
  }
}
@media (max-width: 1900px) {
  .fv__pic {
    right: 14%;
  }
}
@media (max-width: 1800px) {
  .fv__pic {
    right: 12%;
  }
}
@media (max-width: 1700px) {
  .fv__pic {
    right: 10%;
  }
}
@media (max-width: 1600px) {
  .fv__pic {
    right: 7%;
  }
}
@media (max-width: 1500px) {
  .fv__pic {
    right: 2.5714%;
  }
}
@media (max-width: 900px) {
  .fv__pic {
    right: 0;
  }
}
@media screen and (max-width:768px) {
  .fv__pic {
    width: 48%;
    height: 58%;
    right: 6px;
  }
}
@media (max-width: 370px) {
  .fv__pic {
    width: 46%;
    height: 53%;
    right: 0;
  }
}
@media (max-width: 355px) {
  .fv__pic {
    height: 50%;
  }
}
@media (max-width: 330px) {
  .fv__pic {
    height: 48%;
  }
}
.fv__pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width:768px) {
  .fv__pic img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.fv__sp-bg {
  display: none;
}
@media (max-width: 768px) {
  .fv__sp-bg {
    position: absolute;
    bottom: -168px;
    right: 0;
    display: block;
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 650px) {
  .fv__sp-bg {
    height: 95%;
  }
}
@media (max-width: 600px) {
  .fv__sp-bg {
    height: 79%;
  }
}
@media (max-width: 480px) {
  .fv__sp-bg {
    height: 65%;
  }
}
@media (max-width: 400px) {
  .fv__sp-bg {
    height: 56%;
  }
}
.fv__sp-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__text-box {
  padding-top: 60px;
  position: relative;
  z-index: 4;
}
@media screen and (max-width:768px) {
  .fv__text-box {
    padding-top: 46px;
  }
}
@media screen and (max-width: 500px) {
  .fv__text-box {
    padding-top: 18px;
  }
}

.fv__balloon-text {
  background-color: #fff;
  padding: 16px 20px 17px;
  border-radius: 26px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  position: relative;
}
@media (max-width: 840px) {
  .fv__balloon-text {
    font-size: 18px;
  }
}
@media screen and (max-width:768px) {
  .fv__balloon-text {
    font-size: 16px;
    padding: 10px 18px;
  }
}
@media (max-width: 365px) {
  .fv__balloon-text {
    font-size: 15px;
  }
}
@media (max-width: 350px) {
  .fv__balloon-text {
    font-size: 14px;
  }
}
.fv__balloon-text::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 72px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 10px solid #fff;
  border-bottom: 0;
}

.fv__lead-text {
  margin-top: 34px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-left: -7px;
}
@media (max-width: 1000px) {
  .fv__lead-text {
    font-size: 28px;
  }
}
@media (max-width: 960px) {
  .fv__lead-text {
    font-size: 26px;
  }
}
@media (max-width: 900px) {
  .fv__lead-text {
    font-size: 24px;
  }
}
@media (max-width: 830px) {
  .fv__lead-text {
    font-size: 21px;
  }
}
@media screen and (max-width:768px) {
  .fv__lead-text {
    margin-top: 18px;
    font-size: 19px;
  }
}
@media (max-width: 350px) {
  .fv__lead-text {
    font-size: 17px;
  }
}
.fv__lead-text span.has-margin {
  display: inline-block;
  margin-left: -8px;
}

.fv__main-text {
  margin-top: 16px;
  font-size: 50px;
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
@media (max-width: 1000px) {
  .fv__main-text {
    font-size: 46px;
  }
}
@media (max-width: 960px) {
  .fv__main-text {
    font-size: 40px;
  }
}
@media (max-width: 900px) {
  .fv__main-text {
    font-size: 36px;
  }
}
@media (max-width: 840px) {
  .fv__main-text {
    font-size: 31px;
  }
}
@media screen and (max-width:768px) {
  .fv__main-text {
    margin-top: 4px;
    font-size: 29px;
  }
}
@media (max-width: 360px) {
  .fv__main-text {
    font-size: 27px;
  }
}
@media (max-width: 330px) {
  .fv__main-text {
    font-size: 26px;
  }
}
.fv__main-text span.is-small {
  font-size: 36px;
}
@media (max-width: 1000px) {
  .fv__main-text span.is-small {
    font-size: 34px;
  }
}
@media (max-width: 960px) {
  .fv__main-text span.is-small {
    font-size: 32px;
  }
}
@media (max-width: 900px) {
  .fv__main-text span.is-small {
    font-size: 30px;
  }
}
@media (max-width: 840px) {
  .fv__main-text span.is-small {
    font-size: 28px;
  }
}
@media screen and (max-width:768px) {
  .fv__main-text span.is-small {
    font-size: 21px;
  }
}

.fv__tag-list {
  margin-top: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}
@media screen and (max-width:768px) {
  .fv__tag-list {
    margin-top: 14px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 6px;
  }
}

.fv__tag-item {
  font-size: 20px;
  background-color: #fff;
  padding: 8px;
  font-weight: 700;
}
@media (max-width: 900px) {
  .fv__tag-item {
    font-size: 18px;
  }
}
@media screen and (max-width:768px) {
  .fv__tag-item {
    font-size: 16px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 6px;
  }
}
@media (max-width: 350px) {
  .fv__tag-item {
    font-size: 15px;
  }
}

/* sec01 */
.sec01 {
  padding: 20px 0 40px;
  background-color: #fffde4;
  background-image: url(../img/grid_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.sec01__heading {
  font-size: 32px;
  line-height: 1.375;
  letter-spacing: 0.01em;
  font-weight: 700;
  text-align: center;
  position: relative;
}
@media screen and (max-width:768px) {
  .sec01__heading {
    font-size: 26px;
  }
}
@media (max-width: 650px) {
  .sec01__heading {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .sec01__heading {
    font-size: 22px;
  }
}
@media (max-width: 550px) {
  .sec01__heading {
    font-size: 20px;
  }
}
.sec01__heading span.has-dot {
  background-image: radial-gradient(circle at center, #ff8e00 20%, transparent 20%);
  background-position: top right 1px;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: 5px;
}
.sec01__heading span.is-alert {
  color: #db1d32;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1578947368;
}
@media screen and (max-width:768px) {
  .sec01__heading span.is-alert {
    font-size: 32px;
  }
}
@media (max-width: 650px) {
  .sec01__heading span.is-alert {
    font-size: 30px;
  }
}
@media (max-width: 600px) {
  .sec01__heading span.is-alert {
    font-size: 28px;
  }
}
@media (max-width: 550px) {
  .sec01__heading span.is-alert {
    font-size: 26px;
  }
}
@media (max-width: 500px) {
  .sec01__heading span.is-alert {
    font-size: 24px;
  }
}
.sec01__heading span.is-number {
  font-family: "din-2014", sans-serif;
  font-size: 50px;
  font-weight: 700;
}
@media screen and (max-width:768px) {
  .sec01__heading span.is-number {
    font-size: 46px;
  }
}
@media (max-width: 650px) {
  .sec01__heading span.is-number {
    font-size: 44px;
  }
}
@media (max-width: 600px) {
  .sec01__heading span.is-number {
    font-size: 40px;
  }
}
@media (max-width: 550px) {
  .sec01__heading span.is-number {
    font-size: 38px;
  }
}
@media (max-width: 500px) {
  .sec01__heading span.is-number {
    font-size: 36px;
  }
}
.sec01__heading span.has-sp-margin {
  display: inline-block;
  margin-top: 10px;
}
@media screen and (max-width:375px) {
  .sec01__heading span.has-mt {
    display: inline-block;
    margin-top: -4px;
  }
}
.sec01__heading::before, .sec01__heading::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 40px;
  height: 58px;
}
@media screen and (max-width:768px) {
  .sec01__heading::before, .sec01__heading::after {
    width: 45px;
    height: 45px;
  }
}
.sec01__heading::before {
  background-image: url(../img/icon-banzai-left.webp);
  bottom: 8px;
  left: 0;
}
@media (max-width: 768px) {
  .sec01__heading::before {
    bottom: 6px;
    left: 128px;
  }
}
@media (max-width: 700px) {
  .sec01__heading::before {
    bottom: 6px;
    left: 100px;
  }
}
@media (max-width: 650px) {
  .sec01__heading::before {
    bottom: 6px;
    left: 85px;
  }
}
@media (max-width: 550px) {
  .sec01__heading::before {
    bottom: 6px;
    left: 70px;
  }
}
@media (max-width: 520px) {
  .sec01__heading::before {
    bottom: 6px;
    left: 60px;
  }
}
@media (max-width: 500px) {
  .sec01__heading::before {
    bottom: 6px;
    left: 50px;
  }
}
@media (max-width: 460px) {
  .sec01__heading::before {
    bottom: 6px;
    left: 30px;
  }
}
@media (max-width: 430px) {
  .sec01__heading::before {
    bottom: 6px;
    left: 10px;
  }
}
@media (max-width: 390px) {
  .sec01__heading::before {
    bottom: 6px;
    left: -10px;
  }
}
@media (max-width: 375px) {
  .sec01__heading::before {
    bottom: 6px;
    left: -4px;
  }
}
@media (max-width: 360px) {
  .sec01__heading::before {
    bottom: 6px;
    left: -15px;
  }
}
.sec01__heading::after {
  background-image: url(../img/icon-banzai-right.webp);
  bottom: 8px;
  right: 0;
}
@media (max-width: 768px) {
  .sec01__heading::after {
    bottom: 6px;
    right: 128px;
  }
}
@media (max-width: 700px) {
  .sec01__heading::after {
    bottom: 6px;
    right: 100px;
  }
}
@media (max-width: 650px) {
  .sec01__heading::after {
    bottom: 6px;
    right: 85px;
  }
}
@media (max-width: 550px) {
  .sec01__heading::after {
    bottom: 6px;
    right: 70px;
  }
}
@media (max-width: 520px) {
  .sec01__heading::after {
    bottom: 6px;
    right: 60px;
  }
}
@media (max-width: 500px) {
  .sec01__heading::after {
    bottom: 6px;
    right: 50px;
  }
}
@media (max-width: 460px) {
  .sec01__heading::after {
    bottom: 6px;
    right: 30px;
  }
}
@media (max-width: 430px) {
  .sec01__heading::after {
    bottom: 6px;
    right: 10px;
  }
}
@media (max-width: 390px) {
  .sec01__heading::after {
    bottom: 6px;
    right: -10px;
  }
}
@media (max-width: 375px) {
  .sec01__heading::after {
    bottom: 6px;
    right: -4px;
  }
}
@media (max-width: 360px) {
  .sec01__heading::after {
    bottom: 6px;
    right: -15px;
  }
}

.sec01__badge-list {
  max-width: 700px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 3%;
     -moz-column-gap: 3%;
          column-gap: 3%;
}
@media screen and (max-width:768px) {
  .sec01__badge-list {
    margin: 24px auto 0;
  }
}
@media screen and (max-width: 500px) {
  .sec01__badge-list {
    margin: 16px auto 0;
  }
}

.sec01__notice {
  text-align: center;
  margin-top: -5px;
}

.sec01__notice-text {
  font-size: 12px;
}
@media screen and (max-width:375px) {
  .sec01__notice-text {
    font-size: 10px;
  }
}

.sec01__button-wrap {
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  margin-top: 46px;
}
@media (max-width: 500px) {
  .sec01__button-wrap {
    margin-top: 30px;
  }
}
.sec01__button-wrap:hover {
  opacity: 0.9;
}

/* sec02 */
.sec02 {
  padding: 0 0 60px;
  background-image: url(../img/grid_bg_white.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}
@media screen and (max-width:768px) {
  .sec02 {
    padding: 0 0 40px;
  }
}
.sec02::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -34px;
  background-image: url(../img/icon-triple-down-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: block;
  width: 20px;
  height: 60px;
}

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

.sec02__item:not(:first-child) {
  margin-top: 40px;
}

.sec02__item-inner {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width:768px) {
  .sec02__item-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
  }
}

.sec02__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (max-width:768px) {
  .sec02__title {
    gap: 10px;
  }
}
@media screen and (max-width:375px) {
  .sec02__title {
    gap: 6px;
  }
}

.sec02__title-text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: 30px;
  color: #ff5500;
  font-weight: 700;
}
@media screen and (max-width:768px) {
  .sec02__title-text {
    font-size: 28px;
  }
}
@media (max-width: 600px) {
  .sec02__title-text {
    font-size: 24px;
  }
}
@media (max-width: 550px) {
  .sec02__title-text {
    font-size: 22px;
  }
}
@media (max-width: 500px) {
  .sec02__title-text {
    font-size: 20px;
  }
}
@media (max-width: 460px) {
  .sec02__title-text {
    font-size: 18px;
  }
}

.sec02__text {
  font-size: 20px;
}
@media screen and (max-width:768px) {
  .sec02__text {
    font-size: 16px;
  }
}
@media screen and (max-width:375px) {
  .sec02__text {
    font-size: 14px;
  }
}
.sec02__text:not(:first-child) {
  margin-top: 10px;
}

.sec02__check-icon {
  width: 32px;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
@media screen and (max-width:768px) {
  .sec02__check-icon {
    width: 28px;
  }
}
@media (max-width: 460px) {
  .sec02__check-icon {
    width: 26px;
  }
}
@media screen and (max-width:375px) {
  .sec02__check-icon {
    width: 24px;
  }
}

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

.sec02__img-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 128px;
          flex: 0 0 128px;
  height: 108px;
}
.sec02__img-wrap.is-second {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
  height: 115px;
}
.sec02__img-wrap.is-third {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 108px;
          flex: 0 0 108px;
  height: 109px;
}
.sec02__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.sec02__person-icon {
  width: 125px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width:768px) {
  .sec02__person-icon {
    height: 100%;
  }
}

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

@media screen and (max-width: 360px) {
  .sec03__inner {
    padding: 0 10px;
  }
}

.sec03__heading {
  position: relative;
  text-align: center;
  font-size: 36px;
  letter-spacing: 0.1em;
  font-weight: 700;
  z-index: 2;
}
@media (max-width: 880px) {
  .sec03__heading {
    font-size: 34px;
  }
}
@media (max-width: 830px) {
  .sec03__heading {
    font-size: 32px;
  }
}
@media screen and (max-width:768px) {
  .sec03__heading {
    font-size: 30px;
  }
}
@media (max-width: 690px) {
  .sec03__heading {
    font-size: 30px;
  }
}
@media (max-width: 650px) {
  .sec03__heading {
    font-size: 28px;
  }
}
@media (max-width: 600px) {
  .sec03__heading {
    font-size: 26px;
    margin-left: -6px;
    margin-right: -6px;
  }
}
@media (max-width: 550px) {
  .sec03__heading {
    font-size: 24px;
  }
}
@media (max-width: 500px) {
  .sec03__heading {
    font-size: 22px;
  }
}
@media (max-width: 450px) {
  .sec03__heading {
    font-size: 20px;
  }
}
@media (max-width: 400px) {
  .sec03__heading {
    font-size: 18px;
  }
}
@media screen and (max-width:375px) {
  .sec03__heading {
    font-size: 16px;
  }
}
.sec03__heading::before, .sec03__heading::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 30px;
  height: 48px;
}
@media (max-width: 600px) {
  .sec03__heading::before, .sec03__heading::after {
    width: 26px;
    height: 44px;
  }
}
@media (max-width: 560px) {
  .sec03__heading::before, .sec03__heading::after {
    width: 24px;
    height: 40px;
  }
}
@media (max-width: 450px) {
  .sec03__heading::before, .sec03__heading::after {
    width: 20px;
    height: 35px;
  }
}
.sec03__heading::before {
  background-image: url(../img/icon-banzai-left.webp);
  top: 8px;
  left: 13px;
}
@media (max-width: 880px) {
  .sec03__heading::before {
    left: 4px;
  }
}
@media screen and (max-width:768px) {
  .sec03__heading::before {
    top: -3px;
  }
}
@media (max-width: 480px) {
  .sec03__heading::before {
    left: 5px;
  }
}
@media (max-width: 460px) {
  .sec03__heading::before {
    left: -3px;
  }
}
@media (max-width: 400px) {
  .sec03__heading::before {
    left: -5px;
  }
}
.sec03__heading::after {
  background-image: url(../img/icon-banzai-right.webp);
  top: 8px;
  right: 13px;
}
@media (max-width: 880px) {
  .sec03__heading::after {
    right: 4px;
  }
}
@media screen and (max-width:768px) {
  .sec03__heading::after {
    top: -3px;
  }
}
@media (max-width: 480px) {
  .sec03__heading::after {
    right: 5px;
  }
}
@media (max-width: 460px) {
  .sec03__heading::after {
    right: -3px;
  }
}
@media (max-width: 400px) {
  .sec03__heading::after {
    right: -5px;
  }
}
.sec03__heading span.is-large {
  font-size: 48px;
  letter-spacing: 0.1em;
}
@media screen and (max-width:768px) {
  .sec03__heading span.is-large {
    font-size: 44px;
  }
}
@media (max-width: 690px) {
  .sec03__heading span.is-large {
    font-size: 42px;
  }
}
@media (max-width: 650px) {
  .sec03__heading span.is-large {
    font-size: 40px;
  }
}
@media (max-width: 600px) {
  .sec03__heading span.is-large {
    font-size: 36px;
  }
}
@media (max-width: 550px) {
  .sec03__heading span.is-large {
    font-size: 30px;
  }
}
@media (max-width: 450px) {
  .sec03__heading span.is-large {
    font-size: 28px;
  }
}
@media (max-width: 430px) {
  .sec03__heading span.is-large {
    font-size: 26px;
  }
}
@media (max-width: 400px) {
  .sec03__heading span.is-large {
    font-size: 24px;
  }
}
@media screen and (max-width:375px) {
  .sec03__heading span.is-large {
    font-size: 22px;
  }
}
.sec03__heading span.is-larger {
  font-size: 50px;
  letter-spacing: 0.15em;
}
@media (max-width: 880px) {
  .sec03__heading span.is-larger {
    font-size: 48px;
  }
}
@media screen and (max-width:768px) {
  .sec03__heading span.is-larger {
    font-size: 46px;
  }
}
@media (max-width: 690px) {
  .sec03__heading span.is-larger {
    font-size: 44px;
  }
}
@media (max-width: 650px) {
  .sec03__heading span.is-larger {
    font-size: 40px;
  }
}
@media (max-width: 600px) {
  .sec03__heading span.is-larger {
    font-size: 36px;
  }
}
@media (max-width: 540px) {
  .sec03__heading span.is-larger {
    font-size: 30px;
  }
}
@media (max-width: 450px) {
  .sec03__heading span.is-larger {
    font-size: 28px;
  }
}
@media (max-width: 430px) {
  .sec03__heading span.is-larger {
    font-size: 26px;
  }
}
@media (max-width: 400px) {
  .sec03__heading span.is-larger {
    font-size: 24px;
  }
}
@media screen and (max-width:375px) {
  .sec03__heading span.is-larger {
    font-size: 22px;
  }
}
.sec03__heading span.is-light {
  font-weight: 100;
  margin-left: -4px;
  margin-right: -4px;
}
.sec03__heading span.has-margin-right {
  margin-right: -22px;
}
@media (max-width: 600px) {
  .sec03__heading span.has-margin-right {
    margin-right: -15px;
  }
}
@media (max-width: 450px) {
  .sec03__heading span.has-margin-right {
    margin-right: -10px;
  }
}
.sec03__heading span.has-margin-left {
  margin-left: -22px;
}
@media (max-width: 600px) {
  .sec03__heading span.has-margin-left {
    margin-left: -15px;
  }
}
@media (max-width: 450px) {
  .sec03__heading span.has-margin-left {
    margin-left: -10px;
  }
}
.sec03__heading span.is-decorated {
  color: #ff5500;
  position: relative;
}
.sec03__heading span.is-decorated::before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  display: block;
  width: 100%;
  height: 26px;
  background-image: url(../img/underline.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  z-index: -1;
}
@media screen and (max-width:768px) {
  .sec03__heading span.is-decorated::before {
    bottom: -14px;
  }
}

.sec03__content {
  margin-top: 42px;
  position: relative;
}
.sec03__content::before {
  content: "";
  position: absolute;
  top: 36%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -10px;
  background-image: url(../img/pic-support-man.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: block;
  width: 225px;
  height: 256px;
}
@media screen and (max-width:768px) {
  .sec03__content::before {
    width: 220px;
    height: 251px;
  }
}
@media (max-width: 690px) {
  .sec03__content::before {
    width: 200px;
    height: 231px;
  }
}
@media (max-width: 650px) {
  .sec03__content::before {
    width: 170px;
    height: 210px;
  }
}
@media (max-width: 550px) {
  .sec03__content::before {
    width: 140px;
    height: 190px;
    top: 39%;
  }
}
@media (max-width: 500px) {
  .sec03__content::before {
    width: 130px;
    height: 180px;
    top: 40%;
  }
}
@media (max-width: 500px) {
  .sec03__content::before {
    width: 120px;
    height: 170px;
    top: 42%;
  }
}
@media screen and (max-width:768px) {
  .sec03__content::before {
    width: 110px;
    height: 160px;
  }
}

.sec03__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 110px;
  border-radius: 6px;
  -webkit-box-shadow: 0 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px rgba(0, 0, 0, 0.2);
}
@media (max-width: 650px) {
  .sec03__item {
    min-height: 90px;
  }
}
@media (max-width: 500px) {
  .sec03__item {
    min-height: 85px;
  }
}
@media (max-width: 430px) {
  .sec03__item {
    min-height: 80px;
  }
}
@media screen and (max-width:768px) {
  .sec03__item {
    min-height: 75px;
  }
}
.sec03__item:not(:first-child) {
  margin-top: 22px;
}
@media (max-width: 430px) {
  .sec03__item:not(:first-child) {
    margin-top: 18px;
  }
}

.sec03__point {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 95px;
          flex: 0 0 95px;
  font-size: 24px;
  background-color: #ff8e00;
  color: #fff;
  letter-spacing: 0.075em;
  font-weight: 700;
  display: grid;
  place-items: center;
  border-radius: 6px 0 0 6px;
}
@media screen and (max-width:768px) {
  .sec03__point {
    font-size: 22px;
  }
}
@media (max-width: 650px) {
  .sec03__point {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .sec03__point {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 85px;
            flex: 0 0 85px;
  }
}
@media (max-width: 550px) {
  .sec03__point {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75px;
            flex: 0 0 75px;
    font-size: 18px;
  }
}
@media (max-width: 500px) {
  .sec03__point {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 70px;
            flex: 0 0 70px;
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .sec03__point {
    font-size: 14px;
  }
}
@media (max-width: 460px) {
  .sec03__point {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 65px;
            flex: 0 0 65px;
  }
}
@media screen and (max-width:375px) {
  .sec03__point {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58px;
            flex: 0 0 58px;
  }
}
@media screen and (max-width: 360px) {
  .sec03__point {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50px;
            flex: 0 0 50px;
    font-size: 13px;
  }
}

.sec03__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  background-color: #fff;
  padding: 18px 20px;
  font-size: 30px;
  font-weight: 700;
  border-radius: 0 6px 6px 0;
}
@media screen and (max-width:768px) {
  .sec03__text {
    font-size: 28px;
  }
}
@media (max-width: 690px) {
  .sec03__text {
    font-size: 26px;
  }
}
@media (max-width: 650px) {
  .sec03__text {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .sec03__text {
    font-size: 22px;
    padding: 16px 16px;
  }
}
@media (max-width: 550px) {
  .sec03__text {
    font-size: 20px;
    padding: 14px 10px;
  }
}
@media (max-width: 530px) {
  .sec03__text {
    font-size: 16px;
    padding: 14px 8px;
  }
}
@media (max-width: 430px) {
  .sec03__text {
    padding: 14px 6px;
  }
}
.sec03__text.is-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sec03__text span.is-colored {
  color: #ff8e00;
}

.sec03__button-wrap {
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  margin-top: 69px;
}
@media screen and (max-width:768px) {
  .sec03__button-wrap {
    margin-top: 50px;
  }
}
.sec03__button-wrap:hover {
  opacity: 0.9;
}

/* sec04 */
.sec04 {
  padding: 0 0 60px;
}
@media screen and (max-width:768px) {
  .sec04 {
    padding: 0 0 40px;
  }
}

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

.sec04__item:not(:first-child) {
  margin-top: 40px;
}

.sec04__title {
  font-size: 30px;
  color: #ff5500;
  font-weight: 700;
  text-align: center;
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
  padding: 20px 0;
}
@media screen and (max-width:768px) {
  .sec04__title {
    font-size: 28px;
  }
}
@media (max-width: 600px) {
  .sec04__title {
    font-size: 26px;
  }
}
@media (max-width: 500px) {
  .sec04__title {
    font-size: 24px;
  }
}
@media (max-width: 460px) {
  .sec04__title {
    font-size: 20px;
  }
}
@media screen and (max-width:375px) {
  .sec04__title {
    font-size: 18px;
    padding: 16px 0;
  }
}
@media (max-width: 350px) {
  .sec04__title {
    font-size: 16px;
  }
}

.sec04__content {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (max-width: 600px) {
  .sec04__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

.sec04__img-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
}
@media (max-width: 600px) {
  .sec04__img-wrap {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 30%;
    margin: 0 auto;
  }
}
.sec04__img-wrap img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.sec04__text {
  font-size: 20px;
}
@media screen and (max-width:768px) {
  .sec04__text {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .sec04__text {
    font-size: 16px;
  }
}
@media screen and (max-width:375px) {
  .sec04__text {
    font-size: 14px;
  }
}
.sec04__text:not(:first-child) {
  margin-top: 10px;
}

/* sec05 */
.sec05 {
  background-color: #fffde4;
  background-image: url(../img/grid_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.sec05__container {
  position: relative;
}
.sec05__container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 490px;
  height: 100%;
  background-image: url(../img/careeradvisor_bg.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (max-width:768px) {
  .sec05__container::before {
    width: 100%;
    background-image: url(../img/sp_ca.webp);
  }
}

.sec05__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width:768px) {
  .sec05__inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.sec05__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  position: relative;
}

.sec05__img-wrap {
  border-radius: 6px 6px 0 0;
  background-color: transparent;
}
.sec05__img-wrap img {
  border-radius: 6px 6px 0 0;
  width: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}

.sec05__body {
  min-height: 236px;
  background-color: #fff;
  padding: 20px;
  border-radius: 0 0 6px 6px;
}

.sec05__name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-align: center;
}

.sec05__text {
  margin-top: 16px;
  font-size: 16px;
  letter-spacing: 0.05em;
}

.sec05__button-wrap {
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  margin-top: 69px;
}
@media screen and (max-width:768px) {
  .sec05__button-wrap {
    margin-top: 50px;
  }
}
.sec05__button-wrap:hover {
  opacity: 0.9;
}

/* slider */
.swiper-wrapper {
  gap: 30px;
}
@media (max-width: 800px) {
  .swiper-wrapper {
    gap: 16px;
  }
}
@media (max-width: 500px) {
  .swiper-wrapper {
    gap: 0;
  }
}

.swiper-slide {
  width: 230px !important;
}
@media screen and (max-width:375px) {
  .swiper-slide {
    width: 100% !important;
  }
}
.swiper-slide img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* sec06 */
.sec06 {
  padding: 0 0 60px;
}
@media screen and (max-width:768px) {
  .sec06 {
    padding: 0 0 40px;
  }
}

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

.sec06__item {
  background-color: #fffde4;
  padding: 40px;
}
@media screen and (max-width:768px) {
  .sec06__item {
    padding: 32px;
  }
}
@media (max-width: 450px) {
  .sec06__item {
    padding: 24px;
  }
}
@media (max-width: 400px) {
  .sec06__item {
    padding: 16px;
  }
}
.sec06__item:not(:first-child) {
  margin-top: 40px;
}

.sec06__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 8px;
  border-bottom: 1px solid #ff8e00;
}
@media screen and (max-width:768px) {
  .sec06__title {
    font-size: 28px;
  }
}
@media (max-width: 680px) {
  .sec06__title {
    font-size: 24px;
  }
}
@media (max-width: 620px) {
  .sec06__title {
    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;
    gap: 6px;
    font-size: 22px;
  }
}
@media (max-width: 500px) {
  .sec06__title {
    font-size: 20px;
  }
}
@media (max-width: 450px) {
  .sec06__title {
    font-size: 18px;
  }
}
@media (max-width: 400px) {
  .sec06__title {
    font-size: 16px;
  }
}
@media (max-width: 340px) {
  .sec06__title {
    font-size: 15px;
  }
}
.sec06__title span.is-number {
  color: #ff8e00;
  font-size: 24px;
  display: inline-block;
  margin-right: 16px;
}
@media screen and (max-width:768px) {
  .sec06__title span.is-number {
    font-size: 22px;
  }
}
@media (max-width: 680px) {
  .sec06__title span.is-number {
    font-size: 20px;
  }
}
@media (max-width: 640px) {
  .sec06__title span.is-number {
    font-size: 18px;
  }
}
@media (max-width: 500px) {
  .sec06__title span.is-number {
    font-size: 16px;
  }
}
.sec06__title span.is-large {
  font-family: "din-2014", sans-serif;
  font-size: 61.22px;
  margin-left: 2px;
}
@media screen and (max-width:768px) {
  .sec06__title span.is-large {
    font-size: 58px;
  }
}
@media (max-width: 680px) {
  .sec06__title span.is-large {
    font-size: 56px;
  }
}
@media (max-width: 620px) {
  .sec06__title span.is-large {
    font-size: 52px;
  }
}
@media (max-width: 500px) {
  .sec06__title span.is-large {
    font-size: 48px;
  }
}
@media (max-width: 450px) {
  .sec06__title span.is-large {
    font-size: 42px;
  }
}

.sec06__item-inner {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (max-width: 620px) {
  .sec06__item-inner {
    -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;
  }
}

.sec06__button-wrap {
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  margin-top: 69px;
}
@media screen and (max-width:768px) {
  .sec06__button-wrap {
    margin-top: 50px;
  }
}
.sec06__button-wrap:hover {
  opacity: 0.9;
}

.sec06__img-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
}
@media (max-width: 620px) {
  .sec06__img-wrap {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 30%;
  }
}
@media (max-width: 400px) {
  .sec06__img-wrap {
    width: 40%;
  }
}
.sec06__img-wrap img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.sec06__text {
  font-size: 20px;
}
@media screen and (max-width:768px) {
  .sec06__text {
    font-size: 18px;
  }
}
@media (max-width: 680px) {
  .sec06__text {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .sec06__text {
    font-size: 14px;
  }
}
.sec06__text:not(:first-child) {
  margin-top: 16px;
}

.sec06__tag-list {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  row-gap: 10px;
  max-width: 500px;
}
@media (max-width: 400px) {
  .sec06__tag-list {
    row-gap: 8px;
  }
}

.sec06__tag-item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #ff8e00;
  border-radius: 50vh;
  font-size: 14.4px;
  font-weight: 700;
  background-color: #fff;
  padding: 9px 20px;
}
@media (max-width: 500px) {
  .sec06__tag-item {
    font-size: 13px;
    padding: 8px 16px;
  }
}

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

.sec07__content {
  margin-top: 60px;
}
@media (max-width: 600px) {
  .sec07__content {
    margin-top: 40px;
  }
}

.sec07__button-wrap {
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  margin-top: 69px;
}
@media screen and (max-width:768px) {
  .sec07__button-wrap {
    margin-top: 50px;
  }
}
.sec07__button-wrap:hover {
  opacity: 0.9;
}

.sec07__item {
  background-color: #fff;
  padding: 20px 40px;
  border-radius: 6px;
}
@media screen and (max-width:768px) {
  .sec07__item {
    padding: 20px 32px;
  }
}
@media (max-width: 650px) {
  .sec07__item {
    padding: 20px 24px;
  }
}
@media (max-width: 450px) {
  .sec07__item {
    padding: 20px 20px;
  }
}
@media screen and (max-width:375px) {
  .sec07__item {
    padding: 20px 16px;
  }
}
.sec07__item:not(:first-child) {
  margin-top: 20px;
}

.sec07__term {
  padding-bottom: 20px;
  border-bottom: 1px solid #ff8e00;
  padding-right: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  position: relative;
}
@media (max-width: 600px) {
  .sec07__term {
    gap: 10px;
    padding-bottom: 14px;
  }
}
@media screen and (max-width:375px) {
  .sec07__term {
    gap: 8px;
    padding-right: 18px;
  }
}

.sec07__term-q {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 38px;
          flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background-color: #ff8e00;
  display: inline-grid;
  place-items: center;
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-size: 24px;
}
@media (max-width: 600px) {
  .sec07__term-q {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32px;
            flex: 0 0 32px;
    width: 32px;
    height: 32px;
  }
}
@media screen and (max-width:375px) {
  .sec07__term-q {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30px;
            flex: 0 0 30px;
    width: 30px;
    height: 30px;
  }
}

.sec07__term-q-text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width:768px) {
  .sec07__term-q-text {
    font-size: 22px;
  }
}
@media (max-width: 650px) {
  .sec07__term-q-text {
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  .sec07__term-q-text {
    font-size: 18px;
  }
}
@media (max-width: 450px) {
  .sec07__term-q-text {
    font-size: 17px;
  }
}
@media screen and (max-width:375px) {
  .sec07__term-q-text {
    font-size: 16px;
  }
}

.sec07__desc {
  margin-top: 20px;
  font-size: 20px;
}
@media screen and (max-width:768px) {
  .sec07__desc {
    font-size: 18px;
  }
}
@media (max-width: 650px) {
  .sec07__desc {
    font-size: 16px;
  }
}
@media (max-width: 400px) {
  .sec07__desc {
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */