html{
  overscroll-behavior: none;
  overflow-y: scroll;
}

body {
  font-size: 14px;
  line-height: 2.4;
background: linear-gradient(0deg, #3DB2FF 0%, #3DB2FF 100%), url("./img/main_bg.webp"), lightgray 0% 0% / 30.000001192092896px 30.000001192092896px repeat;
background-blend-mode: multiply, normal;
background-attachment: fixed;
overflow-y: hidden;
font-family: 'Zen Maru Gothic', serif;
caret-color: transparent;
overscroll-behavior: none;
}

img {
  height: 100%;
}
@media screen and (max-width:960px) {
  html{
    overscroll-behavior: none;
    overflow-y: scroll;
  }
  body{
    overflow-y: scroll;
    overflow-x: hidden;
    overscroll-behavior:contain;
  }
  img {
    height: auto;
    width: 100%;
  }
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh; }

[data-scroll-direction="horizontal"] [data-scroll-container] {
  height: 100vh;
  display: inline-block;
  white-space: nowrap;
}

[data-scroll-direction="horizontal"] [data-scroll-section] {
  display: inline-flex;
  vertical-align: middle;
  white-space:normal;
  height: 100%;
}
.container{
  position: fixed;
}
  .content-container, .section {
    display: flex;
    flex-direction: row;
    position: relative;
    width: max-content;
    height: 100vh;
  }
  @media screen and (max-width:960px) {
    .container{
      position: relative;
    }
    [data-scroll-direction="vertical"][data-scroll-container] {
       height:auto;
       display: inline-block;
       white-space: nowrap;
     }
     
     [data-scroll-direction="vertical"][data-scroll-section] {
       display: inline-block;
       vertical-align: middle;
       white-space:normal;
       height: auto;
     }
     .content-container, .section {
      display: block;
      flex-direction: column;
      position: relative;
      width:100vw;
      height: auto;
    }
   }

   
  /*枠線*/
  main:before,
  main:after,
  body:before,
  body:after {
    content: "";
    position: fixed;
    display: block;
    z-index: 98;
  }
  
  /* 線上 */
  main:before {
    height: 10px; 
    width: calc(100vw - 35px);
    left: 10px;
    top: 10px;
    border-top: #fff0d5 3px solid;
    border-bottom: #fff0d5 2px solid;
  }
  /* 線右 */
  main:after {
    width: 10px;
    height: calc(100% - 20px);
    right: 10px;
    top: 10px;
    border-left: #fff0d5 2px solid;
    border-right: #fff0d5 3px solid;
  }
  /* 線下 */
  body:before {
    height: 10px;
    width:  calc(100vw - 35px);
    bottom: 10px;
    left: 10px;
    border-top: #fff0d5 2px solid;
    border-bottom: #fff0d5 3px solid;
  }
  /* 線左 */
  body:after {
    width: 10px;
    height: calc(100% - 20px);
    top: 10px;
    left: 10px;
    border-right: #fff0d5 2px solid;
    border-left: #fff0d5 3px solid;
  }


.pc_only{
  display: block;
}
.sp_only{
  display: none;
}
@media screen and (max-width:960px) {
  html:before,body:before {
    width: calc(100vw - 20px);
  }
  html:after,body:after {
    height: calc(100vh - 20px);
  }
  .pc_only{
    display: none;
  }
  .sp_only{
    display: block;
  }
}
header{
  width: 100vw;
  z-index: 998;
}
.logo{
  width: 300px;
  height: 150px;
  background-image: url("./img/logo_bg.webp");
  background-repeat: no-repeat;
  background-size:contain;
  position: fixed;
  top:0;
  left: 0;
  z-index: 996;
}
.logo img{
  width: 150px;
  height: auto;
  margin: 20px 0 0 30px;
}
@media screen and (max-width:960px) {
  .logo{
    width: 200px;
    height: 90px;
  }
  .logo img{
    width: 90px;
    height: auto;
    margin: 5% 0 0 10%;
  }
}
.header-area{
  display: flex;
  justify-content: space-between;
}
.hamburger{
  width: 150px;
  height: 150px;
  position: fixed;
  top:-1%;
  right:-1%;
  z-index:999;
  background-image:url("./img/menu_bg.webp");
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  text-align: center;
  z-index: 998;
}
.hamburger span{
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #15478C;
  transition: 0.5s;/* 追記 */
}
@media screen and (max-width:960px) {
  .hamburger{
    width: 120px;
    height: 120px;
}
}
.hamburger span:first-of-type{/* ハンバーガーメニューの1番目の線 */
  top: 20%;
}
.hamburger span:nth-of-type(2){/* ハンバーガーメニューの2番目の線 */
  top: 27%;
}
.hamburger span:last-of-type{/* ハンバーガーメニューの3番目の線 */
  top: 34%;
}
.slide-menu{
  background-image: url("./img/menu_content_bg.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position:top center;
  position: fixed;
  top:0;
  width: 100%;
  height: 20vh;
  left: 0;
  display: flex;
  padding: 1% 20% 0;
  transform: translateY(-100%);
  transition: 0.5s;/* 追記 */
  justify-content: space-around;
  z-index: 997;
}
.slide-menu li{
  color: #fff;
  line-height: 400%;
  font-size: 21px;
  color: #15478C;
}

/* ここから下を追記 */
.hamburger.active span:first-of-type{/* ハンバーガーメニューの1番目の線 */
  top: 30%;
  transform: rotate(45deg);
}
.hamburger.active span:nth-of-type(2){/* ハンバーガーメニューの2番目の線 */
  opacity: 0;/* 透明にする */
}
.hamburger.active span:last-of-type{/* ハンバーガーメニューの3番目の線 */
  top: 31%;
  transform: rotate(-45deg);
}
.slide-menu.active{
  transform: translateY(0); 
}
@media screen and (max-width:960px) {
  .slide-menu{
    display: block;
      background-image:none;
      background-color:rgb(255, 255, 255 ,0.8);
      width: 100%;
      height: 100%;
      background-size: contain;
      padding: 20% 10% 0 10%;
      text-align: center;
      opacity: 0;
  }
  .slide-menu.active{
    transform: translate(0%,0); 
    opacity: 1;
  }
  .slide-menu li a{
    font-size: 1.5rem;
  }
}
/* ローディング */
#splash {
  /*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background:#3DB2FF;
    text-align:center;
    color:#fff;
  }
  
  /* Loading画像中央配置　*/
  #splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  /* Loading アイコンの大きさ設定　*/
  #splash_logo img {
    width:260px;
  }
  
  /* fadeUpをするアイコンの動き */
  .fadeUp{
  animation-name: fadeUpAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity: 0;
  }
  
  @keyframes fadeUpAnime{
    from {
      opacity: 0;
    transform: translateY(100px);
    }
  
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }
.mainv{
  height: 100vh;
  width: 3105px;
  position: relative;
}
.mainv figure{
  position: absolute;
}
.mainv h1{
  top: 35%;
  left: 5%;
  position: absolute;
  font-size: 70px;
  color: #fff;
  opacity: 0;
  animation-name: fadeTTL;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes fadeTTL {
  0% {
    opacity: 0;
    transform:translateX(10%);
  }
  100% {
  opacity: 1;
  transform:translateX(0%);
  }
}

.mainv h1 p{
  font-size: 40px;
  line-height: 70%;
  font-family: 'Dosis', sans-serif;
font-weight: 600;
}
@media screen and (max-width:960px) {
  .mainv{
    height: 798px;
    width: 100vw;
    position: relative;
  }
  .mainv h1{
    display: block;
    width:330px;
    font-size: 35px;
    top: 20%;
    left:10%;
  }
  .mainv h1 p{
    font-size: 20px;
  }
}

.human{
  right: 58%;
  bottom: 0;
  height: 70%;
  z-index: 6;
}
.human img{
  height: 100%;
}
.human::before{
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  width:20%;
  height: 20vh;
  position: absolute;
  opacity: 0;
  background-image: url('./img/heart.svg');
  top:0;
  left: 5%;
  animation: heart 2s infinite ease-out;
}
.human::after{
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  width:20%;
  height:20vh;
  position: absolute;
  opacity: 0;
  background-image: url('./img/heart02.svg');
  top:-10%;
  right: -13%;
  animation: heart 1.5s infinite ease-out;
}
@keyframes heart {
  0% {
    transform: translateY(60%) scale(1);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    transform: translateY(0%) scale(1.4);
    opacity: 0;
  }
}
.gren{
  bottom:0;
  left: 0;
  height: 40%;
  z-index: 3;
}
.ylw{
  right:47%;
  z-index: 5;
  height: 100%;
}
.cloud01{
 left:20%;
  bottom: 0;
  height: 80%;
  z-index: 4;
}
.cloud02{
  left:18%;
  bottom: 0;
  z-index: 2;
  height: 82%;
}
@media screen and (max-width:960px) {
  .human{
    right: 10%;
    top: 40%;
    bottom:auto;
    width:50%;
    height: auto;
    z-index: 6;
  }
  .gren{
    top:37%;
    bottom:auto;
    left: 0;
    height: 193px;
    z-index: 3;
  }
  .ylw{
    right:-93%;
    z-index: 5;
    width:150%;
  }
  .cloud03{
    left:0%;
     bottom:auto;
     top: 50%;
     height: auto;
     width: 100%;
     z-index:4;
  }
  .cloud04{
    left: -10%;
    bottom:auto;
    top: 53%;
    width: 120%;
    z-index:7;
  }
}
.index_list{
  display: flex;
  color: #fff;
  height: 100vh;
  width: 650px;
  width: auto;
  position: relative;
  align-items: center;
  margin-left: 600px;
}
.index_list h3{
  font-size: 50px;
  margin-right: 100px;
  width: 157px;
}
.index_list ul li a{
  display: flex;
  font-size: 40px;
  align-items: center; 
  width: 250px;
  font-family: 'Dosis', sans-serif;
  font-weight: 600;
  position: relative;
}
.index_list ul li a svg{
  display: none;
}
.index_list ul li img{
  height: 50px;
  position: absolute;
  right: 0;
  transition: all 0.5s;
}
.index_list ul li a:hover{
  text-decoration: underline 3px #fff;
  transition: alsl 0.5s;
  width: 250px;
}
.index_list ul li a:hover svg{
  display: block;
}
.index_list ul li a:hover img{
  right: -20%;
}
@media screen and (max-width:960px) {
  .index_list{
    display:block;
    color: #fff;
    height: auto;
    width: 100px;
    align-items: center;
    margin:70px auto 0;
  }
  .index_list h3{
    font-size: 25px;
    margin: 0 auto 30px;
    width: 100px;
  }
  .index_list ul li a{
    display: inline-flex;
    font-size: 18px;
    align-items: center; 
    width: 100px;
    font-family: 'Dosis', sans-serif;
    font-weight: 600;
    position: relative;
  }
  .index_list ul li img{
    height:20px;
    width: auto;
  }
  .index_list ul li a:hover svg{
    display:none;
  }
}
h2{
  height: 100vh;
align-items: center;
display: flex;
font-size: 100px;
font-family: 'Dosis', sans-serif;
font-weight: 700;
}
h2 img{
  height: 100%;
  max-width: none;
}
.fadeIn{
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 3s;
  animation-fill-mode: forwards;
}
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform:translateX(0%);
    }
    100% {
    opacity: 1;
    transform:translateX(0%)
    }
}
@media screen and (max-width:960px) {
  h2{
    height:auto;
    font-size: 40px;
  }
  h2 img{
    width: 100%;
    height: auto;
  }
}

