@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');
body{
  font-family: "Zen Kaku Gothic New", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a:hover{
    text-decoration: none!important;
}


ul, ol {
    list-style: none;
}

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

body.top-page{
  position: relative;
  overflow-x: clip;
  background: #FFF8F3;
}



input, button, textarea {
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}


.inner{
  max-width: calc(1280px + 30px);
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.pc{
  display: block;
}

.sp{
  display: none;
}

@media screen and (max-width: 768px) {
  .pc{
  display: none;
}

.sp{
  display: block;
}
}

.btnWrap{
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.btn{
  background: #B81C22;
  border: 3px solid #B81C22;
  border-radius: 50px;
  font-weight: 700;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 350px;
  width: 100%;
  padding: 22px 0;
  text-align: center;
  margin: 0 auto;
  color: #fff;
  transition: all 0.3s ease;
}

.btn:hover{
  background: transparent;
  color: #B81C22;
}

.btn__icon{
    transition: all 0.3s ease;
    display: flex;
}

.btn:hover .btn__icon{
    transform: translateX(10px);
}

.btn:hover .btn__icon path{
    stroke: #B81C22;
}

@media screen and (max-width: 768px) {
    .btn{
        font-size: 24px;
        line-height: 26px;
    }
}

/* サークルアニメーション */
.circle{
    width: 122px;
    height: 122px;
    position: relative;
  }
  
  .circleText {
    overflow: visible;
      animation: rotation 18s linear infinite;
  }
  
  .circleText__circle {
    fill: none;
  }
  
  .circleText__text {
    fill: #fff;
    font-size: 10px;
    font-weight: 400;
  }
  
  
  
  .circle::before{
    position: absolute;
    content: "";
    background-image: url(../img/sec2_ill_img.svg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 90px;
    height: 82px;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
  }
  
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(-360deg);
    }
  }
  /* サークルアニメーション */

  
.common__heading{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

/* 画像切り替えアニメーション */
.image-switcher {
    position: relative;
    width: 124px;
    height: 129px;
}

.image-switcher .switch-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.image-switcher .switch-img.active {
    opacity: 1;
}

.common__top{
    text-align: center;
}

.common__comment{
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: normal;
    color: #1B1E49;
}

.common__title{
    font-weight: 900;
    font-size: 50px;
    line-height: 140%;
    letter-spacing: 0.1em;
    color: #B81C22;
    margin-top: 5px;

}

.common__title strong{
    font-weight: 900;
    font-size: 60px;
    line-height: 140%;
    letter-spacing: 0.05em;
}

.common__icons{
    display: flex;
    align-items: center;
    gap: 8px;
}

@keyframes common__icon__animation {
    0% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(90deg);
    }

    50% {
        transform: rotate(180deg);
    }

    75%{
        transform: rotate(270deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.common__icon__animation{
    animation: common__icon__animation 3s infinite;
}

@media screen and (max-width: 768px) {
    .common__heading{
        flex-direction: column;
        gap: 15px;
    }

    .common__comment{
        font-weight: 700;
        font-size: 14px;
        line-height: 140%;
        letter-spacing: normal;
        text-align: center;
    }

    .common__title{
    font-size: 32px;
    line-height: 140%;
    letter-spacing: 0.01em;
    }

    .common__title strong{
      font-size: 40px;
  }

}

.contact__form{
  display: none;
}

@media screen and (max-width: 768px) {
  .contact__form{
    position: fixed;
    bottom: 10px;
    width: 100%;
    z-index: 100;
    padding: 0 15px;
  }
  .contact__form .header__btns{
    display: flex;
    width: 100%;
    max-width: 100%;
    gap: 15px;
  }

  .contact__form .header__btn{
    max-width: 100%;
    width: 100%;
  }
}