/* ============================================ */
/* そらサーチPRO */
/* ============================================ */

/* setting */
/* =========================== */
:root{
  --thema-color: #207EF1;
  --sub-color: #F0F0F0;
  --accent-color:#EEC72A;
  --gray-color: rgba(0, 0, 0, .15);
  --shadow: 0 3px 5px 0 rgba(32, 126, 241, 0.25);
  --shadow-2: 0 0 80px 0 rgba(32, 126, 241, 0.25);
  --shadow-3: 0 10px 20px 0 rgba(0, 0, 0, .15);
  --gradient-color:linear-gradient(90deg, #68ACFE 0%, #207EF1 100%);
  --body-font: "Roboto Condensed","游ゴシック体", "Yu Gothic", YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  --secondary-font: "Montserrat", sans-serif;
  --width-lg: 1440px;
  --width-md: 1280px;
  --width-sm: 1080px;
  --width-xsm: 800px;
}
body{
  line-height: 1.5;
  background: #F7FAFC;
}
a{
  transition: 0.3s;
}
button{
  &:hover{
    opacity: 1;
  }
}
figure{
  line-height: 1;
}
main{
  width: 100%;
  min-width: auto;
}
.site__h1{
  width: 95%;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
  text-align: center;
  font-size: clamp(12px,2vw,16px);
  color: #fff;
}
@media (min-width: 769px){
	.--sp{
		display: none !important;
	}
}
@media(max-width:768px){
	.--pc{
			display: none !important;
	}
}


/* ============================================ */
/* ヘッダー */
/* ============================================ */
.t-header{
  width: 100%;
  position: relative;
  z-index: 1000;
}
.t-header-fixed{
  width: 100%;
  background: #fff;
  box-shadow: 0 3px 7px 0 rgba(0, 0, 0, .2);
}
.t-header-fixed.scroll{
  position: fixed;
  top: 0;
  left: 0px;
}
.t-header-main{
  width: 100%;
  background: #fff;
  padding: 16px 0;
  @media (max-width: 768px){
    padding: 8px 0;
  }
  .t-header-main__inner{
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin: 0 auto;
  }
  .t-header-main__logo{
    a{
      display: flex;
      align-items: center;
      gap: 16px;
      @media (min-width: 769px){
        &:hover{
          opacity: 0.7;
        }
      }
      @media (max-width: 900px){
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
      }
      img{
        width: 300px;
        @media (max-width: 768px){
          width: 200px;
        }
        @media (max-width: 480px){
          width: 160px;
        }
      }
    }
    .t-header-main__title{
      white-space: nowrap;
      font-size: clamp(10px,2.5vw,12px);
      color: var(--thema-color);
      border: 1px solid var(--thema-color);
      border-radius: 50vw;
      padding: 4px 8px;
      margin-top: 8px;
      @media (max-width: 768px){
        margin-top: 0;
      }
    }
  }
  .t-header-main__nav{
    display: flex;
    align-items: center;
    gap: 16px;
    .t-header-main__lists{
      display: flex;
      align-items: center;
      gap: 24px;
      white-space: nowrap;
      @media (max-width: 768px){
        gap: 16px;
      }
    }
    .t-header-main__tel{
      @media (max-width: 768px){
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--thema-color);
        border-radius: 50vw;
        &::before{
          content: "";
          display: inline-block;
          width: 28px;
          height: 28px;
          background: url(../img/pages/new-solar-power/icon-tel.svg) no-repeat center;
        }
      }
      .t-header-main__tel-num{
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 4px;
        &::before{
          content: "";
          display: inline-block;
          width: 28px;
          height: 28px;
          background: url(../img/pages/new-solar-power/icon-tel.svg) no-repeat center;
        }
        @media (max-width: 768px){
          display: none;
        }
      }
      .t-header-main__tel-time{
        text-align: center;
        font-size: 12px;
        font-weight: bold;
        @media (max-width: 768px){
          display: none;
        }
      }
    }
    .t-header-main__btn{
      width: 200px;
      @media (max-width: 768px){
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50vw;
        padding: 0;
        &::before{
          content: "";
          display: inline-block;
          width: 40px;
          height: 40px;
          background: url(../img/pages/new-solar-power/icon-mail.svg) no-repeat center;
        }
        &::after{
          display: none;
        }
      }
      span{
        @media (max-width: 768px){
          display: none;
        }
      }
    }
  }
}
.t-header-sub{
  width: 100%;
  background: #e7e7e7;
  ul{
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    @media (max-width: 900px){
      width: 100%;
      justify-content: flex-start;
      overflow-x: scroll;
    }
    li{
      position: relative;
      width: 200px;
      @media (max-width: 480px){
        min-width: 150px;
      }
      &::before{
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 1px;
        height: 60%;
        background: #fff;
      }
      &:last-child::after{
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 1px;
        height: 60%;
        background: #fff;
      }
      a{
        white-space: nowrap;
        text-align: center;
        font-weight: bold;
        font-size: clamp(12px,2vw,16px);
        padding: 1.5em 1em;
        @media (min-width: 769px){
          width: calc(100% - 2px);
          margin: 0 auto;
          &:hover{
            background: var(--thema-color);
            color: #fff;
          }
        }
        @media (max-width: 480px){
          padding: 1em 0.5em;
        }
      }
    }
  }
}


/* ============================================ */
/* content */
/* ============================================ */
.content{
  position: relative;
  width: 100%;
  overflow: visible;
  margin: 0 auto 80px;
  @media (max-width: 768px){
    margin: 0 auto 56px;
  }
}
.content--bg{
  background: var(--sub-color);
  padding: 80px 0;
  @media (max-width: 768px){
    padding: 56px 0;
  }
}
.content--bg-white{
  background: #fff;
  padding: 80px 0;
  @media (max-width: 768px){
    padding: 56px 0;
  }
}
.content--img{
  background: url(../img/pages/new-solar-power/bg-supply.webp) no-repeat center / cover;
  padding: 80px 0;
  @media (max-width: 768px){
    padding: 56px 0;
  }
}
.content__inner{
  width: 90%;
  max-width: var(--width-md);
  margin: 0 auto;
}
.content__inner-sm{
  width: 90%;
  max-width: var(--width-sm);
  margin: 0 auto;
}
.content__inner-xsm{
  width: 90%;
  max-width: var(--width-xsm);
  margin: 0 auto;
}


