@charset "utf-8";

:root {
  --poppins: "Poppins", serif;
}

/*外部からのセクション遷移用*/
[id] {
  scroll-margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  [id] {
    scroll-margin-top: 80px;
  }
}

html {
  scroll-behavior: auto;
}

body{
  font-size: 2.1rem;
  line-height: 2.19;
  font-family: Roboto;
}

@keyframes gradient {
  0% {
      background-position: 100% 50%;
  }
  50% {
      background-position: 0% 50%;
  }
  100% {
      background-position: 100% 50%;
  }
}

.sp{ display: none !important;}
.pc{ display: block !important;}

@media only screen and (max-width: 1024px) {
  .sp{ display: block !important;}
  .pc{ display: none !important;}
}

.sp2{ display: none !important;}
.pc2{ display: block !important;}

@media only screen and (max-width: 768px) {
  .sp2{ display: block !important;}
  .pc2{ display: none !important;}
}

.wrap{
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1440px;
  z-index: 2;
  padding: 0 80px;
}



.wrap_s{
  max-width: 1163px;
  padding: 0px;
  margin: 0 auto;
  width: 100%;
}

@media screen and (max-width: 1280px) {
  .wrap{
    padding: 0 5%;
  }
}
@media screen and (max-width: 1024px) {

  .wrap{
    padding: 0 5%;
  }

}
.flex_c{
  display: flex;
  justify-content: center;
  width: 100%;
}

h1,h2,h3{
  font-weight: 500;
}

img{
  width: 100%;
  height: auto;
}

button,
a{
  cursor: pointer;
  transition: opacity 0.2s ease;
}
a:hover{
  opacity: 0.5;
}

@media screen and (max-width: 1024px) {
  a:hover{
    opacity: 1;
  }
}

img{
  width: 100%;
}

a.zm_img{
  display: block;
}
a.zm_img figure{
  overflow: hidden;
}
a.zm_img figure img{
  display: block;
  transition: transform 0.4s ease;
}

a.blank{
  position: relative;
}
a.blank::after{
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 0.5em;
  margin-bottom: -0.1em;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url(../svg/icon_blank.svg);
}

/*animation 初期非表示*/
.js_fade,
.js_blur,
.js_scale1,
.js_rotate,
.js_move_down,
.js_move_up,
.js_stretch {
  visibility: hidden;
}
.js_fade.move-actived,
.js_blur.move-actived,
.js_scale1.move-actived,
.js_rotate.move-actived,
.js_move_down.move-actived,
.js_move_up.move-actived,
.js_stretch.move-actived {
  visibility: inherit;
}


header{
  position: fixed;
  left:0;
  top:0;
  height: 100px;
  align-items: center;
  justify-content: space-between;
  display: flex;
  width: 100%;
  padding: 0 60px 0 30px;
  z-index: 100;
  transition: all  0.3s ease;
  background: transparent;
}

header.on{
  filter: blur(0px);
  background: #fff;
}

header .logo{
  position: relative;
  width: 176px;
  display: block;
}

header.on .logo::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/logo.webp) no-repeat  50% 50% / 100%;
}

header nav{
  display: flex;
  z-index: 2;
  position: relative;
  align-items: center;
}

header nav .menu{
  display: flex;
  gap: 60px;
  margin-left: 50px;
  align-items: center;
  text-align: center;
  padding-top: 5px;
  margin-right: 50px;
}

header.on nav .menu>li>a em{
  color: #006AB8;
}


header nav .menu>li>a em{
  font-size: 1.8rem;
  color: #fff;
  display: block;
  text-align: center;
  line-height: 1;
  font-weight: bold;
}

header nav .contact_button{
  display: block;
  width: 123px;
  height: 40px;
  line-height: 40px;
  font-weight: bold;
  border-radius: 20px;
  background: #fff;
  color: #006ab8;
  text-align: center;
  margin-right: 50px;
} 

header.on nav .contact_button{
  color :#fff;
  background: #006AB8;
}

header nav .lang{
  display: flex;
}

header nav .lang>li>a{
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 32px;
  text-align: left;
  color: #fff;
}

header nav .lang>li{
  position: relative;
}

header nav .lang > li + li::before {
  content: '|';
  color: #fff;
  display: inline-block;
  padding: 0 0.5em;
}

