@charset "utf-8";
.shataku {
    font-size: 16px;
    line-height: 1.5;
    color: #1a2d63;
}
/* -----------------------------------------------------------------------------
**共通
----------------------------------------------------------------------------- */
.bg-radius {
    border-radius: 30px;
}
.bg-radius__top {
    border-radius: 30px 30px 0 0;
}
.bg-lightblue {
    background: #eaeef8;
}
.bg-gradation {
    background-image: linear-gradient(90deg, #344a95, #389bce);
}
.padding-commn {
    padding: 60px 20px;
}
.padding-lr {
    padding: 0 20px;
}
.padding-tb {
    padding: 90px 0;
}
.padding-b {
    padding-bottom: 90px;
}
.marker {
    background: linear-gradient(transparent 60%, #fff000 80%);
}
@media screen and (min-width: 600px) {
    .padding-commn {
        padding: 110px 40px;
    }
    .padding-lr {
        padding: 0 40px;
    }
    .padding-tb {
        padding: 110px 0;
    }
    .padding-b {
        padding-bottom: 110px;
    }
}
h2 {
    font-size: 1.5em;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 1em;
}
@media screen and (min-width: 600px) {
    h2 {
        font-size: 1.8em;
    }
}
h2,h3 {
    font-weight: 700;
    line-height: 1.2;
}
.contents__lead {
    margin-bottom: 60px;
    text-align: center;
}
@media screen and (min-width: 600px) {
    .contents__lead {
        margin-bottom: 40px;
    }
}
 /* アニメーション初期状態 */
.fade-up,
.fade-left,
.fade-right,
.fade-in {
    opacity: 0;
}
.fade-up {
    transform: translateY(30px);
    will-change: transform, opacity;
}
.fade-left {
    transform: translateX(-50px);
    will-change: transform, opacity;
}
.fade-right {
    transform: translateX(50px);
    will-change: transform, opacity;
}
.fade-kakudai{
    transform: scale(0);
    transform-origin: center center;
    opacity: 0;
}
.fade-in {
    will-change: opacity;
}
 /* 表示状態 */
.fade-in.is-visible {
    animation: fadeIn 1.5s forwards;
}
.fade-up.is-visible {
    animation: fadeUp 1s forwards;
}
.fade-left.is-visible {
    animation: fadeLeft 1s forwards;
}
.fade-right.is-visible {
    animation: fadeRight 1s forwards;
}
.fade-kakudai.is-visible {
    animation: fadeKakudai 1s forwards;
}
/* キーフレーム */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeKakudai  {
    from {
        opacity: 1;
        transform: scale(2);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* -----------------------------------------------------------------------------
**hero
----------------------------------------------------------------------------- */
.hero {
    position: relative;
}
.hero__content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 350px;
    background: url("../img/hero_bg.jpg") center / cover no-repeat;
    border-radius: 0 0 30px 30px;
    overflow: hidden;
}
.hero__content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}
.hero__title {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.2em;
}
/* -----------------------------------------------------------------------------
**リード
----------------------------------------------------------------------------- */
.lead {
    position: relative;
    padding-top: 25%;
    margin-bottom: 2em;
    text-align: center;
    font-size: 1.3em;
    font-weight: 700;
    line-height: 1.3;
}
.lead__illust {
    position: absolute;
    display: block;
    top: 0;
    left: 50%;
    width: 80%;
    height: auto;
    transform: translate(-50%, -50%);
}
@media screen and (min-width: 600px) {
    .hero__content {
        height: 500px;
    }
    .lead {
        padding-top: 15%;
        font-size: 1.5em;
    }
    .lead__illust {
        width: 50%;
    }
}
/* -----------------------------------------------------------------------------
**実績
----------------------------------------------------------------------------- */
.achievement {
    position: relative;
    overflow: hidden;
    padding: 30px;
    background: url("../img/bg_achievement.jpg") left center / cover no-repeat;
    border-radius: 30px;
}
.achievement::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(52, 74, 149, 0.6), rgb(56, 155, 206, 0.6));
}
.achievement__list {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.achievement__list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    padding: 20px;
    background: #fff;
    border-radius: 30px;
    text-align: center;
}
.achievement__icon,
.achievement__detail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.achievement__icon {
    width: 30%;
    padding-right: 20px;
    border-right: 2px dotted #ccc;
}
.achievement__detail {
    width: 70%;
    font-weight: 700;
}
.achievement__icon img {
    display: block;
    width: 80px;
    height: auto;
}
.achievement__detail h3 {
    font-size: 1.2em;
    color: #182c5f;
}
.achievement__number span {
    padding: 0 0.1em;
    font-size: 2em;
    font-weight: 700;
    line-height: 1;
    color: #3b91c1;
}
@media screen and (min-width: 600px) {

    .achievement__list li {
        flex: 1;
    }
    .achievement__icon {
        width: 30%;
    }
    .achievement__detail {
        width: 70%;
    }
    .achievement__number span {
        font-size: 2.5em;
    }
}
/* -----------------------------------------------------------------------------
**ご利用料金
----------------------------------------------------------------------------- */
.price {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.price__image,
.price__content {
    width: 100%;
}
@media screen and (min-width: 600px) {
    .price__image,
    .price__content {
        flex: 1;
    }
}
.price__image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 30px;
}
.price__content {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}
.price__fee .fee__title {
    background: #1d2c6a;
    padding: 0.25em 1em;
    color: #fff;
    list-style: 1;
}
.price__fee .fee__initialcost {
    color: #3b91c1;
    font-size: 1.8em;
}
.price__fee .fee__price {
    color: #3b91c1;
    font-size: 2.5em;
}
/* -----------------------------------------------------------------------------
**サービスについて
----------------------------------------------------------------------------- */
.service {
    background-image: linear-gradient(90deg, #344a95, #389bce);
    color: #fff;
}
.service__list {
    display: flex;
    flex-direction: column;
}
.service__list li {
    width: 90%;
    margin-top: 60px;
}
.service__list li:first-child {
    margin-top: 0;
}
.service__list li:nth-child(even) {
    margin-left: auto;
}
.service__image img {
    display: block;
    width: 100%;
    height: auto;
}
.service__list li:nth-child(odd) .service__image img {
    border-radius: 0 30px 30px 0;
}
.service__list li:nth-child(even) .service__image img {
    border-radius: 30px 0 0 30px;
}
.service__textbox {
    width: 90%;
    margin-top: 30px;
}
.service__list li:nth-child(odd) .service__textbox {
    margin-left: 10%;
}
.service__title {
    margin-bottom: 30px;
    padding-left: 0.5em;
    border-left: 5px solid #e5c85a;
    font-size: 1.6em;
}
/* -----------------------------------------------------------------------------
**当社の強み
----------------------------------------------------------------------------- */
.point__lead {
    margin-bottom: 60px;
    font-size: 1.3em;
    font-weight: 700;
    text-align: center;
}
.point h3 {
    font-size: 1.5em;
    text-align: center;
}
.point__list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.point__list li {
    position: relative;
    width: 70%;
    padding: 40px 20px;
    background: #fff;
}
.point__list li:nth-child(odd) {
    margin-left: auto;
    border-radius: 0 0 0 30px;
    box-shadow: -10px 10px 0 #3b91c1;
}
.point__list li:nth-child(even) {
    margin-right: auto;
    border-radius: 0 0 30px 0;
    box-shadow: 10px 10px 0 #344a95;
}
.point__num {
    position: absolute;
    top: -0.5em;
    left: 1em;
    color: #3b91c1;
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
}
.point__num::before {
    content: "POINT";
    position: absolute;
    top: 54%;/* 微調整 */
    left: -1em;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: inherit;
}
.point__list li:nth-child(even) .point__num {
    color: #344a95;
}
.point__iconbox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
@media screen and (min-width: 600px) {
    .point__list li {
            padding: 40px;
        }
    .point__iconbox {
        flex-direction: row;
        gap: 40px;
    }
}
.point__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #e6f3fb;
}
.point__icon img {
    display: block;
    width: 60%;
    height: 60%;
    object-fit: contain;
}
.point__txtbox {
    margin-top: 2em;
    text-align: center;
}
/* -----------------------------------------------------------------------------
**画像かませ
----------------------------------------------------------------------------- */
.photo__box {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    padding-bottom: 60px;
}
.photo__box img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 15px;
}
.photo__main {
    width: 70%;
}
.photo__sub {
    position: relative;
    z-index: 2;
    width: 40%;
    margin-left: -10%;
    margin-bottom: -60px;
}
/* ---------- Swiper ---------- */

