@charset "UTF-8";

/* 変数の定義 */
:root {
  --min-content-width: 375px;
  --keycolor: #006eba;
}

/* ========================================
   CUSTOM STYLES - Add your modifications here
   ======================================== */

/* Example: Make two images the same size */
.sec04-pic01_img,
.sec04-pic02_img {
  width: 300px;
  height: 300px;
  object-fit: cover;
}

/* Example: Change colors */
.custom-color {
  color: #ff6b6b;
}

/* Example: Add spacing */
.custom-spacing {
  margin: 20px 0;
  padding: 15px;
}

._sp__only {
  display: none;
}
@media screen and (max-width: 767px) {
  ._sp__only {
    display: initial;
  }
}
/* ======================================== */

html {
  scroll-behavior: smooth;
  max-width: var(--content-width);
  font-family: "Noto Sans JP", sans-serif;
  color: var(--keycolor);
  scroll-padding-top: 100px;
}
@media screen and (max-width: 767px) {
  html {
    scroll-behavior: unset;
    scroll-padding-top: calc(76 / 375 * 100vw);
  }
}

.scroll-lock {
  overflow: hidden;
  height: 100vh;
}

a {
  transition: 0.3s;
}
a:hover {
  opacity: 0.6;
}
/*  */
header {
  display: flex;
  width: 100%;
  height: 100px;
  position: fixed;

  padding: 0 40px;
  align-items: center;
  justify-content: space-between;
  background-color: #fff462;
  z-index: 9999;
}

@media screen and (max-width: 767px) {
  header {
    height: calc(76 / 375 * 100vw);
    padding: 0 calc(20 / 375 * 100vw);
  }
}
.header_h1 {
  height: 100px;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--keycolor);
}
.header_h1 .h1-copy {
  font-size: 18px;
  font-weight: 400;
  font-family: "Anton", sans-serif;
  letter-spacing: 0.1em;
}
.header_h1 .h1-kana {
  font-size: 0.6em;
}
@media screen and (max-width: 767px) {
  .header_h1 {
    padding-top: 0.2em;
    height: calc(76 / 375 * 100vw);
    font-size: calc(26 / 375 * 100vw);
  }
  .header_h1 .h1-copy {
    font-size: calc(16 / 375 * 100vw);
  }
}
.header-menu {
  display: flex;
  width: fit-content;
  gap: 32px;
  align-items: center;
}
@media screen and (max-width: 954px) {
  /* SPメニュー */
  .header-menu {
    display: block;
    width: 100vw;
    max-height: 100vh;
    padding: 0 5.33% clamp(1px, calc(60 / 375 * 100vw), 120px);
    position: fixed;
    top: calc(76 / 375 * 100vw);
    left: 100vw;
    background-color: white;
    overflow-y: scroll;
    transition: 0.3s;
  }
}
.header-menu.active {
  left: 0;
}
.menu_ul {
  display: flex;
  width: fit-content;
  font-family: "Anton", sans-serif;
  font-size: 20px;
  line-height: 1.7;
  gap: 20px;
}
.menu_ul li a {
  color: var(--keycolor);
}
@media screen and (max-width: 954px) {
  .menu_ul {
    display: block;
    width: 100%;
    font-size: clamp(1px, calc(30 / 375 * 100vw), 60px);
    line-height: 1.7;
    gap: unset;
  }
  .menu_ul li {
    display: flex;
    width: 100%;
    height: calc(104 / 375 * 100vw);
    position: relative;
    max-height: 208px;
    border-bottom: solid 1px var(--keycolor);
    align-items: center;
  }
  .menu_ul li a {
    display: flex;
    width: 100%;
    height: inherit;
    position: relative;
    align-items: center;
  }

  .menu_ul li a::before {
    content: "";
    width: clamp(1px, calc(27 / 375 * 100vw), 54px);
    height: auto;
    aspect-ratio: 27/15;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    background-image: url("../images/arrow@2x.webp");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  .menu_ul li a::after {
    width: fit-content;
    position: absolute;
    left: 0;
    bottom: clamp(1px, calc(12 / 375 * 100vw), 24px);
    font-weight: 600;
    font-size: clamp(1px, calc(13 / 375 * 100vw), 26px);
    letter-spacing: 0.03em;
    line-height: calc(24 / 13);
    color: #3b4043;
  }
  .menu_ul li .message_a::after {
    content: "メッセージ";
  }
  .menu_ul li .profile_a::after {
    content: "プロフィール";
  }
  .menu_ul li .policies_a::after {
    content: "取り組み";
  }
  .menu_ul li .action_a::after {
    content: "活動";
  }
  .menu_ul li .contact_a::after {
    content: "能勢 泰人 後援会事務所";
  }
}
@media screen and (max-width: 1070px) {
  .menu_ul {
    gap: 10px;
  }
}
@media screen and (max-width: 1070px) {
  .header-menu {
    gap: 10px;
  }
}
@media screen and (max-width: 1070px) {
  .header-menu.active {
    top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .header-menu.active {
    top: calc(76 / 375 * 100vw);
  }
}
@media screen and (max-width: 1070px) {
  .header-menu {
    top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .header-menu {
    top: calc(76 / 375 * 100vw);
  }
}
@media screen and (max-width: 1010px) {
  header {
    padding: 0 15px;
  }
}
@media screen and (max-width: 954px) {
  header {
    padding: 0 40px;
  }
}
.menu-sns_ul {
  display: flex;
  padding: 18px 28px;
  border-radius: 12px;
  background-color: white;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.menu-sns_ul li {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
}
.menu-sns_ul li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sp-btn {
  display: none;
  width: calc(50 / 375 * 100vw);
  height: auto;
}

@media screen and (max-width: 954px) {
  .sp-btn {
    display: block;
    width: 50px;
  }
}
#sp-btn-open.active {
  display: none;
}
#sp-btn-close {
  display: none;
}
#sp-btn-close.active {
  display: block;
}
.sp-menu-line {
  display: none;
}

@media screen and (max-width: 954px) {
  .sp-menu-line {
    display: block;
    padding: clamp(1px, calc(32 / 375 * 100vw), 64px) 6% 0;
    text-align: center;
  }
}

.sp-menu-line_h2 {
  margin-bottom: 1em;
  font-size: clamp(1px, calc(18 / 375 * 100vw), 36px);
  line-height: 1.6;
  font-weight: 500;
  color: #00b900;
}
.sp-menu-line_p {
  margin-bottom: 1em;
  font-size: clamp(1px, calc(14 / 375 * 100vw), 28px);
  line-height: 1.6;
  font-weight: 500;
  color: #00b900;
}
.sp-menu-line-btn-line {
  width: clamp(1px, calc(190 / 375 * 100vw), 380px);
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(1px, calc(20 / 375 * 100vw), 40px);
}
/*  */
#kv {
  display: block;
  width: 100%;
  position: relative;
  padding-top: 100px;
  background-color: #fff462;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #kv {
    padding-top: calc(76 / 375 * 100vw);
  }
}
#kv img {
  display: block;
  height: auto;
  position: absolute;
  bottom: 0;
}
.kv-inner {
  width: 100%;
  max-width: 1600px;
  height: calc(700 / 1600 * 100vw);
  max-height: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kv-inner {
    height: calc(597 / 375 * 100vw);
    max-height: unset;
  }
}

