@charset 'utf-8';
.scroll-hint-icon{
    top: 100px !important;
}
.center{
    text-align: center;
}
.en{
    font-family: "Source Sans 3", "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
}
.shadow{
    box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.2);
}

/* ========================
    img
=========================== */
img{
    max-width: 100%;
    height: auto;
}
a img{
    transition: 0.3s;
}
a:hover img{
    opacity: 0.7;
}
.img--line{
    border: 1px solid #111;
    box-sizing: border-box;
}
.img--radius{
    border-radius: 8px;
}

/* ========================
    box
=========================== */
.box--line{
    background: #fff;
    border: 1px solid #111;
    border-radius: 8px;
    padding: 30px 32px;
    box-sizing: border-box;
    box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.2);
}
.box--double{
    background: #EAEDFD;
    border: 1px solid #111;
    border-radius: 8px;
    padding: 6px;
    box-sizing: border-box;
    box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.2);
    position: relative;
}
.box--doubleInner{
    background: #fff;
    border: 1px solid #111;
    border-radius: 4px;
    padding: 40px 32px;
    box-sizing: border-box;
}

/* ========================
    button
=========================== */
.button a{
    width: 320px;
    line-height: 64px;
    text-decoration: none;
    color: #fff;
    background-color: #2F509F;
    display: block;
    text-align: center;
    border-radius: 50px;
    transition: 0.3s;
    font-size: 16px;
    box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.2);
    position: relative;
    max-width: 100%;
}
.button a:hover{
    background-color: #264E75;
}
.button a::before{
    content: "";
    width: 15px;
    height: 12px;
    background: url(../img/_common/button_arrow.svg) no-repeat center / contain;
    position: absolute;
    top: 50%;
    left: 40px;
    margin-top: -6px;
    transform: rotate(-45deg);
    transition: 0.3s;
}
.button a:hover::before{
    transform: translateY(-2px) translateX(2px) rotate(-45deg);
}
.button--bg{
    display: inline-block;
    position: relative;
    max-width: 100%;
}
.button--bg::after{
    content: "";
    width: calc(100% - 64px);
    height: 4px;
    background: url(../img/_common/button_bg.svg) repeat-x left center / auto 100%;
    position: absolute;
    bottom: -4px;
    left: 32px;
}
.button--innerLine a{
    position: relative;
}
.button--innerLine a:after{
    content: "";
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border: 1px solid #90A9E8;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 50px;
    box-sizing: border-box;
}
.button--pdf a::before{
    width: 20px;
    height: 22px;
    background: url(../img/_common/button_pdf.svg) no-repeat center / contain;
    left: 43px;
    margin-top: -10px;
    transform: unset;
}
.button--pdf a:hover::before{
    transform: translateY(-3px);
}
.button--small a{
    width: 195px;
    line-height: 40px;
    font-size: 14px;
}
.button--small a::before{
    width: 10px;
    height: 8px;
    left: 24px;
    margin-top: -4px;
}
.button--white a{
    background: #fff;
    color: #2F509F;
    border: 1px solid #2F509F;
}
.button--white a::before{
    background-image: url(../img/_common/button_arrow_blue.svg);
}
.button--white a:hover{
    background: #EDEDED;
}
.button--blue a{
    background: #4270b3;
}
.button--blue a:hover{
    background: #738bad;
}
.button--green a{
    background: #1FC1A2;
}
.button--green a:hover{
    background: #6bb7a8;
}
.button--orange a{
    background: #F09401;
}
.button--orange a:hover{
    background: #d7ae6e;
}
.button--anchor a{
    line-height: 1.4;
    height: 64px;
    display: table;
    border-radius: 4px;
}
.button--anchor a::before{
    width: 12px;
    height: 6px;
    background-image: url(../img/_common/button_arrow_down.svg);
    left: 20px;
    margin-top: -3px;
    transform: unset;
}
.button--anchor a:hover::before{
    transform: translateY(3px);
}
.button--anchor a .button--anchorText{
    display: table-cell;
    vertical-align: middle;
}
.button--anchor .button--bg::after{
    width: 100%;
    left: 0;
}
.button--anchor.button--blank a::before{
    width: 12px;
    height: 12px;
    top: 12px;
    left: 12px;
    background-image: url(../img/_common/button_arrow_blank.svg);
}
.button--tab a.active{
    background: #C9D3E2;
    color: #264E75;
}
.button--tab a::before{
    display: none;
}
.button--autoWidth a{
    width: auto;
    display: inline-block;
    padding: 0 16px;
}
.button--fontLarge,
.button--fontLarge a{
    font-size: 22px;
}
.button--fontMedium,
.button--fontMedium a{
    font-size: 14px;
}
.button--fontSmall,
.button--fontSmall a{
    font-size: 12px;
}

