  /*======= common style =======*/
@charset "utf-8";

/* import font */

/* import font */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-weight: 400;
    color: #000000;
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 16px;
    font-family: "Kozuka Gothic Pr6N", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

@media only screen and (max-width: 360px) {
    body {
        min-width: 320px;
    }
}

a {
    text-decoration: none;
    color: unset;
    transition: 0.2s;
}

a:hover {
    text-decoration: none;
    opacity: 0.7;
}

ul,
li {
    list-style-type: none;
    margin: 0px;
}

img {
    display: block;
    max-width: 100%;
    transition: .2s;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0px;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.container {
    max-width: 1260px;
    padding: 0 20px;
    margin: 0 auto;
    transition: 0.2s;
}

@media (max-width: 1024px) {
    .container {
        max-width: 960px;
    }
    section.section {
        padding: 60px 0 !important;
    }
}

.sp {
    display: none  !important;
}

.pc {
    display: block !important;
}

.pb-0 {
    padding-bottom: 0px !important;
}

.mb-0 {
    margin-bottom: 0px !important;
}

.cl-white {
    color: #ffffff !important;
}

.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.btn span {
    color: #1d2087;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 2px;
    padding-top: 5px;
    border-bottom: 2px solid #fff;
    white-space: nowrap;
    transition: 0.2s;
}

.btn:hover span:first-child {
    opacity: 0.7;
}

.btn.--blue span {
    border-color: #1d2087;
}

.btn span.btn-img {
    border: 2px solid #fff;
    width: 62px;
    height: 62px;
    background-color: transparent;
    transition: 0.3s;
    border-radius: 50%;
    padding-bottom: 0px;
    position: relative;
} 

.btn.--blue span.btn-img {
    border-color: #1d2087;
}

.btn.--white span.btn-img::after {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 32px; height: 8px;
    background: url(../images/arrow-sprites.png) -10px -10px;
}

.btn.--blue span.btn-img::after {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 32px; height: 8px;
    background: url(../images/arrow-sprites.png) -62px -10px;
}

.btn.--white:hover span.btn-img::after {
    background: url(../images/arrow-sprites.png) -62px -10px;
}

.btn.--blue:hover span.btn-img::after {
    background: url(../images/arrow-sprites.png) -10px -10px;
}

.btn.--white:hover span.btn-img {
    background-color: #fff;
}

.btn.--blue:hover span.btn-img {
    background-color: #1d2087;
}

.btn:hover {
    opacity: 1;
}

.title-dot {
    position: relative;
    margin: 60px 0px 45px 0px;
    font-size: 48px;
    font-weight: 600;
    color: #1d2087;
    padding-left: 40px;
    line-height: 1.2;
}

.title-dot::after {
    position: absolute;
    content: "";
    width: 30px;
    height: 25px;
    left: 0px;
    top: 14px;
    background-image: url(../images/dot.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wrap-content__page {
    padding: 100px 0px;
}

.page__title {
    margin-bottom: 80px;
}

.page__title img {
    width: auto;
    margin: 0 auto;
}

.pt-20 {
    padding-top: 20px !important;
}

.color-blue {
    color: #1d2087 !important;
}
/* =====start - header===== */
header {
    position: relative;
    background-color: #fff;
}

.header__inner {
    height: 80px;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header__logo {
    padding: 0px 50px 0px 54px;
    transition: 0.2s;
}

.header__logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header__logo a span {
    font-size: 24px;
    font-weight: 600;
}

.header__menu {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 22px;
}

.menu__item a {
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0px;
    white-space: nowrap;
    position: relative;
}

.menu__item a::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #1d2087;
    transition: 0.3s;
}

.menu__item a:hover::after {
    width: 100%;
}

.menu__item a:hover {
    color: #1d2087;
    opacity: 1;
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    gap: 32px;
    flex: 1;
    overflow: hidden;
}

.header__entry {
    height: 100%;
    background-color: #0095ff;
    width: 252px;
    min-width: 240px;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header__entry::after {
    position: absolute;
    content: "";
    width: 0px;
    height: 0px;
    top: 0;
    left: -1px;

    border-style: solid;
    border-width: 87px 14px 0 0;
    border-color: #fff transparent transparent transparent;
}

.header__entry a img {
    max-width: 124px;
}

.burger {
    display: none;
}
/* =====end - header===== */


/* =========start - footer========= */
footer {
    background-color: #1d2087;
}

.footer__inner {
    padding-top: 80px;
}

.footer__logo {
    margin-bottom: 30px;
}

.footer__logo img {
    width: auto;
}

.footer__info {
    padding-left: 30px;
    padding-right: 30px;
    align-items: flex-end;
    gap: 50px;
    flex-wrap: wrap;
}

.footer__info-list li {
    color: #fff;
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
}

.footer__info a {
    color: #fff;
    font-size: 14px;
    text-decoration: underline;
}

.footer-copyright {
    color: #fff;
    font-size: 14px;
    padding: 78px 30px 16px;
}
/* =========end - footer========= */

/* css button back to top */
#back-to-top {
    position: fixed;
    bottom: 0px;
    right: 0px;
    width: 90px;
    height: 90px;
    background-color: #174f9f;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    color: #fff;
    font-size: 14px;
    
}

#back-to-top img {
    margin-bottom: 5px;
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
  }

#back-to-top:hover {
    opacity: 0.7;
}
/* css button back to top */


