@charset "UTF-8";
img {
  width: 100%;
}

.test1 {
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  -webkit-transition: all 0.4s ease-out 0.01s;
  transition: all 0.4s ease-out 0.01s;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transform: scale(1);
  transform: rotate(-45deg);
  border-radius: 50%;
  animation: Flash1 1s infinite;
  animation: beyooon_a 1s forwards;
  animation: beyooon_b 1s forwards;
  font-family: "Noto Serif JP", serif;
  background: linear-gradient(90deg, rgb(0, 72, 110) 0%, rgb(0, 120, 155) 100%);
}

@keyframes Flash1 {
  50% {
    opacity: 0;
  }
}
@keyframes beyooon_a {
  0% {
    transform: translate(-50%, 0%) scale(0.5);
  }
  16% {
    opacity: 1;
    transform: translate(-50%, 0%) scale(1.22);
  }
  28% {
    transform: translate(-50%, 0%) scale(1);
  }
  88% {
    transform: translate(-50%, 0%) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0%) scale(1);
  }
}
@keyframes beyooon_b {
  0% {
    transform: scale(0.5);
  }
  16% {
    transform: scale(1.32);
  }
  28% {
    transform: scale(0.87);
  }
  44% {
    transform: scale(1.05);
  }
  59% {
    transform: scale(0.98);
  }
  73% {
    transform: scale(1.01);
  }
  88% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.test {
  content: "\f105";
  font-family: FontAwesome;
}

.shadow {
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.4), 1px 3px 3px rgba(0, 0, 0, 0.4), 1px 2px 3px rgba(0, 0, 0, 0.4);
}

/**scss共通ここまで***/
#section01 {
  width: 100%;
  position: relative;
  overflow: hidden;
}
#section01 .base {
  position: relative;
}
#section01 .section__in {
  width: 90%;
  position: absolute;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  display: flex;
  align-items: center;
  z-index: 10;
}
#section01 .titles {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
@media screen and (max-width:800px) {
  #section01 .titles {
    flex-wrap: wrap;
  }
}
#section01 .titles h2 {
  width: 50%;
  color: #fff;
  line-height: 100%;
}
@media screen and (max-width:800px) {
  #section01 .titles h2 {
    width: 100%;
  }
}
#section01 .titles h2 .eng {
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-right: 0.8em;
  position: relative;
  line-height: 100%;
}
@media screen and (max-width:800px) {
  #section01 .titles h2 .eng {
    width: 100%;
    display: block;
  }
}
#section01 .titles h2 .eng::after {
  content: "";
  width: 5px;
  height: 70%;
  position: absolute;
  right: 0.35em;
  top: 12.5%;
  background-color: #fff;
  /*background : linear-gradient(180deg, rgba(119, 152, 186, 1) 0%,  rgba(19, 75, 103, 1) 100%);*/
}
@media screen and (max-width:800px) {
  #section01 .titles h2 .eng::after {
    content: none;
  }
}
#section01 .titles h2 .jpn {
  letter-spacing: 0.15em;
}
@media screen and (max-width:800px) {
  #section01 .titles h2 .jpn {
    width: 100%;
    display: block;
    position: relative;
    padding-left: 1em;
    padding-top: 0.75em;
  }
}
#section01 .titles h2 .jpn::after {
  content: "";
  width: 5px;
  height: 100%;
  position: absolute;
  left: 0em;
  top: 12.5%;
  background-color: #fff;
  /*background : linear-gradient(180deg, rgba(119, 152, 186, 1) 0%,  rgba(19, 75, 103, 1) 100%);*/
  display: none;
}
@media screen and (max-width:800px) {
  #section01 .titles h2 .jpn::after {
    display: block;
  }
}
#section01 .titles .lefttext {
  width: 50%;
  text-align: right;
  letter-spacing: 0.15em;
  color: #fff;
}
@media screen and (max-width:800px) {
  #section01 .titles .lefttext {
    width: 100%;
    text-align: left;
    margin-top: 0.35em;
  }
}

#section02, #section03, #section04 {
  width: 100%;
  background-color: #fff;
  background: linear-gradient(0deg, rgb(231, 231, 231) 0%, rgb(255, 255, 255) 100%);
  padding: 110px 0 180px 0;
  overflow: hidden;
}
@media screen and (max-width:800px) {
  #section02, #section03, #section04 {
    padding: 12vw 0;
  }
}
#section02 .section__in, #section03 .section__in, #section04 .section__in {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
#section02 h2, #section03 h2, #section04 h2 {
  line-height: 100%;
  padding-bottom: 0.35em;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.45em;
  position: relative;
}
#section02 h2::after, #section03 h2::after, #section04 h2::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #333;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width:800px) {
  #section02 h2::after, #section03 h2::after, #section04 h2::after {
    width: 110%;
  }
}
#section02 .h2subtext, #section03 .h2subtext, #section04 .h2subtext {
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 3em;
  line-height: 180%;
}
#section02 .base_text, #section03 .base_text, #section04 .base_text {
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 210%;
  margin-bottom: 1.5em;
}
#section02 figure, #section03 figure, #section04 figure {
  position: relative;
}
#section02 figure figcaption, #section03 figure figcaption, #section04 figure figcaption {
  width: 100%;
  text-align: left;
  padding-left: 1em;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 5;
  transform: translate(0, -50%);
}
@media screen and (max-width:800px) {
  #section02 figure figcaption, #section03 figure figcaption, #section04 figure figcaption {
    line-height: 120%;
  }
}
#section02 ul, #section03 ul, #section04 ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#section02 ul li, #section03 ul li, #section04 ul li {
  width: 24.35%;
  margin-top: 28px;
}
@media screen and (max-width:800px) {
  #section02 ul li, #section03 ul li, #section04 ul li {
    width: 100%;
    margin-top: 7.5vw;
  }
}
@media screen and (max-width:800px) {
  #section02 ul li .ttls_sp_box, #section03 ul li .ttls_sp_box, #section04 ul li .ttls_sp_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
#section02 ul li .nos, #section03 ul li .nos, #section04 ul li .nos {
  line-height: 100%;
  color: #12335f;
}
@media screen and (max-width:800px) {
  #section02 ul li .nos, #section03 ul li .nos, #section04 ul li .nos {
    width: 17%;
  }
}
#section02 ul li .text, #section03 ul li .text, #section04 ul li .text {
  letter-spacing: 0.1em;
  color: #12335f;
  font-weight: 300;
  margin-bottom: 1.5em;
  line-height: 160%;
}
@media screen and (max-width:800px) {
  #section02 ul li .text, #section03 ul li .text, #section04 ul li .text {
    width: 83%;
    margin-bottom: 0.5em;
  }
}
#section02 ul li .base_text01, #section03 ul li .base_text01, #section04 ul li .base_text01 {
  line-height: 160%;
  font-weight: 300;
}
@media screen and (max-width:800px) {
  #section02 ul li .base_text01, #section03 ul li .base_text01, #section04 ul li .base_text01 {
    width: 100%;
  }
}

.linkbox {
  width: 100%;
  position: relative;
}
.linkbox .linkpos {
  position: absolute;
  left: 0;
  bottom: 120px;
}
@media screen and (max-width:800px) {
  .linkbox .linkpos {
    bottom: 55px;
  }
}/*# sourceMappingURL=strengths.css.map */