/* ========================
    header
=========================== */
.header{
    background: #fff;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}
.header__inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 120px);
    padding-left: 48px;
    padding-right: 36px;
    box-sizing: border-box;
}
.header__logo{
    transform: translateY(5px);
}
.header__navList{
    display: flex;
}
.header__navItem{
    margin: 0 15px;
}
.header__navItem a{
    text-decoration: none;
    color: #264E75;
    font-size: 22px;
    transition: 0.3s;
}
.header__navItem a:hover{
    opacity: 0.7;
}
.header__button{
    width: 120px;
    height: 88px;
    position: relative;
}
.header__button img{
    opacity: 1 !important;
}
.header__button a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    background: #2F509F;
    display: table;
    text-decoration: none;
    transition: 0.3s;
}
.header__button--dark a{
    background: #1e3b7e;
}
.header__button a:hover{
    background: #264E75;
}
.header__buttonInner{
    display: table-cell;
    vertical-align: middle;
}
.header__buttonIcon,
.header__buttonLine{
    position: relative;
    display: inline-block;
    margin-bottom: 6px;
    z-index: 1;
}
.header__buttonText{
    font-size: 14px;
    transition: 0.3s;
    line-height: 1;
}

/* ========================
    footer
=========================== */
.footer{
    padding: 48px 0 40px;
    background: #264E75;
    color: #fff;
    font-size: 12px;
}
.footer__inner{
    display: flex;
    justify-content: space-between;
    margin-bottom: 27px;
}
.footer__logo{
    margin-bottom: 7px;
}
.footer__text p + p{
    margin-top: 6px;
}
.footer__right{
    display: flex;
}
.footer__rightItem + .footer__rightItem{
    margin-left: 10px;
}
.footer__rightItem a{
    border: 1px solid #fff;
    padding-left: 26px;
    padding-right: 17px;
    line-height: 28px;
    box-sizing: border-box;
    border-radius: 50px;
    text-decoration: none;
    display: block;
    transition: 0.3s;
    position: relative;
}
.footer__rightItem a::before{
    content: "";
    width: 4px;
    height: 8px;
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    background: url(../img/_common/arrow.svg) no-repeat center / contain;
    transition: 0.3s;
}
.footer__rightItem a:hover{
    background-color: rgba(255, 255, 255, 0.1);
}
.footer__rightItem a:hover::before{
    left: 18px;
}
.footer__copyright{
    color: #7895B1;
}

