@charset "utf-8";

.concept {
  padding: 160px 0 120px;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.concept .sec-top {
  display: flex;
  align-items: center;
  gap: 7%;
}

.concept .sec-top .sec-img {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 869px;
  width: 75%;
}

.concept .sec-top .sec-img .tit-en {
  font-family: var(--font-raleway);
  font-weight: 500;
  font-size: clamp(1.813rem, 1.221rem + 2.52vw, 4.25rem);
  color: #000;
}

.concept .sec-top .sec-text {
  margin-right: 7%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.concept .sec-top .sec-text .tit-ja {
  font-family: var(--font-notosans);
  font-weight: 400;
  font-size: clamp(1.5rem, 1.379rem + 0.52vw, 2rem);
  line-height: calc(55 / 32);
  color: #000;
}

.concept .sec-top .sec-text .desc p {
  font-family: var(--font-notosans);
  font-weight: 400;
  font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
  line-height: calc(36 / 16);
  color: #000;
}

.concept .sec-bottom {
  border: 1px solid #000;
}

.concept .sec-bottom .box-inner {
  width: 90%;
  margin: 0 auto;
  padding: 40px 0 64px;
  display: grid;
  grid-template-areas:
    "title title"
    "img text";
  gap: 20px 120px;
  align-items: center;
}

.concept .sec-bottom .box-inner .tit-ja {
  grid-area: title;
  font-family: var(--font-notosans);
  font-weight: 400;
  font-size: 24px;
  color: #000;
  text-align: center;
}

.concept .sec-bottom .box-inner .sec-img {
  max-width: 235px;
  width: 100%;
}

.concept .sec-bottom .box-inner .desc p {
  font-family: var(--font-notosans);
  font-weight: 400;
  font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
  line-height: calc(24 / 16);
  color: #000;
}

.has-bg {
  padding: 116px 0;
  position: relative;
  transition: 1.2s ease;
  color: #000 !important;
}

.has-bg.active {
  background-color: #000000;
  color: #fff !important;
}

.has-bg.active .desc p {
  color: #fff;
}

.has-bg .sec-head,
.access .sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 18px;
  position: relative;
  overflow: hidden;
}

.has-bg .sec-head::after,
.access .sec-head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: translateX(-100%);
  transition: var(--default);
}

.access .sec-head::after {
  background-color: #000;
}

.has-bg .sec-head.is-active::after,
.access .sec-head.is-active::after {
  transform: translateX(0);
}

.has-bg .sec-head .tit-en,
.access .sec-head .tit-en {
  opacity: 0;
  font-family: var(--font-raleway);
  font-weight: 500;
  font-size: clamp(2rem, 1.575rem + 1.81vw, 3.75rem);
  transform: translateY(20px);
  transition: var(--default);
}

.has-bg .sec-head.is-active .tit-en,
.access .sec-head.is-active .tit-en,
.has-bg .sec-head.is-active .tit-ja,
.access .sec-head.is-active .tit-ja {
  opacity: 1;
  transform: translateY(0);
}
.has-bg .sec-head .tit-ja,
.access .sec-head .tit-ja {
  font-family: var(--font-notosans);
  font-weight: 400;
  font-size: 14px;
  transform: translateY(20px);
  transition: var(--default);
  opacity: 0;
  margin: 0;
}

.message {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-bottom: 160px;
}

.message .tit-ja {
  font-family: var(--font-notosans);
  font-weight: 400;
  font-size: clamp(1.5rem, 1.439rem + 0.26vw, 1.75rem);
  margin-bottom: 20px;
}
.message .desc {
  margin-bottom: 40px;
}
.message .desc p {
  font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
  line-height: calc(24 / 16);
}

