@charset "UTF-8";
/*基本設定なので触らないこと。触る＆追加は各々のcssにて*/
/*commonはベースになるものを記載すること*/
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100dvh;
  font-size: 62.5%;
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-size: 1.6rem;
}

/*テキスト全般ベース*/
.txt {
  font-size: clamp(1.4rem, 1.8vw, 1.6rem);
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.txt.center {
  text-align: center;
}
.txt_sub {
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  line-height: 1.5;
  letter-spacing: 0.06em;
}

/*メイン見出し*/
.ttl {
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  line-height: 1.5;
  letter-spacing: 0.2em;
}
.ttl_sub {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.ttl_sub.left {
  text-align: left;
}
.ttl_sub.center {
  text-align: center;
}
.ttl_sub.right {
  text-align: right;
}

/*ボタンベース*/
.btn a, .btn span, .btn button {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  border-radius: 2.5em;
  padding: 0.5em 1.5em;
  border: 0;
  font-weight: 600;
  cursor: pointer;
}

/*すべてのベースボックス*/
.box-contents {
  position: relative;
  margin: 0 auto;
  margin-top: min(112px, 18vw);
}

/*inner*/
.box-inner {
  margin: 0 auto;
  width: min(1180px, 95%);
}

/*セクションタイトル*/
.ttl-section {
  margin: 0 auto;
  margin-bottom: max(24px, 2vw);
}
.ttl-section.center {
  text-align: center;
}
.ttl-section.right {
  text-align: right;
}

/*input*/
input, textarea {
  margin-top: 0.5em;
  padding: 1.5em;
  width: 100%;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
}

/*やむを得ずのpc/sp表示切替*/
.pc {
  display: inline-block;
}

.sp {
  display: none;
}

@media (max-width: 480px) {
  .pc {
    display: none;
  }
  .sp {
    display: inline-block;
  }
}
/*topへ*/
.pagetop {
  position: fixed;
  right: 1vw;
  bottom: 1vw;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
  border-radius: 100%;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transition: 0.3s ease all;
  background-color: var(--c-primary);
}
.pagetop .on {
  position: absolute;
  bottom: 11vw;
}
.pagetop .visible {
  opacity: 1;
}
.pagetop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: var(--c-txt);
}
@media (max-width: 480px) {
  .pagetop .on {
    position: absolute;
    bottom: 27em;
  }
}/*# sourceMappingURL=common.css.map */