@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700;900&display=swap');

@charset "UTF-8";

/*----------------------
 * 1. GENERAL
 *   1.1  Margin
 *   1.2  Text
 *   1.3  Titles and Subtitles
 *   1.4  Buttons
 *   1.5 Other Elements
 *        1.5.1 sns icon
 *        1.5.2 page top
 * 2. HEADER
 * 3. CONTENT
 *    3.1 Info
 *    3.2 Benefits
 *    3.3 Step
 * 4. FOOTER
 * 5. INTERACTIONS
 */

/*-------------------------------
 * 1.GENERAL
 * ----------------------------*/
html {
    font-size: 62.5%;
}
html,
body {
	overflow-x: hidden;
}
body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
	background: #fff;
	color: #000;
	line-height: 1.8;
	font-weight: 400;
	overflow: hidden;
}
@media (max-width: 1199px) {
    body {
        font-size: calc(13px + 3 * (100vw - 320px) / 879);
    }
}

a {
    color: #008cd6;
    text-decoration: none;
}
a:hover {
    cursor: pointer;
    color: #008cd6;
    text-decoration: underline;
}
a:focus {
  outline: none;
  overflow: hidden;
  text-decoration: none;
}

a[href^="tel:"] {
	cursor: default;
	text-decoration: none;
}
a[href^="tel:"]:hover {
	text-decoration: none;
}
@media (max-width: 767px) {
	a[href^="tel:"] {
		cursor: pointer;
	}
}

.small {
    font-size: 1.4rem;
}
@media (max-width: 1199px) {
    .small {
        font-size: calc(11px + 3 * (100vw - 320px) / 879);
    }
}

ul,
ul li {
    margin: 0;
    padding: 0;
    list-style: none;
}

strong {
    font-weight: 900;
}

