@charset "UTF-8";
@font-face {}html, body {
  width: 100%;
  color: #777;
  font-size: 16px;
  line-height: 1.6;
  font-family: Quicksand, 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-size-adjust: 100%;
  letter-spacing: 0.1em; }
  @media screen and (max-width: 768px) {
    html, body {
      font-size: 14px; } }

p, a {
  -webkit-font-smoothing: antialiased; }

a {
  color: #777;
  text-decoration: none;
  transition: .3s; }

a:hover {
  opacity: 0.6;
  transition: .3s; }

img {
  width: 100%;
  vertical-align: bottom; }

.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s; }

.header {
  box-sizing: border-box;
  width: 100%;
  height: 75px;
  color: #777;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 0 20px;
  position: fixed;
  transition: .4s;
  z-index: 2; }
  @media screen and (max-width: 768px) {
    .header {
      height: 60px; } }
  .header.float-active {
    transition: .4s;
    background: rgba(255, 255, 255, 0.8); }
  .header .title img {
    width: 120px;
    height: 25px;
    vertical-align: initial; }

@media screen and (max-width: 768px) {
  .nav-menu {
    display: block;
    position: absolute;
    top: 0;
    right: -100%;
    background: rgba(255, 255, 255, 0.85);
    width: 100%;
    height: 100vh;
    padding-top: 50px;
    transition: .5s; }
    .nav-menu.active {
      transition: .5s;
      transform: translateX(-100%);
      z-index: 2; } }

.menu {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-family: "Geo", "Geo", sans-serif; }
  .menu-item {
    margin-right: 20px; }
  .menu-link {
    -webkit-font-smoothing: initial; }
  @media screen and (max-width: 768px) {
    .menu {
      font-size: 18px; } }
  @media screen and (max-width: 768px) {
    .menu {
      display: block;
      font-size: 30px; }
      .menu-item {
        margin-right: initial; }
      .menu-link {
        -webkit-font-smoothing: initial;
        display: block;
        padding: 10px;
        text-align: center; } }

.menu-trigger {
  display: none;
  transition: all .4s;
  box-sizing: border-box;
  position: relative;
  width: 40px;
  height: 32px;
  z-index: 3; }
  @media screen and (max-width: 768px) {
    .menu-trigger {
      display: inline-block; } }
  .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #777;
    border-radius: 4px; }
    .menu-trigger span:nth-of-type(1) {
      top: 0; }
    .menu-trigger span:nth-of-type(2) {
      top: 14px; }
    .menu-trigger span:nth-of-type(3) {
      bottom: 0; }
  .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(12px) rotate(-45deg); }
  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0; }
  .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-15px) rotate(45deg); }

