@charset "UTF-8";

html {
    font-size: 30px;
}
body {
    color: #083151;
    font-family: "Poppins","Noto Sans JP",sans-serif;
}
a {
    color: #083151;
    text-decoration: none;
    transition: 0.3s;
}
a:hover {
    opacity: 0.5;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

iframe {
    vertical-align: bottom;
}

li {
    list-style: none;
}

.wrap{
    width: 100%;
    margin: 0 auto;
    padding: 0 13%;
}

.heading-ttl{
    font-size: 94px;
    font-weight: 500;
    color: #3860be;
    letter-spacing: 0.02px;
    line-height: 0.9;
    padding-top: 100px;
}

.jp{
    font-size: 20px;
    color: #3860be;
    letter-spacing: 0.05px;
    padding-top: 25px;
    padding-bottom: 80px;
}

.sp{
    display: none;
}

.swiper-scrollbar{
    display: none;
}

/* アニメーション */


.is-active {
    /*要素を表示させる*/
    opacity: 1;
    visibility: visible;
    /*元の位置に戻す*/
    transform: translateY(0);
}

/* fade-in-right */
.fade-in-right {
    opacity: 0;
    transform: translateX(40px); /* 右方向からスタート */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    will-change: transform, opacity;
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in-right.is-active {
    opacity: 1;
    transform: translateX(0);
}

/* fade-in-left */
.fade-in-left {
    opacity: 0;
    transform: translateX(-50px); /* 左方向からスタート */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    will-change: transform, opacity;
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.fade-in-left.is-active {
    opacity: 1;
    transform: translateX(0);
}

/* fadeup */
.fadeup {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0,50px,0.1px);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    will-change: transform, opacity;
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.fadeup.is-animated {  
    opacity: 1;
    visibility: visible; /* アニメーション時に表示 */
    animation: fadeup 1.2s cubic-bezier(0.33, 1, 0.68, 1) forwa
}

@keyframes fadeup {
    0% {
    transform: translateY(50px);
    opacity: 0;
    }
    80% {
    opacity: 1;
    }
    100% {
    opacity: 1;
    transform: translateY(0);
    }
}


/* -----------header----------- */
header{
    padding: 40px 13%;
}

header .inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
    
header h1{
    font-size: 32px;
    color: #3860be;
}

h1 a{
    color: #3860be;
}

.header-info{
    display: flex;
    align-items: center;
    /* gap: 90px; */
}

.header-info nav .nav{
    width: 480px;
}
.header-info nav .nav{
    display: flex;
    justify-content: space-between;
}

.header-info a{
    font-size: 18px;
    color: #333333;
    letter-spacing: 1.35px;
}
/* 
.hamburger-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 8px;
    width: 70px;
    height: 70px;
    border-radius: 70px;
    background-color: #7591cf;
}

.hamburger-button__line,
.hamburger-button::before,
.hamburger-button::after {
    content: "";
    width: 36px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 1px;
    transition: transform 0.4s, opacity 0.4s;
}

.hamburger-button.is-opened .hamburger-button__line {
    opacity: 0;
}

.hamburger-button.is-opened::before {
    transform: translateY(11px) rotate(45deg);
}

.hamburger-button.is-opened::after {
    transform: translateY(-11px) rotate(-45deg);
} */



/* -----------/header----------- */

/* -----------main-vs----------- */

.main-vs img{
    width: 100%;
    height: 900px;
    object-fit: cover;
}

.main-vs{
    position: relative;
}


.main-vs .inner{
    position: absolute;
    top: 240px;
    left: 170px;
}

.main-vs h2{
    font-size: 100px;
    font-weight: 600;
    color: #3860be;
    line-height: 1.3;
}

.main-vs p{
    font-size: 38px;
    font-weight: 500;
    color: #3860be;
    letter-spacing: 0.05px;
    padding-top: 100px;
}
.main-vs p span{
    background-color: #f2f3f4;
    padding: 0 15px;
}

/* -----------/main-vs----------- */

/* -----------/cta----------- */

.cta{
    position: relative;
}

.cta .btn{
    width: 190px;
    height: 60px;
    border-radius: 12px;
    background : -moz-linear-gradient(0% 50% 0deg,rgba(225, 101, 126, 1) 0%,rgba(233, 124, 105, 1) 48.76%,rgba(243, 153, 79, 1) 100%);
    background : -webkit-linear-gradient(0deg, rgba(225, 101, 126, 1) 0%, rgba(233, 124, 105, 1) 48.76%, rgba(243, 153, 79, 1) 100%);
    background : -webkit-gradient(linear,0% 50% ,100% 50% ,color-stop(0,rgba(225, 101, 126, 1) ),color-stop(0.4876,rgba(233, 124, 105, 1) ),color-stop(1,rgba(243, 153, 79, 1) ));
    background : -o-linear-gradient(0deg, rgba(225, 101, 126, 1) 0%, rgba(233, 124, 105, 1) 48.76%, rgba(243, 153, 79, 1) 100%);
    background : -ms-linear-gradient(0deg, rgba(225, 101, 126, 1) 0%, rgba(233, 124, 105, 1) 48.76%, rgba(243, 153, 79, 1) 100%);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#E1657E', endColorstr='#F3994F' ,GradientType=0)";
    background : linear-gradient(90deg, rgba(225, 101, 126, 1) 0%, rgba(233, 124, 105, 1) 48.76%, rgba(243, 153, 79, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#E1657E',endColorstr='#F3994F' , GradientType=1);
    position: absolute;
    top: -150px;
    right: 240px;
}

.cta .btn a{
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #fff;
    display: block;
    text-align: center;
    line-height: 2.2;
}

/* -----------/cta----------- */


/* -----------service----------- */
#service ul{
    display: flex;
    justify-content: space-between;
    column-gap: 3.5%;
}

#service .thumbnail img{
    width: 100%;
    height: 290px;
}

#service .text{
    width: 95%;
}

#service .text .title{
    font-size: 20px;
    letter-spacing: 0.35px;
    color: #083151;
    line-height: 1;
    padding-top: 30px;
    padding-bottom: 15px;
    font-weight: 500;
}

#service .text .description{
    font-size: 16px;
    letter-spacing: 0.1px;
    line-height: 1.5;
    color: #083151;
}

