@charset "utf-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Helvetica Neue", Arial, "Hiragino Gothic ProN", "Hiragino Sans",
    Meiryo, sans-serif;
  line-height: 1.7;
}
a {
  text-decoration: none;
  color: #444141;
}
img {
  max-width: 100%;
}
#open {
  display: none;
}
p {
  font-family: serif;
  font-size: 1rem;
}
/*------------Header-----------*/
.logo {
  width: 150px;
}
.main-nav {
  display: flex;
  font-size: 1.25rem;
  list-style: none;
}
.main-nav li {
  margin-left: 36px;
}
.main-nav a {
  color: #313131;
  font-size: 1rem;
}
.main-nav a:hover {
  color: #0bd;
}
.page-header {
  /* position: absolute; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1% 4%;
  width: 100%;
}
.logo-sp {
  width: 150px;
}

/* アニメーションスタイル */
/* ---------------------------- */

/* アニメーション前 */
.u-fade-type-up {
  transform: translateY(50px);
  opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-up.is-active {
  transition: 0.6s;
  transform: translateY(0);
  opacity: 1;
}

/* アニメーション前  左から右へ画像がスライド*/
.u-fade-type-slide {
  transform: translateX(-100px);
  opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-slide.is-active {
  transition: 0.6s;
  transform: translateX(0);
  opacity: 1;
}

/* アニメーション前  右から左へスライド*/
.u-fade-type-slide-l {
  transform: translateX(100px);
  opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-slide-l.is-active {
  transition: 0.6s;
  transform: translateX(0);
  opacity: 1;
}
/*画像アニメーション*/
/* 3 つのサンプル共通 */
.sample {
  overflow: hidden;
  position: relative;
  /* width: 40%; */
}

.sample img {
  display: block;
  height: auto;
  /* width: 100%; */
}

.sample-second.sample-animation {
  animation: sample-second-img 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.sample-second.sample-animation:before {
  animation: sample-second-before 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #fff;
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

@keyframes sample-second-img {
  0% {
    opacity: 0;
  }
}

@keyframes sample-second-before {
  100% {
    transform: translateX(100%);
  }
}
/*-------------video---------------*/
.keyvisual {
  height: 100vh;
}
.video-wrap {
  position: relative;
}
.top-text {
  font-family: serif;
  color: #fff;
  font-size: 400%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.top-text-en {
  font-family: serif;
  color: #fff;
  font-size: 1rem;
  position: absolute;
  top: 40%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
/*------------Key-visual-----------*/
.nav-position {
  width: 100%;
  background: rgb(98, 247, 247);
  background: linear-gradient(
    43deg,
    rgba(98, 247, 247, 1) 0%,
    rgba(144, 245, 151, 1) 100%
  );
}
.page-title {
  font-size: 2rem;
  position: absolute;
  right: 45%;
  top: 22%;
  color: #ffffff;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 2px;
}
.big-letter {
  font-size: 4rem;
}
.application-area {
  position: relative;
  width: 200px;
  height: 200px;
  background-color: white;
  border-radius: 50%;
  text-align: center;
  overflow: hidden;
  box-shadow: 0px 0px 0px 3px #0c7eac;
  border: dashed 1px #fff;
  transition: 0.4s;
}
.student-text {
  color: #0c7eac;
  position: absolute;
  width: 100%;
  font-size: 1.25rem;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  text-align: center;
  font-weight: 300;
}
video {
  position: absolute;
  object-fit: cover;
  object-position: center;
  opacity: var(--video-opacity);
  width: 100%;
  height: 100vh;
  z-index: -10;
}
/*******************************ページトップへ戻る*/
#page-top {
  position: fixed;
  bottom: 20px;
  right: 15px;
  font-size: 77%;
  z-index: 1;
}
#page-top a {
  text-decoration: none;
  color: #fff;
  width: 50px;
  text-align: center;
  display: block;
}
#page-top a:hover {
  text-decoration: none;
  background: #999;
}
.toTop {
  width: 100px;
}
/************************************************************************Button*
************************************************************/

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn-c {
  font-size: 1rem;
  position: relative;
  margin-top: 40px;
  padding: 1rem 4rem 1rem 2rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
  border-radius: 100vh;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#007adf),
    to(#00ecbc)
  );
  background-image: -webkit-linear-gradient(left, #007adf 0%, #00ecbc 100%);
  background-image: linear-gradient(to right, #007adf 0%, #00ecbc 100%);
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}

a.btn-c:before {
  font-family: "Font Awesome 5 Free";
  font-size: 1.6rem;
  line-height: 1;

  position: absolute;
  top: calc(50% - 0.8rem);
  right: 1rem;

  margin: 0;
  padding: 0;

  content: "\f30b";
}

a.btn-c:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);

  color: #fff;
}
/*******************************01 About*/
.section01 {
  background: rgb(255, 255, 255);
  width: 100%;
  text-align: center;
}
.sub-t01 {
  color: #0c7eac;
  padding: 150px 0 1rem;
  font-size: 1rem;
  font-family: serif;
}
.title-jp {
  color: #0c7eac;
  padding: 0 0 5rem;
  font-size: 2rem;
  font-family: serif;
}
.message {
  font-size: 1rem;
  font-weight: bold;
  font-family: serif;
  line-height: 3rem;
}
.top1 {
  background-color: white;
}

.two-side {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 100px;
}
.wish-right,
.wish-left {
  width: 40%;
}
.left-title,
.right-title {
  font-family: serif;
  color: white;
  font-size: 1.5rem;
  background-color: #0c7eac;
  padding: 2rem;
}
/*******************************02 活動 | プロジェクト*/
.section02 {
  background: rgb(255, 255, 255);
  width: 100%;
  text-align: center;
  padding-bottom: 8rem;
}
.sub-t02 {
  color: #0c7eac;
  padding: 10rem 0 2rem;
  font-size: 1.5rem;
}
.circle {
  position: relative; /* ←文字の親要素に指定 */
  width: 100%;
  height: 50px;
  background: rgb(92, 154, 150);
  background: linear-gradient(
    43deg,
    rgba(92, 154, 150, 1) 0%,
    rgba(11, 218, 218, 1) 100%
  );
  margin: 0 auto;
  text-align: center;
  margin-bottom: 3rem;
}
.wish-title {
  width: 100%;
  background: linear-gradient(
    43deg,
    rgba(92, 154, 150, 1) 0%,
    rgba(11, 218, 218, 1) 100%
  );
  color: white;
  font-size: 1.5rem;
  font-family: serif;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.wish-p {
  text-align: left;
}
/*******************************03 Feature*/
.section03 {
  background: #0c7eac;
}
.reason {
  font-size: 2rem;
  color: white;
  text-align: center;
  padding: 2rem;
}

/******************************* map */
.section06 {
  height: 60vh;
}
.map {
  position: relative;
  width: 100%;
  height: 0;
}

/* Google Mapのiframe */
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60vh;
  opacity: 0.7;
}
/******************************* Footer */
.line {
  border-bottom: 1px solid gray;
}
#footer {
  padding: 4% 0;
  width: 100%;
  background: linear-gradient(
    43deg,
    rgba(98, 247, 247, 1) 0%,
    rgba(144, 245, 151, 1) 100%
  );
}
#footer .wrapper {
  display: flex;
  justify-content: space-around;
}
footer .sub-title {
  color: #444141;
  margin-bottom: 30px;
}
footer .sub-title-sns {
  text-align: center;
  margin-bottom: 30px;
}
footer li {
  list-style: none;
}
.footer-area {
  text-align: left;
}
.sns {
  margin-bottom: 3rem;
}
footer p {
  color: #444141;
  font-size: 0.875rem;
  text-align: center;
  margin-top: 5rem;
}
.copyright {
  text-align: center;
}

a.btn-border {
  border: 2px solid #000;
  border-radius: 0;
  background: #fff;
}

a.btn-border:hover {
  color: #fff;
  background: #000;
}
.sp-link {
  display: none;
}
.page-title-sp {
  display: none;
}
.logo-sp {
  display: none;
}
.catch-text {
  display: none;
}
.fa-ellipsis-h:before {
  display: none;
}
/**********************************************************************
スマホ対応
**********************************************************************/
@media all and (max-width: 768px) {
  /*top*/
  html p {
    font-size: 14px;
  }
  #page-top .fa,
  .fas,
  .fa-ellipsis-h:before {
    display: block;
    font-weight: 900;
    width: 50px;
    height: 50px;
    color: yellow;
    position: fixed;
    left: 20px;
    top: 20px;
    z-index: 100;
  }
  .keyvisual {
    height: 70vh;
  }
  .page-header {
    display: none;
  }
  #page-top a {
    display: none;
  }
  .top-area {
    width: 100%;
    text-align: center;
  }
  .top-text {
    font-family: serif;
    color: #fff;
    font-size: 1.5rem;
    position: absolute;
    top: 30%;
  }

  /*********************************************************************About
  *******************************************************************/
  #about .title-jp {
    padding: 0 0 3rem;
  }
  #about .two-side {
    margin-bottom: 50px;
  }

  .section02 {
    padding-bottom: 0%;
  }
  .sub-t01 {
    color: #0c7eac;
    padding: 100px 0 1rem;
    font-size: 1rem;
    font-family: serif;
  }
  .left-title,
  .right-title {
    font-family: serif;
    color: white;
    font-size: 0.75rem;
    background-color: #0c7eac;
    padding: 1rem;
    width: 140px;
  }
  .message {
    font-size: 14px;
    font-weight: 400;
    font-family: serif;
    line-height: 22px;
    padding: 1.5rem;
    text-align: left;
  }
  #wish .two-side {
    display: flex;
    flex-direction: column;
  }
  #wish .title-jp {
    padding: 0 0 1rem;
  }
  #wish .circle {
    background: rgb(92, 154, 150);
    background: linear-gradient(
      43deg,
      rgba(92, 154, 150, 1) 0%,
      rgba(11, 218, 218, 1) 100%
    );
    margin: 0 auto;
    text-align: center;
    margin-bottom: 2rem;
  }
  .wish-title {
    font-size: 1rem;
  }
  .wish-right,
  .wish-left {
    width: auto;
  }
  .wish-p {
    padding: 0 2rem 2rem 2rem;
  }
  .reason {
    font-size: 1.125rem;
  }
  .grid {
    display: block;
  }
  .menu-text {
    font-size: 1.5rem;
    padding: 0.75rem;
  }
  #sec4 .title-jp {
    padding: 0 0 1rem;
  }
  .side-area {
    display: block;
  }
  .left-area:after {
    display: none;
  }
  .two {
    font-size: 1.125rem;
    font-weight: 700;
  }
  .side-area {
    padding: 0%;
  }
  .title-jp {
    font-size: 1.5rem;
  }

  #order .order1 {
    order: 1;
  }
  #order .order2 {
    order: 2;
  }
  a.btn-c {
    margin-top: 0;
  }
  /********************************************************************
  Flow
  *****************************************************************/
  .cp_timeline04 {
    width: 100%;
    padding: 1rem;
  }
  .cp_timeline04 .timeline_item .time_date .time {
    line-height: 5rem;
    font-size: 5rem;
  }
  .cp_timeline04:before {
    left: 30px;
  }
  .example {
    font-size: 14px;
    background: white;
    width: 90%;
    padding: 1rem;
    margin: 1rem;
  }
  #flow .flow-text {
    font-size: 14px;
    margin-top: 20px;
  }
  /********************************************************************
  活動のポイント
  *****************************************************************/
  .list_test {
    font-size: 14px;
  }
  .point-area {
    width: 100%;
    margin: 0 auto;
  }
  .list_test-wrap {
    width: 80%;
  }
  .sample {
    width: 100%;
  }
  /********************************************************************
  Footer
  *****************************************************************/
  #footer .wrapper {
    display: block;
  }
  .footer-area {
    text-align: center;
    margin-bottom: 50px;
  }
  footer .sub-title,
  footer .sub-title-sns {
    margin: 30px;
    background: white;
  }
  #footer a {
    font-size: 14px;
  }
}
