@charset "UTF-8";
/* CSS Document */
/*!
 * ress.css • v1.1.1
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
  box-sizing: border-box;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
  width: 100%;
  height: 100%; }

*, ::before, ::after {
  box-sizing: inherit; }

::before, ::after {
  text-decoration: inherit;
  vertical-align: inherit; }

* {
  background-repeat: no-repeat;
  padding: 0;
  margin: 0; }

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block; }

small {
  font-size: 80%; }

[hidden], template {
  display: none; }

abbr[title] {
  border-bottom: 1px dotted;
  text-decoration: none; }

a {
  color: white;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  text-decoration: none; }

a:active, a:hover {
  outline-width: 0; }

b, strong {
  font-weight: bolder; }

input {
  border-radius: 0; }

button, [type="button"], [type="reset"], [type="submit"] [role="button"] {
  cursor: pointer; }

[disabled] {
  cursor: default; }

[type="number"] {
  width: auto; }

[type="search"] {
  -webkit-appearance: textfield; }

[type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

textarea {
  overflow: auto;
  resize: vertical; }

button, input, optgroup, select, textarea {
  font: inherit; }

optgroup {
  font-weight: bold; }

button {
  overflow: visible; }

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

button:-moz-focusring, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  outline: 1px dotted ButtonText; }

button, html [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button; }

button, select {
  text-transform: none; }

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
  color: inherit; }

select {
  -moz-appearance: none;
  -webkit-appearance: none; }

select::-ms-expand {
  display: none; }

select::-ms-value {
  color: currentColor; }

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal; }

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit; }

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px; }

img {
  border-style: none; }

progress {
  vertical-align: baseline; }

svg:not(:root) {
  overflow: hidden; }

::-moz-selection {
  background-color: #b3d4fc;
  color: black;
  text-shadow: none; }

::selection {
  background-color: #b3d4fc;
  color: black;
  text-shadow: none; }

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background: #03273a;
  color: white;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.4em;
  letter-spacing: 0.07em;
  width: 100%;
  height: 100%; }

img {
  vertical-align: middle; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: 1em; }

p {
  margin: 0; }

ol, ul {
  margin: 0;
  padding: 0; }

li {
  list-style: none; }

dl, dd {
  margin: 0; }

small {
  font-size: 100%; }

em {
  font-style: normal; }

::-moz-selection {
  background: #faef3a; }

::selection {
  background: #faef3a; }

/*
style
*/
img {
  width: 100%; }

.element {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s; }

.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0); }

.bg {
  width: 100%;
  height: 100%;
  background: url(../images/bg.jpg) right center;
  background-size: cover;
  position: fixed; }

.pc {
  display: none; }

.header {
  width: 100%;
  height: 80px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10; }
  .header .header__ttl {
    display: block;
    width: 70px;
    height: 70px;
    background: url(../../../images/logo_white.png) no-repeat;
    background-size: 100%;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
    top: 10px;
    left: 10px; }