.kv-text-01_img {
  width: calc(642 / 1600 * 100vw);
  max-width: 642px;
  left: clamp(1px, calc(200 / 1600 * 100vw), 200px);
  transform: translateY(100%);
  animation: text-slide-01 4s linear 2s forwards;
}
@keyframes text-slide-01 {
  from {
    bottom: 0;
    transform: translateY(100%);
  }
  to {
    bottom: clamp(1px, calc(700 / 1600 * 100vw), 700px);
    transform: translateY(-100%);
  }
}
@media screen and (max-width: 767px) {
  .kv-text-01_img {
    width: calc(339 / 375 * 100vw);
    left: calc(18 / 375 * 100vw);
  }
  @keyframes text-slide-01 {
    from {
      bottom: 0;
      transform: translateY(100%);
    }
    to {
      bottom: calc(597 / 375 * 100vw);
      transform: translateY(-100%);
    }
  }
}

.kv-text-zz_img {
  width: calc(620 / 1600 * 100vw);
  max-width: 620px;
  left: clamp(1px, calc(200 / 1600 * 100vw), 200px);
  transform: translateY(100%);
  animation: text-slide-zz 4s linear 4s forwards;
}
@keyframes text-slide-zz {
  from {
    bottom: 0;
    transform: translateY(100%);
  }
  to {
    bottom: clamp(1px, calc(700 / 1600 * 100vw), 700px);
    transform: translateY(-100%);
  }
}
@media screen and (max-width: 767px) {
  .kv-text-zz_img {
    width: calc(350 / 375 * 100vw);
    height: auto;
    left: calc(18 / 375 * 100vw);
    animation: text-slide-zz 4s linear 4s forwards;
  }
  @keyframes text-slide-zz {
    from {
      bottom: 0;
      transform: translateY(100%);
    }
    to {
      bottom: calc(597 / 375 * 100vw);
      transform: translateY(-120%);
    }
  }
}

.kv-text-02_img {
  width: calc(654 / 1600 * 100vw);
  max-width: 654px;
  left: clamp(1px, calc(200 / 1600 * 100vw), 200px);
  transform: translateY(100%);
  animation: text-slide-02 4s linear 6s forwards;
}
@keyframes text-slide-02 {
  from {
    bottom: 0;
    transform: translateY(100%);
  }
  to {
    bottom: clamp(1px, calc(700 / 1600 * 100vw), 700px);
    transform: translateY(-100%);
  }
}
@media screen and (max-width: 767px) {
  .kv-text-02_img {
    width: calc(321 / 375 * 100vw);
    left: calc(18 / 375 * 100vw);
  }
  @keyframes text-slide-02 {
    from {
      bottom: 0;
      transform: translateY(100%);
    }
    to {
      bottom: calc(597 / 375 * 100vw);
      transform: translateY(-100%);
    }
  }
}

.kv-text-03_img {
  width: calc(1200 / 1600 * 100vw);
  max-width: 1200px;
  left: clamp(1px, calc(200 / 1600 * 100vw), 200px);
  transform: translateY(100%);
  animation: text-slide-03 4s ease-in-out 8s forwards;
}
@keyframes text-slide-03 {
  from {
    bottom: 0;
  }
  to {
    bottom: clamp(1px, calc(700 / 1600 * 100vw), 700px);
  }
}
@media screen and (max-width: 767px) {
  .kv-text-03_img {
    width: calc(339 / 375 * 100vw);
    left: calc(22 / 375 * 100vw);
  }
  @keyframes text-slide-03 {
    from {
      bottom: 0;
    }
    to {
      bottom: calc(597 / 375 * 100vw);
    }
  }
}
.kv-text-04_img {
  width: calc(492 / 1600 * 100vw);
  max-width: 492px;
  left: clamp(1px, calc(226 / 1600 * 100vw), 226px);
  transform: translateY(100%);
  animation: text-slide-04 4s ease-in-out 9s forwards;
}
@keyframes text-slide-04 {
  from {
    bottom: clamp(-465px, calc(-465 / 1600 * 100vw), -1px);
  }
  to {
    bottom: clamp(1px, calc(235 / 1600 * 100vw), 235px);
  }
}
@media screen and (max-width: 767px) {
  .kv-text-04_img {
    width: calc(300 / 375 * 100vw);
    left: calc(37 / 375 * 100vw);
  }
  @keyframes text-slide-04 {
    from {
      bottom: calc(-438 / 375 * 100vw);
    }
    to {
      bottom: calc(143 / 375 * 100vw);
    }
  }
}

