@charset "utf-8";

/*メインビジュアル*/
#kv {
  width: 100vw;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: var(--mainColor);
}
#kv .bg {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  background: var(--mainColor);
  z-index: 3;
}
#kv .bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#kv h2 {
  width: 52%;
  height: auto;
  max-height: 110px;
  position: absolute;
  left: -15px;
  top: 60px;
  z-index: 5;
  opacity: 0;
  animation: opening 15s ease-in 1s forwards;
}
#kv h2 img {
  width: auto;
  height: 100%;
}
#kv .wrap {
  width: 60%;
  position: relative;
  padding: 15% 0;
  /* position: absolute;
  left: 50%;
  top: 56%;
  transform: translate(-50%,-50%); */
  z-index: 5;
  opacity: 0;
  animation: opening 15s ease-in 1s forwards;
}
@keyframes opening {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

/*about*/
#about {
  background: var(--mainColor);
  color: #fff;
}
#about .wrap {
  padding: 45px 0;
}
#about h2 {
  text-align: center;
  font-size: 18px;
  line-height: 2.2em;
  font-weight: 400;
  margin: 0 0 25px;
}
#about h2 span {
  font-size: 22px;
  display: inline-block;
  border: 1px solid #fff;
  margin: 0 10px 0 0;
  padding: 5px 15px;
}
#about p {
  text-align: center;
  font-size: 18px;
  line-height: 2.2em;
  font-weight: 400;
}
/*pickup*/
#pickup {
  background: var(--colorGray);
  color: var(--mainColor);
}
#pickup .wrap {
  padding: 50px 0;
}
#pickup h2 {
  text-align: center;
  font-size: 24px;
  line-height: 1.6em;
  font-weight: 500;
  letter-spacing: .05em;
  margin: 0 0 45px;
}
#pickup h2 span {
  padding: 0 0 2px;
  border-bottom: 1px solid var(--mainColor);
}
#pickup .half_wrap {
  gap: 60px;
  align-items: inherit;
}
#pickup .half_wrap .halfBox {
  width: calc(50% - 30px);
  flex-direction: column;
}
#pickup .half_wrap .halfBox .eyecatch {
  width: 100%;
  max-width: 322px;
  margin: 0 auto;
}
#pickup .half_wrap .halfBox .title {
  width: 100%;
  min-height: 128px;
  margin: 20px 0;
}
#pickup .half_wrap .halfBox h3 {
  width: 100%;
  text-align: center;
  font-size: 21px;
  line-height: 1.6em;
  font-weight: 500;
  letter-spacing: .05em;
  margin: 0 0 5px;
}
#pickup .half_wrap .halfBox h4 {
  width: 100%;
  text-align: center;
  font-size: 13px;
  line-height: 1.6em;
  font-weight: 500;
  letter-spacing: .05em;
  margin-bottom: 10px;
}
#pickup .half_wrap .halfBox p.name {
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 1.6em;
  font-weight: bold;
}
#pickup .half_wrap .halfBox p.name span {
  font-size: 10px;
  margin: 0 5px 0 0;
}
#pickup .half_wrap .halfBox .title + p {
  text-align: justify;
  font-size: 14px;
  line-height: 1.8em;
  font-weight: 300;
  flex-grow: 1;
}
#pickup .half_wrap .halfBox .link {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-top: 20px;
}
#pickup .half_wrap .halfBox .link a {
  display: inline-block;
  color: var(--mainColor);
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 300;
  text-decoration: none;
  padding-top: 5px;
  border-top: 1px solid var(--mainColor);
}
#pickup .half_wrap .halfBox .link a span {
  padding: 0 22px 0 0;
  position: relative;
}
#pickup .half_wrap .halfBox .link a span:after {
  content: '';
  width: 17px;
  height: 17px;
  background: url(../images/icon-arrow_down.svg) no-repeat center / contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0,-50%);
}
/*type*/
#type {
  background: #fff;
  color: var(--mainColor);
}
#type .wrap {
  max-width: 800px;
  padding: 50px 0 85px;
}
#type h2 {
  text-align: center;
  font-size: 24px;
  line-height: 1.6em;
  font-weight: 500;
  letter-spacing: .05em;
  margin: 0 0 40px;
}
#type h2 span {
  padding: 0 0 2px;
  border-bottom: 1px solid var(--mainColor);
}
#type .type_list {
  justify-content: center;
  gap: 0;
}
#type .type_list .type_box {
  width: calc(100%/4);
  padding: 20px 8px 25px;
  border: 1px solid var(--mainColor);
}
#type .type_list .type_box + .type_box {
  border-top: 1px solid var(--mainColor);
  border-right: 1px solid var(--mainColor);
  border-bottom: 1px solid var(--mainColor);
  border-left: none;
}
#type .type_list .type_box .num {
  text-align: center;
  font-size: 28px;
  line-height: 1.5em;
  font-weight: 500;
}
#type .type_list .type_box .num span {
  padding: 0 5px;
  border-bottom: 1px solid var(--mainColor);
}
#type .type_list .type_box h3 {
  text-align: center;
  font-size: 18px;
  line-height: 1.5em;
  font-weight: 500;
  margin: 1em 0;
}
#type .type_list .type_box p {
  text-align: justify;
  font-size: 13px;
  line-height: 1.6em;
  padding: 0 .5em;
}
#type .type_list .type_box ul {
  width: 100%;
  margin-top: 20px;
}
#type .type_list .type_box ul li {
  width: 100%;
  display: inline-block;
  background: #e4e4e4;
  text-align: center;
  padding: 2px;
  font-size: 12px;
  line-height: 1.6em;
}
#type .type_list .type_box ul li + li {
  margin-top: 10px;
}
#type .type_list .type_box ul li .arrow:before {
  content: '▶';
  color: #6687a9;
  font-size: 10px;
  margin: 0 2px 0 0;
  position: relative;
  top: -.5px;
}
#type .type_list .type_box ul li span {
  display: block;
  margin: 0 auto;
  text-align: left;
}
#type .type_list .type_box:nth-child(1) ul li span,
#type .type_list .type_box:nth-child(2) ul li span {
  max-width: 5em;
}
#type .type_list .type_box:nth-child(3) ul li span {
  max-width: 13em;
}
#type .type_list .type_box:nth-child(4) ul li span {
  max-width: 6em;
}
/*initiative*/
#initiative {
  background: var(--mainColor) url(../images/initiative-bg_txt.svg) no-repeat left top 15px / 54px auto;
  color: #fff;
}
#initiative .wrap {
  padding: 55px 0 117px;
}
#initiative h2 {
  text-align: center;
  font-size: 18px;
  line-height: 2.2em;
  font-weight: 400;
  margin: 0 0 38px;
}
#initiative h2 span {
  font-size: 22px;
  display: inline-block;
  border: 1px solid #fff;
  margin: 0 10px 0 0;
  padding: 5px 15px;
}
#initiative .subnav {
  width: 100%;
  margin: 0 0 80px;
}
#initiative .subnav td {
  padding: 10px 1em 10px 0;
}
#initiative .subnav a {
  text-decoration: none;
  font-size: 20px;
  line-height: 1.6em;
  padding: 0 0 0 32px;
  position: relative;
}
#initiative .subnav a:before {
  content: '';
  width: 25px;
  height: 25px;
  background: url(../images/icon-arrow_down_wht.svg) no-repeat center / contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0,-50%);
}
#initiative .cts_block {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 0;
}
#initiative .cts_block + .cts_block {
  margin-top: 50px;
}
#initiative .cts_block h3 {
  text-align: center;
  font-size: 36px;
  line-height: 1.6em;
  font-weight: 400;
  letter-spacing: .05em;
  margin: 0 0 35px;
}
#initiative .mov_wrap {
  justify-content: flex-start;
  gap: 0;
}
#initiative .mov_wrap .mov_box {
  width: calc(100%/3);
  border-bottom: 1px solid #305d8a;
  border-right: 1px solid #305d8a;
  padding: 35px 10px;
  position: relative;
  display: flex;
  flex-direction: column;
}
#initiative .mov_wrap .mov_box:before,
#initiative .mov_wrap .mov_box:after {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--mainColor);
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-50%,50%);
  z-index: 5;
}
#initiative .mov_wrap .mov_box:after {
  left: unset;
  right: 0;
  transform: translate(50%,50%);
}
#initiative .mov_wrap .mov_box:nth-child(-n+3) {
  padding-top: 0;
}
#initiative .mov_wrap .mov_box:nth-child(3n) {
  border-right: none;
}
#initiative .mov_wrap .mov_box:nth-child(3n+1):nth-last-child(-n+3),
#initiative .mov_wrap .mov_box:nth-child(3n+1):nth-last-child(-n+3) ~ .mov_box {
  padding-bottom: 0;
  border-bottom: none;
}
#initiative .mov_wrap .mov_box:nth-child(3n+1):nth-last-child(-n+3):before,
#initiative .mov_wrap .mov_box:nth-child(3n+1):nth-last-child(-n+3):after,
#initiative .mov_wrap .mov_box:nth-child(3n+1):nth-last-child(-n+3) ~ .mov_box:before,
#initiative .mov_wrap .mov_box:nth-child(3n+1):nth-last-child(-n+3) ~ .mov_box:after {
  content: none;
}
#initiative .mov_wrap .mov_box:first-child:before,
#initiative .mov_wrap .mov_box:nth-child(4n):before,
#initiative .mov_wrap .mov_box:nth-child(3n):after {
  content: none;
}
#initiative .cts_back {
  width: 100%;
  display: inline-block;
  text-align: right;
  margin: 30px 0 0 0;
}
#initiative .cts_back a {
  text-decoration: none;
  color: #b5c5d5;
  font-size: 20px;
  line-height: 1.6em;
  font-weight: normal;
  padding: 0 32px 0 0;
  position: relative;
}
#initiative .cts_back a:after {
  content: '';
  width: 25px;
  height: 25px;
  background: url(../images/icon-arrow_up.svg) no-repeat center / contain;
  position: absolute;
  right: 0;
  top: calc(50% - 12.5px);
}
#initiative .linkbtn {
  width: 100%;
  display: inline-block;
  text-align: right;
  margin: 10px 0 0 0;
  padding: 0 10px;
}
#initiative .linkbtn a {
  text-decoration: none;
  color: #b5c5d5;
  font-size: 14px;
  line-height: 1.6em;
  font-weight: normal;
  border: 1px solid #305d8a;
  padding: 5px 10px;
}
#initiative .linkbtn a span {
  padding: 0 20px 0 0;
  position: relative;
}
#initiative .linkbtn a span:after {
  content: '';
  width: 17px;
  height: 17px;
  background: url(../images/icon-arrow_right.svg) no-repeat center / contain;
  position: absolute;
  right: 0;
  top: calc(50% - 8.5px);
}
#initiative .mov_box .iframe {
  width: calc(100% - 60px);
  aspect-ratio: 16/9;
  /* background: url(../images/commingsoon.png) no-repeat center / contain; */
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
}
#initiative .mov_box .iframe a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#initiative .mov_box .iframe a:after {
  content: '';
  width: 65px;
  height: 50px;
  background: url(../images/youtube-playbtn.png) no-repeat center / contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 10;
}
#initiative .mov_box .iframe img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#initiative .mov_box .iframe iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
#initiative .mov_box .mov_title {
  width: 100%;
  min-height: 141px;
  margin: 15px 0 20px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