header.on nav .lang>li>a{
  color: #006AB8;
}
header.on nav .lang > li + li::before {
  color: #006AB8;
}

header nav .lang_link>a{
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 32px;
  text-align: left;
  color: #fff;
}

header nav .lang_link>a::before {
  content:"";
  background: url(../img/icon_lang_white.svg) no-repeat;
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin: 0 4px 4px;
}


/* header nav .lang_link>a span{
  color: #fff;
} */

header.on nav .lang_link>a{
  color: #006AB8;
}

header.on nav .lang_link>a::before {
  background: url(../img/icon_lang.svg) no-repeat;
}

/* header nav .lang_link>a span{
  color: #006AB8;
} */

@media screen and (max-width: 1024px) {

  header{
    padding: 0 5% 0 5%;
    height: 80px;
  }

  header nav {
    position: fixed;
    top: 0px;
    height: 100vh;
    height: 100dvh;
    width: 100%;
    left:auto;
    right: 0;
    text-align: left;
    -webkit-overflow-scrolling: touch;
    padding: 0px;
    overflow: auto;
    visibility: hidden;
    background: #fff;
    transition: opacity 0.2s ease-in-out;
    opacity: 0;
    z-index: 1000;
  }

  header.block nav.slide{
    display: block;
    right: -300px;
  }

  header.block.active nav{ 
    opacity: 1;
    visibility: visible;
  }

  header.block nav.slide{
    display: block;
    opacity: 1;
  }

  header.block.active nav.slide{ 
    opacity: 1;
    right: 0px;
    visibility: visible;
  }

  header.block nav.fade_in{
    display: block;
    right: 0px;
    width: 100%;
  }

  header.block.active nav.fade_in{ 
    opacity: 1;
    right: 0px;
    visibility: visible;
  }

  header nav .menu{
    display: block;
    padding-top: 100px;
  }

  header nav .menu>li{
    margin-bottom: 20px;
  }
  
  header nav .menu>li>a{
    display: block;
  }
  header nav .menu>li>a em{
    font-size: 3rem;
    color: #006AB8;
    display: block;
    padding: 0.5em 0;
    text-align: center;
    line-height: 1;
    font-family: var(--poppins);
    font-weight: 700;
  }

  header nav .contact_button{
    display: block;
    width: 285px;
    height: 79px;
    line-height: 79px;
    font-weight: bold;
    border-radius: 40px;
    background: #006ab8 !important;
    color: #ffffff !important;
    text-align: center;
    margin:0 auto 1em;
    font-size: 3rem;
  } 
    
  header nav .menu>li>a span{
    display: block;
    font-size: 1.6rem;
    color: #9C9D9D;
  }

  header .logo{
    position: fixed;
    z-index: 1100;
  }

  header.active .logo::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/logo.webp) no-repeat  50% 50% / 100%;
  }

  header nav .lang{
    justify-content: center;
  }
  header nav .lang>li>a{
    color: #006AB8;
    font-size: 2rem;
  }
  header nav .lang > li + li::before {
    color: #006AB8;
  }

}
@media screen and (max-width: 768px) {

}


  /*メニューボタン*/
  header #menu_button {
    position: fixed;
    right: 20px;
    top: 0px;
    cursor: pointer;
    height: 80px;
    width: 60px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1100;
  }

  header #menu_button>.inr{
    position: relative;
    width: 36px;
    height: 16px;
    cursor: pointer;
    margin-top: 0px;
    transition: all 0.3s ease;
    transform: rotate(0deg);
    z-index: 2;
  }

  header.active #menu_button>.inr {
    margin-left: -10px;
  }

  header #menu_button>.inr>div {
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    transition: all 0.3s;
    z-index: 11;
  }

  header #menu_button>.inr>div:nth-child(1) {
    top: 0%;
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }

  header #menu_button>.inr>div:nth-child(2) {
    top: 50%;
  }

  header #menu_button>.inr>div:nth-child(3) {
    top: 100%;
    transform: translate(0%, 0%);
  }

  header.on #menu_button>.inr>div,
  header.active #menu_button>.inr>div {
    position: absolute;
    transition: all 0.3s;
    width: 100%;
    background: #016BB9;
  }

  header.active #menu_button>.inr>div:nth-child(1) {
    top: 50%;
    margin-left: 0px;
    width: 100%;
    transform: translate(0, -50%) rotate(45deg);
  }

  header.active #menu_button>.inr>div:nth-child(2) {
    display: none;
  }

  header.active #menu_button>.inr>div:nth-child(3) {
    top: 50%;
    margin-left: 0px;
    width: 100%;
    transform: translate(0, -50%) rotate(-45deg);
  }
  @media screen and (max-width: 1024px) {
    header #menu_button {
      display: flex;
    }
    header #menu_button {
      right: 10px;
    }
  }

  /*フッター*/
  footer{
    position: relative;
    background: #F4F5F5;
    padding: 55px 112px 40px;
    z-index: 2;
  }


  footer .gmp{
    position: absolute;
    right:112px;
    top:60px;
    display: block;
    width: 300px;  
    z-index: 2;  
  }

  footer .logo{
    width: 180px;
    display: block;
    margin-bottom: 20px;
  }

  footer .address{
    position: relative;
    font-size: 1.5rem;
    line-height: calc(28 / 15);
    margin-bottom: 50px;
    font-weight: normal;
  }

  footer .menu{
    display: flex;
    gap:40px;
    margin: 0 auto ;
    padding-bottom: 35px;
    margin-bottom: 30px;
  }

  footer .menu>li>a{
    position: relative;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    text-align: center;
    padding-left: 15px;
    line-height: 1;
  }

  footer .menu>li>a::before{
    content: '-';
    position: absolute;
    left:0;
    margin-right: 10px;
    font-weight: bold;
  }

  footer .menu>li>a>em{
    display: block;
    font-family: var(--poppins);
    font-size: 1.6rem;
    line-height: 1;
  }

  footer .menu>li>a>em{
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.2;
    color: #016BB9;
  }
  
  footer .corp{
    display: flex;
    justify-content: center;
  }

  footer .corp a{
    display: inline-block;
    position: relative;
    font-size: 1.5rem;
  }

  footer .corp a::after{
    content: '';
    width: 12px;
    height:12px;
    background-repeat: no-repeat;
    background-image: url(../svg/blank.svg);
  }

  footer .copyright{
    font-size: 1.5rem;
    text-align: left;
  }

  footer .contact_button{
    position: relative;
    max-width: 642px;
    height: 112px;
    background: #fff;
    display: flex;
    font-size: 3rem;
    color:#016BB9;
    align-items: center;
    gap:16px;
    padding-left: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
  }

  footer .contact_button::after{
    content: '';
    position: absolute;
    right: 30px;
    top: 50%;
    margin-top: -10px;
    width: 20px;
    height: 20px;
    border-top:2px solid #006AB8;
    border-right:2px solid #006AB8;
    transform: rotate(45deg);
  }
  
  footer .contact_button img{
    width: 23px;
  }

  @media screen and (max-width: 1024px) {
    footer {
      padding: 40px 5% 40px;
    }

    footer .address{
      position: relative;
      font-size: 1.5rem;
      line-height: calc(28 / 15);
      margin-bottom: 25px;
      font-weight: normal;
    }

    footer .menu {
      margin-bottom: 0;
    }

    footer .gmp {
      right: 5%;
      top: 40px;
      width: 40%;
      max-width: 300px;
    }

  }
  @media screen and (max-width: 600px) {
    footer .menu {
      display: flex;
      flex-wrap:wrap;
      gap: 0;
      margin: 0 auto;
      padding-bottom: 35px;
      margin-bottom: 0px;
    }
    footer .menu>li{
      width: 50%;
      margin-bottom: 15px;
    }

    footer .copyright{
      font-size: 2.8vw;
      text-align: left;
    }

  }

  #container{
    padding-top: 0px;
    overflow: hidden;
  }

  @media screen and (max-width: 1024px) {
    #container {
      padding-top: 0px;
    }
  }

  .headline{
    font-size: 7.3rem;
    line-height: 1;
    margin-bottom: 40px;
    font-weight: 300;
    color: #4796D1;
  }

  .headline.center{
    text-align: center;
  }
  .headline.center em{
    justify-content: center;
  }
  .headline.center span{
    text-align: center;
    display: block;;
  }

