@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* ----------------------------
      layout
---------------------------- */
html {
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: inline-block;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

a:link,
a:visited {
  text-decoration: none;
}

/* ----------------------------
      header - global
---------------------------- */
.header {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 50%;
  max-width: 750px;
  transform: translateX(-50%);
  z-index: 10;
}

.header h1 {
  width: 140px;
  text-align: center;
  padding: 0 10px;
}

.header .logo-link {
  display: inline-block;
  text-align: center;
}

.header .others {
  width: calc(100% - 140px);
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header .sns {
  width: 40px;
  height: auto;
  margin-right: 15px;
}

.header .sns svg {
  width: 100%;
  height: auto;
}

.menu-btn {
  width: 40px;
  height: 40px;
  position: relative;
  margin-right: 15px;
  z-index: 10;
  border-radius: 50%;
}

.menu-btn span {
  display: block;
  width: 60%;
  height: 2px;
  border-radius: 2px;
  position: absolute;
  top: calc(50% - 1px);
  left: 20%;
  opacity: 1;
  transition: opacity .3s;
}

.menu-btn:before, .menu-btn:after {
  content: "";
  width: 60%;
  height: 2px;
  border-radius: 2px;
  position: absolute;
  left: 20%;
  transition: all .6s;
}

.menu-btn:before {
  top: 11px;
  transform-origin: top left;
}

.menu-btn:after {
  bottom: 11px;
  transform-origin: bottom left;
}

.menu-btn.is--open span {
  opacity: 0;
}

.menu-btn.is--open:before {
  top: 11px;
  left: 30%;
  transform: rotate(45deg);
}

.menu-btn.is--open:after {
  bottom: 11px;
  left: 30%;
  transform: rotate(-45deg);
}

/* ----------------------------
      nav - global
---------------------------- */
.nav {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  opacity: 0;
  z-index: 5;
}

.nav-list {
  width: 100%;
  height: 100%;
  padding: 120px 20px;
  transition: all .6s ease;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.nav-list__item {
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
}

.nav-list__item__link {
  display: inline-block;
  font-weight: bold;
  font-size: 26px;
  font-weight: 600;
}

.nav-list.is--open {
  opacity: 1;
}

.nav.is--open {
  opacity: 1;
  transform: translateY(0);
  transition: transform .1s, opacity .6s .1s;
  position: fixed;
}

@media screen and (max-width: 768px) {
  .nav {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-100%) translateX(0);
  }
  .nav-list {
    width: 100%;
    height: 100vh;
    padding: 80px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .nav-list__item {
    width: 100%;
    margin-bottom: 25px;
  }
  .nav-list__item__link {
    font-size: 22px;
  }
  .nav.is--open {
    transform: translateY(0) translateX(0);
  }
}

/* ----------------------------
      rules
---------------------------- */
.btn-rules {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 220px;
  width: 100%;
  margin: 0 auto 30px;
  line-height: 50px;
  font-size: 20px;
  font-weight: bold;
  padding: 0 10px;
  border-radius: 25px;
  position: relative;
}

.btn-rules span {
  padding-right: 10px;
  display: inline-block;
}

.btn-rules:after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  right: 35px;
  top: calc(50% - 9px);
  transform: rotate(45deg);
}

.btn-rules.is--open:after {
  transform: rotate(-135deg);
  top: calc(50% - 2px);
}

.rules-list {
  text-align: left;
  font-family: 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  display: none;
}

.rules-list__item {
  margin-bottom: 40px;
}

.rules-list__item:first-child .rules-list__item-name {
  margin-top: 0;
}

.rules-list__item-name {
  text-align: center;
  margin: 15px auto 20px;
}

.rules-list__item-name span {
  display: block;
  border-radius: 30px;
  padding: 10px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
}

.rules-list__item-text {
  font-size: 14px;
  line-height: 1.5;
  font-weight: normal;
}

.rules-list .text {
  margin-bottom: 1.2em;
  word-break: break-all;
}

.rules-list .title {
  width: 100%;
  max-width: 100%;
  font-size: 16px;
  padding: 0 0 5px;
}

.rules-list .note {
  display: block;
  font-size: 11px;
  padding: 5px 0;
}

.rules-list .num {
  padding-left: 2.5em;
  font-size: 12px;
  margin-bottom: 1.5em;
}

.rules-list .num li {
  list-style: decimal;
}

/* ----------------------------
      modal
---------------------------- */
.js--modal {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 220px;
  width: 100%;
  margin: 0 auto 20px;
  line-height: 50px;
  font-size: 20px;
  font-weight: bold;
  padding: 0 10px;
  border-radius: 25px;
  position: relative;
}

.js--modal span {
  padding-right: 15px;
  display: inline-block;
}

.js--modal:after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  right: 24px;
  top: calc(50% - 7px);
  transform: rotate(45deg);
}

.modal {
  max-width: 750px;
  width: 94%;
  position: fixed;
  top: 80px;
  background: #ebf6f5;
  border: 3px solid #fff;
  margin: 0 auto;
  text-align: center;
  display: none;
  z-index: 2;
  color: #000;
}

.modal-close {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 15px;
  right: 3%;
}

.modal-close:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #666;
  position: absolute;
  top: 25px;
  left: 0;
  transform: rotate(-45deg);
}