.nav {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  z-index: 10;
  font-family: 'EB Garamond', serif; }
  .nav .nav__btn {
    display: block;
    padding: 12px 25px 12px 0;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 101;
    line-height: 80px; }
    .nav .nav__btn .nav__btnToggle,
    .nav .nav__btn .nav__btnToggle::before,
    .nav .nav__btn .nav__btnToggle::after {
      content: "";
      position: absolute;
      display: block;
      width: 24px;
      height: 1px;
      border-color: white;
      background: white;
      cursor: pointer;
      -webkit-transition: all 300ms ease-in-out;
      transition: all 300ms ease-in-out; }
    .nav .nav__btn .nav__btnToggle::before {
      top: -10px; }
    .nav .nav__btn .nav__btnToggle::after {
      top: 10px; }
  .nav .nav__btn.active .nav__btnToggle {
    background-color: transparent; }
  .nav .nav__btn.active .nav__btnToggle::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0;
    left: 0;
    border-color: white;
    background: white; }
  .nav .nav__btn.active .nav__btnToggle::after {
    top: 10px;
    left: 0;
    -webkit-transform: translatey(-10px) rotate(-45deg);
    -ms-transform: translatey(-10px) rotate(-45deg);
    transform: translatey(-10px) rotate(-45deg);
    border-color: white;
    background: white; }
  .nav .nav__wrap {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    text-align: center;
    background: url(../images/bg.jpg);
    transform: none; }
  .nav .nav__link {
    color: white;
    line-height: 40px; }
  .nav .nav__wrap.enter {
    display: block;
    background: url(../images/bg.jpg);
    opacity: 1;
    animation: fadeIn 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0s 1 normal;
    -webkit-animation: fadeIn 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0s 1 normal; }
  .nav .nav__wrap.leave {
    opacity: 0;
    animation: fadeIn 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0s 1 reverse;
    -webkit-animation: fadeIn 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0s 1 reverse; }
  .nav .nav__list {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  .nav .nav__item {
    display: block;
    margin: 10px 0; }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
main {
  overflow: hidden; }

.mainVisual {
  width: 100%;
  height: 100vh;
  position: relative;
  color: white; }
  .mainVisual .imgBox {
    position: absolute;
    z-index: 0;
    top: 10%;
    left: 8%;
    overflow: hidden;
    width: 92%;
    height: 63%;
    background: url(../images/visual_sp.png) no-repeat;
    background-size: cover;
    background-position: 60%; }
  .mainVisual .txtWrap {
    width: 105%;
    position: absolute;
    bottom: 10%;
    left: -5%; }
    .mainVisual .txtWrap .mainTtl {
      text-indent: 100%;
      white-space: nowrap;
      overflow: hidden; }
    .mainVisual .txtWrap .mainTtl {
      background: url(../images/title_sp.png) no-repeat;
      width: 100%;
      padding-top: 50%;
      background-size: 100%; }
  .mainVisual .subTxtWrap {
    position: absolute;
    left: 5%;
    bottom: 3%;
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    line-height: 2em;
    letter-spacing: .1em; }
  .mainVisual .scrolldown {
    position: absolute;
    right: 10px;
    bottom: 0;
    writing-mode: vertical-lr;
    padding-bottom: 70px; }
    .mainVisual .scrolldown::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 1px;
      height: 60px;
      background: #fff;
      animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite; }
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0; }
  35% {
    transform: scale(1, 1);
    transform-origin: 0 0; }
  35.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%; }
  70%, 100% {
    transform: scale(1, 0);
    transform-origin: 0 100%; } }
section {
  margin: 120px 0 180px; }

.heading {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  margin: 0 auto; }

.about .heading {
  margin-left: 5%;
  width: 247px;
  height: 168px;
  background: url(../images/about_ttl_sp.png) no-repeat;
  background-size: 100%; }

.feature .heading {
  width: 254px;
  height: 21px;
  background: url(../images/feature_ttl.png) no-repeat;
  background-size: 100%; }

.info .heading {
  width: 195px;
  background: url(../images/info_ttl.png) no-repeat;
  background-size: 100%; }

.member .heading {
  width: 108px;
  height: 24px;
  background: url(../images/member_ttl.png) no-repeat;
  background-size: 100%; }

.about {
  position: relative; }
  .about::before {
    content: "";
    display: block;
    width: 332px;
    height: 367px;
    background: url(../images/about_02.png);
    background-size: 100%;
    position: absolute;
    top: -150px;
    right: -50px; }
  .about .about__txtWrap {
    margin: 40px 5% 60px;
    position: relative;
    z-index: 2; }
    .about .about__txtWrap p:nth-child(n+2) {
      margin-top: 20px; }
  .about .about__imgWrap {
    width: 97%;
    padding-top: 63%;
    background: url(../images/about_01.jpg) no-repeat;
    background-size: 100%;
    margin-top: -110px;
    position: relative;
    z-index: 0; }

.feature {
  position: relative; }
  .feature::before {
    content: "";
    display: block;
    width: 234px;
    height: 102px;
    background: url(../images/feature_01.png);
    background-size: 100%;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translate(-50%, 0); }
  .feature .feature__list {
    margin-top: 60px; }
    .feature .feature__list .feature__item:nth-child(n+2) {
      margin-top: 60px; }
    .feature .feature__list .feature__item .feature__txtWrap {
      width: 85%;
      margin-left: 10%;
      line-height: 2em;
      position: relative; }
      .feature .feature__list .feature__item .feature__txtWrap::before {
        content: "";
        display: block;
        width: 1px;
        height: 150%;
        background: #a5beca;
        position: absolute;
        top: 0;
        left: -5%; }
      .feature .feature__list .feature__item .feature__txtWrap .feature__ttl {
        font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
        font-size: 2.2rem;
        font-weight: normal;
        font-style: italic; }
      .feature .feature__list .feature__item .feature__txtWrap p {
        margin-top: 20px; }
    .feature .feature__list .feature__item .feature__imgWrap {
      width: 98%;
      margin: 20px 0 0 2%; }

