@charset "UTF-8";
/* --------------------------------
[SCSSについて注意]
・SMACSSでCSS設計
・/scss/styles.scss を /css/styles.css にコンパイルしてコーディングしているため、
  可能であればCSSを直接編集せずに、SCSS を編集＆コンパイルしてCSSを生成する
・または、CSSを直接編集した場合は、SCSS 内の記述も同様に編集する方法でも可
・もし、CSSのみ編集した形跡があった場合など、CSSとSCSSの保持ができなくなった場合はSCSS一式を削除する

[コーディングルール]
・基本classのみ使用し、idはアンカーやJSで使用
・class名、フォルダ名、ファイル名はハイフン(-）区切り
・メディアクエリーはPCファーストで、 @include max {} または @include min {} を使用
-------------------------------- */
/*
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;
}

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;
}

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

main {
  display: block;
}

html {
  font-size: 10px;
}

body {
  line-height: 1.5;
  font-family: HelveticaNeue, Helvetica, Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 1.3rem;
  color: #000;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
}
a {
  color: #000;
  text-decoration: none;
}
@media screen and (min-width: 993px) {
  a:hover {
    color: #000;
  }
}

img {
  vertical-align: bottom;
}

.l-sec {
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.l-sec-wrap {
  position: relative;
  z-index: 1;
  background-color: #fff;
}
@media screen and (max-width: 992px) {
  .l-sec {
    height: 100vh;
    min-height: 100vw;
  }
}

.u-over {
  transition: opacity 0.3s;
}
@media screen and (min-width: 993px) {
  .u-over:hover {
    opacity: 0.7;
  }
}

.u-inline {
  display: inline;
}

.u-inline-block {
  display: inline-block;
}

.u-block {
  display: block;
}

.u-table {
  display: table;
}

.u-table-cell {
  display: table-cell;
}

.u-txt-left {
  text-align: left;
}

.u-txt-center {
  text-align: center;
}

.u-txt-right {
  text-align: right;
}

.u-img-cover {
  display: block;
  height: 0;
  padding-top: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media screen and (max-width: 992px) {
  .u-pc {
    display: none !important;
  }
}
@media screen and (min-width: 993px) {
  .u-sp {
    display: none !important;
  }
}
.u-fade {
  opacity: 0;
  transition: all 1s;
}

.u-fade-move {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s;
}

.u-fade-next {
  opacity: 0;
  transition: all 1s;
}

.u-fade.is-fade {
  opacity: 1;
}

.u-fade-move.is-fade {
  opacity: 1;
  transform: translateY(0);
}

.u-fade-next.is-fade-next {
  opacity: 1;
}

.format a {
  color: #03c;
  text-decoration: none;
}
@media screen and (min-width: 993px) {
  .format a:hover {
    color: #69f;
  }
}
.format h2 {
  margin: 30px 0 20px;
  font-size: 24px;
  font-weight: bold;
}
.format h3 {
  margin: 30px 0 20px;
  font-size: 18px;
  font-weight: bold;
}
.format p, .format ul, .format ol, .format table {
  margin-bottom: 20px;
}
.format li {
  margin-bottom: 10px;
}
.format ul {
  list-style-type: disc;
  padding-left: 1.5em;
}
.format ol {
  list-style-type: decimal;
  padding-left: 1.5em;
}
.format hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #999;
}
.format table {
  width: 100%;
}
.format th {
  width: 150px;
  padding: 10px 20px;
  border: 1px solid #999;
  background-color: #eee;
}
.format td {
  padding: 10px 20px;
  border: 1px solid #999;
}

.conTtl {
  height: 100%;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.conPdf {
  display: flex;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 992px) {
  .conPdf {
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .conPdf {
    padding-top: 24%;
  }
}
.conPdf-inner {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 993px) {
  .conPdf-ttl, .conPdf-ttl-spmb {
    margin-bottom: 2.5vh;
    padding-top: 7.5vh;
  }
}
@media screen and (max-width: 992px) {
  .conPdf-ttl, .conPdf-ttl-spmb {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 992px) {
  .conPdf-ttl-spmb {
    margin-bottom: 150px;
    padding-top: 30px;
  }
}
.conPdf-dl {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 993px) {
  .conPdf-dl {
    margin-bottom: 5vh;
  }
}
@media screen and (max-width: 992px) {
  .conPdf-dl {
    margin-bottom: 20px;
  }
}
.conPdf-dl a {
  display: block;
  position: relative;
  background-color: #000;
}
.conPdf-dl a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #629b00;
  opacity: 0;
  transition: opacity 0.5s;
}
@media screen and (min-width: 993px) {
  .conPdf-dl a:hover:before {
    opacity: 1;
  }
}
.conPdf-dl a img {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 993px) {
  .conPdf-dl + .conPdf-dl {
    margin-top: -3.7vh;
  }
}
@media screen and (max-width: 992px) {
  .conPdf-dl + .conPdf-dl {
    margin-top: -10px;
  }
}
.conPdf-des, .conPdf-des-l {
  font-size: 13px;
  line-height: 1.27;
}
@media screen and (max-width: 992px) {
  .conPdf-des, .conPdf-des-l {
    font-size: 13px;
    letter-spacing: 0.1em;
    padding: 0 6vw;
  }
}
@media screen and (max-width: 992px) {
  .conPdf-des-l {
    text-align: left;
  }
}

@media screen and (min-width: 993px) {
  .conStep, .conStep-w, .conStep-re, .conStep-re-w {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
}
@media screen and (min-width: 993px) {
  .conStep-inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    width: 100%;
    max-width: 115vh;
  }
}
@media screen and (min-width: 993px) {
  .conStep-txts {
    width: 50%;
    padding-left: 1vh;
  }
}
@media screen and (max-width: 992px) {
  .conStep-txts {
    height: auto;
    padding-bottom: 27px;
  }
}
@media screen and (min-width: 993px) {
  .conStep-img {
    width: 50%;
  }
}
@media screen and (max-width: 992px) {
  .conStep-img {
    height: 100vh;
    min-height: 100vw;
    border-top: 1px solid #000;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (min-width: 993px) {
  .conStep-imgs, .conStep-imgs-re {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 993px) {
  .conStep-imgs-img {
    width: 50%;
  }
  .conStep-imgs-img:nth-child(1), .conStep-imgs-img:nth-child(2) {
    padding-bottom: 2vh;
  }
}
@media screen and (max-width: 992px) {
  .conStep-imgs-img {
    height: 100vh;
    min-height: 100vw;
    border-top: 1px solid #000;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (min-width: 993px) {
  .conStep-imgs-re {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 993px) {
  .conStep-imgs-re-img {
    display: flex;
    justify-content: flex-end;
  }
}
.conStep-ttl {
  padding-top: 1.5vh;
}
@media screen and (max-width: 992px) {
  .conStep-ttl {
    padding: 27px 0 0 25px;
  }
}
.conStep-txt1 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1em;
  line-height: 1.4;
  padding-top: 5px;
}
@media screen and (max-width: 992px) {
  .conStep-txt1 {
    padding: 5px 0 0 25px;
    font-size: 15px;
  }
}
.conStep-txt2 {
  font-size: 18px;
  line-height: 1.4;
}
@media screen and (max-width: 992px) {
  .conStep-txt2 {
    padding-left: 25px;
    font-size: 15px;
  }
}
.conStep-re .conStep-inner, .conStep-re-w .conStep-inner {
  flex-direction: row;
}
.conStep-re .conStep-txts, .conStep-re-w .conStep-txts {
  text-align: right;
}
@media screen and (min-width: 993px) {
  .conStep-re .conStep-txts, .conStep-re-w .conStep-txts {
    padding-left: 0;
    padding-right: 1vh;
  }
}
.conStep-re .conStep-img, .conStep-re-w .conStep-img {
  text-align: right;
}
@media screen and (max-width: 992px) {
  .conStep-re .conStep-ttl, .conStep-re-w .conStep-ttl {
    padding: 27px 25px 0 0;
  }
}
@media screen and (max-width: 992px) {
  .conStep-re .conStep-txt1, .conStep-re-w .conStep-txt1 {
    padding: 5px 25px 0 0;
  }
}
@media screen and (max-width: 992px) {
  .conStep-re .conStep-txt2, .conStep-re-w .conStep-txt2 {
    padding-left: 0;
    padding-right: 25px;
  }
}
@media screen and (min-width: 993px) {
  .conStep-re-w .conStep-inner {
    max-width: 128vh;
  }
}
@media screen and (min-width: 993px) {
  .conStep-re-w .conStep-txts {
    padding-right: 3vh;
  }
}
@media screen and (min-width: 993px) {
  .conStep-w .conStep-inner {
    max-width: 128vh;
  }
}

.noiseCanvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.p-kv, .p-kv-first {
  color: #fff;
  background-color: #000;
}
.p-kv-wrap {
  position: relative;
}
.p-kv-movie {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.p-kv-movie-wrap {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.p-kv-movie-wrap:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
@media (aspect-ratio: 3/2), (min-aspect-ratio: 3/2) {
  .p-kv-movie {
    width: 100vw;
    height: 66.66vw;
  }
}
@media (max-aspect-ratio: 3/2) {
  .p-kv-movie {
    width: 150vh;
    height: 100vh;
  }
}
.p-kv-movie iframe {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.p-kv-lang {
  position: absolute;
  left: 40px;
  top: 52px;
  z-index: 1;
  display: flex;
}
@media screen and (max-width: 992px) {
  .p-kv-lang {
    left: 20px;
    top: 50px;
  }
}
.p-kv-lang p a {
  position: relative;
  display: block;
  padding: 0.6vw;
}
.p-kv-lang p a.is-cr:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 0.3vw;
  width: 100%;
  background-color: #f9a901;
}
.p-kv-lang p a img {
  display: block;
}
.p-kv-tnf {
  position: absolute;
  right: 50px;
  top: 50px;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  .p-kv-tnf {
    right: 28px;
    top: 42px;
  }
}
.p-kv-ttl {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}
.p-kv-lead {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  line-height: 1.6;
}
@media screen and (max-width: 576px) {
  .p-kv-lead {
    font-size: 3.5vw;
  }
}
.p-kv-txt1 {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.p-kv-txt2 {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.p-lets {
  background-color: #f9a901;
  text-align: center;
}
@media screen and (min-width: 993px) {
  .p-lets {
    height: 231vh;
  }
}
@media screen and (max-width: 992px) {
  .p-lets {
    height: 200vh;
    min-height: 200vw;
  }
}
@media screen and (min-width: 993px) {
  .p-lets-ttl {
    margin-bottom: 26.96vh;
    padding-top: 27.69vh;
  }
}
@media screen and (max-width: 992px) {
  .p-lets-ttl {
    height: 50%;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 992px) {
  .p-lets-txt {
    height: 50%;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.p-1st {
  background-color: #f580a8;
}
.p-1st-slider-bg {
  background-color: #e3b9ca;
}
.p-1st-slider-txt {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  color: #fff;
  font-size: 18px;
  text-align: center;
  padding-top: 40px;
}
@media screen and (max-width: 992px) {
  .p-1st-slider-txt {
    font-size: 14px;
    padding-top: 20px;
  }
}
.p-1st-slider span {
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 100vh;
  min-height: 100vw;
}

.p-2nd, .p-2nd-step, .p-2nd-step-re {
  background-color: #1a80ba;
}
@media screen and (max-width: 992px) {
  .p-2nd-step, .p-2nd-step-re {
    height: auto;
  }
}
.p-2nd-step-re {
  background-color: #7aacd3;
}
.p-2nd-img1 {
  height: 100%;
  background: url(/static/full/tnf/special/at_your_home/img/2nd/img1.jpg) no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 992px) {
  .p-2nd-img1 {
    background-image: url(/static/full/tnf/special/at_your_home/img/2nd/img1-sp.jpg);
  }
}
.p-2nd-img1-txt {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 18px;
  padding-top: 65px;
}
@media screen and (max-width: 992px) {
  .p-2nd-img1-txt {
    font-size: 15px;
    padding-top: 55px;
    line-height: 1.2;
  }
}
.p-2nd-img1-txt small {
  font-size: 13px;
}
@media screen and (max-width: 992px) {
  .p-2nd-img1-txt small {
    font-size: 10px;
  }
}
.p-2nd-img2 {
  height: 100%;
  background: url(/static/full/tnf/special/at_your_home/img/2nd/img2.jpg) no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 992px) {
  .p-2nd-img2 {
    background-image: url(/static/full/tnf/special/at_your_home/img/2nd/img2-sp.jpg);
  }
}
.p-2nd-img2-txt {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-72%);
  z-index: 2;
  width: 100%;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 992px) {
  .p-2nd-img2-txt {
    transform: translateY(-58%);
  }
}

.p-3rd, .p-3rd-step, .p-3rd-step-re {
  background-color: #f5a900;
}
@media screen and (max-width: 992px) {
  .p-3rd-step, .p-3rd-step-re {
    height: auto;
  }
}
.p-3rd-step-re {
  background-color: #f3bc42;
}
.p-3rd-img1 {
  height: 100%;
  background: url(/static/full/tnf/special/at_your_home/img/3rd/img1.jpg) no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 992px) {
  .p-3rd-img1 {
    background-image: url(/static/full/tnf/special/at_your_home/img/3rd/img1-sp.jpg);
  }
}
.p-3rd-img1-txt {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 100%;
  text-align: center;
}
.p-3rd-img2 {
  height: 100%;
  background: url(/static/full/tnf/special/at_your_home/img/3rd/img2.jpg) no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 992px) {
  .p-3rd-img2 {
    background-image: url(/static/full/tnf/special/at_your_home/img/3rd/img2-sp.jpg);
  }
}
.p-3rd-img2-txt {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 18px;
  padding-top: 65px;
}
@media screen and (max-width: 992px) {
  .p-3rd-img2-txt {
    font-size: 15px;
    padding-top: 55px;
    line-height: 1.2;
  }
}
.p-3rd-img2-txt small {
  font-size: 13px;
}
@media screen and (max-width: 992px) {
  .p-3rd-img2-txt small {
    font-size: 10px;
  }
}
.p-3rd-img3 {
  height: 100%;
  background: url(/static/full/tnf/special/at_your_home/img/3rd/img3.jpg) no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 992px) {
  .p-3rd-img3 {
    background-image: url(/static/full/tnf/special/at_your_home/img/3rd/img3-sp.jpg);
  }
}
.p-3rd-img3-txt {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 100%;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 992px) {
  .p-3rd-img3-txt {
    transform: translateY(-50%);
  }
}
.p-3rd-img4 {
  height: 100%;
  background: url(/static/full/tnf/special/at_your_home/img/3rd/img4.jpg) no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 992px) {
  .p-3rd-img4 {
    background-image: url(/static/full/tnf/special/at_your_home/img/3rd/img4-sp.jpg);
  }
}
.p-3rd-img4-txt {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 100%;
  text-align: center;
}
.p-3rd-img5 {
  height: 100%;
  background: url(/static/full/tnf/special/at_your_home/img/3rd/img5.jpg) no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 992px) {
  .p-3rd-img5 {
    background-image: url(/static/full/tnf/special/at_your_home/img/3rd/img5-sp.jpg);
  }
}

.p-lets2 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f9a901;
  text-align: center;
}
@media screen and (min-width: 993px) {
  .p-lets2-ttl {
    margin-bottom: 10vh;
    padding-top: 10vh;
  }
}
@media screen and (max-width: 992px) {
  .p-lets2-ttl {
    margin-bottom: 9vh;
    padding-top: 10vh;
  }
}
.p-last {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  text-align: center;
  height: 200vh;
}
.p-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
}
.p-footer-copyright {
  position: absolute;
  left: 0;
  bottom: 22px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .p-footer-copyright {
    bottom: 20px;
  }
}

/* --------------------------------
[サンプルコード]
-----------------------------------

  白文字が太いとき
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;


  画像文字を縮小してぼやけるとき
  backface-visibility;
  -webkit-backface-visibility;


  自動カーニング
  font-feature-settings : 'palt';


  両端揃え
  text-align: justify;
  text-justify: inter-ideograph;

  クリアーフィックス
  .clearfix {zoom: 1;}
  .clearfix:after {
    content: "";
    display: block;
    clear: both;
  }

  スマホ画像切り替え
  <picture>
    <source media="(max-width:767px)" srcset="image_sp.jpg">
    <img src="image.jpg" alt="">
  </picture>

  ダミー画像 GIF形式（39bytes）
  <img src="data:image/gif;base64,R0lGODlhAQABAGAAACH5BAEKAP8ALAAAAAABAAEAAAgEAP8FBAA7" alt="" height="1" width="1">

-------------------------------- */