.modal-close:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #666;
  position: absolute;
  top: 25px;
  left: 0;
  transform: rotate(45deg);
}

.modal-inner {
  padding: 30px 4%;
  width: 100%;
  max-height: calc(100vh - 90px);
  overflow-y: scroll;
}

.modal-logo {
  text-align: center;
}

.modal-logo img {
  max-width: 240px;
  width: 40%;
}

.modal-title {
  font-size: 20px;
  line-height: 1.4;
  margin: 30px auto 20px;
  letter-spacing: -1px;
  margin-bottom: 1em;
}

.modal-text {
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
}

.modal-img {
  margin: 15px auto 10px;
}

.modal-img img {
  max-width: 450px;
  width: 95%;
}

.modal-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 1;
}

.js--modal {
  cursor: pointer;
}

/* ----------------------------
      header
---------------------------- */
.header .sns svg {
  fill: #fff;
}

.menu-btn {
  background: #fff;
}

.menu-btn span {
  background: #112c79;
}

.menu-btn:before, .menu-btn:after {
  background: #112c79;
}

/* ----------------------------
      footer
---------------------------- */
.footer {
  color: #fff;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  padding: 30px 0 0;
  margin-top: 80px;
}

.footer .copy {
  background: #000;
  padding: 10px;
}

.footer small {
  display: block;
  text-align: center;
  font-size: 11px;
  line-height: 2.6;
}

.footer-logo {
  width: 30%;
  margin: 0 auto 15px;
  max-width: 150px;
}

.footer-text {
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 30px;
}

.footer-link {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
  padding: 0 3%;
}

.footer-link__item a {
  padding: 0 10px;
  font-size: 12px;
}

.footer-link__item:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.6);
}

/* ----------------------------
      nav
---------------------------- */
.nav-list {
  background: rgba(17, 44, 121, 0.92);
}

.nav-list__item__link {
  color: #fff;
  font-size: 20px;
}

/* ----------------------------
      main
---------------------------- */
body {
  font-family: "Sawarabi Gothic";
  position: relative;
  color: #fff;
}

.container {
  width: 100%;
  margin: 0 auto;
  background: url(../img/top/bg_body.gif) top left repeat;
  background-size: auto;
}

.main {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding-top: 80px;
  overflow: hidden;
  text-align: center;
}

.hero {
  position: relative;
}

.hero-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform-origin: top center;
  animation: hero_apple 3s 1.8s ease infinite;
  z-index: 1;
}

.hero-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  animation: hero_text .5s .7s ease forwards;
  text-align: center;
}

.hero-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  animation: hero_text .5s ease forwards;
  text-align: center;
}

.hero-apple {
  transform-origin: top center;
  animation: hero_apple 3s 1.8s ease infinite;
}

/**/
p span.small {
  font-size: 86%;
  padding-top: 5px;
}

p span.yellow {
  color: #faff2d;
}

section {
  padding: 60px 4% 0;
}

.title {
  max-width: 450px;
  width: 90%;
  margin: 0 auto 15px;
}