/* -----------/service----------- */

/* -----------case----------- */

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊swiperいれたいところ練習中＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */

#slider .wrap{
    padding-left: 13%;
}

.swiper{
    width: calc(100% - 13%);
    margin-left: auto;
    margin-right: 0;
    background-color: #e9eaf3;
    padding: 50px;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}

.swiper-wrapper{
    width: 100%;
    height: auto;
}

.swiper-slide{
    width: 100%;
    height: 100%;
}


.swiper-slide figure img{
    border-radius: .25rem;
    display: block;
}

.swiper-slide a{
        display: block;
}

.swiper-slide img{
    vertical-align: top;
}

.swiper-slide .content{
    padding-left: 5px;
    padding-top: 20px;
    padding-bottom: 15px;
}

.swiper-slide  .detail{
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 10px;
}

.swiper-slide .time{
    line-height: 0;
}

.swiper-slide  time{
    font-size: 16px;
    letter-spacing: 0.04px;
    vertical-align: middle;
}

.swiper-slide  .category{
    font-size: 14px;
    line-height: 1;
    border: solid 1px #083151;
    border-radius: 30px;
    padding: 6px 25px;
}


.swiper-slide  .title{
    font-size: 18px;
    letter-spacing: 0.08px;
    line-height: 1.5;
    text-align: left;
}


.pagination{
    display: flex;
    gap: 30px;
    padding-top: 30px;
    padding-left: 13%;
    margin-left: 50px;
}

.pagination span {   
    display: inline-block;
    background: #7591cf;
    border-radius: 50%;
    width: 63px;
    height: 63px;
}

.pagination .arrow {
    position: relative;
    display: inline-block;
    width: 23px;
    height: 3px;
    left: 19px;
    top: 5px;
    margin: 7.5px 0;
    border-radius: 9999px;
    background-color: #fff;
}

.pagination .next::before,
.next::after {
    content: "";
    position: absolute;
    top: calc(50% - 1.5px);
    right: 0;
    width: 13.3px;
    height: 3px;
    border-radius: 9999px;
    background-color: #fff;
    transform-origin: calc(100% - 1.5px) 50%;
    }

.pagination .prev::before,
.prev::after {
    content: "";
    position: absolute;
    top: calc(50% - 1.5px);
    left: 0;
    width: 13.3px;
    height: 3px;
    border-radius: 9999px;
    background-color: #fff;
    transform-origin: 1.5px 50%;
}

.pagination .arrow::before {
    transform: rotate(46.95deg);
}