/* ============================================ */
/* heading */
/* ============================================ */
.heading{
  margin-bottom: 40px;
  @media (max-width: 768px){
    margin-bottom: 24px;
  }
}
.heading-md{
  margin-bottom: 24px;
  @media (max-width: 768px){
    margin-bottom: 16px;
  }
}
.heading--center{
  text-align: center;
}
.heading__primary{
  font-size: clamp(26px,4.1vw,32px);
  line-height: 1.6;
  font-weight: bold;
}
.heading__primary--border{
  position: relative;
  padding-bottom: 24px;
  &::after{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 5px;
    border-radius: 50vw;
    background: var(--gradient-color);
  }
  @media (max-width: 768px){
    padding-bottom: 16px;
  }
}
.heading__primary--border-center{
  position: relative;
  padding-bottom: 24px;
  &::after{
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100px;
    height: 5px;
    border-radius: 50vw;
    background: var(--gradient-color);
  }
  @media (max-width: 768px){
    padding-bottom: 16px;
  }
}
.heading__secondary{
  font-size: clamp(18px,3.1vw,24px);
  line-height: 1.6;
  font-weight: bold;
}
.heading__secondary--dot{
  position: relative;
  display: flex;
  align-items: center;
  gap: 1em;
  &::before{
    content: "●";
    vertical-align: middle;
    font-size: 80%;
    color: var(--thema-color);
  }
}
.heading__tertiary{
  display: inline-block;
  font-size: 14px;
  line-height: 1.5;
  font-weight: bold;
  color: #fff;
  border-radius: 50vw;
  background: #628FC7;
  padding: 8px 16px;
}
.heading__quadratic{
  display: inline-block;
  font-size: clamp(18px,3.1vw,24px);
  line-height: 1.6;
  font-weight: bold;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--thema-color);
}
.heading__sub{
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0.5em;
}


/* ============================================ */
/* button */
/* ============================================ */
.btn__base{
  width: 100%;
  height: 100%;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border-radius: 50vw;
  padding: 1em 1.5em;
  &::after{
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    transition: 0.3s;
  }
  @media (min-width: 769px){
    transition: 0.3s;
    &:hover{
      &::after{
        right: 4px;
      }
    }
  }
}
.btn__primary{
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background: var(--thema-color);
  box-shadow: var(--shadow);
  border: 1px solid var(--thema-color);
  &::after{
    content: "chevron_right";
    font-family: 'Material Icons';
    font-size: 24px;
  }
  @media (min-width: 769px){
    &:hover{
      color: var(--thema-color);
      background: #fff;
    }
  }
}
.btn__primary--reverse{
  color:  var(--thema-color);
  background: #fff;
  @media (min-width: 769px){
    &:hover{
      color: #fff;
      background: var(--thema-color);
    }
  }
}
.btn__primary--accordion{
  &::after{
    content: "add";
    font-family: 'Material Icons';
  }
  @media (min-width: 769px){
    &:hover{
      &::after{
        right: 8px;
      }
    }
  }
}
.btn__primary--accordion.is-open{
  &::after{
    content: "remove";
    font-family: 'Material Icons';
  }
}
.btn__secondary{
  font-size: 24px;
  font-size: clamp(18px,5vw,24px);
  color: var(--thema-color);
  background: #fff;
  box-shadow: var(--shadow);
  border: 2px solid var(--thema-color);
  &::after{
    font-size: 32px;
  }
  @media (min-width: 769px){
    &:hover{
      color: #fff;
      background: var(--thema-color);
    border: 2px solid #fff;
    }
  }
  @media (max-width: 480px){
    &::after{
      font-size: 24px;
    }
  }
}

.btn__reverse{
  font-size: 16px;
  font-weight: bold;
  color: var(--thema-color);
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--thema-color);
  &::after {
    content: "chevron_left";
    font-family: 'Material Icons';
    font-size: 24px;
    right: auto;
    left: 8px;
    transform: translateY(-50%);
  }
  @media (min-width: 769px) {
    &:hover {
      color: #fff;
      background: var(--thema-color);
      &::after {
        right: auto;
        left: 4px;
      }
    }
  }
}

.btn-more{
  text-align: center;
  .btn__primary{
    max-width: 300px;
  }
}

.btn__icon{
  position: relative;
  width: 32px;
  min-width: 32px;
  height: 32px;
  color: #fff;
  background: var(--thema-color);
  border: 1px solid var(--thema-color);
  border-radius: 50vw;
  transition: 0.3s;
  margin: 0 0 0 auto;
  &::after{
    content: "chevron_right";
    font-family: 'Material Icons';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
    font-size: 24px;
  }
}
.btn__icon--down{
  &::after{
    content: "keyboard_arrow_down";
  }
}
.btn__icon--white{
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
}


/* ============================================ */
/* color&parts */
/* ============================================ */
.--c-01{
  color: var(--thema-color);
}
.--textlink{
  display: inline-block;
  text-decoration: underline;
  color: var(--thema-color);
  transition: 0.3s;
  @media (min-width: 769px){
    &:hover{
      opacity: 0.7;
    }
  }
}
.--indent{
  text-indent: -0.5em;
  padding-left: 0.5em;
}
.--indent02{
  text-indent: -1em;
  padding-left: 1em;
}
.--list-num{
	padding-left: 2em;
  list-style-type: decimal;
  li{
    list-style-type: decimal;
    &:not(:last-child){
      margin-bottom: 0.5em;
    }
  }
}
.--list-dot{
	padding-left: 2em;
  list-style-type: disc;
  li{
    list-style-type: disc;
    &:not(:last-child){
      margin-bottom: 0.5em;
    }
  }
}