#initiative .mov_box .mov_title h4 {
  font-size: 19px;
  line-height: 1.6em;
  font-weight: 500;
  width: 100%;
  align-items: center;
}
#initiative .mov_box .mov_title h5 {
  font-size: 14px;
  line-height: 1.6em;
  font-weight: 500;
  margin: 5px 0 0 0;
  width: 100%;
  align-items: center;
}
#initiative .mov_box .mov_title .name {
  font-size: 14px;
  line-height: 1.6em;
  font-weight: 500;
  letter-spacing: .05em;
  margin: 5px 0 0 0;
  width: 100%;
  align-items: center;
}
#initiative .mov_box .mov_title .name span {
  font-size: 10px;
  margin: 0 10px 0 0;
}
#initiative .mov_box .tag {
  width: 100%;
  padding: 0 10px;
  flex-grow: 1;
}
#initiative .mov_box .tag li {
  font-size: 11px;
  line-height: 1.6em;
  font-weight: normal;
  color: #b5c5d5;
  background: #295786;
  padding: 2px 10px;
  display: inline-block;
  margin: 0 4px 4px 0;
  float: left;
}
#initiative .mov_box .tag li span:before {
  content: '▶';
  color: #6687a9;
  font-size: 10px;
  margin: 0 5px 0 0;
  position: relative;
  top: -.5px;
}