.pagination .arrow::after {
    transform: rotate(-46.95deg);
}
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊swiperいれたいところ練習中＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */

/* -----------/case----------- */


/* -----------about us----------- */

#about{
    display: flex;
    padding-top: 150px;
    width: 70%;
    margin: 0 13%;
    justify-content: space-between;
}

#about .right{
    width: 42%;
}

#about .left{
    width: 54%;
    height: auto;
    object-fit: cover;
}

#about h4{
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 1.6px;
    line-height: 1.65;
    color: #1b2465;
}

#about .text{
    font-size: 14px;
    letter-spacing: 1.9px;
    line-height: 1.8;
    padding-top: 20px;
} 

#about .heading-ttl {
    padding-top: 70px;
}

#about .jp {
    padding-bottom: 40px;
}
/* -----------/about us----------- */

/* -----------news----------- */

#news{
    padding-bottom: 150px;
}

#news .inner{
    width: 1130px;
    margin: 0 auto;
}

#news li{
    width: 100%;
    border-top: dashed 1px #d7dada;
}

#news li:last-of-type {
    border-bottom: dashed 1px #d7dada;
}

#news a{
    display: flex; 
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}

#news .line-up{
    display: flex;
    align-items: center;
}

#news time{
    font-size: 16px;
    letter-spacing: 0.04px;
    padding-inline-end: 35px;
    line-height: 2;
    vertical-align: top;
}

#news .time{
    line-height: 1.0;
    vertical-align: middle;
}

#news .category{
    font-size: 12px;
    letter-spacing: 0.03px;
    line-height: 1;
    color: #fff;
    padding-right: 50px;
}

#news .category span{
    background-color: #7591cf;
    border-radius: 30px;
    padding: 5px 20px;
}

#news .detail{
    width: 580px;
    font-size: 16px;
    letter-spacing: 0.06px;
    line-height: 1.75;
}

#news .right{
    display: flex;
    justify-content: flex-end;
    padding-top: 50px;

}

#news .btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 50px;    
    border-radius: 30px;
    background-color: #e9eaf3;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.01px;
    line-height: 2.2;
    color: #333333;
}
/* -----------/news----------- */

/* ----------------footer---------------- */
footer{
    background-color: #e9eaf3;
    padding: 100px 0 50px;
}

footer .info{
    display: flex;
    justify-content: space-between;
}

footer .logo a{
    font-size: 42px;
    color: #3860be;
    font-weight: 600;
}

footer .nav{
    display: flex;
    justify-content: space-between;
    width: 510px;
}

footer .nav a{
    font-size: 18px;
    color: #333333;
    letter-spacing: 1.35px;
}

footer .sns{
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    padding-top: 20px;
}

footer .sns .icon{
    width: 30px;
    height: 30px;
}

footer .copyright{
    font-size: 16px;
    text-align: end;
    padding-top: 70px;
}
/* ----------------/footer---------------- */

/*---------------------------------------------------------------
////////////////////////////モニター////////////////////////////
---------------------------------------------------------------*/
@media screen and (min-width: 1700px) {

    .main-vs .inner {
    position: absolute;
        top: 210px;
        left: 20%;
    }

    .cta .btn {
        width: 210px;
        top: -140px;
        right: 27%;
    }

}



/*---------------------------------------------------------------
////////////////////////////TAB////////////////////////////
---------------------------------------------------------------*/
@media screen and (max-width: 1024px) {

.wrap{
    width: 100%;
    margin: 0 auto;
    padding: 0 10%;
}

.tab{
    display: block;
}

.tab-no{
    display: none;
}
.heading-ttl{
    font-size: 74px;
    padding-top: 90px;
}
.jp {
    padding-bottom: 60px;
}

/* ----------------header---------------- */


header{
    padding: 20px 10%;
    position:sticky;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 6px 13px rgb(213 213 213 / 16%);
}
header .inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;

}

header h1{
    font-size: 26px;
    z-index: 100000;
}

header .header-info{
    gap: 0px;
}

header .header-info nav{
    display: none;
}

#hamburger{
    z-index: 100000;
}

.hamburger-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 6px;
    width: 60px;
    height: 60px;
    border-radius: 70px;
    background-color: #7591cf;
}

.hamburger-button__line,
.hamburger-button::before,
.hamburger-button::after {
    content: "";
    width: 32px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 1px;
    transition: transform 0.4s, opacity 0.4s;
}