/* ============================================ */
/* ホーム */
/* ============================================ */
/* MV */
/* =========================== */
.mv{
  background: linear-gradient(180deg, #FFFFFF 30%, #207EF1 100%);
  margin-bottom: 80px;
  @media (max-width: 768px){
    margin-bottom: 56px;
  }
}
.mv__upper{
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  @media (max-width: 768px){
    flex-wrap: wrap;
    margin-bottom: 24px;
  }
  .mv__catch{
    width: 50%;
    text-align: center;
    padding: 0 1em;
    @media (max-width: 768px){
      width: 95%;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(255, 255, 255, 0.8);
      border-radius: 10px;
      padding: 24px;
    }
    h2{
      font-size: 37px;
      font-size: clamp(20px,2.9vw,37px);
      font-weight: bold;
      line-height: 1.3;
      margin-bottom: 32px;
      @media (max-width: 768px){
        margin-bottom: 16px;
      }
    }
    img{
      display: inline-block;
    }
  }
  .mv__figure{
    width: 50%;
    @media (max-width: 768px){
      width: 100%;
    }
    img{
      border-radius: 0 0 0 80px;
      @media (max-width: 768px){
        border-radius: 0;
      }
    }
  }
}
.mv__bottom{
  width: 95%;
  max-width: var(--width-lg);
  display: flex;
  align-items: center;
  margin: 0 auto 40px;
  @media (max-width: 1000px){
    flex-wrap: wrap;
    gap: 40px;
  }
  @media (max-width: 480px){
    gap: 24px;
  }
  .mv__lists{
    width: 50%;
    display: flex;
    align-items: center;
    gap: 48px;
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--shadow-3);
    padding: 0 1.5em;
    @media (max-width: 1000px){
      width: 100%;
    }
    @media (max-width: 480px){
      padding: 0 8px;
      gap: 16px;
    }
    li{
      width: calc(100% / 3);
      position: relative;
      text-align: center;
      font-weight: bold;
      font-size: clamp(10px,2vw,16px);
      background: url(../img/pages/new-solar-power/icon-check.svg) no-repeat center / 56px;
      padding: 1.5em 0;
      small{
        display: block;
        font-weight: normal;
        font-size: clamp(10px,2.5vw,12px);
      }
      &:not(:last-child)::after{
        content: "";
        width: 1px;
        height: 80px;
        position: absolute;
        top: 50%;
        right: -24px;
        transform: translateY(-50%);
        background: #D5DEDB;
      }
      @media (max-width: 480px){
        background: url(../img/pages/new-solar-power/icon-check.svg) no-repeat center / 40px;
        padding: 8px 0;
        &:not(:last-child)::after{
          height: 40px;
          right: -8px;
        }
      }
    }
  }
  .mv__btn{
    width: 50%;
    text-align: center;
    padding: 0 40px;
    @media (max-width: 1000px){
      width: 100%;
      padding: 0 20px;
    }
    a{
      max-width: 400px;
    }
  }
}


/* 非FIT太陽光発電所のご紹介 */
/* =========================== */
.card{
  width: 95%;
  display: flex;
  gap: 40px;
  margin: 0 auto 56px;
  @media (max-width: 768px){
    width: 70%;
    gap: 24px;
    flex-wrap: wrap;
    margin: 0 auto 40px;
  }
  @media (max-width: 480px){
    width: 100%;
  }
}
.card--slim{
  width: 100%;
  gap: 24px;
  @media (max-width: 768px){
    gap: 16px;
  }
}
.card__item{
  background: #fff;
  box-shadow: var(--shadow-3);
  border-radius: 20px;
  overflow: hidden;
  .card__figure{
    overflow: hidden;
    img{
      width: 100%;
      aspect-ratio: 16 / 9;
      object-fit: cover;
      transition: 0.3s;
    }
  }
  .card__content{
    padding: 24px;
  }
  .card__content-slim{
    padding: 16px;
    @media (max-width: 480px){
      padding: 8px;
    }
  }
  .card__title-bukken{
    border-bottom: 1px solid var(--gray-color);
    margin-bottom: 16px;
    h3{
      font-size: clamp(14px,2.3vw,18px);
      font-weight: bold;
      padding-bottom: 16px;
    }
  }
  .card__lists{
    margin-bottom: 8px;
  }
  .card__list{
    display: flex;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 8px;
  }
  .card__list-title{
    width: 45%;
    color: rgba(0, 0, 0, .5);
  }
  .card__list-value{
    width: 55%;
  }
  .card__text{
    margin-bottom: 16px;
    small{
      font-size: clamp(10px,2.5vw,12px);
    }
  }
}
.card__item--col3{
  width: calc(100% / 3);
  @media (max-width: 768px){
    width: 100%;
  }
}
.card__item--col4{
  width: calc(100% / 4);
  @media (max-width: 768px){
    width: calc(100% / 2 - 8px);
  }
}
@media (min-width: 769px){
  .card__item{
    &:hover{
      .card__figure{
        img{
          transform:scale(1.1,1.1);
        }
      }
      .btn__icon{
        color: var(--thema-color);
        background: #fff;
      }
    }
  }
}


/* どのような課題にお悩みですか？ */
/* =========================== */
.card-text{
  display: flex;
  gap: 80px;
  margin-bottom: 56px;
  @media (max-width: 768px){
    gap: 24px;
    margin-bottom: 40px;
  }
  @media (max-width: 480px){
    flex-wrap: wrap;
  }
  .card-text__item{
    width: 50%;
    @media (max-width: 480px){
      width: 100%;
    }
  }
  .card-text__lists{
    .card-text__list{
      font-weight: bold;
      font-size: clamp(14px,2vw,16px);
      border-radius: 20px;
      border: 1px dashed var(--thema-color);
      background: #fff;
      padding: 24px 40px;
      &:not(:last-child){
        margin-bottom: 24px;
      }
      @media (max-width: 768px){
        padding: 24px;
        &:not(:last-child){
          margin-bottom: 16px;
        }
      }
      @media (max-width: 480px){
        padding: 16px;
      }
    }
  }
}