.main_visual{
  position: relative;
  overflow: hidden;
}

.main_visual .mv_txt{
  position: absolute;
  left: 7.6vw;
  top:16vw;
  font-weight: 500;
  font-size: 3.6rem;
  font-size: 2.38vw;
  letter-spacing: 0.04em;
  line-height: 1.57;
  text-align: left;
  color: #fff;
  z-index: 5;
  text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.16);
}

.main_visual .mv_base{
  position: relative;
  z-index: 1;
}

.main_visual .mv_top{
  z-index: 3;
  position: absolute;
  left:0;
  top:0;
  width: 100%;
}


.main_visual .mv_ribbon{
  z-index:2;
  position: absolute;
  left:0;
  top:0;
  width: 100%;
  height: 100%;
  mask-image: url(/english/images/mv_ribbon.webp);
  mask-position: left;
  mask-repeat: no-repeat;
  mask-clip: fill-box;
  mask-size: 100%;
}

.main_visual .mv_ribbon:before {
  display: block;
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    #006AB8 0%,
    rgba(255, 246, 194, 0.7) 8%,
    rgba(255,255,255,0.5) 24%,
    #006AB8 55%
  );
  background-size: 200% 200%;
  animation: glow_bg 6s reverse infinite cubic-bezier(0.33,1,0.68,1);
  z-index: 1;
  -webkit-mask-image: 
    linear-gradient(
      220deg,
      rgb(255,255,255) 0%,
      rgb(255,255,255) 10%,
      rgba(255,255,255,0) 50%,
      rgba(255,255,255,0) 100%
    ),
    url(/english/images/mv_ribbon.webp);
  -webkit-mask-repeat: no-repeat, no-repeat;
  -webkit-mask-size: 100%, 100%;
  -webkit-mask-position: left, left;

  mask-image:
    linear-gradient(
      220deg,
      rgb(255,255,255) 0%,
      rgb(255,255,255) 30%,
      rgba(255,255,255,0) 50%,
      rgba(255,255,255,0) 100%
    ),
    url(/english/images/mv_ribbon.webp);
  mask-repeat: no-repeat, no-repeat;
  mask-size: 100%, 100%;
  mask-position: left, left;
}