.hamburger-button.is-opened .hamburger-button__line {
    opacity: 0;
}


/* ハンバーガーメニューがクリックされて、開いたときのボタンデザイン */

.hamburger-button.is-opened::before {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-button.is-opened::after {
    transform: translateY(-9px) rotate(-45deg);
}


/* ハンバーガーメニューが展開されたときのナビゲーション */


header .menu-content.is-opened{
    opacity: 1;
    visibility: visible;
    min-height: calc(100dvh + 1px);
    will-change: transform, opacity;
    z-index: 9999 !important;
}


header .menu-content{
    /* margin: 0 auto; */
    padding: 20px 10%;
    /* max-height: 1000px; */ 
    background-color: #e9eaf3;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-height: calc(100vh - var(--mh--header--height));
    height: 100%;
    min-width: 320px;
    overscroll-behavior-y: none;
    -webkit-overflow-scrolling: touch;


    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: all var(--mh--duration) var(--mh--easing);
}


header .menu-content .nav-list{
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-top: 130px;
}

header .menu-content li a{
    font-size: 43px;
    color: #333333;
    letter-spacing: 1.35px;
    text-transform: capitalize;
}

header .menu-content .sns{
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    padding-top: 80px;
}

header .menu-content .sns .icon{
    width: 35px;
    height: 35px;
}

/* ----------------/header---------------- */


/* -----------main-vs----------- */


/* fadeupをタブレットのみ無効化 */
.main-vs .fadeup.is-animated {
opacity: 1 !important;
visibility: visible !important;
transform: none !important;
animation: none !important;
transition: none !important;
}



.main-vs .inner{
    position: absolute;
    top: 190px;
    left: 75px;
}

.main-vs h2{
    font-size: 82px;
    line-height: 1.2;
}

.main-vs img{
    width: 100%;
    height: auto;
    object-fit: cover;
}

.main-vs p{
    font-size: 30px;
    letter-spacing: 0.1px;
    padding-top: 40px;
}

/* -----------/main-vs----------- */

/* -----------/cta----------- */

.cta{
    position: relative;
}

.cta .btn{
    width: 190px;
    height: 60px;
    position: absolute;
    top: -150px;
    right: 0;
    left: 0;
    margin: 0 auto;
}

.cta .btn a {
    font-size: 26px;
}



/* -----------/cta----------- */

/* -----------service----------- */
#service ul{
    display: flex;
    flex-wrap: wrap;
    column-gap: 0;
    row-gap: 35px;
}

#service li{
    width: 47%;
}

#service .text .title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.8px;
    padding-top: 25px;
    padding-bottom: 15px;
    line-height: 1.3;
}

#service .text .description {
    font-size: 14px;
    letter-spacing: 0.1px;
    line-height: 1.5;
}
/* -----------/service----------- */

/* -----------case----------- */

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊swiperいれたいところ練習中＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
#slider .jp{
    padding-bottom: 40px;
}


.swiper{
    width: calc(100% - 13%);
    margin-left: auto;
    margin-right: 0;
    background-color: #e9eaf3;
    padding: 40px 40px 20px 40px;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}

.swiper-slide  .category{
    font-size: 12px;
    padding: 6px 20px;
}

.swiper-slide  time{
    font-size: 14px;
    letter-spacing: 0.1px;
    vertical-align: middle;
}

#slider .swiper-button-disabled{
    background: #a5b0c7 !important;
    pointer-events: none;
}
.pagination {
    padding-left: 0;
    margin-left: 0;
    padding-top: 20px;
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊swiperいれたいところ練習中＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */

/* -----------/case----------- */


/* -----------about us----------- */
#about .sp{
    padding-top: 30px;
}
#about{
    display: flex;
    flex-direction: column-reverse;
    padding-top: 0px;
    width: 100%;
    margin: 0 auto;
    padding: 0 13%;
}

#about .right{
    width: 100%;
}

#about .left{
    width: 100%;
}

#about h4{
    font-size: 32x;
    letter-spacing: 0.05px;
    line-height: 1.8;
}

#about .text{
    padding-bottom: 40px;
} 

#about .left img{
    width: 90%;
}

#about .heading-ttl {
    padding-top: 100px;
}

#about .jp {
    padding-bottom: 40px;
}

/* -----------/about us----------- */


/* -----------news----------- */

#news .inner{
    width: 100%;
}

#news time{
    font-size: 16px;
    letter-spacing: 0.04px;
    padding-inline-end: 30px;
}