/* そらサーチPROとは */
/* =========================== */
.pro-about__figure{
  margin-bottom: 24px;
}
.pro-about__figure--center{
  img{
    margin: 0 auto;
  }
}
.pro-about__desc{
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  p{
    line-height: 2;
    &:not(:last-child){
      margin-bottom: 1em;
    }
  }
}
.pro-about__desc--nonebg{
  background: none;
}


/* CTA */
/* =========================== */
.pro-cta__body{
  color: #fff;
  background: var(--thema-color);
  border-radius: 40px;
  padding: 40px;
  @media (max-width: 480px){
    padding: 32px;
  }
}
.pro-cta__text{
  text-align: center;
  margin-bottom: 24px;
  p{
    line-height: 1.7;
    &:not(:last-child){
      margin-bottom: 0.5em;
    }
  }
}
.pro-cta__btn{
  text-align: center;
  .btn__secondary{
    max-width: 400px;
    margin-bottom: 24px;
  }
  .pro-cta__tel-num{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 24px;
    font-weight: bold;
    font-size: clamp(18px,5vw,24px);
    margin-bottom: 4px;
    &::before{
      content: "";
      display: inline-block;
      width: 28px;
      height: 28px;
      background: url(../img/pages/new-solar-power/icon-tel-white.svg) no-repeat center / contain;
    }
  }
  .pro-cta__tel-time{
    font-size: 14px;
  }
}



/* 私たちが選ばれる3つの理由 */
/* =========================== */
.box{
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0 80px;
  margin-bottom: 56px;
  @media (max-width: 768px){
    width: 70%;
    gap: 24px;
    margin: 0 auto 40px;
  }
  @media (max-width: 480px){
    width: 100%;
  }
  .box__item{
    width: calc(50% - 40px);
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-2);
    padding: 24px 40px;
    &:nth-child(2n){
      margin-top: 132px;
    }
    @media (max-width: 768px){
      width: 100%;
      &:nth-child(2n){
        margin-top: 0;
      }
    }
    @media (max-width: 480px){
      padding: 24px;
    }
  }
  .box__figure{
    margin-bottom: 24px;
  }
  .box__text{
    line-height: 1.75;
  }
  .heading__secondary{
    color: var(--thema-color);
  }
}


/* 非FIT電力の調達方法 */
/* =========================== */
.pro-supply{
  padding-top: 80px;
  &::before{
    content: "";
    width: 100%;
    height: 75%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: url(../img/pages/new-solar-power/bg-supply.webp) no-repeat center / cover;
  }
  @media (max-width: 768px){
    padding-top: 56px;
  }
  .heading{
    color: #fff;
  }
}
.card-vertical{
  margin-bottom: 56px;
  @media (max-width: 768px){
    width: 70%;
    margin: 0 auto 40px;
  }
  @media (max-width: 480px){
    width: 100%;
  }
  .card-vertical__item{
    display: flex;
    gap: 80px;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-3);
    padding: 40px;
    &:not(:last-child){
      margin-bottom: 40px;
    }
    @media (max-width: 768px){
      gap: 24px;
      flex-wrap: wrap;
      padding: 24px;
      &:not(:last-child){
        margin-bottom: 24px;
      }
    }
  }
  .card-vertical__figure{
    width: 50%;
    overflow: hidden;
    border-radius: 20px;
    background: #f0f0f0;
    padding: 16px;
    @media (max-width: 768px){
      width: 100%;
      padding: 8px;
    }
    img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.3s;
    }
  }
  .card-vertical__text{
    width: 50%;
    display: flex;
    flex-direction: column;
    @media (max-width: 768px){
      width: 100%;
    }
    .heading__secondary{
      color: var(--thema-color);
    }
  }
  @media (min-width: 769px){
    .card-vertical__item--link{
      &:hover{
        .card-vertical__figure{
          img{
            transform: scale(0.9,0.9);
          }
        }
        .btn__icon{
          color: var(--thema-color);
          background: #fff;
        }
      }
    }
  }
}
.check-list{
  flex: 1;
  margin-bottom: 24px;
  .check-list__item{
    display: flex;
    gap: 8px;
    font-weight: bold;
    line-height: 1.75;
    &::before{
      content: "";
      width: 22px;
      min-width: 22px;
      height: 22px;
      vertical-align: middle;
      background: url(../img/pages/new-solar-power/icon-check-blue.svg) no-repeat center / contain;
      margin-top: 2px;
    }
    &:not(:last-child){
      margin-bottom: 1em;
    }
  }
  .check-list__item--secondary{
    &::before{
      background: url(../img/pages/new-solar-power/icon-check-yellow.svg) no-repeat center / contain;
    }
  }
}


/* お役立ちコンテンツ */
/* =========================== */
.card__date-post{
  font-size: 14px;
  color: rgba(0, 0, 0, .5);
  margin-bottom: 8px;
}
.card__title-post{
  display: -webkit-box;
	-webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
	overflow: hidden;
  font-size: clamp(14px,2.3vw,18px);
  font-weight: bold;
  margin-bottom: 24px;
}


/* 気になるポイントを解説します */
/* =========================== */
.card-banner{
  display: flex;
  flex-wrap: wrap;
  gap: 32px 80px;
  @media (max-width: 768px){
    width: 70%;
    gap: 24px;
    margin: 0 auto;
  }
  @media (max-width: 480px){
    width: 100%;
  }
  .card-banner__item{
    width: calc(50% - 40px);
    height: 120px;
    display: flex;
    gap: 8px;
    align-items: center;
    position: relative;
    color: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-3);
    transition: 0.3s;
    padding: 0 40px;
    @media (max-width: 768px){
      width: 100%;
      height: 100px;
      padding: 0 24px;
    }
    .card-banner__title{
      font-size: clamp(18px,2.6vw,20px);
    }
  }
  .card-banner__item--01{
    background: url(../img/pages/new-solar-power/img-point01.webp) no-repeat center / cover;
  }
  .card-banner__item--02{
    background: url(../img/pages/new-solar-power/img-point02.webp) no-repeat center / cover;
  }
  .card-banner__item--03{
    background: url(../img/pages/new-solar-power/img-point03.webp) no-repeat center / cover;
  }
  .card-banner__item--04{
    background: url(../img/pages/new-solar-power/img-point04.webp) no-repeat center / cover;
  }
  @media (min-width: 769px){
    .card-banner__item{
      &:hover{
        opacity: 0.7;
      }
    }
  }
}