@keyframes glow_bg {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}
@keyframes glow_bg2{
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}

/*2*/
.main_visual .mv2_txt{
  position: absolute;
  left: 7.6vw;
  top:16vw;
  font-weight: 500;
  font-size: 3.6rem;
  font-size: 2.38vw;
  letter-spacing: 0.04em;
  line-height: 1.57;
  text-align: left;
  color: #fff;
  z-index: 5;
  text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.16);
}

.main_visual .mv2_base{
  position: relative;
  z-index: 1;
}

.main_visual .mv2_top{
  z-index: 3;
  position: absolute;
  left:0;
  top:0;
  width: 100%;
}

.main_visual .mv2_ribbon{
  z-index:2;
  position: absolute;
  left:0;
  top:0;
  width: 100%;
  height: 100%;
  mask-image: url(/english/images/mv2_ribbon.webp);
  mask-position: left;
  mask-repeat: no-repeat;
  mask-clip: fill-box;
  mask-size: 100%;
}

.main_visual .mv2_ribbon:before {
  display: block;
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    #006AB8 0%,
    rgba(255, 255, 255, 0.7) 8%,
    rgba(255,255,255,0.5) 24%,
    #006AB8 55%
  );
  background-size: 200% 200%;
  animation: glow_bg2 6s reverse infinite cubic-bezier(0.33,1,0.68,1);
  z-index: 1;
  -webkit-mask-image: 
    linear-gradient(
      220deg,
      rgb(255,255,255) 0%,
      rgb(255,255,255) 10%,
      rgba(255,255,255,0) 50%,
      rgba(255,255,255,0) 100%
    ),
    url(/english/images/mv2_ribbon.webp);
  -webkit-mask-repeat: no-repeat, no-repeat;
  -webkit-mask-size: 100%, 100%;
  -webkit-mask-position: left, left;

  mask-image:
    linear-gradient(
      220deg,
      rgb(255,255,255) 0%,
      rgb(255,255,255) 30%,
      rgba(255,255,255,0) 50%,
      rgba(255,255,255,0) 100%
    ),
    url(/english/images/mv2_ribbon.webp);
  mask-repeat: no-repeat, no-repeat;
  mask-size: 100%, 100%;
  mask-position: left, left;
}