.kv-pic-01_img {
  width: 100%;
  top: 0;
}
.mask-container-01 {
  display: inline-block;
  width: calc(734 / 1600 * 100vw);
  max-width: 734px;
  height: calc(700 / 1600 * 100vw);
  max-height: 700px;
  position: absolute;
  left: clamp(1px, calc(718 / 1600 * 100vw), 718px);
  top: 0;
  overflow: hidden;
  animation: revealMask-01 4s linear 6s forwards;
}
/* アニメーション：下から画像を徐々に見せる */
@keyframes revealMask-01 {
  from {
    height: clamp(1px, calc(700 / 1600 * 100vw), 700px);
  }
  to {
    height: 0; /* 画像の高さに合わせて調整 */
  }
}
@media screen and (max-width: 767px) {
  .mask-container-01 {
    width: 100%;
    height: calc(405 / 375 * 100vw);
    left: 0;
    top: calc(192 / 375 * 100vw);
  }
  @keyframes revealMask-01 {
    from {
      height: calc(405 / 375 * 100vw);
    }
    to {
      height: 0; /* 画像の高さに合わせて調整 */
    }
  }
}
.kv-pic-02_img {
  width: 100%;
  left: 0;
  bottom: 0;
}
.mask-container-02 {
  display: inline-block;
  width: calc(734 / 1600 * 100vw);
  max-width: 734px;
  height: 0;
  position: absolute;
  left: clamp(1px, calc(718 / 1600 * 100vw), 718px);
  bottom: 0;
  overflow: hidden;
  animation: revealMask-02 4s linear 6s forwards;
}
.masked-image {
  display: block;
  width: 100%;
  height: auto;
}

/* アニメーション：下から画像を徐々に見せる */
@keyframes revealMask-02 {
  from {
    height: 0;
  }
  to {
    height: clamp(
      1px,
      calc(700 / 1600 * 100vw),
      700px
    ); /* 画像の高さに合わせて調整 */
  }
}
@media screen and (max-width: 767px) {
  .mask-container-02 {
    width: 100%;
    left: 0;
  }
  @keyframes revealMask-02 {
    from {
      height: 0;
    }
    to {
      height: calc(405 / 375 * 100vw);
    }
  }
}

/*  */
.sec02 {
  background-color: var(--keycolor);
}
.sec02 .sec-inner {
  display: flex;
  max-width: 900px;
  margin: 0 auto;
  padding: 96px 0;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .sec02 .sec-inner {
    padding: 96px 5%;
  }
}

.sec02_h2 {
  display: block;
  width: 172px;
  width: fit-content;
  height: max-content;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 900;
  color: #fff462;
  writing-mode: vertical-rl;
  -webkit-font-smoothing: antialiased;
}
.sec02_h2-text1 {
  display: block;
  font-size: 46px;
  line-height: 2;
}
.sec02_h2-text2 {
  display: block;
  border-right: solid 2px #fff462;
  font-size: 80px;
  line-height: 1.6;
}
.sec02_h2-text2 span {
  font-size: 0.65em;
}
.sec02-block {
  width: 624px;
}

.sec02_text-block {
}
.sec02_text-block p {
  margin-bottom: 1em;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: #fff462;
}
.sec02_text-block p span {
  margin: 0 0.2em;
  padding: 0.1em;
  background-color: #fff462;
  font-size: 30px;
  color: var(--keycolor);
}
.sec02-card {
  margin-top: 40px;
  padding: 28px 32px;
  border-radius: 8px;
  background-color: white;
  border: dotted 2px var(--keycolor);
}
.sec02-card p {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 600;
}
@media screen and (max-width: 1000px) {
  .sec02 .sec-inner {
    padding: 96px 5%;
  }
  .sec02-block {
    width: 65%;
  }
  .sec02_text-block p {
    font-size: calc(28px * 0.8);
  }
  .sec02_text-block p span {
    font-size: calc(30px * 0.8);
  }
  .sec02-card p {
    font-size: calc(14px * 0.8);
  }
}

@media screen and (max-width: 767px) {
  .sec02 {
    padding: calc(64 / 375 * 100vw) 5.33% calc(56 / 375 * 100vw);
    background-color: #fff462;
  }
  .sec02 .sec-inner {
    display: block;
    padding: unset;
  }
  .sec02_h2 {
    display: block;
    width: 28%;
    margin: 0 auto calc(72 / 375 * 100vw);
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 900;
    color: var(--keycolor);
    writing-mode: vertical-rl;
    -webkit-font-smoothing: antialiased;
  }
  .sec02_h2-text1 {
    display: block;
    font-size: calc(26 / 375 * 100vw);
    line-height: 2;
  }
  .sec02_h2-text2 {
    display: block;
    border-right: solid 2px var(--keycolor);
    font-size: calc(46 / 375 * 100vw);
    line-height: 1.6;
  }
  .sec02-block {
    width: auto;
  }
  .sec02_text-block {
    margin-bottom: calc(40 / 375 * 100vw);
    padding-left: calc(5 / 375 * 100vw);
  }
  .sec02_text-block p {
    margin-bottom: unset;
    color: var(--keycolor);
    font-size: calc(16 / 375 * 100vw);
    font-weight: 600;
    line-height: 2.2;
  }
  .sec02_text-block p span {
    margin: 0 0.2em;
    padding: 0.25em;
    background-color: var(--keycolor);
    font-size: calc(18 / 375 * 100vw);
    color: #fff462;
  }
  .sec02-card {
    margin-top: unset;
    padding: calc(20 / 375 * 100vw);
    border-radius: calc(8 / 375 * 100vw);
    background-color: white;
    border: dotted 2px var(--keycolor);
  }
  .sec02-card p {
    font-size: calc(14 / 375 * 100vw);
    line-height: 1.8;
    font-weight: 600;
  }
}
/*  */
.sec03 {
  background-color: #fff462;
}
.sec03 .sec-inner {
  display: flex;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 5.56%;
  justify-content: space-between;
}
.sec03_h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 12px;
}