/* ============================================ */
/* 下層ページ */
/* ============================================ */
.mvsub{
  width: 100%;
  overflow: visible;
  border-bottom: 8px solid var(--thema-color);
  padding: 80px 0;
  @media (max-width: 768px){
    padding: 40px 0;
  }
}
.mvsub__heading{
  h2{
    font-size: clamp(26px,5.2vw,40px);
  }
}
.mvsub__figure{
  margin-bottom: 40px;
  @media (max-width: 768px){
    margin-bottom: 24px;
  }
}
.mvsub__text{
  p{
    line-height: 2;
    &:not(:last-child){
      margin-bottom: 1em;
    }
  }
}


/* 物件一覧 */
/* =========================== */
.bukken{
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-3);
  border-radius: 20px;
  background: #fff;
  padding: 24px;
  margin-bottom: 40px;
  @media (max-width: 480px){
    margin-bottom: 24px;
  }
  .bukken__arrival{
    &::before{
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      border-bottom: 64px solid transparent;
      border-left: 64px solid #ED1C24;
      z-index: 1;
    }
    b{
      position: absolute;
      top: 10px;
      left: 8px;
      font-size: 14px;
      color: #fff;
      transform: rotate(-45deg);
      z-index: 2;
    }
  }
  .bukken__body{
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    @media (max-width: 768px){
      gap: 24px;
      flex-wrap: wrap;
    }
    @media (max-width: 480px){
      margin-bottom: 24px;
    }
    .bukken__figure{
      width: 40%;
      border-radius: 20px;
      overflow: hidden;
      @media (max-width: 768px){
        width: 100%;
      }
      img{
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: cover;
      }
    }
    .bukken__detail{
      width: 60%;
      @media (max-width: 768px){
        width: 100%;
      }
      .bukken__header{
        border-bottom: 1px solid var(--gray-color);
        padding-bottom: 16px;
        margin-bottom: 24px;
        @media (max-width: 480px){
          margin-bottom: 16px;
        }
        .bukken__name{
          display: flex;
          align-items: center;
          gap: 16px;
        }
        .bukken__pressure{
          display: flex;
          align-items: center;
          justify-content: center;
          width: 50px;
          height: 50px;
          font-size: 14px;
          font-weight: bold;
          color: #fff;
          border-radius: 50%;
          background: var(--thema-color);
        }
        .bukken__pressure.high{
          background: #F08200;
        }
      }
    }
  }
}
.detail__lists{
  margin-bottom: 8px;
}
.detail__list{
  display: flex;
  gap: 8px;
  &:not(:last-child){
    margin-bottom: 8px;
  }
  .detail__list-title{
    width: 45%;
    color: rgba(0, 0, 0, .5);
  }
  .detail__list-value{
    width: 55%;
  }
}
.detail__text{
  margin-bottom: 16px;
  small{
    font-size: clamp(12px,2.9vw,14px);
  }
}
.bukken__btn{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  @media (max-width: 480px){
    gap: 16px;
    flex-wrap: wrap;
  }
  .btn__base{
    max-width: 300px;
  }
}


/* 物件詳細 */
/* =========================== */
.bukken-single{
  padding-top: 80px;
  @media (max-width: 768px){
    padding-top: 56px;
  }
}
.bukken-single__title{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
  @media (max-width: 480px){
    margin-bottom: 24px;
  }
}
.bukken-single__num{
  display: inline-block;
  font-size: 14px;
  color: #fff;
  border-radius: 8px;
  background: #3C3E3F;
  padding: 4px 8px;
}
.bukken-single__figure{
  margin-bottom: 40px;
  @media (max-width: 480px){
    margin-bottom: 24px;
  }
  img{
    margin: 0 auto;
  }
}
.detail__body{
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 56px;
  @media (max-width: 768px){
    padding: 24px;
    margin-bottom: 40px;
  }
  .detail__card{
    width: calc(50% - 20px);
    display: flex;
    flex-direction: column;
    gap: 40px;
    @media (max-width: 768px){
      width: 100%;
      gap: 24px;
    }
  }
  .detail__card-inner{
    .detail__list{
      border-bottom: 1px solid var(--gray-color);
      padding-bottom: 8px;
    }
    .detail__textarea{
      border: 1px solid var(--gray-color);
      border-radius: 20px;
      padding: 24px;
      @media (max-width: 480px){
        padding: 16px;
      }
      p{
        &:not(:last-child){
          margin-bottom: 1em;
        }
      }
    }
  }
}
.bukken__other{
  .card__list{
    font-size: 12px;
    font-size: clamp(10px,2.5vw,12px);
  }
}


