@charset "UTF-8";
/* arguments inittial */
/* font style */
/* site style */
/* [ opacity ]
-------------------------------------------------*/
/* [ display style ]
-------------------------------------------------*/
/* [ background-image ]
-------------------------------------------------*/
/* [ writing-mode ]
-------------------------------------------------*/
/* [ illustrator & photoshop letter spacing ]
-------------------------------------------------*/
/* [ easy breakpoint ]
-------------------------------------------------*/
/* [ easy transform ]
-------------------------------------------------*/
main {
  font-feature-settings: "palt";
}

.ib {
  display: inline-block;
}

.fv-content {
  width: 100%;
  height: 60vh;
  position: relative;
}
@media (min-width: 768px) {
  .fv-content {
    height: 70vh;
  }
}
.fv-content-img {
  object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center center;
  background-image: url("../img/special/fv.jpg");
}
.fv-content-img .caption {
  position: absolute;
  right: 25px;
  bottom: 70px;
  font-size: 10px;
  z-index: 3;
}
.fv-content-img:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  .fv-content-img {
    background-image: url("../img/special/fv.jpg");
  }
}
.fv-content-img:after {
  background: rgba(0, 0, 0, 0.5);
}
.fv-content .bottomline {
  position: absolute;
  width: 100%;
  height: 15px;
  bottom: 0;
  left: 0;
  z-index: 3;
}
.fv-content-title {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .fv-content-title {
    font-size: 48px;
    line-height: 1.2;
  }
}
.fv-content-title-img {
  max-width: 60%;
}
@media (min-width: 768px) {
  .fv-content-title-img {
    max-width: 100%;
  }
}
.fv-content-text {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 50px 15px;
  pointer-events: none;
  justify-content: center;
  height: 100%;
}
@media (min-width: 768px) {
  .fv-content-text {
    padding: 100px 50px;
    /*max-width: 1200px;*/
    margin: 0 auto;
    justify-content: flex-end;
  }
}
.fv-content .scroll {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 12px;
  height: 60px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .fv-content .scroll {
    bottom: 0;
  }
}
.fv-content .scroll:after {
  content: "";
  top: 0;
  left: 50%;
  width: 1px;
  height: 90px;
  position: absolute;
  background: #fff;
  animation: scrollanimation 1.3s infinite;
}

.hproject {
  color: #515151;
  padding: 40px 0;
}
@media (min-width: 768px) {
  .hproject {
    padding: 70px 0;
  }
}
.hproject-title {
  text-align: center;
  font-size: 22px;
  line-height: 1.5;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .hproject-title {
    font-size: 36px;
  }
}
.hproject-intro {
  display: flex;
  flex-direction: column;
}
.hproject-intro-img {
  position: relative;
  padding: 0;
}
.hproject-intro-img .notice {
  color: #fff;
  font-size: 10px;
  position: absolute;
  bottom: 5px;
  right: 5px;
  z-index: 2;
}
.hproject-intro-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  background: #e4f4f9;
  padding: 15px;
  gap: 30px;
}
@media (min-width: 768px) {
  .hproject-intro-text {
    padding: 30px 30px;
    flex-direction: row;
    justify-content: space-between;
  }
}
.hproject-intro-text .name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
@media (min-width: 768px) {
  .hproject-intro-text .name {
    text-align: left;
    align-items: flex-start;
  }
  .hproject-intro-text .name.last {
    align-items: flex-end;
    text-align: right;
  }
}
.hproject-intro-text .name-eng {
  font-size: 22px;
}
@media (min-width: 768px) {
  .hproject-intro-text .name-eng {
    font-size: 36px;
  }
}
.hproject-intro-text .name-ja {
  font-size: 16px;
}
@media (min-width: 768px) {
  .hproject-intro-text .name-ja {
    font-size: 18px;
  }
}
.hproject-intro-text .name-text {
  font-size: 12px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .hproject-intro-text .name-text {
    font-size: 13px;
  }
}
.hproject-intro-text .name-cross {
  align-self: center;
}
.hproject-intro-text .name-cross img {
  width: 100%;
  max-width: 70px;
}
@media (min-width: 768px) {
  .hproject-intro-text .name-cross img {
    max-width: 150px;
  }
}
.hproject-intro-text2 {
  padding: 15px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .hproject-intro-text2 {
    text-align: center;
    padding: 30px 15px;
  }
}
.hproject-intro-caption {
  font-size: 10px;
  text-align: right;
}

@keyframes scrollanimation {
  0% {
    top: 15px;
    height: 1px;
  }
  50% {
    top: 15px;
    height: 70px;
  }
  100% {
    top: 80px;
  }
}
.sec-title {
  color: #2aa9d2;
  font-size: 22px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 15px 15px;
  margin: 10px 0;
  background-position: top right;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .sec-title {
    font-size: 36px;
    padding: 20px 15px;
    margin: 20px 0;
  }
}
.sec-title.t01 {
  background-image: url("../img/special/special02/sec-titlenum01.svg");
}
.sec-title.t02 {
  background-image: url("../img/special/special02/sec-titlenum02.svg");
}
.sec-title.t03 {
  background-image: url("../img/special/special02/sec-titlenum03.svg");
}
.sec-title.t04 {
  background-image: url("../img/special/special02/sec-titlenum04.svg");
}
.sec-subtitle {
  color: #2aa9d2;
  font-size: 18px;
  padding-bottom: 5px;
  border-bottom: 2px solid #2aa9d2;
  margin-bottom: 15px;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .sec-subtitle {
    font-size: 20px;
  }
}
.sec-subtitle.mtup {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .sec-subtitle.mtup {
    margin-top: 60px;
  }
}
.sec-block {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}
.sec-block .text {
  font-size: 14px;
  line-height: 1.8;
  padding-bottom: 15px;
}
@media (min-width: 768px) {
  .sec-block .text {
    font-size: 16px;
  }
}
.sec-block .text .name {
  color: #2aa9d2;
  padding-right: 1rem;
}
.sec-block .text-and-image-container .image-container {
  text-align: center;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .sec-block .text-and-image-container .image-container {
    padding-bottom: 0;
    float: right;
    max-width: 45%;
    padding-left: 15px;
  }
}
.sec-block-bottom {
  max-width: 900px;
  margin: 30px auto;
  padding: 0 15px;
  padding-bottom: 30px;
}
.sec-block-bottom2 {
  padding: 0 15px;
  margin: 30px auto;
}
.sec .abscaption {
  color: #fff;
  font-size: 10px;
  position: absolute;
  bottom: 5px;
  right: 5px;
}

