@charset "utf-8";

/* リセットCSS */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  font-family: "FOT-筑紫A丸ゴシック Std M";
  scroll-behavior: smooth;
}

#about1{
  scroll-margin-top: 100px;
}

body {
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

ul, ol {
  list-style: none;
}

ul, ol{
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
}

input, textarea, select {
  font: inherit;
}


:root {
  --z-bg: 0;
  --z-service: 10;
  --z-concept: 20;
  --z-amoeba: 30;
  --z-ham: 40;
}







/* header */
.sidebar{
  position: fixed;
  left: 0;
  height: 100%;
  width: 13.2%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: var(--z-amoeba);
  border-right: 1px solid transparent;
  transition: border-right 0.8s ease;
}

.sidebar.show{
  position: fixed;
  right: 0;
  border-right: 1px rgba(39, 31, 31, 0.079) solid;
}


.sidebar-text{
  display: none;
}

.sidebar-icon{
  width: 81%;
  height: auto;
  margin-bottom: auto;
  margin-top: 25px;
}

.sidebar-contact{
  display: none;
}

.sidebar-hidden{
  display: none;
}

.sidebar ul{
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-bottom: 130px;
  margin-left: 7px;
}

.sidebar ul li{
  line-height: 1.2rem;
  letter-spacing: .08rem;
}

.sidebar ul li:nth-child(2),
.sidebar ul li:nth-child(3){
  margin-bottom: 20px;
}

.sidebar ul li{
  font-size: 1rem;
}

.sidebar-sub{
  font-size: 12px;
}

.sidebar ul li:nth-child(1) .sidebar-sub{
  color: #f4d635;
}

.sidebar ul li:nth-child(2) .sidebar-sub{
  color: #f7995f;
}

.sidebar ul li:nth-child(3) .sidebar-sub{
  color: #87c15b;
}

.sidebar ul li:nth-child(4) .sidebar-sub{
  color: #5bb5dd;
}

.ham-menu{
  position: fixed;
  top: 10px;
  right: 10px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 50px;
  height: 50px;
  border-radius: 9999px;
  background-color: #fff;
  z-index: var(--z-ham);
}

.ham-menu span{
  display: block;
  width: 24px;
  height: 2px;
  background-color: #333;
  transition: 0.5s;
}

.ham-menu.active span:nth-child(1){
  transform: translateY(8px) rotate(135deg);
  background-color: #fff;
}

.ham-menu.active span:nth-child(2){
  opacity: 0;
  background-color: #fff;
}

.ham-menu.active span:nth-child(3){
  transform: translateY(-8px) rotate(-135deg);
  background-color: #fff;
}

.ham-menu.active{
  background-color: #6ec1ff;
  transition: 1s;
}


#scrolltopbtn{
  position: fixed;
  bottom: 50px;
  pointer-events: none;
  transition: opacity 0.3s;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #6ec1ff;
  opacity: 0;
}

#scrolltopbtn p{
  margin-top: 50px;
}

#scrolltopbtn.show {
  opacity: 1;
  pointer-events: auto;
}

.arrow-up{
  position: fixed;
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 1.5px;
  height: 20px;
  background: currentColor;
}

.arrow-up::before{
  content: "";
  width: .65rem;
  height: .65rem;
  border: 1.5px solid currentColor;
  transform: rotate(-45deg);
  border-left: none;
  border-bottom: none;
  transform-origin: top right;
  position: absolute;
  right: 50%;
  top: -.05rem;
  box-sizing: border-box;
}