.message .name {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.message .name .tit-sub {
  font-family: var(--font-notosans);
  font-weight: 400;
  font-size: clamp(0.75rem, 0.72rem + 0.13vw, 0.875rem);
}

.message .name .tit-main {
  font-family: var(--font-notosans);
  font-weight: 400;
  font-size: clamp(1.5rem, 1.439rem + 0.26vw, 1.75rem);
}

.message .sec-body {
  display: flex;
  align-items: flex-start;
  gap: 10%;
}

.infomation {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.infomation .list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.infomation .list .item {
  display: grid;
  grid-template-columns: 20% 1fr;
  font-family: var(--font-notosans);
  font-weight: 400;
  font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
  color: #fff;
  padding-bottom: 16px;
  border-bottom: 1px solid #fff;
}

.infomation .sec-body {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.infomation .grid-item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 33px;
}

.access .inner {
  padding: 160px 0 200px;
  display: flex;
  flex-direction: column;
  gap: 63px;
}

.access .sec-head .tit-en,
.access .sec-head .tit-ja {
  color: #000;
}

.access .sec-body {
  display: flex;
  gap: 10%;
}

.access .sec-body .sec-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.access .sec-body .dl {
  display: flex;
  align-items: flex-start;
  gap: 12%;
  padding-bottom: 40px;
  border-bottom: 1px solid #000000;
}

.access .sec-body .dl .dt {
  font-family: var(--font-notosans);
  font-weight: 400;
  font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
  color: #000;
}

.access .sec-body .dl .dd .time {
  font-family: var(--font-raleway);
  font-weight: 500;
  font-size: clamp(1.875rem, 1.845rem + 0.13vw, 2rem);
  color: #000;
}

.access .sec-body .dl .dd .column {
  display: flex;
  gap: 20%;
  align-items: center;
  position: relative;
}

.access .sec-body .dl .dd {
  width: 50%;
  flex: 1;
}

.access .sec-body .dl .dd .column::before {
  content: "";
  position: absolute;
  left: 20px;
  width: 15%;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 1px;
  background-color: #000000;
}

.access .sec-body .dl .dd .f-24 {
  font-family: var(--font-notosans);
  font-weight: 400;
  font-size: clamp(1.25rem, 1.189rem + 0.26vw, 1.5rem);
  color: #000;
}

.access .sec-body .dl .dd .group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}

.access .sec-body .dl .dd .group .ttl {
  font-family: var(--font-notosans);
  font-weight: 400;
  font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
  color: #919191;
}

.access .sec-body .dl .dd .group .desc p {
  font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
  line-height: calc(24 / 16);
  color: #000;
}

.access .sec-body .map {
  max-width: 728px;
  width: 100%;
}
.access .sec-body .map iframe {
  width: 100%;
  height: 578px;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  border: none;
}

@media (max-width: 1200px) {
  .heroimg .inner {
    width: 90%;
    padding: 40px 0;
  }
  .concept .sec-top {
    flex-direction: column;
    gap: 30px;
  }
  .concept .sec-top .sec-img {
    max-width: none;
    width: 100%;
  }
  .concept .sec-top .sec-text {
    margin: 0;
  }
  .concept .sec-bottom .box-inner {
    gap: 40px 5%;
  }

  .access .sec-body .map iframe {
    height: 300px;
  }
  .concept .sec-top .sec-img .tit-en {
    margin-right: 2%;
  }
}

@media (max-width: 1023px) {
  .concept .sec-bottom .box-inner {
    grid-template-areas: "img" " title" "text";
  }

  .concept .sec-bottom .box-inner .sec-img {
    margin: auto;
  }
  .message .sec-body {
    flex-direction: column-reverse;
    gap: 32px;
  }
  .infomation .grid-item {
    grid-template-columns: 1fr;
  }
  .access .sec-body {
    flex-direction: column;
    gap: 38px;
  }
  .concept,
  .access .inner {
    padding: 80px 0;
  }
  .has-bg {
    padding: 40px 0;
  }
}

@media (max-width: 767px) {
  .concept .sec-top .sec-text {
    width: 80%;
    margin: auto;
  }
  .concept .sec-bottom .box-inner .sec-img {
    max-width: 169px;
  }
  .concept .sec-bottom .box-inner {
    gap: 40px;
    width: 80%;
  }
  .has-bg .inner,
  .access .inner {
    width: 85%;
  }
  .message {
    margin-bottom: 106px;
  }
}
.gjs-dashed .has-bg {
  background-color: #000;
}

.gjs-dashed .has-bg,
.gjs-dashed .has-bg .sec-head .tit-en,
.gjs-dashed .has-bg .sec-head .tit-ja,
.gjs-dashed .message .tit-ja,
.gjs-dashed .message .desc p,
.gjs-dashed .message .name {
  color: #fff;
  opacity: 1;
  transform: translateY(0);
}

.gjs-dashed .access .sec-head .tit-en,
.gjs-dashed .access .sec-head .tit-ja {
  transform: translateY(0);
  opacity: 1;
}