#news .detail{
    width: 50%;
    font-size: 16px;
}

#news .right{
    display: flex;
    justify-content: center;
    padding-top: 50px;

}

/* -----------/news----------- */


/* ----------------footer---------------- */
footer{
    background-color: #e9eaf3;
    padding: 80px 0 60px;
}

footer .info{
    display: flex;
    flex-direction: column;
}

footer .logo {
    padding-bottom: 30px;
}

footer .logo a{
    font-size: 34px;
}

footer .nav{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    gap: 3px;
}

footer .nav a{
    font-size: 18px;
    color: #333333;
    letter-spacing: 1.35px;
}

footer .sns{
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    padding-top: 30px;
}


footer .copyright{
    font-size: 16px;
    text-align: center;
    padding-top: 70px;
}
/* ----------------/footer---------------- */


}



@media screen and (width: 1024px) {
    /* -----------main-vs----------- */
.main-vs .inner{
    position: absolute;
    top: 280px;
    left: 120px;
}

.main-vs h2{
    font-size: 90px;
    line-height: 1.2;
}

.main-vs p{
    font-size: 34px;
    letter-spacing: 0.1px;
    padding-top: 45px;
}

.cta .btn {
    width: 220px;
    top: -190px;
}
}

/*---------------------------------------------------------------
////////////////////////////中間////////////////////////////
---------------------------------------------------------------*/
@media screen and (max-width: 749px) {

.main-vs .inner{
    position: absolute;
    top: 210px;
    left: 70px;
}

.main-vs h2{
    font-size: 72px;
    line-height: 1.3;
}

.main-vs p{
    font-size: 28px;
    padding-top: 40px;
}

#news a{
    display: flex; 
    flex-direction: column;
    align-items: initial;
    justify-content: center;
    padding: 25px 0;
}

#news time{
    font-size: 16px;
    letter-spacing: 0.36px;
    padding-inline-end: 35px;
    line-height: 2;
    vertical-align: top;
}

#news .category{
    font-size: 12px;
    letter-spacing: 0.03px;
    line-height: 1;
    padding-right: 0px;
}

#news .detail{
    width: 100%;
    font-size: 20px;
    letter-spacing: 0.06px;
    line-height: 1.75;
    padding-top: 10px;
}

}

@media screen and (max-width: 630px){
.main-vs .inner{
    position: absolute;
    top: 176px;
    left: 70px;
}

.main-vs h2{
    font-size: 66px;
}

.main-vs p{
    font-size: 26px;

}
#service ul{
    display: flex;
    flex-direction: column;
    gap: 40px;
}

#service li {
    width: auto;
}

#service .text .title {
    font-size: 20px;
    line-height: 1.6;
}
#service .text .description {
    font-size: 16px;
}



.swiper{
    width: calc(100% - 13%);
    margin-left: auto;
    margin-right: 0;
    background-color: #e9eaf3;
    padding: 40px 40px 20px 40px;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}

.swiper-slide  .category{
    font-size: 12px;
    padding: 6px 20px;
}

.swiper-slide  time{
    font-size: 14px;
    letter-spacing: 0.1px;
    vertical-align: middle;
}

#slider .sp{
    display: flex;
    gap: 25px;
    padding-top: 70px;
}

#slider .sp span {   
    display: inline-block;
    background: #7591cf;
    border-radius: 50%;
    width: 56px;
    height: 56px;
}

#slider .sp .arrow {
    position: relative;
    display: inline-block;
    width: 23px;
    height: 3px;
    top: 2px;
    margin: 7.5px 0;
    border-radius: 9999px;
    background-color: #fff;
}

#slider .sp .button-prev .arrow {
    left: 18px;
}

#slider .sp .button-next .arrow {
    left: 16px;
}

#slider .sp .next::before,
.next::after {
    content: "";
    position: absolute;
    top: calc(50% - 1.5px);
    right: -3px;
    width: 13.3px;
    height: 3px;
    border-radius: 9999px;
    background-color: #fff;
    transform-origin: calc(100% - 1.5px) 50%;
    }

#slider .sp .prev::before,
.prev::after {
    content: "";
    position: absolute;
    top: calc(50% - 1.5px);
    left: -4px;
    width: 13.3px;
    height: 3px;
    border-radius: 9999px;
    background-color: #fff;
    transform-origin: 1.5px 50%;
}