@media(max-width:768px){
  .sidebar{
    position: fixed;
    left: auto;
    right: 0;
    display: flex;
    flex-direction: column-reverse;
    width: 70%;
    margin: 0;
    background-color: #fff;
    border-top-left-radius: 100px;
    transform: translateX(100%);
    transition: all .5s ease-out;
  }

  .sidebar.active{
    transform: translateX(0);
  }

  .ham-menu::after{
    content: "";
    position: fixed;
    width: 150px;
    height: 150px;
    display: flex;
    background-image: url(img/アセット鳥.svg);
    background-repeat: no-repeat;
    background-position: center;
    right: 20px;
    top: 200px;
    transform: translateX(100%);
    transition: all .5s;
  }

  .ham-menu.active::after{
    transform: translateX(0);
  }

  .sidebar-text{
    display: block;
    font-size: .7rem;
    font-weight: bold;
  }

  .sidebar a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    }

  .sidebar a:nth-child(2){
    align-items: center;
  }


  .sidebar a:nth-child(2):before{
    content: "";
    border-top: 1px #5bb5dd dotted;
    width: 80%;
    margin-bottom: 30px;
  }

  .sidebar-text p:nth-child(2){
    margin-bottom: 10px;
  }

  .sidebar-text p:nth-child(5){
    margin-bottom: 10px;
  }

  .sidebar-icon{
    width: 100%;
    margin-top: 40px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
  }

  .sidebar-icon img{
    width: 40%;
  }

  .sidebar-hidden{
    display: block;
  }

  .sidebar-contact{
    width: 80%;
    border-radius: 9999px;
    text-align: center;
    color: #fff;
    font-size: .75rem;
    padding: 5px 0;
    background-color: #5bb5dd;
    position: relative;
    margin-top: 30px;
  }

  .sidebar-contact::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -20px;
    border-bottom: 2px dotted #fff;
    width: 100%;
    margin-top: 50px;
  }

  .sidebar ul li:nth-child(1),
  .sidebar ul li:nth-child(2),
  .sidebar ul li:nth-child(3),
  .sidebar ul li:nth-child(4){
    margin-bottom: 13px;
  }

  .sidebar ul{
    width: 80%;
    margin-left: 0;
    margin-bottom: 0;
    margin-top: 80px;
  }

  .sidebar ul li{
    font-size: .7rem;
    line-height: 1.3rem;
    letter-spacing: .2rem;
  }

  .sidebar-sub{
    font-size: .6rem;
  }

  .ham-menu{
    display: flex;
  }

  #scrolltopbtn{
    display: none;
  }

}



  /* main */