img {
    display: block;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.sp,
.md,
.sp-md,
.sp-md-lg,
.md-lg,
.lg {
	display: none !important;
}
.md-lg-pc,
.lg-pc,
.pc {
    display: block !important;
}
@media (max-width: 1199px) {
    .lg,
    .md-lg,
    .sp-md-lg {
        display: block !important;
    }
    .pc {
        display: none !important;
    }
}
@media (max-width: 991px) {
    .lg-pc,
    .lg,
    .sp-md-none {
        display: none !important;
    }
    .md,
    .sp-md {
        display: block !important;
    }
}
@media (max-width: 767px) {
    .sp {
        display: block !important;
    }
    .md-lg-pc,
    .md-lg,
    .lg,
    .md,
    .pc,
    .sp-none {
        display: none !important;
    }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 1.1  Margin
 * ------------------------------*/
.mt00 { margin-top: 0 !important; }
.mt05 { margin-top: 0.5rem !important; }
.mt10 { margin-top: 1rem !important; }
.mt20 { margin-top: 2rem !important; }
.mt30 { margin-top: 3rem !important; }
.mt40 { margin-top: 4rem !important; }
.mt50 { margin-top: 5rem !important; }
.mt60 { margin-top: 6rem !important; }
.mt70 { margin-top: 7rem !important; }
.mt80 { margin-top: 8rem !important; }

.mb00 { margin-bottom: 0 !important; }
.mb05 { margin-bottom: 0.5rem !important; }
.mb10 { margin-bottom: 1rem !important; }
.mb20 { margin-bottom: 2rem !important; }
.mb30 { margin-bottom: 3rem !important; }
.mb40 { margin-bottom: 4rem !important; }
.mb50 { margin-bottom: 5rem !important; }
.mb60 { margin-bottom: 6rem !important; }
.mb70 { margin-bottom: 7rem !important; }
.mb80 { margin-bottom: 8rem !important; }

@media (max-width: 767px) {
    .mt00-xs {
        margin-top: 0 !important;
    }
    .mt10-xs {
        margin-top: 1rem !important;
    }
    .mt20-xs {
        margin-top: 2rem !important;
    }
    .mt30-xs {
        margin-top: 3rem !important;
    }
    .mt40-xs {
        margin-top: 4rem !important;
    }
    .mt50-xs {
        margin-top: 5rem !important;
    }
    .mb00-xs {
        margin-bottom: 0 !important;
    }
    .mb10-xs {
        margin-bottom: 1rem !important;
    }
    .mb20-xs {
        margin-bottom: 2rem !important;
    }
    .mb30-xs {
        margin-bottom: 3rem !important;
    }
    .mb40-xs {
        margin-bottom: 4rem !important;
    }
    .mb50-xs {
        margin-bottom: 5rem !important;
    }
}

/* 1.2 Text
 * ------------------------------*/
p {
    margin: 1rem 0;
    /*text-align: justify;
    text-justify: inter-ideograph;*/
}
.text-left {
    text-align: left !important;
}
.text-center {
    text-align: center !important;
}
.text-right {
    text-align: right !important;
}
@media (max-width: 767px) {
     .text-left-xs {
        text-align: left !important;
    }
    .text-center-xs {
        text-align: center !important;
    }
    .text-right-xs {
        text-align: right !important;
    }
}

.txt-red,
.txt-red a,
.txt-red a:hover {
    color: #ff3939 !important;
}
.txt-red02,
.txt-red02 a,
.txt-red02 a:hover {
    color: #df043a !important;
}
.txt-black,
.txt-black a,
.txt-black a:hover {
    color: #000 !important;
}
.txt-blue,
.txt-blue a,
.txt-blue a:hover {
    color: #1c74be !important;
}
.txt-yellow,
.txt-yellow a,
.txt-yellow a:hover {
    color: #fff100 !important;
}
.txt-white,
.txt-white a,
.txt-white a:hover {
    color: #fff !important;
}

a.txt-underline,
.txt-underline {
    text-decoration: underline !important;
}
a.txt-underline:hover {
    text-decoration: none !important;
}

.txt-indent {
    text-indent: -1em;
    padding-left: 1em;
    margin: 0;
}

.f10 { font-size: 1rem !important; }
.f11 { font-size: 1.1rem !important; }
.f12 { font-size: 1.2rem !important; }
.f13 { font-size: 1.3rem !important; }
.f14 { font-size: 1.4rem !important; }
.f15 { font-size: 1.5rem !important; }
.f16 { font-size: 1.6rem !important; }
.f17 { font-size: 1.7rem !important; }
.f18 { font-size: 1.8rem !important; }
.f19 { font-size: 1.9rem !important; }
.f20 { font-size: 2rem !important; }
.f21 { font-size: 2.1rem !important; }
.f22 { font-size: 2.2rem !important; }
.f23 { font-size: 2.3rem !important; }
.f24 { font-size: 2.4rem !important; }
.f25 { font-size: 2.5rem !important; }
@media (max-width: 991px) {
    .f18, .f19 {
        font-size: 1.6rem !important;
    }
    .f20, .f21 {
        font-size: 1.7rem !important;
    }
    .f22, .f23 {
        font-size: 1.8rem !important;
    }
    .f24, .f25 {
        font-size: 2rem !important;
    }
}
@media (max-width: 767px) {
    .f13, .f14 {
        font-size: 1.2rem !important;
    }
    .f15, .f16 {
        font-size: 1.3rem !important;
    }
    .f17, .f18 {
        font-size: 1.4rem !important;
    }
    .f19, .f20, .f21 {
        font-size: 1.5rem !important;
    }
    .f22, .f23, .f24, .f25 {
        font-size: 1.6rem !important;
    }
    .f15-xs {
        font-size: 1.5rem !important;
    }
    .f14-xs {
        font-size: 1.4rem !important;
    }
    .f13-xs {
        font-size: 1.3rem !important;
    }
    .f12-xs {
        font-size: 1.2rem !important;
    }
    .f11-xs {
        font-size: 1.1rem !important;
    }
    .f10-xs {
        font-size: 1rem !important;
    }
}

/* 1.3 Titles and Subtitles
 * ------------------------------*/
h1, h2, h3, h4 {
    margin: 0;
    padding: 0;
    font-weight: 600;
    line-height: 1.8;
}
@media (max-width: 767px) {
    h1, h2, h3, h4 {
        line-height: 1.5;
    }
}

.section-ttl {
    margin: 0 0 3rem;
    text-align: center;
}
@media (max-width: 767px) {
    .section-ttl {
        margin-bottom: 2rem;
    }
}

/* 1.4 Buttons
 * ------------------------------*/
#side-entry {
    width: 59px;
    height: 310px;
    position: fixed;
    right: 0;
    top: 100px;
    margin: 0;
    z-index: 1000;
    box-sizing: border-box;
    -webkit-animation: fadeIn 1s linear both;
    animation: fadeIn 1s linear both;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}
#side-entry a {
    display: block;
    width: 59px;
    height: 310px;
    padding-top: 2rem;
    background: #1c55be;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    box-sizing: border-box;
}
#side-entry a:hover {
    text-decoration: none;
    opacity: 0.8;
    transition: 0.5s;
}
@media (max-width: 1199px) {
    #side-entry {
        top: 30px;
    }
}
@media (max-width: 991px) {
    #side-entry {
        width: 42px;
        height: 235px;
        top: 23px;
        border-top-left-radius: 6px;
        border-bottom-left-radius: 6px;
    }
    #side-entry a {
        width: 42px;
        height: 235px;
        padding-top: 1rem;
        padding-left: 0.2rem;
    }
    #side-entry img {
        width: 25px;
    }
}
@media (max-width: 767px) {
    #side-entry {
        width: 32px;
        height: 190px;
        top: 40px;
    }
    #side-entry a {
        width: 32px;
        height: 190px;
    }
    #side-entry img {
        width: 20px;
    }
}