/* 非FIT太陽光発電とは */
/* =========================== */
.pro-point{
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  @media (max-width: 480px){
    padding: 24px;
  }
  .pro-point__card{
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0 40px;
    &:not(:last-child){
      border-bottom: 1px solid var(--gray-color);
      padding-bottom: 40px;
      margin-bottom: 40px;
    }
    @media (max-width: 768px){
      gap: 24px;
      &:not(:last-child){
        padding-bottom: 24px;
        margin-bottom: 24px;
      }
    }
  }
  .pro-point__card--reverse{
    flex-direction: row-reverse;
  }
  .pro-point__text{
    width: calc(50% - 20px);
    @media (max-width: 768px){
      width: 100%;
    }
  }
  .heading-md{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
    @media (max-width: 480px){
      gap: 16px;
    }
  }
  .pro-point__num{
    min-width: 80px;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    font-family: var(--secondary-font);
    line-height: 1;
    color: var(--thema-color);
    font-weight: bold;
    border: 2px solid var(--thema-color);
    border-radius: 50%;
    @media (max-width: 480px){
      min-width: 56px;
      min-height: 56px;
      gap: 2px;
    }
    .pro-point__num-upper{
      font-size: clamp(10px,2.5vw,12px);
    }
    .pro-point__num-bottom{
      font-size: clamp(24px,7vw,34px);
    }
  }
  .pro-point__desc{
    line-height: 1.75;
    p{
      &:not(:last-child){
        margin-bottom: 1em;
      }
    }
  }
  .pro-point__ellipses{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    .pro-point__ellipse{
      font-weight: bold;
      font-size: clamp(12px,2.9vw,14px);
      color: #fff;
      line-height: 1;
      border-radius: 50vw;
      background: #628FC7;
      padding: 8px;
      @media (max-width: 480px){
        padding: 4px 8px;
      }
    }
    .pro-point__ellipse-etc{
      align-self: flex-end;
      line-height: 1;
    }
  }
  .pro-point__figure{
    width: calc(50% - 20px);
    border-radius: 20px;
    overflow: hidden;
    @media (max-width: 768px){
      width: 100%;
    }
  }
}
.pro-point--secondary{
  .heading-md{
    width: 100%;
  }
  .pro-point__text{
    width: calc(55% - 20px);
    @media (max-width: 768px){
      width: 100%;
    }
  }
  .pro-point__figure{
    width: calc(45% - 20px);
    @media (max-width: 768px){
      width: 100%;
    }
  }
}


/* そらサーチPROとは */
/* =========================== */
.pro-cta-sub{
  .heading__primary{
    color: #fff;
  }
  .heading__primary--border-center{
    &::after{
      background: #fff;
    }
  }
  .pro-cta-sub__box{
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    @media (max-width: 480px){
      padding: 24px;
    }
  }
  .pro-cta-sub__text{
    text-align: center;
    margin-bottom: 40px;
    @media (max-width: 480px){
      margin-bottom: 24px;
    }
    p{
      &:not(:last-child){
        margin-bottom: 0.5em;
      }
    }
  }
  .pro-cta-sub__box-inner{
    width: 100%;
    max-width: 500px;
    display: flex;
    gap: 40px;
    background: var(--sub-color);
    border-radius: 20px;
    padding: 24px;
    margin: 0 auto 40px;
    @media (max-width: 480px){
      gap: 8px;
      padding: 16px 8px;
      margin-bottom: 24px;
    }
  }
  .pro-cta-sub__lists{
    width: calc(100% / 3);
    text-align: center;
  }
  .pro-cta-sub__list-icon{
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E2EFFF;
    border: 2px solid #628FC7;
    border-radius: 50vw;
    margin: 0 auto 16px;
    @media (max-width: 480px){
      width: 64px;
      height: 64px;
      margin: 0 auto 8px;
    }
    img{
      @media (max-width: 480px){
        width: 32px;
      }
    }
  }
  .pro-cta-sub__list-text{
    font-weight: bold;
    font-size: 14px;
    font-size: clamp(10px,2.6vw,14px);
  }
  .btn__primary{
    max-width: 240px;
  }
}


/* 私達が選ばれる理由 */
/* =========================== */
.flow{
  .flow__box{
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
    border: 1px solid var(--thema-color);
    border-radius: 20px;
    background: #fff;
    padding: 24px;
    margin-bottom: 48px;
    &:not(:last-child){
      &::after{
        content: "";
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 20px;
        clip-path: polygon(0 0, 100% 0, 50% 100%);
        background: var(--thema-color);
      }
    }
    @media (max-width: 480px){
      gap: 24px;
      padding: 8px 16px;
    }
  }
  .flow__num{
    position: relative;
    width: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    color: var(--thema-color);
    font-family: var(--secondary-font);
    line-height: 1;
    font-weight: bold;
    @media (max-width: 480px){
      gap: 2px;
    }
    .flow__num-upper{
      font-size: clamp(10px,2.5vw,12px);
    }
    .flow__num-bottom{
      font-size: clamp(24px,7vw,34px);
    }
  }
  .flow__text{
    position: relative;
    width: 90%;
    &::after{
      content: "";
      position: absolute;
      top: 50%;
      left: -20px;
      transform: translateY(-50%);
      width: 1px;
      height: 100%;
      background: var(--gray-color);
    }
    @media (max-width: 480px){
      &::after{
        left: -12px;
        height: 90%;
      }
    }
    .heading__secondary{
      color: var(--thema-color);
    }
    .flow__desc{
      line-height: 1.75;
      p{
        font-weight: bold;
        &:not(:last-child){
          margin-bottom: 1em;
        }
      }
    }
  }
}
.pro-support{
  .pro-point{
    &:not(:last-child){
      margin-bottom: 80px;
    }
    @media (max-width: 768px){
      &:not(:last-child){
        margin-bottom: 56px;
      }
    }
  }
  .pro-point__card{
    gap: 40px;
    @media (max-width: 768px){
      gap: 24px;
    }
  }
}
.pro-point-sub{
  .pro-point-sub__lists{
    .pro-point-sub__list{
      color: #628FC7;
      font-size: 14px;
      line-height: 1.75;
      &:not(:last-child){
        margin-bottom: 0.5em;
      }
    }
  }
  .pro-point-sub__desc{
    p{
      color: #628FC7;
      font-size: 14px;
      line-height: 1.75;
      &:not(:last-child){
        margin-bottom: 1.5em;
      }
    }
  }
}