.sec03_h2 span {
  font-size: 0.56em;
}
.sec03_h3 {
  font-family: "Anton", sans-serif;
  font-size: 26px;
}
.text-block p.birthday {
  font-size: 16px;
  margin-bottom: 17px;
}
.text-block p.birthday .age {
  font-size: 26px;
}
.text-block p.birthday .toshi {
  font-size: 18px;
}
.text-block p.school {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 25px;
}
.text-block p.keireki {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 24px;
}
.text-block p.family {
  font-size: 15px;
  line-height: 2;
}
.text-block p.family span {
  font-size: 0.4em;
  line-height: 2;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .sec03 {
    background-color: var(--keycolor);
  }
  .sec03 .sec-inner {
    display: block;
    padding: calc(53 / 375 * 100vw) 5.33% calc(56 / 375 * 100vw);
    justify-content: unset;
  }

  .sec03_h2 {
    color: #fff462;
    font-size: calc(42 / 375 * 100vw);
    margin-bottom: calc(8 / 375 * 100vw);
  }
  .sec03_h2 span {
    color: white;
  }
  .sec03_h3 {
    font-size: calc(22 / 375 * 100vw);
    color: #fff462;
    margin-bottom: calc(32 / 375 * 100vw);
  }
  .text-block p.birthday {
    color: white;
    font-size: calc(16 / 375 * 100vw);
    margin-bottom: calc(17 / 375 * 100vw);
  }
  .text-block p.birthday .age {
    color: white;
    font-size: calc(30 / 375 * 100vw);
  }
  .text-block p.school {
    color: white;
    font-size: calc(15 / 375 * 100vw);
    margin-bottom: calc(25 / 375 * 100vw);
  }

  .text-block p.keireki {
    color: white;
    font-size: calc(14 / 375 * 100vw);
    margin-bottom: calc(24 / 375 * 100vw);
  }

  .text-block p.family {
    color: white;
    font-size: calc(15 / 375 * 100vw);
  }
  .text-block p.family span {
    color: #fff462;
  }
}
/*  */
.sec04 {
  padding-top: 80px;
  background-color: white;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .sec04 {
    padding-top: calc(66 / 375 * 100vw);
  }
}

.sec04-inner {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.sec04 .sec-inner.sec04-top {
  max-width: 1200px;
  position: relative;
  margin: 0 auto;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .sec04 .sec-inner.sec04-top {
    max-width: 750px;

    padding: clamp(1px, calc(42 / 375 * 100vw), 48px) 5.33% 0;
    padding: 0 5.33% 0;
  }
}
.sec04-top_h2 {
  margin-bottom: 0.5em;
  font-size: 42px;
  color: var(--keycolor);
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  .sec04-top_h2 {
    margin-bottom: 0.5em;
    font-size: clamp(1px, calc(42 / 375 * 100vw), 84px);
    color: var(--keycolor);
    font-weight: 800;
  }
}
.sec04-top_h2 span {
  font-size: 0.57em;
  color: #3b4043;
}
.sec04-top_h3 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.25;
  color: #3b4043;
}
.sec04-top_h3 span {
  color: var(--keycolor);
}
@media screen and (max-width: 767px) {
  .sec04-top_h3 {
    font-size: clamp(1px, calc(40 / 375 * 100vw), 80px);
    font-weight: 800;
    line-height: 1.25;
    color: #3b4043;
  }
  .sec04-top_h3 span {
    color: var(--keycolor);
  }
}
.sec04-top_subcopy_p {
  margin-top: 1em;
  font-family: "Anton", sans-serif;
  font-size: 24px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .sec04-top_subcopy_p {
    margin-top: 1em;
    font-family: "Anton", sans-serif;
    font-size: clamp(1px, calc(14 / 375 * 100vw), 28px);
    line-height: 2;
  }
}
.sec04-pic01_img {
  width: 100%;
  height: auto;
  margin-top: clamp(1px, calc(31 / 375 * 100vw), 62px);
}
.sec04-pic02_img {
  width: calc(112 / 375 * 100vw);
  max-width: 224px;
  height: auto;
  position: absolute;
  right: clamp(1px, calc(10 / 375 * 100vw), 20px);
  bottom: clamp(1px, calc(188 / 375 * 100vw), 376px);
}

/*  */
.sec04-2nd {
  width: 470px;
  height: auto;
  position: relative;
  margin-top: -10px;
  padding-top: 45px;
  aspect-ratio: 1/1;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background-color: #fff462;
  text-align: center;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .sec04-2nd {
    width: 125vw;
    max-width: 938px;
    height: auto;
    position: relative;
    margin-top: clamp(-20px, calc(-10 / 375 * 100vw), -1px);
    padding-top: clamp(1px, calc(46 / 375 * 100vw), 92px);
    aspect-ratio: 1/1;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background-color: #fff462;
    text-align: center;
    z-index: 10;
  }
}
.sec04-2nd_h2 {
  margin-bottom: 35px;
  font-size: 32px;
  line-height: calc(42 / 32);
  font-weight: 800;
}

