body {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 400;
    font-style: normal;
    color: #333;
}
img {
    width: 100%;
    max-width: 100%;
}
p {
    line-height: 1.6;
    letter-spacing: 0.04em;
    font-size: clamp(16px, calc((16 / 1920) * 100vw), 20px);
}
ul, li {
    list-style: none;
    padding: 0;
    margin: 0;
}
a {
  text-decoration: none;
}
.section-inner {
  max-width: 1536px;
  width: 80%;
  min-width: 972px;
  margin: 0 auto;
}
.sp-only {
  display: none;
}
@media (max-width: 1024px) {
  .section-inner {
    max-width: inherit;
    width: 95%;
    min-width: inherit;
    margin: 0 auto;
  } 
}
@media (max-width: 768px) {
  p {
    font-size: max(16px, calc((16 / 375) * 100vw));
  }
  .section-inner {
    max-width: 95%;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
/* header */
.site-header {
    background: white;
    width: 100%;
    height: clamp(80px, calc((80 / 1920) * 100vw),120px);
    position: fixed;
    top: 0;
    z-index: 1;
  }
  .header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 95%;
    margin: 0 auto;
    height: clamp(80px, calc((80 / 1920) * 100vw),120px);
  }
  .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    width: 189px;
  }
  .nav-menu {
    display: flex;
    gap: calc((32 / 1920) * 100vw);
    align-items: center;
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: clamp(16px, calc((16 / 1920) * 100vw), 20px);
    transition: .1s;
  }
  .nav-menu a:hover {
    color: #23AFAA;
  }  
  .nav-menu a.entry-button {
    background: #333;
    border: 3px #333 solid;
    color: #fff;
    padding: 9px 21px;
    border-radius: 40px;
  }
  .nav-menu a.entry-button:hover {
    background: #23AFAA;
    color: #333;
    border: 3px #333 solid;
  }
  .hamburger-button {
    display: none;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: relative;
    background-color: #333;
    border-radius: 20px;
  }
  .hamburger-button span {
    display: block;
    width: 20px;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 10px;
    transition: all 0.3s;
  }
  .hamburger-button span:nth-child(1) { top: 13px; }
  .hamburger-button span:nth-child(2) { top: 20px; }
  .hamburger-button span:nth-child(3) { top: 27px; }
  /* ハンバーガーメニューオープン時 */
  .hamburger-button.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 20px;
  }
  .hamburger-button.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-button.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 20px;
  }
  @media (max-width: 1024px) {
    .logo-link {
      width: 128px;
      width: clamp(128px, calc((189 / 1024) * 100vw), 189px);
    }
    .hamburger-button {
      display: block;
      padding: 0 10px;
    }
    .header-right {
      position: fixed;
      top: 60px;
      left: 0;
      width: 100%;
      height: calc(100vh - 60px);
      background: white;
      transform: translateX(100%);
      transition: transform 0.3s ease;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .header-right.open {
      transform: translateX(0);
    }
    .nav-menu {
      flex-direction: column;
      padding: 20px;
      gap: 30px;
      margin-top: -60px;
    }
    .nav-menu a {
      display: block;
    }
    .entry-button {
      width: 100%;
      text-align: center;
    }
  }
  @media (max-width: 768px) {
    .site-header {
      height: max(60px, calc((80 / 375) * 100vw));
    }
    .header-nav {
      height: max(60px, calc((80 / 375) * 100vw));
    }
    .logo-link {
      width: max(144px, calc((144 / 375) * 100vw));
    }
    .hamburger-button {
      display: block;
      padding: 0 10px;
      width: max(40px, calc((40 / 375) * 100vw));
      height: max(40px, calc((40 / 375) * 100vw));
      border-radius: max(40px, calc((40 / 375) * 100vw));
    }
    .hamburger-button span {
      width: max(20px, calc((20 / 375) * 100vw));
      height: 1px;
      left: max(10px, calc((10 / 375) * 100vw));
    }
    .hamburger-button span:nth-child(1) { top: max(13px, calc((13 / 375) * 100vw)); }
    .hamburger-button span:nth-child(2) { top: max(20px, calc((20 / 375) * 100vw)); }
    .hamburger-button span:nth-child(3) { top: max(27px, calc((27 / 375) * 100vw)); }
    /* ハンバーガーメニューオープン時 */
    .hamburger-button.open span:nth-child(1) {
      transform: rotate(45deg);
      top: max(20px, calc((20 / 375) * 100vw));
    }
    .hamburger-button.open span:nth-child(2) {
      opacity: 0;
    }
    .hamburger-button.open span:nth-child(3) {
      transform: rotate(-45deg);
      top: max(20px, calc((20 / 375) * 100vw));
    }
    .header-right {
      position: fixed;
      top: max(60px, calc((60 / 375) * 100vw));
      left: 0;
      width: 100%;
      height: calc(100vh - max(60px, calc((60 / 375) * 100vw)));
      background: white;
      transform: translateX(100%);
      transition: transform 0.3s ease;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .header-right.open {
      transform: translateX(0);
    }
    .nav-menu {
      flex-direction: column;
      padding: 20px;
      gap: 30px;
      margin-top: max(-60px, calc((-60 / 375) * 100vw));
    }
    .nav-menu a {
      display: block;
      font-size: max(16px, calc((16 / 375) * 100vw));
    }
    .entry-button {
      width: 100%;
      text-align: center;
    }
  }

/* mv */
.mv {
  background-image: url(../img/mv.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 95%;
  height: calc((1000 / 1920) * 100vw);
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
  position: relative;
  overflow: hidden;
  margin-top: clamp(80px, calc((80 / 1920)* 100vw), 120px);
}
.mv-copy {
  position: absolute;
  bottom: calc((136 / 1920) * 100vw);
  left: 50%;
  transform: translateX(-50%);
}
.site-title {
  background-color: #C3D400;
  padding: calc((24 / 1920) * 100vw) 0;
  width: calc((510 / 1920) * 100vw);
  margin: 0 auto;
  text-align: center;
  border: #333 3px solid;
  border-radius: calc((40 / 1920) * 100vw) 0 calc((40 / 1920) * 100vw) 0;
  margin-bottom: calc((16 / 1920) * 100vw);
}
.site-title_small {
  font-size: calc((18 / 1920) * 100vw);
  font-weight: 700;
  line-height: 1;
  margin-bottom: calc((4 / 1920) * 100vw);
}
.site-title_large {
  font-size: calc((32 / 1920) * 100vw);
  font-weight: 700;
  line-height: 1;
}
.catch-copy {
  font-size: calc((48 / 1920) * 100vw);
  font-weight: 700; 
  text-align: center;
}
/* 装飾画像の配置 */
.decoration {
  position: absolute;
  z-index: 1;
}
.checkered-top-left {
  bottom: calc((320 / 1920) * 100vw);
  left: calc((20 / 1920) * 100vw);
  width: calc((80 / 1920) * 100vw);
}
.wave-bottom-left {
  bottom: calc((180 / 1920) * 100vw);
  left: calc((200 / 1920) * 100vw);
  width: calc((60 / 1920) * 100vw);
}
.wave-top-right {
  bottom: calc((360 / 1920) * 100vw);
  right: calc((20 / 1920) * 100vw);
  width: calc((60 / 1920) * 100vw);
}
.checkered-bottom-right {
  bottom: calc((280 / 1920) * 100vw);
  right: calc((120 / 1920) * 100vw);
  width: calc((80 / 1920) * 100vw);
}
.wave-bottom {
  position: absolute;
  bottom: calc((0 / 1920) * 100vw);
  left: 50%;
  transform: translateX(-50%);
  width: calc((100 / 1920) * 100vw);
  z-index: 2;
}

@media (max-width: 768px) {
  .mv {
    background-image: url(../img/mv-sp.png);
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    height: calc((580 / 375) * 100vw);
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    position: relative;
    margin-top: max(60px, calc((80 / 375)* 100vw));
  }
  .mv-copy {
    bottom: calc((80 / 375) * 100vw);
  }
  .site-title {
    padding: calc((24 / 375) * 100vw) 0;
    width: calc((308 / 375) * 100vw);
    border: #333 2px solid;
    border-radius: calc((28 / 375) * 100vw) 0 calc((28 / 375) * 100vw) 0;
    margin-bottom: calc((16 / 375) * 100vw);
  }
  .site-title_small {
    font-size: calc((14 / 375) * 100vw);
    font-weight: 700;
    line-height: 1;
    margin-bottom: calc((4 / 375) * 100vw);
  }
  .site-title_large {
    font-size: calc((20 / 375) * 100vw);
    font-weight: 700;
    line-height: 1;
  }
  .catch-copy {
    font-size: calc((32 / 375) * 100vw);
    font-weight: 700; 
    text-align: center;
  }
  .checkered-top-left {
    bottom: calc((328 / 375) * 100vw);
    left: calc((-22 / 375) * 100vw);
    width: calc((44 / 375) * 100vw);
  }
  .wave-bottom-left {
    bottom: calc((230 / 375) * 100vw);
    left: calc((8 / 375) * 100vw);
    width: calc((22 / 375) * 100vw);
  }
  .wave-top-right {
    bottom: calc((300 / 375) * 100vw);
    right: calc((8 / 375) * 100vw);
    width: calc((36 / 375) * 100vw);
  }
  .checkered-bottom-right {
    bottom: calc((232 / 375) * 100vw);
    right: calc((-8 / 375) * 100vw);
    width: calc((30 / 375) * 100vw);
  }
  .wave-bottom {
    position: absolute;
    bottom: calc((0 / 375) * 100vw);
    left: 50%;
    transform: translateX(-50%);
    width: calc((120 / 375) * 100vw);
    z-index: 2;
  }
}

/* about */
.about {
  padding: calc((120 / 1920) * 100vw) 0;
}
.about-top {
  text-align: center;
  margin-bottom:  84px;
}
.about-top h2 {
  font-size: clamp(40px, calc((40 / 1920) * 100vw), 48px);
  margin-bottom: 24px;
}
.about-top-description {
  background-color: #F0F0F0;
  border: 3px #333 solid;
  border-radius: 40px;
  padding: 24px 40px;
  position: relative;
}
.about-top-description::after {
  content: "";
  background-color: #333;
  width: 3px;
  height: 60px;
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
}
.about-top-description p {
  line-height: 2;
}
.bg-green {
  background-color: #6FB72D;
  font-weight: bold;
}
.about-content1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about-content1.reverse {
  flex-direction: row-reverse;
}
.about-content1 + .about-content1 {
  margin-top: 40px;
}
.about-textarea {
  width: 46%;
}
.about-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.about-title img {
  width: 112px;
  display: inline-block;
}
.about-title h3 {
  font-size: clamp(32px, calc((32 / 1920) * 100vw), 40px);
  line-height: 1.5;
}
.about-h3-small {
  font-size: clamp(24px, calc((24 / 1920) * 100vw), 32px);
  display: block;
  margin-bottom: 4px;
}
.about-img {
  width: 47%;
}
@media (max-width: 768px) {
  .about {
    padding: calc((80 / 375)* 100vw) 0;
  }
  .about-top {
    margin-bottom: calc((84 / 375)* 100vw);
  }
  .about-top h2 {
    font-size: clamp(24px, calc((24 / 375) * 100vw), 32px);
    font-size: max(24px, calc((24 / 375) * 100vw));
    margin-bottom: calc((24 / 375)* 100vw);
  }
  .about-top-description {
    border-radius: 40px;
    padding: calc((24 / 375)* 100vw);
  }
  .about-top-description::after {
    height: calc((60 / 375)* 100vw);
    bottom: calc((-40 / 375)* 100vw);
  }
  .about-content1 {
    flex-direction: column;
    gap: calc((24 / 375)* 100vw);
  }
  .about-content1.reverse {
    flex-direction: column;
  }
  .about-content1 + .about-content1 {
    margin-top: calc((80 / 375)* 100vw);
  }
  .about-textarea {
    width: 100%;
  }
  .about-title {
    margin-bottom: calc((24 / 375)* 100vw);
  }
  .about-title img {
    width: calc((86 / 375)* 100vw);
  }
  .about-title h3 {
    font-size: max(24px, calc((24 / 375) * 100vw));
  }
  .about-h3-small {
    font-size: max(16px, calc((16 / 375) * 100vw));
  }
  .about-img {
    width: 100%;
  }
}

/* cta */
.cta {
  background-image: url(../img/cta-bg-pc.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  height: calc((600 / 1920)* 100vw);
  text-align: center;
  margin: 0 auto calc((180 / 1920)* 100vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-textarea-p {
  color: #fff;
  font-size: clamp(16px, calc((20 / 1920) * 100vw), 24px);
  line-height: 2;
  margin-bottom: calc((40 / 1920)* 100vw);
}
.cta-btn {
  background-color: #fff;
  padding: calc((20 / 1920)* 100vw) calc((64 / 1920)* 100vw);
  border: 3px #333 solid;
  border-radius: calc((100 / 1920)* 100vw);
  display: flex;
  align-items: center;
  gap: calc((8 / 1920)* 100vw);
  justify-content: center;
  width: clamp(240px, calc((458 / 1920) * 100vw), 608px);
  margin: 0 auto;
  transition: .1s
}
.cta-btn:hover {
  background-color: #23AFAA;
}
.cta-btn-p {
  font-size: calc((32 / 1920)* 100vw);
  font-size: clamp(16px, calc((32 / 1920) * 100vw), 40px);
  font-weight: 700;
  color: #333;
}
.cta-btn-icon {
  display: block;
  width: calc((40 / 1920)* 100vw);
  transition: .1s
}
.cta-btn:hover .cta-btn-icon {
  transform: translateX(min(calc((8 / 1920)* 100vw), 8px));
}
.cta-deco {
  width: calc((210 / 1920)* 100vw);
  margin: 0 auto;
  margin-bottom: calc((12 / 1920)* 100vw);
}
@media (max-width: 768px) {
  .cta {
    background-image: url(../img/cta-bg-sp.png);
    padding: calc((128 / 375)* 100vw) calc((20 / 375)* 100vw);
    max-width: 100%;
    height: calc((472 / 375)* 100vw);
    margin: 0 auto calc((120 / 375)* 100vw);
  }
  .cta-textarea-p {
    font-size: calc((16 / 375)* 100vw);
    margin-bottom: calc((40 / 375)* 100vw);
  }
  .cta-btn {
    padding: calc((20 / 375)* 100vw) calc((58 / 375)* 100vw);
    border-radius: calc((50 / 375)* 100vw);
    gap: calc((8 / 375)* 100vw);
    width: calc((325 / 375)* 100vw);
  }
  .cta-btn-p {
    font-size: calc((20 / 375)* 100vw);

  }
  .cta-btn-icon {
    display: block;
    width: calc((20 / 375)* 100vw);
  }
  .cta-deco {
    width: calc((152 / 375)* 100vw);
    margin: 0 auto;
    margin-bottom: calc((12 / 375)* 100vw);
  }
}

/* interview */
.interview {
  padding: calc((120 / 1920)* 100vw) 0;
  background-color: #F0F0F0;
  position: relative;
}
.interview .section-header {
  text-align: center;
}
.interview .section-title {
  font-size: clamp(40px, calc((40 / 1920) * 100vw), 48px);
  margin-bottom: calc((40 / 1920)* 100vw);
}
.interview .slide-content:hover {
  cursor: pointer;
}
video {
  width: 96%;
}
.slick-prev{
  left: calc((40 / 1920)* 100vw);
  z-index: 10;
  width: calc((100 / 1920)* 100vw);
  height: auto;
}
.slick-prev:before {
  content: "";
}
.slick-next{
  right: calc((40 / 1920)* 100vw);
  z-index: 10;
  width: calc((100 / 1920)* 100vw);
  height: auto;
}
.slick-next:before {
  content: "";
}
.slick-prev img{
  border-radius: calc((50 / 1920)* 100vw);
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.25);
}
.slick-next img{
  border-radius: calc((50 / 1920)* 100vw);
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.25);
}
.interview-deco1 {
  position: absolute;
  left: calc((220 / 1920)* 100vw);
  top: calc((-170 / 1920)* 100vw);
  width: calc((361 / 1920)* 100vw);
}
.interview-deco2 {
  position: absolute;
  left: calc((420 / 1920)* 100vw);
  top: calc((-104 / 1920)* 100vw);
  width: calc((328 / 1920)* 100vw);
}
.interview-deco3 {
  position: absolute;
  left: calc((200 / 1920)* 100vw);
  bottom: calc((-74 / 1920)* 100vw);
  width: calc((100 / 1920)* 100vw);
}
.interview-deco4 {
  position: absolute;
  right: calc((160 / 1920)* 100vw);
  top: calc((-30 / 1920)* 100vw);
  width: calc((80 / 1920)* 100vw);
}
@media (max-width: 768px) {
  .interview {
    padding: calc((120 / 375)* 100vw) 0;
  }
  .interview .section-title {
    font-size: max(24px, calc((24 / 375)* 100vw));
    margin-bottom: calc((40 / 375)* 100vw);
  }
  .slick-prev{
    left: calc((40 / 375)* 100vw);
    width: calc((100 / 375)* 100vw);
  }
  .slick-next{
    right: calc((40 / 375)* 100vw);
    width: calc((100 / 375)* 100vw);
  }
  .slick-prev img{
    border-radius: calc((50 / 375)* 100vw);
  }
  .slick-next img{
    border-radius: calc((50 / 375)* 100vw);
  }
  .interview-deco1 {
    left: calc((10 / 375)* 100vw);
    top: calc((-50 / 375)* 100vw);
    width: calc((180 / 375)* 100vw);
  }
  .interview-deco2 {
    left: calc((30 / 375)* 100vw);
    top: calc((0 / 375)* 100vw);
    width: calc((155 / 375)* 100vw);
  }
  .interview-deco3 {
    left: calc((30 / 375)* 100vw);
    bottom: calc((-28 / 375)* 100vw);
    width: calc((40 / 375)* 100vw);
  }
  .interview-deco4 {
    display: none;
  }
}
/* workshop */
.workshop {
  padding: calc((120 / 1920)* 100vw) 0;
  position: relative;
}
.workshop .section-header {
  text-align: center;
  margin-bottom: calc((80 / 1920)* 100vw);
}
.workshop .section-title {
  font-size: clamp(40px, calc((40 / 1920) * 100vw), 48px);
  margin-bottom: calc((24 / 1920)* 100vw);
}
.table1 {
  margin-bottom: calc((80 / 1920)* 100vw);
}
.table-head {
  border: 3px #333 solid;
  border-radius: 24px 24px 0 0;
  padding: clamp(16px, calc((16 / 1920) * 100vw), 24px);
  text-align: center;
  margin-bottom: min(calc((16 / 1920)* 100vw), 16px);
}
.table1-head {
  background-color: #C3D400;
}
.table2-head {
  background-color: #6FB72D;
}
.table-head h3 {
  font-size: clamp(32px, calc((32 / 1920) * 100vw), 40px);
  font-weight: 700;
  margin-bottom: clamp(4px, calc((20 / 1920) * 100vw), 8px);
}
.table-head p {
  font-weight: 700;
}
.table-low {
  display: flex;
  justify-content: space-between;
  gap: min(calc((16 / 1920)* 100vw), 16px);
}
.table-body-title-wrap {
  background-color: #F0F0F0;
  border: 3px #333 solid;
  border-radius: 24px;
  min-height: calc((90 / 1920)* 100vw);
  width: 20%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.table-body-title {
  font-size: clamp(20px, calc((20 / 1920) * 100vw), 28px);
  font-weight: 700;
}
.table-body-title-large {
  font-size: clamp(32px, calc((32 / 1920) * 100vw), 40px);
  font-weight: 700;
  margin-left: calc((8 / 1920)* 100vw);
}
.table-body-content {
  display: flex;
  justify-content: space-between;
  gap: min(calc((16 / 1920)* 100vw), 16px);
  flex-wrap: wrap;
}
.table1-body-content {
  width: 80%;
}
.table2-body-content {
  width: 100%;
}
.table-body-content-list {
  font-size: clamp(16px, calc((20 / 1920) * 100vw), 28px);
  font-weight: 700;
  border: 3px #333 solid;
  padding: 16px;
  min-height: calc((90 / 1920)* 100vw);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.col4 {
  width: 24%;
}
.col3 {
  width: 32%;
}
.col2 {
  width: 49%;
}
.br-lt-24 {
  border-top-left-radius: 24px ;
}
.br-lb-24 {
  border-bottom-left-radius: 24px ;
}
.br-rt-24 {
  border-top-right-radius: 24px ;
}
.br-rb-24 {
  border-bottom-right-radius: 24px ;
}
.table-arrow {
  width: min(calc((48 / 1920)* 100vw), 48px);
  margin: min(calc((16 / 1920)* 100vw), 16px) auto;
}
.workshop-deco1 {
  position: absolute;
  right: calc((140 / 1920)* 100vw);
  top: calc((-30 / 1920)* 100vw);
  width: calc((180 / 1920)* 100vw);
}
.workshop-deco2 {
  position: absolute;
  right: calc((200 / 1920)* 100vw);
  top: calc((20 / 1920)* 100vw);
  width: calc((312 / 1920)* 100vw);
}
.workshop-deco3 {
  position: absolute;
  transform: rotate(90deg);
  left: calc((370 / 1920)* 100vw);
  top: calc((127 / 1920)* 100vw);
  width: calc((80 / 1920)* 100vw);
}
.workshop-notes {
  text-align: right;
  margin-top: calc((16 / 1920)* 100vw);
}
@media (max-width: 768px) {
  .workshop {
    padding: calc((120 / 375)* 100vw) 0;
  }
  .workshop .section-header {
    margin-bottom: calc((80 / 375)* 100vw);
  }
  .workshop .section-title {
    font-size: max(24px, calc((24 / 375)* 100vw));
    margin-bottom: calc((24 / 375)* 100vw);
  }
  .table1 {
    margin-bottom: calc((80 / 375)* 100vw);
  }
  .table-head {
    padding: calc((16 / 375)* 100vw);
    margin-bottom: min( calc((16 / 375)* 100vw), 16px);

  }
  .table-head h3 {
    font-size: max(24px, calc((24 / 375) * 100vw));
    margin-bottom: calc((4 / 375)* 100vw);
  }
  .table-low {
    gap: calc((16 / 375)* 100vw);
    flex-direction: column;
  }
  .table-body-title-wrap {
    min-height: calc((90 / 375)* 100vw);
    width: 100%;
  }
  .table-body-title {
    font-size: clamp(18px, calc((18 / 375) * 100vw), 26px);
  }
  .table-body-title-large {
    font-size: clamp(22px, calc((22 / 375) * 100vw), 30px);
    margin-left: calc((8 / 375)* 100vw);
  }
  .table-body-content {
    gap: calc((16 / 375)* 100vw);
    width: 100%;
  }
  .table-body-content-list {
    font-size: clamp(16px, calc((16 / 375) * 100vw), 24px);
    min-height: calc((90 / 385)* 100vw);
    padding: 16px 10px; 
  }
  .col4 {
    width: 24%;
  }
  .col3 {
    width: 32%;
  }
  .col2 {
    width: 47.7%;
  }
  .br-lt-24 {
    border-top-left-radius: 24px ;
  }
  .br-lb-24 {
    border-bottom-left-radius: 24px ;
  }
  .br-rt-24 {
    border-top-right-radius: 24px ;
  }
  .br-rb-24 {
    border-bottom-right-radius: 24px ;
  }
  .sp-br-lb-0 {
    border-bottom-left-radius: 0;
  }
  .sp-br-rt-24 {
    border-top-right-radius: 24px ;
  }
  .sp-br-lb-24 {
    border-bottom-left-radius: 24px;
  }
  .sp-br-rt-0 {
    border-top-right-radius: 0px ;

  }
  .table-arrow {
    width: calc((48 / 375)* 100vw);
    margin: calc((16 / 375)* 100vw) auto;
  }
  .sp-col2 {
    width: 47.7%;
  }
  .sp-col3 {
    width: 30%;
  }
  .workshop-deco1 {
    position: absolute;
    right: calc((10 / 375)* 100vw);
    top: calc((-16 / 375)* 100vw);
    width: calc((100 / 375)* 100vw);
  }
  .workshop-deco2 {
    position: absolute;
    right: calc((20 / 375)* 100vw);
    top: calc((16 / 375)* 100vw);
    width: calc((152 / 375)* 100vw);
  }
  .workshop-deco3 {
    display: none;
  }
  .workshop-notes {
    margin-top: calc((16 / 375)* 100vw);
  }
}
/* data */
.data {
  padding: calc((120 / 1920)* 100vw) 0;
  position: relative;
}
.data .section-header {
  text-align: center;
  margin-bottom: calc((80 / 1920)* 100vw);
}
.data .section-title {
  font-size: clamp(40px, calc((40 / 1920) * 100vw), 48px);
  margin-bottom: calc((24 / 1920)* 100vw);
}
@media (max-width: 768px) {
  .data {
    padding: calc((80 / 375)* 100vw) 0;
  }
  .data .section-header {
    margin-bottom: calc((80 / 375)* 100vw);
  }
  .data .section-title {
    font-size: max(24px, calc((24 / 375)* 100vw));
    margin-bottom: calc((24 / 375)* 100vw);
  }
}
/* 共通 */
.data-col3, .data-col2, .data-col1 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2%;
}
.data-wrap .list-wrap {
  background: #F0F0F0;
  border: 3px #333 solid;
  background: #F0F0F0;
  border-radius: 40px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.data-col3 .list-wrap{
  width: 32%;
}
.data-col2 .list-wrap{
  width: 49%;
}
.data-wrap .data-list-title {
  background: #333;
  color: white;
  font-size: clamp(20px, calc((36 / 1920) * 100vw), 36px);
  padding: 4px 16px;
  margin-bottom: max(24px, calc((24 / 1920) * 100vw));
  font-weight: bold;
}
.data-col2 .data-list-title {
  margin-bottom: clamp(24px, calc((68 / 1920) * 100vw), 68px);
}
.data-list-title.mb-8 {
  margin-bottom: clamp(8px, calc((8 / 1920) * 100vw), 8px);
}
@media (max-width: 768px) {
  .data-col3, .data-col2, .data-col1 {
    margin-bottom: 8%;
    flex-direction: column;
  }
  .data-col3 .list-wrap{
    width: 100%;
  }
  .data-wrap .list-wrap + .list-wrap {
    margin-top: 8%;
  }
  .data-col2 .list-wrap{
    width: 100%;
  }
  .data-wrap .data-list-title {
    font-size: max(20px, calc((24 / 375) * 100vw));
  }
  .data-col2 .data-list-title {
    margin-bottom: max(32px, calc((32 / 375) * 100vw));
  }
 .data-list-title.mb-8 {
    margin-bottom: max(4px, calc((4 / 375) * 100vw));
  }
}
/* シンプルテキスト */
.data-wrap .counter-number {
  font-size: clamp(80px, calc((160 / 1920) * 100vw), 160px);
  font-weight: bold;
  display: flex;
  align-items: baseline;
  height: 50%;
}
.data-wrap .counter-unit {
  font-size: clamp(36px, calc((76 / 1920) * 100vw), 76px);
  color: #333;
  margin-left: 5px;
}
.data-wrap .text-orange {
  color: #F08205;
}
.data-wrap .text-green {
  color: #6FB72D;
}
@media (max-width: 768px) {
  .data-wrap .counter-number {
    font-size: max(80px, calc((160 / 375) * 100vw));
    height: inherit;
    line-height: 1;
  }
  .data-wrap .counter-unit {
    font-size: max(36px, calc((76 / 375) * 100vw));
  }
  .data-wrap .data-map-layout-list .counter-number {
    font-size: max(32px, calc((60 / 375) * 100vw));
    height: inherit;
    line-height: 1;
    margin-bottom: max(4px, calc((8 / 375) * 100vw));
  }
  .data-wrap .data-map-layout-list .counter-unit {
    font-size: max(16px, calc((24 / 375) * 100vw));
  }
}
/* 円グラフ */
.piechart-wrap {
  width: 56%;
  height: 50%;
  position: relative;
}
.chart-wrapper {
  width: 100%;
  margin: auto;
 } 
.piechart-number {
  position: absolute;
  text-align: center;
  line-height: 1;
}
@media (max-width: 768px) {
  .piechart-wrap {
    width: 60%;
    height: inherit;
  }
}
/* テキスト大きさ */
.piechart-number .piechart-unit1{
  font-size: clamp(16px, calc((32 / 1920) * 100vw), 32px);
  font-weight: 700;
}
.piechart-number .piechart-unit1-large {
  font-size: clamp(20px, calc((40 / 1920) * 100vw), 40px);
}
.piechart-number .piechart{
  font-size: clamp(24px, calc((40 / 1920) * 100vw), 40px);
  font-weight: 700;
}
.piechart-number .piechart-unit2 {
  font-size: clamp(16px, calc((24 / 1920) * 100vw), 24px);
  font-weight: 700;
}
@media (max-width: 768px) {
  .piechart-number .piechart-unit1{
    font-size: calc((24 / 375) * 100vw);
  }
  .piechart-number .piechart-unit1-large {
    font-size: calc((32 / 375) * 100vw);
  }
  .piechart-number .piechart{
    font-size: calc((32 / 375) * 100vw);
  }
  .piechart-number .piechart-unit2 {
    font-size: calc((14 / 375) * 100vw);
  }
}
/* テキスト位置 */
/* mychart1 */
.mychart1 .piechart-number1 {
  top: min(calc((120 / 1920) * 100vw),120px);
  right: min(calc((34 / 1920) * 100vw),34px);
}
.mychart1 .piechart-number2 {
  top: min(calc((50 / 1920) * 100vw),50px);
  left: min(calc((44 / 1920) * 100vw),44px);
}
@media (max-width: 768px) {
  .mychart1 .piechart-number1 {
    top: 40%;
    right: 20%;
  }
  .mychart1 .piechart-number2 {
    top: 20%;
    left: 20%;
  }  
}
/* mychart2 */
.mychart2 .piechart-number1 {
  top: min(calc((120 / 1920) * 100vw),120px);
  right: min(calc((66 / 1920) * 100vw),66px);
}
.mychart2 .piechart-number2 {
  bottom: min(calc((0 / 1920) * 100vw),0px);
  right: min(calc((130 / 1920) * 100vw),130px);
}
.mychart2 .piechart-number3 {
  bottom: min(calc((72 / 1920) * 100vw),72px);
  left: min(calc((68 / 1920) * 100vw),68px);
}
.mychart2 .piechart-number4 {
  top: min(calc((20 / 1920) * 100vw),20px);
  left: min(calc((-40 / 1920) * 100vw),-40px);
}
.mychart2 .piechart-number5 {
  top: min(calc((-26 / 1920) * 100vw),-26px);
  left: min(calc((52 / 1920) * 100vw),52px);
}
@media (max-width: 768px) {
  .mychart2 .piechart-number1 {
    top: 20%;
    right: 14%;
  }
  .mychart2 .piechart-number2 {
    bottom: 5%;
    right: 27%;
  }
  .mychart2 .piechart-number3 {
    bottom: 24%;
    left: 12%;
  }
  .mychart2 .piechart-number4 {
    top: 6%;
    left: -23%;
  }
  .mychart2 .piechart-number5 {
    top: -11%;
    left: 4%;
  }  
}
/* mychart3 */
.mychart3 .piechart-number1 {
  top: min(calc((160 / 1920) * 100vw),160px);
  right: min(calc((32 / 1920) * 100vw),32px);
}
.mychart3 .piechart-number2 {
  bottom: min(calc((-20 / 1920) * 100vw),-20px);
  right: min(calc((20 / 1920) * 100vw),20px);
}
.mychart3 .piechart-number3 {
  bottom: min(calc((-20 / 1920) * 100vw),-20px);
  left: min(calc((40 / 1920) * 100vw),40px);
}
.mychart3 .piechart-number4 {
  bottom: min(calc((50 / 1920) * 100vw),50px);
  left: min(calc((-68 / 1920) * 100vw),-68px);
}
.mychart3 .piechart-number5 {
  top: min(calc((0 / 1920) * 100vw),0px);
  left: min(calc((-68 / 1920) * 100vw),-68px);
}
.mychart3 .piechart-unit2-wrap {
  text-align: left;
}
@media (max-width: 768px) {
  .mychart3 .piechart-number1 {
    top: 28%;
    right: -12%;
  }
  .mychart3 .piechart-number2 {
    bottom: -3%;
    right: -13%;
  }
  .mychart3 .piechart-number3 {
    bottom: -4%;
    left: 5%;
  }
  .mychart3 .piechart-number4 {
    bottom: 14%;
    left: -24%;
  }
  .mychart3 .piechart-number5 {
    top: -6%;
    left: -20%;
  }
}
/* mychart4 */
.mychart4 .piechart-number1 {
  top: min(calc((200 / 1920) * 100vw),200px);
  right: min(calc((32 / 1920) * 100vw),32px);
}
.mychart4 .piechart-number2 {
  top: min(calc((200 / 1920) * 100vw),200px);
  left: min(calc((-10 / 1920) * 100vw),-10px);
}
.mychart4 .piechart-number3 {
  top: min(calc((-10 / 1920) * 100vw),-10px);
  left: min(calc((-10 / 1920) * 100vw),-10px);
}
@media (max-width: 768px) {
  .mychart4 {
    padding: calc((24 / 375) * 100vw) 0;
  }
  .mychart4 .piechart-number1 {
    top: 38%;
    right: -10%;
  }
  .mychart4 .piechart-number2 {
    top: 55%;
    left: -24%;
  }
  .mychart4 .piechart-number3 {
    top: -5%;
    left: -24%;
  }
}
/* ランキング */
.rank-item-wrap {
  text-align: center;
}
.rank-item1 {
  font-size: clamp(24px, calc((48 / 1920) * 100vw), 48px);
  font-weight: 700;
  color: #F08205;
}
.rank-item2 {
  font-size: clamp(24px, calc((48 / 1920) * 100vw), 48px);
  font-weight: 700;
  color: #23AFAA;
}
.rank-item3 {
  font-size: clamp(24px, calc((48 / 1920) * 100vw), 48px);
  font-weight: 700;
  color: #6FB72D;
  margin-bottom: calc((24 / 1920)* 100vw);
}
.rank-item4 {
  font-size: clamp(16px, calc((32 / 1920) * 100vw), 32px);
  font-weight: 700;
  width: 80%;
  margin: 0 auto;
}
.rank-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s, transform 0.8s;
}
.rank-item.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .ranking-container {
    padding: calc((24 / 375) * 100vw) 0;
  }
  .rank-item1 {
    font-size: max(20px, calc((24 / 375) * 100vw));
    font-weight: 700;
    color: #F08205;
  }
  .rank-item2 {
    font-size: max(20px, calc((24 / 375) * 100vw));
    font-weight: 700;
    color: #23AFAA;
  }
  .rank-item3 {
    font-size: max(20px, calc((24 / 375) * 100vw));
    font-weight: 700;
    color: #6FB72D;
    margin-bottom: calc((16 / 375)* 100vw);
  }
  .rank-item4 {
    font-size: max(16px, calc((16 / 375) * 100vw));
    font-weight: 700;
    width: 80%;
    margin: 0 auto;
  }
}
/* ワードクラウド */
.data-wrap .data-col1 .list-wrap {
  background: #F0F0F0;
  border: 3px #333 solid;
  background: #F0F0F0;
  border-radius: 40px;
  aspect-ratio: inherit;
  padding: calc((80 / 1920)* 100vw) 0;
  width: 100%;
}
.word-cloud-wrap {
  position: relative;
  height: clamp(280px, calc((500 / 1920) * 100vw), 500px);
  width: 84%;
}
.word-list {
  position: absolute;
  transform: scale(0.5);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  font-weight: 700;
  white-space: nowrap;
}
.word-list.visible {
  transform: scale(1);
  opacity: 1;
}
.word-list1 {
  color: #6FB72D;
  font-size: clamp(32px, calc((62 / 1920) * 100vw), 62px);
  top: 8%;
  left: 0;
  transition-delay: 25ms;    
}
.word-list2 {
  font-size: clamp(20px, calc((40 / 1920) * 100vw), 40px);
  top: 10%;
  left: 40%;  
  transition-delay: 125ms; 
}
.word-list3 {
  color: #23AFAA;
  font-size: clamp(24px, calc((52 / 1920) * 100vw), 52px);
  top: 8%;
  right: 0;  
  transition-delay: 75ms;  
}
.word-list4 {
  font-size: clamp(16px, calc((36 / 1920) * 100vw), 36px);
  top: 32%;
  left: 0; 
  transition-delay: 150ms; 

}
.word-list5 {
  font-size: clamp(14px, calc((30 / 1920) * 100vw), 30px);
  top: 32%;
  left: 40%; 
  transition-delay: 150ms; 

}
.word-list6 {
  font-size: clamp(24px, calc((54 / 1920) * 100vw), 54px);
  top: 33%;
  right: 0;  
  transition-delay: 100ms;  
}
.word-list7 {
  font-size: clamp(16px, calc((36 / 1920) * 100vw), 36px);
  top: 46%;
  left: 0;  
  transition-delay: 150ms; 

}
.word-list8 {
  font-size: clamp(60px, calc((120 / 1920) * 100vw), 120px);
  color: #F08205;
  top: 40%;
  left: 34%;
  transition-delay: 0ms; 
}
.word-list9 {
  font-size: clamp(24px, calc((52 / 1920) * 100vw), 52px);
  color: #6FB72D;
  top: 51%;
  right: 0;  
  transition-delay: 150ms; 
}
.word-list10 {
  font-size: clamp(26px, calc((52 / 1920) * 100vw), 52px);
  color: #C3D400;
  top: 58%;
  left: 0;  
  transition-delay: 100ms; 
}
.word-list11 {
  font-size: clamp(20px, calc((48 / 1920) * 100vw), 48px);
  top: 74%;
  left: 0;  
  transition-delay: 100ms; 
}
.word-list12 {
  font-size: clamp(16px, calc((36 / 1920) * 100vw), 36px);
  top: 75%;
  left: 34%; 
  transition-delay: 125ms;  
}
.word-list13 {
  font-size: clamp(18px, calc((44 / 1920) * 100vw), 44px);
  top: 70%;
  right: 0; 
  transition-delay: 100ms;  
}
.word-list14 {
  font-size: clamp(17px, calc((34 / 1920) * 100vw), 34px);
  top: 93%;
  left: 0; 
  transition-delay: 125ms;  
}
.word-list15 {
  font-size: clamp(22px, calc((50 / 1920) * 100vw), 50px);
  color: #23AFAA;
  top: 89%;
  left: 24%; 
  transition-delay: 75ms;   
}
.word-list16 {
  font-size: clamp(38px, calc((74 / 1920) * 100vw), 74px);
  color: #C3D400;
  top: 84%;
  right: 0;
  transition-delay: 25ms;  
}
@media (max-width: 768px) {
  .data-wrap .data-col1 .list-wrap {
    padding: calc((24 / 375)* 100vw) 0;
    aspect-ratio: 1;
  }
  .word-cloud-wrap {
    height: calc((280 / 375) * 100vw);
    width: 90%;
  }
  .word-list1 {
    font-size: calc((24 / 375) * 100vw);
    top: 8%;
    left: 0;
  }
  .word-list2 {
    font-size: calc((16 / 375) * 100vw);
    top: 10%;
    left: inherit;
    right: 0; 
  }
  .word-list3 {
    font-size: calc((20 / 375) * 100vw);
    top: 20%;
    right: 0;  
  }
  .word-list4 {
    font-size: calc((13 / 375) * 100vw);
    top: 23%;
    left: 0; 
  }
  .word-list5 {
    font-size: calc((13 / 375) * 100vw);
    top: 32%;
    left: 4%; 
  }
  .word-list6 {
    font-size: calc((18 / 375) * 100vw);
    top: 32%;
    right: 4%;  
  }
  .word-list7 {
    font-size: calc((16 / 375) * 100vw);
    top: 41%;
    left: 9%;  
  }
  .word-list8 {
    font-size: calc((32 / 375) * 100vw);
    top: 53%;
    left: 36%;
  }
  .word-list9 {
    font-size: calc((18 / 375) * 100vw);
    top: 44%;
    right: 9%;  
  }
  .word-list10 {
    font-size: calc((16 / 375) * 100vw);
    top: 58%;
    left: inherit;
    right: 0;  
  }
  .word-list11 {
    font-size: calc((13 / 375) * 100vw);
    top: 52%;
    left: 0;  
  }
  .word-list12 {
    font-size: calc((15 / 375) * 100vw);
    top: 74%;
    left: 0; 
  }
  .word-list13 {
    font-size: calc((18 / 375) * 100vw);
    top: 72%;
    right: 0; 
  }
  .word-list14 {
    font-size: calc((14 / 375) * 100vw);
    top: 62%;
    left: 2%; 
  }
  .word-list15 {
    font-size: calc((18 / 375) * 100vw);
    top: 85%;
    left: 0; 
  }
  .word-list16 {
    font-size: calc((24 / 375) * 100vw);
    top: 84%;
    right: 0;
  }
}
/* マップ */
.data-map-layout {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: clamp(24px, calc((80 / 1920) * 100vw), 80px);
}
.data-map-layout-list {
  width: 30%;
}
.data-map-img1 {
  width: 100%;
}
.data-map-img2 {
  width: 100%;
}
.data-wrap .text-blue {
  color: #23AFAA;
}
/* welfare */
.welfare {
  padding: calc((120 / 1920)* 100vw) 0;
  position: relative;
}
.welfare .section-header {
  text-align: center;
  margin-bottom: calc((80 / 1920)* 100vw);
}
.welfare .section-title {
  font-size: clamp(40px, calc((40 / 1920) * 100vw), 48px);
  margin-bottom: calc((24 / 1920)* 100vw);
}
.welfare-col3 {
  display: flex;
  justify-content: space-between;
  gap: calc((80 / 1920)* 100vw);
  margin-bottom: calc((40 / 1920)* 100vw);
}
.welfare-col3-list {
  width: 30%;
}
.welfare-col3-list-img {
  margin-bottom: calc((24 / 1920)* 100vw);
}
.welfare-col3-list-title {
  font-size: clamp(24px, calc((24 / 1920) * 100vw), 32px);
  padding: calc((24 / 1920)* 100vw) 0;
  border-radius: calc((40 / 1920)* 100vw) 0 calc((40 / 1920)* 100vw) 0;
  border: 3px #333 solid;
  text-align: center;
  margin-bottom: calc((24 / 1920)* 100vw);
}
.welfare-col3-list-title.first {
  background-color: #23AFAA;
}
.welfare-col3-list-title.second {
  background-color: #6FB72D;
}
.welfare-col3-list-title.third {
  background-color: #C3D400;
}
.welfare-table-list {
  display: flex;
}
.welfare-table-list + .welfare-table-list  {
  margin-top: calc((24 / 1920)* 100vw);
}
.welfare-table-lis-title {
  font-size: clamp(24px, calc((24 / 1920) * 100vw), 32px);
  background-color: #F0F0F0;
  border: 3px #333 solid;
  border-radius: calc((40 / 1920)* 100vw) 0 0 calc((40 / 1920)* 100vw);
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.welfare-table-lis-text {
  border: 3px #333 solid;
  border-left: none;
  border-radius: 0 calc((40 / 1920)* 100vw) calc((40 / 1920)* 100vw) 0;
  padding: calc((24 / 1920)* 100vw) calc((80 / 1920)* 100vw);
  width: 70%;
}
.welfare-deco1 {
  position: absolute;
  right: calc((140 / 1920)* 100vw);
  top: calc((-50 / 1920)* 100vw);
  width: calc((287 / 1920)* 100vw);
}
.welfare-deco2 {
  position: absolute;
  right: calc((380 / 1920)* 100vw);
  top: calc((-20 / 1920)* 100vw);
  width: calc((329 / 1920)* 100vw);
}
.welfare-deco3 {
  position: absolute;
  left: calc((240 / 1920)* 100vw);
  top: calc((0 / 1920)* 100vw);
  width: calc((62 / 1920)* 100vw);
}
@media (max-width: 768px) {
  .welfare {
    padding: calc((120 / 375)* 100vw) 0;
  }
  .welfare .section-header {
    margin-bottom: calc((80 / 375)* 100vw);
  }
  .welfare .section-title {
    font-size: max(24px, calc((24 / 375) * 100vw));
    margin-bottom: calc((24 / 375)* 100vw);
  }
  .welfare-col3 {
    flex-direction: column;
    gap: calc((40 / 375)* 100vw);
    margin-bottom: calc((40 / 375)* 100vw);
  }
  .welfare-col3-list {
    width: 100%;
  }
  .welfare-col3-list-img {
    margin-bottom: calc((24 / 375)* 100vw);
  }
  .welfare-col3-list-title {
    font-size: max(20px, calc((20 / 375) * 100vw));
    padding: calc((24 / 375)* 100vw) 0;
    border-radius: calc((40 / 375)* 100vw) 0 calc((40 / 375)* 100vw) 0;
    margin-bottom: calc((24 / 375)* 100vw);
  }
  .welfare-table-list {
    flex-direction: column;
  }
  .welfare-table-list + .welfare-table-list  {
    margin-top: calc((40 / 375)* 100vw);
  }
  .welfare-table-lis-title {
    font-size: max(20px, calc((20 / 375) * 100vw));
    border-radius: calc((40 / 375)* 100vw) calc((40 / 375)* 100vw) 0 0;
    padding: calc((24 / 375)* 100vw) 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .welfare-table-lis-text {
    border: 3px #333 solid;
    border-top: none;
    border-radius: 0 0 calc((40 / 375)* 100vw) calc((40 / 375)* 100vw);
    padding: calc((24 / 375)* 100vw) calc((16 / 375)* 100vw);
    width: 100%;
  }
  .welfare-deco1 {
    position: absolute;
    right: calc((20 / 375)* 100vw);
    top: calc((-30 / 375)* 100vw);
    width: calc((126 / 375)* 100vw);
  }
  .welfare-deco2 {
    position: absolute;
    right: calc((20 / 375)* 100vw);
    top: calc((10 / 375)* 100vw);
    width: calc((148 / 375)* 100vw);
  }
  .welfare-deco3 {
    position: absolute;
    left: calc((30 / 375)* 100vw);
    top: calc((0 / 375)* 100vw);
    width: calc((30 / 375)* 100vw);
  }
}

/* footer */
footer {
  background-image: url(../img/footer-bg.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  height: calc((395 / 1920)* 100vw);
}
.copyright {
  font-size: clamp(16px, calc((16 / 1920) * 100vw), 24px);
  color: #fff;
  text-align: center;
  padding-top: calc((330 / 1920)* 100vw);
}
@media (max-width: 768px) {
  footer {
    background-image: url(../img/footer-bg-sp.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
    height: calc((262 / 375)* 100vw);
  }
  .copyright {
    font-size: clamp(12px, calc((12 / 375) * 100vw), 20px);
    color: #fff;
    text-align: center;
    padding-top: calc((220 / 375)* 100vw);
  }  
}
/* フローティングボタン */
#float-btn {
    opacity: 0;
    visibility: hidden;
}
.float-btn {
  width: calc((96 / 375)* 100vw);
  height: calc((96 / 375)* 100vw);
  border: 3px #333 solid;
  border-radius: 50%;
  background-color: #23AFAA;
  position: fixed;
  z-index: 10;
  right: 2%;
  bottom: 2%;
}
.foat-btn-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}
.foat-btn-link-p {
  font-size: clamp(10px, calc((13 / 375) * 100vw), 18px);
  font-weight: 700;
  color: #333;
}