.wrap-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 15px;
}

.sec01,
.sec02 {
  color: #515151;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .sec01,
  .sec02 {
    padding-bottom: 50px;
  }
}
.sec01 .caption,
.sec02 .caption {
  color: #515151;
}
.sec01-img,
.sec02-img {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}
@media (min-width: 768px) {
  .sec01-img,
  .sec02-img {
    flex-direction: row;
  }
}
.sec01-img-col,
.sec02-img-col {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sec01-img-text,
.sec02-img-text {
  font-size: 14px;
  text-align: center;
}
@media (min-width: 768px) {
  .sec01-img-text,
  .sec02-img-text {
    font-size: 20px;
  }
}
.sec01-img-text .small,
.sec02-img-text .small {
  font-size: 0.7em;
}
.sec01-img .abscaption,
.sec02-img .abscaption {
  color: #fff;
  font-size: 10px;
  position: absolute;
  bottom: 5px;
  right: 5px;
}

.sec03 {
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .sec03 {
    padding-bottom: 50px;
  }
}
.sec03 .sup {
  font-size: 11px;
}
.sec03-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .sec03-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr; /* 2つの列を作成し、それぞれ同じ幅にする */
    grid-template-rows: repeat(2, 1fr); /* 2つの行を作成し、それぞれ同じ高さにする */
    gap: 16px; /* セル間の隙間を設定 (任意) */
  }
}
.sec03-grid-col {
  display: flex;
  flex-direction: column;
  position: relative;
}
.sec03-grid-col .caption {
  position: absolute;
  z-index: 2;
  bottom: 5px;
  right: 5px;
  color: #fff;
  text-shadow: 0 0 3px rgb(0, 0, 0), 0 0 3px rgb(0, 0, 0);
}
.sec03-grid-col .title {
  background: #2aa9d2;
  color: #fff;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  padding: 10px 15px;
  position: relative;
}
@media (min-width: 768px) {
  .sec03-grid-col .title {
    font-size: 14px;
  }
}
.sec03-grid-col .title:after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, calc(100% - 1px));
  background: #2aa9d2;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.sec03-grid-col .img {
  height: 100%;
}
@media (min-width: 768px) {
  .sec03-grid-col {
    height: 100%;
  }
  .sec03-grid-col img {
    object-fit: cover;
    height: 100%;
  }
  .sec03-grid-col:nth-child(1) {
    /* 左上 (1行目1列目) に配置 */
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .sec03-grid-col:nth-child(3) {
    /* 左下 (2行目1列目) に配置 */
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .sec03-grid-col.rowspan {
    /* 右側 (1列目と2列目を結合) に配置 */
    grid-column: 2/3;
    /* 1行目と2行目を結合 */
    grid-row: 1/3;
  }
  .sec03-grid-col.rowspan img {
    object-fit: unset;
  }
}
.sec03-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0 15px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .sec03-flex {
    gap: 30px;
  }
}
.sec03-flex .colspan {
  width: 100%;
  position: relative;
}
.sec03-flex .col {
  position: relative;
  width: calc((100% - 15px) / 2);
}
@media (min-width: 768px) {
  .sec03-flex .col {
    width: calc((100% - 30px) / 2);
  }
}
.sec03-flex .caption {
  color: #fff;
  position: absolute;
  bottom: 5px;
  right: 5px;
  text-shadow: 0 0 3px rgb(0, 0, 0), 0 0 3px rgb(0, 0, 0);
}
.sec03 .text-right-pc {
  text-align: left;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .sec03 .text-right-pc {
    text-align: right;
  }
}

.sec04 .image {
  position: relative;
  padding-bottom: 0;
}
.sec04 .image .caption {
  position: absolute;
  bottom: 5px;
  right: 5px;
}

.manager {
  padding: 0 15px;
}
.manager-frame {
  background: #e4f4f9;
  border-radius: 15px;
  padding: 15px;
  margin-top: 30px;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .manager-frame {
    padding: 30px;
    margin-top: 50px;
    margin-bottom: 70px;
  }
}
.manager-title {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .manager-title {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.manager .img {
  max-width: 200px;
  align-self: center;
  padding-bottom: 15px;
}
@media (min-width: 768px) {
  .manager .img {
    max-width: 200px;
  }
}
.manager .text .title {
  color: #2aa9d2;
  font-size: 16px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .manager .text .title {
    font-size: 20px;
  }
}
.manager .text-name {
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .manager .text-name {
    font-size: 18px;
  }
}
.manager .text-name .small {
  font-size: 0.7em;
  display: block;
  padding-top: 15px;
}
.manager-text {
  padding-top: 15px;
  line-height: 1.8;
}

.lastcaption {
  font-size: 10px;
  text-align: left;
}
@media (min-width: 768px) {
  .lastcaption {
    text-align: center;
  }
}/*# sourceMappingURL=special02.css.map */