#about{
  margin-left: 600px;
}
.cncpt_ttl{
  color: #fff;
  height: 100vh;
  width: 962px;
  font-size: 40px;
  margin-left: 200px;
  display: inline-flex;
  flex-direction:column;
  justify-content: center;
}

.cncpt_ttl h3{
  display: inline;
  width: 729px;
  font-size: 50px;
  padding-left: 3%;
  margin-bottom: 8vh;
}
.bg_slide{
  animation-name: bg_slide;
  animation-duration: 4s;
  animation-fill-mode: forwards;
}
@keyframes bg_slide {
  0% {
  opacity: 0;
  background-image: url("./img/h3_ylwLine.webp");
  background-position: bottom 25px left -700%;
  background-repeat: no-repeat;
  background-size: 85%;
  }
  50%{
    opacity: 1;
    background-position: bottom 25px left -700%;
  }
  100% {
    background-image: url("./img/h3_ylwLine.webp");
    background-position: bottom 25px left 0%;
    background-repeat: no-repeat;
    background-size: 85%;
  }
}
@media screen and (max-width:960px) {
  #about{
    margin-left: 0px;
  }
  .cncpt_ttl{
    color: #fff;
    height: auto;
    width: 310px;
    font-size: 20px;
    margin: 0 auto;
    display: block;
    flex-direction:column;
    justify-content: center;
  }
  .cncpt_ttl h3{
    width: auto;
  font-size: 25px;
  padding-left: 0%;
  margin-bottom: 0;
  }
  .bg_slide{
    animation-name: bg_slide;
    animation: none;
		transform: none;
		transition: unset;
    background-image: url("./img/h3_ylwLine.webp");
    background-position: bottom 0% left 0%;
    background-size: 95%;
    background-repeat: no-repeat;
  }
}
.about_wrp{
  width: 2400px;
  height: 100vh;
  margin-left: 400px;
  position: relative;
  background-image: url("./img/about_bg01.webp");
  background-size:contain;
  background-position: bottom;
  background-repeat: no-repeat;
}
.about_wrp figure{
  position: absolute;
}
#about_img01{
  width: 639.338px;
  height: 493.077px;
  top:5%;
  left: 0;
  z-index:4;
}
#about_img02{
  z-index:4;
  left:30%;
  bottom: 0%;
  width: 551.218px;