/* ========================
    wrapper
=========================== */
.wrapper{
    padding: 80px 0 120px;
    background: #F2F3F8;
    background: linear-gradient(180deg,#F2F3F8 0%, #F1FBF9 50%, #E1E4F4 100%);
}

/* ========================
    title
=========================== */
.title{
    margin-bottom: 48px;
    font-size: 28px;
    color: #26417C;
    font-weight: 700;
}
.title__text{
    display: inline-block;
    position: relative;
    min-width: 173px;
    padding-bottom: 16px;
    line-height: 1.4em;
}
.title__text::before,
.title__text::after{
    content: "";
    position: absolute;
}
.title__text::before{
    right: 0;
    bottom: 0;
    width: calc(100% - 77px);
    height: 2px;
    background: #26417C;
    border-radius: 2px;
}
.title__text::after{
    left: 0;
    bottom: -9px;
    width: 77px;
    height: 11px;
    background: url(../img/_common/title_bg.svg) no-repeat left center / contain;
}
.title--secondary{
    padding: 10px 44px 12px;
    font-size: 18px;
    font-weight: 700;
    color: #26417C;
    background: #fff;
    border-radius: 0 100px 100px 0;
    background: #C9D3E2;
    position: relative;
    margin-bottom: 32px;
    line-height: 1.4;
}
.title--secondary::before{
    content: "";
    width: 10px;
    height: 10px;
    background: #fff;
    border: 2px solid #26417C;
    box-sizing: border-box;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
}
.title--tertiary{
    padding-left: 30px;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    margin-bottom: 24px;
    line-height: 1.4;
}
.title--tertiary::before{
    content: "";
    width: 22px;
    height: 26px;
    background: url(../img/_common/title_bg_tertiary.svg) no-repeat center / contain;
    position: absolute;
    top: 2px;
    left: 0;
}
.title--quaternary{
    padding-left: 28px;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    line-height: 1.4;
}
.title--quaternary::before{
    content: "";
    width: 16px;
    height: 16px;
    background: url(../img/_common/title_bg_quaternary.svg) no-repeat center / contain;
    position: absolute;
    top: 4px;
    left: 0;
}

/* ========================
    news
=========================== */
.newsBox{
    border-top: 1px solid #264E75;
    border-bottom: 1px solid #264E75;
    position: relative;
}
.newsBox::before,
.newsBox::after{
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #264E75;
}
.newsBox::before{
    top: 2px;
}
.newsBox::after{
    bottom: 2px;
}
.news__title{
    font-size: 28px;
    font-weight: 600;
    line-height: 40px;
    color: #264E75;
}
.news__item{
    background-image: linear-gradient(to right, #264E75 2px, transparent 2px);
    background-size: 5px 1px;
    background-repeat: repeat-x;
    background-position: 0 bottom;
    padding-bottom: 1px;
}
.news__item:last-of-type{
    background: none;
}
.news__flexBox{
    display: flex;
    align-items: center;
}
.news__item a{
    text-decoration: none;
    position: relative;
    padding: 24px 0;
    color: #26417C;
}
.news__item a::after{
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: url(../img/_common/news_arrow.svg) no-repeat center / contain;
    transition: 0.3s;
}
.news__item a:hover::after{
    right: 20px;
}
.news__date{
    width: 86px;
    font-weight: 500;
    color: #26417C;
}
.news__category{
    font-size: 13px;
    width: 107px;
    line-height: 28px;
    text-align: center;
    border-radius: 20px;
    color: #fff;
    background: #264E75;
    margin-right: 24px;
}
.news__category.pr{
    background: #4270b3;
}
.news__category.news{
    background: #1FC1A2;
}
.news__category.mentainance{
    background: #F09401;
}
.news__postTitle{
    width: calc(100% - 277px);
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    max-height: 16px;
    height: inherit;
    line-height: 1;
    word-break: break-all;
}
.news__postTitle br{
    display: none !important;
}
.news__categoryList{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.news__categoryList li{
    margin-right: 16px;
}
.news__categoryList li:nth-of-type(4n){
    margin-right: 0;
}
.news__singleTitle{
    color: #26417C;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    padding-bottom: 24px;
    margin-bottom: 24px;
    background-image: linear-gradient(to right, #264E75 2px, transparent 2px);
    background-size: 5px 1px;
    background-repeat: repeat-x;
    background-position: 0 bottom;
}
.news__singleContent *{
    word-break: break-all;
}
.news__singleContent p{
    margin-bottom: 16px;
}
.news__singleContent p:last-of-type{
    margin-bottom: 0;
}
.news__singleContent a{
    color: #2F509F;
}
.news__singleContent img{
    max-width: 100%;
    display: block;
}
.news__singleContent img.aligncenter{
    margin: 0 auto;
}
.news__singleContent img.alignright{
    margin: 0 0 0 auto;
}
/* pagination */
.pagination{
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}
.pagination a,
.pagination span{
    width: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 500;
    margin-left: 10px;
}
.pagination a{
    background: #2F509F;
    color: #FFF;
    transition: 0.3s;
    text-decoration: none;
}
.pagination a:hover,
.pagination span{
    background: #C9D3E2;
    color: #264E75;
}
.pagination .prev,
.pagination .next{
    background-image: url(../img/_common/button_arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 10px;
}
.pagination .prev{
    transform: rotate(180deg);
}
.pagination .prev:hover,
.pagination .next:hover{
    background-image: url(../img/_common/button_arrow_blue.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 10px;
}

/* ========================
    #TOP
=========================== */
.mainV{
    position: relative;
}
.mainV__img{
    width: 100%;
    height: 640px;
    object-fit: cover;
}
.mainV__inner{
    position: absolute;
    bottom: 109px;
    right: 40px;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    text-align: right;
    line-height: 1.4;
    max-width: 800px;
}
.mainV__title{
    margin-right: 24px;
    margin-bottom: 10px;
}
.news--index{
    background: #fff;
}
.news--index .news__item a{
    padding: 18px 0;
}
.news--indexBottom{
    padding: 32px 0 12px;
}
.top__box1{
    position: relative;
}
.top__box1 p{
    white-space: nowrap;
}
.top__img1{
    position: absolute;
    bottom: 30px;
    right: 0;
}
.top__box2{
    padding-left: 329px;
    position: relative;
}
.top__img2{
    position: absolute;
    top: 0;
    left: 0;
}
.top__box3{
    position: relative;
}
.top__img3{
    position: absolute;
    top: 0;
    right: 72px;
}
.top__box4{
    display: flex;
    justify-content: space-between;
}
.top__box4Item{
    width: 320px;
    position: relative;
    border-radius: 12px;
    z-index: 1;
}
.top__box4Item::before{
    content: "";
    width: 100%;
    height: 4px;
    background: url(../img/_common/button_bg.svg) repeat-x left center / auto 100%;
    position: absolute;
    bottom: -4px;
    left: 0;
}
.top__box4Item a{
    border-radius: 12px;
    overflow: hidden;
    display: block;
    position: relative;
}
.top__box4Item a::after{
    content: "";
    width: 15px;
    height: 12px;
    background: url(../img/_common/button_arrow.svg) no-repeat center / contain;
    position: absolute;
    bottom: 22px;
    right: 20px;
    transition: 0.3s;
}
.top__box4Item a:hover::after{
    right: 16px;
}
.top__img4{
    opacity: 1 !important;
}
.top__img4--bg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: 0.5s;
    object-fit: cover;
    opacity: 1 !important;
}
a:hover .top__img4--bg{
    width: 105%;
    height: 105%;
}

/* ========================
    underTitle
=========================== */
.underTitle{
    padding: 169px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.underTitle img{
    width: auto;
    height: 62px;
}

/* ========================
    mypage
=========================== */
.mypage__flexbox{
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.mypage__flexboxItem{
    width: 320px;
    margin-right: 17px;
}
.mypage__flexboxItem:nth-of-type(3n){
    margin-right: 0;
}
.mypage__title{
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #264E75;
    margin-bottom: 20px;
}
.mypage__subTitle{
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 20px;
    color: #264E75;
}
.mypage__appList{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.mypage__pdfList li{
    margin-bottom: 18px;
    padding-left: 28px;
    position: relative;
    line-height: 1.3;
    font-size: 14px;
}
.mypage__pdfList li:last-of-type{
    margin-bottom: 0;
}
.mypage__pdfList li::before{
    content: "";
    width: 20px;
    height: 22px;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/_common/button_pdf.svg) no-repeat center / contain;
}
.mypage__pdfList li a{
    transition: 0.3s;
}
.mypage__pdfList li a:hover{
    opacity: 0.7;
}

/* ========================
    support
=========================== */
.support__flexbox{
    display: flex;
    flex-wrap: wrap;
}
.support__flexbox .button{
    margin-right: 20px;
}
.support__flexbox .button:nth-of-type(3n){
    margin-right: 0;
}
.faq__wrapper{
    display: none;
    padding-top: 48px;
    margin-bottom: 48px;
    border-top: 1px solid #264E75;
    position: relative;
    background-image: linear-gradient(to right, #264E75 2px, transparent 2px);
    background-size: 5px 1px;
    background-repeat: repeat-x;
    background-position: 0 bottom;
    padding-bottom: 1px;
}
.faq__wrapper::before{
    content: "";
    width: 100%;
    height: 1px;
    background: #264E75;
    position: absolute;
    top: 3px;
    left: 0;
}
.faq__item{
    padding: 24px 32px;
    position: relative;
}
.faq__item:nth-of-type(2n-1){
    background: #fff;
}
.faq__item:nth-of-type(2n){
    background: #F2F2F2;
}
.faq__item::before{
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    top: -1px;
    left: 0;
    background-image: linear-gradient(to right, #264E75 2px, transparent 2px);
    background-size: 5px 1px;
    background-repeat: repeat-x;
    background-position: 0 bottom;
    padding-bottom: 1px;
}
.faq__q,
.faq__a{
    line-height: 1.5;
    position: relative;
    padding-left: 64px;
}
.faq__q{
    cursor: pointer;
    padding-right: 60px;
}
.faq__a{
    margin-top: 24px;
    padding-top: 3px;
    margin-bottom: 12px;
    display: none;
}
.faq__q::before,
.faq__a::before{
    content: "";
    width: 41px;
    height: 40px;
    position: absolute;
    left: 0;
}
.faq__q::before{
    top: -8px;
    background: url(../img/support/ico_q.svg) no-repeat center / contain;
}
.faq__a::before{
    top: 0;
    background: url(../img/support/ico_a.svg) no-repeat center / contain;
}
.faq__q::after{
    content: "";
    width: 28px;
    height: 28px;
    position: absolute;
    top: 0;
    right: 0;
    background: url(../img/support/ico_plus.svg) no-repeat center / contain;
    border-radius: 50%;
    background-color: #B2B1FF;
    box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.2);
    transition: 0.3s;
}
.faq__q:hover::after{
    background-color: #C9D3E2;
}
.faq__q.active::after{
    background: url(../img/support/ico_minus.svg) no-repeat center / contain;
    background-color: #C9D3E2;
}
.faq__q.active:hover::after{
    background-color: #B2B1FF;
}

/* ========================
    about
=========================== */
.about__flexbox{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.about__smallText{
    font-size: 14px;
}
.about__minimumText{
    font-size: 13px;
}
.about__flexboxItem{
    width: 320px;
}
.about__box3 .box--doubleInner{
    padding-bottom: 32px;
}
.about__box3Title{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: 700;
    padding: 0 15px 0 19px;
    line-height: 40px;
    background: #3256B4;
    color: #fff;
    white-space: nowrap;
}
.about__box4Text{
    display: inline-block;
    text-align: left;
}
.about__box5Content{
    display: flex;
    overflow-x: scroll;
	justify-content: unset;
    padding-bottom: 32px;
}
.about__box5Content::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}
.about__box5Content::-webkit-scrollbar-track {
    background: #FFFFFF;
    border-radius: 10px;
}
.about__box5Content::-webkit-scrollbar-thumb {
    background: #535353;
    border-radius: 10px;
}
.about__box5Content::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.about__box5Item{
	min-width: 240px;
    width: 240px;
    margin-right: 32px;
}
.about__box5Item:last-of-type{
    margin-right: 0;
}
.about__box5ItemTitle{
    padding: 10px;
    letter-spacing: 0.06em;
    background: #8CA0BE;
    border-radius: 8px 8px 0 0;
    color: #fff;
    text-align: center;
    line-height: 1.4;
    font-size: 15px;
}
.about__box5ItemTitle .letter-spacing{
    letter-spacing: -0.04em;
}
.about__box5ItemSmallTitle{
    font-size: 14px;
}
.about__box5Item img{
    border-radius: 0 0 8px 8px;
}
.about__box5ItemLink{
    margin-top: 16px;
    text-align: right;
}
.about__box5ItemLink a{
    padding-right: 22px;
    position: relative;
    font-size: 14px;
    color: #2F509F;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: 0.3s;
}
.about__box5ItemLink a::before{
    content: "";
    width: 14px;
    height: 14px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: url(../img/_common/news_arrow.svg) no-repeat center / contain;
    transition: 0.3s;
}
.about__box5ItemLink a:hover{
    color: #26417C;
}
.about__box5ItemLink a:hover::before{
    right: -4px;
}
.about__box6 .box--doubleInner{
    padding-bottom: 32px;
}
.about__box6Icon{
    position: absolute;
    top: -10px;
    left: 16px;
}
.about__box6Title{
    font-size: 18px;
    font-weight: 700;
    color: #26417C;
}
.about__box7 .about__flexbox{
    align-items: flex-start;
}
.about__box7Img{
    width: 568px;
}
.about__box7Text{
    width: 400px;
}
/* dot-box */
.dot-box{
    background: #F2F4FD;
    padding: 12px;
    background-image:  linear-gradient(to right, #000 1px, transparent 1px),
        linear-gradient(to bottom, #000 1px, transparent 1px),
        linear-gradient(to left, #000 1px, transparent 1px),
        linear-gradient(to top, #000 1px, transparent 1px);
    background-size:   3px 1px,
        1px 3px,
        3px 1px,
        1px 3px;
    background-repeat: repeat-x,
        repeat-y,
        repeat-x,
        repeat-y;
    background-position: left top,
        right top,
        right bottom,
        left bottom;
}
.dotList li{
    padding-left: 20px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #E6E6E6;
    position: relative;
    line-height: 1.4;
}
.dotList li:last-of-type{
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.dotList li::before{
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    top: 5px;
    left: 0;
    background: #6FC183;
    border-radius: 50%;
}
/* tabs */
.tabs__btn{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.tabs__btn li{
    margin-right: 4px;
    flex: 1;
    cursor: pointer;
    background: #2F509F;
    color: #fff;
    text-align: center;
    transition: 0.3s;
    border-radius: 4px 4px 0 0;
    line-height: 64px;
    font-size: 18px;
    position: relative;
    display: table;
}
.tabs__btn li:last-of-type{
    margin-right: 0;
}
.tabs__btn li::after{
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    left: 32px;
    transform: translateY(-50%);
    background: url(../img/_common/tab_arrow.svg) no-repeat center / contain;
    transition: 0.3s;
}
.tabs__btn li:hover,
.tabs__btn li.active{
    background: #C9D3E2;
    color: #264E75;
}
.tabs__btn li:hover::after{
    left: 36px;
}
.tabs__btn li > div{
    display: table-cell;
    vertical-align: middle;
}
.tabs__content{
    padding: 40px;
    background: #C9D3E2;
    border-radius: 0 0 16px 16px;
}

/* ========================
    company
=========================== */
.company__box1Text{
    font-size: 18px;
}
.company__flexbox{
    display: flex;
    justify-content: space-between;
}
.company__box2TextBox{
    width: 567px;
}
.company__box2Img{
    width: 210px;
}
.company__profileText{
    font-size: 14px;
}
.company__profileName{
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid #E6E6E6;
}
.company__profileName span{
    font-size: 13px;
}
.company__table{
    line-height: 1.5;
}
.company__table th{
    width: 151px;
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #3B3B3B;
    font-weight: 500;
    vertical-align: middle;
}
.company__table td{
    text-align: left;
    padding: 20px 32px;
    border-bottom: 1px solid #C4C4C4;
}
.company__table tr:first-of-type th,
.company__table tr:first-of-type td{
    padding-top: 0;
}
.company__table tr:last-of-type th,
.company__table tr:last-of-type td{
    border-bottom: none;
    padding-bottom: 0;
}
/* googleMap */
.googleMap{
    position: relative;
    width: 100%;
    height: 442px;
    border-radius: 16px;
    border: 1px solid #111111;
}
.googleMap iframe{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 16px;
}

/* ========================
    privaci policy
=========================== */
#under.pp a{
    color: #2F509F;
    text-decoration: underline;
}
.pp__lead{
    padding-bottom: 36px;
    margin-bottom: 32px;
    border-bottom: 1px solid #264E75;
    position: relative;
}
.pp__lead::before{
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 3px;
    background: #264E75;
}
.pp__list > dd + dt,
.pp__list > dt + dt{
    padding-top: 24px;
    margin-top: 24px;
    background-image: linear-gradient(to right, #264E75 2px, transparent 2px);
    background-size: 5px 1px;
    background-repeat: repeat-x;
    background-position: 0 top;
    padding-bottom: 1px;
}
.pp__pl{
    padding-left: 28px;
}
.pp__checkList{
    padding: 24px;
    border-radius: 4px;
    border: 1px solid #111111;
    background: #fff;
}
.pp__checkList li{
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 16px;
}
.pp__checkList li:last-of-type{
    margin-bottom: 0;
}
.pp__checkList li::before{
    content: "";
    width: 12px;
    height: 10px;
    position: absolute;
    top: 5px;
    left: 0;
    background: url(../img/_common/check.svg) no-repeat center / contain;
}
.pp__checkList ul{
    margin-top: 16px;
}
.pp__checkList ul li{
    padding-left: 0;
    margin-bottom: 8px;
}
.pp__checkList ul li::before{
    display: none;
}
.pp__table{
    line-height: 1.5;
    font-size: 14px;
    border-top: 1px solid #264E75;
    border-left: 1px solid #264E75;
    box-sizing: border-box;
}
.pp__table th{
    text-align: center;
    padding: 11px 0;
    font-weight: 500;
    background: #AEB7D0;
    border-right: 1px solid #264E75;
    border-bottom: 1px solid #264E75;
    box-sizing: border-box;
    vertical-align: middle;
}
.pp__table td{
    text-align: left;
    padding: 11px 17px;
    background: #EDF0FA;
    border-right: 1px solid #264E75;
    border-bottom: 1px solid #264E75;
    box-sizing: border-box;
    vertical-align: middle;
}

@media screen and (min-width: 737px) {
    .sp{
        display: none !important;
    }
	.w800{
        width: 800px;
        margin: auto;
    }
	.w875{
        width: 875px;
        margin: auto;
    }
	.w908{
        width: 908px;
        margin: auto;
    }
	.w1000{
        width: 1000px;
        margin: auto;
    }
    body{
        margin-top: 88px;
    }
    .center-pc{
        text-align: center;
    }
    .mb8{
        margin-bottom: 8px;
    }
    .mb12{
        margin-bottom: 12px;
    }
    .mb16{
        margin-bottom: 16px;
    }
    .mb20{
        margin-bottom: 20px;
    }
    .mb24{
        margin-bottom: 24px;
    }
    .mb32{
        margin-bottom: 32px;
    }
    .mb40{
        margin-bottom: 40px;
    }
    .mb48{
        margin-bottom: 48px;
    }
    .mb52{
        margin-bottom: 52px;
    }
    .mb72{
        margin-bottom: 72px;
    }
    .mb90{
        margin-bottom: 90px;
    }
    .mb120{
        margin-bottom: 120px;
    }
}

@media screen and (max-width: 736px) {
    .pc{
        display: none !important;
    }
	.w1000{
        margin: 0 20px;
    }
    html, body{
        font-size: 14px;
    }
    body{
        margin-top: 60px;
    }
    .center-sp{
        text-align: center;
    }
    .mb8{
        margin-bottom: 8px;
    }
    .mb12{
        margin-bottom: 10px;
    }
    .mb16{
        margin-bottom: 12px;
    }
    .mb20{
        margin-bottom: 15px;
    }
    .mb24{
        margin-bottom: 18px;
    }
    .mb32{
        margin-bottom: 24px;
    }
    .mb40{
        margin-bottom: 30px;
    }
    .mb48{
        margin-bottom: 36px;
    }
    .mb52{
        margin-bottom: 40px;
    }
    .mb72{
        margin-bottom: 54px;
    }
    .mb90{
        margin-bottom: 72px;
    }
    .mb120{
        margin-bottom: 80px;
    }

    /* ========================
        img
    =========================== */
    .img--radius{
        border-radius: 6px;
    }

    /* ========================
        box
    =========================== */
    .box--line{
        padding: 24px;
    }
    .box--double{
        padding: 4px;
    }
    .box--doubleInner{
        padding: 32px 24px;
    }

    /* ========================
        button
    =========================== */
    .button--small a{
        padding-left: 16px;
        box-sizing: border-box;
        font-size: 12px;
    }

    /* ========================
        header
    =========================== */
    .header__inner{
        padding-left: 20px;
    }
    .header__logo{
        transform: translateY(3px);
    }
    .header__logo img{
        width: auto;
        height: 32px;
    }
    .header__nav{
        transform: translateX(100%);
        position: fixed;
        top: 60px;
        right: 0;
        width: 60%;
        height: calc(100vh - 60px);
        background: #1e3b7e;
        transition: 0.3s;
    }
    .header__nav.active{
        transform: translateX(0);
    }
    body.navActive::before{
        content: "";
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 1;
    }
    .header__navList{
        display: block;
    }
    .header__navItem{
        margin: 0;
        border-bottom: 1px solid #334e8b;
    }
    .header__navItem a{
        color: #fff;
        padding: 12px 20px;
        display: block;
        font-size: 16px;
        background: url(../img/_common/arrow.svg) no-repeat right 20px center / 4px 8px;
    }
    .header__button{
        width: 60px;
        height: 60px;
    }
    .header__buttonIcon,
    .header__buttonLine{
        width: 24px;
        height: 22px;
        margin-bottom: 4px;
    }
    .header__buttonLine span{
        width: 22px;
        height: 2px;
        position: absolute;
        right: 0;
        border-radius: 2px;
        transition: 0.3s;
    }
    .header__buttonLine span:nth-of-type(1){
        top: 6px;
        background: #fff;
    }
    .header__buttonLine span:nth-of-type(2){
        bottom: 6px;
        background: #E3E3E3;
    }
    .header__buttonLine::before,
    .header__buttonLine::after{
        content: "";
        position: absolute;
        right: -2px;
        width: 24px;
        height: 2px;
        background: #162342;
        z-index: -1;
        transition: 0.3s;
    }
    .header__buttonLine::before{
        top: 8px;
    }
    .header__buttonLine::after{
        bottom: 4px;
    }
    .active .header__buttonLine span{
        box-shadow: none;
    }
    .active .header__buttonLine span:nth-of-type(1){
        top: 10px;
        transform: rotate(45deg);
    }
    .active .header__buttonLine span:nth-of-type(2){
        bottom: 10px;
        transform: rotate(-45deg);
    }
    .active .header__buttonLine::before,
    .active .header__buttonLine::after{
    }
    .active .header__buttonLine::before{
        top: 12px;
        transform: rotate(45deg);
    }
    .active .header__buttonLine::after{
        bottom: 8px;
        transform: rotate(-45deg);
    }
    .header__buttonText{
        font-size: 12px;
    }
    .header__hamburger{
        width: 60px;
        height: 60px;
        background: #2F509F;
        position: relative;
    }

    /* ========================
        footer
    =========================== */
    .footer{
        padding: 40px 20px;
        text-align: center;
    }
    .footer__inner{
        display: block;
        margin-bottom: 40px;
    }
    .footer__logo{
        margin-bottom: 12px;
    }
    .footer__left{
        margin-bottom: 40px;
    }
    .footer__right{
        justify-content: center;
    }
    .footer__copyright{
        font-size: 10px;
    }

    /* ========================
        wrapper
    =========================== */
    .wrapper{
        padding: 64px 0 80px;
    }
    
    /* ========================
        title
    =========================== */
    .title{
        margin-bottom: 32px;
        font-size: 20px;
    }
    .title--secondary{
        padding: 10px 40px 12px;
        font-size:  16px;
        margin-bottom: 24px;
    }
    .title--secondary::before{
        width: 8px;
        height: 8px;
        left: 16px;
    }
    .title--tertiary{
        padding-left: 24px;
        font-size: 16px;
        margin-bottom: 20px;
    }
    .title--tertiary::before{
        width: 16px;
        height: 20px;
    }
    .title--quaternary{
        font-size: 14px;
        padding-left: 20px;
    }
    .title--quaternary::before{
        width: 12px;
        height: 12px;
        top: 4px;
    }
    
    /* ========================
        news
    =========================== */
    .news__item a{
        flex-wrap: wrap;
        padding: 20px 0;
    }
    .news__item a::after{
        right: 8px;
    }
    .news__date{
        width: 82px;
    }
    .news__category{
        font-size: 12px;
        width: 98px;
        line-height: 24px;
    }
    .news__postTitle{
        width: 100%;
        margin-top: 8px;
        padding-right: 28px;
    }
    .news__categoryList{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    .news__categoryList li{
        width: calc(50% - 4px);
        margin-right: 8px;
        margin-bottom: 12px;
    }
    .news__categoryList li:nth-of-type(2n){
        margin-right: 0;
    }
    .news__singleTitle{
        font-size: 16px;
        padding-bottom: 16px;
        margin-bottom: 16px;
    }
    .news__singleContent p{
        margin-bottom: 12px;
    }
    /* pagination */
    .pagination{
        justify-content: center;
    }
    .pagination a,
    .pagination span{
        margin: 0 5px;
    }

    /* ========================
        #TOP
    =========================== */
    .mainV__img{
        height: 360px;
    }
    .mainV::before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #000;
        opacity: 0.3;
    }
    .mainV__inner{
        padding: 0 20px;
        bottom: 32px;
        right: 0;
        font-size: 18px;
    }
    .mainV__title{
        margin-right: 0;
    }
    .news--index .news__item a{
        padding: 12px 0 16px;
    }
    .news--indexBottom{
        padding: 24px 0 8px;
    }
    .top__box1 p{
        white-space: unset;
    }
    .top__img1{
        position: static;
        margin: 24px auto 0;
    }
    .top__box2{
        padding-left: 0;
    }
    .top__img2{
        position: static;
        display: block;
        margin: 16px auto 0;
    }
    .top__img3{
        position: static;
        display: block;
        margin: 24px auto 0;
    }
    .top__box4{
        display: block;
    }
    .top__box4Item{
        width: 100%;
        border-radius: 8px;
        margin-bottom: 16px;
    }
    .top__box4Item a{
        border-radius: 8px;
        padding: 10px 0;
    }
    .top__img4{
        width: auto;
        height: 90px;
    }

    /* ========================
        underTitle
    =========================== */
    .underTitle{
        padding: 64px 0;
    }
    .underTitle img{
        height: 50px;
    }

    /* ========================
        mypage
    =========================== */
    .mypage__flexbox{
        display: block;
    }
    .mypage__flexboxItem{
        width: 100%;
        margin-bottom: 20px;
        margin-right: 0;
    }
    .mypage__appList{
        justify-content: center;
    }
    .mypage__appList li{
        margin: 0 4px;
    }

    /* ========================
        support
    =========================== */
    .support__flexbox{
        display: block;
        text-align: center;
        margin-bottom: 32px;
    }
    .support__flexbox .button{
        margin-right: 0;
    }
    .support__flexbox .button:nth-of-type(3n){
        margin-right: 0;
    }
    .faq__wrapper .support__flexbox{
        display: flex;
        flex-wrap: wrap;
        text-align: left;
    } 
    .faq__wrapper .support__flexbox .button{
        margin-right: 8px;
        margin-bottom: 8px;
    }
    .faq__wrapper .support__flexbox .button:last-of-type{
        margin-right: 0;
        margin-bottom: 0;
    }
    .faq__wrapper{
        padding-top: 32px;
    }
    .faq__item{
        padding: 20px 16px;
    }
    .faq__q,
    .faq__a{
        line-height: 1.7;
        padding-left: 40px;
    }
    .faq__q{
        padding-right: 36px;
    }
    .faq__a{
        margin-top: 12px;
        margin-bottom: 0;
    }
    .faq__q::before,
    .faq__a::before{
        width: 32px;
        height: 32px;
    }
    .faq__q::before{
        top: -3px;
    }

    /* ========================
        about
    =========================== */
    .about__smallText{
        font-size: 12px;
    }
    .about__minimumText{
        font-size: 10px;
    }
    .about__box1 .about__flexbox li{
        width: 32%;
    }
    .about__box3 .box--double{
        margin-top: 52px;
    }
    .about__box3 .box--doubleInner{
        padding-top: 48px;
    }
    .about__box3Title{
        font-size: 16px;
        padding: 8px 12px;
        line-height: 1.4;
    }
    .about__box4 .about__flexbox li:nth-of-type(1),
    .about__box4 .about__flexbox li:nth-of-type(2){
        width: 48%;
        margin-bottom: 24px;
    }
    .about__box5Text{
        text-align: left;
    }
    .about__box5Content{
        padding-bottom: 24px;
    }
    .about__box5Item{
        min-width: 190px;
        width: 190px;
        margin-right: 16px;
    }
    .about__box5ItemTitle{
        letter-spacing: 0;
        font-size: 13px;
        padding: 8px 4px;
    }
    .about__box5ItemSmallTitle{
        font-size: 12px;
    }
    .about__box5ItemLink{
        margin-top: 10px;
    }
    .about__box5ItemLink a{
        padding-right: 20px;
        font-size: 13px;
    }
    .about__box6Title{
        font-size: 16px;
    }
    .about__box7Img{
        width: 100%;
        margin-bottom: 32px;
    }
    .about__box7Text{
        width: 100%;
    }
    /* -------------------- */
    .dotList li{
        padding-left: 16px;
    }
    .dotList li::before{
        width: 8px;
        height: 8px;
    }
    /* -------------------- */
    .tabs__btn{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    .tabs__btn li{
        margin-right: 2px;
        line-height: 1.4;
        font-size: 13px;
        padding: 10px;
        padding-right: 0;
    }
    .tabs__btn li::after{
        width: 12px;
        height: 12px;
        left: 12px;
    }
    .tabs__btn li:hover::after{
        left: 12px;
    }
    .tabs__content{
        padding: 20px;
        border-radius: 0 0 12px 12px;
    }

    /* ========================
        company
    =========================== */
    .company__box1Text{
        font-size: 16px;
        text-align: left;
    }
    .company__flexbox{
        flex-wrap: wrap;
    }
    .company__box2TextBox{
        width: 100%;
        order: 2;
    }
    .company__box2Img{
        width: 100%;
        order: 1;
        text-align: center;
        margin-bottom: 16px;
    }
    .company__table th{
        width: 64px;
        padding: 16px 0;
    }
    .company__table td{
        text-align: left;
        padding: 16px 0;
        padding-left: 12px;
    }
    /* googleMap */
    .googleMap{
        aspect-ratio: 1 / 1;
        height: auto;
        border-radius: 8px;
    }
    .googleMap iframe{
        border-radius: 8px;
    }

    /* ========================
        privaci policy
    =========================== */
    .pp__lead{
        padding-bottom: 24px;
        margin-bottom: 24px;
    }
    .pp__list > dd + dt,
    .pp__list > dt + dt{
        padding-top: 20px;
        margin-top: 20px;
    }
    .pp__pl{
        padding-left: 20px;
    }
    .pp__checkList{
        padding: 20px;
    }
    .pp__checkList li{
        padding-left: 20px;
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 10px;
    }
    .pp__checkList ul{
        margin-top: 10px;
    }
}

























.animation--line{
    display: inline-block;
    overflow: hidden;
    position: relative;
}
.animation--line *{
    opacity: 0;
}
.animation--line::after{
    content: "";
    left: 0;
    position: absolute;
    top: 0;
    transform: translateX(-100%);
    width: 100%;
    height: 100%;
    background-color: #fff;
}
.animation--line.active *{
    animation: slideLineInner 0s ease-in-out 0.5s forwards;
}
.animation--line.active::after{
    animation: slideLine 1s ease-in-out forwards;
}
.animation--line.active.delay *{
    animation: slideLineInner 0s ease-in-out 0.8s forwards;
}
.animation--line.active.delay::after{
    animation: slideLine 1s ease-in-out 0.3s forwards;
}
@keyframes slideLineInner{
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }   
}
@keyframes slideLine {
    0% {
        transform: translateX(-100.1%)
    }
    50% {
        transform: translateX(0)
    }
    100% {
        transform: translateX(100.1%)
    }
}

@keyframes fadeIn{
    0%{
        opacity: 0;
        transform: scale(0.95);
    }
    100%{
        opacity: 1;
        transform: scale(1);
    }
}
.animation--fadeIn{
    opacity: 0;
    transform: scale(0.95);
}
.animation--fadeIn.active{
    animation: fadeIn 0.5s ease-in-out 0.2s forwards;
}

@keyframes fadeInUp{
    0%{
        opacity: 0;
        transform: translateY(10px);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}
.animation--fadeInUp{
    opacity: 0;
    transform: translateY(10px);
}
.animation--fadeInUp.active{
    animation: fadeInUp 0.5s ease-in-out forwards;
}