.main_slider
.swiper-slide .mv_box {
  transform: scale(1.1);
  transition: transform 2s ease, opacity 1.2s ease;
}

.main_slider
.swiper-slide-active .mv_box{
  transform: scale(1);
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  .main_visual{
    height: 657px;
    overflow: hidden;
  }

  .main_visual .swiper-slide{
    height: 657px;
  }

  .main_visual .inr .mv_box{
    height: 100%;
    width: 100%;
    left:0;
    top:0;
    position: absolute;
  }

  .main_visual .inr{
    height: 100%;
    position: absolute;
    left:50%;
    top:0;
    width: 1024px;
    min-width: 100%;
    transform: translateX(-50%);
  }

  .main_visual .mv_txt {
    top: 150px;
    font-size: 4.5vw;
  }

  .main_visual .mv_ribbon{
    top: -10%;
  }
  
  .main_visual .mv2_ribbon{
    top: -5%;
  }

}
@media screen and (max-width: 768px) {
  .main_visual{
    height: auto;
    aspect-ratio: 768 /970;
    overflow: hidden;
  }

  .main_visual .swiper-slide{
    height: auto;
    aspect-ratio: 768 /970;
  }

  .main_visual .inr{
    height: 100%;
    position: absolute;
    left:50%;
    top:0;
    width: auto;
    min-width: 200%;
    transform: translateX(-45%);
  }

  .main_visual .slide02 .inr{
    left:0%;
  }
  

  .main_visual .mv_txt {
    top: 30%;
    font-size: 4.8vw;
  }

}

.section_about{
  position: relative;
  padding: 80px 0;
}

.section_about .bg{
  position: absolute;
  right: 0;
  top:0;
  width:100%;
  height: 100%;
}

.section_about .bg img{
  object-fit: cover;
  height: 100%;
  object-position: right;
}

.section_about .row{
  display: flex;
  gap: 0;
}

.section_about .row .box1{
  width: 42.9%;
  padding-top:100px;
}

.headline {
  font-size: 7.3rem;
  line-height: 1;
  margin-bottom: 80px;
  font-weight: 300;
  color: #4796D1;
}

@media screen and (max-width: 600px) {
  .headline {
    font-size: 10vw;
    margin-bottom: 40px;
  }
}

.section_about .ttl{
  position: absolute;
  left:0;
  top:0;
}

.section_about .row {
  position: relative;
}

.section_about .row .box2{
  width: calc(100% - 42.9%);
  padding-left: 9vw;
}

.section_about .row .box2 .logo{
  width: 286px;
  margin-bottom: 40px;
}

.section_about .row .box2 .catch{
  font-size: 2.38vw;
  line-height: 1.44;
  margin-bottom: 25px;
  color: rgba(74, 74, 74, 1);
}

.section_about .row .box2 .msg{
  font-size: 2rem;
  line-height: 2.6;
}
@media screen and (max-width: 1024px) {
  .section_about{
    position: relative;
    padding: 80px 0 0;
  }

  .section_about .ttl{
    position: static;
    order:0;
  }

  .section_about .bg{
    position: absolute;
    right: 0;
    top:0;
    width:100%;
    height: auto;
  }

  .section_about .row {
    flex-direction: column;
  }
  
    
  .section_about .row .box1,  
  .section_about .row .box2{
    width: 100%;
    padding-left: 0vw;
  }

  .section_about .row .box1{
    padding-top: 20px;
    order:3;
  }

  .section_about .row .box2 .catch{
    font-size: 5.5vw;
  }
}

/*ムービー*/
.section_movie{
  padding-top: 25px;
  padding-bottom: 100px;
}

.section_movie .movie_wrap{
  margin: 0 auto;
  max-width: 890px;
  width: 100%;
  aspect-ratio: 560 / 315;
}

.section_movie .movie_wrap iframe{
  width: 100%;
  height: 100%;
}


.section_about .swiper-pagination{
  position: static;
  gap:30px;
  display: flex;
  margin-top: 30px;
  justify-content: center;
}

.section_about .swiper-pagination-bullet {
  opacity: 1;
  background: #B7B7B7;
  width: 16px;
  height: 16px;
}

.section_about .swiper-pagination-bullet-active {
  opacity: 1;
  background: #1683A8;
}

/**/
.section_service{
  position: relative;
  overflow: hidden;
  padding-bottom: 130px;
}