height: 500px;
}
#about_bg02{
  bottom:0;
  height: 70%;
  z-index:3;
}
#about_txt{
  position: absolute;
  top:2%;
  right:0;
  z-index: 6;
  background-image: url("./img/about_txtBg.webp");
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  width:1210px;
  height: 583px;
  display: flex;
  align-items: center;
}
#about_txt p{
  width: 80%;
  margin: 0 auto;
  height: auto;
  color: #15478C;
  text-align: justify;
  font-family: 'Zen Maru Gothic', serif;
  font-size: 30px;
  line-height: 160%;
  padding-bottom: 2%;
}
@media screen and (max-width:960px) {
  .about_wrp{
    width: 100%;
    height:auto;
    padding: 100px 0;
  margin-left: 0px;
  background-image: url("./img/about_bg_sp.webp");
  background-size:auto 100%;
  background-position: center;
  }
  #about_img01{
    width: 90%;
    height: auto;
    margin-top: 150px;
  }
  #about_img02{
    width: 90%;
    height: auto;
    left:10%;
    padding-top:30px;
  }
  .about_wrp figure{
    position: relative;
  }
  #about_txt{
    width: 100%;
    height: 74.32vw;
    background-image: url("./img/service_txtBg01.webp");
    background-size:120% auto;
    padding: 80px 5%;
    position: relative;
    margin-top: 30px;
  }
  #about_txt p{
    font-size: 15px;
  }
}
#service{
  margin-left: 600px;
}
.service_wrap{
  display: flex;
}
.service_wrap h3{
  z-index:5;
  height: 100vh;
}
.service_wrap:nth-of-type(1) {
  margin-left: -15%;
  height: 100%;
  position: relative;
  width: 2963px;
}
.service_wrap:nth-of-type(1) h3 img{
  object-fit: contain;
  max-width: none;
}
.service_wrap:nth-of-type(1) figure{
  position: absolute;
  left: 50%;
  bottom:-5%;
  height: 80vh;
  z-index: 6;
}
.service_txt{
  display: flex;
  align-items: center;
}
.service_txt p{
  height: auto;
  color: #15478C;
  text-align: justify;
  font-family: 'Zen Maru Gothic', serif;
  font-size: 30px;
  line-height: 160%;
}
#txt01{
width: 780px;
height: 484.1px;
background-image: url("./img/service_txtBg01.webp");
background-position:center;
background-size: contain;
background-repeat: no-repeat;
position: absolute;
height: 60vh;
left: 60%;
top:5%;
z-index: 7;
}
#txt01 p{
  width: 70%;
  margin: 0 7% 0 23%;
}
.service_wrap:nth-of-type(2) {
  background-image: url("./img/service_cloudBg.webp");
  background-position:left bottom;
  background-size:contain;
  background-repeat: no-repeat;
  z-index: 4;
  height: 100%;
  width: 2717.756px;
  position: relative;
  margin-left: 500px;
}
.service_wrap:nth-of-type(2) h3{
  position: absolute;
  left:0%;
}
.service_wrap:nth-of-type(2) h3 img{
  object-fit: contain;
  width: 1154.028px;
  height: 851.447px;
}
.service_wrap:nth-of-type(2) figure{
  width: 947px;
  height: 768px;
  z-index: 5;
  position: absolute;
  left: 30%;
}
.service_wrap:nth-of-type(2) figure img{
  width: 100%;
}
#txt02{
width: 928.198px;
height: 576px;
  background-image: url("./img/service_txtBg01.webp");
  background-position:center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 7;
  position: absolute;
  top: 3%;
  right: 0%;
}
#txt02 p{
  width: 70%;
  margin: 0 auto;
}
.service_wrap .gren{
  z-index: 3;
  height: 100%;
  position: absolute;
  left: 40%;
}
@media screen and (max-width:960px) {
  #service{
    margin-left:0px;
  }
  .service_wrap{
    display: block;
  }
  .service_wrap h3{
    height:360px;
  }
  .service_wrap:nth-of-type(1),.service_wrap:nth-of-type(2){
    width: 100%;
    margin:0 auto;
    height: auto;
  }
  .service_wrap:nth-of-type(1) h3{
    margin-top: -53%;
  }
  .service_wrap:nth-of-type(2) h3{
    position: relative;
  }
  .service_wrap:nth-of-type(2) h3 img{  
    width: 100%;
    height: auto;
  }
  .service_wrap:nth-of-type(1) figure{
    position: relative;
    left: 0%;
    bottom:0%;
    margin-top: 10vh;
    height:auto;
  }
  .service_wrap:nth-of-type(2) {
    background-image: none;
  }
  .service_wrap:nth-of-type(2) figure{
    position: relative;
    left: 0%;
    bottom:0%;
    width:90%;
    height: auto;
    margin-top:-10vh;
  }
  .service_txt p{
    font-size: 15px;
  }
  #txt01{
    width: 100%;
    left: 0%;
    height: 63vw;
    margin-top: -30%;
    position: relative;
  }
  #txt02{
    width:100%;
    height: 73vw;
    position: relative;
    margin-top: -30%;
}
}
#company{
width: 2133px;
}
#company h2{
  color: #fff;
  margin-right: 635px;
}
.company_wrap{
  background-color: #fff;
  height:100vh;
  width: 1100px;
  display: flex;
  align-items: center;
  color: #15478C;
  font-family: 'Zen Maru Gothic', serif;
  font-size: 30px;
  position: relative;
}
.company_wrap::before{
  content: url("./img/company_bg01.webp");
  vertical-align: middle;
  position: absolute;
  display: inline-block;
  height: 100vh;
  left: -50%;
  z-index: -1;
} 
.company_wrap::after{
  content: url("./img/company_bg02.webp");
  vertical-align: middle;
  position: absolute;
  display: inline-block;
  height: 100vh;
  right: -30%;
  z-index: -1;
}
.company_wrap table{
  width: 100%;
  border: none;
  margin: 0;
  height: 55vh;
}
.company_wrap table td{
  line-height: 210%;
  margin-bottom: 10vh;
}
.company_wrap table .item{
  width: 15%;
  text-align: right;
}
.company_wrap table .info{
  width: 85%;
  text-align: left;
  padding-left: 5%;
}
@media screen and (max-width:960px) {
  #company{
    width: 100%;
    margin-top: 400px;
    }
    #company h2{
      color: #fff;
      display: block;
      width: 100%;
      text-align: center;
    }
  .company_wrap{
    width: 100%;
    height: 700px;
    padding: 10% 0;
    font-size: 16px;
    background-image: url("./img/about_txtBg.webp");
    background-color:transparent;
    background-size: auto 100%;
    background-position: center;
  }
  .company_wrap::before{
    content: none;
  } 
  .company_wrap::after{
    content: none;
  }
  .company_wrap table td{
    margin-bottom: 20px;
  }
  .company_wrap table{
    width: 80%;
    margin: 0 auto;
  }
  .company_wrap table .item{
    width: 25%;
  }
  .company_wrap table .info{
    width: 70%;
  }
}
#contact{
  position: relative;
  margin-left: 1000px;
}
 #contact::before{
  content: url("./img/contact_bg.webp");
  vertical-align: middle;
  position: absolute;
  display: inline-block;
  height: 100vh;
  left: -30%;
  z-index: -1;
} 
.contact_inr{
  background: #D8EDF9;
  width: 1627px;
  display: flex;
}
#contact h2{
  color: #15478C;
}
#form{
  margin-left:100px;
  display: flex;
  align-items: center;
}
.c-form {
	width:883px;
}
.c-form__item {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-evenly;
	margin-bottom:3%;
}
.c-form__input {
	padding: 10px 2%;
}
#c-term{
  appearance: auto;
}
.c-form__label {
	width: 30%;
  color: #15478C;
  font-size: 20px;
  text-align: left;
}
.c-form__input {
	width: 70%;
  height:10%;
	font-size: 16px;
	border-radius:20px;
  background-color:#fff;
  caret-color:#15478C;
}
.c-form__required {
	color: #fff;
	background-color: #15478C;
	border-radius: 4px;
	padding: 5px 5px;
	margin: 0;
}
textarea.c-form__input {
	height: 25%;
} 
.c-form__submit {
	text-align: left;
  margin-left: 30%;
  margin-top:5%;
}
.c-form__submit button {
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	background-color: #15478C;
	border-radius: 20px;
	padding: 5px 20px;
	transition: 0.4s;
	cursor: pointer;
}
.c-form__submit button:hover {
	color:#15478C;
	background-color: #b6d4ff;
}

