/* ==========================================================================
  Reset
  ========================================================================== */
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, dialog, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
  vertical-align: baseline;
}

article, aside, dialog, figure, footer, header, hgroup, nav, section {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

img {
  font-size: 0;
  line-height: 0;
}

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

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  font-weight: bold;
  font-style: italic;
  color: #000;
}

del {
  text-decoration: line-through;
}

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

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

fieldset, img {
  line-height: 0;
  vertical-align: top;
}

hr {
  display: none;
}

input, select {
  vertical-align: middle;
}

html {
  overflow-y: scroll;
  *zoom: 1;
  /* firefox */
}

* {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
}

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

ul, li {
  list-style: none;
}

b {
  font-weight: bold;
}

iframe {
  border: none;
  outline: none;
}

/* ==========================================================================
  Base
  ========================================================================== */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  background: #fff;
}

body {
  color: #000;
  font-size: 1.6em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4em;
  }
}

img {
  width: 100%;
  height: auto;
}

::selection {
  background: #666;
  color: #fff;
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

a {
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}
a:hover img {
  opacity: 0.8;
}

@media screen and (min-width: 769px) {
  a:hover, a img {
    transition: 0.2s linear;
  }
}
h1, h2, h3, h4, h5, h6, strong {
  font-weight: bold;
}

/* ==========================================================================
  Layout
  ========================================================================== */
.l-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  background: #fff;
}

.l-section {
  position: relative;
}

.l-inner {
  position: relative;
  width: 95%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-inner {
    width: 100%;
  }
}

.l-flex {
  display: flex;
  flex-wrap: wrap;
}
.l-flex-aligncenter {
  align-items: center;
}
.l-flex-justcenter {
  justify-content: center;
}
.l-flex-justbetween {
  justify-content: space-between;
}

/* ==========================================================================
  Animation
  ========================================================================== */
.anim-fadeout {
  animation: fadeIn 0.2s 0.2s both ease-out;
}

@keyframes fadeIn {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    transform: translate(0, 0);
  }
}
.anim-fadein {
  opacity: 0;
}

.anim-fadein.is-show {
  animation: fadeIn 0.8s 0.2s both ease-out;
}

@keyframes fadeIn {
  0% {
    transform: translate(0, 30px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.anim-slidein-l {
  opacity: 0;
}

.anim-slidein-l.is-show {
  animation: slideInL 0.8s 0.2s both ease-out;
}

@keyframes slideInL {
  0% {
    transform: translate(-10vw, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.anim-slidein-r {
  opacity: 0;
}

.anim-slidein-r.is-show {
  animation: slideInR 0.8s 0.2s both ease-out;
}

@keyframes slideInR {
  0% {
    transform: translate(10vw, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
/* ==========================================================================
  Top Page
  ========================================================================== */
.l-inner {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}

.btn-wrap {
  padding: 4.5% 0;
  text-align: center;
}
.btn-wrap a {
  display: block;
  margin: 0 auto;
  width: 80%;
  max-width: 520px;
}
.btn-wrap p {
  margin-top: 10px;
}

.kv {
  background: url(../images/kv-bg.png) center;
  background-size: cover;
  background-repeat: no-repeat;
}
.kv .top-logo {
  width: 40%;
  float: right;
  display: block;
  padding: 10px 20px 0 0;
}
.kv ul {
  display: flex;
  justify-content: space-between;
  padding: 0 0 5%;
}
.kv ul li {
  width: 40%;
  margin: 0 auto;
}
.kv h1 {
  position: relative;
}
.kv h1 .overlink {
  position: absolute;
  bottom: 0;
  width: 50%;
  height: 60%;
}
.kv h1 .overlink-sukoyaka {
  left: 0;
}
.kv h1 .overlink-dha {
  right: 0;
}

.concept .concept-txt {
  padding-bottom: 20px;
}

.sukoyaka {
  background: url(../images/sukoyaka-bg.jpg);
  background-size: contain;
  background-repeat: repeat-y;
  padding-bottom: 40px;
}

.dha {
  background: url(../images/dha-bg.jpg);
  background-size: contain;
  background-repeat: repeat-y;
  padding-bottom: 30px;
}

.sukoyaka .tittle img,
.dha .tittle img {
  margin-top: -30px;
}
.sukoyaka .commets,
.dha .commets {
  margin-top: 30px;
}

.step {
  background-color: #e3ecb5;
}

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