@charset "utf-8";
/* CSS Document */
html{
   font-size: 63%;
}
a{
  color:#3498DB;
}
body{
  font-family: brandon-grotesque, 'Noto Sans JP', Hiragino Sans, ヒラギノ角ゴシック, Hiragino Kaku Gothic ProN, ヒラギノ角ゴ ProN, Meiryo, メイリオ, MS PGothic, helvetica, sans-serif;
  margin:0px;
  padding:0px;
  box-sizing: border-box;
  font-size: 1.6rem;
}
a {
    text-decoration: none;
    outline: none;
}
p, table, blockquote, address, pre, iframe, form, figure, dl {
    margin: 0;
}
ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}
h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}
.container{
  max-width:1150px;
  margin-left:auto;
  margin-right:auto;
}
.row{
  --bs-gutter-x: 30px;
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
  --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
}
.row > * {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}
@media screen and (max-width: 767px) {
    .row > * {
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
    }
}
@media screen and (min-width: 1024px) {
    section.content {
        padding: 3em 0;
    }
  section.hero-area,
  section#head{
    padding-top:0px;
    padding-bottom:0px;
  }
}
@media screen and (max-width: 1023.9px) {
    section.content {
        padding: 2em 15px;
    }
}
.kome{
  font-size:11px;
  color:#787878;
}
.col-md-8{
  width:67%;
}
.col-md-6{
  width:50%;
}
.col-md-3{
  width:25%;
}
.col-md-4{
  width:33%;
}
.col-md-5{
  width:50%;
}
.top60{
  margin-top:60px;
}
/***head***/
#head{
  box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
}
#head .container{
  padding-top:10px;
  padding-bottom:10px;
}
.logo{
  width:40%;
  display: flex;
  gap: 10px;
}
#head-txt{
  font-weight: 600;
  font-size:12px;
  padding-top:10px;
}
.logo img{
  margin-top:8px;
}
.menu{
  width:60%;
  text-align: right;
}
.menu ul{
  display: flex;
  margin-left:auto;
  margin-right:0px;
  justify-content: flex-end;
}
.menu ul li a{
  display: inline-block;
  height:50px;
  line-height: 50px;
  text-align: center;
  padding:0px 15px;
  color:#121212;
  font-weight: 600;
}
.sicon img{
  width:120px;
  height:auto;
  margin-top:20px;
  
}
.service-list{
  display: flex;
  gap:20px;
  margin-top:10px;
}

/*** hero****/
.bj-body {
    position: relative;
    z-index: 2;
    margin: 0 0 15px 0;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.7s;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}