#slider .sp .arrow::before {
    transform: rotate(46.95deg);
}

#slider .sp .arrow::after {
    transform: rotate(-46.95deg);
}

#slider .swiper-button-disabled{
    background: #a5b0c7 !important;
    pointer-events: none;
}


}

@media screen and (max-width: 600px){
.main-vs .inner{
    position: absolute;
    top: 150px;
    left: 50px;
}

.main-vs h2{
    font-size: 60px;
}

.main-vs p{
    font-size: 24px;

}
}

@media screen and (max-width: 536px){
.main-vs .inner{
    position: absolute;
    top: 145px;
    left: 50px;
}

.main-vs h2{
    font-size: 50px;
}

.main-vs p{
    font-size: 22px;

}
}

@media screen and (max-width: 470px){
.main-vs .inner{
    position: absolute;
    top: 135px;
    left: 40px;
}

.main-vs h2{
    font-size: 46px;
}

.main-vs p{
    font-size: 22px;

}

}




/*---------------------------------------------------------------
////////////////////////////SP////////////////////////////
---------------------------------------------------------------*/
@media screen and (max-width: 430px) {
   
.sp{
    display: block;
}

.swiper-scrollbar{
    display: block;
    height: 10px !important;
    width: 260px !important;
    margin-left: 40px;
    bottom: 100px !important;
    background-color: #bdc6d7;
}

.sp-no{
    display: none;
}

.heading-ttl{
    font-size: 64px;
    font-weight: 500;
    color: #3860be;
    letter-spacing: 0.02px;
    line-height: 0.9;
    padding-top: 80px;
}

.jp{
    font-size: 18px;
    color: #3860be;
    letter-spacing: 0.05px;
    padding-top: 25px;
    padding-bottom: 40px;
}

/* ----------------header---------------- */
header{
    padding: 20px 7%;
    position:sticky;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    background-color: #fff;
}
header .inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;

}

header h1{
    font-size: 22px;
    z-index: 10000;
}

header .header-info{
    gap: 0px;
}

header .header-info nav{
    display: none;
}

#hamburger{
    z-index: 10000;
}

.hamburger-button {
    row-gap: 6px;
    width: 60px;
    height: 60px;
}

.hamburger-button__line,
.hamburger-button::before,
.hamburger-button::after {
    content: "";
    width: 32px;
    height: 3px;
}


/* ハンバーガーメニューがクリックされて、開いたときのボタンデザイン */

.hamburger-button.is-opened::before {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-button.is-opened::after {
    transform: translateY(-9px) rotate(-45deg);
}


/* ハンバーガーメニューが展開されたときのナビゲーション */

header .menu-content.is-opened{
    opacity: 1;
    visibility: visible;
    min-height: calc(100dvh + 1px);
}


header .menu-content{
    /* margin: 0 auto; */
    padding: 20px 10%;
    /* max-height: 1000px; */ 
    background-color: #e9eaf3;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-height: calc(100vh - var(--mh--header--height));
    height: 100%;
    min-width: 320px;
    overscroll-behavior-y: none;
    -webkit-overflow-scrolling: touch;


    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: all var(--mh--duration) var(--mh--easing);
}


header .menu-content .nav-list{
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 100px;
}

header .menu-content li a{
    font-size: 28px;
    color: #333333;
    letter-spacing: 1.35px;
    text-transform: capitalize;
}

header .menu-content .sns{
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    padding-top: 60px;
}

header .menu-content .sns .icon{
    width: 30px;
    height: 30px;
}

/* ----------------/header---------------- */


/* -----------main-vs----------- */
.main-vs .inner{
    position: absolute;
    top: 135px;
    left: 25px;
}

.main-vs h2{
    font-size: 44px;
    line-height: 1.2;
}

.main-vs img{
    width: 100%;
    height: auto;
    object-fit: cover;
}

.main-vs p{
    font-size: 22px;
    letter-spacing: 0.1px;
    padding-top: 40px;
}

/* -----------/main-vs----------- */

/* -----------/cta----------- */

.cta{
    position: relative;
}

.cta .btn{
    width: 170px;
    height: 50px;
    position: absolute;
    top: -110px;
    right: 0;
    left: 0;
    margin: 0 auto;
}

.cta .btn a{
    font-size: 22px;
    letter-spacing: 0.3px;
    display: block;
    text-align: center;
}

/* -----------/cta----------- */

/* -----------service----------- */
#service ul{
    display: flex;
    flex-direction: column;
    gap: 40px;
}

