@charset "UTF-8";
/*コンテナ最大幅*/
/*コンテナ基本幅*/
/* firstview高さ */
/*ヘッダー高さ*/
:root {
  --transition-duration: 0.3s;
  --transition-duration-slow: 1s;
  --transition-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: ease-in-out;
  --transition-delay: 0.5s;
  --color-white: #fff;
  --color-offwhite: #F3F3F3;
  --color-offwhite2: #F5F5F5;
  --color-skin: #F9E9D6;
  --color-black: #000;
  --color-brown-black: #140C03;
  --color-brown-black2: #150D04;
  --color-brown-black3: #160E05;
  --color-pale-black: #1E2022;
  --color-thin-black: #333;
  --color-thin-grey: #bbbcbc;
  --color-thinner-grey: #d0d0ce;
  --color-thinner2-grey: #ccc;
  --color-thinnest-grey: #ddd;
  --color-grey: #a7a8aa;
  --color-thin-dark-grey: #999;
  --color-another-grey: #4A4A4A;
  --color-dark-grey: #63666a;
  --color-darker-grey: #53565a;
  --color-darker-grey2: #585858;
  --color-black-grey: #333333;
  --color-orange: #ed8b00;
  --color-main-green: #86bc25;
  --color-thin-green: #86bc25;
  --color-green: #26890d;
  --color-dark-green: #009a44;
  --color-darkest-green: #046C38;
  --color-peacock-green: #007680;
  --color-most-thin-blue: #DDEFE8;
  --color-blue: #007cb0;
  --color-thin-blue: #009fe3;
  --color-dark-blue: #0076A8;
  --color-red: #D90B0B;
  --color-thin-error: #ffe0e2;
  --color-dark-error: #804246;
  /* font */
  --var-font-sans-serif: "Noto Sans JP", "Hiragino Kaku Gothic ProN",
  "Hiragino Sans", "Helvetica Neue", arial, meiryo, sans-serif;
  --var-font-english: "Open Sans", sans-serif;
  /* 文字太さ */
  --font-thickness-thin: 100;
  --font-thickness-light: 200;
  --font-thickness-regular: 400;
  --font-thickness-medium: 500;
  --font-thickness-bold: bold;
  --font-thickness-black: 900;
}

/* フォント */
@font-face {
  font-family: "Open Sans";
  src: url("/fonts/opensans/OpenSans-VariableFont_wdth,wght.ttf");
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/fonts/notosansjp/NotoSansJP-Thin.ttf");
  font-weight: 100;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/fonts/notosansjp/NotoSansJP-Light.ttf");
  font-weight: 200;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/fonts/notosansjp/NotoSansJP-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/fonts/notosansjp/NotoSansJP-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/fonts/notosansjp/NotoSansJP-Bold.ttf");
  font-weight: bold;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/fonts/notosansjp/NotoSansJP-Black.ttf");
  font-weight: 900;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/fonts/notosansjp/NotoSansJP-Regular.ttf");
  font-weight: 300;
}
/*フェードイン*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* 余白 */
.mt-1 {
  margin-top: 1px;
}

.mt-2 {
  margin-top: 2px;
}

.mt-3 {
  margin-top: 3px;
}