@keyframes slideUpFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.bj-ttl {
    color: #11114c;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
    .bj-wrap {
        max-width: 100%;
        margin: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}
@media print, screen and (min-width: 1400px) {
    .bj-ttl {
        font-size: 4.8rem;
    }
}
@media print, screen and (min-width: 1280px) {
    .bj-wrap {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
@media print, screen and (min-width: 1280px) {
    .bj-body {
        margin: 50px 5% 0 0;
        max-width: 50%;
    }
}
@media print, screen and (min-width: 1280px) {
    .bj-subTtl {
        font-size: 2rem;
    }
}
.bj-subTtl {
    display: inline-block;
    color: #11114c;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.5;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(40%, #FCF3CF));
    background: linear-gradient(transparent 60%, #FCF3CF 40%);
    margin-bottom: 3px;
}
.bj-txt {
    font-size: 1.4rem;
    line-height: 1.89;
}
.bj-txt span{
      background: -webkit-gradient(linear, left top, right top, from(#ff8a00), to(#ff4768));
    background: linear-gradient(to right, #ff8a00, #ff4768);
    background: -webkit-linear-gradient(to right, #ff8a00, #ff4768);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  font-size: 2.1rem;
  font-weight: 800;
}
@media print, screen and (min-width: 1280px) {
    .bj-txt {
        font-size: 1.6rem;
    }
}
.bj-img{
  margin-top:10px;
}
.bj-img img{
  width:100%;
  height:auto;
  object-fit: contain;
}
.menu ul li.regist a{
  display: inline-block;
  height:35px;
  line-height: 35px;
  padding:0px 30px;
      border-radius: 17.5px;
  background: #006fdf;
  color:#fff;
  margin-top:8px;
  margin-left: 30px;
}
@media screen and (min-width: 640px) {
    .bj-right__txt {
        font-size: 1.4rem;
    }
}
.bj-right {
    max-width: 590px;
    width: 100%;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 124px;
      opacity: 0;
    transform: translateY(20px);
    animation: slideUpFadeIn 0.7s 
ease-out forwards;
    animation-delay: 0.4s;
}
@media screen and (min-width: 1024px) {
    .bj-right {
        width: 64%;
        -webkit-transform: none;
        transform: none;
        position: initial;
    }
}
.bj-tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.bj-tag li {
    text-align: center;
    color: #0095d8;
    font-size: 1rem;
    font-weight: 600;
    background: #fff;
    border: 1px solid #0095d8;
    margin: 0 2px 2px 0;
    max-width: 116px;
    width: 100%;
    padding: 3px 1px;
  border-radius: 15px;
}


@media print, screen and (min-width: 1280px) {
    .bj-tag li {
        font-size: 1.5rem;
    }
}
@media screen and (min-width: 640px) {
    .bj-tag li {
        font-size: 1.2rem;
        padding: 1px;
    }
}


.hero-area {
  position: relative;
  height: 420px;
  max-height: 420px;
  overflow: hidden;
  background:#3598DB url("../img/top-bg.jpg") no-repeat left 10% bottom;
}
.hero-text{
 margin-top:70px;
  text-align: center;
}
.hero-text img{
  margin-bottom:20px;
}
.hero-area h1{
  color:#fff;
  font-size:32px;
  font-weight: 600;
  text-align: center;
  
}
.why{
  width:100%;
  text-align: center;
  background:#D81616;
  color:#fff;
  font-weight: 600;
  height:60px;
  line-height: 60px;
  font-size:21px;
}
.order{
  font-size:28px;
  margin-bottom:30px;
}
.mb80{
  margin-bottom:80px !important;
}
.destxt{
  background:#E8F6FF;
  padding:20px 30px;
}
.destxt p.txt{
  color:#157FC6;
  
}

.btn {
    display: block;
    text-align: center;
    background:#006fdf;
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    border-radius: 50px;
    max-width: 280px;
    width: 100%;
    padding: 15px;
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  box-sizing: border-box;
}
.btn:hover{
  background:#003867
}
.btn-orange {
    margin-top:15px;
    background:#F1C40F;
}
.btn.btn-orange:hover{
  background:#B7950B;
}
.center .btn.btn-orange{
  margin-left:15px;
}
@media screen and (min-width: 1024px) {

    .bj-cta {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}
@media print, screen and (min-width: 1330px) {
    .bj-cta .btn {
        font-size: 2rem;
        max-width: 285px;
    }
}
@media print, screen and (min-width: 1330px) {
    .bj-cta .btn {
        font-size: 2rem;
        max-width: 285px;
    }
}
.bj-cta {
    margin-top: 15px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFadeIn 0.7s ease-out forwards;
    animation-delay: 1s;
}
.bj-info__ttl {
    font-size: 1.4rem;
    font-weight: 600;
}
.bj-info__ttl .--en {
    font-size: 2.8rem;
}
.bj-info__ttl .--en-2 {
    font-size: 2.1rem;
    padding-top:10px;
  display: block;
}
.bj-info {
    width: 100%;
    position: relative;
    z-index: 2;
}
.bj-info__item {
    background: #fff;
    text-align: center;
    border-radius: 18px;
    max-width: 180px;
    width: 100%;
    margin: 10px auto;
    padding: 10px;
    line-height: 1.25;
}
.bj-info__item p{
  line-height: 1.25;
}

    .bj-info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        max-width: 680px;
        gap:15px;
    }

@media print, screen and (min-width: 1330px) {
    .bj-info__item {
        max-width: 244px;
        min-height: 80px;
    }
}
@media print, screen and (min-width: 1330px) {
    .bj-info__txt {
        font-size: 1.4rem;
    }
}
.bj-info__ttl.--red {
    background: -webkit-gradient(linear, left top, right top, from(#ff8a00), to(#ff4768));
    background: linear-gradient(to right, #ff8a00, #ff4768);
    background: -webkit-linear-gradient(to right, #ff8a00, #ff4768);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media print, screen and (min-width: 1330px) {
    .bj-info__ttl .--en {
        font-size: 4rem;
    }
}
@media screen and (min-width: 1024px) {
    .bj-info__item {
        width: 32%;
        margin: 0;
        padding: 10px 10px 0;
        max-width: 200px;
    }
}



/*** section1 ****/
.secTtl {
    font-family: "Montserrat", serif;
    color: #ccc;
    font-size: 5.5rem;
    font-weight: 600;
    line-height: 1;
}
.secTtlSub {
    font-size: 2.1rem;
    font-weight: 600;
    color: #11114c;
}
.secTtlSub_2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #11114c;
}
p.txt{
  line-height: 160%;
  color:#2A3B4C;
  margin-top:10px;
  margin-bottom:20px;
}
.about__body{
  padding-left:80px;
}


/*** section2 *****/
#section2{
  background:#EAF2F8;
  color:#2471A3;
}
#section2-1{
  background:#025fc7;
  color:#fff;
}
#section2 .secTtl {
  color:#c4d8ef;
}
#section2 .secTtlSub{
  color:#2471A3;
}
.service__catch {
    color: #fff;
    font-size: 2.3rem;
    font-weight: bold;
    margin-top: 20px;
    text-align: center;
}
.service__catch__inline {
    background: #3498DB;
    display: inline-block;
    max-width: 600px;
    width: 100%;
    padding: 8px;
    border-radius: 15px;
    max-width: 100%;
    line-height: 60px;
  box-sizing: border-box;
}
.service-box{
  padding-left:15px;
  padding-right:15px;
  padding-bottom:45px;
}
.service-box h3{
  font-weight: 600;
  font-size:1.9rem;
}
.service-box p.txt{
  color:#2471A3;
  font-size:1.4rem;
}
.people{
  max-width: 400px;
  height:auto;
  object-fit: contain;
  position: absolute;
  bottom:0px;
}
section#section1{
  margin-bottom:0px;
  position: relative;
}
.ficon {
  text-align: center;
  padding-top:10px;
  padding-bottom:15px;
}
.ficon img{
  width:60px;
  height: auto;
}
.footer_other_copyright{
  font-size:12px;
  text-align: center;
  padding:10px ;
  border-top:1px solid #ddd;
  margin-top:60px;
}
#section6{
  border-top:1px solid #ddd;
  padding-top:40px;
  font-size:12px;
  color:#343434;
}
#section6 p{
  margin-bottom:15px;
  line-height: 160%;
}
.flow{
  display: flex;
}
.flow_box{
  width:25%;
  padding:15px;
}
.flow_box h3{
  font-size:1.8rem;
  font-weight: 600;
  color:#121212;
  margin-bottom:10px;
}
.flow-list p{
  font-size:1.4rem;
}
  .center{
    text-align: center;
  }
  .center .btn{
    margin-left:auto;
    margin-right:auto;
    display: inline-block;
  }

@media print, screen and (max-width: 1279.9px) {
  section{
    padding-left:25px;
    padding-right:25px;
  }
}
@media print, screen and (max-width: 1059.9px) {
  #head-txt{
    display: none;
  }
  .bj-cta{
    flex-wrap: wrap;
    display: flex;
  }
  .bj-right{
    display: none;
  }
  .people{
     display: none;
  }
  .col-md-8,
  .col-md-4,
  .col-md-5{
    width:100%;
  }
  .service-box{
    padding:0px 0px 30px 0px;
  }
  .service-list .sicon img{
    width:80px;
  }
  .about__body{
    padding-left: 0px;
  }
  .hero-area{
    height:550px;
  }
  .hero-area .container{
    padding-top:20px;
  }
  .btn,
  .bj-info,
  .bj-info__item{
    max-width: 100%;
  }
  .menu ul li a{
    display: none;
  }
  .menu{
    width:70%;
  }
  .logo{
    width: 30%;
    text-align: left;
  }
  .menu ul li.regist a{
    margin-top:0px;
  }
  .logo img{
    width:auto;
    margin-top:0px;
    height: 30px;
  }
  .menu ul li.regist a{
    font-size:12px;
    height:30px;
    line-height: 30px;
  }
  .hero-text{
    margin-top:10px;
  }
  .hero-text img{
    max-width: 220px;
  }
  .hero-area h1{
    font-size:21px;
  }
  .hero-area{
    background-size:100%;
  }
  .why{
    font-size:16px;
  }
  .about__body{
    padding-left:15px;
    padding-right:15px;
  }
  .bj-txt br{
    display: none;
  }
  .bj-wrap{
    text-align: center;
  }
  h2.secTtl{
    font-size:1.8rem;
  }
  .service__catch{
     font-size:1.8rem;
  }
  .service__catch__inline{
    line-height:30px;
  }
  .flow{
    display: block;
    box-sizing: border-box;
  }
  .flow_box{
    width:100%;
    box-sizing: border-box;
  }
  .bj-info__txt{
    font-size:1.1rem;
  }
  .bj-info__ttl{
    font-size:1.2rem;
  }
  .btn{
    font-size:1.6rem;
  }
  .flow-list{
    display: flex;
    gap:20px;
  }
  .ficon img{
    width:30px;
  }
  .bj-txt span{
    display: block;
  }
  .center .btn.btn-orange{
    margin-left:0px;
  }
}
.faq-box ul {
    width: 100%;
    margin: 0 auto;
    padding: 12px 0 24px;
}
.faq-box>ul>li:not(:last-child) {
    margin-bottom: 20px;
}
.faq-box>ul>li {
    border-radius: 8px;
    border: 1px solid #e6e6e6;
}
.faq-box>ul>li div.question {
    background-color: #f9f9f9;
    padding: 20px 40px 20px 20px;
    position: relative;
    cursor: pointer;
    border-radius: 8px 8px 0px 0px;
}
.faq-box ul li dl {
    display: table;
}
.faq-box ul li dl.qu dt {
    color: #fff;
    background: #007fc3;
}
.faq-box ul li dl dd {
    padding-left: 11px;
    display: table-cell;
    vertical-align: middle;
}
.question dd, .answer dd {
    font-size: 14px;
}

.answer {
    height: auto;
    opacity: 1;
}
.faq-box ul li .an {
    padding: 15px 20px;
  background:#EAF2F8;
}
.faq-box ul li .an dt{
  color:#025fc7;
}
.faq-box ul li dl {
    display: table;
}
.faq-box ul li dl dt {
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 18px;
    font-weight: 500;
    vertical-align: middle;
}
.faq-box ul li dl dd {
    padding-left: 11px;
    display: table-cell;
    vertical-align: middle;
  color:#121212;
}
.hero-kikan span{
  font-size: 21px;
  color:#CF0003;
  font-weight: 600;
}