@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共通ここまで***/
#footatens.footatens__plan {
  background-color: #ece9e6;
}

#section01 {
  position: relative;
  z-index: 1;
  background-color: #fff;
  overflow: hidden;
}
#section01 .section__in {
  width: 28.57%;
  position: absolute;
  top: 20.4%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 5;
}
@media screen and (max-width:800px) {
  #section01 .section__in {
    position: relative;
    width: 100%;
    padding: 34vw 0 14vw 0;
    background: linear-gradient(90deg, rgb(0, 81, 126) 0%, rgb(2, 58, 73) 100%);
  }
}
@media screen and (max-width:800px) {
  #section01 .titles {
    width: 70%;
    margin: 0 auto;
  }
}
#section01 .base_text {
  width: 100%;
  line-height: 200%;
  margin-top: 2em;
}
@media screen and (max-width:800px) {
  #section01 .base_text {
    width: 70%;
    margin: 2em auto 0 auto;
    color: #fff;
  }
}

#section02 {
  background-color: #fff;
  padding-top: 130px;
  position: relative;
}
@media screen and (max-width:800px) {
  #section02 {
    padding-top: 15vw;
  }
}
#section02 .atens {
  position: absolute;
  text-align: right;
  top: 0.5em;
  right: 0.5em;
}
#section02 .section__in {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}
#section02 .clums {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 50px;
}
#section02 .clums .left {
  width: 23.33%;
}
@media screen and (max-width:800px) {
  #section02 .clums .left {
    width: 40%;
    margin: 0 30% 12.5vw 30%;
  }
}
#section02 .clums .base_text {
  width: 41.11%;
  line-height: 200%;
}
@media screen and (max-width:800px) {
  #section02 .clums .base_text {
    width: 90%;
    margin: 0 auto;
  }
}
#section02 .wide {
  width: 100%;
  position: relative;
}
#section02 .wide::after {
  content: "";
  width: 100%;
  height: 50%;
  background-color: #000;
  position: absolute;
  left: 0;
  bottom: -1px;
}
@media screen and (max-width:800px) {
  #section02 .wide::after {
    background-color: #fff;
  }
}
#section02 .wide .wide__in {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  z-index: 10;
  position: relative;
}
@media screen and (max-width:800px) {
  #section02 .wide .wide__in {
    width: 100%;
  }
}
#section02 .wide .wide__in figure {
  position: relative;
}
#section02 .wide .wide__in .h2title {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  color: #fff;
}
@media screen and (max-width:800px) {
  #section02 .wide .wide__in .h2title {
    width: 100%;
    position: relative;
    background-color: #fff;
    top: auto;
    transform: translate(0, 0);
    color: #000;
    padding: 10vw 0 0 0;
  }
}
#section02 .wide .wide__in .names {
  position: absolute;
  display: inline-block;
  bottom: 0;
  right: 0;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0.25em 0.75em 0.35em;
  line-height: 100%;
}

#section03 {
  background-color: #000;
  color: #fff;
  padding: 70px 0 1px 0;
}
@media screen and (max-width:800px) {
  #section03 {
    padding: 5vw 0 1px 0;
    background-color: #fff;
    color: #000;
  }
}
#section03 .section__in {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}
#section03 ul.merilist {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-left: 1px solid #999;
  margin-bottom: 130px;
}
@media screen and (max-width:800px) {
  #section03 ul.merilist {
    margin-bottom: 10vw;
    border-left: 0px solid #999;
    border-top: 0px solid #666;
  }
}
#section03 ul.merilist li {
  width: 33.3333333333%;
  border-right: 1px solid #999;
}
@media screen and (max-width:800px) {
  #section03 ul.merilist li {
    width: 100%;
    padding: 2em 0;
    border-right: 0;
    border-bottom: 1px solid #666;
  }
}
#section03 ul.merilist li .minis {
  width: 100%;
  text-align: center;
}
#section03 ul.merilist li .bigs {
  width: 100%;
  text-align: center;
}

#section04 {
  background-color: #000;
  color: #fff;
  padding-bottom: 130px;
  overflow: hidden;
}
@media screen and (max-width:800px) {
  #section04 {
    padding-top: 15vw;
    padding-bottom: 10vw;
  }
}
#section04 .section__in {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}
#section04 .clums {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 50px;
}
#section04 .clums .left {
  width: 23.33%;
}
@media screen and (max-width:800px) {
  #section04 .clums .left {
    width: 40%;
    margin: 0 30% 12.5vw 30%;
    order: 1;
  }
}
#section04 .clums .base_text {
  width: 41.11%;
  line-height: 200%;
}
@media screen and (max-width:800px) {
  #section04 .clums .base_text {
    width: 80%;
    margin: 0 auto;
    order: 2;
  }
}
#section04 .wide__in {
  width: 100%;
  z-index: 10;
  position: relative;
  margin-bottom: 70px;
}
@media screen and (max-width:800px) {
  #section04 .wide__in {
    width: 114%;
    margin-left: -7%;
    margin-right: -7%;
    margin-bottom: 5vw;
  }
}
#section04 .wide__in figure {
  position: relative;
}
#section04 .wide__in .h2title {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 55%;
  left: 0;
  transform: translate(0, -50%);
  line-height: 100%;
  color: #fff;
}
@media screen and (max-width:800px) {
  #section04 .wide__in .h2title {
    width: 100%;
    position: relative;
    background-color: #000;
    top: auto;
    transform: translate(0, 0);
    color: #000;
    padding: 10vw 0 0 0;
    color: #fff;
  }
}
#section04 .wide__in .names {
  position: absolute;
  z-index: 5;
  color: #fff;
  bottom: 8px;
  right: 8px;
  line-height: 100%;
}
#section04 ul.merilist {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-left: 1px solid #999;
}
@media screen and (max-width:800px) {
  #section04 ul.merilist {
    border-left: 0px solid #999;
    border-top: 0px solid #666;
  }
}
#section04 ul.merilist li {
  width: 33.3333333333%;
  border-right: 1px solid #999;
}
@media screen and (max-width:800px) {
  #section04 ul.merilist li {
    width: 100%;
    padding: 2em 0;
    border-right: 0;
    border-bottom: 1px solid #666;
  }
}
#section04 ul.merilist li .minis {
  width: 100%;
  text-align: center;
}
#section04 ul.merilist li .bigs {
  width: 100%;
  text-align: center;
}

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