.btn {
    display: block;
    width: 100%;
    margin: 0 auto;
    border-radius: 30px;
    text-align: center;
    padding: 0.3rem 0.5rem 0.5rem;
    box-sizing: border-box;
    color: #fff;
    background: #1c55be;
    outline: none;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    font-size: 1.6rem;
    background: #1c55be url(../img/icon-arrow.png) 15px center no-repeat;
    background-size: 10px 12px;
}
.btn:hover {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  transition: 0.5s;
}
.btn.wide {
    background-color: #cc0000;
    font-size: 2rem;
    padding: 0.8rem 0.5rem 0.9rem;
    font-weight: 600;
}
@media (max-width: 1199px) {
    .btn {
        font-size: calc(13px + 3 * (100vw - 320px) / 879);
    }
    .btn.wide {
        font-size: calc(15px + 5 * (100vw - 320px) / 879);
    }
}
@media (max-width: 767px) {
    .btn {
        background-size: 8px 10px;
        padding: 0.3rem 0.5rem 0.6rem;
    }
    .btn.wide {
        padding: 0.7rem 0.5rem 0.9rem;
    }
}

/* 1.5 Other Elements
 * ------------------------------*/
/* 1.5.1 sns Icon ------------*/
#sns-list {
    width: 50px;
    height: 150px;
    padding: 1rem;
    position: fixed;
    top: 220px;
    right: 0;
    margin: 0;
    background: #000;
    color: #fff;
    text-align: center;
    z-index: 10010 !important;
    box-sizing: border-box;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
#sns-list .sub {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5;
}

#sns-list .fa-facebook,
#sns-list .fa-twitter {
	font-size: 21px !important;
    color: #fff !important;
    margin-top: 20px;
    display: block;
}
#sns-list .fa-facebook:hover,
#sns-list .fa-twitter:hover {
    text-decoration: none !important;
    opacity: 0.8;
    transition: 0.5s;
}
@media (max-width: 767px) {
    #sns-list {
        display: none;
    }
}

.knt_general-set .icon_social {
    padding: 0;
    text-align: right;
}
.knt_general-set .icon_social .line {
    display: inline-block;
    line-height: 23px;
}
.knt_general-set .icon_social .line img {
    vertical-align: top;
}
.knt_general-set .icon_social iframe {
    max-width: 150px !important;
}
.knt_general-set .icon_social .twitter-share-button {
    height: 25px !important;
}

.social {
    margin: 0 auto;
    max-width: 400px;
}
.social .icon_social {
    position: relative;
    right: 0;
    top: 0;
    z-index: 3;
}
.knt_general-set,
.knt_general-set .icon_social .socialBoxON {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack:center;
	-ms-flex-pack:center;
	justify-content:center;
}
.knt_general-set .icon_social .socialBoxON {
	margin-bottom: 3rem;
}
.knt_general-set .icon_social .socialBoxON > iframe {
	margin: 0 0.5rem;
}