.mt-4 {
  margin-top: 4px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-6 {
  margin-top: 6px;
}

.mt-7 {
  margin-top: 7px;
}

.mt-8 {
  margin-top: 8px;
}

.mt-9 {
  margin-top: 9px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-11 {
  margin-top: 11px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-13 {
  margin-top: 13px;
}

.mt-14 {
  margin-top: 14px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-17 {
  margin-top: 17px;
}

.mt-18 {
  margin-top: 18px;
}

.mt-19 {
  margin-top: 19px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-21 {
  margin-top: 21px;
}

.mt-22 {
  margin-top: 22px;
}

.mt-23 {
  margin-top: 23px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-26 {
  margin-top: 26px;
}

.mt-27 {
  margin-top: 27px;
}

.mt-28 {
  margin-top: 28px;
}

.mt-29 {
  margin-top: 29px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-31 {
  margin-top: 31px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-33 {
  margin-top: 33px;
}

.mt-34 {
  margin-top: 34px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-36 {
  margin-top: 36px;
}

.mt-37 {
  margin-top: 37px;
}

.mt-38 {
  margin-top: 38px;
}

.mt-39 {
  margin-top: 39px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-41 {
  margin-top: 41px;
}

.mt-42 {
  margin-top: 42px;
}

.mt-43 {
  margin-top: 43px;
}

.mt-44 {
  margin-top: 44px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-46 {
  margin-top: 46px;
}

.mt-47 {
  margin-top: 47px;
}

.mt-48 {
  margin-top: 48px;
}

.mt-49 {
  margin-top: 49px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-51 {
  margin-top: 51px;
}

.mt-52 {
  margin-top: 52px;
}

.mt-53 {
  margin-top: 53px;
}

.mt-54 {
  margin-top: 54px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-56 {
  margin-top: 56px;
}

.mt-57 {
  margin-top: 57px;
}

.mt-58 {
  margin-top: 58px;
}

.mt-59 {
  margin-top: 59px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-61 {
  margin-top: 61px;
}

.mt-62 {
  margin-top: 62px;
}

.mt-63 {
  margin-top: 63px;
}

.mt-64 {
  margin-top: 64px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-66 {
  margin-top: 66px;
}

.mt-67 {
  margin-top: 67px;
}

.mt-68 {
  margin-top: 68px;
}

.mt-69 {
  margin-top: 69px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-71 {
  margin-top: 71px;
}

.mt-72 {
  margin-top: 72px;
}

.mt-73 {
  margin-top: 73px;
}

.mt-74 {
  margin-top: 74px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-76 {
  margin-top: 76px;
}

.mt-77 {
  margin-top: 77px;
}

.mt-78 {
  margin-top: 78px;
}

.mt-79 {
  margin-top: 79px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-81 {
  margin-top: 81px;
}

.mt-82 {
  margin-top: 82px;
}

.mt-83 {
  margin-top: 83px;
}

.mt-84 {
  margin-top: 84px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-86 {
  margin-top: 86px;
}

.mt-87 {
  margin-top: 87px;
}

.mt-88 {
  margin-top: 88px;
}

.mt-89 {
  margin-top: 89px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-91 {
  margin-top: 91px;
}

.mt-92 {
  margin-top: 92px;
}

.mt-93 {
  margin-top: 93px;
}

.mt-94 {
  margin-top: 94px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-96 {
  margin-top: 96px;
}

.mt-97 {
  margin-top: 97px;
}

.mt-98 {
  margin-top: 98px;
}

.mt-99 {
  margin-top: 99px;
}

.mt-100 {
  margin-top: 100px;
}

.ml-1 {
  margin-left: 1px;
}

.ml-2 {
  margin-left: 2px;
}

.ml-3 {
  margin-left: 3px;
}

.ml-4 {
  margin-left: 4px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-6 {
  margin-left: 6px;
}

.ml-7 {
  margin-left: 7px;
}

.ml-8 {
  margin-left: 8px;
}

.ml-9 {
  margin-left: 9px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-11 {
  margin-left: 11px;
}

.ml-12 {
  margin-left: 12px;
}

.ml-13 {
  margin-left: 13px;
}

.ml-14 {
  margin-left: 14px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-16 {
  margin-left: 16px;
}

.ml-17 {
  margin-left: 17px;
}

.ml-18 {
  margin-left: 18px;
}

.ml-19 {
  margin-left: 19px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-21 {
  margin-left: 21px;
}

.ml-22 {
  margin-left: 22px;
}

.ml-23 {
  margin-left: 23px;
}

.ml-24 {
  margin-left: 24px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-26 {
  margin-left: 26px;
}

.ml-27 {
  margin-left: 27px;
}

.ml-28 {
  margin-left: 28px;
}

.ml-29 {
  margin-left: 29px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-31 {
  margin-left: 31px;
}

.ml-32 {
  margin-left: 32px;
}

.ml-33 {
  margin-left: 33px;
}

.ml-34 {
  margin-left: 34px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-36 {
  margin-left: 36px;
}

.ml-37 {
  margin-left: 37px;
}

.ml-38 {
  margin-left: 38px;
}

.ml-39 {
  margin-left: 39px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-41 {
  margin-left: 41px;
}

.ml-42 {
  margin-left: 42px;
}

.ml-43 {
  margin-left: 43px;
}

.ml-44 {
  margin-left: 44px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-46 {
  margin-left: 46px;
}

.ml-47 {
  margin-left: 47px;
}

.ml-48 {
  margin-left: 48px;
}

.ml-49 {
  margin-left: 49px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-51 {
  margin-left: 51px;
}

.ml-52 {
  margin-left: 52px;
}

.ml-53 {
  margin-left: 53px;
}

.ml-54 {
  margin-left: 54px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-56 {
  margin-left: 56px;
}

.ml-57 {
  margin-left: 57px;
}

.ml-58 {
  margin-left: 58px;
}

.ml-59 {
  margin-left: 59px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-61 {
  margin-left: 61px;
}

.ml-62 {
  margin-left: 62px;
}

.ml-63 {
  margin-left: 63px;
}

.ml-64 {
  margin-left: 64px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-66 {
  margin-left: 66px;
}

.ml-67 {
  margin-left: 67px;
}

.ml-68 {
  margin-left: 68px;
}

.ml-69 {
  margin-left: 69px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-71 {
  margin-left: 71px;
}

.ml-72 {
  margin-left: 72px;
}

.ml-73 {
  margin-left: 73px;
}

.ml-74 {
  margin-left: 74px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-76 {
  margin-left: 76px;
}

.ml-77 {
  margin-left: 77px;
}

.ml-78 {
  margin-left: 78px;
}

.ml-79 {
  margin-left: 79px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-81 {
  margin-left: 81px;
}

.ml-82 {
  margin-left: 82px;
}

.ml-83 {
  margin-left: 83px;
}

.ml-84 {
  margin-left: 84px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-86 {
  margin-left: 86px;
}

.ml-87 {
  margin-left: 87px;
}

.ml-88 {
  margin-left: 88px;
}

.ml-89 {
  margin-left: 89px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-91 {
  margin-left: 91px;
}

.ml-92 {
  margin-left: 92px;
}

.ml-93 {
  margin-left: 93px;
}

.ml-94 {
  margin-left: 94px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-96 {
  margin-left: 96px;
}

.ml-97 {
  margin-left: 97px;
}

.ml-98 {
  margin-left: 98px;
}

.ml-99 {
  margin-left: 99px;
}

.ml-100 {
  margin-left: 100px;
}

.text-red {
  color: red;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.flexible {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flexible.center {
  justify-content: center;
}
.flexible.end {
  justify-content: end;
}

.child-span-block span {
  display: block;
}
@media screen and (max-width: 767px) {
  .child-span-block._sp-inline span {
    display: inline;
  }
}

.text-center {
  text-align: center;
}

.weight-reg {
  font-weight: var(--font-thickness-regular);
}

.weight-med {
  font-weight: var(--font-thickness-medium);
}

.weight-bold {
  font-weight: var(--font-thickness-bold);
}

.width-auto {
  width: auto;
}

.width-40-important {
  width: 40% !important;
}

.cursor-pointer {
  cursor: pointer;
}

.disp-none {
  display: none;
}

.disp-flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

/*リリース時期調整で一時的に非表示にする場合*/
.timing-adjustment {
  display: none !important;
}

/*リリース時期調整でComingSoon表示にする場合*/
.timing-adjustment-coming-soon {
  position: relative;
  overflow: hidden;
  pointer-events: none;
}
.timing-adjustment-coming-soon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 101%;
  background: rgba(0, 0, 0, 0.7);
}
.timing-adjustment-coming-soon::after {
  content: "ComingSoon";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #DDDDDD;
  font-size: 20px;
  font-weight: var(--font-thickness-medium);
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 3px;
}
@media screen and (max-width: 767px) {
  .timing-adjustment-coming-soon::after {
    font-size: 16px;
  }
}

* {
  margin: 0;
  padding: 0;
  font-family: noto-sans-jp, sans-serif;
  box-sizing: border-box;
}

.header {
  display: flex;
  align-items: center;
  width: 100%;
  height: 64px;
  background-color: black;
  padding: 18px 32px;
  box-sizing: border-box;
}

.logo img {
  height: 30px;
}

.separator-and-name {
  display: flex;
  align-items: center;
  margin: 30px;
}

.separator {
  width: 2px;
  height: 36px;
  background-color: #ffffff;
}

.name {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  margin: 30px;
}

.hero-banner img {
  display: block;
  width: 100%;
  height: 704px;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  color: inherit;
  /* 继承父元素颜色 */
  text-decoration: none;
  /* 移除下划线 */
}
a:hover {
  text-decoration: none;
  /* 保持无下划线 */
  color: #005f8b;
  /* 可设置悬停时的颜色 */
}

.button {
  position: absolute;
  /* 绝对定位，用于固定在画面右侧 */
  right: 32px;
  /* 与右边缘距离 32px */
  width: 150px;
  /* 按钮宽度 */
  height: 45px;
  /* 按钮高度 */
  background-color: #007CB0;
  /* 按钮背景颜色 */
  color: #fff;
  /* 按钮文字颜色，白色 */
  text-decoration: none;
  border: none;
  /* 无边框 */
  border-radius: 8px;
  /* 圆角按钮 */
  font-size: 16px;
  /* 字体大小 */
  font-weight: bold;
  /* 字体加粗 */
  text-align: center;
  /* 文字居中 */
  line-height: 45px;
  /* 让文字在按钮内垂直居中 */
  cursor: pointer;
  /* 鼠标悬停时显示指针 */
  transition: all 0.3s ease;
}
.button:hover {
  background-color: #005f8b;
  /* 悬停时按钮背景颜色变暗 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* 添加阴影效果 */
  transform: translateY(-2px);
}

.hero-banner-text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: left;
  color: #fff;
}
.hero-banner-text p {
  font-size: 24px;
  margin-bottom: 0px;
  font-weight: 600;
}
@media screen and (max-width: 1265px) {
  .hero-banner-text p {
    font-weight: 400;
    line-height: 36px;
    padding: 0 16px 0 24px;
  }
}
.hero-banner-text h1 {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 65px;
}
@media screen and (max-width: 1265px) {
  .hero-banner-text h1 {
    padding: 0 16px 0 24px;
  }
}

.top_information {
  width: 1127px;
  margin: 70px auto;
}
@media screen and (max-width: 1265px) {
  .top_information {
    width: 100dvw;
    height: 470px;
  }
}

.section_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1127px;
  margin: 40px auto 20px auto;
}
@media screen and (max-width: 1265px) {
  .section_title {
    width: 100dvw;
    height: auto;
    flex-direction: column;
    gap: 20px;
  }
}

.section_title_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.section_title_main {
  font-size: 40px;
  font-weight: bold;
  color: #1E2022;
}

.section_title_sub {
  font-size: 16px;
  color: #1E2022;
  margin-top: 8px;
  display: block;
}
@media screen and (max-width: 1265px) {
  .section_title_sub.pc {
    display: none;
  }
  .section_title_sub.sp {
    display: block;
  }
}

.top_information_link {
  text-decoration: none;
  color: #041F42;
  font-size: 14px;
  border: 2px solid #041F42;
  padding: 5px 10px;
  border-radius: 20px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.top_information_link.pc {
  display: block;
}
.top_information_link.sp {
  display: none;
}
@media screen and (max-width: 1265px) {
  .top_information_link.pc {
    display: none;
  }
  .top_information_link.sp {
    display: block;
    width: 175px;
    text-align: center;
  }
}
.top_information_link:hover {
  background-color: #041E42;
  color: white;
}

.section_content_wrapper {
  position: relative;
  overflow-x: scroll;
  /* 启用横向滚动 */
  scroll-snap-type: x mandatory;
  /* 强制滚动对齐 */
  margin: 0 120px;
  /* 左右间距与标题一致 */
}

.section_content {
  display: flex;
  gap: 20px;
}
.section_content::-webkit-scrollbar {
  display: none;
  /* 隐藏滚动条 */
}

/* 单个卡片 */
.info_card {
  flex: 0 0 260px;
  /* 固定宽度 */
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  scroll-snap-align: start;
  /* 卡片对齐到滚动容器的开始 */
}

.info_card_image {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}

.info_card_date {
  font-size: 14px;
  color: #046C38;
  margin: 10px 15px 0;
}

.info_card_title {
  font-size: 18px;
  font-weight: 500;
  /* Medium */
  margin: 5px 15px 15px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* 限制最多显示两行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.about {
  position: relative;
  width: 100%;
  height: 643px;
  margin: auto;
}

.about-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  margin-top: 66px;
  /*justify-content: center;*/
  align-items: flex-start;
  padding: 20px 120px;
  color: #FFFFFF;
}
@media screen and (max-width: 1265px) {
  .about-content {
    padding: 20px 16px;
    margin-top: 0px;
  }
}
.about-content h3 {
  color: #1E2022;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 6px;
}
@media screen and (max-width: 1265px) {
  .about-content h3 {
    font-size: 22px;
    margin-top: 50px;
  }
}
.about-content h1 {
  color: #1E2022;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 40px;
  max-width: 592px;
  line-height: 56px;
}
@media screen and (max-width: 1265px) {
  .about-content h1 {
    font-size: 32px;
    margin-left: 0px;
    line-height: 48px;
  }
}
.about-content p {
  color: #1E2022;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  max-width: 592px;
  margin-top: 0;
}
@media screen and (max-width: 1265px) {
  .about-content p {
    padding-left: 16px;
    margin-left: 0px;
  }
}

.about-image img {
  width: 100vw;
  height: 643px;
  background-size: cover;
  background-position: center;
  margin: 0;
  padding: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.facility {
  background: #F5F5F5 0% 0% no-repeat padding-box;
  padding-top: 100px;
  padding-bottom: 100px;
}
.facility .section_title_p {
  margin-top: 50px;
  font-size: 16px;
  color: #1E2022;
  font-weight: 500;
  text-align: center;
  line-height: 1.75;
}

.facility-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1127px;
  margin: 100px auto 100px auto;
}
@media screen and (max-width: 1265px) {
  .facility-content {
    flex-direction: column;
    gap: 20px;
    width: 100dvw;
    height: auto;
    flex-wrap: wrap;
  }
}
.facility-content img {
  width: 420px;
  height: 277px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1265px) {
  .facility-content img {
    width: 100dvw;
    height: auto;
  }
}
.facility-content h4 {
  margin-bottom: 22px;
  padding: 0;
  color: #1E2022;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.75;
}
.facility-content div {
  width: 650px;
  margin-left: 40px;
  align-items: center;
}
@media screen and (max-width: 1265px) {
  .facility-content div {
    width: 100dvw;
    margin-left: 0;
  }
}
.facility-content p {
  margin: 0;
  padding: 0;
  padding-bottom: 24px;
  color: #1E2022;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.facility-img {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.facility-img img {
  width: 100%;
  height: auto;
  max-width: 200px;
  /* 限制单张图片的最大宽度 */
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 图片排成一排 */
.image-row {
  display: flex;
  /* 将图片排成一排 */
  gap: 15px;
  /* 图片之间的间距 */
  justify-content: center;
  /* 图片整体居中 */
}
.image-row img {
  width: 156px;
  /* 图片宽度 */
  height: 102px;
  /* 图片高度 */
  -o-object-fit: cover;
     object-fit: cover;
  /* 确保图片按比例填充 */
  border-radius: 5px;
  /* 可选：为图片添加圆角 */
}
@media screen and (max-width: 1265px) {
  .image-row img.sp_none {
    display: none;
  }
}

.concept {
  width: 1127px;
  margin: 100px auto 0 auto;
}
@media screen and (max-width: 1265px) {
  .concept {
    width: 100dvw;
    height: auto;
  }
}

.concept-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 50px;
}
@media screen and (max-width: 1265px) {
  .concept-content {
    flex-direction: column-reverse;
    gap: 20px;
    width: 100dvw;
    height: auto;
  }
}

.concept-details {
  width: 50%;
  padding-right: 20px; /* 右側に余白を追加 */
}
@media screen and (max-width: 1265px) {
  .concept-details {
    width: 100dvw;
    padding-right: 0;
  }
}

.concept-image {
  width: 50%;
  padding-left: 20px; /* 左側に余白を追加 */
  text-align: center; /* 画像を中央揃え */
}
.concept-image.sp {
  display: none;
}
@media screen and (max-width: 1265px) {
  .concept-image.sp {
    display: block;
    width: 100dvw;
    padding: 0 12px 20px;
  }
}
@media screen and (max-width: 1265px) {
  .concept-image.pc {
    display: none;
  }
}

.concept-intro {
  font-size: 16px;
  color: #005587;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 50px;
}
.concept-intro h2 {
  margin-left: 16px;
}
.concept-intro p {
  font-weight: 600;
  margin-top: 20px;
  margin-left: 16px;
  font-size: 18px;
}

.concept-detail {
  font-size: 20px;
  color: #1E2022;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 30px;
}

.concept img {
  width: 100%;
  height: auto;
  margin-top: 20px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}

.concept-item {
  margin-bottom: 50px;
}
@media screen and (max-width: 1265px) {
  .concept-item {
    margin-left: 16px;
    margin-right: 16px;
  }
}

.concept-item-number {
  background-color: #041E42;
  color: #FFF;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  vertical-align: middle;
  margin-right: 8px;
}

.concept-item-description {
  margin-top: 20px;
  padding-left: 38px;
}
@media screen and (max-width: 1265px) {
  .concept-item-description {
    padding-left: 53px;
    padding-right: 24px;
  }
}

.gallery-content {
  width: 1127px;
  margin: 60px auto;
}
@media screen and (max-width: 1265px) {
  .gallery-content {
    width: 100dvw;
    height: auto;
  }
}
.gallery-content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.gallery-content li {
  list-style: none;
  width: 24%;
  height: 177px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1265px) {
  .gallery-content li {
    width: 48%;
    height: auto;
  }
}
.gallery-content li img {
  width: 100%;
  height: 100%;
}

.gallery-img {
  display: flex;
  justify-content: center; /* 水平居中 */
  align-items: center; /* 垂直居中 */
}
.gallery-img img {
  width: 426px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 50px;
}
@media screen and (max-width: 1265px) {
  .gallery-img img {
    width: 318px;
    height: auto;
    margin: 0 36px;
  }
}

.gallery-content {
  width: 1127px;
  margin: 60px auto;
}
@media screen and (max-width: 1265px) {
  .gallery-content {
    width: 100dvw;
    height: auto;
  }
}
.gallery-content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 1265px) {
  .gallery-content ul {
    width: 100dvw;
  }
}
.gallery-content li {
  list-style: none;
  width: 24%;
  height: 177px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1265px) {
  .gallery-content li {
    width: 48%;
    height: auto;
  }
}
.gallery-content li img {
  width: 100%;
  height: 100%;
}

.gallery .section_title_p {
  margin-top: 50px;
  font-size: 16px;
  color: #1E2022;
  font-weight: 500;
  text-align: center;
  line-height: 1.75;
}

.recruitment {
  height: 643px;
}
.recruitment img {
  width: 100%;
  height: 643px;
  -o-object-fit: cover;
     object-fit: cover;
}

.recruitment-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.recruitment-overlay {
  position: relative;
  top: -318px;
  left: 337px;
  transform: translate(-50%, -50%);
  width: 620px;
  height: 435px;
  background: rgba(255, 255, 255, 0.8);
  /* 透明白背景 */
  backdrop-filter: blur(10px);
  /* ぼかし効果 */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  /* 左寄せ */
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

/* Access Section */
.access {
  width: 100%;
  max-width: 800px;
  /* 最大宽度，居中显示 */
  margin: 120px auto;
  /* 上下间距，水平居中 */
  text-align: center;
  /* 整体居中对齐 */
}

.access-title {
  margin-bottom: 80px;
  /* 与列表的间隔 */
}
.access-title .main-title {
  display: block;
  /* 块级元素，确保上下排列 */
  font-size: 40px;
  font-weight: bold;
  margin: 0;
  /* 去掉默认间距 */
}
.access-title .sub-title {
  display: block;
  /* 块级元素，确保上下排列 */
  font-size: 18px;
  color: #666;
  margin: 0;
  /* 去掉默认间距 */
}

.access h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  /* 标题居中 */
}

.access-list {
  list-style: none;
  /* 去掉默认列表样式 */
  padding: 0;
  margin: 0;
}
.access-list li {
  display: flex;
  justify-content: flex-start;
  /* 左右对齐 */
  align-items: center;
  border-bottom: 1px solid #ccc;
  /* 添加横线 */
  padding: 16px 0;
  /* 上下内边距 */
}
.access-list .item-name {
  font-weight: bold;
  color: #333;
  margin-right: 80px;
}
@media screen and (max-width: 1265px) {
  .access-list .item-name {
    margin-right: 20px;
    min-width: 100px;
  }
}
.access-list .item-content {
  color: #1E2022;
  text-align: left;
  line-height: 1.75;
}
@media screen and (max-width: 1265px) {
  .access-list .item-content {
    margin-right: 16px;
  }
}

/* Access Map Section */
.access-map {
  width: 100vw;
  height: 300px;
  margin: 0 0 80px 0;
  padding: 0;
  position: relative;
  left: 0;
}

/* Contact Section */
.contact {
  width: 1127px;
  height: 335px;
  background-color: #F5F5F5;
  /* 灰色背景 */
  border-radius: 30px;
  /* 圆角 */
  margin: 50px auto;
  /* 居中显示 */
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1265px) {
  .contact {
    width: 100dvw;
    height: auto;
    padding: 20px;
  }
}

.contact-content {
  text-align: center;
  /* 内容居中对齐 */
}
.contact-content .main-title {
  font-size: 40px;
  font-weight: bold;
  margin: 0;
}
.contact-content .sub-title {
  font-size: 18px;
  color: #666;
  margin: 0;
}
.contact-content .contact-text {
  margin: 40px 0;
  font-size: 20px;
  color: #1E2022;
  font-weight: 600;
}
.contact-content .contact-button {
  width: 256px;
  height: 65px;
  padding: 20px 20px;
  font-size: 16px;
  background-color: #041E42;
  color: white;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
}
.contact-content .contact-button:hover {
  background-color: #005587;
}

.innovation-hub {
  background-color: #53565A; /* 背景色 */
  padding: 50px 0; /* 上下内边距 */
  text-align: center; /* 画面居中 */
  display: flex;
  flex-direction: column;
  align-items: center; /* 确保内容水平居中 */
  justify-content: center; /* 确保内容垂直居中 */
  height: 100%; /* 确保背景高度覆盖 */
}

.innovation-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1127px;
  margin: 40px auto 20px auto;
}
@media screen and (max-width: 1265px) {
  .innovation-title {
    width: 100dvw;
    height: auto;
  }
}

.innovation-title h2 {
  color: #FFFFFF; /* 设置文字为白色 */
  margin-bottom: 60px; /* 设置下方间距为60px */
}

.innovation-content {
  display: flex;
  justify-content: center; /* 水平居中 */
  gap: 39px; /* 卡片之间的间距 */
  flex-wrap: wrap; /* 确保在小屏幕上换行 */
}

.innovation-card {
  width: 544px;
  height: 200px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF; /* 卡片文字白色 */
  font-size: 20px;
  font-weight: 500;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 1265px) {
  .innovation-card {
    width: 358px;
    padding: 40px 16px;
  }
}
.innovation-card.dpark {
  background-image: url("/img/socialInnovationHub/sapporo/Deloitte Tohmatsu Innovation Park.png");
}
.innovation-card.maebashi {
  background-image: url("/img/socialInnovationHub/sapporo/MAEBASHI Social Innovation Hub.png");
}

.innovation-card:hover {
  transform: scale(1.05); /* 放大效果 */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* 添加阴影 */
}

/* Button responsive for mobile */
@media (max-width: 768px) {
  .hero-banner a {
    display: none;
    /* スマホサイズでhero-banner内のボタンを非表示にする */
  }
}
.scrollable {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  /* カード間のスペース */
  padding: 10px;
  scroll-snap-type: x mandatory;
  /* スクロールスナップ */
}
.scrollable .swiper-slide {
  width: 260px;
}
.scrollable .info_card {
  flex: 0 0 auto;
  /* 横スクロール用に固定幅 */
  scroll-snap-align: start;
  /* スクロール位置を調整 */
  width: 260px;
  /* カードの幅 */
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-banner-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  /* ボタン間のスペース */
  margin-top: 20px;
}

.hero-button {
  width: 100%;
  /* 下划线宽度 */
  height: 100px;
  background-size: cover;
  background-position: center;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 17px;
  font-weight: bold;
  text-align: left;
  /* 标题靠左 */
  padding-left: 25px;
  /* 左边距 */
  line-height: 100px;
  /* 垂直居中 */
  cursor: pointer;
  position: relative;
  overflow: hidden;
  /* 段階的に透明度を下げる */
}
.hero-button.nav-concept {
  background-image: url("/img/socialInnovationHub/sapporo/nav-button01.png");
}
.hero-button.nav-facility {
  background-image: url("/img/socialInnovationHub/sapporo/nav-button02.png");
}
.hero-button.nav-gallery {
  background-image: url("/img/socialInnovationHub/sapporo/nav-button03.png");
}
.hero-button.nav-recruit {
  background-image: url("/img/socialInnovationHub/sapporo/nav-button04.png");
}
.hero-button.nav-access {
  background-image: url("/img/socialInnovationHub/sapporo/nav-button04.png");
}
.hero-button.nav-contact {
  background-image: url("/img/socialInnovationHub/sapporo/nav-button05.png");
}
.hero-button:hover {
  text-decoration: none;
  color: #fff;
}
.hero-button::after {
  content: "";
  display: block;
  width: 200px;
  /* 下划线宽度 */
  height: 1px;
  background-color: white;
  position: absolute;
  bottom: 10px;
  left: 25px;
  /* 左边距与标题一致 */
}

.hero-banner {
  position: relative;
}
@media screen and (max-width: 1265px) {
  .hero-banner {
    top: 63px;
    width: 100dvw;
    height: 723px;
  }
}

.hero-banner-buttons {
  display: flex;
  justify-content: space-between;
  /* ボタンを均等に配置 */
  gap: 10px;
  /* ボタン間の余白 */
  width: 100%;
  /* 親要素の幅を100%に設定 */
  height: 124px;
  /* 親要素の高さを設定 */
  background-color: rgba(255, 255, 255, 0.5);
  /* 透明な白い背景 */
  padding: 10px;
  /* 内側の余白 */
  border-radius: 0px;
  /* 角を丸くする */
}
@media screen and (max-width: 1265px) {
  .hero-banner-buttons {
    display: none;
  }
}
.hero-banner-buttons button {
  flex: 1;
  /* ボタンの幅を親要素の1/5に設定 */
  height: 100%;
  /* ボタンの高さを親要素に合わせる */
  background-size: cover;
  /* 背景画像をボタンに合わせて拡大 */
  background-position: center;
  /* 背景画像を中央に配置 */
  border: none;
  /* ボタンの境界線を非表示 */
  border-radius: 10px;
  /* 角を丸くする */
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: white;
  /* ボタン内の文字を白色に設定 */
}
.hero-banner-buttons button:hover {
  background-color: rgba(0, 0, 0, 0.2);
  /* 段階的に透明度を下げる */
}

/*# sourceMappingURL=style.css.map*/