@media screen and (max-width: 767px) {
  .sec04-2nd_h2 {
    margin-bottom: clamp(1px, calc(33 / 375 * 100vw), 66px);
    font-size: clamp(1px, calc(32 / 375 * 100vw), 64px);
    line-height: 1.3;
    font-weight: 800;
  }
}
.sec04-2nd_p {
  font-size: 18px;
  line-height: 2;
  text-decoration: dotted underline;
  text-underline-offset: 0.25em;
}
@media screen and (max-width: 767px) {
  .sec04-2nd_p {
    font-size: clamp(1px, calc(18 / 375 * 100vw), 36px);
    line-height: 2;
    text-decoration: dotted underline;
    text-underline-offset: 0.25em;
  }
}
.sec04-2nd_span {
  display: block;
  width: 8px;
  height: auto;
  margin: 18px auto;
  aspect-ratio: 1/1;
  background-color: var(--keycolor);
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .sec04-2nd_span {
    display: block;
    width: calc(8 / 375 * 100vw);
    max-width: 16px;
    height: auto;
    margin: clamp(1px, calc(16 / 375 * 100vw), 32px) auto;
    aspect-ratio: 1/1;
    background-color: var(--keycolor);
    border-radius: 50%;
  }
}
/* */
.sec04-3rd {
  /* height: 3321px; */
  max-width: 1200px;
  height: auto;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 260px;
  padding-bottom: 0;
  overflow-x: hidden;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .sec04-3rd {
    max-width: 750px;
    height: auto;
    margin-top: clamp(-224px, calc(-112 / 375 * 100vw), -1px);
    padding-bottom: clamp(1px, calc(100 / 375 * 100vw), 200px);
  }
}
/* .sec04-3rd::before { */
.sec04-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    #fff462 0%,
    #fff462 14.29%,
    #00acd3 30.16%,
    #fff462 47.44%,
    #00acd3 69.24%,
    #cfe777 87.32%,
    #e6ed6d 89.66%,
    #fff462 100%
  );
  /* background: red; */
  opacity: 0.1;
  /* z-index: -1; */
}

.sec04-3rd-cards {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;

  justify-content: space-between;
  padding: 0 0 202px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec04-3rd-cards {
    display: block;
    flex-wrap: unset;
    margin-left: auto;
    margin-right: auto;

    justify-content: space-between;
    /* padding: clamp(1px, calc(153 / 375 * 100vw), 306px) 5.33% 0; */
    padding: clamp(1px, calc(153 / 375 * 100vw), 306px) 5.33%
      clamp(1px, calc(65 / 375 * 100vw), 130px);
    position: relative;
  }
}
.sec04-3rd-cards::before {
  content: "";
  display: block;
  width: 12px;
  height: 100%;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff462;
}
@media screen and (max-width: 767px) {
  .sec04-3rd-cards::before {
    width: calc(12 / 375 * 100vw);
    max-width: 24px;
    top: 0;
    left: clamp(1px, calc(20 / 375 * 100vw), 40px);
    background-color: #fff462;
    transform: unset;
  }
}
.sec04-3rd-cards::after {
  content: "";
  display: block;
  width: 100px;
  height: 72px;
  position: absolute;
  background-color: #fff462;
  clip-path: polygon(0 0, 100% 0, 50% 100%, 0 0);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .sec04-3rd-cards::after {
    width: calc(70 / 375 * 100vw);
    max-width: 140px;
    height: calc(86 / 375 * 100vw);
    max-height: 172px;
    position: absolute;
    background-color: #fff462;
    clip-path: polygon(0 0, 100% 0, 0 100%, 0 0);
    bottom: clamp(-44px, calc(-22 / 375 * 100vw), -1px);
    left: clamp(1px, calc(20 / 375 * 100vw), 40px);
    transform: unset;
  }
}
.sec04-3rd-card {
  width: 50%;
  height: 100%;
  position: relative;
  padding-left: 80px;

  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .sec04-3rd-card {
    width: 100%;
    margin-bottom: clamp(1px, calc(64 / 375 * 100vw), 128px);
    padding-left: clamp(1px, calc(52 / 375 * 100vw), 104px);
    padding-bottom: clamp(1px, calc(234 / 375 * 100vw), 468px);
  }
}
.sec04-3rd-card:nth-child(odd) {
  padding-left: 0;
  padding-right: 80px;
}
@media screen and (max-width: 767px) {
  .sec04-3rd-card:nth-child(odd) {
    padding-left: clamp(1px, calc(52 / 375 * 100vw), 104px);
    padding-right: unset;
  }
}
/*  */
.sec04-3rd-card:nth-child(even) {
  position: relative;
  top: 350px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .sec04-3rd-card:nth-child(even) {
    top: unset;
    left: unset;
  }
}

.sec04-3rd-card:nth-of-type(6) {
  margin-bottom: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .sec04-3rd-card:nth-of-type(6) {
    margin-bottom: clamp(1px, calc(64 / 375 * 100vw), 128px);
    padding-bottom: clamp(1px, calc(234 / 375 * 100vw), 468px);
  }
}
.sec04-3rd-card_h2 {
  position: relative;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.03em;
  line-height: calc(44 / 28);
  color: var(--keycolor);
}
.sec04-3rd-card_h2::before {
  content: "";
  width: 38px;
  height: 56px;
  position: absolute;
  background-color: #fff462;
  clip-path: polygon(0 0, 100% 50%, 0 100%, 0 0);
  top: -0.2em;
  left: -80px;
}
@media screen and (max-width: 767px) {
  .sec04-3rd-card_h2 {
    /* font-weight: 800; */
    font-size: clamp(1px, calc(23 / 375 * 100vw), 46px);
    letter-spacing: 0.03em;
    line-height: calc(33 / 22);
    color: var(--keycolor);
  }
  .sec04-3rd-card_h2::before {
    width: 24px;
    height: 36px;
    top: 0.15em;
    left: clamp(-80px, calc(-40 / 375 * 100vw), -1px);
  }
}

.sec04-3rd-card:nth-child(odd) .sec04-3rd-card_h2::before {
  left: unset;
  right: -80px;
  clip-path: polygon(100% 0, 100% 100%, 0 50%, 100% 0);
}
@media screen and (max-width: 767px) {
  .sec04-3rd-card:nth-child(odd) .sec04-3rd-card_h2::before {
    width: 24px;
    height: 36px;
    top: 0.15em;
    left: clamp(-80px, calc(-40 / 375 * 100vw), -1px);
    right: unset;
    clip-path: polygon(0 0, 100% 50%, 0 100%, 0 0);
  }
}