/* 1.5.2 page top ------------*/
#pagetop {
    display: none;
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 91px;
    height: 91px;
    z-index: 1000;
    background: url(../img/pagetop.png) 50% 50% no-repeat;
    background-size: contain;
    text-indent: 100% !important;
	white-space: nowrap;
	overflow: hidden;
}
#pagetop:hover {
    cursor: pointer;
    opacity: 0.8;
    transition: 0.5s;
}
@media (max-width: 991px) {
    #pagetop {
        width: 55px;
        height: 55px;
    }
}
@media (max-width: 767px) {
    #pagetop {
        right: 15px;
    }
}

/*-------------------------------
 * 2. HEADER
 * ----------------------------*/
header {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 0;
    -webkit-animation: fadeIn 0.8s linear both;
    animation: fadeIn 0.8s linear both;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
header .main-info {
    margin: 0;
    padding: 3rem 0;
    background: #252525;
}
header .main-info .ttl {
    margin: 0 auto;
}
@media (max-width: 1199px) {
    header .main-info .ttl {
        width: 550px;
    }
}
@media (max-width: 991px) {
    header .main-info {
        padding: 2rem 0;
    }
    header .main-info .ttl {
        width: 450px;
    }
}
@media (max-width: 767px) {
    header .main-info {
        padding: 1.5rem 3rem;
    }
    header .main-info .ttl {
        width: 100%;
    }
}

header .icon-kentei {
    position: absolute;
    top: 30px;
    left: 10vw;
    margin: 0;
    z-index: 2000;
}
@media (max-width: 991px) {
    header .icon-kentei {
        left: 0;
    }
}
@media (max-width: 767px) {
    header .icon-kentei {
        width: 24px;
        top: 10px;
        left: 10px;
    }
}

/*-------------------------------
 * 3. CONTENT
 * ----------------------------*/
main {
    width: 100%;
    margin: 0;
    padding: 0;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1040px;
  }
}

section {
    margin: 6rem 0;
}
@media (max-width: 767px) {
    section {
        margin: 4rem 0;
    }
}

/* 3.1 Info
 * ------------------------------*/
.info-wrap {
    margin-top: 5rem;
	text-align: center;
}
.info-wrap .ttl {
    font-size: 2.4rem;
    margin: 0 0 4rem;
    line-height: 1.5;
}
.info-wrap .ttl strong {
    font-size: 3rem;
}
.info-wrap .sub {
    margin: 0;
    font-size: 1.8rem;
    color: #cc0000;
    text-align: center;
}
.info-wrap .txt {
    margin: 0;
}
@media (max-width: 1199px) {
    .info-wrap .ttl {
        font-size: calc(14px + 10 * (100vw - 320px) / 879);
        line-height: 1.6;
    }
    .info-wrap .ttl strong {
        font-size: calc(18px + 12 * (100vw - 320px) / 879);
    }
    .info-wrap .sub {
        font-size: calc(14px + 4 * (100vw - 320px) / 879);
    }
}
@media (max-width: 767px) {
    .info-wrap {
        margin-top: 2.5rem;
    }
    .info-wrap .ttl {
        margin-bottom: 1.5rem;
    }
}

.info-table {
    width: 100%;
    margin: 3rem auto 0;
    border-bottom: 2px solid #ACCCEB;
    font-size: 2rem;
    border-collapse: collapse;
}
.info-wrap .info-table {
    width: 570px;
}
.info-table th {
    width: 28%;
    color: #1c74be;
    background: #CAE8F9;
    border-top: 2px solid #ACCCEB;
    padding: 0.5rem 0.5rem 0.5rem 3rem;
    text-align: left;
    font-weight: 600;
}
.info-table td {
    width: 72%;
    border-top: 2px solid #ACCCEB;
    padding: 0.5rem 0.5rem 0.5rem 3rem;
    text-align: left;
    font-weight: 600;
}
.benefits-wrap .info-table th {
    width: 35%;
}
.benefits-wrap .info-table td {
    width: 65%;
}
@media (max-width: 1199px) {
    .info-table {
        font-size: calc(15px + 5 * (100vw - 320px) / 879);
    }
}
@media (max-width: 767px) {
    .info-table {
        margin-top: 2rem;
    }
    .info-wrap .info-table {
        width: 100%;
    }
    .info-table th {
        width: 30%;
        padding-left: 1.5rem;
    }
    .info-table td {
        width: 70%;
        padding-left: 1.5rem;
    }
    .benefits-wrap .info-table th,
    .benefits-wrap .info-table td {
        padding-left: 1rem;
    }
}