/* 事業者様別のプラン */
/* =========================== */
.pro-plan{
  .pro-point{
    display: flex;
    flex-direction: column;
    gap: 40px;
    @media (max-width: 768px){
      gap: 24px;
    }
  }
  .pro-point__card{
    gap: 40px;
    &:not(:last-child){
      border-bottom: none;
      padding-bottom: 0;
      margin-bottom: 0;
    }
    @media (max-width: 768px){
      gap: 24px;
    }
  }
  .heading__secondary{
    color: var(--thema-color);
  }
  .pro-plan__figure{
    width: 100%;
    img{
      margin: 0 auto;
      @media (max-width: 768px){
        width: 56px;
      }
    }
  }
}
.pro-highlight{
  .pro-point{
    background: #FFF9EB;
  }
  .pro-point__card{
    &:not(:last-child){
      border-bottom: none;
      padding-bottom: 0;
    }
  }
}


/* よくある質問 */
/* =========================== */
.faq__item{
  line-height: 1.75;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  margin-bottom: 24px;
  .faq__head{
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: clamp(16px,3.7vw,18px);
    gap: 16px;
    padding: 32px 72px 32px 32px;
    &::after{
      content: "add";
      position: absolute;
      top: 50%;
      right: 32px;
      transform: translateY(-50%);
      color: var(--thema-color);
      font-family: 'Material Icons';
      font-size: 32px;
      transition: .3s;
    }
    @media (max-width: 480px){
      padding: 24px 64px 24px 24px;
      &::after{
        right: 24px;
        font-size: 24px;
      }
    }
    .faq__q{
      font-size: clamp(24px,4.4vw,34px);
      color: var(--thema-color);
    }
    .faq__head-text{
      font-weight: bold;
    }
  }
  .faq__head.open{
    &::after{
      content: "remove";
    }
  }
  .faq__bottom{
    padding: 32px;
    background: #fff;
    border-top: 1px solid var(--gray-color);
    @media (max-width: 480px){
      padding: 24px;
    }
  }
  .faq__bottom-text{
    p{
      &:not(:last-child){
        margin-bottom: 0.5em;
      }
    }
  }
}


/* オフサイトPPA */
/* =========================== */
.box-column{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: #fff;
  padding: 40px;
  @media (max-width: 480px){
    padding: 24px;
  }
  .box-column__lists{
    width: 100%;
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 16px;
    @media (max-width: 480px){
      gap: 8px;
    }
    .box-column__list{
      width: calc(100% / 3);
      text-align: center;
    }
    .heading__quadratic{
      font-size: clamp(14px,3.1vw,24px);
    }
  }
  small{
    display: block;
    font-size: 70%;
  }
}
.card--merit{
  flex-wrap: wrap;
  .card__item{
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: none;
    padding: 1.5em;
    @media (max-width: 480px){
      padding: 1.5em 1em;
    }
  }
  .card__item--col4{
    @media (min-width: 769px){
      width: calc(100% / 4 - 18px);
    }
  }
  .card__item--col3{
    width: calc(100% / 3 - 16px);
    @media (max-width: 768px){
      width: calc(100% / 2 - 8px);
    }
    .card__title-merit{
      margin-bottom: 24px;
    }
    .card__desc-merit{
      line-height: 1.75;
    }
  }
  .card__figure-circle{
    margin-bottom: 24px;
    img{
      width: 70%;
      margin: 0 auto;
    }
  }
  .card__title-merit{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 4em;
    p{
      font-size: clamp(12px,2.3vw,18px);
      font-weight: bold;
      line-height: 1.75;
    }
  }
}
.pro-highlight{
  .check-list{
    display: flex;
    gap: 24px 16px;
    @media (max-width: 768px){
      flex-wrap: wrap;
    }
  }
  .check-list__item{
    width: calc(100% / 3);
    align-items: center;
    justify-content: center;
    line-height: 1.5;
    border-radius: 50vw;
    background: #fff;
    padding: 24px;
    &:not(:last-child) {
      margin-bottom: 0;
    }
    @media (max-width: 768px){
      width: 100%;
      justify-content: flex-start;
    }
  }
}


/* 自己託送 */
/* =========================== */
.p-pages__tab-group--pro{
  width: 100%;
  max-width: 800px;
  gap: 40px;
  justify-content: center;
  align-items: center;
  margin: 0 auto 40px;
  @media (max-width: 768px){
    gap: 16px;
  }
  .p-pages__tab-title{
    width: calc(100% / 2);
    font-size: clamp(14px,2.3vw,18px);
    border-radius: 20px;
    padding: 1em 0.5em;
  }
  div:nth-child(1){
    background: #fff;
    color: var(--thema-color);
    border: 1px solid var(--thema-color);
  }
  div:nth-child(1).is-active{
    background: var(--thema-color);
    border: 1px solid var(--thema-color);
    color: #fff;
  }
}
.p-pages__tab-panel-group--pro{
  .panel{
    .--list-dot{
      li{
        width: auto;
      }
    }
  }
}


/* ============================================ */
/* breadcrumb */
/* ============================================ */
.c-breadcrumb-pro{
  background: var(--sub-color);
  padding: 16px 0;
  .c-breadcrumb-pro__wrap{
    width: 90%;
    max-width: var(--width-md);
    margin: 0 auto;
  }
  .breadcrumbs{
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
    a{
      @media (min-width: 769px){
        &:hover{
          color: var(--thema-color);
        }
      }
    }
    .under{
      color: var(--thema-color);
      font-weight: bold;
    }
  }
}