.sec04-3rd-card_h2 span {
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-size: 48px;
  line-height: calc(28 / 48);
}
@media screen and (max-width: 767px) {
  .sec04-3rd-card_h2 span {
    font-size: clamp(1px, calc(30 / 375 * 100vw), 60px);
  }
}

.sec04-3rd-card_h3 {
  width: fit-content;
  margin-top: 32px;
  margin-bottom: 32px;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.03em;
  line-height: calc(36 / 22);
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec04-3rd-card_h3 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: clamp(1px, calc(20 / 375 * 100vw), 40px);
    line-height: calc(36 / 20);
  }
}
.sec04-3rd-card_h3::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: calc(150 / 375 * 100vw);
  max-width: 300px;
  height: 2px; /* ドットの直径に合わせる */
  bottom: 0.8em;
  right: -0.25em;
  transform: translateX(100%);
  background-image: repeating-radial-gradient(
    circle,
    #00acd3 0 1px,
    transparent 1px 4px
  );
  background-repeat: repeat-x;
  background-size: 100% 2px; /* ドット間隔 × 高さ */
}
@media screen and (max-width: 767px) {
  .sec04-3rd-card_h3::after {
    width: calc(150 / 375 * 100vw);
    max-width: 300px;
    height: clamp(1px, calc(2 / 375 * 100vw), 4px); /* ドットの直径に合わせる */
    bottom: 0.8em;
    right: -0.25em;
    transform: translateX(100%);
    background-image: repeating-radial-gradient(
      circle,
      #00acd3 0 clamp(1px, calc(1 / 375 * 100vw), 2px),
      transparent clamp(1px, calc(1 / 375 * 100vw), 2px)
        clamp(1px, calc(6 / 375 * 100vw), 12px)
    );
    background-repeat: repeat-x;
    background-size: clamp(1px, calc(6 / 375 * 100vw), 12px)
      clamp(1px, calc(2 / 375 * 100vw), 4px); /* ドット間隔 × 高さ */
  }
}

.sec04-3rd-card_ul {
  list-style: none;
  padding-left: 1.2em;
  font-size: clamp(1px, calc(14 / 375 * 100vw), 28px);
}
.sec04-3rd-card_li {
  font-size: 15px;
  position: relative;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
  line-height: calc(24 / 15);
  color: #3b4043;
  text-align: justify;
}
.sec04-3rd-card_li:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .sec04-3rd-card_li {
    /* font-size: clamp(1px, calc(14 / 375 * 100vw), 28px); */
    margin-bottom: 0;
    letter-spacing: 0.03em;
    line-height: calc(22 / 14);
  }
}
.sec04-3rd-card_li::before {
  content: "●";
  font-size: 0.5em;
  position: absolute;
  color: black;
  display: inline-block;
  width: 1em;
  margin-left: -2em;
  top: 0.8em;
  /* transform: translateY(-50%); */
}

@media screen and (max-width: 767px) {
  .sec04-3rd-card_li::before {
    content: "●";
    position: absolute;
    color: black;
    display: inline-block;
    width: 1em;
    margin-left: -1.2em;
  }
}
.sec04-3rd-card_img {
  width: 260px;
  height: auto;
  position: relative;
  margin-top: 0px;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  .sec04-3rd-card_img {
    width: calc(210 / 375 * 100vw);
    max-width: 420px;
    height: auto;
    position: absolute;
    margin-top: 0;
    bottom: 0;
  }
}
.sec04-3rd-card:nth-child(odd) .sec04-3rd-card_img {
  margin-top: 32px;
  right: 0;
}

.sec04-3rd-card:nth-child(even) .sec04-3rd-card_img {
  margin-top: 4px;
  left: clamp(1px, calc(80 / 375 * 100vw), 160px);
}
@media screen and (max-width: 767px) {
  .sec04-3rd-card:nth-child(odd) .sec04-3rd-card_img {
    margin-top: 0;
    right: unset;
    left: clamp(1px, calc(80 / 375 * 100vw), 160px);
  }

  .sec04-3rd-card:nth-child(even) .sec04-3rd-card_img {
    margin-top: 0;
    left: clamp(1px, calc(80 / 375 * 100vw), 160px);
  }
}
/*  */
.sec04-4th {
  width: 470px;
  height: auto;
  position: relative;
  padding-top: 94px;
  aspect-ratio: 1/1;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background-color: #fff462;
  text-align: center;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .sec04-4th {
    width: 125vw;
    max-width: 938px;
    height: auto;
    position: relative;
    margin-top: clamp(-200px, calc(-100 / 375 * 100vw), -1px);
    padding-top: clamp(1px, calc(90 / 375 * 100vw), 180px);
    aspect-ratio: 1/1;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background-color: #fff462;
    text-align: center;
    z-index: 10;
  }
}
.sec04-4th_h2 {
  margin-top: 36px;
  font-size: 32px;
  line-height: calc(46 / 32);
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .sec04-4th_h2 {
    margin-top: 0.75em;
    font-size: clamp(1px, calc(32 / 375 * 100vw), 64px);
    line-height: calc(46 / 32);
    font-weight: 900;
  }
}

