@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.sds_header {
  background-color: transparent;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
}
@media print, screen and (min-width: 768px) {
  .sds_header {
    top: 25px;
  }
}
@media print, screen and (min-width: 1200px) {
  .sds_header {
    top: 30px;
  }
}

.sds_header__logo {
  width: 124px;
  background-color: transparent;
}
@media print, screen and (min-width: 768px) {
  .sds_header__logo {
    width: 180px;
  }
}
@media print, screen and (min-width: 1024px) {
  .sds_header__logo {
    width: 220px;
  }
}
@media print, screen and (min-width: 1200px) {
  .sds_header__logo {
    width: 261px;
  }
}
.sds_header__logo a {
  display: block;
}

.sds_mv {
  position: relative;
  overflow: hidden;
}

.sds_mv__bg {
  height: 400px;
  opacity: 0;
  filter: blur(5px);
  transition: opacity 0.8s 0.3s ease-out, filter 0.8s 0.3s ease-out;
}
@media print, screen and (min-width: 321px) {
  .sds_mv__bg {
    height: 500px;
  }
}
@media print, screen and (min-width: 768px) {
  .sds_mv__bg {
    height: auto;
  }
}
.sds_mv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 63% center;
}

.sds_mv__text {
  width: 70%;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%) translateX(-8%);
  opacity: 0;
  transition: transform 1s 0.7s ease-out, opacity 1s 0.7s ease-out;
}
@media print, screen and (min-width: 768px) {
  .sds_mv__text {
    width: 30%;
    left: 20%;
  }
}
.sds_mv__text img {
  width: 100%;
}

.sds_mv__textsliderarea {
  width: 100%;
  position: absolute;
  bottom: 10px;
  left: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.8s 1.2s ease-out;
}