/* 3.2 Benefits
 * ------------------------------*/
.benefits-wrap .sub {
    margin: 0 auto 2rem;
}
.benefits-wrap .subsub {
    font-size: 3rem;
    margin: 0 0 2rem;
}
.benefits-wrap .sub-txt {
    font-size: 2.4rem;
    margin: 0;
    font-weight: 600;
    color: #4179c4;
    margin-top: -0.5rem;
}
.benefits-wrap .sub-txt span {
    display: block;
    font-size: 1.6rem;
}
@media (max-width: 1199px) {
    .benefits-wrap .subsub {
        font-size: calc(14px + 16 * (100vw - 320px) / 879);
    }
    .benefits-wrap .sub-txt {
        font-size: calc(14px + 10 * (100vw - 320px) / 879);
        margin-top: 0;
    }
    .benefits-wrap .sub-txt span {
        font-size: calc(11px + 5 * (100vw - 320px) / 879);
    }
}
@media (max-width: 767px) {
    .benefits-wrap .sub {
        width: 80%;
        margin-bottom: 1.5rem;
    }
    .benefits-wrap .subsub {
        margin-bottom: 1.5rem;
        text-indent: -1.2em;
        padding-left: 1.2em;
    }
    .benefits-wrap .sub-txt {
        text-align: center;
        line-height: 1.8;
    }
}
@media (max-width: 480px) {
    .benefits-wrap .subsub {
        font-size: calc(15px + 2 * (100vw - 320px) / 160);
    }
}

.benefits-wrap .waku-box {
    border: 10px solid #87a1c4;
    padding: 4rem 4rem 1rem;
    background: #f6fbff;
}
.benefits-wrap .box {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    background: #fff100;
    border-radius: 20px;
    padding: 0 3rem;
    box-shadow: 0px 3px 7px 0px rgba(164, 181, 195, 0.35);
}
.benefits-wrap .box.bg-pink {
    background: #ffe1f8;
}
.benefits-wrap .box .col {
    box-sizing: border-box;
}
.benefits-wrap .box .col:nth-of-type(1) {
    width: 23%;
}
.benefits-wrap .box .col:nth-of-type(2) {
    width: 50%;
}
.benefits-wrap .box .col:nth-of-type(3) {
    width: 27%;
}
.benefits-wrap .box .col img {
    max-width: 80%;
}
.benefits-wrap .box .txt {
    font-weight: 500;
    margin: 0;
}
@media (max-width: 1199px) {
    .benefits-wrap .box .txt {
        font-size: calc(14px + 4 * (100vw - 320px) / 879);
    }
}
@media (max-width: 767px) {
    .benefits-wrap .waku-box {
        border-width: 7px;
        padding: 2rem 1.5rem 1rem;
    }
    .benefits-wrap .box {
        padding: 1rem;
        border-radius: 10px;
    }
    .benefits-wrap .box .col:nth-of-type(1) {
        width: 50%;
        padding-right: 0.5rem;
    }
    .benefits-wrap .box .col:nth-of-type(2) {
        width: 50%;
    }
    .benefits-wrap .box .col:nth-of-type(3) {
        width: 100%;
    }
    .benefits-wrap .box .col img {
        max-width: 100%;
    }
    .benefits-wrap .box .txt {
        margin-top: 0.5rem;
        margin-left: 0.5rem;
    }
}

.benefits-wrap .img-benefits01 {
    margin: 0 auto;
    padding-left: 17rem;
}
.benefits-wrap .arrow {
    width: 45px;
    margin: 2rem auto;
}
@media (max-width: 767px) {
    .benefits-wrap .img-benefits01 {
        width: 70%;
        padding-left: 7rem;
    }
    .benefits-wrap .arrow {
        width: 30px;
        margin: 1rem auto;
    }
}

/* 3.3 Step
 * ------------------------------*/
.step-wrap .sub {
    margin: 0 auto 3rem;
}
@media (max-width: 767px) {
    .step-wrap .sub {
        width: 110px;
        margin-bottom: 1.5rem;
    }
}