.sec04-4th_h2 span {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url("../images/bikkuri@2x.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.sec04-4th_p {
  font-size: 16px;
  line-height: calc(30 / 16);
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .sec04-4th_p {
    font-size: clamp(1px, calc(16 / 375 * 100vw), 32px);
    line-height: calc(30 / 16);
    font-weight: 600;
  }
}
.sec04-5th {
  display: flex;
  max-width: 960px;
  margin-top: -300px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 20;
  justify-content: right;
}
@media screen and (max-width: 767px) {
  .sec04-5th {
    max-width: 750px;
    margin-top: clamp(-120px, calc(-60 / 375 * 100vw), -1px);
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 20;
    justify-content: unset;
  }
}
.sec04-5th_img {
  width: 304px;
  height: auto;
  margin-right: 50px;
}
@media screen and (max-width: 767px) {
  .sec04-5th_img {
    width: calc(304 / 375 * 100vw);
    max-width: 608px;
    height: auto;
    margin-left: clamp(1px, calc(20 / 375 * 100vw), 40px);
    margin-right: unset;
  }
}
/*  */
.sec06 {
  display: none;
  background-color: #fff462;
}
.sec06 img {
  display: block;
  width: 100vw;
  max-width: 750px;
  height: auto;
  margin: 0 auto;
}
/*  */
.sec07 {
  display: none;
  background-color: white;
  position: relative;
}
.sec07 img {
  display: block;
  width: 100vw;
  height: auto;
  max-width: 750px;
  margin: 0 auto;
}
img.btn-line {
  display: block;
  position: absolute;
  width: calc(254 / 375 * 100vw);
  max-width: 508px;
  height: auto;
  left: 50%;
  bottom: clamp(1px, calc(709 / 375 * 100vw), 1418px);
  transform: translateX(-50%);
}

/*  */

.sec08 {
  background-color: #fff462;
}
.sec08 .sec-inner {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .sec08 .sec-inner {
    display: block;
    max-width: 750px;
    margin: 0 auto;
    padding: clamp(1px, calc(56 / 375 * 100vw), 112px) 5.33%
      clamp(1px, calc(32 / 375 * 100vw), 64px);
  }
}
.contact-text-area {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .contact-text-area {
    width: 100%;
  }
}
.contact-map-area {
  max-width: 450px;
}
@media screen and (max-width: 767px) {
  .contact-map-area {
  }
}
.sec08_h2 {
  font-size: 42px;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 900;
  color: var(--keycolor);
  margin-bottom: 12px;
}
.sec08_h2 span {
  font-size: 0.57em;
}
@media screen and (max-width: 767px) {
  .sec08_h2 {
    font-size: clamp(1px, calc(36 / 375 * 100vw), 82px);
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 900;
    color: var(--keycolor);
    margin-bottom: 0.25em;
  }
  .sec08_h2 span {
    font-size: 0.57em;
  }
}
.sec08_h3 {
  font-size: 26px;
  line-height: 1.5;

  font-family: "Anton", sans-serif;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .sec08_h3 {
    font-size: clamp(1px, calc(22 / 375 * 100vw), 44px);
    line-height: 1.5;

    font-family: "Anton", sans-serif;
    margin-bottom: 1.5em;
  }
}
.sec08_h4 {
  margin-bottom: 24px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .sec08_h4 {
    margin-bottom: 0.5em;
    font-size: clamp(1px, calc(22 / 375 * 100vw), 44px);
    font-weight: 600;
    line-height: 1.8;
  }
}
.sec08_address {
  margin-bottom: 24px;
  font-size: 19px;
  line-height: calc(31 / 19);
}
@media screen and (max-width: 767px) {
  .sec08_address {
    margin-bottom: 0.5em;
    font-size: clamp(1px, calc(16 / 375 * 100vw), 32px);
    line-height: 1.6;
  }
}
.sec08-tel_p,
.sec08-tel_a {
  display: inline;
  font-size: 24px;
  line-height: calc(30 / 24);
}
.sec08-tel_a {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .sec08-tel_p,
  .sec08-tel_a {
    display: inline;
    font-size: clamp(1px, calc(20 / 375 * 100vw), 40px);
    line-height: 1.3;
  }
  .sec08-tel_a {
    text-decoration: underline;
  }
}
.sec08-fax_p {
  margin-top: 22px;
  margin-bottom: 0;
  font-size: 20px;
  line-height: calc(29 / 20);
}
@media screen and (max-width: 767px) {
  .sec08-fax_p {
    margin-top: 1em;
    margin-bottom: 1.5em;
    font-size: clamp(1px, calc(16 / 375 * 100vw), 32px);
    line-height: 1.6;
  }
}
.sec08-map {
  width: 100%;
  height: auto;
  aspect-ratio: 335/ 260;
}
@media screen and (max-width: 767px) {
}
/*  */
.sec09 {
  padding: 92px 0;
  background-color: var(--keycolor);
}

@media screen and (max-width: 767px) {
  .sec09 {
    padding: clamp(1px, calc(56 / 375 * 100vw), 112px) 5.33%;
    background-color: var(--keycolor);
  }
}
.sec09 .sec-inner.title {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .sec09 .sec-inner.title {
    padding-bottom: calc(40 / 375 * 100vw);
  }
}
.sec09-title_h2 {
  font-size: 42px;
  font-weight: 900;
  color: #fff462;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .sec09-title_h2 {
    font-size: calc(36 / 375 * 100vw);
    line-height: calc(34 / 36);
  }
  .sec09-title_h2_span {
    display: block;
    margin-top: calc(24 / 375 * 100vw);
  }
}
.sec09-title_h2 span {
  font-size: 48px;
}
@media screen and (max-width: 767px) {
  .sec09-title_h2 span {
    font-size: calc(40 / 375 * 100vw);
    line-height: calc(50 / 40);
  }
}
.sec09-title_h2 span span.text-white {
  color: white;
}

.sec09-title_p {
  font-family: "Anton", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #fff462;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .sec09-title_p {
    margin-top: calc(12 / 375 * 100vw);

    font-size: calc(14 / 375 * 100vw);
    line-height: calc(24 / 14);
  }
}