/* お知らせ */
/* =========================== */
.pro-news{
  margin-bottom: 40px;
  @media (max-width: 480px) {
    margin-bottom: 24px;
  }
}
.pro-news__lists{
  border-radius: 20px;
  background: #fff;
  padding: 40px;
  @media (max-width: 480px){
    padding: 24px;
  }
  .pro-news__list{
    padding: 24px 0;
    border-bottom: 1px solid var(--gray-color);
    @media (max-width: 480px){
      padding: 16px 0;
    }
  }
  .pro-news__date{
    color: rgba(0, 0, 0, .5);
    margin-bottom: 8px;
  }
  .pro-news__title{
    a{
      font-size: clamp(16px,2.3vw,18px);
      @media (min-width: 769px){
        &:hover{
          color: var(--thema-color);
        }
      }
    }
  }
}
.news-single{
  padding-top: 80px;
  @media (max-width: 768px){
    padding-top: 56px;
  }
}
.news-single__data{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  @media (max-width: 480px){
    margin-bottom: 24px;
  }
  .news-single__cate{
    display: inline-block;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #3C3E3F;
    background: #fff;
    padding: 4px 8px;
  }
}
.news-single__content{
  padding: 40px;
  margin-bottom: 40px;
  @media (max-width: 480px){
    padding: 24px;
  }
}
.btn-back{
  text-align: center;
  .btn__reverse{
    max-width: 300px;
  }
}


/* お問い合わせ */
/* =========================== */
.pro-contact{
  margin-bottom: 0;
}
.pro-contact__form{
  border-radius: 20px;
  background: #fff;
  padding: 40px;
  @media (max-width: 480px){
    padding: 24px;
  }
}
.pro-contact__form-body{
  margin-bottom: 40px;
  @media (max-width: 480px){
    margin-bottom: 24px;
  }
}
.pro-contact__btn{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  input {
    position: relative;
    width: 100%;
    outline: none;
    appearance: none;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 0;
    background: none;
    margin: 0;
    z-index: 1;
    transition: 0.3s;
  }
  input[type="submit"]{
    color: #fff;
    padding: 1em 1.5em;
    @media (min-width: 769px){
      &:hover{
        opacity: 1;
        color: var(--thema-color);
      }
    }
  }
  #backBtn{
    cursor: pointer;
    color: var(--thema-color);
    padding: 1em 1.5em;
    @media (min-width: 769px) {
      &:hover {
        opacity: 1;
        color: #fff;
      }
    }
  }
  .btn__base{
    max-width: 300px;
    padding: 0;
  }
}
.pro-contact__desc{
  text-align: center;
  margin-bottom: 40px;
  @media (max-width: 480px){
    text-align: left;
  }
  p{
    &:not(:last-child){
      margin-bottom: 1em;
    }
  }
}


/* サイトマップ */
/* =========================== */
.pro-sitemap__body{
  border-radius: 20px;
  background: #fff;
  padding: 40px;
  @media (max-width: 480px) {
    padding: 24px;
  }
}
.pro-sitemap__links{
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  @media (max-width: 480px){
    gap: 16px;
  }
}
.pro-sitemap__link{
  width: calc(100% / 2 - 12px);
  @media (max-width: 480px){
    width: 100%;
  }
  a{
    position: relative;
    padding: 16px;
    background: var(--sub-color);
    &::after{
      content: "chevron_right";
      font-family: 'Material Icons';
      font-size: 24px;
      position: absolute;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      transition: 0.3s;
    }
    @media (min-width: 769px){
      &:hover{
        color: var(--thema-color);
      }
    }
  }
}


/* ============================================ */
/* pagination */
/* ============================================ */
.pagination--pro{
  .page-numbers {
    border: 1px solid var(--thema-color);
    color: var(--thema-color);
  }
  .current {
    background: var(--thema-color);
    color: #fff;
  }
}


/* ============================================ */
/* footer */
/* ============================================ */
.t-footer{
  background: #3C3E3F;
  .t-footer__inner{
    width: 95%;
    max-width: var(--width-md);
    display: flex;
    gap: 64px;
    padding: 80px 0;
    margin: 0 auto;
    @media (max-width: 768px){
      flex-wrap: wrap;
      gap: 48px 32px;
      padding: 40px 0 80px;
    }
    .t-footer__logo{
      position: relative;
      @media (min-width: 769px){
        flex: 1;
      }
      @media (max-width: 768px){
        width: 100%;
        text-align: center;
        margin: 0 auto;
        &::after{
          content: "";
          width: 100%;
          height: 1px;
          position: absolute;
          bottom: -24px;
          left: 50%;
          transform: translateX(-50%);
          background: rgba(255, 255, 255, 0.15);
        }
      }
      a{
        display: inline-flex;
        flex-direction: column;
        gap: 16px;
        img{
          width: 200px;
        }
        @media (min-width: 769px){
          &:hover{
            opacity: 0.7;
          }
        }
        @media (max-width: 768px){
          margin: 0 auto;
        }
      }
      .t-footer__title{
        color: #fff;
        font-size: clamp(10px,2.5vw,12px);
        white-space: nowrap;
        border: 1px solid #fff;
        border-radius: 50vw;
        padding: 4px 8px;
      }
    }
    .t-footer__middle{
      position: relative;
      display: flex;
      gap: 64px;
      @media (max-width: 768px){
        width: 100%;
        gap: 24px;
        &::after{
          content: "";
          width: 100%;
          height: 1px;
          position: absolute;
          bottom: -24px;
          left: 50%;
          transform: translateX(-50%);
          background: rgba(255, 255, 255, 0.15);
        }
      }
      @media (max-width: 480px){
        flex-wrap: wrap;
      }
      .t-footer__links{
        position: relative;
        color: #fff;
        padding: 8px 0;
        @media (min-width: 769px){
          &:not(:last-child)::after{
            content: "";
            width: 1px;
            height: 100%;
            position: absolute;
            top: 50%;
            right: -32px;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.15);
          }
        }
        @media (max-width: 768px){
          width: calc(50% - 16px);
        }
        li{
          &:not(:last-child){
            margin-bottom: 1em;
          }
          a{
            display: inline-block;
            @media (min-width: 769px){
              &:hover{
                color: var(--thema-color);
              }
            }
          }
          a[target="_blank"]::after{
            content: "";
            display: inline-block;
            width: 10px;
            height: 10px;
            background: url( ../img/common/icon-blank.svg) no-repeat center;
            margin-left: 8px;
          }
        }
      }
    }
  }
  .t-footer__copyright{
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    padding: 16px 0;
    a{
      display: inline-block;
      text-decoration: underline;
    }
  }
}