.photoMainSwiper,
.photoSubSwiper {
    overflow: hidden;
    border-radius: 15px;
}
.photoMainSwiper .swiper-slide,
.photoSubSwiper .swiper-slide {
    overflow: hidden;
}
.photoMainSwiper img,
.photoSubSwiper img {
    display: block;
    width: 100%;
    height: auto;
}
/* -----------------------------------------------------------------------------
**評判・導入事例
----------------------------------------------------------------------------- */
.case h2 {
    color: #fff;
}
.case__subtitle {
    display: flex;
    justify-content: center;
    vertical-align: bottom;
}
.case__subtitle p {
    display: inline-block;
    background: #eccc4a;
    text-align: center;
    font-weight: 700;
    color: #182c5f;
    padding: 0.5em 1em;
}
.case__list {
    margin-top: 40px;
}
.case__list li {
    width: 95%;
}
.case__list li:not(:first-child) {
    margin-top: 20px;
}
.case__list li:nth-child(odd) {
    margin-left: auto;
}
.case__list li:nth-child(even) {
    margin-right: auto;
}
.case__image {
    display: flex;
}
.case__image img {
    display: block;
    width: auto;
    height: 130px;
}
.case__list li:first-child .case__image {
    justify-content: center;
}
.case__list li:nth-child(2) .case__image {
    justify-content: center;
}
.case__list li:nth-child(3) .case__image {
    justify-content: flex-end;
    padding-right: 80px;
}
.case__content {
    padding: 30px;
    background: #fff;
}
.case__list li:nth-child(odd) .case__content {
    border-radius: 30px 30px 0 30px;
}
.case__list li:nth-child(even) .case__content {
    border-radius: 30px 30px 30px 0;
}
.case__title {
    color: #389bce;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    border-bottom: 2px dotted #ccc;
    padding: 0.5em;
}
.case__content p {
    margin-top: 20px;
    color: #000;
    font-weight: 700;
}
@media screen and (min-width: 600px) {
    .case__list li {
        width: 80%;
    }
    .case__content {
    padding: 40px;
}
}
/* -----------------------------------------------------------------------------
**お問い合わせ
----------------------------------------------------------------------------- */
.contact {
    text-align: center;
    font-weight: 700;
}
.contact__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.contact__list li {
    width: 100%;
    padding: 30px;
}
.contact__list li:first-child {
    border-bottom: 2px dotted #ccc;
}
@media screen and (min-width: 600px) {
    .contact__list li {
        flex: 1;
    }
    .contact__list li:first-child {
        border-right: 2px dotted #ccc;
        border-bottom: none;
    }
}
.contact__list img {
    display: block;
    width: auto;
    height: 50px;
    margin: 0 auto 10px;
}
.contact__list p {
    margin-top: 10px;
}
.contact__tel,
.contact__form {
    display: block;
    width: 80%;
    margin: 20px auto 0;
    padding: 0.75em 1em;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2em;
}
.contact__tel {
    background: #fff;
    color: #1a2d63;
}
.contact__tel:hover {
    background-image: linear-gradient(90deg, #344a95, #389bce);
    color: #fff;
}
.contact__form {
    background-image: linear-gradient(90deg, #344a95, #389bce);
    color: #fff;
}
.contact__form:hover {
    background: #1a2d63;
    color: #fff;
}
.m-related{
    margin-top: 0 !important;
    border-top: none !important;
}