#service li {
    width: auto;
}
/* -----------/service----------- */


/* -----------case----------- */

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊swiperいれたいところ練習中＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */

.swiper{
    width: calc(100% - 13%);
    margin-left: auto;
    margin-right: 0;
    background-color: #e9eaf3;
    padding: 40px 40px 20px 40px;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}

.swiper-slide  .category{
    font-size: 12px;
    padding: 6px 20px;
}

.swiper-slide  time{
    font-size: 14px;
    letter-spacing: 0.1px;
    vertical-align: middle;
}

#slider .sp{
    display: flex;
    gap: 25px;
    padding-top: 70px;
}

#slider .sp span {   
    display: inline-block;
    background: #7591cf;
    border-radius: 50%;
    width: 56px;
    height: 56px;
}

#slider .sp .arrow {
    position: relative;
    display: inline-block;
    width: 23px;
    height: 3px;
    top: 2px;
    margin: 7.5px 0;
    border-radius: 9999px;
    background-color: #fff;
}

#slider .sp .button-prev .arrow {
    left: 18px;
}

#slider .sp .button-next .arrow {
    left: 16px;
}

#slider .sp .next::before,
.next::after {
    content: "";
    position: absolute;
    top: calc(50% - 1.5px);
    right: -3px;
    width: 13.3px;
    height: 3px;
    border-radius: 9999px;
    background-color: #fff;
    transform-origin: calc(100% - 1.5px) 50%;
    }

#slider .sp .prev::before,
.prev::after {
    content: "";
    position: absolute;
    top: calc(50% - 1.5px);
    left: -4px;
    width: 13.3px;
    height: 3px;
    border-radius: 9999px;
    background-color: #fff;
    transform-origin: 1.5px 50%;
}

#slider .sp .arrow::before {
    transform: rotate(46.95deg);
}

#slider .sp .arrow::after {
    transform: rotate(-46.95deg);
}

#slider .swiper-button-disabled{
    background: #a5b0c7 !important;
    pointer-events: none;
}


/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊swiperいれたいところ練習中＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */

/* -----------/case----------- */





/* -----------about us----------- */
#about .sp{
    padding-top: 15px;
}
#about{
    display: flex;
    flex-direction: column-reverse;
    padding-top: 0px;
    width: 100%;
    margin: 0 auto;
    padding: 0 13%;
}

#about .right{
    width: 100%;
}

#about .left{
    width: 100%;
}

#about h4{
    font-size: 24px;
    letter-spacing: 1.0px;
    line-height: 1.57;
}

#about .text{
    font-size: 16px;
    letter-spacing: 0.08px;
    line-height: 1.8;
    padding-top: 25px;
    padding-bottom: 35px;
} 

#about .left img {
    width: 100%;
}

#about .heading-ttl {
    padding-top: 70px;
}

#about .jp {
    padding-bottom: 40px;
}

/* -----------/about us----------- */


/* -----------news----------- */
#news{
    padding-bottom: 80px;
}

#news .inner{
    width: 100%;
    margin: 0 auto;
}

#news a{
    display: flex; 
    flex-direction: column;
    align-items: initial;
    justify-content: center;
    padding: 25px 0;
}

#news time{
    font-size: 14px;
    letter-spacing: 0.36px;
    padding-inline-end: 35px;
    line-height: 2;
    vertical-align: top;
}

#news .category{
    font-size: 12px;
    letter-spacing: 0.03px;
    line-height: 1;
    padding-right: 0px;
}

#news .detail{
    width: 100%;
    font-size: 16px;
    letter-spacing: 0.06px;
    line-height: 1.75;
    padding-top: 10px;
}

#news .right{
    display: flex;
    justify-content: center;
    padding-top: 50px;

}

/* -----------/news----------- */

/* ----------------footer---------------- */
footer{
    background-color: #e9eaf3;
    padding: 80px 0 60px;
}

footer .info{
    display: flex;
    flex-direction: column;
}

footer .logo {
    padding-bottom: 30px;
}

footer .logo a{
    font-size: 30px;
}

footer .nav{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

footer .nav a{
    font-size: 18px;
    color: #333333;
    letter-spacing: 1.35px;
}

footer .sns{
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    padding-top: 20px;
}


footer .copyright{
    font-size: 16px;
    text-align: center;
    padding-top: 70px;
}
/* ----------------/footer---------------- */

}