.sds_mv__textslider {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.sds_mv__textslider_track {
  width: max-content;
  display: flex;
  white-space: nowrap;
  animation: mv-scroll 30s linear infinite;
}

.slidmv__textslider_item {
  font-size: clamp(4.5rem, 5.9375vw, 12rem);
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  padding: 0 3rem;
}

/* 永久ループ（左方向へスライド） */
@keyframes mv-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* 動きの苦手なユーザーへの配慮 */
@media (prefers-reduced-motion: reduce) {
  .mv_textslider_track {
    animation: none;
  }
}
.sds_mv.is-active .sds_mv__bg {
  opacity: 1;
  filter: blur(0);
}
.sds_mv.is-active .sds_mv__text {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}
.sds_mv.is-active .sds_mv__textsliderarea {
  opacity: 1;
}

.font__barlow {
  font-family: "Barlow", sans-serif;
}

.sds_inner {
  max-width: 1200px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
@media print, screen and (min-width: 1024px) {
  .sds_inner {
    width: calc(100% - 60px);
  }
}
@media print, screen and (min-width: 1200px) {
  .sds_inner {
    width: calc(100% - 80px);
  }
}

.page_anchor {
  padding-block: 60px;
  background: url(../img/soudannsitu/page_anchor_bg.jpg) no-repeat center bottom;
  background-size: cover;
}
@media print, screen and (min-width: 768px) {
  .page_anchor {
    padding-block: 75px;
  }
}
@media print, screen and (min-width: 1024px) {
  .page_anchor {
    padding-block: 90px;
  }
}
@media print, screen and (min-width: 1200px) {
  .page_anchor {
    padding-block: 100px;
  }
}

.anchor__list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media print, screen and (min-width: 768px) {
  .anchor__list {
    gap: 20px;
  }
}

.anchor__item {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .anchor__item {
    width: calc((100% - 20px) / 2);
  }
}
.anchor__item a {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  color: #53e59f;
  letter-spacing: 0;
  text-decoration: none;
  width: 100%;
  display: block;
  padding: 15px 20px 15px 60px;
  border-radius: 9999px;
  background-color: #fff;
  position: relative;
  transition: letter-spacing 0.3s, box-shadow 0.3s;
}
@media print, screen and (min-width: 768px) {
  .anchor__item a {
    font-size: 2.2rem;
    padding: 18px 20px 18px 60px;
  }
}
@media print, screen and (min-width: 1024px) {
  .anchor__item a {
    font-size: 2.5rem;
    padding: 18px 35px 18px 50px;
  }
}
@media print, screen and (min-width: 1200px) {
  .anchor__item a {
    font-size: 2.8rem;
    padding: 18px 50px;
  }
}
.anchor__item a::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media print, screen and (min-width: 768px) {
  .anchor__item a::before {
    width: 60px;
    height: 60px;
  }
}
@media print, screen and (min-width: 1024px) {
  .anchor__item a::before {
    width: 70px;
    height: 70px;
  }
}
@media print, screen and (min-width: 1200px) {
  .anchor__item a::before {
    width: 80px;
    height: 80px;
  }
}
@media not all and (hover: none) {
  .anchor__item a:hover {
    letter-spacing: 0.05em;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  }
}
.anchor__item:nth-child(1) a::before {
  background-image: url(../img/soudannsitu/sec_icon1.svg);
}
.anchor__item:nth-child(2) a::before {
  background-image: url(../img/soudannsitu/sec_icon2.svg);
}
.anchor__item:nth-child(3) a::before {
  background-image: url(../img/soudannsitu/sec_icon3.svg);
}
.anchor__item:nth-child(4) a::before {
  background-image: url(../img/soudannsitu/sec_icon4.svg);
}
.anchor__item:nth-child(5) a::before {
  background-image: url(../img/soudannsitu/sec_icon5.svg);
}
.anchor__item:nth-child(6) a::before {
  background-image: url(../img/soudannsitu/sec_icon6.svg);
}

.sds_main__content {
  overflow: hidden;
}
.sds_main__content p,
.sds_main__content h2,
.sds_main__content h3,
.sds_main__content h4,
.sds_main__content h5 {
  letter-spacing: 0;
}

.content__geometry_bg {
  padding-block: 60px;
  background: url(../img/soudannsitu/sds_main_bg_sp.jpg) no-repeat center center;
  background-size: cover;
}
@media print, screen and (min-width: 321px) {
  .content__geometry_bg {
    padding-block: 70px;
  }
}
@media print, screen and (min-width: 768px) {
  .content__geometry_bg {
    padding-block: 100px;
    background: url(../img/soudannsitu/sds_main_bg_pc.jpg) no-repeat center center;
    background-size: cover;
  }
}
@media print, screen and (min-width: 1024px) {
  .content__geometry_bg {
    padding-block: 130px;
  }
}
@media print, screen and (min-width: 1200px) {
  .content__geometry_bg {
    padding-block: 150px;
  }
}

.sds_sec:not(:last-child) {
  margin-bottom: 80px;
}
@media print, screen and (min-width: 768px) {
  .sds_sec:not(:last-child) {
    margin-bottom: 100px;
  }
}
@media print, screen and (min-width: 1024px) {
  .sds_sec:not(:last-child) {
    margin-bottom: 130px;
  }
}
@media print, screen and (min-width: 1200px) {
  .sds_sec:not(:last-child) {
    margin-bottom: 150px;
  }
}

.sds_sec__title {
  font-size: 2.3rem;
  font-weight: bold;
  color: #53e59f;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 40px;
}
@media print, screen and (min-width: 321px) {
  .sds_sec__title {
    font-size: 2.4rem;
  }
}
@media print, screen and (min-width: 768px) {
  .sds_sec__title {
    font-size: 3.5rem;
    margin-bottom: 80px;
  }
}
@media print, screen and (min-width: 1024px) {
  .sds_sec__title {
    font-size: 4.5rem;
    margin-bottom: 95px;
  }
}
@media print, screen and (min-width: 1200px) {
  .sds_sec__title {
    font-size: 6rem;
    margin-bottom: 110px;
  }
}
.sds_sec__title span {
  padding-top: 80px;
  display: inline-block;
  position: relative;
  border-bottom: 3px solid #53e59f;
}
@media print, screen and (min-width: 321px) {
  .sds_sec__title span {
    padding-top: 85px;
  }
}
@media print, screen and (min-width: 768px) {
  .sds_sec__title span {
    padding-top: 0;
    border-bottom: 4px solid #53e59f;
  }
}
@media print, screen and (min-width: 1024px) {
  .sds_sec__title span {
    border-bottom: 5px solid #53e59f;
  }
}
@media print, screen and (min-width: 1200px) {
  .sds_sec__title span {
    border-bottom: 6px solid #53e59f;
  }
}
.sds_sec__title span::before {
  content: "";
  width: 60px;
  height: 60px;
  display: block;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
@media print, screen and (min-width: 321px) {
  .sds_sec__title span::before {
    width: 65px;
    height: 65px;
  }
}
@media print, screen and (min-width: 768px) {
  .sds_sec__title span::before {
    width: 80px;
    height: 80px;
    margin: 0;
    top: 50%;
    left: -105px;
    right: auto;
    transform: translateY(-50%);
  }
}
@media print, screen and (min-width: 1024px) {
  .sds_sec__title span::before {
    width: 100px;
    height: 100px;
    left: -130px;
  }
}
@media print, screen and (min-width: 1200px) {
  .sds_sec__title span::before {
    width: 120px;
    height: 120px;
    left: -155px;
  }
}

.how_sec .sds_sec__title span::before {
  background-image: url(../img/soudannsitu/sec_icon1.svg);
}

.when_sec .sds_sec__title span::before {
  background-image: url(../img/soudannsitu/sec_icon2.svg);
}

.capacity_sec .sds_sec__title span::before {
  background-image: url(../img/soudannsitu/sec_icon3.svg);
}

.subject_sec .sds_sec__title span::before {
  background-image: url(../img/soudannsitu/sec_icon4.svg);
}

.where_sec .sds_sec__title span::before {
  background-image: url(../img/soudannsitu/sec_icon5.svg);
}

.other_sec .sds_sec__title span::before {
  background-image: url(../img/soudannsitu/sec_icon7.svg);
}

.sds_sec__bdrtitle {
  font-size: 2.3rem;
  font-weight: bold;
  color: #53e59f;
  text-align: center;
  line-height: 1.4;
  padding: 9px 15px 11px 15px;
  margin-bottom: 50px;
  border: 4px solid #53e59f;
  border-radius: 45px;
  background-color: #fff;
}
@media print, screen and (min-width: 321px) {
  .sds_sec__bdrtitle {
    font-size: 2.5rem;
    padding: 9px 18px 11px 18px;
    margin-bottom: 60px;
  }
}
@media print, screen and (min-width: 768px) {
  .sds_sec__bdrtitle {
    font-size: 3.2rem;
    padding: 9px 20px 11px 20px;
    margin-bottom: 70px;
  }
}
@media print, screen and (min-width: 1024px) {
  .sds_sec__bdrtitle {
    font-size: 3.8rem;
    margin-bottom: 80px;
  }
}
@media print, screen and (min-width: 1200px) {
  .sds_sec__bdrtitle {
    font-size: 4.4rem;
    margin-bottom: 90px;
  }
}

.sds_sec__subtitle {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 321px) {
  .sds_sec__subtitle {
    font-size: 2.2rem;
    gap: 15px;
  }
}
@media print, screen and (min-width: 768px) {
  .sds_sec__subtitle {
    font-size: 2.7rem;
    gap: 20px;
    margin-bottom: 30px;
  }
}
@media print, screen and (min-width: 1024px) {
  .sds_sec__subtitle {
    font-size: 3.2rem;
    margin-bottom: 40px;
  }
}
@media print, screen and (min-width: 1200px) {
  .sds_sec__subtitle {
    font-size: 3.6rem;
    margin-bottom: 45px;
  }
}
.sds_sec__subtitle span {
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  padding: 2px 6px 2px 6px;
  background-color: #53e59f;
}
@media print, screen and (min-width: 321px) {
  .sds_sec__subtitle span {
    font-size: 1.5rem;
  }
}
@media print, screen and (min-width: 768px) {
  .sds_sec__subtitle span {
    font-size: 1.6rem;
    padding: 2px 8px 3px 8px;
  }
}
@media print, screen and (min-width: 1024px) {
  .sds_sec__subtitle span {
    font-size: 1.7rem;
  }
}
@media print, screen and (min-width: 1200px) {
  .sds_sec__subtitle span {
    font-size: 1.8rem;
  }
}

.sds_sec__whitebox {
  padding: 35px 15px;
  background-color: #fff;
}
@media print, screen and (min-width: 321px) {
  .sds_sec__whitebox {
    padding: 40px 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .sds_sec__whitebox {
    padding: 50px 30px 50px 30px;
  }
}
@media print, screen and (min-width: 1024px) {
  .sds_sec__whitebox {
    padding: 65px 45px 65px 45px;
  }
}
@media print, screen and (min-width: 1200px) {
  .sds_sec__whitebox {
    padding: 85px 60px 80px 60px;
  }
}

.how_sec .how_sec__child:not(:last-child) {
  margin-bottom: 35px;
}
@media print, screen and (min-width: 321px) {
  .how_sec .how_sec__child:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media print, screen and (min-width: 768px) {
  .how_sec .how_sec__child:not(:last-child) {
    margin-bottom: 60px;
  }
}
@media print, screen and (min-width: 1024px) {
  .how_sec .how_sec__child:not(:last-child) {
    margin-bottom: 80px;
  }
}
@media print, screen and (min-width: 1200px) {
  .how_sec .how_sec__child:not(:last-child) {
    margin-bottom: 100px;
  }
}
.how_sec .how_sec__child h3 {
  font-size: 2.3rem;
  font-weight: bold;
  color: #009999;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 40px;
}
@media print, screen and (min-width: 321px) {
  .how_sec .how_sec__child h3 {
    font-size: 2.6rem;
    margin-bottom: 40px;
  }
}
@media print, screen and (min-width: 768px) {
  .how_sec .how_sec__child h3 {
    font-size: 4rem;
    margin-bottom: 55px;
  }
}
@media print, screen and (min-width: 1024px) {
  .how_sec .how_sec__child h3 {
    font-size: 5.1rem;
    margin-bottom: 60px;
  }
}
@media print, screen and (min-width: 1200px) {
  .how_sec .how_sec__child h3 {
    font-size: 6.2rem;
    margin-bottom: 65px;
  }
}
.how_sec .child1 .child__blk:not(:last-child) {
  margin-bottom: 45px;
}
@media print, screen and (min-width: 321px) {
  .how_sec .child1 .child__blk:not(:last-child) {
    margin-bottom: 50px;
  }
}
@media print, screen and (min-width: 768px) {
  .how_sec .child1 .child__blk:not(:last-child) {
    margin-bottom: 60px;
  }
}
@media print, screen and (min-width: 1024px) {
  .how_sec .child1 .child__blk:not(:last-child) {
    margin-bottom: 70px;
  }
}
@media print, screen and (min-width: 1200px) {
  .how_sec .child1 .child__blk:not(:last-child) {
    margin-bottom: 80px;
  }
}
.how_sec .child1 .child__head {
  margin-bottom: 20px;
}
@media print, screen and (min-width: 1024px) {
  .how_sec .child1 .child__head {
    margin-bottom: 25px;
  }
}
.how_sec .child1 .child__head .child__head_num {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 1px;
  margin: 0 auto 15px auto;
  border-radius: 50%;
  background: linear-gradient(90deg, rgb(90, 225, 160) 0%, rgb(174, 255, 107) 100%);
}
@media print, screen and (min-width: 321px) {
  .how_sec .child1 .child__head .child__head_num {
    font-size: 2.7rem;
    width: 45px;
    height: 45px;
  }
}
@media print, screen and (min-width: 768px) {
  .how_sec .child1 .child__head .child__head_num {
    font-size: 3rem;
    width: 50px;
    height: 50px;
    padding-bottom: 2px;
    margin: 0 auto 16px auto;
  }
}
@media print, screen and (min-width: 1024px) {
  .how_sec .child1 .child__head .child__head_num {
    font-size: 3.3rem;
    width: 55px;
    height: 55px;
  }
}
@media print, screen and (min-width: 1200px) {
  .how_sec .child1 .child__head .child__head_num {
    font-size: 3.7rem;
    width: 60px;
    height: 60px;
    margin: 0 auto 18px auto;
  }
}
.how_sec .child1 .child__head h4 {
  font-size: 2.4rem;
  font-weight: bold;
  color: #53e59f;
  text-align: center;
  line-height: 1.33;
}
@media print, screen and (min-width: 321px) {
  .how_sec .child1 .child__head h4 {
    font-size: 2.6rem;
  }
}
@media print, screen and (min-width: 768px) {
  .how_sec .child1 .child__head h4 {
    font-size: 3rem;
  }
}
@media print, screen and (min-width: 1024px) {
  .how_sec .child1 .child__head h4 {
    font-size: 3.3rem;
  }
}
@media print, screen and (min-width: 1200px) {
  .how_sec .child1 .child__head h4 {
    font-size: 3.6rem;
  }
}
.how_sec .child1 .child__text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
  margin: 0 auto;
}
@media print, screen and (min-width: 321px) {
  .how_sec .child1 .child__text {
    font-size: 1.5rem;
  }
}
@media print, screen and (min-width: 768px) {
  .how_sec .child1 .child__text {
    font-size: 1.7rem;
    max-width: 860px;
  }
}
@media print, screen and (min-width: 1024px) {
  .how_sec .child1 .child__text {
    font-size: 1.9rem;
  }
}
@media print, screen and (min-width: 1200px) {
  .how_sec .child1 .child__text {
    font-size: 2rem;
  }
}
.how_sec .child1 .child__text img {
  width: 100%;
  display: block;
  margin: 30px auto 0 auto;
}
@media print, screen and (min-width: 321px) {
  .how_sec .child1 .child__text img {
    margin: 35px auto 0 auto;
  }
}
@media print, screen and (min-width: 768px) {
  .how_sec .child1 .child__text img {
    max-width: 630px;
    margin: 50px auto 0 auto;
  }
}
@media print, screen and (min-width: 1024px) {
  .how_sec .child1 .child__text img {
    margin: 70px auto 0 auto;
  }
}
@media print, screen and (min-width: 1200px) {
  .how_sec .child1 .child__text img {
    margin: 85px auto 0 auto;
  }
}
.how_sec .child2 h3 .bdr {
  font-size: 1.8rem;
  font-weight: 500;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  margin-bottom: 10px;
  position: relative;
}
@media print, screen and (min-width: 321px) {
  .how_sec .child2 h3 .bdr {
    font-size: 2rem;
    padding: 0 20px;
    margin-bottom: 13px;
  }
}
@media print, screen and (min-width: 768px) {
  .how_sec .child2 h3 .bdr {
    font-size: 2.4rem;
    padding: 0 22px;
    margin-bottom: 16px;
  }
}
@media print, screen and (min-width: 1024px) {
  .how_sec .child2 h3 .bdr {
    font-size: 2.7rem;
    padding: 0 24px;
    margin-bottom: 18px;
  }
}
@media print, screen and (min-width: 1200px) {
  .how_sec .child2 h3 .bdr {
    font-size: 3rem;
    padding: 0 25px;
    margin-bottom: 20px;
  }
}
.how_sec .child2 h3 .bdr::before, .how_sec .child2 h3 .bdr::after {
  content: "";
  width: 2px;
  height: 26px;
  display: block;
  background-color: #000;
  position: absolute;
}
@media print, screen and (min-width: 321px) {
  .how_sec .child2 h3 .bdr::before, .how_sec .child2 h3 .bdr::after {
    height: 28px;
  }
}
@media print, screen and (min-width: 768px) {
  .how_sec .child2 h3 .bdr::before, .how_sec .child2 h3 .bdr::after {
    width: 3px;
    height: 30px;
  }
}
@media print, screen and (min-width: 1024px) {
  .how_sec .child2 h3 .bdr::before, .how_sec .child2 h3 .bdr::after {
    height: 32px;
  }
}
@media print, screen and (min-width: 1200px) {
  .how_sec .child2 h3 .bdr::before, .how_sec .child2 h3 .bdr::after {
    height: 34px;
  }
}
.how_sec .child2 h3 .bdr::before {
  left: 0;
  transform: rotate(-30deg);
}
.how_sec .child2 h3 .bdr::after {
  right: 0;
  transform: rotate(30deg);
}
@media print, screen and (min-width: 768px) {
  .how_sec .child2 .faculty {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-columns: 100px 1fr;
    gap: 20px;
  }
}
@media print, screen and (min-width: 1024px) {
  .how_sec .child2 .faculty {
    grid-template-columns: 110px 1fr;
  }
}
@media print, screen and (min-width: 1200px) {
  .how_sec .child2 .faculty {
    grid-template-columns: 120px 1fr;
  }
}
.how_sec .child2 .faculty p,
.how_sec .child2 .faculty dt,
.how_sec .child2 .faculty a {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}
@media print, screen and (min-width: 321px) {
  .how_sec .child2 .faculty p,
  .how_sec .child2 .faculty dt,
  .how_sec .child2 .faculty a {
    font-size: 1.5rem;
  }
}
@media print, screen and (min-width: 768px) {
  .how_sec .child2 .faculty p,
  .how_sec .child2 .faculty dt,
  .how_sec .child2 .faculty a {
    font-size: 1.8rem;
  }
}
@media print, screen and (min-width: 1024px) {
  .how_sec .child2 .faculty p,
  .how_sec .child2 .faculty dt,
  .how_sec .child2 .faculty a {
    font-size: 2.1rem;
  }
}
@media print, screen and (min-width: 1200px) {
  .how_sec .child2 .faculty p,
  .how_sec .child2 .faculty dt,
  .how_sec .child2 .faculty a {
    font-size: 2.4rem;
  }
}
.how_sec .child2 .faculty p,
.how_sec .child2 .faculty dt {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
}
.how_sec .child2 .faculty p {
  padding: 18px 15px;
  margin-bottom: 15px;
  background: linear-gradient(0deg, rgb(90, 225, 160) 0%, rgb(174, 255, 107) 100%);
}
@media print, screen and (min-width: 321px) {
  .how_sec .child2 .faculty p {
    padding: 20px 15px;
  }
}
@media print, screen and (min-width: 768px) {
  .how_sec .child2 .faculty p {
    line-height: 1;
    letter-spacing: -0.4em;
    writing-mode: vertical-rl;
    margin-bottom: 0;
  }
}
.how_sec .child2 .faculty dl {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
}
@media print, screen and (min-width: 321px) {
  .how_sec .child2 .faculty dl {
    grid-template-columns: 45px 1fr;
  }
}
@media print, screen and (min-width: 768px) {
  .how_sec .child2 .faculty dl {
    grid-template-columns: 36.95% 1fr;
    gap: 20px;
  }
}
.how_sec .child2 .faculty dt {
  letter-spacing: -0.4em;
  writing-mode: vertical-rl;
  padding: 15px 11px 20px 10px;
}
@media print, screen and (min-width: 768px) {
  .how_sec .child2 .faculty dt {
    letter-spacing: 0;
    writing-mode: horizontal-tb;
    padding: 15px;
  }
}
.how_sec .child2 .faculty ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.how_sec .child2 .faculty li {
  width: 100%;
}
.how_sec .child2 .faculty a {
  color: #000;
  text-decoration: none;
  letter-spacing: 0;
  display: block;
  padding: 14px 33px 14px 10px;
  border-radius: 100px;
  position: relative;
  transition: letter-spacing 0.3s, box-shadow 0.3s, opacity 0.3s;
}
@media print, screen and (min-width: 321px) {
  .how_sec .child2 .faculty a {
    padding: 15px 35px 15px 15px;
  }
}
@media print, screen and (min-width: 768px) {
  .how_sec .child2 .faculty a {
    padding: 17px 20px;
  }
}
@media print, screen and (min-width: 1024px) {
  .how_sec .child2 .faculty a {
    padding: 20px;
  }
}
.how_sec .child2 .faculty a::after {
  content: "";
  width: 14px;
  height: 14px;
  display: block;
  background: url(../img/soudannsitu/external_icon.svg) no-repeat center center;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 1;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 321px) {
  .how_sec .child2 .faculty a::after {
    width: 15px;
    height: 15px;
  }
}
@media print, screen and (min-width: 768px) {
  .how_sec .child2 .faculty a::after {
    width: 16px;
    height: 16px;
    right: 20px;
  }
}
@media print, screen and (min-width: 1024px) {
  .how_sec .child2 .faculty a::after {
    width: 18px;
    height: 18px;
    right: 30px;
  }
}
@media print, screen and (min-width: 1200px) {
  .how_sec .child2 .faculty a::after {
    width: 20px;
    height: 20px;
    right: 40px;
  }
}
@media not all and (hover: none) {
  .how_sec .child2 .faculty a:hover {
    letter-spacing: 0.05em;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    opacity: 0.85;
  }
}
@media print, screen and (min-width: 768px) {
  .how_sec .child2 .faculty__department {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.how_sec .child2 .department__creative {
  margin-bottom: 15px;
}
@media print, screen and (min-width: 768px) {
  .how_sec .child2 .department__creative {
    margin-bottom: 0;
  }
}
.how_sec .child2 .department__creative dt,
.how_sec .child2 .department__creative a {
  background-color: #acff80;
}
.how_sec .child2 .department_system dt,
.how_sec .child2 .department_system a {
  background-color: #53e59f;
}
.how_sec .child3 ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 15px;
}
@media print, screen and (min-width: 321px) {
  .how_sec .child3 ul {
    gap: 15px;
  }
}
@media print, screen and (min-width: 768px) {
  .how_sec .child3 ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}
@media print, screen and (min-width: 1024px) {
  .how_sec .child3 ul {
    gap: 21px;
  }
}
@media print, screen and (min-width: 1200px) {
  .how_sec .child3 ul {
    gap: 24px;
  }
}
.how_sec .child3 ul img {
  width: 100%;
}
.how_sec .child3 p {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.4;
}
@media print, screen and (min-width: 768px) {
  .how_sec .child3 p {
    font-size: 1.4rem;
  }
}

_::-webkit-full-page-media,
_:future,
:root .how_sec .child2 .faculty p {
  letter-spacing: 0 !important;
}

_::-webkit-full-page-media,
_:future,
:root .how_sec .child2 .faculty dt {
  letter-spacing: 0 !important;
}

.sds_sec_subblk:not(:last-child) {
  margin-bottom: 55px;
}
@media print, screen and (min-width: 321px) {
  .sds_sec_subblk:not(:last-child) {
    margin-bottom: 60px;
  }
}
@media print, screen and (min-width: 768px) {
  .sds_sec_subblk:not(:last-child) {
    margin-bottom: 70px;
  }
}
@media print, screen and (min-width: 1024px) {
  .sds_sec_subblk:not(:last-child) {
    margin-bottom: 80px;
  }
}
@media print, screen and (min-width: 1200px) {
  .sds_sec_subblk:not(:last-child) {
    margin-bottom: 90px;
  }
}
.sds_sec_subblk.type_short table {
  width: 500px;
}
@media print, screen and (min-width: 768px) {
  .sds_sec_subblk.type_short table {
    width: 100%;
  }
}
.sds_sec_subblk.type_short table.tb_normal tbody th {
  width: 32%;
}
@media print, screen and (min-width: 768px) {
  .sds_sec_subblk.type_short table.tb_normal tbody th {
    width: 20%;
  }
}
.sds_sec_subblk table {
  width: 800px;
}
@media print, screen and (min-width: 768px) {
  .sds_sec_subblk table {
    width: 100%;
  }
}
.sds_sec_subblk table.no_scroll {
  width: 100%;
}
.sds_sec_subblk table tr > th.sticky {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2;
}
.sds_sec_subblk table th,
.sds_sec_subblk table td {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  vertical-align: middle;
  border: 1px solid #e6e6e6;
}
@media print, screen and (min-width: 768px) {
  .sds_sec_subblk table th,
  .sds_sec_subblk table td {
    font-size: 1.5rem;
    line-height: 1.75;
  }
}
@media print, screen and (min-width: 1200px) {
  .sds_sec_subblk table th,
  .sds_sec_subblk table td {
    font-size: 1.6rem;
  }
}
.sds_sec_subblk table th {
  color: #fff;
  text-align: center;
  padding: 15px 8px;
  background-color: #53e59f;
}
@media print, screen and (min-width: 768px) {
  .sds_sec_subblk table th {
    padding: 15px;
  }
}
@media print, screen and (min-width: 1024px) {
  .sds_sec_subblk table th {
    padding: 18px;
  }
}
@media print, screen and (min-width: 1200px) {
  .sds_sec_subblk table th {
    padding: 20px;
  }
}
.sds_sec_subblk table td {
  padding: 15px 8px;
  background-color: #fff;
}
@media print, screen and (min-width: 321px) {
  .sds_sec_subblk table td {
    padding: 15px;
  }
}
@media print, screen and (min-width: 768px) {
  .sds_sec_subblk table td {
    padding: 15px 20px;
  }
}
@media print, screen and (min-width: 1024px) {
  .sds_sec_subblk table td {
    padding: 18px 25px;
  }
}
@media print, screen and (min-width: 1200px) {
  .sds_sec_subblk table td {
    padding: 20px 30px;
  }
}
.sds_sec_subblk table.font_large th {
  font-size: 1.5rem;
  padding: 15px 10px;
}
@media print, screen and (min-width: 321px) {
  .sds_sec_subblk table.font_large th {
    padding: 15px;
  }
}
@media print, screen and (min-width: 768px) {
  .sds_sec_subblk table.font_large th {
    font-size: 1.6rem;
    padding: 18px;
  }
}
@media print, screen and (min-width: 1024px) {
  .sds_sec_subblk table.font_large th {
    font-size: 1.7rem;
    padding: 20px 20px;
  }
}
@media print, screen and (min-width: 1200px) {
  .sds_sec_subblk table.font_large th {
    font-size: 1.8rem;
    padding: 23px 20px;
  }
}
.sds_sec_subblk table.font_large td {
  font-size: 1.6rem;
  text-align: center;
  padding: 15px 10px;
}
@media print, screen and (min-width: 321px) {
  .sds_sec_subblk table.font_large td {
    font-size: 1.7rem;
    padding: 15px;
  }
}
@media print, screen and (min-width: 768px) {
  .sds_sec_subblk table.font_large td {
    font-size: 2rem;
    padding: 18px 20px;
  }
}
@media print, screen and (min-width: 1024px) {
  .sds_sec_subblk table.font_large td {
    font-size: 2.2rem;
    padding: 20px 25px;
  }
}
@media print, screen and (min-width: 1200px) {
  .sds_sec_subblk table.font_large td {
    font-size: 2.4rem;
    padding: 23px 30px;
  }
}
.sds_sec_subblk table.composite_tb th,
.sds_sec_subblk table.composite_tb td {
  text-align: center;
  vertical-align: middle;
  padding: 8px 5px;
}
@media print, screen and (min-width: 768px) {
  .sds_sec_subblk table.composite_tb th,
  .sds_sec_subblk table.composite_tb td {
    padding: 8px 10px;
  }
}
.sds_sec_subblk table.composite_tb th sup,
.sds_sec_subblk table.composite_tb td sup {
  font-size: 1.1rem;
  vertical-align: top;
  padding: 0 2px;
}
@media print, screen and (min-width: 768px) {
  .sds_sec_subblk table.composite_tb th sup,
  .sds_sec_subblk table.composite_tb td sup {
    font-size: 1.2rem;
    padding: 0 4px;
  }
}
.sds_sec_subblk table .wd150 {
  width: 14%;
}
.sds_sec_subblk table .wd200 {
  width: 16.66%;
}
.sds_sec_subblk table .wd250 {
  width: 20%;
}
.sds_sec_subblk table .wd300 {
  width: 27%;
}
.sds_sec_subblk table .wd400 {
  width: 33.33%;
}
.sds_sec_subblk table .align_left {
  text-align: left !important;
  padding-left: 15px !important;
}
.sds_sec_subblk table.tb_normal tbody th {
  width: 20%;
}
.sds_sec_subblk .scroll-hint-icon-wrap {
  z-index: 3;
}

.table_note {
  margin-top: 14px;
  text-align: left;
  font-size: 1.2rem;
  text-indent: -2em;
  padding-left: 2em;
}
@media print, screen and (min-width: 768px) {
  .table_note {
    font-size: 1.4rem;
    margin-top: 20px;
  }
}

@media print, screen and (min-width: 768px) {
  .js-scrollable {
    overflow: hidden !important;
  }
}

.button_grid {
  max-width: 1040px;
  display: grid;
  place-items: center;
  grid-template-columns: 1fr;
  gap: 15px;
  margin: 35px auto 0 auto;
}
@media print, screen and (min-width: 321px) {
  .button_grid {
    gap: 20px;
    margin: 40px auto 0 auto;
  }
}
@media print, screen and (min-width: 768px) {
  .button_grid {
    margin: 60px auto 0 auto;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
}
@media print, screen and (min-width: 1024px) {
  .button_grid {
    gap: 30px;
    margin: 80px auto 0 auto;
  }
}
@media print, screen and (min-width: 1200px) {
  .button_grid {
    gap: 40px;
    margin: 100px auto 0 auto;
  }
}
.button_grid a {
  font-size: 1.7rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-decoration: none;
  line-height: 1.5;
  width: 100%;
  display: grid;
  grid-template-rows: subgrid;
  align-items: center;
  padding: 11px 30px;
  border-radius: 100px;
  background: linear-gradient(90deg, rgb(90, 225, 160) 0%, rgb(174, 255, 107) 50%, rgb(90, 225, 160) 100%);
  background-position: 0% 50%;
  background-size: 200% auto;
  position: relative;
  transition: background 0.5s ease-out, box-shadow 0.5s;
}
@media print, screen and (min-width: 321px) {
  .button_grid a {
    font-size: 1.8rem;
    padding: 11px 35px;
  }
}
@media print, screen and (min-width: 768px) {
  .button_grid a {
    font-size: 2rem;
    line-height: 1.62;
    max-width: 500px;
    padding: 11px 40px;
  }
}
@media print, screen and (min-width: 1024px) {
  .button_grid a {
    font-size: 2.2rem;
    padding: 11px 45px;
  }
}
@media print, screen and (min-width: 1200px) {
  .button_grid a {
    font-size: 2.4rem;
    padding: 11px 50px;
  }
}
.button_grid a::after {
  content: "";
  width: 14px;
  height: 14px;
  display: block;
  background: url(../img/soudannsitu/external_icon.svg) no-repeat center center;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 1;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 321px) {
  .button_grid a::after {
    width: 15px;
    height: 15px;
    right: 18px;
  }
}
@media print, screen and (min-width: 768px) {
  .button_grid a::after {
    width: 16px;
    height: 16px;
    right: 20px;
  }
}
@media print, screen and (min-width: 1024px) {
  .button_grid a::after {
    width: 18px;
    height: 18px;
    right: 24px;
  }
}
@media print, screen and (min-width: 1200px) {
  .button_grid a::after {
    width: 20px;
    height: 20px;
    right: 28px;
  }
}
@media not all and (hover: none) {
  .button_grid a:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    background-position: 100% 51%;
  }
}
.button_grid.clm1 a {
  font-size: 1.8rem;
  padding: 15px 30px;
}
@media print, screen and (min-width: 321px) {
  .button_grid.clm1 a {
    font-size: 2rem;
    padding: 16px 35px;
  }
}
@media print, screen and (min-width: 768px) {
  .button_grid.clm1 a {
    font-size: 2.3rem;
    max-width: 800px;
    padding: 18px 50px;
  }
}
@media print, screen and (min-width: 1024px) {
  .button_grid.clm1 a {
    font-size: 2.6rem;
    padding: 20px 60px;
  }
}
@media print, screen and (min-width: 1200px) {
  .button_grid.clm1 a {
    font-size: 2.8rem;
    padding: 22px 70px;
  }
}
.button_grid.clm1 a::after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background: url(../img/soudannsitu/external_icon.svg) no-repeat center center;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 1;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 321px) {
  .button_grid.clm1 a::after {
    width: 18px;
    height: 18px;
    right: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .button_grid.clm1 a::after {
    width: 20px;
    height: 20px;
    right: 28px;
  }
}
@media print, screen and (min-width: 1024px) {
  .button_grid.clm1 a::after {
    width: 23px;
    height: 23px;
    right: 35px;
  }
}
@media print, screen and (min-width: 1200px) {
  .button_grid.clm1 a::after {
    width: 26px;
    height: 26px;
    right: 42px;
  }
}

.where_sec .where_sec__map {
  width: 100%;
  margin: 0 auto 0 auto;
}
@media print, screen and (min-width: 768px) {
  .where_sec .where_sec__map {
    width: 71.66%;
  }
}
.where_sec .where_sec__map img {
  width: 100%;
}
.where_sec .where_sec__place h3 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
}
@media print, screen and (min-width: 321px) {
  .where_sec .where_sec__place h3 {
    font-size: 2.3rem;
    margin-bottom: 40px;
  }
}
@media print, screen and (min-width: 768px) {
  .where_sec .where_sec__place h3 {
    font-size: 2.6rem;
    margin-bottom: 50px;
  }
}
@media print, screen and (min-width: 1024px) {
  .where_sec .where_sec__place h3 {
    font-size: 2.9rem;
    margin-bottom: 60px;
  }
}
@media print, screen and (min-width: 1200px) {
  .where_sec .where_sec__place h3 {
    font-size: 3.2rem;
    margin-bottom: 70px;
  }
}
.where_sec .where_sec__place h3 span {
  border-bottom: 2px solid #000;
}
@media print, screen and (min-width: 768px) {
  .where_sec .where_sec__place h3 span {
    border-bottom: 3px solid #000;
  }
}
.where_sec .where_sec__place ul {
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .where_sec .where_sec__place ul {
    max-width: 790px;
  }
}
.where_sec .where_sec__place ul li:not(:last-child) {
  margin-bottom: 25px;
}
@media print, screen and (min-width: 768px) {
  .where_sec .where_sec__place ul li:not(:last-child) {
    margin-bottom: 21px;
  }
}
@media print, screen and (min-width: 1024px) {
  .where_sec .where_sec__place ul li:not(:last-child) {
    margin-bottom: 22px;
  }
}
@media print, screen and (min-width: 1200px) {
  .where_sec .where_sec__place ul li:not(:last-child) {
    margin-bottom: 23px;
  }
}
.where_sec .where_sec__place ul dl {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
}
@media print, screen and (min-width: 768px) {
  .where_sec .where_sec__place ul dl {
    gap: 20px;
  }
}
@media print, screen and (min-width: 1024px) {
  .where_sec .where_sec__place ul dl {
    gap: 35px;
  }
}
@media print, screen and (min-width: 1200px) {
  .where_sec .where_sec__place ul dl {
    gap: 44px;
  }
}
.where_sec .where_sec__place ul dt {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  width: 90px;
  padding: 5px 10px 6px 10px;
  border-radius: 30px;
  background-color: #53e59f;
}
@media print, screen and (min-width: 321px) {
  .where_sec .where_sec__place ul dt {
    font-size: 2rem;
    width: 100px;
  }
}
@media print, screen and (min-width: 768px) {
  .where_sec .where_sec__place ul dt {
    font-size: 2.3rem;
    width: 110px;
    padding: 9px 10px 11px 10px;
  }
}
@media print, screen and (min-width: 1024px) {
  .where_sec .where_sec__place ul dt {
    font-size: 2.6rem;
    width: 120px;
  }
}
@media print, screen and (min-width: 1200px) {
  .where_sec .where_sec__place ul dt {
    font-size: 2.8rem;
    width: 130px;
  }
}
.where_sec .where_sec__place ul dd {
  width: 100%;
  padding-top: 5px;
}
@media print, screen and (min-width: 768px) {
  .where_sec .where_sec__place ul dd {
    flex: 1;
  }
}
.where_sec .where_sec__place ul .place__name {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 4px;
}
@media print, screen and (min-width: 321px) {
  .where_sec .where_sec__place ul .place__name {
    font-size: 2.2rem;
  }
}
@media print, screen and (min-width: 768px) {
  .where_sec .where_sec__place ul .place__name {
    font-size: 2.6rem;
    margin-bottom: 8px;
  }
}
@media print, screen and (min-width: 1024px) {
  .where_sec .where_sec__place ul .place__name {
    font-size: 3rem;
  }
}
@media print, screen and (min-width: 1200px) {
  .where_sec .where_sec__place ul .place__name {
    font-size: 3.4rem;
  }
}
.where_sec .where_sec__place ul .place__address {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.75;
}
@media print, screen and (min-width: 321px) {
  .where_sec .where_sec__place ul .place__address {
    font-size: 1.5rem;
  }
}
@media print, screen and (min-width: 768px) {
  .where_sec .where_sec__place ul .place__address {
    font-size: 1.6rem;
  }
}
@media print, screen and (min-width: 1024px) {
  .where_sec .where_sec__place ul .place__address {
    font-size: 1.7rem;
  }
}
@media print, screen and (min-width: 1200px) {
  .where_sec .where_sec__place ul .place__address {
    font-size: 1.8rem;
  }
}

.other_sec {
  padding-block: 60px;
}
@media print, screen and (min-width: 321px) {
  .other_sec {
    padding-block: 70px;
  }
}
@media print, screen and (min-width: 768px) {
  .other_sec {
    padding-block: 100px;
  }
}
@media print, screen and (min-width: 1024px) {
  .other_sec {
    padding-block: 130px;
  }
}
@media print, screen and (min-width: 1200px) {
  .other_sec {
    padding-block: 150px;
  }
}
.other_sec .other_sec__img {
  width: 100%;
  max-width: 400px;
  display: block;
  margin: 0 auto 45px auto;
}
@media print, screen and (min-width: 321px) {
  .other_sec .other_sec__img {
    margin: 0 auto 50px auto;
  }
}
@media print, screen and (min-width: 768px) {
  .other_sec .other_sec__img {
    width: 72.66%;
    max-width: 872px;
    margin: 0 auto 75px auto;
  }
}
@media print, screen and (min-width: 1024px) {
  .other_sec .other_sec__img {
    margin: 0 auto 100px auto;
  }
}
@media print, screen and (min-width: 1200px) {
  .other_sec .other_sec__img {
    margin: 0 auto 120px auto;
  }
}

.sds_footer {
  padding: 50px 0;
  background-color: #53e59f;
}
@media print, screen and (min-width: 321px) {
  .sds_footer {
    padding: 60px 0;
  }
}
@media print, screen and (min-width: 768px) {
  .sds_footer {
    padding: 100px 0;
  }
}
@media print, screen and (min-width: 1024px) {
  .sds_footer {
    padding: 130px 0;
  }
}
@media print, screen and (min-width: 1200px) {
  .sds_footer {
    padding: 150px 0;
  }
}

.sds_footer_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media print, screen and (min-width: 768px) {
  .sds_footer_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}

@media print, screen and (min-width: 1024px) {
  .sds_footer__info,
  .sds_footer__link_sns {
    padding-inline: 20px;
  }
}
@media print, screen and (min-width: 1200px) {
  .sds_footer__info,
  .sds_footer__link_sns {
    padding-inline: 35px;
  }
}

.sds_footer__info_logo {
  width: 100%;
  max-width: 480px;
  display: block;
  margin-bottom: 30px;
  transition: opacity 0.3s;
}
@media print, screen and (min-width: 321px) {
  .sds_footer__info_logo {
    margin-bottom: 35px;
  }
}
@media print, screen and (min-width: 768px) {
  .sds_footer__info_logo {
    width: 90.56%;
    margin-bottom: 45px;
  }
}
@media print, screen and (min-width: 1024px) {
  .sds_footer__info_logo {
    margin-bottom: 55px;
  }
}
@media print, screen and (min-width: 1200px) {
  .sds_footer__info_logo {
    margin-bottom: 65px;
  }
}
.sds_footer__info_logo img {
  width: 100%;
}
@media not all and (hover: none) {
  .sds_footer__info_logo:hover {
    opacity: 0.75;
  }
}

.sds_footer__info_text {
  max-width: 330px;
}
@media print, screen and (min-width: 1024px) {
  .sds_footer__info_text {
    margin-left: 24%;
  }
}
.sds_footer__info_text p,
.sds_footer__info_text dl {
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media print, screen and (min-width: 321px) {
  .sds_footer__info_text p,
  .sds_footer__info_text dl {
    font-size: 1.5rem;
  }
}
@media print, screen and (min-width: 768px) {
  .sds_footer__info_text p,
  .sds_footer__info_text dl {
    font-size: 1.6rem;
  }
}
@media print, screen and (min-width: 1024px) {
  .sds_footer__info_text p,
  .sds_footer__info_text dl {
    font-size: 1.7rem;
  }
}
@media print, screen and (min-width: 1200px) {
  .sds_footer__info_text p,
  .sds_footer__info_text dl {
    font-size: 1.8rem;
  }
}
.sds_footer__info_text p:not(:last-child) {
  margin-bottom: 5px;
}
.sds_footer__info_text dl {
  line-height: 1.4;
  display: flex;
}
.sds_footer__info_text dl:not(:last-child) {
  margin-bottom: 8px;
}
.sds_footer__info_text dt::after {
  content: "：";
}

.sds_footer__link {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-decoration: none;
  line-height: 1.4;
  letter-spacing: 0;
  display: block;
  padding: 13px 30px 13px 15px;
  margin: 0 auto 35px auto;
  border: 1px solid #fff;
  position: relative;
  transition: opacity 0.3s;
}
@media print, screen and (min-width: 321px) {
  .sds_footer__link {
    font-size: 1.7rem;
    margin: 0 auto 40px auto;
  }
}
@media print, screen and (min-width: 768px) {
  .sds_footer__link {
    font-size: 1.8rem;
    max-width: 380px;
    padding: 13px 35px;
    margin: 8% auto 60px auto;
  }
}
@media print, screen and (min-width: 1024px) {
  .sds_footer__link {
    font-size: 1.9rem;
    padding: 13px 37px;
    margin: 8% auto 70px auto;
  }
}
@media print, screen and (min-width: 1200px) {
  .sds_footer__link {
    font-size: 2rem;
    padding: 13px 40px;
    margin: 8% auto 80px auto;
  }
}
.sds_footer__link::after {
  content: "";
  width: 14px;
  height: 14px;
  display: block;
  background: url(../img/soudannsitu/external_icon.svg) no-repeat center center;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 1;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 321px) {
  .sds_footer__link::after {
    width: 15px;
    height: 15px;
  }
}
@media print, screen and (min-width: 768px) {
  .sds_footer__link::after {
    width: 16px;
    height: 16px;
    right: 16px;
  }
}
@media print, screen and (min-width: 1024px) {
  .sds_footer__link::after {
    width: 17px;
    height: 17px;
    right: 17px;
  }
}
@media print, screen and (min-width: 1200px) {
  .sds_footer__link::after {
    width: 18px;
    height: 18px;
    right: 18px;
  }
}
@media not all and (hover: none) {
  .sds_footer__link:hover {
    opacity: 0.75;
  }
}

.sds_footer__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
@media print, screen and (min-width: 768px) {
  .sds_footer__sns {
    gap: 18px;
  }
}
@media print, screen and (min-width: 1024px) {
  .sds_footer__sns {
    gap: 20px;
  }
}
@media print, screen and (min-width: 1200px) {
  .sds_footer__sns {
    gap: 22px;
  }
}
.sds_footer__sns li {
  flex: 1;
  max-width: 40px;
}
@media print, screen and (min-width: 321px) {
  .sds_footer__sns li {
    max-width: 48px;
  }
}
@media print, screen and (min-width: 768px) {
  .sds_footer__sns li {
    max-width: 58px;
  }
}
@media print, screen and (min-width: 1024px) {
  .sds_footer__sns li {
    max-width: 68px;
  }
}
@media print, screen and (min-width: 1200px) {
  .sds_footer__sns li {
    max-width: 78px;
  }
}
.sds_footer__sns li a {
  display: block;
  transition: opacity 0.3s;
}
@media not all and (hover: none) {
  .sds_footer__sns li a:hover {
    opacity: 0.8;
  }
}
.sds_footer__sns li img {
  width: 100%;
}

.pageTop {
  width: 45px;
  height: 45px;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 50;
  transition: transform 0.3s ease-out;
}
@media print, screen and (min-width: 321px) {
  .pageTop {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .pageTop {
    width: 75px;
    height: 75px;
  }
}
@media print, screen and (min-width: 1024px) {
  .pageTop {
    width: 100px;
    height: 100px;
    bottom: 25px;
    right: 25px;
  }
}
@media print, screen and (min-width: 1200px) {
  .pageTop {
    width: 120px;
    height: 120px;
    bottom: 30px;
    right: 30px;
  }
}
.pageTop button {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 50%;
  background: none;
  background: linear-gradient(90deg, rgb(90, 225, 160) 0%, rgb(174, 255, 107) 100%);
  appearance: none;
}
.pageTop button img {
  width: 60%;
  transition: transform 0.3s;
}
@media print, screen and (min-width: 768px) {
  .pageTop button img {
    width: 47.5%;
  }
}
@media not all and (hover: none) {
  .pageTop:hover {
    transform: scale(1.05);
  }
  .pageTop:hover button img {
    transform: translateY(-5px);
  }
}