.info {
  position: relative; }
  .info::before {
    content: "";
    display: block;
    width: 352px;
    height: 235px;
    background: url(../images/info_01.png);
    background-size: 100%;
    position: absolute;
    top: -80px;
    right: -50px; }
  .info .info__list {
    width: 96%;
    margin: 60px auto 40px;
    border: 2px solid #a5beca; }
    .info .info__list .info__item:nth-child(n+2) {
      border-top: 2px solid #a5beca; }
    .info .info__list .info__item * {
      padding: 5%;
      font-weight: bold;
      font-size: 1.6rem; }
    .info .info__list .info__item dt {
      border-bottom: 1px solid #78909c; }
    .info .info__list .info__item span,
    .info .info__list .info__item .add {
      padding: 0;
      font-weight: normal;
      font-size: 1.4rem;
      line-height: 2em; }
    .info .info__list .info__item .add {
      margin-top: 20px;
      display: block; }
  .info .addInfo {
    width: 90%;
    margin: 0 auto;
    font-size: 1.4rem;
    line-height: 2em; }
    .info .addInfo p:nth-child(n+2) {
      margin-top: 20px; }
  .info .btn {
    display: block;
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    background: #0eb2cd;
    background: -webkit-linear-gradient(-45deg, #1bb5b3 0%, #b15ea2 100%);
    background: linear-gradient(135deg, #1bb5b3 0%, #b15ea2 100%);
    width: 80%;
    line-height: 60px;
    margin: 40px auto 0;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.16) 0 3px 6px; }

.member {
  width: 90%;
  margin: 0 auto; }
  .member .member__list {
    margin-top: 60px; }
  .member .member__item .ttl {
    font-size: 1.8rem;
    margin-top: 40px; }
    .member .member__item .ttl span {
      font-size: 1.4rem;
      margin-left: 10px; }
  .member .member__item .copy {
    font-size: 1.6rem;
    margin-top: 10px; }
  .member .member__item p {
    margin-top: 20px;
    font-size: 1.3rem;
    line-height: 2em; }
  .member .member__item:nth-child(n+2) {
    margin-top: 80px; }

.footer {
  text-align: center;
  position: relative;
  margin-top: 120px;
  padding: 60px 0 40px; }
  .footer::before {
    content: "";
    display: block;
    width: 90%;
    height: 1px;
    background: #546e7a;
    position: absolute;
    top: 0;
    left: 5%; }
  .footer .footer__logo {
    display: block;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    width: 100px;
    height: 100px;
    margin: 3rem auto 2rem;
    background: url(../../../images/logo_white.png);
    background-size: contain; }
  .footer .menu__item {
    display: inline-block; }
    .footer .menu__item a {
      display: block;
      text-indent: 100%;
      white-space: nowrap;
      overflow: hidden;
      width: 2.2rem;
      height: 2.2rem;
      margin: 1.5rem;
      background: url(../images/ico_fb.png) no-repeat center center;
      background-size: contain; }
    .footer .menu__item .ig {
      background-image: url(../images/ico_ig.png); }
    .footer .menu__item .yt {
      background-image: url(../images/ico_yt.png); }
  .footer .footer__copyright {
    margin-top: 3rem;
    font-size: 1.2rem; }

@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem; }

  .sp {
    display: none; }

  .pc {
    display: block; }

  .header .header__ttl {
    width: 120px;
    height: 120px;
    background-size: 100%;
    top: 30px;
    left: 5%; }

  .nav {
    font-size: 2rem;
    height: 80px; }
    .nav .nav__btn {
      right: 30px; }

  .mainVisual {
    min-height: 600px; }
    .mainVisual .pc {
      display: inline-block; }
    .mainVisual .imgBox {
      width: 80%;
      height: 80%;
      top: 5%;
      left: 20%;
      background: url(../images/visual.png) no-repeat;
      background-size: 100%;
      background-position: center; }
    .mainVisual .txtWrap {
      bottom: 0;
      left: 3%; }
      .mainVisual .txtWrap .mainTtl {
        width: 70%;
        padding-top: 26%;
        background: url(../images/title.png) no-repeat;
        background-size: 100%; }
    .mainVisual .subTxtWrap {
      font-size: 2.2rem;
      left: 6%;
      bottom: 5%; }
    .mainVisual .scrolldown {
      right: 3%; }

  section {
    margin-bottom: 240px; }

  .about::before {
    width: 415px;
    padding-top: 460px;
    top: -280px;
    right: -30px; }
  .about .about__inr {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; }
    .about .about__inr .about__headingWrap {
      width: 45%;
      margin-right: 5%; }
    .about .about__inr .heading {
      width: 90%;
      padding-top: 27%;
      margin-top: 2%;
      background: url(../images/about_ttl.png) no-repeat;
      background-size: 100%; }
    .about .about__inr .about__txtWrap {
      width: 50%;
      margin: 0;
      padding: 0; }
  .about .about__imgWrap {
    width: 60%;
    padding-top: 30%;
    background-size: 100%;
    background-position: bottom;
    margin-top: -360px; }

  .feature .heading {
    width: 363px;
    height: 30px; }

  .info .heading {
    width: 244px;
    height: 30px; }

  .member .heading {
    width: 136px;
    height: 30px; }

  .feature::before {
    width: 391px;
    padding-top: 171px; }
  .feature .feature__list {
    margin-top: 120px; }
    .feature .feature__list .feature__item {
      display: flex;
      align-items: center; }
      .feature .feature__list .feature__item:nth-child(n+2) {
        margin: 0; }
      .feature .feature__list .feature__item .feature__txtWrap {
        width: 43%;
        margin-left: 7%; }
        .feature .feature__list .feature__item .feature__txtWrap::before {
          display: none; }
        .feature .feature__list .feature__item .feature__txtWrap .feature__ttl {
          width: 240px;
          padding-top: 23px; }
        .feature .feature__list .feature__item .feature__txtWrap p {
          position: relative;
          margin-top: 60px; }
          .feature .feature__list .feature__item .feature__txtWrap p::before {
            content: "";
            display: block;
            width: 120%;
            height: 1px;
            background: #a5beca;
            position: absolute;
            left: 0;
            top: -30px; }
      .feature .feature__list .feature__item:nth-child(2n) {
        flex-direction: row-reverse; }
        .feature .feature__list .feature__item:nth-child(2n) .feature__txtWrap {
          width: 40%;
          margin: 0 5% 0 5%; }
          .feature .feature__list .feature__item:nth-child(2n) .feature__txtWrap p::before {
            left: inherit;
            right: 0; }
      .feature .feature__list .feature__item .feature__imgWrap {
        width: 50%;
        margin: 0; }

  .info::before {
    width: 441px;
    height: 295px;
    right: 3%; }
  .info .info__list {
    width: 80%;
    margin: 80px auto 60px; }
    .info .info__list .info__item {
      display: flex; }
      .info .info__list .info__item * {
        padding: 3%; }
      .info .info__list .info__item dt {
        width: 20%;
        border-top: none;
        border-right: 1px solid #78909c; }
      .info .info__list .info__item dd {
        width: 80%; }
      .info .info__list .info__item .add {
        margin-top: 10px; }
  .info .addInfo {
    width: 70%;
    font-size: 1.5rem; }
    .info .addInfo p:nth-child(n+2) {
      margin-top: 5px; }
  .info .btn {
    width: 400px;
    line-height: 80px;
    border-radius: 40px;
    margin-top: 60px; }

  .member .member__list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 80px; }
    .member .member__list .member__item {
      width: 47%;
      display: flex; }
      .member .member__list .member__item:nth-child(2n) {
        margin-left: 6%; }
      .member .member__list .member__item:nth-child(2) {
        margin-top: 0; }
      .member .member__list .member__item .member__imgWrap {
        width: 30%; }
      .member .member__list .member__item .member__txtWrap {
        width: 65%;
        margin-left: 5%; }
        .member .member__list .member__item .member__txtWrap .ttl {
          margin-top: 0; }
          .member .member__list .member__item .member__txtWrap .ttl span {
            margin-left: 20px; }

  .footer .footer__logo {
    width: 200px;
    height: 200px; }
  .footer .menu {
    margin-top: 40px; }
  .footer .menu__item a {
    width: 3rem;
    height: 3rem; } }

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