@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共通ここまで***/
body {
  overflow: hidden;
}

#section01 {
  width: 100%;
  position: relative;
  overflow: hidden;
}
#section01 ul.base {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#section01 ul.base li {
  width: 25%;
}
@media screen and (max-width:800px) {
  #section01 ul.base li {
    width: 50%;
  }
}
#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;
}
@media screen and (max-width:800px) {
  #section01 .titles {
    flex-wrap: wrap;
  }
}
#section01 .titles h2 {
  width: 50%;
  color: #fff;
  line-height: 100%;
  position: relative;
}
@media screen and (max-width:800px) {
  #section01 .titles h2 {
    width: 100%;
  }
}
#section01 .titles h2::before {
  content: "";
  width: 100vw;
  height: 105%;
  background-color: rgba(0, 0, 0, 0.35);
  position: absolute;
  bottom: -0.5em;
  right: 35%;
  z-index: 1;
  display: none;
}
@media screen and (max-width:800px) {
  #section01 .titles h2::before {
    display: block;
  }
}
#section01 .titles h2 .eng {
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-right: 0.8em;
  position: relative;
  line-height: 100%;
  z-index: 5;
}
@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;
  position: relative;
  z-index: 4;
}
@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 .pos {
  position: relative;
  z-index: 5;
}
#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;
  z-index: 5;
}
@media screen and (max-width:800px) {
  #section01 .titles h2 .jpn::after {
    display: block;
  }
}
#section01 .titles h2 .jpn::before {
  content: "";
  width: 100vw;
  height: 3.5em;
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  bottom: -0.15em;
  right: -2em;
  z-index: 1;
}
@media screen and (max-width:800px) {
  #section01 .titles h2 .jpn::before {
    display: none;
  }
}
#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 {
  width: 100%;
  padding: 110px 0 60px 0;
  overflow: hidden;
}
@media screen and (max-width:800px) {
  #section02 {
    padding: 12vw 0;
  }
}
#section02 .section__in {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
#section02 h2 {
  line-height: 100%;
  padding-bottom: 0.35em;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 150px;
  position: relative;
}
@media screen and (max-width:800px) {
  #section02 h2 {
    margin-bottom: 12vw;
  }
}
#section02 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 {
    width: 110%;
  }
}
#section02 .logos {
  width: 94%;
  margin: 0 auto 0 auto;
}
@media screen and (max-width:800px) {
  #section02 .logos {
    padding: 0 0 5vw 0;
  }
}
#section02 .logotext {
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 300;
  margin-top: 0.5em;
}

#section03 {
  width: 100%;
  position: relative;
}
@media screen and (max-width:800px) {
  #section03 {
    padding-top: 40vw;
  }
}
#section03 .intext {
  width: 90%;
  max-width: 1100px;
  position: absolute;
  z-index: 5;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  letter-spacing: 0.1em;
  font-weight: 300;
  text-align: center;
  line-height: 240%;
}
@media screen and (max-width:800px) {
  #section03 .intext {
    text-align: left;
  }
}

#section04 {
  width: 100%;
  padding: 120px 0;
  background: linear-gradient(0deg, rgb(231, 231, 231) 0%, rgb(255, 255, 255) 100%);
}
@media screen and (max-width:800px) {
  #section04 {
    padding: 15vw 0;
  }
}
#section04 .section__in {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
#section04 h2 {
  line-height: 100%;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 50px;
  position: relative;
}
@media screen and (max-width:800px) {
  #section04 h2 {
    margin-bottom: 7.5vw;
  }
}
#section04 .base_text {
  line-height: 240%;
  letter-spacing: 0.1em;
  margin-bottom: 3em;
}
#section04 .photo {
  position: relative;
}
#section04 .photo figure {
  position: relative;
  z-index: 4;
}
@media screen and (max-width:800px) {
  #section04 .photo figure {
    width: 110%;
    margin-left: 0;
    margin-right: 10%;
  }
}
#section04 .photo figcaption {
  width: 25%;
  position: absolute;
  z-index: 5;
  right: 0;
  top: 50%;
  transform: translate(25%, -50%);
}
@media screen and (max-width:800px) {
  #section04 .photo figcaption {
    width: 40%;
    z-index: 1;
  }
}

#section05 {
  width: 100%;
  padding: 120px 0;
  background: linear-gradient(0deg, rgb(231, 231, 231) 0%, rgb(255, 255, 255) 100%);
}
@media screen and (max-width:800px) {
  #section05 {
    padding: 15vw 0;
  }
}
#section05 .section__in {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
#section05 h2 {
  line-height: 100%;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 50px;
  position: relative;
}
@media screen and (max-width:800px) {
  #section05 h2 {
    margin-bottom: 7.5vw;
  }
}
#section05 .base_text {
  line-height: 240%;
  letter-spacing: 0.1em;
  margin-bottom: 3em;
}
#section05 .photo {
  position: relative;
}
#section05 .photo figure {
  position: relative;
  z-index: 4;
}
@media screen and (max-width:800px) {
  #section05 .photo figure {
    width: 110%;
    margin-left: 0;
    margin-right: 10%;
  }
}
#section05 .photo figcaption {
  width: 25%;
  position: absolute;
  z-index: 5;
  right: 0;
  top: 50%;
  transform: translate(25%, -50%);
}
@media screen and (max-width:800px) {
  #section05 .photo figcaption {
    width: 40%;
    z-index: 1;
  }
}

#section06 {
  width: 100%;
  background-color: #fff;
  padding: 150px 0;
}
@media screen and (max-width:800px) {
  #section06 {
    padding: 15vw 0;
    overflow: hidden;
  }
}
#section06 .section__in {
  width: 90%;
  max-width: 1060px;
  margin: 0 auto;
}
#section06 .clumbox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
#section06 .clumbox h2 {
  width: 20%;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width:800px) {
  #section06 .clumbox h2 {
    width: 100%;
    margin-bottom: 5vw;
  }
}
#section06 .clumbox ul {
  width: 80%;
  border-top: 1px solid #000;
}
@media screen and (max-width:800px) {
  #section06 .clumbox ul {
    width: 110%;
    margin-left: 0;
    margin-right: -10%;
  }
}
#section06 .clumbox ul li {
  padding: 0.85em 0 0.95em 0;
  text-indent: -1em;
  padding-left: 1em;
  border-bottom: 1px solid #000;
  width: 100%;
}/*# sourceMappingURL=philosophy.css.map */