.sec09 .sec-inner.sns {
  max-width: 1200px;
  position: relative;
  margin: 0 auto;
  padding-top: 64px;
  border-radius: 12px;
  background-color: white;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .sec09 .sec-inner.sns {
    /* width: 90%; */
    width: 100%;
    max-width: 675px;
    /* height: calc(800 / 375 * 100vw); */
    /* max-height: 1600px; */
    position: relative;
    margin: 0 auto;
    padding-top: clamp(1px, calc(56 / 375 * 100vw), 112px);
    border-radius: clamp(1px, calc(12 / 375 * 100vw), 12px);
    background-color: white;
    text-align: center;
  }
}
/*  */
.sns-instagram {
  width: 100%;
  margin-bottom: 64px;
}
.sec08-sns-instagram_a img {
  width: auto;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

/*  */
.sns-youtube {
  width: 100%;
  margin-bottom: 64px;
}
.sec08-sns-youtube_a img {
  width: auto;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

.sns-others {
  display: flex;
  width: 180px;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .sns-others {
    margin-bottom: calc(62 / 375 * 100vw);
  }
}
.sec08-sns-x_a img {
  width: auto;
  height: 100%;
}
.sec08-sns-facebook_a img {
  width: auto;
  height: 100%;
}
.sec09_h2 {
  margin-bottom: 39px;
  font-size: 28px;
  line-height: calc(44 / 28);
  font-weight: 500;
  color: #00b900;
}

@media screen and (max-width: 767px) {
  .sec09_h2 {
    margin-bottom: 1em;
    font-size: clamp(1px, calc(28 / 375 * 100vw), 56px);
    line-height: 1.6;
    font-weight: 500;
    color: #00b900;
  }
}
.sec09_p {
  margin-bottom: 0.5em;
  font-size: 20px;
  line-height: calc(32 / 20);
  font-weight: 500;
  color: #00b900;
}
@media screen and (max-width: 767px) {
  .sec09_p {
    margin-bottom: 1em;
    font-size: clamp(1px, calc(20 / 375 * 100vw), 40px);
    line-height: 1.6;
    font-weight: 500;
    color: #00b900;
  }
}
.sec09-pic_img {
  width: 480px;
  height: auto;
  margin-top: 44px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .sec09-pic_img {
    width: calc(300 / 375 * 100vw);
    max-width: 600px;
    height: auto;
    margin-top: calc(34 / 375 * 100vw);
    /* position: absolute; */
    /* left: 50%; */
    /* bottom: 0; */
    /* transform: translateX(-50%); */
  }
}
.sec09 .sec-inner.sns .btn-line {
  width: 254px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 47px;
  transform: unset;
  bottom: unset;
  left: unset;
}

@media screen and (max-width: 767px) {
  .sec09 .btn-line {
    bottom: clamp(1px, calc(300 / 375 * 100vw), 600px);
  }
}

/*  */
footer {
  width: 100%;
  padding: clamp(1px, calc(20 / 375 * 100vw), 40px) 0;
  background-color: var(--keycolor);
  text-align: center;
}
footer p {
  font-size: clamp(1px, calc(12 / 375 * 100vw), 24px);
  line-height: 2;
  color: white;
}
/* 
  KVスクロールアニメーション
*/
.scroll-animation {
  position: absolute;
  font-size: 12px;
  font-weight: 800;
  color: var(--keycolor);
  right: clamp(60px, calc(50vw - 700px), 700px);
  bottom: clamp(100px, calc(300 / 1200 * 100vw), 300px);
  z-index: 600;
  text-align: center;
  opacity: 0;
  animation: scroll-anm 1s 13s forwards;
}
@keyframes scroll-anm {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.scroll-animation::before {
  content: "";
  display: block;
  width: 6px;
  height: clamp(100px, calc(300 / 1200 * 100vw), 300px);
  position: absolute;
  background-color: #fff462;

  border-left: solid 3px #fff462;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  opacity: 0.5;
}
.scroll-animation::after {
  content: "";
  display: block;
  width: 5px;
  height: clamp(100px, calc(300 / 1200 * 100vw), 300px);
  position: absolute;
  background-color: var(--keycolor);
  border-right: solid 1px #fff462;
  border-left: solid 1px #fff462;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  animation: sdl 3s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
  0% {
    transform: translate(-50%, 100%) scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: translate(-50%, 100%) scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: translate(-50%, 100%) scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: translate(-50%, 100%) scale(1, 0);
    transform-origin: 0 100%;
  }
}
@media screen and (max-width: 767px) {
  .scroll-animation {
    font-size: calc(12 / 430 * 100vw);
    right: calc(12 / 430 * 100vw);
    bottom: calc(180 / 430 * 100vw);
  }
  .scroll-animation::before {
    height: calc(180 / 430 * 100vw);
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
  }
  .scroll-animation::after {
    height: calc(180 / 430 * 100vw);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
  }
}

/* インスタ投稿 */
#sbi_images {
  display: flex;
  flex-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  #sbi_images {
    flex-wrap: wrap;
  }
}
.sbi_type_image {
  width: 20%;
  height: auto;
  padding: 10px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .sbi_type_image {
    width: 50%;
  }
}
.sbi_photo_wrap {
  height: auto;
  aspect-ratio: 1/1;
}
.sbi-screenreader {
  display: none;
}

#sbi_images  > * {
  display: none;
}
/* PC：5つ表示（画面幅 768px以上） */
@media (min-width: 768px) {
  #sbi_images  > :nth-child(-n+5) {
  width:20%;
    display: block;
      height: auto;
  padding: 10px;
  aspect-ratio: 1/1;
  }
}

/* SP：6つ表示（画面幅 767px以下） */
@media (max-width: 767px) {
  #sbi_images  > :nth-child(-n+6) {
  width:50%;
    display: block;
      height: auto;
  padding: 10px;
  aspect-ratio: 1/1;
  }
}
.sbi_photo {
  display: block;
  height: auto;
  aspect-ratio: 1/1;
}
.sbi_photo svg{
display:none;
}

.sbi_photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;

}