.step-wrap .step-box {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    background: #fff100;
    margin: 0 auto 2rem;
    padding: 3rem;
    font-size: 2rem;
    line-height: 1.6;
    color: #1c74be;
}
.step-wrap .step-box dt {
    width: 40%;
    margin: 0;
    padding: 1rem 3rem;
    background: #1c74be;
    min-height: 67px;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    box-sizing: border-box;
}
.step-wrap .step-box.last dt {
    height: 290px;
}
.step-wrap .step-box dt img {
    margin: 0;
}
.step-wrap .step-box dt img.img-center {
    margin: 0 auto;
}
.step-wrap .step-box dd {
    width: 60%;
    margin: 0;
    padding: 0 0 0 3rem;
    box-sizing: border-box;
    font-weight: 600;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}
.step-wrap .step-box .txt-box {
    margin: 0 0 2rem;
    display: block;
    width: 100%;
}
.step-wrap .step-box .txt-box:last-of-type {
    margin-bottom: 0;
}
.step-wrap .step-box .txt {
    margin: 0 0 1rem;
}
.step-wrap .step-box .small {
    display: inline-block;
    line-height: 1.7;
    font-size: 1.7rem;
}
@media (max-width: 1199px) {
    .step-wrap .step-box {
        font-size: calc(15px + 5 * (100vw - 320px) / 879);
    }
    .step-wrap .step-box dt {
        padding: 1rem 2rem;
    }
    .step-wrap .step-box .small {
        font-size: calc(13px + 4 * (100vw - 320px) / 879);
    }
}
@media (max-width: 991px) {
    .step-wrap .step-box {
        padding: 2rem;
    }
    .step-wrap .step-box dt {
        min-height: 55px;
    }
    .step-wrap .step-box dt img {
        width: auto;
        height: 18px;
    }
    .step-wrap .step-box.last dt img {
        height: 45px;
    }
    .step-wrap .step-box dd {
        padding-left: 2rem;
    }
}
@media (max-width: 767px) {
    .step-wrap .step-box {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    .step-wrap .step-box dt {
        width: 100%;
        min-height: 0 !important;
        margin-bottom: 1rem;
        padding: 1rem;
    }
    .step-wrap .step-box.last dt {
        padding: 2rem 0.5rem;
        height: auto !important;
    }
    .step-wrap .step-box.last dt img {
        height: 40px;
    }
    .step-wrap .step-box dd {
        width: 100%;
        padding-left: 0;
    }
}

.step-wrap .btn-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    gap: 0 20px;
}
.step-wrap .btn-list li {
    width: calc(100% / 2 - 10px );
}
@media (max-width: 991px) {
    .step-wrap .btn-list {
        gap: 0 10px;
    }
    .step-wrap .btn-list li {
        width: calc(100% / 2 - 5px );
    }
}
@media (max-width: 767px) {
    .step-wrap .btn-list {
        gap: 10px 0;
    }
    .step-wrap .btn-list li {
        width: 100%;
    }
}

/*-------------------------------
 * 4. FOOTER
 * ----------------------------*/
footer {
    margin: 0;
    padding: 0 0 1rem;
    font-size: 1.8rem;
    line-height: 2;
    font-weight: 500;
}
footer .sponsor-list {
    margin: 0.5rem 0 3rem;
    text-align: center;
    color: #1c74be;
     display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
}
footer .sponsor-list li {
    box-sizing: border-box;
}
footer .sponsor-list li:nth-of-type(1) {
    width: 100%;
}
footer .sponsor-list li:nth-of-type(2),
footer .sponsor-list li:nth-of-type(3) {
    padding: 0 2rem;
}
footer .sponsor-list span {
    display: inline-block;
    font-size: 1.6rem;
    color: #008cd6;
}
footer .copy {
    font-size: 1.5rem;
    text-align: center;
    margin: 0;
    color: #5d5d5d;
}
@media (max-width: 1199px) {
    footer {
        font-size: calc(14px + 4 * (100vw - 320px) / 879);
    }
    footer .sponsor-list span {
        font-size: calc(13px + 3 * (100vw - 320px) / 879);
    }
    footer .copy {
        font-size: calc(12px + 3 * (100vw - 320px) / 879);
    }
}
@media (max-width: 767px) {
    footer {
        padding-bottom: 8rem;
    }
    footer .sponsor-list li {
        width: 100%;
        padding: 0;
    }
}

/*-------------------------------
 * 5. INTERACTIONS
 * ----------------------------*/
.opacity:hover {
  opacity: 0.75;
  transition: 0.7s;
}

/*--------- keyframes --------- */
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  30% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  30% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
