@charset "UTF-8";

/* ================================
     Root - custom reset/base
================================ */
* { font: inherit; }
*,
::before,
::after {
    box-sizing: border-box;
}
::before,
::after {
    text-decoration: inherit;
    vertical-align: inherit;
}

/* Margins and Paddings. */
body,
button,
h1,
h2,
h3,
h4,
h5,
h6,
input,
nav,
select,
textarea,
ul,
ol,
dl {
    margin: 0;
    padding: 0;
}

/* Hovers. */
a:hover,
button:hover,
input[type="submit"]:hover {
    cursor: pointer;
}

/* Decorations. */
a,
button,
input,
select,
textarea {
    background: none;
    color: inherit;
    border: none;
    text-transform: none;
    text-decoration: none;
}
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
}
ul { list-style: none; }
a {
    -webkit-transition: ease-in-out 0.5s;
    -moz-transition: ease-in-out 0.5s;
    -ms-transition: ease-in-out 0.5s;
    -o-transition: ease-in-out 0.5s;
    transition: ease-in-out 0.5s;
}
html,
body {
    font-family: "NotoSansJP" !important;
    font-size: 14px;
    line-height: 1.5;
    color: #1e2635;
}
html {
    max-width: 100%;
    box-sizing: border-box;
    scroll-behavior: initial;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
}

@media screen and (min-width: 576px) {
    html,
    body {
        font-size: 16px;
        line-height: 1.7;
    }
}
@media screen and (min-width: 1600px) {
    html,
    body {
        font-size: 18px;
    }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  margin-top: 24px;
}
h1 {
  font-size: 38px;
  padding-bottom: 10px;
  letter-spacing: normal;
}
h2 {
  font-size: 24px;
  line-height: 1.4;
}
h3 {
  font-size: 18px;
  line-height: 1.4;
}
h4 {
  font-size: 16px;
  line-height: 1.35;
}
h5 {
  font-size: 14px;
  line-height: 17.5px;
}

.fw-light {
    font-weight: 300;
}
.fw-normal {
    font-weight: normal;
}
.fw-bold {
    font-weight: 600;
}

/* Image fluid */
.img-fluid {
    max-width: 100%;
    height: auto;
}

/* ======================================
                GLOBAL
======================================== */
@media (min-width: 768px) {
    .container {
        max-width: 90% !important;
    }
}
@media (min-width: 1400px) {
    .container {
        max-width: 1250px !important;
    }
}
@media (min-width: 1600px) {
    .container {
        max-width: 1440px !important;
    }
}

/* Animation */
.anim {
    animation-duration: 1s;
    animation-fill-mode: both;
}
.anim-half {
    animation-delay: 0.5s;
}
.anim-fadeIn {
    animation-name: fadeIn;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.anim-fadeInUp {
    animation-name: fadeInUp;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 #1edb9c;
    }
    70% {
        box-shadow: 0 0 0 12px rgba(45, 156, 219, 0);
    }
    100% {
        box-shadow: 0 0 rgba(45, 156, 219, 0);
    }
}


.UpMove { animation: UpAnime 0.5s forwards; }
@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
        -webkit-transform: translateY(100px);
        -moz-transform: translateY(100px);
        -o-transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
    }
}

.DownMove { animation: DownAnime 0.5s forwards; }
@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
    }

    to {
        opacity: 1;
        transform: translateY(100px);
        -webkit-transform: translateY(100px);
        -moz-transform: translateY(100px);
        -o-transform: translateY(100px);
    }
}

.noto-black { font-weight: 900; }
.noto-medium { font-weight: 500; }
.noto-bold { font-weight: 700; }
.noto-semibold { font-weight: 600; }
.inter-bold {
  font-family: "Inter" !important;
  font-weight: 700;
}