@media screen and (max-width:960px) {
  #contact{
    margin:400px 0px 0;
    width: 100vw;
  }
  #contact h2{
    display: block;
    width: 100%;
    text-align: center;
  }
  #contact::before{
    content: url("./img/service_cloudBg.webp");
    vertical-align: middle;
    position: absolute;
    display: inline-block;
    width:100%;
    height: auto;
    top: -40%;
    left: auto;
    right: 240%;
    margin: 0 auto;
    z-index: -1;
  }
  .contact_inr{
    background: #D8EDF9;
    width:100%;
    display: block;
  }
  #form{
    margin: 0 auto;
  }
  .c-form{
    width: 80%;
    padding: 50px 0;
    margin: 0 auto;
  }
  .c-form__item {
    display: inline-block;
    flex-wrap: wrap;
    width: 100%;
  }
  .c-form__input{
    width: 100%;
  }
  .c-form__submit {
    margin: 30px auto;
    text-align: center;
  }
}


#footer{
  position: relative;
}
.footer_inr{
  display:block;
  height: 100vh;
  width: 80vw;
  color: #fff;
  font-size: 30px;
  font-family: 'Dosis', sans-serif;
  box-shadow: -3px 0px 15px 0px rgba(0, 0, 0, 0.20);
  background-color: #7E7E7E;
}
.footer_wrp{
  display: flex;
  flex-direction: row;
  padding:5% 10%;
  align-items: center;
  height: 80vh;
}
.footer_wrp figure{
  width: 75%;
}
.footer_wrp figure img{
  width: 70%;
}
.footer_wrp a{
  display: flex;
  align-items: center;
  border-left: #fff solid 1px;
  padding: 0 0 0 5%;
  width: 25%;
  height: 100%;
}
.footer_wrp a p{
  padding-left:20px;
  width: 200px;
  white-space: nowrap;
}

.footer_menu{
  display: flex;
  gap:10%;
  align-items: center;
  padding:0 10%;
}
@media screen and (max-width:960px) {
  .footer_inr{
    height: 250px;
    width: 100%;
  }
  .footer_wrp{
    flex-direction: column-reverse;
    height: 250px;
  }
  .footer_wrp a{
    display: block;
    height: 90px;
    width: 100%;
    text-align: center;
    font-size: 16px;
    border-left:none;
    border-bottom: #fff solid 1px;
    padding: 0;
  }
  .footer_wrp a p{
    width: 100%;
    padding-left: 0;
  }
  .footer_wrp a svg{
    transform: scale(0.6) rotate(90deg);
  }
  .footer_menu{
    display: none;
  }
  .footer_wrp figure{
    width: 40%;
    padding: 10px 0;
    margin: 0 auto;
  }
  .footer_wrp figure img{
    width: 100%;
  }
}