.top {
  background-image: url("../images/top.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; }
  @media screen and (max-width: 414px) {
    .top {
      background-size: 230%; } }
  .top-text {
    margin-bottom: 60px; }
  .top-title {
    font-size: 55px;
    color: #fff;
    text-shadow: 0 0 20px rgba(227, 123, 137, 0.4), 0 0 50px rgba(0, 0, 0, 0.8); }
    @media screen and (max-width: 414px) {
      .top-title {
        font-size: 46px;
        text-align: center; } }
  .top br {
    display: none; }
    @media screen and (max-width: 414px) {
      .top br {
        display: block; } }
  .top a {
    position: absolute;
    bottom: 100px;
    z-index: 1;
    display: inline-block; }
    .top a span {
      position: absolute;
      top: 20px;
      width: 22px;
      height: 22px;
      margin-left: 16px;
      border-left: 1px solid #777;
      border-bottom: 1px solid #777;
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg);
      -webkit-animation: sdb 2s infinite;
      animation: sdb 2s infinite;
      opacity: 0;
      box-sizing: border-box; }
      @media screen and (max-width: 414px) {
        .top a span {
          margin-left: 12px; } }
      .top a span:nth-of-type(1) {
        -webkit-animation-delay: 0s;
        animation-delay: 0s; }
      .top a span:nth-of-type(2) {
        top: 36px;
        -webkit-animation-delay: .15s;
        animation-delay: .15s; }
      .top a span:nth-of-type(3) {
        top: 52px;
        -webkit-animation-delay: .30s;
        animation-delay: .30s; }

@-webkit-keyframes sdb {
  0% {
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes sdb {
  0% {
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.container {
  width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 80px;
  padding-bottom: 120px; }
  @media screen and (max-width: 1000px) {
    .container {
      width: 80%; } }
  @media screen and (max-width: 414px) {
    .container {
      width: 100%; } }
  .container-width {
    width: 100%; }
  .container-title {
    font-family: "Geo", "Geo", sans-serif;
    text-align: center;
    font-size: 38px;
    margin-bottom: 40px; }
    @media screen and (max-width: 414px) {
      .container-title {
        width: 70%;
        margin-left: auto;
        margin-right: auto; } }
  @media screen and (max-width: 414px) {
    .container-body {
      padding-left: 15px;
      padding-right: 15px; } }
  .container .about-detail {
    margin-bottom: 20px; }
  .container-ornament .container-title span {
    display: inline-block;
    background: #fff;
    padding: 0 10px;
    position: relative;
    z-index: 1; }
  .container-ornament .container-title-lightGray span {
    background: #f8f7fc; }
  .container .logo-w {
    text-align: center; }
    .container .logo-w img {
      width: 150px;
      height: 150px; }

#member .flex-wrap {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  flex-wrap: wrap; }
  @media screen and (max-width: 414px) {
    #member .flex-wrap {
      flex-direction: row;
      flex-wrap: wrap; } }

.profile {
  width: calc(25% - 15px); }
  @media screen and (max-width: 414px) {
    .profile {
      width: calc(50% -15px); } }
  @media screen and (max-width: 768px) {
    .profile {
      display: block;
      width: calc(50% - 15px);
      margin-right: 0; } }
  .profile-text {
    padding-left: 40px; }
    @media screen and (max-width: 768px) {
      .profile-text {
        padding-left: 0;
        padding-top: 30px; } }
    .profile-text-name {
      font-family: "Geo", "Geo", sans-serif;
      font-size: 18px;
      text-align: center;
      margin-top: 20px; }
      @media screen and (max-width: 768px) {
        .profile-text-name {
          padding-bottom: 20px;
          font-size: 14px; } }
    .profile-text p {
      padding-bottom: 10px; }
  .profile-pos {
    font-family: "Geo", "Geo", sans-serif;
    font-weight: bold; }
  .profile-detail {
    font-family: "Geo", "Geo", sans-serif;
    font-size: 14px; }
    @media screen and (max-width: 768px) {
      .profile-detail {
        font-size: 12px; } }
  .profile-image {
    text-align: center; }
    .profile-image img {
      border-radius: 50%;
      width: 150px;
      /* box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2); */
       }
      @media screen and (max-width: 414px) {
        .profile-image img {
          width: 100%; } }

.panel {
  box-sizing: border-box;
  background: #fff;
  position: relative;
  transition: .5s; }
  .panel-hover {
    display: inline-block;
    transition: .5s; }
    .panel-hover:hover {
      transform: scale(1.03);
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
      transition: .5s; }
  .panel-border {
    border-radius: 5px;
    border: 5px solid #f6f5f4; }
  .panel-head {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px; }
  .panel-description {
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px; }
    @media screen and (max-width: 768px) {
      .panel-description {
        min-height: 0px; } }
    .panel-description p {
      text-align: justify; }
  .panel-bottom {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    min-height: 70px;
    display: flex;
    justify-content: center;
    align-items: center; }
    @media screen and (max-width: 414px) {
      .panel-bottom {
        position: static; } }
    @media screen and (max-width: 768px) {
      .panel-bottom {
        position: static; } }
  .panel-center {
    text-align: center; }
  .panel-head {
    text-align: center; }
  .panel-active {
    border: 5px solid #e3a8b1; }
  .panel-body {
    overflow: hidden;
    position: relative; }
    .panel-body-works {
      text-align: center;
      padding: 20px 0; }
  .panel-mask {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    .panel-mask:hover {
      opacity: 1;
      padding-top: 120px; }
    .panel-mask-caption {
      text-align: center;
      color: #fff;
      width: 90%;
      margin: 0 auto;
      font-weight: bold; }
  .panel-font {
    width: 150px;
    height: 150px;
    font-size: 8rem; }
  .panel-group {
    margin-right: -15px;
    display: flex;
    justify-content: space-between; }
    @media screen and (max-width: 768px) {
      .panel-group {
        display: block; } }
    .panel-group-float {
      overflow: hidden; }
    .panel-group-flex {
      display: flex;
      flex-wrap: wrap; }
    .panel-group .panel {
      float: left;
      margin-right: 15px;
      margin-bottom: 40px;
      box-sizing: border-box; }
  .panel-works {
    width: calc(50% - 30px); }
    @media screen and (max-width: 768px) {
      .panel-works {
        width: calc(100% - 15px); } }
    @media screen and (max-width: 414px) {
      .panel-works {
        width: calc(100% - 15px); } }
  .panel-cource {
    width: calc(33.3% - 15px); }
    @media screen and (max-width: 768px) {
      .panel-cource {
        width: 100%;
        margin: 0 auto 15px auto;
        text-align: center; } }
    @media screen and (max-width: 414px) {
      .panel-cource {
        width: 100%;
        margin: 0 auto 15px auto; } }
  .panel-fee {
    font-size: 24px;
    font-weight: bold;
    min-height: 50px; }
  .panel-btnContainer {
    text-align: center;
    margin-top: 15px; }
  .panel-btn {
    display: block;
    box-sizing: border-box;
    margin: 0 auto;
    width: 80%; }
  .panel__site {
    display: block; }
  .panel__cam {
    border: solid 5px #ff7e5f;
    position: relative; }
    .panel__cam:before {
      position: absolute;
      display: block;
      content: '';
      left: -27px;
      top: -35px;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background-color: #ff7e5f;
      background-image: url("../images/meo-cam.png");
      background-size: cover;
      background-position: center; }

.works__label {
  font-size: 12px;
  font-weight: bold;
  display: inline-block;
  padding: 10px;
  background-color: #ff7e5f;
  color: #FFFF;
  margin-bottom: 10px; }

@media screen and (max-width: 414px) {
  .works__app {
    margin-bottom: 30px; } }

.works__app__name {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 20px;
  position: relative;
  padding: 10px 0; }

.works__app__wrap {
  display: flex;
  align-items: center;
  justify-content: space-around; }

.works__app__text {
  margin-bottom: 20px; }

.works__app__store {
  width: 100%; }

.works__app__link {
  display: block;
  text-align: center;
  width: 40%; }

.works__app__play {
  width: 44%; }

.news__text {
  text-align: center; }

.news-flex {
  display: flex;
  justify-content: center; }

.news__wrap {
  margin: 35px;
  padding: 30px;
  line-height: 1.8;
  width: 70%; }
  @media screen and (max-width: 414px) {
    .news__wrap {
      width: 100%;
      padding: 0;
      margin-right: 0;
      margin-left: 0; } }

.news__list {
  position: relative;
  margin: 0 0 10px;
  padding: 0 5px 20px 8em;
  border-bottom: 1px dotted #ccc; }

.news .date {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 6em;
  margin: 0;
  padding: 0 0 0 5px; }

.form {
  width: 100%; }
  .form-m {
    width: 50%;
    margin-left: auto;
    margin-right: auto; }
    @media screen and (max-width: 414px) {
      .form-m {
        width: 100%; } }

.input {
  display: block;
  margin-bottom: 10px;
  border: 3px solid #f6f5f4;
  border-radius: 4px;
  outline: none;
  height: 50px;
  font-size: 18px;
  color: #777;
  box-sizing: border-box; }
  .input-l {
    padding: 5px 10px;
    width: 100%; }
  .input:focus {
    border: 3px solid #777; }
  .input-textarea {
    height: 150px; }

::placeholder {
  color: #ccc; }

.company__map {
  text-align: center; }
  .company__map iframe {
    width: 80%; }
    @media screen and (max-width: 414px) {
      .company__map iframe {
        width: 100%; } }
    @media screen and (max-width: 768px) {
      .company__map iframe {
        width: 100%; } }

.company .features {
  width: 80%;
  margin: auto;
  margin-top: 20px; }
  @media screen and (max-width: 768px) {
    .company .features {
      width: 100%; } }

.btn {
  border: none;
  cursor: pointer;
  border-radius: 5px;
  box-sizing: border-box;
  transition: .3s;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); }
  .btn:hover {
    transform: translateY(-3px);
    transition: .3s;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); }
  .btn-corp {
    color: #fff;
    background: #ee9ca7;
    background: -webkit-linear-gradient(to right, #ff7e5f, #feb47b);
    background: linear-gradient(to right, #ff7e5f, #feb47b); }
  .btn-l {
    padding: 15px 30px;
    width: 100%;
    font-size: 18px; }
  .btn-m {
    padding: 15px 30px;
    width: 60%;
    font-size: 18px; }
  .btn-container {
    text-align: center;
    margin-top: 25px; }
  .btn-container2 {
    text-align: center;
    margin-top: 40px; }

.footer {
  background: #555;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px; }
  @media screen and (max-width: 414px) {
    .footer {
      font-size: 12px; } }

.bgColor-Gray {
  background: rgba(207, 212, 220, 0.25); }

.mb-xxl {
  margin-bottom: 30px; }

.ft-corp {
  font-weight: bold; }

.ft-l {
  font-size: 24px; }

.page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #ff7e5f;
  opacity: 0.6;
  border-radius: 50%; }
  .page_top a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none; }
    .page_top a::before {
      font-family: "Font Awesome 5 Free";
      content: '\f106';
      font-weight: 900;
      font-size: 25px;
      color: #fff;
      position: absolute;
      width: 25px;
      height: 25px;
      top: -12px;
      bottom: 0;
      right: 0;
      left: 0;
      margin: auto;
      text-align: center; }

.profile-name-img {
  border-radius: 0 !important;
}