main{
  position: absolute;
  right: 0;
  width: 86.8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

main.active::before{
    content: "";
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: var(--z-concept);
}

@media(max-width:768px){
  main{
    width: 100%;
  }
}






  

  /* amoeba */
.amoeba {
    position: fixed;
    bottom: 35px;
    right: 48px;
    width: 110px;
    height: 110px;
    animation: blob 5s infinite ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
  }
  
  .amoeba svg{
    position: absolute;
  }
  
  .amoeba p{
    position: absolute;
    display: flex;
    z-index: 10;
  }
  
  .contact-button-text{
    display: none;
  }
  
  
  
  @media(max-width:768px){
    .amoeba{
      display: none;
    }
  
    .contact-button-text{
      color: #fff;
      font-size: 1.3rem;
      display: none;
    }
  }






 /* 動きのない三角*/

.triangle1{
  position: fixed;
  top: 10vh;
  right: 12vw;
  width: 13vmin;
  aspect-ratio: 1/1;
  background-image: url(img/アセット三角.svg);
  background-repeat: no-repeat;
  background-position: center;
  z-index: var(--z-service);
}

@media(max-width:768px){
  .triangle1{
    top: 130px;
    right: 80px;  
    display: block;
  }
}

/* 動きのない四角 */
.square1{
  position: fixed;
  top: 30vh;
  right: 6vw;
  width: 13vmin;
  aspect-ratio: 1/1;
  background-image: url(img/アセット四角.svg);
  transform: rotate(13deg);
  z-index: var(--z-service);
}

@media(max-width:768px){
  .square1{
    top: 350px;
    right: 50px;
    display: block;
  }
}

/* 動きのない円形 */
.circle1{
  position: fixed;
  top: 50vh;
  right: 10vw;
  width: 14.3vmin;
  aspect-ratio: 1/1;
  background-image: url(img/アセット円形.svg);
  background-size: contain;
  background-position: center;
  z-index: var(--z-service);
}

@media(max-width:768px){
  .circle1{
    top: 230px;
    right: 10px;
    display: block;
  }
}

/* bird */
.bird{
  position: fixed;
  top: 200px;
  left: 200px;
  width: 30vmin;
  aspect-ratio: 1/1;
  background-image: url(img/アセット鳥.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: var(--z-service);
}

@media(max-width:768px){
  .bird{
    top: 150px;
    left: -60px;
    width: 35vmin;
  }
}







  /* about */
  .about{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #fef0e7;
  }

  .about-title{
    width: 65%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    margin-top: 110px;
    margin-bottom: 50px;
  }

  .about-title-item{
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  .about-title-item h1{
    line-height: 15px;
    font-size: 2.3rem;
    letter-spacing: .53rem;
  }

  @media(max-width:1300px){
    .about-title-item h1{
      font-size: 1.8rem;
      letter-spacing: .2rem;
    }
  }

  @media (max-width: 1100px){

    .about-title{
      width: 70%;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
  
    .about-title-item{
      width: 100%; /* 1行を占有 */
      text-align: center;
      align-items: center;
      margin-bottom: 10px;
    }
  
    .service-title1,
    .service-title2{
      width: calc(50% - 10px);
      flex: 1;
      min-width: 250px;
    }
  
  }



  .service-title1,
  .service-title2{
    height: 62px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 9999px;
    font-size: 10.5px;
    letter-spacing: .05rem;
    color: #fff;
    padding: 0 35px;
    line-height: 22px;
  }

  .service-title1{
    background-color: #87c15b;
  }

  .service-title2{
    background-color: #f7995f;
  }

  .about-title p{
    color: #f7995f;
  }

  .container-message{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin: 100px 0;
    z-index: var(--z-concept);
  }

  .container-message h2{
    margin-top: 40px;
    position: relative;
    color: #fff;
    letter-spacing: 8px;
    font-size: 1.6rem;
    z-index: 1;
  }

  .container-message .container-message-next span{
    font-size: 1.2rem;
  }

  @media(max-width:1300px){
    .service-title1 h2,
    .service-title2 h2{
      font-size: 0.8rem;
      letter-spacing: 0px;
    }
  }
  
  .container-message h2::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 300px;
    background: url("img/servicetitle2.png") center/contain no-repeat;
    z-index: -1;
  }

  .container-message-next::after{
    background: url("img/servicetitle1.png") center/contain no-repeat !important;
  }

  @media(max-width:768px){
    .container-message h2{
      margin-top: -20px;
    }

    .container-message h2::after{
      width: 70vw;
    }
  }

  .container-message p{
    margin-top: 90px;
    color: #87c15b;
    line-height: 35px;
    font-size: .9rem;
    letter-spacing: 3px;
  }

  .about-container-h4{
    font-size: 1.35rem;
    transform: translateY(-20px);
  }

  .about-container{
    width: 70%;
    background-color: #ffffff;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
  }

  @media(max-width:768px){
    .about-container,
    .about-title,
    .container-message{
      width: 80%;
    }

    .container-message p br{
      display: none;
    }

    .container-message-next{
      margin-top: 0px;
      position: relative;
      color: #fff;
      letter-spacing: 2px;
      font-size: 1rem;
      display: flex;
      flex-direction: column;
      z-index: 1;
    }

    .container-message-next span{
      font-size: .8rem;
    }
  
  }




  /* .policy */

  .policy{
    width: 80%;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    z-index: var(--z-concept);
  }
  
  @media(max-width:768px){
    .policy{
      width: 80%;
      margin: 1rem auto;
    }

    .about-container h2,
    .about-container p{
      max-width: 100%;
    }

    .about-container h2{
      font-size: 1.3rem;
      line-height: 1rem;
    }

    .about-container h2 br{
      display: none;
    }

    .about-container p{
        font-size: .9rem;
        line-height: 2rem;
    }

    .about-container .container-message .container-message-next{
      font-size: 1rem;
      letter-spacing: 0px;
    }

    .about-container .container-message .container-message-next span{
      font-size: .8rem;
      margin-top: 5px;
    }
  }

 
  
  .policy-container-high,
  .policy-container-middle,
  .policy-container-low{
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 2.3rem;
    transform: translateY(-35px);
  }
  
  .policy-container-high div,
  .policy-container-middle .policy-container-list-hidden{
    flex: 1;
    max-width: 200px;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    line-height: 2rem;
    letter-spacing: 3px;
  }

  @media(max-width:768px){
    .policy-container-high div,
    .policy-container-middle .policy-container-list-hidden{
      line-height: 1.3rem;
    }

    .policy-container-high div:nth-child(1){
      padding-top: 25px;
    }
  }

  .policy-container-middle .policy-container-list-hidden{
    color: #323232;
  }

  .policy-container-high div:nth-child(1){
    background-image: url(img/service三角.svg);
    background-position: center;
    background-repeat: no-repeat;
  }

  .policy-container-high div:nth-child(2){
    background-image: url(img/service円形.svg);
    background-position: center;
    background-repeat: no-repeat;
    color: #323232;
  }

  .policy-container-high div:nth-child(3){
    background-image: url(img/service四角形.svg);
    background-position: center;
    background-repeat: no-repeat;
  }

  .policy-container-middle{
    background-image: url(img/service円形.svg);
    background-position: center;
    background-repeat: no-repeat;
    display: none;
  }

  .policy-container-high div:nth-child(1),
  .policy-container-high div:nth-child(3){
    transform: translateY(-80px);
  }

  @media(max-width:1300px){
    .policy-container-high div,
    .policy-container-list-hidden{
      font-size: .7rem;
    }

    .policy-container-high div:nth-child(2){
      display: none;
    }

    .policy-container-middle{
      display: block;
    }

    .policy-container-list-hidden{
      color: #323232;
    }

    .policy{
      font-size: 3vw;
      gap: 3rem;
    }

    .policy-container-high div,
    .policy-container-middle,
    .policy-container-low div{
      max-width: 150px;
    }

    .policy-container-high,
    .policy-container-middle,
    .policy-container-low{
      gap: 5rem;
    }

    .policy-container-high div:nth-child(1),
    .policy-container-high div:nth-child(3){
      transform: translateY(0);
    }

  }

  @media(max-width:768px){
    .about-container-h4{
      margin-bottom: 30px;
    }
    .policy-container-high,
    .policy-container-middle,
    .policy-container-low{
      gap: 1rem;
    }

    .policy{
      gap: 1rem;
    }

  }


  /* support */
  .support{
    width: 64%;
    border-radius: 30px;
    background-color: #dbecce;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .support-next{
    background-color: #fde0cf;
  }

  @media(max-width:1300px){
    .support{
      width: 80%;
    }
  }
  
  .support-title h3{
    font-size: 1.2rem;
   letter-spacing: 5px;
  }

  .support-title ul{
    margin-top: 35px;
    text-align: left;
  }

  .support-title ul li{
    position: relative;
    font-size: 1rem;
    letter-spacing: 4px;
    margin-top: 20px;
  }

  .support-title ul li{
    font-size: .8rem;
  }

  .support-title ul li::before{
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #87c15b;
    border-radius: 9999px;
  }



/*stream*/
.stream{
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 100px;
  margin-bottom: 100px;
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

.stream-flow,
.stream-question{
  flex: 1;
  text-align: left;
}

.stream-flow h3,
.stream-question h3{
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .4rem;
}

.stream-flow ul li{
  font-size: 1.1rem;
  line-height: 70px;
}

.stream-border{
  width: 1px;
  align-self: stretch;
  border-left: 2px dashed #ccc;
}

.stream-item{
  display: flex;
  width: 100%;
}

.question-item h4{
  font-size: 1.2rem;
  margin: 30px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.question-item h4::before{
  content: "";
  display: flex;
  width: 10px;
  height: 10px;
  background-color: #87c15b;
  border-radius: 9999px;
}

.question-item p{
  display: inline-block;
  text-align: left;
  font-size: 1.3rem;
  max-width: 100%;
  margin-top: 0;
}

@media(max-width:1300px){
  .stream{
    display: flex;
    flex-direction: column;
  }

  .stream-flow{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .stream-flow ul li,
  .question-item p{
    font-size: 1rem;
  }

  .question-item p{
    margin-left: 20px;
  }
}




/* 円形のカウント */

/* .stream-flow ul {
  list-style: none;
  padding: 0;
  counter-reset: step;
}

.stream-flow ul li {
  position: relative;
  padding-left: 60px;
  line-height: 70px;
  counter-increment: step;
}

.stream-flow ul li::before {
  content: counter(step, decimal-leading-zero);

  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 25px;
  height: 25px;
  border-radius: 50%;

  background-color: #87c15b;
  color: #fff;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 0.5rem;
  font-weight: bold;
}

.stream-flow ul li::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 55px;
  width: 85%;
  border-bottom: .6px solid #87c15b;
}

.stream-div{
  display: flex;
  position: relative;
  justify-content: left;
  align-items: left;
  width: 15px;
  height: 15px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(img/下矢印.svg);
  transform: translateX(-10px);
}

.stream-flow ul li:nth-child(2):before,
.stream-flow ul li:nth-child(2):after,
.stream-flow ul li:nth-child(4):before,
.stream-flow ul li:nth-child(4):after,
.stream-flow ul li:nth-child(6):before,
.stream-flow ul li:nth-child(6):after,
.stream-flow ul li:nth-child(8):before,
.stream-flow ul li:nth-child(8):after,
.stream-flow ul li:nth-child(9):after{
  content: none;
} */

.stream-flow ul{
  list-style: none;
  padding: 0;
  counter-reset: step;
}

.stream-flow ul li:not(.stream-div){
  position: relative;
  padding-left: 60px;
  line-height: 70px;
  counter-increment: step;
}

.stream-flow ul li:not(.stream-div)::before{
  content: counter(step, decimal-leading-zero);

  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 25px;
  height: 25px;
  border-radius: 50%;

  background-color: #87c15b;
  color: #fff;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 0.5rem;
  font-weight: bold;
}

.stream-flow ul li:not(.stream-div)::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 55px;
  width: 85%;
  border-bottom: .6px solid #87c15b;
}

/* 最後の工程の下線だけ消す */
.stream-flow ul li:last-child::after{
  content: none;
}

.stream-div{
  width: 15px;
  height: 15px;
  margin-left: 5px;
  background: url("img/下矢印.svg") center/contain no-repeat;
}







  /* from */
  .from{
    display: flex;
    width: 75%;
    text-align: left;
    padding: 2rem;
    margin-top: 50px;
    font-size: 1.3rem;
  }
  
  .from p{
    width: 100%;
    white-space: nowrap;
  }

  @media(max-width:1350px){
    .from p{
      text-align: left;
      white-space: normal;
    }
  }

  @media(max-width:768px){
    .from{
      width: 100%;
    }
    .from p{
      font-size: .9rem;
    }
  }



  /* info */
  .info{
    position: relative;
    display: flex;
    width: 75%;
    text-align: left;
    padding: 2rem;
  }

  @media(max-width:1450px){
    .info{
      display: flex;
      flex-direction: column;
      width: 90%;
    }
  }

  .info-img{
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    padding: 10px;
    z-index: var(--z-amoeba);
    background-color: #fff;
  }

  .info-img img{
    position: relative;
    border-radius: 20px;
    z-index: var(--z-amoeba);
  }

  @media(max-width:768px){
    .info-img{
      width: 100%;
      position: relative;
      padding: 0;
      background-color: transparent;
    }
  }

  .info-list{
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    z-index: var(--z-concept);
  }

  .info-item{
    position: relative;
    display: grid;
    grid-template-columns: 150px 1fr;
    border-bottom: 1px dotted #ccc;
    padding-bottom: .5rem;
    font-size: 1rem;
    z-index: var(--z-service);
  }

  .info-item:last-child{
    border-bottom: none;
  }

  .info-item span{
    font-size: .8rem;
    margin-left: 10px;
  }

  @media(max-width:1450px){
    .info-item span{
      display: block;
      margin-left: 0;
    }
  }

  @media(max-width:768px){
    .info-item{
      grid-template-columns: 1fr;
      gap: .3rem;
    }

    .info-list{
      margin-top: 50px;
    }
  }



  /* assistance */
  .assistance{
    position: relative;
    width: 83%;
    display: flex;
    border-radius: 20px;
    border: 2px solid #87c15b;
    padding: 50px;
    text-align: center;
    justify-content: center;
    align-items: center;
    z-index: 1;
    margin-bottom: 120px;
    margin-top: -30px;
  }

  .assistance-container h3{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 0 20px;
    font-size: 1.6rem;
    z-index: 2;
  }

  .assistance-container p{
    text-align: justify;
    text-justify: inter-character;
    letter-spacing: 2px;
    line-height: 35px;
  }

  @media(max-width:768px){
    .assistance-container h3{
      font-size: 1.2rem;
      width: 75%;
    }
    .assistance{
      padding: 30px;
    }
  }




/* footer */
.footer{
  margin-top: 50px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.footer-container{
  display: flex;
  width: 80%;
  height: auto;
  justify-content: center;
  gap: 100px;
}

.footer-left{
  display: flex;
  height: 100%;
  justify-content: center;
  gap: 100px;
  align-items: flex-start;
  text-align: left;
}

.footer-left img{
  width: 150px;
  height: auto;
}

.text-br{
  display: none;
}

.footer-right{
  position: relative;
  writing-mode: vertical-rl;
  color: #5bb5dd;
}

.footer-right::after{
  content: "";
  position: absolute;
  bottom: -10px;
  right: -60px;
  display: flex;
  width: 70px;
  aspect-ratio: 1/1 ;
  background-image: url(img/アセット葉.svg);
  background-repeat: no-repeat;
  margin-bottom: 50px;
}

.footer-text p,
.footer-text a{
  /* margin-top: 15px; */
  font-size: 18px;
  display: block;
}

.footer-text p:nth-child(2),
.footer-text p:nth-child(3),
.footer-text a{
  font-size: 14px;
}

.footer-text-tel{
  font-size: 14px;
}

@media(max-width:768px){

  .footer-container{
    width: 85%;
    gap: 0;
  }
  .footer-left{
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  
  .footer-left img{
    display: block;
    margin-right: 100px;
  }

  .footer-text{
    margin-top: 30px;
  }

  .footer-text p,
  .footer-text a{
    line-height: 25px;
    font-size: 15px;
  }

  .footer-text p:nth-child(3){
    margin-top: 0px;
  }

  .text-br{
    display: block;
  }

  .footer-right::after{
    content: "";
    position: absolute;
    top: 100px;
    right: -20px;
    display: flex;
    width: 70px;
    aspect-ratio: 1/1 ;
    background-image: url(img/アセット葉.svg);
    background-repeat: no-repeat;
  }
}



/* reserved */
.reserved p{
  margin-top: 50px;
  font-size: 12px;
}