.section_service .bg{
  position: absolute;
  left:0;
  top:0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.section_service .bg img{
  height: 100%;
  width: 100%;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.section_service .sl1{
  background-image: linear-gradient(to right, #53AACD, #79CFE9);
}
.section_service .sl2{
  background-image: linear-gradient(to right, #3CC8D9, #90E4EB);
}
.section_service .sl3{
  background-image: linear-gradient(to right, #7FADD1, #A0C0D9);
}

/*サービス*/
.section_service{
  position: relative;
  padding-top: 150px;
}

.section_service .head{
  position: static;
  z-index: 10;
  left:0;
  width: 100%;
  top:13vw;
}

.section_service .service_box{
  width: 100%;
  padding-top: 138px;
  padding-bottom: 100px;
  color: #fff;
}

.section_service .service_box .service_box_bg{
  position: absolute;
  left:0;
  top:0;
  width: 100%;
  height: 100%;
}

.section_service .service_box .row2{
  display: flex;
  width: 100%;
  gap: 0px;
  color: #fff;
  z-index: 3;
  position: relative;
  padding-top: 0vw;
}

.section_service .service_box .row2 .box1{
  width: 53.3%;
  padding-right: 60px;
}

.section_service .service_box .row2 .box2 {
  width: 46.7%;
  padding-top: 50px;
}

.section_service .service_box .row1{
  display: flex;
  align-items: center;
  gap:60px;
  margin-bottom: 30px;
  min-height: 215px;
}

.section_service .service_box .row1 .num {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  color: #fff;
  width: 30%;
}

.section_service .service_box .row1 .num span{
  font-size: 5rem;
  white-space: nowrap;
  line-height: 1;
  padding-right: 0.5em;
}

.section_service .service_box .row1 .num strong{
  font-size: 14rem;
  white-space: nowrap;
  line-height: 1;
}

.section_service .service_box .row1 .ttl{
  font-size: 5.4rem;
  line-height: calc(7 /5.4);
  color: #fff;
  width: 70%;
}

.section_service .service_box .row2{
  display: flex;
}

.section_service .service_box .row2 .catch{
  font-size: 2.2rem;
  line-height: 1.818;
  padding: 0 0 50px;
  border-bottom: 1px solid #fff;
  margin-bottom: 4.4vw;
}

.section_service .service_box .row2 .msg{
  font-size: 2rem;
  line-height: 2;
  margin-bottom: 1.5em;
}

.section_service .service_box .row2 .msg1{
  margin-bottom: 1.5em;
}


.section_service
.swiper-button-prev {
  left: calc(50% - 690px);
  top: 660px;
  transform: translate(0);
}


.section_service
.swiper-button-next{
  right: calc(50% - 690px);
  top: 660px;
  transform: translate(0);
}


.section_service
.swiper-button-prev:after,
.section_service
.swiper-button-next:after{
    color: #fff;
    font-size: 60px;
}

@media screen and (max-width: 1440px) {
  .section_service .swiper-button-prev {
    left: 20px;
    top: 631px;
  }

  .section_service .swiper-button-next{
    right: 20px;
    top: 631px;
  }

}
@media screen and (max-width: 1350px) {
    
  .section_service .service_box .row1 .num span{
    font-size: 3.7vw;
    line-height: 1;
    padding-right: 0.5em;
  }

  .section_service .service_box .row1 .num strong{
    font-size: 10vw;
    line-height: 1;
  }

  .section_service .service_box .row1 .ttl{
    font-size: 3.7vw;
  }

  .section_service .swiper-button-prev:after,
  .section_service .swiper-button-next:after{
    font-size: 40px;
  }

}

@media screen and (max-width: 1024px) {
  .section_service .service_box{
    padding-bottom: 15vw;
  }
  .section_service .service_box .row1{
    margin-bottom: 7vw;
  }

  .section_service .section_service {
    position: relative;
    padding-top: 22%;
  }

  .section_service .service_box {
    padding: 0 6%;
    padding-top: 120px;
    padding-bottom: 100px;
  }

  .section_service .service_box .row1 {
    flex-direction: column;
    align-items: flex-start;
    gap:7vw;
  }

  .section_service .service_box .row2{
    width: 100%;
    flex-direction: column;
  }

  .section_service .service_box .row2 .box1{
    width: 100%;
    padding-right: 0px;
  }

  .section_service .service_box .row2 .box2 {
    width: 100%;
    padding-top: 30px;
  }
  
  .section_service .service_box .row2 .catch{
    margin-bottom: 7vw;
    padding: 0 0 7vw;
  }

  .section_service .swiper-button-prev {
    top: 50%;
    left:2%; 
    transform: translateY(-50%);
  }

  .section_service .swiper-button-next{
    top: 50%;
    right:2%; 
    transform: translateY(-50%);
  }

  .section_service .swiper-button-prev:after,
  .section_service .swiper-button-next:after{
    font-size: 6vw;
  }
}

@media screen and (max-width: 768px) {

  .section_service .service_box {
    padding-top: 22vw;
  }

  .section_service_block {
    position: relative;
    margin-top: -296px;
  }

  .section_service .service_box .row1 .num {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    color: #fff;
    width: 100%;
  }

  .section_service .service_box .row1 .num span{
    font-size: 6.5vw;
    line-height: 1;
    padding-right: 0.5em;
  }

  .section_service .service_box .row1 .num strong{
    font-size: 18vw;
    line-height: 1;
  }

  .section_service .service_box .row1 .ttl{
    font-size: 7.3vw;
    white-space: normal;
    width: 100%;
  }

  .section_service .service_box .row2 .catch {
    font-size: 3.6vw;
    padding: 0 0 7vw;
  }

  .section_service .service_box .row2 .msg{
    font-size: 3.5vw;
  }

  .section_service .service_box .row2 .msg1{
    margin-bottom: 1.5em;
  }
}


.section_service_block{
  position: relative;
  margin-top: -70px;
}

.section_service_block .swiper-pagination{
  position: absolute;
  left:5.29vw;
  top:0;
  display: flex;
  flex-direction: column;
  z-index: 10;
  gap:3vw;
  display: flex;
  margin-top: 30px;
  width: auto;
  height: auto;
  justify-content: center;
}

.section_service_block  .swiper-pagination-bullet {
  opacity: 1;
  background: #fff;
  width: 0.8vw;
  height: 0.8vw;
}
.section_service_block  .swiper-pagination-bullet-active{
  transform: scale(2.3, 2.3);
  opacity: 1;
  background: #fff;
}

.service_slider_wrap {
  position: relative;
}

/* サムネ */
.section_service .thumbs_wrap{
  position: static;
  left:0;
  top:0;
  width: 100%;
  z-index: 2;
}
.section_service .thumbs {
  padding-bottom: 10px;
  width: 100%;
  max-width: 1280px;
}

.section_service .thumbs .swiper-slide {
  position: relative;
  width: calc(( 100% - 80px ) / 3);
  opacity: 1;
  cursor: pointer;
}

.section_service .thumbs .swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.9;
  pointer-events: none;
}

.section_service .thumbs .swiper-slide-thumb-active .text{
  opacity: 1;
  color: #fff;
}

.section_service .thumbs .swiper-slide-thumb-active::before {
  display: none;
}

.section_service .thumbs img {
  width: 100%;
  height: 115px;
  object-fit: cover;
  display: block;
}

.section_service .thumbs .swiper-slide{
  position: relative;
}

.section_service .thumbs .text{
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  color: #006AB8;
  gap:20px;
  transform: translateY(-50%);
}

.section_service .thumbs .text span{
  font-family: Roboto;
  font-weight: 500;
  font-size: 3rem;
}

.section_service .thumbs .text strong{
  font-family: Roboto;
  font-weight: 500;
  font-size: 4rem;
}

@media screen and (max-width: 1024px) {
  .section_service .thumbs .swiper-slide {
    width: calc(( 100% - 40px ) / 3);
  }

  .section_service .thumbs .text{
    gap:10px;
  }

}
@media screen and (max-width: 768px) {
  .section_service_block{
    position: relative;
    margin-top: -16vw;
  }

  .section_service .thumbs .swiper-wrapper{
    display: block;
  }

  .section_service .thumbs .swiper-slide {
    width: 100%;
    margin-bottom: 3vw;
  }

  .section_service .thumbs{
    display: block;
  }

  .section_service .thumbs .swiper-slide {
    aspect-ratio: 10 / 2.5;
    width: 100%;
    overflow: hidden
  }

  .section_service .thumbs .swiper-slide img{
    object-fit: cover;
    height: 100%;
  }

  .section_service .thumbs .text span {
    font-size: 7vw;
  }

  .section_service .thumbs .text strong {
    font-size: 8vw;
  }

}



/* @media screen and (max-width: 1024px) {
  .section_service{
    position: relative;
  }

  .section_service .bg{
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
  }

  .section_service .bg img{
    height: 100%;
    object-fit: cover;
  }

  .section_service .head {
    width: 100%;
    top: 16vw;
  }

  .section_service .service_box {
    width: 100%;
  }

  .section_service .service_box .service_box_bg {
    position: absolute;
    left: 0%;
    top: 0;
    width: 100%;
    height: auto;
  }

  .section_service .service_box .row{
    display: block;
    padding-left: 10%;
    padding-right: 5%;
  }

  .section_service .service_box .row .box1{
    width: 100%;
    padding-left: 0%;
    padding-right:0%;
    height: auto;
  }

  .section_service .service_box .row .box2 {
    width: 100%;
    padding-right: 0;
    padding-top: 0;
  }

  .section_service .service_box .row .box1 .num span{
    font-size: max(1.8rem, 3.2vw);
  }

  .section_service .service_box .row .box1 .num strong{
    font-size: 8.59vw;
    line-height: 1;
  }

  .section_service .service_box .row .box1 .ttl{
    font-size: 5.46vw;
    white-space: normal;
    font-size: max(2rem, 5.46vw);
  }

  .section_service .service_box .row .box1 .catch{
    font-size: 2.86vw;
    font-size: max(1.6rem, 2.6vw);
    padding: 0 0 3vw;
    border-bottom: 1px solid #fff;
    margin-bottom: 4.4vw;
  }

  .section_service .service_box .row .box1 .msg{
    font-size: max(1.6rem, 2.6vw);
  }

  .section_service .service_box .row .box1 .msg1{
    margin-bottom: 1.5em;
  }

  .section_service .service_box .row .box2 .img img{
    width: 100%;
    height: auto;
    display: block;
  }

  .section_service_block .swiper-pagination{
    position: absolute;
    left:4.29vw;
    top:0;
    display: flex;
    flex-direction: column;
    z-index: 10;
    gap:3vw;
    display: flex;
    margin-top: 30px;
    width: auto;
    height: auto;
    justify-content: center;
  }

  .section_service_block  .swiper-pagination-bullet {
    opacity: 1;
    background: #fff;
    width: 0.8vw;
    height: 0.8vw;
  }
  .section_service_block  .swiper-pagination-bullet-active{
    opacity: 1;
    background: #fff;
  }

} */
/* @media screen and (max-width: 500px) {
  .section_service .service_box {
    width: 100%;
    overflow: visible;
  }
  

  .section_service .service_box1{
    aspect-ratio: initial;
    padding-bottom: 15vw;
  }

   .section_service .service_box2{
      aspect-ratio: initial;
      padding-bottom: 25vw;
   }
   .section_service .service_box3{
      padding-bottom: 25vw;
   } 

  .section_service .service_box .row .box1 .ttl {
    line-height: 1.5;
    margin-bottom: 0.5em;
  }
  .section_service .service_box .row .box1 .msg{
    margin-bottom: 1.5em;
    line-height: 1.5;
  }

  .section_service_block  .swiper-pagination-bullet {
    opacity: 1;
    background: #fff;
    width: 1.2vw;
    height: 1.2vw;
  }

  .section_service_block  .swiper-pagination-bullet-active{
    opacity: 1;
    background: #fff;
  }
}
 */

.lower_visual{
  position: relative;
}

.lower_visual .ttl{
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  font-size: 7rem;
  width: 100%;
  font-weight: 500;
  color: #fff;
  text-align: center;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .lower_visual{
    height: 300px;
  }
  .lower_visual img{
    height: 100%;
    object-fit: cover;
  }
  .lower_visual .ttl{
    font-size: 4rem;
  }
}

.lower_container{
  padding-top: 80px;
  padding-bottom: 80px;
}
.lower_wrap{
  max-width: 1162px;
  padding: 0 50px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .lower_container{
    padding-top: 40px;
  }
  .lower_wrap{
    padding: 0 5%;
  }
}