.text-darkblue { color: #3460be; }
.bg-darkblue { background-color: #3460be; }
.bg-light-blue { background-color: #ebf5ff; }

.py-gutter {
    padding: 60px 0;
    @media screen and (min-width: 768px) {
        padding: 90px 0;
    }
    @media screen and (min-width: 992px) {
        padding: 120px 0;
    }
    @media screen and (min-width: 1600px) {
        padding: 140px 0;
    }
}

.pt-gutter {
    padding-top: 60px;
    @media screen and (min-width: 768px) {
        padding-top: 90px;
    }
    @media screen and (min-width: 992px) {
        padding-top: 120px;
    }
    @media screen and (min-width: 1600px) {
        padding-top: 140px;
    }
}

.pb-gutter {
    padding-bottom: 60px;
    @media screen and (min-width: 768px) {
        padding-bottom: 90px;
    }
    @media screen and (min-width: 992px) {
        padding-bottom: 120px;
    }
    @media screen and (min-width: 1600px) {
        padding-bottom: 140px;
    }
}

.btn-wrap {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    @media screen and (min-width: 768px) {
        margin-top: 60px;
    }
}
.btn-oel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    background-image: linear-gradient(90deg, #16cc90 0%, #1edb9c 33%, #16cc90 100%);
    background-size: 200% 100%;
    background-position: right center;
    background-repeat: no-repeat;
    border-radius: 100px;
    padding: 18px 32px;
    text-decoration: none;
    transition: background-position 0.3s ease;
    box-shadow: 0 0 0 0 rgba(30, 219, 156, 0.5);
    -webkit-animation: pulse 2s infinite;
    -moz-animation: pulse 2s infinite;
    -ms-animation: pulse 2s infinite;
    -o-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
    @media screen and (min-width: 768px) {
        padding: 18px 55px;
    }
}
.btn-oel.no-pulse {
    box-shadow: unset;
    -webkit-animation: unset;
    -moz-animation: unset;
    -ms-animation: unset;
    -o-animation: unset;
    animation: unset;
}
.btn-oel:hover { background-position: left center; }
.btn-oel .btn-label {
    margin-right: 40px;
    font-weight: 700;
    font-size: 26px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    @media screen and (max-width: 767.98px) {
        font-size: 20px;
    }
}
.btn-oel svg {
    margin-top: 2px;
    width: 20px;
    height: 20px;
}

.title-dash {
    font-weight: 600;
    font-size: 20px;
    background-color: #ebf5ff;
    padding: 16px 25px;
    border: 1.5px dashed #6c92e5;
    border-radius: 8px;
    text-align: center;
    @media screen and (min-width: 768px) {
        font-size: 28px;
        padding: 20px 45px;
    }
}
.title-dash span {
    font-size: 22px;
    font-weight: 900;
    color: #346adb;
    @media screen and (min-width: 768px) {
        font-size: 30px;
    }
}
.section-title {
    font-size: 35px;
    font-weight: 900;
    @media screen and (min-width: 768px) {
        font-size: 45px;
    }
    @media screen and (min-width: 1200px) {
        font-size: 55px;
    }
}

/* -------- Header Navi -------- */
header,
footer {
    animation: 2s fadeIn;
    -webkit-animation: 2s fadeIn;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Noto Sans JP", "メイリオ", sans-serif;
    word-break: break-all;
    color: #28323c;
    font-size: 16px;
    line-height: 1.5;
}
.header-container {
    width: 1040px;
    max-width: 100%;
    padding: 18px 20px;
}
.header-lp-num {
    background-position: 0 0;
    background-size: auto 21px !important;
    background: url(../../images/common/icon_tel.svg) no-repeat;
}
.header-menu-button {
    cursor: pointer;
    position: absolute;
    bottom: 0;
    right: 16px;
    top: 10px;
    height: 23px;
    width: 22px;
}
@media screen and (max-width: 767px) {
  .header-container { padding: 16px 54px 16px 16px; }
}
@media screen and (max-width: 991px) {
    .header-logo-image,
    .secom-lp-logo {
        width: 100px;
    }
    .header-lp-title { margin: 0 0 6px; }
    .header-lp-time {
        display: block;
        margin: 6px 0 0;
        margin-top: 8px;
    }
    .header-logo-image,
    .secom-lp-logo {
        width: 100px;
    }
}

@media screen and (max-width: 991px) {
    .sp,
    .sp-to-top__button {
        display: block;
    }
    .sp-menu,
    .sp-menu:after {
        width: 100%;
        pointer-events: none;
        top: 0;
        left: 0;
    }
    .sp-menu {
        display: flex;
        justify-content: end;
        position: fixed;
        height: 100%;
        overflow: hidden;
        z-index: 160;
    }
    .sp-menu:after {
        content: "";
        display: block;
        position: absolute;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        opacity: 0;
        will-change: opacity;
        -webkit-transition: opacity 0.3s cubic-bezier(0, 0, 0.3, 1);
        -moz-transition: opacity 0.3s cubic-bezier(0, 0, 0.3, 1);
        -ms-transition: opacity 0.3s cubic-bezier(0, 0, 0.3, 1);
        -o-transition: opacity 0.3s cubic-bezier(0, 0, 0.3, 1);
        transition: opacity 0.3s cubic-bezier(0, 0, 0.3, 1);
    }
    .sp-menu.is-visible { pointer-events: auto; }
    .sp-menu.is-visible::after { opacity: 1; }
    .sp-menu.is-animatable {
        -webkit-transition: 0.3s ease-in;
        -moz-transition: 0.3s ease-in;
        -ms-transition: 0.3s ease-in;
        -o-transition: 0.3s ease-in;
        transition: 0.3s ease-in;
    }
    .sp-menu__wrap {
        position: relative;
        max-width: 400px;
        width: 90%;
        height: 100%;
        color: #fff;
        -webkit-transform: translateX(210%);
        -moz-transform: translateX(210%);
        -ms-transform: translateX(210%);
        -o-transform: translateX(210%);
        transform: translateX(210%);
        will-change: transform;
        z-index: 160;
        -webkit-transition: 0.3s ease-out;
        -moz-transition: 0.3s ease-out;
        -ms-transition: 0.3s ease-out;
        -o-transition: 0.3s ease-out;
        transition: 0.3s ease-out;
    }
    .sp-menu__close-top { text-align: right; }
    .sp-menu__scroll {
        width: 100%;
        height: 100%;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }
    .sp-menu.is-visible .sp-menu__wrap {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }
    .sp-menu.is-animatable .sp-menu__wrap {
        -webkit-transition: 0.3s ease-out;
        -moz-transition: 0.3s ease-out;
        -ms-transition: 0.3s ease-out;
        -o-transition: 0.3s ease-out;
        transition: 0.3s ease-out;
    }
    .sp-menu__main {
        width: 100%;
        padding: 24px;
        background: #0060be;
        color: #fff;
    }
    .sp-menu__top {
        margin-bottom: 24px;
        font-size: 14px;
    }
    .sp-menu__link {
        position: relative;
        display: block;
        padding: 8px 34px 8px 4px;
        border-bottom: 1px solid;
        color: #fff;
        text-decoration: none;
        font-weight: 400;
    }
    .sp-menu__link:active,
    .sp-menu__link:hover {
        outline: 0;
        color: currentColor;
        text-decoration: none;
    }
    .sp-menu__list2 {
        display: flex;
        margin: 0 0 24px;
        padding: 0;
        list-style: none;
        border: 1px solid;
    }
    .sp-menu__close-icon {
        width: 16px;
        height: 16px;
        cursor: pointer;
    }
    .sp-menu__close-icon2 {
        width: 12px;
        height: 12px;
    }
    .sp-menu__icon-item {
        display: flex;
        align-items: center;
        justify-content: center;
        width: calc(100% / 2);
        padding: 24px 8px;
    }
    .sp-menu__icon-item + .sp-menu__icon-item { border-left: 1px solid; }
    .sp-menu__translate { margin-bottom: 24px; }
    .sp-menu__translate-link {
        color: #fff;
        margin: 0 4px;
    }
    .sp-menu__translate-link:hover {
        color: #fff;
        text-decoration: none;
    }
    .sp-menu__list1 {
        padding: 0;
        margin: 0;
        list-style: none;
    }
    .sp-menu__icon-link {
        color: currentColor;
        font-size: 11px;
    }
    .sp-menu__icon-link:hover {
        text-decoration: none;
        color: #fff;
    }
    .sp-menu__icon-image {
        display: block;
        margin: 0 auto 8px;
        text-align: center;
    }
    .sp-menu__close-top {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }
    .sp-menu__child {
        display: none;
        padding: 0;
        margin: 0;
    }
}

/* =================================================================== */

/* Key Visual */
.sec-keyvisual .kv-anchornav { background-color: #346adb; }
.sec-keyvisual .sections-list li {
    padding: 8px 0;
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
    @media screen and (min-width: 1200px) {
        padding: 10px 0;
    }
}
.sec-keyvisual .sections-list li a:hover { opacity: 0.7; }
.sec-keyvisual .sections-list li:not(:last-child) .section {
    border-right: 1px solid rgba(255, 255, 255, 0.24);
    @media screen and (min-width: 768px) {
        padding: 10px 30px;
    }
    @media screen and (min-width: 992px) {
        padding: 10px 40px;
    }
    @media screen and (min-width: 1400px) {
        padding: 10px 55px;
    }
}
.sec-keyvisual .section {
    background-color: #346adb;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    @media screen and (min-width: 768px) {
        font-size: 16px;
        padding: 0 40px;
    }
    @media screen and (min-width: 992px) {
        font-size: 20px;
        padding: 10px 40px;
    }
}
.sec-keyvisual .kv-banner img {
    width: 100%;
    object-fit: cover;
}
.sec-keyvisual .img-map {
    position: relative;
    margin-top: -1px;
}
.sec-keyvisual .img-map a {
    position: absolute;
    left: 47.1%;
    top: 86.4%;
    z-index: 5;
    overflow: hidden;
    display: block;
    width: 49.3%;
    height: 6.8%;
    cursor: pointer;
}
.sec-keyvisual .kv-bottom-wrap {
    position: relative;
    display: flex;
    justify-content: space-between;
    @media screen and (min-width: 768px) {
        height: 90px;
        max-width: 95%;
    }
    @media screen and (min-width: 992px) {
        height: 100px;
    }
    @media screen and (min-width: 1200px) {
        height: 120px;
        max-width: 1140px !important;
    }
    @media screen and (min-width: 1400px) {
        max-width: 1250px !important;
    }
    @media screen and (min-width: 1600px) {
        max-width: 1500px !important;
    }
}
.sec-keyvisual .kv-bottom-sp .kv-img {
    position: absolute;
    bottom: 0;
    @media screen and (max-width: 450px) {
        width: 90%;
    }
}
.sec-keyvisual .kv-bottom-sp .kv-btn {
    position: absolute;
    right: 3rem;
    bottom: 3rem;
    @media screen and (max-width: 450px) {
        right: 1.5rem;
    }
}
.sec-keyvisual .kv-bottom {
    background: transparent linear-gradient(270deg, #346adb 0%, #346adb 0%, #208fff 52%, #346adb 100%);
    position: relative;
    bottom: 0;
    @media screen and (min-width: 768px) {
        height: 90px;
    }
    @media screen and (min-width: 992px) {
        height: 100px;
    }
    @media screen and (min-width: 1200px) {
        height: 120px;
    }
}
.sec-keyvisual .kv-bottom .kv-img img {
    position: absolute;
    left: 0;
    bottom: 0;
    @media screen and (min-width: 768px) {
        width: 62%;
    }
    @media screen and (min-width: 992px) {
        width: 600px;
    }
    @media screen and (min-width: 1200px) {
        width: 700px;
    }
}
.sec-keyvisual .kv-bottom .kv-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sec-keyvisual .kv-bottom .kv-btn .btn-wrap {
    margin-top: 0 !important;
}
.sec-keyvisual .kv-btn .btn-oel {
    justify-content: space-between !important;
    padding: 12px 14px;
    min-width: auto;
    @media screen and (min-width: 768px) {
        padding: 10px 20px;
        transform: scale(0.85);
    }
    @media screen and (min-width: 1200px) {
        padding: 10px 20px;
        transform: scale(0.9);
    }
    @media screen and (min-width: 1400px) {
        padding: 15px 36px;
        transform: scale(1);
    }
}
.sec-keyvisual .kv-btn .btn-label {
    margin-right: 5px;
    font-size: 13px;
    @media screen and (min-width: 576px) {
        font-size: 14px;
    }
    @media screen and (min-width: 576px) {
        margin-right: 15px;
        font-size: 16px;
    }
    @media screen and (min-width: 768px) {
        margin-right: 0;
    }
    @media screen and (min-width: 992px) {
        margin-right: 18px;
        font-size: 20px;
    }
}
.sec-keyvisual .kv-btn .btn-oel svg {
    width: 15px;
    height: 15px;
    @media screen and (min-width: 768px) {
        width: 18px;
        height: 18px;
    }
}

/* ------------ Banner Two Column section ------------ */
.sec-banner-twocol .banner-bg {
    position: relative;
}
.sec-banner-twocol .banner-bg p {
    position: absolute;
    top: 1.3rem;
    left: 1.5rem;
    color: #ffffff;
    font-weight: 900;
    font-size: 50px;
    line-height: 1.5;
    text-shadow: 0px 3px 6px #5e6d68;
}
/* Two column */
.sec-banner-twocol .twocol p {
    font-size: 20px;
    font-weight: 600;
    @media screen and (min-width: 768px) {
        font-size: 26px;
    }
    @media screen and (min-width: 992px) {
        font-size: 30px;
    }
}
.sec-banner-twocol ul li {
    display: flex;
    padding: 12px 0;
    font-weight: 900;
    font-size: 18px;
    @media screen and (min-width: 768px) {
        font-size: 22px;
    }
    @media screen and (min-width: 992px) {
        font-size: 26px;
    }
}
.sec-banner-twocol .check {
    display: flex;
    margin-right: 15px;
    border-radius: 25px;
    text-align: center;
    @media screen and (min-width: 768px) {
        margin-top: 2px;
    }
    @media screen and (min-width: 992px) {
        margin-right: 15px;
    }
}
.sec-banner-twocol .check svg {
    width: 28px;
    height: 28px;
    @media screen and (min-width: 768px) {
        padding: 1px;
        width: 32px;
        height: 32px;
        font-size: 30px;
    }
    @media screen and (min-width: 992px) {
        padding: 2px;
        width: 42px;
        height: 42px;
        font-size: 34px;
    }
}
.sec-banner-twocol .twocol-swiper {
    position: relative;
    overflow: hidden;
}
.sec-banner-twocol .twocol-swiper img {
    height: 550px;
    width: 100%;
    object-fit: cover;
}
.swiper-scale-effect img {
    -webkit-animation: infinite 20s zoom;
    -moz-animation: infinite 20s zoom;
    -ms-animation: infinite 20s zoom;
    -o-animation: infinite 20s zoom;
    animation: infinite 20s zoom;
}
@keyframes zoom {
    from {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    to {
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
        transform: scale(1.05);
    }
}
.sec-banner-twocol .twocol-swiper .swiper-pagination {
    bottom: 1.5rem;
}
.sec-banner-twocol .twocol-swiper .swiper-pagination-bullet {
    position: relative;
    overflow: hidden;
    margin: 0 !important;
    width: 40%;
    height: 4px;
    background: #c5c5c5a6;
    border-radius: 0;
    opacity: 1;
}
.sec-banner-twocol .twocol-swiper .swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: unset;
    display: block;
}
.sec-banner-twocol .twocol-swiper .swiper-pagination-bullet-active {
    background: #0070e0;
}

/* ------------ Lesson section ------------ */
.sec-lesson {
    background-color: #f5f5fb;
}
.sec-lesson .green-dash {
    position: relative;
    border: 4px dashed #85efcc;
    border-radius: 24px !important;
    padding: 40px 30px;
    @media screen and (min-width: 992px) {
        padding: 50px 80px;
    }
    @media screen and (min-width: 1200px) {
        padding: 60px 80px;
    }
}
.sec-lesson .green-bg {
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    width: 88%;
    margin: 0 auto;
    padding: 10px 20px;
    background: #16cc90;
    border-radius: 50px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    @media screen and (min-width: 576px) {
        width: 85%;
        font-size: 18px;
    }
    @media screen and (min-width: 768px) {
        top: -20px;
        font-size: 24px;
    }
    @media screen and (min-width: 992px) {
        top: -35px;
        font-size: 32px;
    }
    @media screen and (min-width: 1200px) {
        top: -40px;
        font-size: 38px;
    }
}
.sec-lesson .paragraph1 {
    width: 100%;
    margin-top: 16px;
    margin-bottom: 28px;
    font-size: 16px;
    font-weight: 500;
    @media screen and (min-width: 390px) {
        margin-top: 0;
    }
    @media screen and (min-width: 768px) {
        width: 80%;
        padding: 40px 10px;
    }
    @media screen and (min-width: 992px) {
        width: 90%;
        margin-bottom: 20px;
        padding: 40px 20px;
        font-size: 20px;
    }
    @media screen and (min-width: 1200px) {
        width: 88%;
        margin-bottom: 40px;
        font-size: 24px;
    }
}
.sec-lesson .lesson-img2 {
    position: absolute;
    right: -1.5rem;
    top: 14%;
    @media screen and (min-width: 450px) {
        top: 13%;
    }
    @media screen and (min-width: 576px) {
        top: 9rem;
    }
    @media screen and (min-width: 768px) {
        width: 11rem;
        top: 2.5rem;
    }
    @media screen and (min-width: 992px) {
        width: 12rem;
        top: 3rem;
    }
    @media screen and (min-width: 1200px) {
        width: auto;
    }
}
.sec-lesson .dash-content {
    margin-bottom: 5rem;
    @media screen and (min-width: 768px) {
        margin-bottom: 5rem;
    }
}
.sec-lesson .blue-grp {
    border: 2px solid #396ad2;
    border-radius: 10px;
}
.sec-lesson .blue-head {
    padding: 8px 50px 8px 8px;
    background: #346adb;
    color: #fff;
    border-radius: 5px 5px 0 0;
    font-size: 20px;
    font-weight: 700;
    @media screen and (min-width: 576px) {
        padding: 12px 30px 12px 12px;
    }
    @media screen and (min-width: 768px) {
        padding: 12px 20px 15px;
    }
    @media screen and (min-width: 1200px) {
        padding: 12px 25px 15px;
        font-size: 22px;
    }
}
.sec-lesson .blue-grp p {
    padding: 15px;
    margin-bottom: 0;
    color: #1e2635;
    line-height: 1.5;
    font-size: 16px;
    @media screen and (min-width: 768px) {
        padding: 20px;
    }
    @media screen and (min-width: 992px) {
        font-size: 20px;
    }
    @media screen and (min-width: 1200px) {
        padding: 25px;
        font-size: 22px;
    }
}
.sec-lesson .lesson-img3 {
    position: absolute;
    left: 0;
    bottom: 14.5%;
    @media screen and (min-width: 450px) {
        bottom: 13.5%;
    }
    @media screen and (min-width: 576px) {
        bottom: 14.5%;
    }
    @media screen and (min-width: 768px) {
        width: 11rem;
        bottom: -5rem;
    }
    @media screen and (min-width: 992px) {
        width: 12rem;
    }
    @media screen and (min-width: 1200px) {
        width: auto;
        bottom: -6rem;
    }
}
.sec-lesson .blue-dash {
    width: 100%;
    padding: 15px 40px;
    background: #e5f1fc;
    border: 3px dashed #208fff;
    border-radius: 3rem;
    @media screen and (min-width: 420px) {
        border-radius: 10rem;
    }
    @media screen and (min-width: 768px) {
        padding: 20px 40px;
        position: absolute;
        bottom: -5rem;
        right: 2rem;
        width: 66%;
    }
    @media screen and (min-width: 992px) {
        padding: 25px 55px;
        width: 75%;
    }
}
.sec-lesson .blue-dash div {
    display: flex;
    flex-wrap: wrap;
}
.sec-lesson .blue-dash .d-flex p {
    margin-bottom: 0;
    font-size: 16px;
    @media screen and (min-width: 992px) {
        font-size: 20px;
    }
    @media screen and (min-width: 1200px) {
        font-size: 24px;
    }
}
.sec-lesson .blue-dash p {
    margin-bottom: 0;
    font-size: 16px;
    @media screen and (min-width: 992px) {
        font-size: 20px;
    }
    @media screen and (min-width: 1200px) {
        font-size: 22px;
    }
}
.sec-lesson .blue-dash .sub-greenbg {
    padding: 2px 8px 4px;
    background: #1edb9c;
    border-radius: 25px;
    color: #fff;
    line-height: 1.5;
    font-size: 12px;
    @media screen and (min-width: 768px) {
        padding: 2px 8px;
        font-size: 16px;
    }
    @media screen and (min-width: 1200px) {
        font-size: 18px;
    }
}
.sec-lesson .btn-wrap {
    margin-top: 3rem;
    @media screen and (min-width: 576px) {
        margin-top: 5rem;
    }
    @media screen and (min-width: 768px) {
        margin-top: 8rem;
    }
    @media screen and (min-width: 1200px) {
        margin-top: 10rem;
    }
}

/* -------- Feature section -------- */
.sec-feature .btn-wrap {
    margin-right: 40px;
    margin-left: 40px;
}

/* -------- Flow section -------- */

.sec-flow .flow-wrap {
    display: flex;
}
.sec-flow .flow-circle-wrap {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sec-flow .flow-step {
    font-family: "Inter-Bold" !important;
    color: #bfcde8;
}
.sec-flow .flow-step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background-color: #346adb;
    border-radius: 100%;
    font-size: 18px;
    @media screen and (min-width: 992px) {
        width: 45px;
        height: 45px;
    }
}
.sec-flow .flow-step-number span {
    font-family: "Inter-Bold" !important;
    color: #ffffff !important;
}
.sec-flow .flow-dashed-horizontal {
    position: relative;
    z-index: -1;
    top: 12.5%;
    width: 100%;
    height: 0;
    border-top: 2px solid transparent;
    border-image: repeating-linear-gradient(to right, #bfcde8 0px, #bfcde8 10px, transparent 10px, transparent 16px);
    border-image-slice: 1;
    @media screen and (max-width: 1599.98px) {
        top: 14%;
    }
    @media screen and (max-width: 1399px) {
        top: 14.5%;
    }
    @media screen and (max-width: 1199.98px) {
        top: 16.5%;
    }
    @media screen and (max-width: 991.98px) {
        top: 20%;
    }
}
.sec-flow .flow-dashed-horizontal::after,
.sec-flow .flow-dashed-horizontal::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #bfcde8;
    -webkit-transform: translateY(-55%);
    -moz-transform: translateY(-55%);
    -ms-transform: translateY(-55%);
    -o-transform: translateY(-55%);
    transform: translateY(-55%);
}
.sec-flow .flow-dashed-horizontal::after {
    left: -20px;
}
.sec-flow .flow-dashed-horizontal::before {
    right: -20px;
}
.sec-flow .flow-dashed-vertical {
    height: 90px;
    width: 0;
    border-left: 2px solid transparent;
    border-image: repeating-linear-gradient(to bottom, #bfcde8 0px, #bfcde8 10px, transparent 10px, transparent 16px);
    border-image-slice: 1;
    @media screen and (max-width: 1199.98px) {
        height: 80px;
    }
    @media screen and (max-width: 991.98px) {
        height: 60px;
    }
}
.sec-flow .flow-circle {
    display: block;
    -webkit-transition: scale 0.5s;
    -moz-transition: scale 0.5s;
    -ms-transition: scale 0.5s;
    -o-transition: scale 0.5s;
    transition: scale 0.5s;
}
.sec-flow .flow-circle-shadow {
    position: absolute;
    bottom: -25%;
    left: 0;
    width: 100%;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}
.sec-flow .flow-circle:hover .flow-circle-shadow {
    opacity: 1;
}
.sec-flow .img-circle {
    -webkit-transition: transform 1s ease;
    -moz-transition: transform 1s ease;
    -ms-transition: transform 1s ease;
    -o-transition: transform 1s ease;
    transition: transform 1s ease;
}
.sec-flow .flow-circle:hover {
    scale: 1.1;
}
.sec-flow .flow-circle::before {
    content: "";
    position: absolute;
    top: 51%;
    left: 50%;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border-radius: 50%;
    background: #fff;
    filter: blur(10px);
    transform: translate(-50%, -50%);
    transition: 0.5s ease-in-out;
    z-index: -1;
}
.sec-flow .flow-circle:hover::before {
    background: #b9cfee;
}
.sec-flow .flow-circle:hover::before {
    opacity: 1;
}
.sec-flow .flow-step-icon {
    position: absolute;
    top: 37%;
    left: 50%;
    width: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.sec-flow .flow-circle-shadow {
    opacity: 0;
    -webkit-transition: opacity 0.6s ease-in-out;
    -moz-transition: opacity 0.6s ease-in-out;
    -ms-transition: opacity 0.6s ease-in-out;
    -o-transition: opacity 0.6s ease-in-out;
    transition: opacity 0.6s ease-in-out;
}
.sec-flow .flow-circle:hover .flow-circle-shadow {
    opacity: 1 !important;
}
.sec-flow .flow-step-label {
    position: absolute;
    top: 72%;
    left: 50%;
    width: 100%;
    height: 50px;
    color: #3460be;
    font-size: 16px;
    font-weight: 700;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 18px;
    margin-top: 3px;
    line-height: 1.4;
    @media screen and (max-width: 1199.98px) {
        font-size: 14px;
    }
    @media screen and (max-width: 991.98px) {
        top: 79%;
        font-size: 11px;
    }
}
.sec-flow .btn-oel {
    position: relative;
    padding: 15px 40px;
    background-color: #346adb;
    background-image: unset;
    font-weight: 700;
    @media screen and (min-width: 768px) {
        padding: 15px 57px 15px 75px;
    }
    & .btn-label {
        font-size: 14px;
        margin-right: 0px;
        margin-left: 20px;
        @media screen and (min-width: 420px) {
            font-size: 20px;
        }
        @media screen and (min-width: 768px) {
            margin-left: 0px;
        }
        @media screen and (min-width: 992px) {
            font-size: 28px;
        }
    }
    & .img-megaphone {
        width: 45px;
        position: absolute;
        left: 30px;
        top: -25px;
        @media screen and (min-width: 420px) {
            left: 40px;
        }
        @media screen and (min-width: 576px) {
            left: -20px;
            top: unset;
        }
        @media screen and (min-width: 992px) {
            width: unset;
        }
    }
}
.sec-flow .btn-wrap {
    margin-top: 40px !important;
    @media screen and (min-width: 768px) {
        margin-top: 60px !important;
    }
    @media screen and (min-width: 992px) {
        margin-top: 80px !important;
    }
}

/* -------- Case section -------- */
.fade-item {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: 0.6s ease-in;
    -moz-transition: 0.6s ease-in;
    -ms-transition: 0.6s ease-in;
    -o-transition: 0.6s ease-in;
    transition: 0.6s ease-in;
}
.fade-item.is-visible {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}
.sec-case .case-slider {
    position: relative;
    width: 100%;
}
.sec-case .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    box-shadow: 0px 5px 28px #7895c14a;
    @media screen and (min-width: 768px) {
        margin-bottom: 20px;
    }
}
.sec-case .case-thumbnail {
    position: relative;
}
.sec-case .case-thumbnail img {
    height: auto;
    width: 100%;
}
.sec-case .blue-tag {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px 12px 8px;
    background: #346adb;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}
.sec-case .case-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    @media screen and (max-width: 575.98px) {
        padding: 25px;
    }
}
.sec-case .case-body .title {
    font-size: 30px;
    font-weight: 700;
    @media screen and (max-width: 575.98px) {
        font-size: 24px;
    }
}
.sec-case .case-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    font-weight: 500;
    font-size: 18px;
    @media screen and (max-width: 575.98px) {
        font-size: 16px;
    }
}
.sec-case .case-content .green-tag {
    display: inline-block;
    width: 95px;
    margin-right: 10px;
    padding: 2px 5px;
    background: #4bc89e;
    border-radius: 4px;
    color: #fff;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}
.sec-case .case-swiper-pagination {
    text-align: center;
}
.sec-case .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 8px !important;
    background-color: #e1e6ec;
    opacity: 1;
    @media screen and (min-width: 768px) {
        width: 12px;
        height: 12px;
    }
}
.sec-case .swiper-pagination-bullet-active {
    background-color: #a8b8d9 !important;
    transform: scale(1.4);
}

/* -------- Testimonial section -------- */
.sec-testimonial {
    background: transparent
        linear-gradient(126deg, #0060bc 0%, #0060bc 41%, #0d82d1 100%) 0% 0%
        no-repeat padding-box;
}
.sec-testimonial .swiper-img-column {
    display: flex;
    flex-direction: column-reverse;
    @media screen and (min-width: 768px) {
        display: flex;
        flex-direction: row;
    }
}
.sec-testimonial .img-column {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    @media screen and (max-width: 767.98px) {
        & img {
            width: 450px;
        }
    }
    @media screen and (min-width: 768px) {
        width: 40%;
        align-items: flex-end;
    }
    @media screen and (min-width: 992px) {
        width: 35%;
        align-items: flex-end;
    }
    @media screen and (min-width: 1200px) {
        width: 45%;
    }
    @media screen and (min-width: 1400px) {
        width: 35%;
    }
}
.sec-testimonial .swiper-column {
    padding: 80px 0;
    width: 100%;
    @media screen and (min-width: 768px) {
        width: 60%;
    }
    @media screen and (min-width: 992px) {
        width: 65%;
    }
    @media screen and (min-width: 1200px) {
        width: 55%;
    }
    @media screen and (min-width: 1400px) {
        width: 65%;
    }
}
.sec-testimonial .section-title {
    padding-bottom: 0;
    color: #fff;
    @media screen and (min-width: 768px) {
        font-size: 38px;
    }
    @media screen and (min-width: 992px) {
        font-size: 45px;
    }
}
.sec-testimonial .swiper-slide {
    display: block;
    background-color: #fff;
    border-radius: 12px;
}
.sec-testimonial .testimonial-grp {
    position: relative;
    display: inline;
    align-items: center;
}
.sec-testimonial .swiper-slide:nth-of-type(odd) .testimonial-icon {
    background: #4bc89e;
}
.sec-testimonial .swiper-slide:nth-of-type(even) .testimonial-icon {
    background: #4783ff;
}
.sec-testimonial .swiper-slide .testimonial-icon {
    position: absolute;
    z-index: 1;
    top: -12%;
    right: 7%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    @media screen and (min-width: 992px) {
        top: -13%;
        right: 6%;
        width: 70px;
        height: 70px;
    }
    @media screen and (min-width: 1200px) {
        top: -12%;
    }
}
.sec-testimonial .testimonial-icon img {
    width: 25px;
}
.sec-testimonial .testimonial-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px 30px 32px 30px;
    border: none;
    @media screen and (min-width: 992px) {
        padding: 60px 30px 45px 30px;
    }
}
.sec-testimonial .testimonial-content {
    display: flex;
    justify-content: space-between;
}
.sec-testimonial .text {
    margin-bottom: 20px;
    font-weight: 700;
}
.sec-testimonial .swiper-slide:nth-of-type(odd) .bg-name {
    background: #4bc89e;
}
.sec-testimonial .swiper-slide:nth-of-type(even) .bg-name {
    background: #346adb;
}
.sec-testimonial .bg-name {
    position: relative;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 190px;
    padding: 5px 10px 8px;
    color: #fff;
    border-radius: 3px;
    font-weight: 600;
    @media screen and (min-width: 380px) {
        max-width: 240px;
    }
    @media screen and (min-width: 480px) {
        max-width: unset;
        max-width: 100%;
    }
    @media screen and (min-width: 1200px) {
        font-size: 20px;
    }
}
.sec-testimonial .triangle {
    position: absolute;
    top: -12px;
    left: 12px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #4bc89e;
}
.sec-testimonial .swiper-slide:nth-of-type(even) .triangle { border-bottom: 20px solid #346adb !important; }
.sec-testimonial .swiper-slide:nth-of-type(odd) .triangle { border-bottom: 20px solid #4bc89e !important; }
.sec-testimonial .bg-name { font-size: 16px; }
.sec-testimonial .text {
    font-size: 20px;
    line-height: 1.7;
}
.sec-testimonial .swiper-pagination { position: unset; }
.sec-testimonial .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 6px !important;
    background-color: #dfedfb;
}
.sec-testimonial .swiper-pagination-bullet-active {
    background-color: #bcdfff !important;
    transform: scale(1.6);
    margin: 0 8px !important;
}
@media screen and (min-width: 768px) {
    .sec-testimonial .swiper-pagination { text-align: left; }
}
@media screen and (min-width: 1800px) {
    .sec-testimonial .img-column img { width: 75%; }
}

/* -------- FAQ section -------- */
.sec-faq .qa-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Inter" !important;
    font-weight: 700;
    margin-right: 20px;
    color: #fff;
    border-radius: 50px;
    font-size: 24px;
    width: 48px;
    height: 48px;
    @media screen and (min-width: 768px) {
        font-size: 28px;
        width: 55px;
        height: 55px;
    }
}
.sec-faq .q-icon { background: #346adb; }
.sec-faq .a-icon { background: #4bc89e; }
.sec-faq .accordion-header:first-of-type .accordion-button {
    border-top-right-radius: 0 !important;
    border-top-left-radius: 0 !important;
}
.sec-faq .accordion-header:last-of-type .accordion-button,
.sec-faq .accordion-item:last-of-type {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
.sec-faq .accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent !important;
    color: #1e2635;
    box-shadow: none !important;
    padding: 16px 40px 24px 0;
}
.sec-faq .icon-img {
    font-weight: 700;
    font-size: 18px;
    @media screen and (min-width: 576px) {
        font-size: 20px;
    }
    @media screen and (min-width: 992px) {
        font-size: 24px;
    }
}
.sec-faq .accordion-icon::before,
.sec-faq .accordion-icon::after {
    background: #8a919e;
}
.sec-faq .accordion-icon {
    padding-left: 25px;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
}
.sec-faq .accordion-icon:before,
.sec-faq .accordion-icon:after {
    position: absolute;
    content: "";
    display: block;
}
.sec-faq .accordion-icon:before {
    top: -15px;
    width: 4px;
    height: 30px;
    -webkit-transition: width 1s, height 1s, transform 0.6s;
    -moz-transition: width 1s, height 1s, transform 0.6s;
    -ms-transition: width 1s, height 1s, transform 0.6s;
    -o-transition: width 1s, height 1s, transform 0.6s;
    transition: width 1s, height 1s, transform 0.6s;
}
.sec-faq .accordion-content.collapse:not(.show) .accordion-icon:before,
.sec-faq .accordion-button:not(.collapsed) .accordion-icon:before {
    -webkit-transition: width 1s, height 1s, transform 0.6s;
    -moz-transition: width 1s, height 1s, transform 0.6s;
    -ms-transition: width 1s, height 1s, transform 0.6s;
    -o-transition: width 1s, height 1s, transform 0.6s;
    transition: width 1s, height 1s, transform 0.6s;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.sec-faq .accordion-icon:after {
    top: -2px;
    right: -18px;
    width: 30px;
    height: 4px;
}
.sec-faq .accordion-item {
    margin-bottom: 10px;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 2px solid #e8eff6 !important;
}
.sec-faq .accordion-button::after { display: none !important; }
.sec-faq .accordion-head,
.sec-faq .accordion-body {
    padding: 20px;
    background-color: transparent;
}
.sec-faq .accordion-body {
    padding: 5px 0 10px;
    line-height: 2;
    @media screen and (min-width: 992px) {
        padding: 5px 60px 10px 0;
    }
}
.sec-faq .accordion-body .btn-faq {
    color: #0d6efd;
    text-decoration: none;
}
.sec-faq .accordion-body .btn-faq .btn-text {
    border-bottom: 1px solid #0d6efd;
    font-size: 16px;
    @media screen and (min-width: 576px) {
        font-size: 18px;
    }
    @media screen and (min-width: 992px) {
        font-size: 20px;
    }
}
.sec-faq .accordion-body .btn-faq svg {
    width: 24px;
    padding-left: 10px;
    padding-top: 3px;
    fill: #0d6efd;
    @media screen and (min-width: 576px) {
        width: 26px;
    }
    @media screen and (min-width: 992px) {
        width: 30px;
    }
}
.sec-faq .accordion-body p {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 16px;
    @media screen and (min-width: 576px) {
        font-size: 18px;
    }
    @media screen and (min-width: 992px) {
        font-size: 20px;
    }
}
.sec-faq .accordion-collapse {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.sec-faq .accordion-answer {
    padding: 0 0 15px;
}

/* -------- Inquiry section -------- */
.sec-inquiry .marketo-form {
    background: #f1f4f6;
    padding: 20px 10px;
    border-radius: 16px;
}
.sec-inquiry .marketo-form p,
.sec-inquiry .marketo-form span {
    font-size: 16px;
}
.sec-inquiry .form-row9 {
    background: transparent !important;
}

@media screen and (min-width: 576px) {
    .sec-inquiry .marketo-form {
        padding: 30px 20px;
    }
}
@media screen and (min-width: 768px) {
    .sec-inquiry .marketo-form {
        padding: 50px;
    }
    .sec-inquiry .btn-yellow p {
        font-size: 18px;
    }
    .sec-inquiry .marketo-form p,
    .sec-inquiry .marketo-form span {
        font-family: "NotoSansJP";
        font-size: 18px;
    }
}

/* -------- Footer -------- */
footer:after,
footer:before {
    content: "";
    display: table;
    table-layout: fixed;
}
footer:after {
    clear: both;
}
footer .container {
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 576px) {
    footer .container {
        max-width: 540px !important;
    }
}
@media (min-width: 768px) {
    footer .container {
        max-width: 720px !important;
    }
}
@media (min-width: 992px) {
    footer .container {
        max-width: 960px !important;
    }
}
@media (min-width: 1200px) {
    footer .container {
        max-width: 1140px !important;
    }
}
footer .top-footer {
    display: block;
    color: #fff;
    background-color: #343e4a;
    padding-bottom: 10px;
}
.top-footer h4 {
    width: 70%;
    margin-top: 24px;
    color: #fff;
    border-bottom: 1px solid #fff;
    font-size: 14px;
    font-weight: 500;
}
.top-footer ul {
    padding-inline-start: 0px;
}
.top-footer ul li {
    list-style: none;
    margin-top: 8px;
    text-decoration: none;
    text-align: left;
}
.top-footer ul ul li { margin-top: 5px; }
.top-footer ul li a,
.top-footer ul li p {
    font-size: 13px;
    text-decoration: none;
}
.top-footer ul li a {
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
}
.top-footer ul li a:hover {
    color: #0060bd;
    text-decoration: underline;
}
.top-footer .footer-parent-link {
    color: #fff;
    text-decoration: none;
}
.top-footer .companyinfo-menu h4 { width: 100%; }
.top-footer .footer-menu-etc ul {
    width: 70%;
    padding-top: 15px;
    margin-top: 51px;
    border-top: 1px solid #fff;
}

/* Social Links */
.footer-social-links {
    justify-content: flex-end;
    width: 100%;
}
.sns-group {
    display: inline-flex;
    justify-content: flex-end;
    margin-right: 0;
}
.sns-group li a { margin-right: 10px; }
.footer-sp-social-links .text-white { color: #fff; }
@media screen and (min-width: 992px) {
    .sns-group { margin-right: 50px; }
}
@media screen and (min-width: 768px) {
    .sns-group li a { margin-right: 35px; }
}

.footer-bottom { background: #edeef0; }
.top-footer .company-lists {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.top-footer .company-lists li:nth-child(-n + 4) { margin-top: 0px; }
.top-footer .company-lists li:nth-child(3n + 1) {
    width: 36%;
    padding: 0 10px 0 0;
}
.top-footer .company-lists li:nth-child(3n + 2) {
    width: 44%;
    padding: 0 20px 0 10px;
}
.top-footer .company-lists li:nth-child(3n + 3) {
    width: 20%;
    padding: 0 0 0 10px;
}
@media screen and (min-width: 1200px) {
    .top-footer .company-lists li:nth-child(even) { width: 32%; }
    .top-footer .company-lists li:nth-child(odd) {
        width: 18%;
        padding: 0 25px 0 0;
    }
    .top-footer .company-lists li:nth-child(4n + 2) { padding: 0 15px 0 0; }
    .top-footer .company-lists li:nth-child(4n + 4) { padding: 0 0 0 15px; }
}

/* PC BOTTOM FOOTER MENU LINKS */
.menu-links-pc .menu-footer-bottom-menu-container > ul { padding-left: 0px; }
.menu-links-pc .menu-footer-bottom-menu-container {
  width: 100%;
  text-align: left;
  font-size: 12px;
}
.menu-links-pc .menu-footer-bottom-menu-container > ul li {
  display: inline-block;
  list-style: none;
  text-align: right;
  border-right: 1px solid #ccc;
}
.menu-links-pc .menu-footer-bottom-menu-container > ul li:first-child a { padding-left: 0px; }
.menu-links-pc .menu-footer-bottom-menu-container > ul li:last-child { border-right: 0px solid #ccc; }
.menu-links-pc .menu-footer-bottom-menu-container > ul li a {
  padding: 10px;
  text-decoration: none;
  color: #000;
}
.menu-links-pc ul li .current,
.menu-links-pc ul li.current-menu-item a {
  color:#0060be;
}
.copyright {
  font-size: 0.875rem;
  margin-bottom: 0;
  text-align: right;
}
.copyright a,
footer#colophon a {
  color: inherit;
}

/* SP MENU & FOOTER */
.sp-footer__logos { background: #edeef0; }
.sp-footer__logos img { height: 50px; }
.sp-footer__bottom div,
.sp-footer__logos > ul li {
    display: inline-block;
}
.sp-footer__logos ul {
    padding-left: 0;
    text-align: center;
    margin-bottom: 0;
}
.tmj_logo img { width: 70px; }
.secom_logo { float: right; }
.secom_logo img {
    width: 73px;
    margin: 0;
}

@media screen and (min-width: 576px) {
    .sp-footer__logos > ul li { padding: 0 8px; }
}
@media screen and (min-width: 992px) {
    .secom_logo img,
    .tmj_logo img {
        width: 100%;
    }
    .secom_logo img { margin: 20px 0; }
    .sp-footer__logos img { height: 85px; }
}
@media screen and (min-width: 768px) {
    .secom_logo img { margin: 10px 0; }
}
@media screen and (max-width: 991px) {
    .sp-header__button,
    .sp-header__logo,
    .sp-header__menu-icon {
        vertical-align: middle;
    }
    .sp-footer__list-item,
    .sp-header__contact,
    .sp-menu__close-bottom,
    .sp-menu__icon-item,
    .sp-menu__translate {
        text-align: center;
    }
    .sp-menu__close-bottom { cursor: pointer; }
    .sp-footer__nav {
        margin: 0;
        padding: 32px 16px;
        background: #343e4a;
    }
    .sp-footer__list {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    .sp-footer__list-item + .sp-footer__list-item { margin-top: 8px; }
    .sp-footer__link {
        font-size: 13px;
        font-weight: 400;
        color: #fff !important;
        text-decoration: none;
    }
    .sp-footer__link:hover {
        color: #fff;
        text-decoration: none;
    }
    .sp-footer__bottom {
        background: #edeef0;
        padding: 16px;
        align-items: center;
    }
    .sp-footer__copy {
        flex: 1;
        font-size: 12px;
        margin-left: 24px;
    }
    .sp-footer__copy small { font-size: 100% !important; }
    .to-top-wrap {
        padding: 20px 16px 16px 0;
        display: flex;
        justify-content: flex-end;
    }
    .sp-to-top {
        display: none;
        background: #fff;
        border-radius: 50% !important;
        width: 35px;
        height: 35px;
        z-index: 5;
    }
    .sp-to-top.is-fixed {
        position: fixed;
        right: 16px;
        bottom: 16px;
    }
}

@media screen and (max-width: 400px) {
    .sp-header__secom_logo-image,
    .sp-header__tmj_logo-image {
        width: 80px;
    }
}
@media screen and (max-width: 340px) {
    .sp-header__tmj_logo-image { width: 65px; }
    .sp-header__secom_logo-image { width: 60px; }
}
@media screen and (min-width: 0\0) {
    .sp-header__tmj_logo-image {
        padding-top: 5px !important;
        padding-bottom: 0;
    }
    .sp-header__secom_logo-image { margin-top: 13px; }
}

/* -------- Back to top -------- */
#back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    background-color: #ffffff;
    border-radius: 50%;
    border: 3px solid #cccfd6;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: opacity 0.3s ease, transform 0.3s ease;
    -moz-transition: opacity 0.3s ease, transform 0.3s ease;
    -ms-transition: opacity 0.3s ease, transform 0.3s ease;
    -o-transition: opacity 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    @media screen and (max-width: 767.98px) {
        bottom: 15px;
        right: 15px;
    }
}
#back-to-top.show {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    pointer-events: auto;
}
#back-to-top svg {
    position: absolute;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
#progress-circle { will-change: transform; }
#progress-circle circle {
    stroke: #396AD2;
    stroke-dasharray: 175;
    stroke-dashoffset: 175;
    -webkit-transition: stroke-dashoffset 0.2s ease;
    -moz-transition: stroke-dashoffset 0.2s ease;
    -ms-transition: stroke-dashoffset 0.2s ease;
    -o-transition: stroke-dashoffset 0.2s ease;
    transition: stroke-dashoffset 0.2s ease;
    shape-rendering: geometricPrecision;
    vector-effect: non-scaling-stroke;
}
#back-to-top > svg:last-child {
    position: relative;
    z-index: 1;
}
#back-to-top svg:last-child {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}