#initiative #cts04 .mov_box .mov_title {
  min-height: 152px;
}
#initiative #cts04 .mov_box:last-child .mov_title {
  min-height: 92px;
}
#initiative #cts05 .mov_box .mov_title {
  min-height: 92px;
}
#initiative #cts06 .mov_box .mov_title {
  min-height: 122px;
}

/* ========================================================================================================
   767px以下
   ========================================================================================================*/
@media screen and (max-width: 767px) {
  #kv .wrap {
    width: calc(100% - 50px);
    padding: 30% 0;
  }
  #kv h2 {
    width: calc(100% - 20px);
    max-height: inherit;
    left: -5px;
    top: 70px;
  }
  #about h2 span {
    font-size: 20px;
    margin: 0;
  }
  #about p {
    font-size: calc(100vw / 100 * 3.8);
  }
  #pickup h2 {
    font-size: 20px;
  }
  #pickup .half_wrap {
    gap: 65px;
  }
  #pickup .half_wrap .halfBox {
    width: 100%;
  }
  #pickup .half_wrap .halfBox .eyecatch {
    width: 85%;
    max-width: inherit;
  }
  #pickup .half_wrap .halfBox h3 {
    font-size: 17px;
  }
  #pickup .half_wrap .halfBox h4 {
    font-size: 12px;
  }
  #pickup .half_wrap .halfBox .title {
    min-height: inherit;
  }
  #type .wrap {
    padding: 50px 0;
  }
  #type h2 {
    font-size: 20px;
    margin: 0 0 40px;
  }
  #type .type_list {
    border-top: 1px solid var(--mainColor);
    border-left: 1px solid var(--mainColor);
  }
  #type .type_list .type_box,
  #type .type_list .type_box + .type_box {
    width: calc(100% / 2);
    padding: 20px 8px 25px;
    border-right: 1px solid var(--mainColor);
    border-bottom: 1px solid var(--mainColor);
    border-top: none;
    border-left: none;
  }
  #type .type_list .type_box .num {
    font-size: 25px;
  }
  #type .type_list .type_box ul li {
    font-size: 11px;
  }
  #type .type_list .type_box:nth-child(1) ul li span,
  #type .type_list .type_box:nth-child(2) ul li span {
    max-width: 5.5em;
  }
  #type .type_list .type_box:nth-child(3) ul li span {
    max-width: 13.5em;
  }
  #type .type_list .type_box:nth-child(4) ul li span {
    max-width: 6.5em;
  }
  #initiative h2 span {
    font-size: 20px;
    margin: 0;
  }
  #initiative .subnav td {
    display: block;
    width: 100%;
  }
  #initiative .subnav a {
    font-size: 16px;
    padding: 0 0 0 28px;
  }
  #initiative .subnav a:before {
    width: 21px;
    height: 21px;
  }
  #initiative .subnav td {
    padding: 5px 1em 5px 0;
  }
  #initiative .subnav {
    margin: 0 0 55px;
  }
  #initiative .cts_block h3 {
    font-size: 20px;
    margin: 0 0 30px;
  }
  #initiative .mov_wrap .mov_box {
    width: calc(100% / 2);
    border-bottom: 1px solid #305d8a;
    border-right: 1px solid #305d8a;
    padding: 18px 10px;
  }
  #initiative .mov_wrap .mov_box:nth-child(-n+3) {
    padding-top: 18px;
  }
  #initiative .mov_wrap .mov_box:nth-child(3n) {
    border-right: 1px solid #305d8a;
  }
  #initiative .mov_wrap .mov_box:nth-child(3n):after {
    content: '';
  }
  #initiative .mov_wrap .mov_box:nth-child(3n+1):nth-last-child(-n+3),
  #initiative .mov_wrap .mov_box:nth-child(3n+1):nth-last-child(-n+3) ~ .mov_box {
    padding-bottom: 18px;
    border-bottom: 1px solid #305d8a;
  }
  #initiative .mov_wrap .mov_box:nth-child(3n+1):nth-last-child(-n+3):before,
  #initiative .mov_wrap .mov_box:nth-child(3n+1):nth-last-child(-n+3):after,
  #initiative .mov_wrap .mov_box:nth-child(3n+1):nth-last-child(-n+3) ~ .mov_box:before,
  #initiative .mov_wrap .mov_box:nth-child(3n+1):nth-last-child(-n+3) ~ .mov_box:after {
    content: '';
  }
  #initiative .mov_wrap .mov_box:nth-child(-n+2) {
    padding-top: 0!important;
  }
  #initiative .mov_wrap .mov_box:nth-child(2n) {
    border-right: none!important;
  }
  #initiative .mov_wrap .mov_box:nth-child(odd):before,
  #initiative .mov_wrap .mov_box:nth-child(even):after {
    content: none;
  }
  #initiative .mov_wrap .mov_box:nth-child(2n+1):nth-last-child(-n+2),
  #initiative .mov_wrap .mov_box:nth-child(2n+1):nth-last-child(-n+2) ~ .mov_box {
    padding-bottom: 0!important;
    border-bottom: none!important;
  }
  #initiative .mov_wrap .mov_box:nth-child(2n+1):nth-last-child(-n+2):before,
  #initiative .mov_wrap .mov_box:nth-child(2n+1):nth-last-child(-n+2):after,
  #initiative .mov_wrap .mov_box:nth-child(2n+1):nth-last-child(-n+2) ~ .mov_box:before,
  #initiative .mov_wrap .mov_box:nth-child(2n+1):nth-last-child(-n+2) ~ .mov_box:after {
    content: none!important;
  }
  #initiative .mov_wrap {
    width: calc(100% + 20px);
    margin: 0 -10px;
  }
  #initiative .mov_box .iframe {
    width: calc(100% - 20px);
  }
  #initiative .mov_box .mov_title h4 {
    font-size: 14px;
  }
  #initiative .mov_box .mov_title h5 {
    font-size: 11px;
  }
  #initiative .mov_box .mov_title .name {
    font-size: 10px;
  }
  #initiative .mov_box .mov_title .name span {
    font-size: 8px;
  }
  #initiative .mov_box .tag li {
    font-size: 9px;
    padding: 2px 5px;
    display: inline-block;
    margin: 0 2px 2px 0;
    float: left;
  }
  #initiative .mov_box .tag {
    width: 100%;
    padding: 0;
    flex-grow: 1;
  }
  #initiative .mov_box .tag li span:before {
    font-size: 7px;
    margin: 0 2px 0 0;
  }
  #initiative .linkbtn a {
    font-size: 10px;
    padding: 5px 8px;
  }
  #initiative .linkbtn a span {
    padding: 0 18px 0 0;
    position: relative;
  }
  #initiative .linkbtn a span:after {
    width: 13px;
    height: 13px;
    top: calc(50% - 6.5px);
  }
  #initiative .cts_back a {
    font-size: 14px;
    padding: 0 28px 0 0;
  }
  #initiative .cts_back a:after {
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
  }
  #initiative .wrap {
    padding: 45px 0 60px;
  }
  #initiative #cts04 .mov_box:last-child .mov_title {
    min-height: 152px;
  }
  #initiative .mov_box .iframe a:after {
    width: 40px;
    height: 30px;
  }

}