@charset 'UTF-8'; /* style */
/**
 * ViewportScale v0.2.1
 * Copyright (c) 2018 Kite
 * MIT License
 */
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, small, button, time, figure {
    border: 0;
    font: inherit;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}

html {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

li, dd {
    list-style-type: none;
}

header, footer, nav, section, article, aside, figure, figcaption {
    display: block;
}

img {
    border: none;
    vertical-align: bottom;
}

a {
    cursor: pointer;
    text-decoration: none;
}

html {
    font-size: 62.5%;
}

body {
    font-family: "メイリオ", Meiryo, YuGothic, "Yu Gothic", sans-serif;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
    font-size: 1.6rem;
}

img {
    width: 100%;
    height: auto;
    border: none;
}

a {
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

a:hover {
    opacity: 0.6;
}

.font-size-small {
    font-size: 0.9em;
}

.font-em {
    font-weight: 700;
    font-size: 1.1em;
}

.inner {
    max-width: 100%;
    width: 1248px;
    margin: 0 auto;
    padding-right: 24px;
    padding-left: 24px;
}

.section {
    padding-top: 75px;
    padding-bottom: 75px;
}

.flex {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-around;
    justify-content: space-between;
}

.sub-section {
    padding-top: 95px;
    padding-bottom: 80px;
}

.accordion__icon {
    left: 20px;
    position: absolute;
    text-align: center;
    display: inline-block;
    bottom: 50%;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    background-color: #143C64;
    font-size: 2.2rem;
    font-weight: bold;
    font-family: YuGothic, "Yu Gothic", sans-serif;
}

.accordion-title {
    font-family: YuGothic, "Yu Gothic", sans-serif;
    margin-top: 40px;
    line-height: 1.75;
    background-color: #fff;
    font-size: 2rem;
    padding: 25px 60px 20px 80px;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    color: #143C64;
}

.accordion-title .accordion__icon {
    background-color: #143C64;
}

.accordion-title::before, .accordion-title::after {
    content: '';
    display: block;
    background-color: #143C64;
    position: absolute;
    bottom: 48%;
    width: 20px;
    height: 2px;
    right: 26.5px;
    z-index: 1;
}

.accordion-title::after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
}

.accordion-title.is-active::before {
    opacity: 0;
}

.accordion-title.is-active::after {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.accordion__link {
    color: #197DD2;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.accordion__link:hover, .accordion__link:focus {
    opacity: 0.6;
}

.accordion-content {
    position: relative;
    background-color: #fff;
    padding: 0px;
    line-height: 2;
    height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
}

.accordion-content .accordion__icon {
    background-color: #FFD20A;
}

.accordion-content.is-open {
    margin-top: 5px;
    padding: 25px 35px 25px 80px;
    height: auto;
    opacity: 1;
}

.btn-contact {
    display: inline-block;
    max-width: 100%;
    width: 460px;
    padding: 27px 10px;
    border-radius: 10px;
    background-color: #143C64;
    color: #fff;
    text-align: center;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    font-size: 2.4rem;
    font-weight: bold;
    font-family: YuGothic, "Yu Gothic", sans-serif;
}

.btn-contact:focus, .btn-contact:hover {
    opacity: 0.6;
}

.btn-contact--trieal {
    background-color: #FFD20A;
    color: #197DD2;
}

.btn-cta {
    display: inline-block;
    max-width: 100%;
    width: 460px;
    padding: 47px 10px;
    border-radius: 10px;
    border: 4px solid #fff;
    background-color: #197DD2;
    color: #fff;
    text-align: center;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    font-size: 2.4rem;
    font-weight: bold;
    font-family: YuGothic, "Yu Gothic", sans-serif;
}

.btn-cta:focus, .btn-cta:hover {
    opacity: 0.6;
}

.btn-cta--trial {
    color: #197DD2;
    background-color: #FFD20A;
}

.card {
    max-width: 100%;
    width: 90%;
    font-family: YuGothic, "Yu Gothic", sans-serif;
    font-weight: bold;
    -webkit-box-shadow: 0 2px 15px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 15px 2px rgba(0, 0, 0, 0.1);
    /*margin-right: auto;
    margin-left: auto;*/
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.card_top {
    max-width: 100%;
    width: 90%;
    font-family: YuGothic, "Yu Gothic", sans-serif;
    font-weight: bold;
    -webkit-box-shadow: 0 2px 15px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 15px 2px rgba(0, 0, 0, 0.1);
    margin-right: auto;
    margin-left: auto;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.card:hover, .card:focus {
    opacity: 0.6;
}

.card_top:hover, .card_top:focus {
    opacity: 0.6;
}

.card__body {
    background-color: #fff;
    padding: 25px 30px;
}

.card__tit {
    font-size: 2.5rem;
    text-align: center;
    color: #143C64;
}

.card__tit img {
    /*max-width: 157px;*/
    height: 48px;
    width: auto;
}

.card__txt {
    margin-top: 25px;
    font-size: 1.8rem;
    line-height: 1.77778;
    color: #143C64;
}

.common-txt {
    margin-top: 40px;
    text-align: center;
    line-height: 2;
}

.common-txt__inner {
    font-weight: bold;
    color: #2896F0;
    font-size: 1.8rem;
}

.copyright {
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: .02em;
}

/* pager
----------------------------------------------------------------------------------------*/
.pager {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: auto;
}

.pager__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: auto;
    margin-left: auto;
}

.pager__item + .pager__item {
    margin-left: 15px;
}

.pager__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: #143C64;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    background-color: #fff;
}

.pager__link:focus, .pager__link:hover {
    opacity: 0.6;
}

.pager__link--active {
    background-color: #143C64;
    color: #fff;
    pointer-events: none;
}

.js-scroll-fadein {
    z-index: 20;
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
    visibility: hidden;
    opacity: 0;
}

.js-scroll-fadein.is-fadein {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------
    arrow
  --------------------------------*/
.arrow {
    position: fixed;
    right: 45px;
    bottom: 45px;
    color: #fff;
    cursor: pointer;
    background-color: rgba(20, 60, 100, 0.8);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.arrow:hover {
    opacity: .8;
    bottom: 48px;
    -webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.5);
}

.arrow:before {
    position: absolute;
    bottom: 50%;
    right: 50%;
    -webkit-transform: translate(50%, 65%);
    -ms-transform: translate(50%, 65%);
    transform: translate(50%, 65%);
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 9px 16px 9px;
    border-color: transparent transparent #fff transparent;
}

.arrow:before {
    top: 14px;
}

.news-movie {
    padding: 80px 0;
}

.news-movie .inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.news-item__box {
    width: 47%;
}

.news-item__box h2 {
    font-size: 3.2rem;
    font-family: YuGothic, "Yu Gothic", sans-serif;
    line-height: 1.6;
    font-weight: bold;
    color: #143C64;
    text-align: center;
    margin: 0 0 20px;
}

.news-items {
}

.news-item {
    margin: 0 0 10px;
    padding: 0 0 10px;
    border-bottom: 1px solid #dddddd;
}

.news-item a {
    display: block;
    text-align: left;
}

.news-time {
    display: inline-block;
    margin: 0 20px 0 0;
    color: #2896f0;
}

.news-time time {
}

.news-item h3 {
    color: #000;
    font-size: 17px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-btn {
}

.news-btn a {
}

.video-adbox {
    width: 50%;
}

.youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

.video-adbox .youtube {
}

.video-adbox h2 {
    font-size: 3.2rem;
    font-family: YuGothic, "Yu Gothic", sans-serif;
    line-height: 1.6;
    font-weight: bold;
    color: #143C64;
    text-align: center;
    margin: 0 0 20px;
}

.video-adbox iframe {
}

.search_container {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    height: 40px;
    width: 360px;
    max-width: 100%;
}

.search_container input[type="text"] {
    border: none;
    background-color: #fff;
    font-size: 1.6rem;
    height: inherit;
    width: 100%;
    padding: 5px 10px;
    border: 1px solid #197DD2;
}

.search_container input[type="text"]:focus {
    outline: 0;
}

.search_container input[type="submit"] {
    cursor: pointer;
    content: "\f002";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: 2rem;
    border: none;
    background: #3879D9;
    color: #fff;
    position: absolute;
    width: 60px;
    height: 40px;
    right: 0px;
    top: 0px;
    outline: none;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.search_container input[type="submit"]:hover, .search_container input[type="submit"]:focus {
    opacity: 0.6;
}

.sub-util-tit {
    font-size: 3.2rem;
    font-weight: bold;
    font-family: YuGothic, "Yu Gothic", sans-serif;
    text-align: center;
    color: #143C64;
    line-height: 1;
    line-height: 1.5625;
    margin: 0 0 20px;
}

.swiper-button-prev, .swiper-button-next {
    width: 30px;
    height: 45px;
    top: 50%;
}

.swiper-slide {
    height: 500px;
}

.swiper-button-next {
    background: rgba(255, 255, 255, 0.8) url(../img/common/swiper-arrow-next.png) no-repeat center center/14px 25px;
}

/* 前ページボタンのスタイル */
.swiper-button-prev {
    background: rgba(255, 255, 255, 0.8) url(../img/common/swiper-arrow-prev.png) no-repeat center center/14px 25px;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: -34px;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: -34px;
}

.util-tit {
    font-size: 4.5rem;
    line-height: 1.33333;
    font-family: YuGothic, "Yu Gothic", sans-serif;
    line-height: 1.6;
    font-weight: bold;
    color: #143C64;
    text-align: center;
}

.case {
    position: relative;
    max-width: 100%;
    width: 1150px;
    margin: 0 auto;
}

.case__container {
    width: 100%;
    margin-top: 60px;
}

.case__btn {
    margin-top: 20px;
    text-align: center;
}

.case__btn a {
    display: inline-block;
    width: 350px;
    max-width: 100%;
    padding: 15px 10px;
    border-radius: 31px;
    text-align: center;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    font-size: 2.2rem;
    color: #fff;
    background-color: #197DD2;
}

.case__btn a:focus, .case__btn a:hover {
    opacity: 0.6;
}

/*---------------------------------------------------------------------------------------- 
# ドロワー
----------------------------------------------------------------------------------------*/
.button {
    display: inline-block;
    text-decoration: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background-color: #143C64;
    cursor: pointer;
}

.hamburger {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 5;
    width: 50px;
    height: 50px;
    outline: none;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background-color: #143C64;
}

.hamburger__line {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 15px;
    height: 2px;
    background-color: #fff;
    -webkit-transition: inherit;
    transition: inherit;
}

.hamburger__line::before, .hamburger__line::after {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: inherit;
    content: '';
    -webkit-transition: inherit;
    transition: inherit;
}

.drawer-background {
    position: fixed;
    z-index: 3;
    width: 100vw;
    height: 100vh;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background-color: #000;
    color: #fff;
    visibility: hidden;
    opacity: 0;
}

.is-drawerActive {
    height: 100%;
    overflow: hidden;
}

.is-drawerActive .sp-global-menu {
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.is-drawerActive .drawer-background {
    visibility: visible;
    opacity: 0.8;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.hamburger__line::before {
    top: -6px;
}

.hamburger__line::after {
    top: 6px;
}

.hamburger[aria-expanded="true"] .hamburger__line {
    background-color: transparent;
}

.hamburger[aria-expanded="true"] .hamburger__line::before, .hamburger[aria-expanded="true"] .hamburger__line::after {
    top: 0;
    background-color: #fff;
}

.hamburger[aria-expanded="true"] .hamburger__line::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger__line::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.sp-global-menu {
    position: fixed;
    z-index: 4;
    width: 100%;
    top: 0;
    right: 0;
    overflow: hidden;
    background-color: rgba(20, 60, 100, 0.8);
    color: #fff;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.sp-global-menu nav {
    margin-top: 3px;
}

.sp-global-menu li {
    border-top: 1px solid #fff;
}

.sp-global-menu a, .sp-global-menu p {
    display: block;
    padding: 15px 20px 15px 47.5px;
    font-size: 1.4rem;
    letter-spacing: .02em;
    font-weight: bold;
    color: #fff;
}

.sp-global-menu a:hover, .sp-global-menu a:focus, .sp-global-menu p:hover, .sp-global-menu p:focus {
    opacity: 0.6;
}

.sp-global-menu .cta {
    padding-top: 25px;
    padding-bottom: 25px;
}

.sp-global-menu .cta .btn-cta {
    width: 95%;
    font-size: 1.6rem;
    margin-right: auto;
    margin-left: auto;
    padding: 30px 35px;
}

.sp-global-menu__logo {
    padding-top: 11.5px;
    padding-bottom: 11.5px;
    margin-left: 24px;
    width: 128px;
}

.sp-global-nested {
    position: relative;
    cursor: pointer;
}

.sp-global-nested::before, .sp-global-nested::after {
    content: '';
    display: inline-block;
    background-color: #fff;
    position: absolute;
    top: 50%;
    width: 11px;
    height: 1.5px;
    right: 20px;
}

.sp-global-nested::after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
}

.sp-global-nested.is-active::before {
    opacity: 0;
}

.sp-global-nested.is-active::after {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.sp-global-nested__list {
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
}

.sp-global-nested__list a {
    padding: 15px 20px 15px 70px;
}

.sp-global-nested__list.is-open {
    padding-top: 10px;
    height: auto;
    opacity: 1;
}

.footer-sp {
    padding-top: 22.5px;
    padding-bottom: 13px;
    background-color: #143C64;
}

.footer-sp .copyright {
    margin-top: 20px;
    font-size: 1rem;
    text-align: center;
}

.footer-sp__logo {
    max-width: 160px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.footer-sp__address {
    margin-top: 15px;
    text-align: center;
    font-size: 1.1rem;
    letter-spacing: .02em;
    color: #fff;
}

.footer-sp__list {
    margin-top: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.footer-sp__item {
    width: calc(50% - 0px * 1 / 2);
    padding: 20px 15px 20px 30px;
}

.footer-sp__item:nth-child(2) {
    border-left: 1px solid #fff;
}

.footer-sp__item:nth-child(4) {
    border-left: 1px solid #fff;
}

.footer-sp__item:nth-child(n + 3) {
    border-top: 1px solid #fff;
}

.footer-sp-link {
    display: block;
    color: #fff;
    font-size: 1.2rem;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.footer-sp-link:hover, .footer-sp-link:focus {
    opacity: 0.6;
}

.footer-sp__about-item + .footer-sp__about-item {
    margin-top: 10px;
}

.footer-sp__nested-link {
    color: #fff;
    font-size: 1.2rem;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.footer-sp__nested-link:hover, .footer-sp__nested-link:focus {
    opacity: 0.6;
}

.footer-sp__item--nested {
    cursor: pointer;
}

.footer-sp__item--nested p {
    position: relative;
}

.footer-sp__item--nested p::before, .footer-sp__item--nested p::after {
    content: '';
    display: block;
    background-color: #fff;
    position: absolute;
    top: 50%;
    width: 11px;
    height: 1.5px;
    right: 5px;
}

.footer-sp__item--nested p::after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
}

.footer-sp__item--nested.is-active p::before {
    opacity: 0;
}

.footer-sp__item--nested.is-active p::after {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.footer-sp__about-list {
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
}

.footer-sp__about-list.is-open {
    margin-top: 10px;
    height: auto;
    opacity: 1;
}

.footer {
    padding-top: 50px;
    padding-bottom: 15px;
    background-color: #143C64;
}

.footer__inner {
    width: 1218px;
    padding-bottom: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.footer__logo {
    max-width: 100%;
    width: 210px;
}

.footer__txt {
    margin-top: 20px;
    font-size: 1.4rem;
    letter-spacing: .02em;
    color: #fff;
    line-height: 1.57143;
    margin-left: 45px;
}

.footer__about {
    margin-left: 13%;
}

.footer__company {
    margin-left: 10%;
}

.footer__menu {
    margin-left: 10%;
}

.footer__list {
    margin-top: 15px;
}

.footer__item::before {
    content: "・";
    color: #fff;
}

.footer__item + .footer__item {
    margin-top: 10px;
}

.footer__tit {
    color: #fff;
    font-weight: bold;
}

.footer__link, .footer__menu-link {
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.footer__link:hover, .footer__link:focus, .footer__menu-link:hover, .footer__menu-link:focus {
    opacity: 0.6;
}

.footer__link {
    color: #fff;
    letter-spacing: .02em;
    font-size: 1.4rem;
}

.footer__menu-item + .footer__menu-item {
    margin-top: 20px;
}

.footer__menu-link {
    color: #fff;
    letter-spacing: .02em;
    font-weight: bold;
}

.footer__copyright {
    width: 1218px;
    text-align: right;
}

.header {
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0%;
    background: #FFF;
    box-shadow: 0px 0px 10px 1px #777777;
    z-index: 99;
}

.header .container {
    width: 100%;
    max-width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 0 3%;
}

.header__logo__wrap {
    width: 180px;
    padding: 0 0 0 0%;
    /* max-width: 180px; */
}

.header__logo {
}

.header__logo a {
    display: block;
}

.header__logo a img {
    display: block;
    width: 100%;
}

.header__navi__wrap {
    width: calc(100% - 200px);
    justify-content: flex-end;
}

.header__navi__list {
    padding: 40px 3% 0 0;
    /* width: calc(100% - 200px); */
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}

.header-top__group {
    position: absolute;
    right: 114px;
    top: -9px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.header-top__btn a {
    color: #ffffff;
    position: relative;
    padding: 10px 10px 8px 10px;
    font-size: 12px;
    background: #0e88eb;
    border-radius: 8px;
    font-weight: bold;
    display: block;
    text-align: center;
}

.header-top__btn.btn-present a {
    background: #f07618;
}

.btn-login a::before {
    content: " ";
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url(../img/common/icon_account_white.svg) no-repeat top left;
    background-size: contain;
    position: relative;
    top: 4px;
    margin: 0 10px 0 0;
}

.btn-present a::before {
    content: " ";
    display: inline-block;
    width: 14px;
    height: 19px;
    background: url(../img/common/icon_present_white.svg) no-repeat top left;
    background-size: contain;
    position: relative;
    top: 4px;
    margin: 0 10px 0 0;
}

.header__navi__item {
    margin: 0 0%;
}

.header__navi__link {
    padding: 15px 0;
    font-size: 16px;
    display: block;
    background-repeat: no-repeat;
    background-position: center top 15px;
    background-size: auto 30px;
    color: #000;
}

.header__navi__wrap .header__contact {
    display: block;
}

.header__contact.header__contact-free {
}

.header__spwrap {
    display: none;
}

.header__spmenu {
    display: none;
    background: #FFF;
    position: relative;
}

.header__spmenu span {
    position: absolute;
    width: 38px;
    height: 1px;
    background: #000;
    left: 11px;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.header__spmenu span:nth-child(1) {
    top: 20px;
}

.header__spmenu span:nth-child(2) {
    top: 32px;
}

.header__spmenu span:nth-child(3) {
    bottom: 20px;
}

.header__spmenu.active span:nth-child(1) {
    top: 33px;
    transform: rotate(45deg);
}

.header__spmenu.active span:nth-child(2) {
    display: none;
}

.header__spmenu.active span:nth-child(3) {
    bottom: 32px;
    transform: rotate(-45deg);
}

.header__contact {
    display: none;
    background-color: #0e88eb;
    color: #FFF;
    padding: 46px 0% 0px;
    background-image: url(../img/common/icon_mail_white.svg);
    background-position: center top 8px;
    background-repeat: no-repeat;
    background-size: auto 30px;
    width: 86px;
    text-align: center;
}

.header__contact span {
    font-size: 12px;
    line-height: 1.6;
    display: inline-block;
}

.header__contact:hover {
    color: #FFF;
}

.main {
    padding-top: 80px;
}

.case-details__logo {
    width: 160px;
}

.case-details__media-tit {
    margin-top: 28px;
    font-size: 3.2rem;
    font-weight: bold;
    color: #143C64;
    font-family: YuGothic, "Yu Gothic", sans-serif;
}

.case-details__list {
    margin-top: 35px;
}

.case-details__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: 1px solid #CACBCB;
    padding: 10px 10px;
}

.case-details__item-tit {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 130px;
    flex: 0 0 130px;
    color: #143C64;
    font-weight: bold;
}

.case-details__item-body {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
}

.case-details__media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 50px;
    -webkit-box-shadow: 0 2px 10px 2px rgba(20, 60, 100, 0.2);
    box-shadow: 0 2px 10px 2px rgba(20, 60, 100, 0.2);
}

.case-details__media-content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
}

.case-details__pic {
    margin-left: 4.3554%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 510px;
    flex: 0 0 510px;
}

.case-details__content {
    margin-top: 60px;
}

.case-details__content-body {
    margin-top: 30px;
}

.case-details__tit {
    font-weight: bold;
    color: #143C64;
    font-size: 2rem;
    font-family: YuGothic, "Yu Gothic", sans-serif;
}

.case-details__txt {
    line-height: 2;
}

.case-details__address {
    margin-top: 75px;
}

.case-details__address-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: 1px solid #CACBCB;
    border-right: 1px solid #CACBCB;
    border-left: 1px solid #CACBCB;
}

.case-details__address-item:last-child {
    border-bottom: 1px solid #CACBCB;
}

.case-details__address-tit, .case-details__address-txt {
    padding: 15px 30px;
}

.case-details__address-tit {
    font-weight: bold;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 130px;
    flex: 0 0 130px;
    background-color: #2896F0;
    color: #fff;
}

.case-details__btn {
    margin-top: 80px;
    text-align: center;
}

.case-details__btn a {
    display: inline-block;
    width: 350px;
    max-width: 100%;
    padding: 15px 10px;
    border-radius: 31px;
    text-align: center;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    font-size: 2.2rem;
    color: #fff;
    padding: 17.5px 10px;
    background-color: #143C64;
}

.case-details__btn a:focus, .case-details__btn a:hover {
    opacity: 0.6;
}

.case-archive .pager {
    margin-top: 80px;
}

.case-archive__inner {
    width: 1148px;
}

.case-archive__list {
    margin-top: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.case-archive__item {
    width: calc(33.33333333% - 40px * 2 / 3);
    margin-right: 40px;
}

.case-archive__item:nth-child(3n) {
    margin-right: 0;
}

.case-archive__item:nth-child(n + 4) {
    margin-top: 40px;
}

.cta {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #197DD2;
}

.cta__inner {
    width: 1033px;
}

.cta__pic {
    max-width: 100%;
    width: 750px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 15px;
}

.cta__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.cta__btn + .cta__btn {
    margin-left: 5.8083%;
}

.mv-sub {
    padding-top: 80px;
    padding-bottom: 45px;
}

.mv-sub__tit {
    font-size: 4.2rem;
    letter-spacing: .1em;
    font-weight: bold;
    color: #fff;
    font-family: YuGothic, "Yu Gothic", sans-serif;
    text-align: center;
}

.mv-sub__sub-tit {
    text-align: center;
    font-family: YuGothic, "Yu Gothic", sans-serif;
    font-weight: bold;
    font-size: 1.8rem;
    color: #FFD20A;
    letter-spacing: .05em;
}

.contact-header__body {
    padding: 15px 10px 15px 10px;
    margin-top: 25px;
    text-align: center;
    max-width: 100%;
    width: 360px;
    margin-right: auto;
    margin-left: auto;
    border: 2px solid #143C64;
}

.contact-header__body-txt {
    font-weight: bold;
    color: #143C64;
}

.contact-header__body-tel {
    font-size: 3.6rem;
    font-weight: bold;
    color: #143C64;
    font-family: YuGothic, "Yu Gothic", sans-serif;
}

.contact {
    background-color: #F2FAFD;
    padding-top: 80px;
    padding-bottom: 80px;
}

.contact__inner {
    width: 1048px;
}

.contact__form input[type="text"], .contact__form input[type="email"], .contact__form input[type="tel"], .contact__form textarea, .contact__form select {
    border: 1px solid rgba(0, 0, 0, 0.25);
    font-size: 1.6rem;
    padding: .5em 1.5em;
}

.contact__form input[type="text"], .contact__form input[type="email"], .contact__form textarea, .contact__form select {
    width: 100%;
}

.contact__form input[type="tel"] {
    width: calc(33.33333333% - 47.5px * 2 / 3);
}

.contact__form input[type="text"], .contact__form input[type="email"], .contact__form input[type="tel"], .contact__form select {
    height: 55px;
}

.contact__form textarea {
    min-height: 165px;
    width: 100% !important;
    resize: vertical;
}

.contact__item {
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* height: 83px; */
}

.contact__item + .contact__item {
    margin-top: 10px;
}

.contact__item-title {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 320px;
    flex: 0 0 320px;
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    background-color: #197DD2;
    height: inherit;
    /* line-height: 83px; */
    padding: 20px 0 20px 30px;
}

.contact__item-input {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    height: inherit;
    padding: 15px 80px 15px 30px;
    background-color: #fff;
}

.contact__item--select label {
    position: relative;
}

.contact__item--select label::after {
    position: absolute;
    bottom: 50%;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
    right: 20px;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 7px 0 7px;
    border-color: rgba(0, 0, 0, 0.5) transparent transparent transparent;
}

.contact__item--select select::-ms-expand {
    display: none;
}

.contact__item--select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.contact__item--content .contact__item-input {
    padding-top: 30px;
    padding-bottom: 30px;
}

.contact__item--content .contact__radio + .contact__radio {
    margin-left: 30px;
}

.contact__item--sex .contact__radio + .contact__radio {
    margin-left: 75px;
}

.contact__item--name .contact__item-input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.contact__item--name .contact__item-input input + input {
    margin-left: 20px;
}

.contact__item--textarea {
    height: 200px;
}

.contact__item--textarea .contact__item-input {
    padding: 15px 30px 15px 30px;
}

.contact__radio {
    position: relative;
}

.contact__item-input__part {
    margin-right: 15px;
    margin-left: 15px;
    color: #9FA0A0;
}

.contact__required {
    color: #FFD20A;
}

.contact__radio-input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.contact__radio-input:focus ~ .contact__radio-part::before {
    outline: -webkit-focus-ring-color auto 1px;
}

.contact__radio-input:checked ~ .contact__radio-part::after {
    opacity: 1;
}

.contact__radio-part {
    position: relative;
    display: inline-block;
    padding-left: 30px;
}

.contact__radio-part::before, .contact__radio-part::after {
    content: "";
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    bottom: 50%;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
}

.contact__radio-part::before {
    width: 19px;
    height: 19px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    background-color: #fff;
    left: 0;
}

.contact__radio-part::after {
    width: 11px;
    height: 11px;
    left: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
}

.contact__footer {
    margin-top: 45px;
}

.contact__footer-text {
    text-align: center;
}

.contact__privacy-link {
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    color: #197DD2;
}

.contact__privacy-link:hover, .contact__privacy-link:focus {
    opacity: 0.6;
}

.contact__footer-submit {
    margin-top: 25px;
    text-align: center;
}

.contact__footer-submit button {
    -webkit-appearance: none;
    display: inline-block;
    width: 350px;
    max-width: 100%;
    padding: 15px 10px;
    border-radius: 31px;
    text-align: center;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    font-size: 2.2rem;
    color: #fff;
    width: 450px;
    background-color: #2896F0;
    padding: 17.5px 10px;
    border-radius: 50px;
    cursor: pointer;
}

.contact__footer-submit button:focus, .contact__footer-submit button:hover {
    opacity: 0.6;
}

.faq .pager {
    margin-top: 120px;
}

.faq__txt {
    margin-top: 40px;
    text-align: center;
    line-height: 2;
}

.faq__search {
    margin-right: auto;
    margin-left: auto;
}

.faq__search input[type="submit"] {
    -webkit-appearance: none;
}

.faq__content {
    padding-top: 40px;
    padding-bottom: 75px;
    background-color: #F2FAFD;
}

.cloud {
    background: transparent url(../img/function/bg-cloud.jpg) no-repeat center center/cover;
}

.cloud__inner {
    width: 998px;
}

.cloud__tit {
    color: #fff;
}

.cloud__pic {
    max-width: 100%;
    width: 520px;
    margin-top: 40px;
    margin-right: auto;
    margin-left: auto;
}

.cloud__cards {
    position: relative;
    padding-top: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.cloud__cards::before, .cloud__cards::after {
    content: "";
    position: absolute;
    width: 68px;
    height: 68px;
    top: -14%;
}

.cloud__cards::before {
    background: transparent url(../img/function/arrow-right.svg) no-repeat center center/cover;
    left: 16%;
}

.cloud__cards::after {
    background: transparent url(../img/function/arrow-left.svg) no-repeat center center/cover;
    right: 16%;
}

.cloud__card {
    position: relative;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 10px 5px rgba(20, 60, 100, 0.5);
    box-shadow: 0 2px 10px 5px rgba(20, 60, 100, 0.5);
    padding: 70px 25px 15px 25px;
    border-radius: 10px;
}

.cloud__card::before {
    position: absolute;
    content: "";
    top: -20%;
    right: 50%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
}

.cloud__card:first-child {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 320px;
    flex: 0 0 320px;
}

.cloud__card:first-child::before {
    background: transparent url(../img/function/cloud-pic2.svg) no-repeat center center/auto;
    width: 170px;
    height: 100px;
}

.cloud__card:last-child {
    margin-left: 10%;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
}

.cloud__card:last-child .cloud__card-tit::after {
    content: "";
    position: absolute;
    background: transparent url(../img/function/cloud-pic4.svg) no-repeat center center/auto;
    width: 175px;
    height: 130px;
    top: -30%;
    right: -30px;
}

.cloud__card:last-child::before {
    background: transparent url(../img/function/cloud-pic3.svg) no-repeat center center/auto;
    width: 82px;
    height: 103px;
}

.cloud__card-tit {
    padding-top: 4px;
    padding-bottom: 4px;
    background-color: #143C64;
    color: #fff;
    font-weight: bold;
    font-family: YuGothic, "Yu Gothic", sans-serif;
    font-size: 2rem;
    text-align: center;
}

.cloud__card-body {
    margin-top: 15px;
}

.cloud__card-txt {
    text-align: center;
}

.cloud__card-body-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.cloud__card-body-item {
    width: calc(50% - 50px * 1 / 2);
    margin-right: 50px;
}

.cloud__card-body-item:nth-child(n + 3) {
    margin-top: 10px;
}

.cloud__card-body-item:nth-child(2n) {
    margin-right: 0;
}

.design__inner {
    width: 830px;
}

.design__list {
    margin-top: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.design__item {
    text-align: center;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.design__item:first-child, .design__item:nth-child(2) {
    position: relative;
    padding-right: 8%;
}

.design__item:first-child::after, .design__item:nth-child(2)::after {
    position: absolute;
    right: 0;
    bottom: 50%;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent #143C64;
}

.design__item + .design__item {
    margin-left: 5.61444%;
}

.design__item:first-child .design__pic {
    width: 140px;
}

.design__item:nth-child(2) {
    width: 168px;
}

.design__item:last-child {
    width: 257px;
}

.design__pic {
    max-width: 100%;
    height: 150px;
    margin-right: auto;
    margin-left: auto;
}

.design__item-tit {
    max-width: 100%;
    margin-top: 20px;
    width: 120px;
    margin-right: auto;
    margin-left: auto;
}

.design__item-txt {
    margin-top: 10px;
    font-family: YuGothic, "Yu Gothic", sans-serif;
    font-weight: bold;
    font-size: 2rem;
    color: #143C64;
}

.function__list {
    margin-top: 40px;
}

.function__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.function__item + .function__item {
    margin-top: 10px;
}

.function__item-tit {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 257px;
    flex: 0 0 257px;
    padding: 11px 20px;
    background-color: #197DD2;
    font-weight: bold;
    font-size: 1.8rem;
    font-family: YuGothic, "Yu Gothic", sans-serif;
    color: #fff;
}

.function__item-txt {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    padding: 11px 20px;
    background-color: #F2FAFD;
}

.effect__inner {
    width: 928px;
}

.effect__list {
    margin-top: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.effect__item {
    width: calc(33.33333333% - 7.5431% * 2 / 3);
    margin-right: 7.5431%;
}

.effect__item:last-child {
    margin-right: 0;
}

.effect__item-body {
    margin-top: 25px;
    text-align: center;
}

.effect__item-body h3 {
    font-weight: bold;
    font-size: 40px;
    line-height: 1;
    color : #E63250;
    margin: 0 0 10px;
    line-height: 58px;
}

.effect__item-body h3 span {
    font-size: 55px;
    font-weight: bold;
}

.effect__item-body h3 small {
    font-size: 20px;
    line-height: 1.6;
    display: block;
}

.effect__item-txt {
    margin: 0 0 10px;
}

.effect__item-tit {
    font-weight: bold;
    font-size: 2rem;
    color: #FFF;
    background: #E63250;
    text-align: center;
    font-size: 16px;
    padding: 7px 0;
}

.solution {
    background: transparent url(../img/howto/bg-howto.jpg) no-repeat center center/cover;
}

.solution__tit {
    max-width: 100%;
    width: 496px;
    margin-right: auto;
    margin-left: auto;
}

.solution__txt {
    margin-top: 40px;
    text-align: center;
    font-size: 3.2rem;
    font-weight: bold;
    color: #fff;
    font-family: YuGothic, "Yu Gothic", sans-serif;
}

.solution__media-wrap {
    margin-top: 50px;
    padding: 20px 10px 60px 50px;
    background-color: #fff;
    border-radius: 10px;
}

.solution__media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.solution__item-mediaout {
    margin-top: 45px;
}

.solution__item-mediaout .solution__item-txt {
    margin-top: 10px;
}

.solution__pic {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 582px;
    flex: 0 0 582px;
    margin-left: 4.1666%;
}

.solution__list {
    margin-top: 20px;
}

.solution__item + .solution__item {
    margin-top: 45px;
}

.solution__item-tit {
    font-size: 2.4rem;
    font-weight: bold;
    font-family: YuGothic, "Yu Gothic", sans-serif;
    color: #197DD2;
}

.solution__item-txt {
    line-height: 2;
}

.solution__item-txt-inner {
    font-weight: bold;
    font-size: 1.8rem;
    color: #143C64;
}

.solution__item-body {
    margin-top: 10px;
}

.message {
    background: transparent url(../img/howto/bg-howto2.jpg) no-repeat center center/cover;
    padding-top: 50px;
    padding-bottom: 80px;
}

.message__tit {
    max-width: 100%;
    width: 496px;
    margin-right: auto;
    margin-left: auto;
}

.message__header {
    padding-top: 20px;
    padding-bottom: 30px;
    background-color: rgba(255, 255, 255, 0.85);
    max-width: 100%;
    width: 650px;
    margin-right: auto;
    margin-left: auto;
}

.message__pic {
    margin-right: auto;
    margin-left: auto;
}

.message__list {
    margin-top: 70px;
    max-width: 100%;
    width: 510px;
}

.message__item + .message__item {
    margin-top: 65px;
}

.message__item-tit {
    font-size: 2.4rem;
    font-weight: bold;
    color: #197DD2;
    font-family: YuGothic, "Yu Gothic", sans-serif;
}

.message__txt {
    margin-top: 30px;
    text-align: center;
    font-size: 3.2rem;
    font-weight: bold;
    color: #143C64;
    font-family: YuGothic, "Yu Gothic", sans-serif;
}

.message__item-body {
    margin-top: 15px;
}

.message__item-txt {
    line-height: 2;
}

.sill {
    background: transparent url(../img/howto/bg-skill.jpg) no-repeat center center/cover;
}

.skill__tit {
    max-width: 100%;
    width: 496px;
    margin-right: auto;
    margin-left: auto;
}

.skill__txt {
    margin-top: 40px;
    text-align: center;
    font-size: 3.2rem;
    font-weight: bold;
    color: #fff;
    font-family: YuGothic, "Yu Gothic", sans-serif;
}

.skill__body {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.skill__pic {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 26.6666%;
    flex: 0 0 26.6666%;
}

.skill__pic:last-child {
    margin-left: 50px;
}

.skill__list {
    margin-top: 5px;
    margin-left: 50px;
    text-align: left;
}

.skill__item + .skill__item {
    margin-top: 45px;
}

.skill__item-tit {
    font-weight: bold;
    font-size: 2.4rem;
    font-family: YuGothic, "Yu Gothic", sans-serif;
    color: #FFD20A;
}

.skill__item-txt {
    margin-top: 15px;
    line-height: 2;
    color: #fff;
}

.cost__cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 100%;
    width: 908px;
    margin-right: auto;
    margin-left: auto;
}

.cost {
    background-color: #F2FAFD;
    padding-bottom: 0;
}

.cost__card {
    border: 2px solid #143C64;
    border-radius: 10px;
    background-color: #fff;
}

.cost__card:first-child {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
}

.cost__card:first-child .cost__card-body {
    padding: 40px 35px 20px 35px;
}

.cost__card:last-child {
    position: relative;
    margin-left: 10%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 330px;
    flex: 0 0 330px;
}

.cost__card:last-child .cost__card-body {
    padding: 20px 35px;
}

.cost__card:last-child::before {
    content: "";
    position: absolute;
    background: transparent url(../img/price/cost-icon.svg) no-repeat center center/cover;
    width: 60px;
    height: 60px;
    left: -23.5%;
    bottom: 50%;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
}

.cost__card-tit {
    padding-top: 8.5px;
    padding-bottom: 8.5px;
    background-color: #143C64;
    color: #fff;
    text-align: center;
    font-size: 2.4rem;
    font-weight: bold;
    font-family: YuGothic, "Yu Gothic", sans-serif;
}

.cost__card-pic {
    max-width: 100%;
    width: 358px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 15px;
}

.cost__card-txt {
    text-align: center;
    color: #143C64;
    font-weight: bold;
    font-size: 1.8rem;
}

.cost__list {
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.cost__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(50% - 20px * 1 / 2);
    margin-right: 20px;
}

.cost__item:nth-child(2n) {
    margin-right: 0;
}

.cost__item:nth-child(n + 3) {
    margin-top: 10px;
}

.cost__item-tit {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 230px;
    flex: 0 0 230px;
    background-color: #197DD2;
    font-size: 1.8rem;
    font-weight: bold;
    font-family: YuGothic, "Yu Gothic", sans-serif;
    color: #fff;
    padding: 11px 20px;
}

.cost__item-txt {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    background-color: #fff;
    color: #143C64;
    padding: 11px 20px;
}

.cost__copy-wrap {
    margin-top: 40px;
}

.cost__btn {
    margin-top: 60px;
    text-align: center;
}

.cta2 {
    background-color: #197DD2;
}

.cta2__tit {
    color: #FFD20A;
}

.cta2__txt {
    color: #fff;
}

.cta2__btn {
    margin-top: 50px;
    text-align: center;
}

.cta2__pic {
    max-width: 100%;
    width: 750px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 15px;
}

.option__inner {
    width: 958px;
}

.option__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 55px;
}

.option__item {
    border: 4px solid rgba(25, 125, 210, 0.15);
    width: calc(33.33333333% - 20px * 2 / 3);
    margin-right: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    color: #197DD2;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    border-radius: 80px;
}

.option__item:nth-child(3n) {
    margin-right: 0;
}

.option__item:nth-child(n + 4) {
    margin-top: 25px;
}

.option__txt {
    margin-top: 45px;
    text-align: center;
    line-height: 2;
}

.option__btn {
    text-align: center;
    margin-top: 60px;
}

.privacypolicy__inner {
    width: 1120px;
}

.privacypolicy__item + .privacypolicy__item {
    margin-top: 50px;
}

.privacypolicy__tit {
    font-family: YuGothic, "Yu Gothic", sans-serif;
    font-weight: bold;
    font-size: 2rem;
    line-height: 1.6;
    color: #197DD2;
}

.privacypolicy__body {
    margin-top: 10px;
}

.privacypolicy__txt {
    line-height: 2;
}

.privacypolicy__footer {
    margin-top: 100px;
}

.privacypolicy__footer-txt-link {
    color: #197DD2;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.privacypolicy__footer-txt-link:hover, .privacypolicy__footer-txt-link:focus {
    opacity: 0.6;
}

.privacypolicy__footer-address {
    margin-top: 40px;
    line-height: 2;
}

.about__inner {
    width: 900px;
}

.about__sub-tit {
    margin-top: 20px;
    font-size: 2.4rem;
    font-weight: bold;
    font-family: YuGothic, "Yu Gothic", sans-serif;
    text-align: center;
    color: #197DD2;
    line-height: 1.875;
}

.about__txt {
    margin-top: 10px;
    font-size: 1.8rem;
    line-height: 2;
}

.movie {
    background: transparent url(../img/top/bg-movie.jpg) no-repeat center center/cover;
}

.movie__tit {
    color: #fff;
}

.movie__content {
    max-width: 100%;
    margin-top: 50px;
    width: 600px;
    height: 370px;
    margin-right: auto;
    margin-left: auto;
}

.movie__content iframe {
    width: 100%;
    height: inherit;
}

.mv {
    height: calc(100vh - 80px);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.mv::before {
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    background: #00000038;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    z-index: 2;
}

.mv video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* 中央寄せ */
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    /* これがbackground-size: coverと同じ働きをする */
}

.mv__inner {
    display: flex;
    align-items: center;
    flex-direction: row;
    height: 100%;
}

.mv-txt {
    position: relative;
    z-index: 2;
}

.mv-txt h2 {
    font-size: 30px;
    color: #FFF;
    margin: 0 0 20px;
    font-weight: bold;
}

.mv-txt p {
    color: #FFF;
    font-size: 20px;
}

.mv__tit {
    max-width: 520px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.mv2 {
    background: #143c64;
    padding-top: 60px;
    padding-bottom: 60px;
    font-family: YuGothic, "Yu Gothic", sans-serif;
}

#top-partner {
    position: relative;
    overflow: hidden;
}

#top-partner::before {
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    background: #143c649e;
    position: absolute;
    top: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
}

#top-partner::before {
    background: #143c64d1;
}

#top-partner::after {
    content: " ";
    display: block;
    width: 810px;
    height: 690px;
    background: url(../img/partner/phone.png) no-repeat top left;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0;
    margin: 0 auto;
}

.mv2__inner {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
}

.mv2__tit {
    font-size: 5rem;
    color: #fff;
    line-height: 1.6;
    font-weight: bold;
}

.mv2__txt-body {
    width: 57%;
}

.mv2__txt {
    font-size: 2.2rem;
    font-weight: bold;
    color: #fff;
    line-height: 2.04545;
}

.mv2 .case__btn {
    text-align: left;
}

.mv2__txt span {
    color: #FFD20A;
}

.mv2__pic {
    /* width: 100%; */
    /* max-width: 543px; */
    /* position: absolute; */
    /* right: 24px; */
    /* top: -130px; */
    width: 40%;
    order: 2;
}

.news__inner {
    width: 798px;
}

.news__item-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #C9CACA;
    padding: 15px 20px;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.news__item-link:hover, .news__item-link:focus {
    opacity: 0.6;
}

.news__list {
    margin-top: 45px;
}

.news__time {
    color: #197DD2;
}

.news__txt {
    margin-left: 50px;
    color: #000;
}

.news__btn {
    margin-top: 50px;
    text-align: center;
}

.news__btn a {
    display: inline-block;
    width: 350px;
    max-width: 100%;
    padding: 15px 10px;
    border-radius: 31px;
    text-align: center;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    font-size: 2.2rem;
    color: #fff;
    background-color: #197DD2;
}

.news__btn a:focus, .news__btn a:hover {
    opacity: 0.6;
}

.problem {
    position: relative;
    background: transparent url(../img/top/bg-problem.jpg) no-repeat center center/cover;
    padding-top: 70px;
    padding-bottom: 80px;
    font-family: YuGothic, "Yu Gothic", sans-serif;
}

.problem::after {
    position: absolute;
    max-width: 300px;
    width: 100%;
    content: "";
    height: 150px;
    background: transparent url(../img/top/problem-pic.png) no-repeat center center/cover;
    top: 0;
    right: 50%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    z-index: 1;
}

.problem__inner {
    width: 1148px;
}

.problem__tit {
    position: relative;
    font-size: 3.7rem;
    line-height: 1.48649;
    text-align: center;
    color: #fff;
    z-index: 11;
}

.problem__list {
    margin-top: 85px;
    display: flex;
    border: 2px dashed #fff;
    border-radius: 10px;
    padding: 45px 50px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.problem__item {
    font-size: 2rem;
    letter-spacing: -0.05em;
    color: #fff;
    width: 47%;
    position: relative;
    padding: 0 0 0 40px;
}

.problem__item::before {
    content: "";
    margin-top: 7.5px;
    margin-right: 15px;
    background: url(../img/common/check.png) no-repeat 0 0;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 20px;
    background-size: contain;
    width: 22px;
}

.problem__item + .problem__item {
    margin-top: 20px;
}

.problem__item:nth-child(5) {
    margin-top: 0;
}

.problem__btn {
    margin-top: 50px;
    text-align: center;
}

.problem__btn a {
    display: inline-block;
    width: 350px;
    max-width: 100%;
    padding: 15px 10px;
    border-radius: 31px;
    text-align: center;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    font-size: 2.2rem;
    color: #fff;
    background-color: #FF8C0A;
}

.problem__btn a:focus, .problem__btn a:hover {
    opacity: 0.6;
}

.reason {
    background-color: #F2FAFD;
}

.reason__list {
    margin-top: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.reason__item {
    position: relative;
    padding: 135px 22px 25px;
    width: calc(25% - 20px * 3 / 4);
    margin-right: 20px;
    border: 2px solid #2896F0;
    border-radius: 10px;
    background-color: #fff;
}

.reason__item:last-child {
    margin-right: 0;
}

.reason__item-pic {
    position: absolute;
    right: 50%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    top: -70px;
    max-width: 180px;
    width: 100%;
}

.reason__item-tit {
    font-size: 2.2rem;
    line-height: 1.59091;
    text-align: center;
    font-weight: bold;
    font-family: YuGothic, "Yu Gothic", sans-serif;
    color: #143C64;
}

.reason__item-txt {
    margin-top: 20px;
    line-height: 2;
}

.reason__btn {
    margin-top: 55px;
    text-align: center;
}

.reason__btn a {
    display: inline-block;
    width: 350px;
    max-width: 100%;
    padding: 15px 10px;
    border-radius: 31px;
    text-align: center;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    font-size: 2.2rem;
    color: #fff;
    background-color: #143C64;
}

.reason__btn a:focus, .reason__btn a:hover {
    opacity: 0.6;
}

.function_imgs {
    margin: 60px auto 50px;
    text-align: center;
    max-width: 1000px;
}

.function_imgs ul {
    margin: 0 0 30px;
}

.function_imgs li {
    width: 48%;
}

.function_imgs img {
    border: 1px solid #ddd;
    box-shadow: 0 0 6px #c7c7c7;
}

.function_imgs p {
}

.device__env-table {
    margin: 40px 0;
}

.device__attend {
    border: 1px solid #808080;
    padding: 20px;
    border-bottom: none;
}

.device__attend p {
    font-size: 16px;
    line-height: 1.8;
}

.device__attend span {
}

.device__env-table h3 {
    border: 1px solid #808080;
    background: #c9daf8;
    color: #000;
    padding: 20px 20px;
    border-bottom: none;
}

.device__env-table table {
    width: 100%;
}

.device__env-table thead {
}

.device__env-table thead tr {
}

.device__env-table th,.device__env-table td {
    border: 1px solid #808080;
    padding: 10px 5px;
    vertical-align: middle;
    text-align: center;
    font-size: 12px;
}

.device__env-table th {
    background-color: #f7f7f7;
    font-weight: bold;
}

.device__env-table tr:first-child th:last-child {
    width: 390px;
}

.device__env-table .device__env-bikou {
    text-align: left;
    line-height: 2;
    padding: 10px 10px;
}

.device__env-table td {
    background-color: #fff;
}

.device__env-table tbody {
}

.device__env-table tbody tr {
}

.device__env-table tbody td {
}

.device__env-table tbody a {
}

.device__env-table tbody img {
    max-width: 100%;
    width: initial;
    margin: 5px 0 0;
}

.price-table {
    max-width: 1000px;
    margin: 0 auto 80px;
    position: relative;
}

.price-table table {
    width: 100%;
}

.price-table p.attend {
    text-align: center;
    padding: 20px 0 0;
    font-size: 14px;
}

.price-table thead {
}

.price-table thead tr {
}

.price-table thead .price-table__notxt {
    background: none;
    width: 230px;
    border: none;
}

.price-table thead th {
    background: #197dd2;
    font-size: 16px;
    line-height: 1.7;
    color : #FFFFFF;
    padding: 20px 0;
    border: 2px solid #143c64;
    position: relative;
    overflow: hidden;
    font-weight: bold;
}

.price-table thead th:nth-child(2) {
    border-left: 8px solid #e63228;
    border-right: 8px solid #e63228;
    border-top: 8px solid #e63228;
}

.price-table thead th:nth-child(3) {
    background: #2896f0;
}

.price-table td:nth-child(2) {
    border-left: 8px solid #e63228;
    border-right: 8px solid #e63228;
}

.price-table tbody tr:last-child td:nth-child(2) {
    border-bottom: 8px solid #e63228;
}

.price-table thead .price-table__reco {
    display: inline-block;
    position: absolute;
    padding: 5px 0;
    left: -40px;
    top: 13px;
    width: 130px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    background: #e63228;
    color: #fff;
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
}

.price-table .large-txt {
    font-size: 22px;
}

.price-table tbody {
}

.price-table tbody {
}

.price-table tbody th {
    vertical-align: middle;
    border: 1px solid #000;
    background: #506e8c;
    color: #FFF;
    font-size: 18px;
    text-align: left;
    padding: 10px 0 10px 20px;
    font-weight: bold;
}

.price-table td {
    text-align: center;
    padding: 20px 0;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid #143c64;
}

.price-table .red {
    color: #e63228;
    font-weight: bold;
}

.price-table .yellow {
    background: #ffd20a;
    display: inline-block;
    padding: 3px 30px;
    margin: 8px 0 0;
}

.price-table .large-txt2 {
    font-size: 30px;
}

.price-table .blue {
    color: #197dd2;
}

.price-how {
    margin: 0 auto 0;
    max-width: 800px;
    width: 100%;
}

.price-how h2 {
    font-weight: bold;
    font-size : 32px;
    line-height: 1.5;
    color : #143C64;
    text-align: center;
    margin: 0 0 10px;
}

.price-how h3 {
    font-weight: bold;
    font-size: 36px;
    line-height: 1;
    color : #143C64;
    background: #ffd20a;
    padding: 20px 0px 16px;
    box-shadow: 5px 5px 0 #2896f0;
    margin: 0 0 40px;
    text-align: center;
}

.price-how p {
    text-align: center;
    line-height: 2;
    margin: 0 0 50px;
}

.price-how figure {
    margin: 0 auto 40px;
}

.price-how img {
}

.price-blue {
    /* background:#2896f0; */
    position: relative;
    padding: 0 0 0;
    text-align: center;
}

.price-blue img {
    line-height: 1;
    position: relative;
    top: 1px;
}

.price-blue .inr {
    background: #2896f0;
    padding: 60px 0 70px;
}

.price-blue h2 {
    color: #FFF;
    font-weight : bold;
    font-size : 32px;
    line-height : 1.3;
    color : #FFFFFF;
    margin: 0 0 20px;
}

.price-blue p {
    font-size : 16px;
    line-height : 2;
    color : #FFFFFF;
    margin: 0 0 30px;
}

.price-blue .cost__btn {
    margin: 0;
}

section.pickup {
    background: #305478;
}

section.pickup h2 {
    color: #FFF;
    margin: 0 0 40px;
}

.blog__list {
}

.blog__list::before {
    content: "";
    display: block;
    width: 23%;
    order: 1;
}

.blog__list::after {
    content: "";
    display: block;
    width: 23%;
}

.blog__list li {
    width: 23%;
}

.blog__list a {
    display: block;
    background: #FFF;
    border-radius: 10px;
    padding: 0px;
    position: relative;
    box-shadow: 0 0 10px #dddddd2b;
    height: 100%;
}

.blog__list .img {
    width: 100%;
    height: 190px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 0 0 0px;
    border-radius: 5px 5px 0 0;
}

.blog__list .pickaup-time {
    position: absolute;
    top: 0;
    right: 0;
}

.blog__list time {
    color: #000;
    font-size: 10px;
    text-align: center;
    display: block;
    line-height: 1;
    margin: 0px 0 4px;
    background: #cdeaf1d4;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 0 5px 0 0;
}

.blog__list h3 {
    font-size: 14px;
    color: #000;
    text-align: center;
    padding: 10px 10px;
    font-weight: bold;
    color: #143c64;
}

@media (min-width: 768px) {
    .hidden-sp-up {
        display: none;
    }

    .drawer {
        display: none;
    }
}

@media screen and (min-width: 768px) {
}

@media screen and (min-width: 1200px) {
    .header__logo {
        width: 180px;
    }
}

@media (min-width: 1248px) {
    .hidden-pc {
        display: none;
    }

    .hidden-tab-up {
        display: none;
    }
}

@media screen and (min-width: 1500px) {
    .header__logo {
        margin-left: 160px;
    }

    .header__item + .header__item {
        margin-left: 35px;
    }

    .header__link {
        font-size: 14px;
    }

    .header__btn-wrap {
        margin-left: 50px;
    }

    .header__btn-link {
        padding-top: 27.5px;
    }

    .header__btn-link {
        padding-bottom: 27.5px;
    }

    .header__btn-link {
        width: 220px;
    }

    .header__btn-link {
        font-size: 16px;
    }
}

@media (max-width: 1247px) {
    .hidden-tab {
        display: none;
    }

    .inner {
        padding-left: 24px;
        padding-right: 24px;
    }

    .btn-contact {
        font-size: 2rem;
        width: 330px;
    }

    .btn-cta {
        font-size: 2rem;
        width: 330px;
    }

    .arrow {
        right: 30px;
    }

    .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
        left: 0;
    }

    .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
        right: 0;
    }

    .footer__about {
        margin-left: 5%;
    }

    .footer__company {
        margin-left: 5%;
    }

    .footer__menu {
        margin-left: 5%;
    }

    .header__btn + .header__btn a {
        padding-top: 30px;
    }

    .header__btn-link {
        height: 80px;
    }

    .main {
        padding-top: 70px;
    }

    .case-details__media-tit {
        margin-top: 15px;
        font-size: 2.8rem;
    }

    .case-details__list {
        margin-top: 25px;
    }

    .case-details__item {
        display: block;
    }

    .case-details__item-tit {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 80px;
        flex: 0 0 80px;
    }

    .case-details__pic {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 320px;
        flex: 0 0 320px;
    }

    .case-archive .card__body {
        padding: 25px 20px;
    }

    .case-archive__item {
        width: calc(33.33333333% - 30px * 2 / 3);
        margin-right: 30px;
    }

    .contact__item-title {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 220px;
        flex: 0 0 220px;
    }

    .contact__item--content {
        height: 200px;
    }

    .contact__item--content .contact__radio {
        display: block;
    }

    .contact__item--content .contact__radio + .contact__radio {
        margin-top: 15px;
        margin-left: 0;
    }

    .cloud__card-body-item {
        width: calc(50% - 20px * 1 / 2);
        margin-right: 20px;
    }

    .effect__item {
        width: calc(33.33333333% - 5% * 2 / 3);
        margin-right: 5%;
    }

    .effect__item-tit {
        font-size: 1.8rem;
    }

    .solution__txt {
        font-size: 3rem;
    }

    .solution__media-wrap {
        padding: 20px 10px 60px 10px;
    }

    .solution__media {
        display: block;
    }

    .solution__pic {
        margin-top: 30px;
        margin-left: 0;
        width: 80%;
        margin-right: auto;
        margin-left: auto;
    }

    .solution__item + .solution__item {
        margin-top: 45px;
    }

    .message {
        background: none;
    }

    .message__pic {
        width: 70%;
    }

    .message__list {
        width: 90%;
        margin-right: auto;
        margin-left: auto;
    }

    .message__txt {
        font-size: 3rem;
    }

    .skill__txt {
        font-size: 3rem;
    }

    .skill__body {
        text-align: center;
        display: block;
    }

    .skill__pic {
        width: 40%;
    }

    .skill__pic:first-child {
        display: inline-block;
    }

    .skill__pic:nth-child(2) {
        display: inline-block;
        margin-left: 5%;
    }

    .skill__list {
        margin-top: 40px;
        margin-left: 0;
        padding-right: 24px;
        padding-left: 24px;
        width: 90%;
        margin-right: auto;
        margin-left: auto;
    }

    .cost__card:last-child::before {
        width: 40px;
        height: 40px;
        left: -18%;
    }

    .cost__card-pic {
        width: 260px;
    }

    .cost__item-tit {
        font-size: 1.6rem;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 180px;
        flex: 0 0 180px;
    }

    .mv {
        /* background: transparent url(../img/top/sp/bg-mv.jpg) no-repeat center center/cover; */
    }

    .mv2 {
        position: relative;
        /* padding-top: 370px; */
    }

    .mv2__inner {
        /* position: static; */
        flex-direction: column;
    }

    #top-partner::after {
        width: 80%;
        height: 100%;
        left: 0;
        margin: auto;
        /* top: auto; */
        /* bottom: 0; */
        background-position: bottom center;
    }

    .mv2__tit {
        text-align: center;
    }

    .mv2__txt {
        text-align: center;
    }

    .mv2 .case__btn {
        text-align: center;
        margin: 20px 0 0;
    }

    .mv2__pic {
        max-width: 460px;
        width: 100%;
        /* top: -50px; */
        /* right: 50%; */
        /* -webkit-transform: translateX(43%); */
        -ms-transform: translateX(43%);
        /* transform: translateX(43%); */
        right: 0;
        left: 0;
        margin: auto;
        position: relative;
        margin: 0 auto 20px;
        order: -1;
    }

    .mv2__txt-body {
        width: 100%;
    }

    .problem__list {
        padding: 45px 40px;
        display: block;
        height: auto;
    }

    .problem__item {
        font-size: 1.8rem;
    }

    .problem__item:nth-child(5) {
        margin-top: 20px;
    }

    .reason__item {
        width: calc(50% - 20px * 1 / 2);
    }

    .reason__item:nth-child(2) {
        margin-right: 0;
    }

    .reason__item:nth-child(n + 3) {
        margin-top: 100px;
    }

    .reason__item-tit {
        font-size: 2rem;
    }
}

@media screen and (max-width: 1024px) {
    .header__contact {
        /* width: 130px; */
    }

    .header__navi__list {
        width: calc(100% - 90px);
        gap: 20px;
    }

    .header__logo__wrap {
        width: 140px;
    }

    .header__navi__wrap {
        width: calc(100% - 160px);
    }

    .header__navi__link {
        font-size: 13px;
    }

    .top_service__ttl {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media screen and (max-width: 920px) {
    /*ウィンドウ幅が最大767pxまでの場合に適用*/ .footer__tit {
        font-size: 1.4rem;
    }

    .footer__txt {
        font-size: 1.4rem;
        margin-left: 15px;
    }

    .footer__menu-link {
        font-size: 1.4rem;
    }

    .footer__about {
        margin-left: 2%;
    }

    .footer__company {
        margin-left: 2%;
    }

    .footer__menu {
        margin-left: 2%;
    }
}

@media (max-width: 767px) {
    .hidden-sp {
        display: none;
    }

    .inner {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .sub-section {
        padding-top: 47px;
        padding-bottom: 40px;
    }

    .accordion__icon {
        left: 10px;
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 1.6rem;
    }

    .accordion-title {
        font-size: 1.6rem;
        padding: 25px 40px 25px 65px;
    }

    .accordion-content {
        font-size: 1.4rem;
    }

    .accordion-content.is-open {
        padding: 25px 15px 25px 60px;
    }

    .btn-contact {
        padding: 21px 10px;
        font-size: 1.6rem;
        width: 85%;
    }

    .btn-cta {
        padding: 21px 10px;
        font-size: 1.6rem;
        width: 85%;
    }

    .header {
        top: 0px;
    }

    .header .container {
    }

    .header__logo__wrap {
        width: 50%;
        max-width: 120px;
    }

    .header__logo {
    }

    .header__logo a {
    }

    .header__logo a img {
    }

    .header__navi__wrap {
        display: none;
        position: absolute;
        width: 100%;
        background: #fffffff0;
        top: 65px;
        left: 0;
    }

    .header__navi__list {
        width: 100%;
        padding: 80px 3% 20px;
        justify-content: center;
    }

    .header__navi__item {
    }

    .header__navi__link {
    }

    .header__navi__link.news {
    }

    .header__navi__link.about {
    }

    .header__navi__link.business {
    }

    .header__navi__link.recruit {
    }

    .header__navi__link.contribution {
    }

    .header__navi__wrap .header__contact {
        display: none;
    }

    .header__spwrap {
        display: flex;
    }

    .header__spmenu {
        display: block;
        width: 64px;
        height: 65px;
    }

    .header__spmenu span {
    }

    .header__contact {
        display: block;
        width: 120px;
    }

    .header__contact span {
        display: none;
    }

    .header__contact:hover {
    }

    .card__body {
        padding: 15px;
    }

    .card__tit {
        font-size: 1.6rem;
    }

    .card__txt {
        margin-top: 15px;
        font-size: 1.3rem;
    }

    .common-txt {
        margin-top: 20px;
        text-align: left;
    }

    .arrow {
        width: 50px;
        height: 50px;
        right: 10px;
        bottom: 20px;
    }

    .arrow:hover {
        bottom: 23px;
    }

    .arrow:before {
        border-width: 0 7px 12px 7px;
        -webkit-transform: translate(50%, 30%);
        -ms-transform: translate(50%, 30%);
        transform: translate(50%, 30%);
    }

    .sub-util-tit {
        font-size: 2.2rem;
    }

    .swiper-slide {
        height: 400px;
    }

    .util-tit {
        font-size: 2.8rem;
        line-height: 2.07143;
    }

    .case__container {
        margin-top: 15px;
    }

    .case__btn {
        margin-top: 0;
    }

    .case__btn a {
        width: 225px;
        font-size: 1.4rem;
        padding: 11.5px 10px;
    }

    .header__contact {
        display: block;
        width: 65px;
        background-size: auto 24px;
        background-position: center top 19px;
    }

    .header__navi__list {
        justify-content: flex-start;
        flex-direction: column;
    }

    .header-top__group {
        /* position: relative; */
        /* right: 0; */
        top: 30px;
        right: 0;
        left: 0;
        margin: auto;
        max-width: 330px;
        gap: 20px;
    }

    .header-top__btn {
        width: 50%;
    }

    .header-top__btn a {
        padding: 6px 10px 9px 10px;
        border-radius: 0;
    }

    .header-top__btn.btn-present a {
    }

    .btn-login a::before {
        margin: 0 7px 0 0;
    }

    .btn-present a::before {
    }

    .common_contact__rightitem {
        max-width: 320px;
    }

    .common_contact__tel__wrap {
        padding: 0 0 0 50px;
    }

    .common_contact__tel__wrap::before {
        width: 46px;
        height: 46px;
        top: 2px;
    }

    .common_contact__tel {
        font-size: 32px;
    }

    .main {
        padding-top: 48.5px;
    }

    .case-details__media-tit {
        font-size: 2.4rem;
    }

    .case-details__media {
        display: block;
        padding: 20px;
    }

    .case-details__media-content {
        margin-top: 30px;
    }

    .case-details__pic {
        margin-left: 0;
    }

    .case-details__tit {
        font-size: 1.8rem;
    }

    .case-details__address {
        margin-top: 45px;
    }

    .case-details__address-item {
        display: block;
    }

    .case-details__address-tit, .case-details__address-txt {
        padding: 10px 15px;
    }

    .case-details__btn {
        margin-top: 50px;
    }

    .case-details__btn a {
        width: 225px;
        font-size: 1.4rem;
        padding: 11.5px 10px;
    }

    .case-archive .pager {
        margin-top: 40px;
    }

    .case-archive__list {
        margin-top: 50px;
        display: block;
    }

    .case-archive__item {
        width: 100%;
        margin-right: 0;
    }

    .case-archive__item + .case-archive__item {
        margin-top: 40px;
    }

    .cta {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .cta__body {
        display: block;
        text-align: center;
    }

    .cta__btn + .cta__btn {
        margin-top: 16px;
        margin-left: 0;
    }

    .mv-sub__tit {
        font-size: 2.8rem;
    }

    .contact-header__body-tel {
        font-size: 2.8rem;
    }

    .contact {
        padding-top: 60px;
    }

    .contact__form input[type="text"], .contact__form input[type="email"], .contact__form input[type="tel"], .contact__form textarea, .contact__form select {
        padding: .2em .5em;
        font-size: 1.4rem;
    }

    .contact__form input[type="tel"] {
        width: calc(33.33333333% - 35.5px * 2 / 3);
    }

    .contact__form input[type="text"], .contact__form input[type="email"], .contact__form input[type="tel"], .contact__form select {
        height: 45px;
    }

    .contact__item {
        padding-top: 10px;
        padding-right: 16px;
        padding-left: 16px;
        display: block;
        height: auto;
    }

    .contact__item-title {
        /* height: 60px; */
        /* line-height: 60px; */
        font-size: 1.6rem;
    }

    .contact__item-input {
        padding: 15px 0px 15px 0;
        margin-top: 5px;
        font-size: 1.4rem;
    }

    .contact__item--content {
        height: auto;
    }

    .contact__item--content .contact__radio + .contact__radio {
        margin-top: 30px;
    }

    .contact__item--sex .contact__radio + .contact__radio {
        margin-left: 30px;
    }

    .contact__item--name .contact__item-input input + input {
        margin-left: 15px;
    }

    .contact__item--textarea .contact__item-input {
        padding: 15px 0px 15px 0;
    }

    .contact__item-input__part {
        margin-right: 10px;
        margin-left: 10px;
    }

    .contact__footer-submit button {
        width: 225px;
        font-size: 1.4rem;
        padding: 11.5px 10px;
    }

    .contact__footer-submit button {
        width: 90%;
        font-size: 1.6rem;
        padding: 13.5px 10px;
    }

    .faq .pager {
        margin-top: 60px;
    }

    .faq__txt {
        text-align: left;
    }

    .cloud__tit {
        font-size: 2rem;
    }

    .cloud__pic {
        margin-top: 30px;
    }

    .cloud__cards {
        padding-top: 100px;
        display: block;
    }

    .cloud__cards::before, .cloud__cards::after {
        width: 58px;
        height: 58px;
        top: 2%;
    }

    .cloud__cards::before {
        left: 5%;
    }

    .cloud__cards::after {
        right: 5%;
    }

    .cloud__card {
        padding: 70px 15px 15px 15px;
    }

    .cloud__card:last-child {
        margin-top: 80px;
        margin-left: 0;
    }

    .cloud__card:last-child .cloud__card-tit::after {
        width: 155px;
        height: 110px;
        right: -10px;
    }

    .cloud__card-tit {
        font-size: 1.6rem;
    }

    .cloud__card-txt {
        font-size: 1.2rem;
    }

    .cloud__card-body-item {
        width: calc(50% - 5px * 1 / 2);
        margin-right: 5px;
        font-size: 1.2rem;
    }

    .design__list {
        margin-top: 60px;
        display: block;
    }

    .design__item:first-child, .design__item:nth-child(2) {
        padding-right: 0;
    }

    .design__item:first-child::after, .design__item:nth-child(2)::after {
        border-width: 15px 15px 0 15px;
        border-color: #143C64 transparent transparent transparent;
        bottom: -40px;
        right: 50%;
        -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
        transform: translateX(50%);
    }

    .design__item + .design__item {
        margin-top: 80px;
        margin-right: auto;
        margin-left: auto;
    }

    .design__pic {
        height: 130px;
    }

    .design__item-txt {
        margin-top: 10px;
    }

    .function__item {
        display: block;
    }

    .function__item-tit {
        padding: 7px 10px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 120px;
        flex: 0 0 120px;
        font-size: 1.4rem;
    }

    .function__item-txt {
        font-size: 1.4rem;
        padding: 7px 10px;
    }

    .effect__list {
        margin-top: 50px;
        display: block;
    }

    .effect__item + .effect__item {
        margin-top: 40px;
    }

    .effect__item {
        width: 100%;
        margin-right: 0;
    }

    .effect__pic {
        width: 50%;
        margin-right: auto;
        margin-left: auto;
    }

    .effect__item-body {
        margin-top: 15px;
    }

    .solution__txt {
        font-size: 2rem;
    }

    .solution__media-wrap {
        padding: 20px 20px 60px 20px;
    }

    .solution__pic {
        width: 100%;
    }

    .solution__item-tit {
        font-size: 2rem;
    }

    .message {
        padding-top: 47px;
        padding-bottom: 40px;
    }

    .message__list {
        width: 100%;
        margin-top: 50px;
    }

    .message__item-tit {
        font-size: 2rem;
    }

    .message__txt {
        font-size: 2rem;
    }

    .skill__txt {
        font-size: 2rem;
    }

    .skill__body {
        margin-top: 40px;
    }

    .skill__pic:nth-child(2) {
        margin-left: 2%;
    }

    .skill__list {
        width: 100%;
    }

    .skill__item-tit {
        font-size: 2rem;
    }

    .cost {
        padding-bottom: 0;
    }

    .cost__cards {
        display: block;
    }

    .cost__card:last-child {
        margin-top: 80px;
        margin-left: 0px;
    }

    .cost__card:last-child::before {
        top: -65px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .cost__card-tit {
        font-size: 2rem;
    }

    .cost__card-pic {
        width: 200px;
    }

    .cost__card-txt {
        font-size: 1.6rem;
    }

    .cost__list {
        display: block;
    }

    .cost__item {
        display: block;
        width: 100%;
        margin-right: 0;
    }

    .cost__item:nth-child(2) {
        margin-top: 20px;
    }

    .cost__item:nth-child(n + 3) {
        margin-top: 20px;
    }

    .cost__item-tit {
        font-size: 1.4rem;
        padding: 7px 10px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
        flex: 0 0 150px;
    }

    .cost__item-txt {
        font-size: 1.4rem;
        padding: 7px 10px;
    }

    .cost__copy {
        font-size: 1.4rem;
    }

    .cost__btn {
        margin-top: 40px;
    }

    .cta2__btn {
        margin-top: 30px;
    }

    .option__list {
        margin-top: 40px;
    }

    .option__item {
        font-size: 1.2rem;
        width: calc(50% - 5px * 1 / 2);
        margin-right: 5px;
    }

    .option__item:nth-child(2n) {
        margin-right: 0;
    }

    .option__item:nth-child(3) {
        margin-right: 5px;
    }

    .option__item:nth-child(n + 4) {
        margin-top: 0;
    }

    .option__item:nth-child(n + 3) {
        margin-top: 20px;
    }

    .option__txt {
        margin-top: 25px;
        text-align: left;
    }

    .price__tit {
        font-size: 2rem;
    }

    .privacypolicy__footer {
        margin-top: 80px;
    }

    .about__tit {
        line-height: 1.5;
    }

    .about__sub-tit {
        font-size: 2rem;
    }

    .about__txt {
        margin-top: 15px;
        font-size: 1.6rem;
    }

    .movie__content {
        margin-top: 10px;
        width: 90%;
        height: 185px;
    }

    .mv {
        /* padding-top: 125px; */
        /* padding-bottom: 125px; */
    }

    .mv2 {
        padding-top: 20px;
        padding-bottom: 35px;
    }

    .mv2__tit {
        font-size: 2.75rem;
        line-height: 1.54545;
    }

    .mv2__txt-body {
        margin-top: 15px;
    }

    .mv2__txt {
        font-size: 1.4rem;
        line-height: 2.07143;
    }

    .mv2__pic {
        max-width: 275px;
    }

    .news__item-link {
        padding: 10px 15px;
        display: block;
    }

    .news__list {
        margin-top: 0px;
    }

    .news__time {
        font-size: 1.2rem;
    }

    .news__txt {
        margin-top: 5px;
        margin-left: 0;
        font-size: 1.2rem;
    }

    .news__btn {
        margin-top: 30px;
    }

    .news__btn a {
        width: 225px;
        font-size: 1.4rem;
        padding: 11.5px 10px;
    }

    .problem {
        padding-top: 25px;
        padding-bottom: 30px;
    }

    .problem::after {
        max-width: 140px;
        height: 70px;
    }

    .problem__tit {
        font-size: 1.9rem;
        line-height: 2.89474;
    }

    .problem__list {
        margin-top: 30px;
        -webkit-column-count: auto;
        -moz-column-count: auto;
        column-count: auto;
        padding: 17px 25px;
    }

    .problem__item::before {
        margin-right: 7.5px;
        content: url(../img/common/sp/check.png);
    }

    .problem__item {
        font-size: 1.4rem;
    }

    .problem__item + .problem__item {
        margin-top: 18px;
    }

    .problem__btn {
        margin-top: 30px;
    }

    .problem__btn a {
        width: 225px;
        font-size: 1.4rem;
        padding: 11.5px 10px;
    }

    .reason__list {
        margin-top: 45px;
    }

    .reason__item {
        padding: 80px 15px 12.5px;
    }

    .reason__item:nth-child(n + 3) {
        margin-top: 45px;
    }

    .reason__item-pic {
        max-width: 100px;
        top: -35px;
    }

    .reason__item-tit {
        font-size: 1.4rem;
    }

    .reason__item-txt {
        margin-top: 5px;
        font-size: 1.2rem;
    }

    .reason__btn {
        margin-top: 30px;
    }

    .reason__btn a {
        width: 225px;
        font-size: 1.4rem;
        padding: 11.5px 10px;
    }

    .function_imgs {
        margin: 40px auto 0px;
    }

    .function_imgs ul {
        margin: 0 0 0;
    }

    .function_imgs li {
        width: 100%;
        margin: 0 0 20px;
    }

    .function_imgs img {
    }

    .function_imgs p {
        font-size: 14px;
    }

    .table-layout {
        width: 100%;
        margin: 30px 0;
    }

    .table-layout {
        overflow: auto;
        white-space: nowrap;
    }

    .table-layout::-webkit-scrollbar {
        height: 6px;
        background: #FFF;
    }

    .table-layout::-webkit-scrollbar-track {
        background: inherit;
    }

    .table-layout::-webkit-scrollbar-thumb {
        background: #CDCFD2;
        border-radius: 10px;
    }

    .price-table {
        margin: 0 0 40px;
    }

    .price-table table {
    }

    .price-table thead {
    }

    .price-table thead tr {
    }

    .price-table thead .price-table__notxt {
        width: inherit;
    }

    .price-table thead th {
        padding: 30px 10px 10px;
        font-size: 12px;
    }

    .price-table thead th:nth-child(2) {
        border-left-width: 4px;
        border-right-width: 4px;
        border-top-width: 4px;
    }

    .price-table thead th:nth-child(3) {
    }

    .price-table td:nth-child(2) {
        border-left-width: 4px;
        border-right-width: 4px;
    }

    .price-table tbody tr:last-child td:nth-child(2) {
        border-bottom-width: 4px;
    }

    .price-table thead .price-table__reco {
        font-size: 10px;
        -webkit-transform: rotate( 0deg );
        transform: rotate( 360deg );
        left: 0;
        top: 0;
        width: 100%;
        padding: 6px 0;
        display: block;
        margin: 0 auto 10px;
    }

    .price-table .large-txt {
        font-size: 14px;
    }

    .price-table tbody {
    }

    .price-table tbody {
    }

    .price-table tbody th {
        font-size: 14px;
        padding: 10px 10px;
    }

    .price-table td {
        font-size: 12px;
    }

    .price-table .red {
    }

    .price-table .yellow {
        padding: 5px 10px;
        font-size: 10px;
    }

    .price-table .large-txt2 {
        font-size: 14px;
    }

    .price-table .blue {
    }

    .price-how {
    }

    .price-how h2 {
        font-size: 16px;
        margin: 0 0 10px;
    }

    .price-how h3 {
        font-size: 18px;
        line-height: 1.4;
        margin: 0 0 20px;
    }

    .price-how p {
        line-height: 1.8;
        margin: 0 0 20px;
    }

    .price-how figure {
        margin: 0 0 20px;
    }

    .price-how img {
    }

    .price-blue {
        padding: 0 0px;
    }

    .price-blue img {
    }

    .price-blue .inr {
        padding: 20px 3% 30px;
    }

    .price-blue h2 {
        font-size: 20px;
        margin: 0 0 10px;
    }

    .price-blue p {
        margin: 0 0 10px;
    }

    .price-blue .cost__btn {
    }

    .mv {
        background: url(../img/top/mv.jpg) no-repeat 0 0;
        height: calc(100vh - 178px);
    }

    .mv video {
        /* object-fit: contain; */
        /* transform: translate(-50%, -50%); */
    }

    .mv-txt {
    }

    .mv-txt h2 {
        font-size: 17px;
    }

    .mv-txt p {
        font-size: 14px;
    }

    .news-movie {
        padding: 40px 0;
    }

    .news-movie .inner {
        flex-direction: column;
    }

    .news-item__box {
        width: 100%;
        margin: 0 0 40px;
    }

    .news-item__box h2 {
        font-size: 24px;
    }

    .news-items {
    }

    .news-item {
    }

    .news-item a {
    }

    .news__time {
    }

    .news__time time {
    }

    .news-item h3 {
        font-size: 14px;
    }

    .news-btn {
    }

    .news-btn a {
    }

    .video-adbox {
        width: 100%;
    }

    .video-adbox .youtube {
    }

    .video-adbox h2 {
        font-size: 20px;
    }

    .video-adbox iframe {
    }
}

.news_list {
    margin: 40px 0 0;
}

.news_list li {
    border-bottom: 1px solid #9c9c9c;
    padding: 25px 0 20px;
}

.news_item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 3%;
    color: #000;
    transition: all 0.25s;
}

.news_item:hover {
    opacity: 0.6;
}

.news_right-time {
    width: 160px;
}

.news_right-time time {
}

.news_left-txt {
    width: calc(100% - 160px);
}

@media screen and (max-width: 768px) {
    .news_list {
    }

    .news_list li {
        padding: 15px 0 10px;
    }

    .news_item {
        flex-wrap: wrap;
        font-size: 14px;
    }

    .news_item:hover {
    }

    .news_right-time {
        width: 100%;
        margin: 0 0 10px;
    }

    .news_right-time time {
    }

    .news_left-txt {
        width: 100%;
    }

    section.pickup h2 {
        margin: 0 0 20px;
    }

    .blog__list li {
        width: 100%;
        margin: 0 auto 30px;
        max-width: 320px;
    }

    .blog__list::before {
        display: none;
    }

    .blog__list::after {
        display: none;
    }
}

.news_detail_page_ttl {
    font-weight: bold;
    font-size: 30px;
    line-height: 1.4;
    color: #197dd2;
    padding: 0 0 24px;
    position: relative;
    margin: 0 0 40px;
}

.news_detail_page_ttl:after {
    content: '';
    width: 145px;
    height: 5px;
    background: #197dd2;
    position: absolute;
    left: 0;
    bottom: 0;
}

.news_detail_page_ttl .postDate {
    font-size: 16px;
    font-weight: normal;
    color: #000;
}

/*news-details*/
.entry-content {
    /* padding: 0 3%; */
    margin: 0 0 60px;
}

.col-3 {
    width: 30%;
}

.col-3_5 {
    width: 35%;
}

.col-4 {
    width: 40%;
}

.col-4_5 {
    width: 45%;
}

.col-5 {
    width: 50%;
}

.col-6 {
    width: 60%;
}

.col-7 {
    width: 70%;
}

.col-8 {
    width: 80%;
}

.pdf {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    color : #333333;
    padding: 0 0 0 40px;
    margin: 0 0 30px;
    position: relative;
}

.pdf::before {
    content: " ";
    display: block;
    width: 24px;
    height: 26px;
    background: url(../img/common/icon_pdf.svg) no-repeat top left;
    background-size: contain;
    position: absolute;
    top : 0;
    margin: auto;
    bottom: 0;
    left: 0;
}

.entry-content .btn_03 {
    font-size: 20px;
    line-height: 2;
    letter-spacing : 0.4px;
    color : #FFFFFF;
    display: block;
    background: #b68ebb;
    max-width: 430px;
    text-align: center;
    padding: 10px 0;
    border-radius: 3px;
    text-decoration: none;
}

.entry-content.padding-0 {
    padding: 0;
}

.entry-content section {
    margin: 0 0 60px;
}

.entry-content h2 {
    font-weight: bold;
    font-size : 22px;
    line-height: 1.8;
    letter-spacing : 1.32px;
    color : #143c64;
    margin: 0 0 50px;
    padding: 10px 0;
    text-align: center;
    border-bottom: 4px double #143c64;
    border-top: 4px double #143c64;
}

.txt-center {
    text-align: center;
}

.txt-right {
    text-align: right;
}

.entry-content h3 {
    font-size: 18px;
    font-weight: bold;
    letter-spacing : 0.96px;
    color : #333333;
    border-bottom: 4px solid #333;
    padding: 0 0 10px;
    margin: 0 0 30px;
}

.entry-content h4 {
    font-weight: bold;
    font-size: 18px;
    letter-spacing : 0.96px;
    color : #143c64;
    border-left: 5px solid #143c64;
    padding: 0 0 0px 10px;
    margin: 0 0 30px;
}

.entry-content h5 {
    font-size: 16px;
    letter-spacing : 0.96px;
    color : #143c64;
    font-weight: bold;
    padding: 0 0 10px;
    margin: 0 0 15px;
}

.entry-content p {
    margin: 0 0 30px;
}

.entry-content figure {
    margin: 30px 0;
}

.entry-content img {
    max-width: 100%;
    width: inherit;
    height: auto;
    margin: 30px 0;
}

.entry-content ul {
}

.breadcrumb a {
    color: #333;
}

.mini-container {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
}

.entry-content table {
    width: 100%;
}

.entry-content th {
    border: 1px solid #333;
    padding: 18px 10px;
    text-align: center;
    vertical-align: middle;
    font-size: 14px;
    font-weight: bold;
    background: #b68ebb;
    color: #FFF;
}

.entry-content td {
    border: 1px solid #333;
    padding: 18px 10px;
    text-align: left;
    vertical-align: middle;
    font-size: 14px;
}

.entry-content input , .entry-content textarea {
    padding: 8px;
    width: 100%;
    line-height: 2;
    font-size: 16px;
}

.entry-content ul {
    margin: 0 0 30px;
    padding: 0 0 0 20px;
    list-style: disc;
}

.entry-content li {
    margin: 0 0 20px;
    font-size: 18px;
    list-style: disc;
}

.entry-content a {
    color: #333;
    text-decoration: underline;
}

.entry-content a:hover {
    text-decoration: none;
}

.aws-box {
    margin: 30px auto 80px;
    max-width: 870px;
    border: 4px solid #e8f2fa;
    padding: 30px 70px;
}

.aws-box p {
    position: relative;
    padding: 0 0 0 100px;
}

.aws-box p::before {
    content: " ";
    display: block;
    width: 80px;
    height: 48px;
    background: url(../img/function/aws.png) no-repeat top left;
    background-size: contain;
    position: absolute;
    top : 0;
    left: 0;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .aws-box {
        padding: 20px 10px;
        margin: 20px auto 40px;
    }

    .aws-box p::before {
        position: relative;
        margin: 0 auto 20px;
    }

    .aws-box p {
        padding: 0 0 0;
    }
}

.pagenation {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0 0;
}

.wp-pagenavi {
    text-align: center;
}

.wp-pagenavi a {
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    font-size: 16px;
    display: inline-block;
    border: 1px solid #197DD2;
    padding: 8px 10px;
    margin: 0 5px;
    text-decoration: none;
    color: #000;
}

.wp-pagenavi a:hover {
    color: #FFF;
    border-color: #197DD2;
    background: #197DD2;
}

.wp-pagenavi span {
    border: 1px solid #197DD2;
    padding: 8px 10px;
    margin: 0 5px;
    font-size: 16px;
    display: inline-block;
}

.wp-pagenavi .current {
    border-color: #197DD2;
    background: #197DD2;
    color: #FFF;
}

.header__nav--wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.header__loginbutton--wrap {
    margin: 0 20px 0 0;
}

.header__loginbutton {
    display: block;
    width: 100px;
    text-align: center;
    background: #143c64;
    color: #FFF;
    font-weight: bold;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 14px;
    padding: 12px 0 10px;
}

.sp-global-menu .header__loginbutton {
    display: block;
    width: 95%;
    text-align: center;
    background: #143c64;
    color: #FFF;
    font-weight: bold;
    border-radius: 100px;
    box-sizing: border-box;
    font-size: 14px;
    padding: 12px 0 10px;
    margin: 0 auto;
    border: 4px solid #FFF;
}