.title img {
  animation: huerotator 3s infinite alternate;
}

.title-ruby {
  font-size: 13px;
  padding: 10px 0 0;
  margin-bottom: 20px;
}

.text-fs12 {
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 1em;
  text-align: left;
}

.text-fs16 {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 1.5em;
}

.text-fs18 {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 1em;
}

.text-fs20 {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 1em;
}

.strong {
  display: block;
  font-weight: bold;
  font-style: normal;
  font-size: 135%;
  letter-spacing: -1px;
  line-height: 1.6;
  padding-top: 5px;
}

.t-left {
  text-align: left;
}

.bright {
  color: #c8ff32;
}

.read {
  padding-top: 25px;
  padding-right: 2%;
  padding-left: 2%;
}

.read-title {
  font-size: 19px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.6;
  letter-spacing: .05em;
}

/* about */
.about-inner {
  position: relative;
  background: rgba(0, 0, 0, 0.2);
  border: 2px solid #fff;
  padding: 30px 5% 50px;
}

.about .pin-1 {
  position: absolute;
  top: 20px;
  left: 20px;
}

.about .pin-2 {
  position: absolute;
  top: 20px;
  right: 20px;
}

.about .pin-3 {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.about .pin-4 {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.about-logo {
  max-width: 80%;
  margin: 0 auto 30px;
}

.about-we {
  max-width: 95%;
  margin: 0 auto 30px;
}

.about-balloon {
  max-width: 90%;
  margin: 0 auto 15px;
}

.about-more-link {
  display: block;
  max-width: 65%;
  margin: 0 auto;
  width: 400px;
}

.about .text-fs16 {
  margin-bottom: 10px;
}

/* vision */
.vision .text-fs16 {
  text-align: left;
}

/* why */
.why-list__item {
  position: relative;
}

.why-list__item:before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: calc(50% - 14px);
  width: 28px;
  height: 28px;
  background: url(../img/top/why_arrow.png) center center no-repeat;
  background-size: contain;
  transition: transform .2s;
}

.why-list__item.open:before {
  transform: rotate(90deg);
}

.why-list__contents {
  padding: 30px 0;
  border-bottom: 3px dashed rgba(0, 0, 0, 0.2);
}

.why-img {
  margin-bottom: 20px;
}

.why .text-fs16 {
  text-align: left;
}

/* target */
.target-list {
  width: 100%;
  max-width: 550px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 15px auto;
}

.target-list__item {
  width: 47.5%;
  margin-bottom: 15px;
}

/* performance */
.performance-list {
  margin: 20px auto;
  max-width: 650px;
}

.performance-list a {
  display: block;
  width: 100%;
  margin-bottom: 25px;
  overflow: hidden;
  transition: all .5s ease;
}

.performance-list a:hover {
  opacity: 0.92;
}

.performance-list a:hover img {
  transform: scale(1.08);
}

.performance-list img {
  transform: scale(1);
  transition: all .5s ease;
}

/* contact */
.contact {
  color: #fff;
}

.contact-label {
  width: 50%;
  margin: 25px auto 0;
  max-width: 270px;
}

.contact-mail {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: .05em;
}

.contact-time {
  font-size: 16px;
  line-height: 1.4;
}

.contact .follow-us {
  display: block;
  margin: 20px auto;
  width: 80%;
}

.page-top {
  position: fixed;
  bottom: 0;
  left: 50%;
  max-width: 750px;
  width: 100%;
  transform: translateX(-50%);
  text-align: right;
}

.btn-pagetop {
  position: absolute;
  bottom: -90px;
  right: 20px;
  width: 50px;
  height: auto;
}

@keyframes hero_text {
  0% {
    opacity: 0;
    transform: scale(1.2);
    filter: blur(30px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes hero_apple {
  0% {
    transform: rotate(0);
  }
  10% {
    transform: rotate(-4deg);
  }
  25% {
    transform: rotate(4deg);
  }
  35% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(0);
  }
}

/* display  */
@media screen and (min-width: 768px) {
  .is--sp {
    display: none;
  }
  .is--pc {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .is--sp {
    display: block;
  }
  .is--pc {
    display: none;
  }
  .inline {
    display: inline-block;
  }
}
