@charset "UTF-8";
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

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

a img {
  border: none; }

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

@font-face {
  font-family: "Portrait";
  font-weight: 600;
  src: url("../fonts/Portrait-Medium-Web.woff2") format("woff2"), url("../fonts/Portrait-Medium-Web.woff") format("woff"); }

@font-face {
  font-family: "Portrait";
  font-weight: 600;
  font-style: italic;
  src: url("../fonts/Portrait-MediumItalic-Web.woff2") format("woff2"), url("../fonts/Portrait-MediumItalic-Web.woff") format("woff"); }

@font-face {
  font-family: "Portrait";
  font-weight: 400;
  src: url("../fonts/Portrait-Regular-Web.woff2") format("woff2"), url("../fonts/Portrait-Regular-Web.woff") format("woff"); }

@font-face {
  font-family: "Portrait";
  font-weight: 400;
  font-style: italic;
  src: url("../fonts/Portrait-RegularItalic-Web.woff2") format("woff2"), url("../fonts/Portrait-RegularItalic-Web.woff") format("woff"); }

@font-face {
  font-family: "PortraitText";
  font-weight: 600;
  src: url("../fonts/PortraitText-Medium-Web.woff2") format("woff2"), url("../fonts/PortraitText-Medium-Web.woff") format("woff"); }

@font-face {
  font-family: "PortraitText";
  font-weight: 600;
  font-style: italic;
  src: url("../fonts/PortraitText-MediumItalic-Web.woff2") format("woff2"), url("../fonts/PortraitText-MediumItalic-Web.woff") format("woff"); }

@font-face {
  font-family: "PortraitText";
  font-weight: 400;
  src: url("../fonts/PortraitText-Regular-Web.woff2") format("woff2"), url("../fonts/PortraitText-Regular-Web.woff") format("woff"); }

@font-face {
  font-family: "PortraitText";
  font-weight: 400;
  font-style: italic;
  src: url("../fonts/PortraitText-RegularItalic-Web.woff2") format("woff2"), url("../fonts/PortraitText-RegularItalic-Web.woff") format("woff"); }

/**
 * !!! 変数の定義 !!!
 * 変数は作りすぎず、デザインコンポーネント、もしくはシンボルを元に作成する
 * またGoogle Font等の特殊なウェブフォントの場合、そのフォント名を定義してわかりやすくする
 */
/**
 * !!! ブレークポイント !!!
 */
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important; } }

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important; } }

/**
 * !!! browsersyncのアラートを非表示 !!!
 */
#__bs_notify__ {
  display: none !important; }

/**
 * !!! ページCSS基本設定 !!!
 * 基本的にこの箇所は操作しないようにする
 * ----------------ここから----------------
 */
html {
  font-size: 62.5%;
  font-family: "PortraitText", "A1明朝", "A1 Mincho", "A-OTF-A1MinchoStd", "EB Garamond", serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased; }

* {
  font-size: 14px;
  font-size: 1.4rem;
  box-sizing: border-box; }

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

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

input[type="text"],
input[type="email"],
input[type="number"] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none; }

button,
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box; }
  button::-webkit-search-decoration,
  input[type="submit"]::-webkit-search-decoration,
  input[type="button"]::-webkit-search-decoration {
    display: none; }
  button::focus,
  input[type="submit"]::focus,
  input[type="button"]::focus {
    outline-offset: -2px; }

.row {
  overflow: hidden;
  *zoom: 1; }

/**
 * ----------------ここまで----------------
 */
/**
 * !!! FlexBox Rule !!!
 * 都度scssを記載するのではなく、クラスで定義し、クラスの付け外しで管理すること。
 */
.flex-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between; }

/**
 * !!! Inner Rule !!!
 * 最初にデザインを確認し、存在するinnerパターンを作成すること
 * max-width指定のみだと、画面幅を縮小するときに余白が消えるため、paddingをつけること
 * 例) innerが1000pxであれば、
 *     max-width: 1060px;
 *     padding: 0 30px;
 */
.inner {
  max-width: 1280px;
  padding: 0 60px;
  margin: 0 auto; }
  @media only screen and (max-width: 767px) {
    .inner {
      padding: 0 25px; } }

.footer {
  background: #666260;
  color: #a09890;
  padding: 55px 0 77px;
  position: relative;
  z-index: 100; }
  @media only screen and (max-width: 767px) {
    .footer {
      padding: 23px 0 45px;
      z-index: 10; } }
  .footer .photoby {
    display: block;
    text-align: right;
    font-size: 10px;
    font-size: 1rem;
    letter-spacing: 0.02em; }
  .footer__box {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    margin: 280px 0 0; }
    @media only screen and (max-width: 767px) {
      .footer__box {
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-align-items: flex-start;
        align-items: flex-start;
        padding-left: 13px;
        margin: 208px 0 0; } }
    @media only screen and (max-width: 767px) {
      .footer__box .left {
        order: 2; } }
    .footer__box .left small {
      font-size: 10px;
      font-size: 1rem;
      letter-spacing: 0.06em;
      font-family: -apple-system, "BlinkMacSystemFont", Sans-Serif; }
      @media only screen and (max-width: 767px) {
        .footer__box .left small {
          font-size: 12px;
          font-size: 1.2rem; } }
    .footer__box .left ul {
      margin: 18px 0 42px; }
      @media only screen and (max-width: 767px) {
        .footer__box .left ul {
          margin: 24px 0 72px; } }
      .footer__box .left ul li a {
        font-size: 18px;
        font-size: 1.8rem;
        letter-spacing: 0.04em;
        line-height: 1.52;
        font-family: "Portrait", "A1明朝", "A1 Mincho", "A-OTF-A1MinchoStd", "EB Garamond", serif; }
        @media only screen and (max-width: 767px) {
          .footer__box .left ul li a {
            font-size: 21px;
            font-size: 2.1rem; } }
    .footer__box .left .copyright {
      font-size: 10px;
      font-size: 1rem;
      letter-spacing: 0.02em; }
    @media only screen and (max-width: 767px) {
      .footer__box .right {
        margin: 0 0 74px;
        order: 1; } }
    .footer__box .right .img {
      width: 112px; }
      @media only screen and (max-width: 767px) {
        .footer__box .right .img {
          width: 134px; } }

.main-catch {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; }
  .main-catch > span {
    position: fixed;
    z-index: 99;
    width: 100%;
    height: 100%;
    background: #d6d2ce;
    -webkit-transition: opacity 2s;
    -moz-transition: opacity 2s;
    -o-transition: opacity 2s;
    transition: opacity 2s;
    opacity: 1; }
    .main-catch > span.off {
      opacity: 0; }
  .main-catch > .black {
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0; }
  .main-catch__credit {
    color: #fff;
    font-size: 12px;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 101;
    width: 100%; }
    @media only screen and (max-width: 767px) {
      .main-catch__credit {
        display: none; } }
    .main-catch__credit p {
      position: relative; }
      .main-catch__credit p span {
        position: absolute;
        right: 0;
        top: 0; }
    .main-catch__credit span {
      -webkit-transition: all 1.4s;
      -moz-transition: all 1.4s;
      -o-transition: all 1.4s;
      transition: all 1.4s;
      opacity: 0; }
      .main-catch__credit span.on {
        opacity: 1; }
  .main-catch__box {
    padding-top: 80px;
    padding-left: 70px;
    height: 100%;
    position: relative;
    z-index: 101; }
    @media only screen and (max-width: 767px) {
      .main-catch__box {
        padding-top: 60px;
        padding-left: 60px; } }
    .main-catch__box.white .main-catch__box__brand--black {
      opacity: 0; }
    .main-catch__box.white .main-catch__box__brand--white {
      opacity: 1; }
    .main-catch__box.white > p {
      color: #fff; }
    .main-catch__box.white ul li a {
      color: #fff; }
    .main-catch__box.white > a img.b {
      opacity: 0; }
    .main-catch__box.white > a img.w {
      opacity: 1; }
    .main-catch__box.white + .main-catch__credit {
      color: #000; }
    .main-catch__box__brand {
      width: 112px;
      height: 112px;
      position: relative; }
      .main-catch__box__brand img {
        width: 112px;
        height: 112px;
        position: absolute;
        left: 0;
        top: 0;
        -webkit-transition: opacity 1.4s;
        -moz-transition: opacity 1.4s;
        -o-transition: opacity 1.4s;
        transition: opacity 1.4s; }
      .main-catch__box__brand--black {
        opacity: 1; }
      .main-catch__box__brand--white {
        opacity: 0; }
    .main-catch__box > p {
      margin-top: 80px;
      font-size: 12px;
      font-size: 1.2rem;
      letter-spacing: 0.1em;
      -webkit-transition: color 1.2s;
      -moz-transition: color 1.2s;
      -o-transition: color 1.2s;
      transition: color 1.2s;
      color: #000;
      font-family: -apple-system, "BlinkMacSystemFont", Sans-Serif; }
    .main-catch__box ul {
      padding-top: 15px; }
      .main-catch__box ul li {
        margin: 15px 0; }
        .main-catch__box ul li a {
          display: inline-block;
          font-family: "Portrait", "A1明朝", "A1 Mincho", "A-OTF-A1MinchoStd", "EB Garamond", serif;
          font-size: 18px;
          font-size: 1.8rem;
          letter-spacing: 0.1em;
          -webkit-transition: color 1.2s;
          -moz-transition: color 1.2s;
          -o-transition: color 1.2s;
          transition: color 1.2s;
          color: #000; }
    .main-catch__box > a {
      display: block;
      margin-top: 90px;
      width: 16px;
      height: 19px;
      position: relative; }
      .main-catch__box > a img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        -webkit-transition: opacity 1.4s;
        -moz-transition: opacity 1.4s;
        -o-transition: opacity 1.4s;
        transition: opacity 1.4s; }
        .main-catch__box > a img.b {
          opacity: 1; }
        .main-catch__box > a img.w {
          opacity: 0; }
  .main-catch.removegray .main-catch__box > p img:nth-child(1) {
    opacity: 1 !important; }
  .main-catch.removegray .main-catch__box > p img:nth-child(2) {
    opacity: 0 !important; }
  @media only screen and (min-width: 768px) {
    .main-catch.removegray[data-id="0"] .main-catch__box__brand--black, .main-catch.removegray[data-id="1"] .main-catch__box__brand--black, .main-catch.removegray[data-id="2"] .main-catch__box__brand--black, .main-catch.removegray[data-id="3"] .main-catch__box__brand--black {
      opacity: 0; }
    .main-catch.removegray[data-id="0"] .main-catch__box__brand--white, .main-catch.removegray[data-id="1"] .main-catch__box__brand--white, .main-catch.removegray[data-id="2"] .main-catch__box__brand--white, .main-catch.removegray[data-id="3"] .main-catch__box__brand--white {
      opacity: 1; }
    .main-catch.removegray[data-id="0"] .main-catch__box > p,
    .main-catch.removegray[data-id="0"] .main-catch__box ul li a, .main-catch.removegray[data-id="1"] .main-catch__box > p,
    .main-catch.removegray[data-id="1"] .main-catch__box ul li a, .main-catch.removegray[data-id="2"] .main-catch__box > p,
    .main-catch.removegray[data-id="2"] .main-catch__box ul li a, .main-catch.removegray[data-id="3"] .main-catch__box > p,
    .main-catch.removegray[data-id="3"] .main-catch__box ul li a {
      color: #fff; }
    .main-catch.removegray[data-id="0"] .main-catch__box > a img.w, .main-catch.removegray[data-id="1"] .main-catch__box > a img.w, .main-catch.removegray[data-id="2"] .main-catch__box > a img.w, .main-catch.removegray[data-id="3"] .main-catch__box > a img.w {
      opacity: 1; }
    .main-catch.removegray[data-id="0"] .main-catch__box > a img.b, .main-catch.removegray[data-id="1"] .main-catch__box > a img.b, .main-catch.removegray[data-id="2"] .main-catch__box > a img.b, .main-catch.removegray[data-id="3"] .main-catch__box > a img.b {
      opacity: 0; } }
  @media only screen and (max-width: 767px) {
    .main-catch.removegray[data-num="0"] .main-catch__box__brand--black, .main-catch.removegray[data-num="1"] .main-catch__box__brand--black, .main-catch.removegray[data-num="2"] .main-catch__box__brand--black, .main-catch.removegray[data-num="3"] .main-catch__box__brand--black, .main-catch.removegray[data-num="4"] .main-catch__box__brand--black, .main-catch.removegray[data-num="5"] .main-catch__box__brand--black, .main-catch.removegray[data-num="6"] .main-catch__box__brand--black, .main-catch.removegray[data-num="7"] .main-catch__box__brand--black, .main-catch.removegray[data-num="8"] .main-catch__box__brand--black {
      opacity: 0; }
    .main-catch.removegray[data-num="0"] .main-catch__box__brand--white, .main-catch.removegray[data-num="1"] .main-catch__box__brand--white, .main-catch.removegray[data-num="2"] .main-catch__box__brand--white, .main-catch.removegray[data-num="3"] .main-catch__box__brand--white, .main-catch.removegray[data-num="4"] .main-catch__box__brand--white, .main-catch.removegray[data-num="5"] .main-catch__box__brand--white, .main-catch.removegray[data-num="6"] .main-catch__box__brand--white, .main-catch.removegray[data-num="7"] .main-catch__box__brand--white, .main-catch.removegray[data-num="8"] .main-catch__box__brand--white {
      opacity: 1; }
    .main-catch.removegray[data-num="0"] .main-catch__box > p,
    .main-catch.removegray[data-num="0"] .main-catch__box ul li a, .main-catch.removegray[data-num="1"] .main-catch__box > p,
    .main-catch.removegray[data-num="1"] .main-catch__box ul li a, .main-catch.removegray[data-num="2"] .main-catch__box > p,
    .main-catch.removegray[data-num="2"] .main-catch__box ul li a, .main-catch.removegray[data-num="3"] .main-catch__box > p,
    .main-catch.removegray[data-num="3"] .main-catch__box ul li a, .main-catch.removegray[data-num="4"] .main-catch__box > p,
    .main-catch.removegray[data-num="4"] .main-catch__box ul li a, .main-catch.removegray[data-num="5"] .main-catch__box > p,
    .main-catch.removegray[data-num="5"] .main-catch__box ul li a, .main-catch.removegray[data-num="6"] .main-catch__box > p,
    .main-catch.removegray[data-num="6"] .main-catch__box ul li a, .main-catch.removegray[data-num="7"] .main-catch__box > p,
    .main-catch.removegray[data-num="7"] .main-catch__box ul li a, .main-catch.removegray[data-num="8"] .main-catch__box > p,
    .main-catch.removegray[data-num="8"] .main-catch__box ul li a {
      color: #fff; }
    .main-catch.removegray[data-num="0"] .main-catch__box > a img.w, .main-catch.removegray[data-num="1"] .main-catch__box > a img.w, .main-catch.removegray[data-num="2"] .main-catch__box > a img.w, .main-catch.removegray[data-num="3"] .main-catch__box > a img.w, .main-catch.removegray[data-num="4"] .main-catch__box > a img.w, .main-catch.removegray[data-num="5"] .main-catch__box > a img.w, .main-catch.removegray[data-num="6"] .main-catch__box > a img.w, .main-catch.removegray[data-num="7"] .main-catch__box > a img.w, .main-catch.removegray[data-num="8"] .main-catch__box > a img.w {
      opacity: 1; }
    .main-catch.removegray[data-num="0"] .main-catch__box > a img.b, .main-catch.removegray[data-num="1"] .main-catch__box > a img.b, .main-catch.removegray[data-num="2"] .main-catch__box > a img.b, .main-catch.removegray[data-num="3"] .main-catch__box > a img.b, .main-catch.removegray[data-num="4"] .main-catch__box > a img.b, .main-catch.removegray[data-num="5"] .main-catch__box > a img.b, .main-catch.removegray[data-num="6"] .main-catch__box > a img.b, .main-catch.removegray[data-num="7"] .main-catch__box > a img.b, .main-catch.removegray[data-num="8"] .main-catch__box > a img.b {
      opacity: 0; } }

.mainvisual {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: -1; }
  .mainvisual > div {
    height: 100%; }
    .mainvisual > div > div {
      height: 100%; }
      .mainvisual > div > div > div {
        height: 100%; }
        .mainvisual > div > div > div > div {
          height: 100%; }
          .mainvisual > div > div > div > div > div {
            height: 100%; }
            .mainvisual > div > div > div > div > div > div {
              height: 100%; }
              .mainvisual > div > div > div > div > div > div > div {
                height: 100%;
                background-size: cover; }
                .mainvisual > div > div > div > div > div > div > div > div {
                  height: 100%;
                  background-size: cover;
                  background-position: center;
                  background-repeat: no-repeat; }
  .mainvisual .flex-row {
    position: relative;
    z-index: 1; }
  .mainvisual .slider-whole {
    position: relative; }
    .mainvisual .slider-whole__slide01, .mainvisual .slider-whole__slide02 {
      width: 50%; }
    .mainvisual .slider-whole__slide03 {
      width: 100%;
      position: relative; }
      .mainvisual .slider-whole__slide03 span {
        position: absolute;
        bottom: 25px;
        right: 25px;
        font-size: 13px;
        font-size: 1.3rem;
        letter-spacing: 0.03em; }
        .mainvisual .slider-whole__slide03 span.w {
          color: #fff; }

.scroll-area {
  width: 100%;
  height: 125vh;
  z-index: -1; }

/**

 */
body.top .contents {
  position: relative;
  z-index: 1; }

body.top .read {
  padding: 155px 0 245px;
  background: #d5d1cd; }
  @media only screen and (max-width: 767px) {
    body.top .read {
      padding: 96px 0 20px; } }
  @media only screen and (min-width: 768px) {
    body.top .read {
      overflow: hidden; } }
  body.top .read__top {
    max-width: 960px;
    margin: 0 auto; }
    @media only screen and (max-width: 767px) {
      body.top .read__top {
        margin: 0 auto; } }
    body.top .read__top.is-active h1 {
      opacity: 1;
      -webkit-transform: translate(0, 0);
      -moz-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
      -o-transform: translate(0, 0);
      transform: translate(0, 0); }
    body.top .read__top.is-active p {
      opacity: 1;
      -webkit-transform: translate(0, 0);
      -moz-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
      -o-transform: translate(0, 0);
      transform: translate(0, 0); }
    body.top .read__top h1 {
      max-width: 800px;
      margin: 0 auto;
      transition: 0.8s;
      opacity: 0;
      -webkit-transform: translate(0, 40px);
      -moz-transform: translate(0, 40px);
      -ms-transform: translate(0, 40px);
      -o-transform: translate(0, 40px);
      transform: translate(0, 40px);
      font-family: "PortraitText", "A1明朝", "A1 Mincho", "A-OTF-A1MinchoStd", "EB Garamond", serif; }
      @media only screen and (max-width: 767px) {
        body.top .read__top h1 {
          padding-left: 50px; } }
      body.top .read__top h1 small {
        display: block;
        font-size: 18px;
        font-size: 1.8rem;
        letter-spacing: 0.04em;
        font-family: "Portrait", "A1明朝", "A1 Mincho", "A-OTF-A1MinchoStd", "EB Garamond", serif; }
        @media only screen and (max-width: 767px) {
          body.top .read__top h1 small {
            font-size: 21px;
            font-size: 2.1rem;
            line-height: 1.353; } }
      body.top .read__top h1 span {
        display: block;
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.04em;
        margin: 14px 0 0; }
        @media only screen and (max-width: 767px) {
          body.top .read__top h1 span {
            font-size: 19px;
            font-size: 1.9rem;
            line-height: 1.56; } }
    body.top .read__top p {
      max-width: 850px;
      margin: 75px 0 0;
      font-size: 13px;
      font-size: 1.3rem;
      line-height: 0.01em;
      line-height: 1.846;
      text-align: left;
      transition: 0.8s;
      opacity: 0;
      -webkit-transform: translate(0, 40px);
      -moz-transform: translate(0, 40px);
      -ms-transform: translate(0, 40px);
      -o-transform: translate(0, 40px);
      transform: translate(0, 40px);
      transition-delay: 0.6s; }
      @media only screen and (max-width: 767px) {
        body.top .read__top p {
          margin: 55px 0 0;
          font-size: 15px;
          font-size: 1.5rem; } }
    body.top .read__top .order-btn {
      width: 190px;
      height: 30px;
      border-top: 1px solid #000;
      border-bottom: 1px solid #000;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      align-items: center;
      -webkit-justify-content: center;
      justify-content: center;
      transition: 0.3s; }
      @media only screen and (min-width: 768px) {
        body.top .read__top .order-btn {
          padding-top: 2px; } }
      body.top .read__top .order-btn:nth-child(1) {
        width: 142px;
        margin-right: 55px; }
      body.top .read__top .order-btn:nth-child(2) {
        width: 282px; }
      @media only screen and (max-width: 767px) {
        body.top .read__top .order-btn {
          width: 100%;
          height: 37px; } }
      body.top .read__top .order-btn span {
        font-size: 13px;
        font-size: 1.3rem;
        letter-spacing: 0.05em;
        display: inline-block;
        margin-right: 10px; }
        @media only screen and (max-width: 767px) {
          body.top .read__top .order-btn span {
            font-size: 15px;
            font-size: 1.5rem;
            margin-right: 12px; } }
        body.top .read__top .order-btn span:before {
          content: "";
          width: 9px;
          height: 7px;
          display: inline-block;
          position: relative;
          top: -1px;
          margin-right: 13px;
          background: url(../images/arrow-right-blk.svg) center center/cover no-repeat; }
          @media only screen and (max-width: 767px) {
            body.top .read__top .order-btn span:before {
              width: 11px;
              height: 9px;
              margin-right: 14px; } }
      body.top .read__top .order-btn small {
        font-size: 11px;
        font-size: 1.1rem;
        letter-spacing: 0.03em; }
        @media only screen and (max-width: 767px) {
          body.top .read__top .order-btn small {
            font-size: 13px;
            font-size: 1.3rem; } }
      body.top .read__top .order-btn:hover {
        background: #000;
        color: #fff; }
        body.top .read__top .order-btn:hover span:before {
          background: url(../images/arrow-right.svg) center center/cover no-repeat; }
      body.top .read__top .order-btn--whole {
        display: block;
        font-size: 0;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        margin-top: 154px; }
        body.top .read__top .order-btn--whole + p {
          margin-top: 40px;
          font-size: 12px; }
        @media only screen and (max-width: 767px) {
          body.top .read__top .order-btn--whole {
            margin-top: 90px;
            display: block; }
            body.top .read__top .order-btn--whole > a {
              margin: 0 !important;
              width: 100% !important; }
              body.top .read__top .order-btn--whole > a:nth-child(1) {
                margin-top: 0 !important; }
              body.top .read__top .order-btn--whole > a:nth-child(2) {
                margin-top: 40px !important; }
            body.top .read__top .order-btn--whole > p {
              margin-bottom: 290px !important;
              font-size: 14px;
              line-height: 25px;
              margin-top: 68px; } }
  body.top .read__product {
    position: relative;
    width: 100%;
    transition: 0.8s;
    opacity: 0;
    -webkit-transform: translate(0, 60px);
    -moz-transform: translate(0, 60px);
    -ms-transform: translate(0, 60px);
    -o-transform: translate(0, 60px);
    transform: translate(0, 60px); }
    body.top .read__product.is-active {
      opacity: 1;
      -webkit-transform: translate(0, 0px);
      -moz-transform: translate(0, 0px);
      -ms-transform: translate(0, 0px);
      -o-transform: translate(0, 0px);
      transform: translate(0, 0px); }
    body.top .read__product:before {
      content: "";
      width: 100%;
      height: 490px;
      display: block;
      background: #d2d2d2;
      position: absolute;
      top: 0;
      left: 50%;
      -webkit-transform: translate(-50%, 0);
      -moz-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      -o-transform: translate(-50%, 0);
      transform: translate(-50%, 0); }
    body.top .read__product ul {
      max-width: 1000px;
      margin: 0 auto;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      align-items: center;
      position: relative; }
      @media only screen and (max-width: 767px) {
        body.top .read__product ul {
          display: block; } }
      body.top .read__product ul li {
        width: 33.3333%;
        position: relative;
        height: 490px; }
        @media only screen and (max-width: 767px) {
          body.top .read__product ul li {
            width: 100%;
            margin: 0 0 134px; } }
        @media only screen and (min-width: 768px) {
          body.top .read__product ul li:hover .text {
            opacity: 0.4; } }
        body.top .read__product ul li .img-on,
        body.top .read__product ul li .img {
          height: 490px;
          background-size: 101% auto !important;
          position: absolute;
          width: 100%;
          top: 0;
          left: 0; }
        body.top .read__product ul li .img-on {
          -webkit-transition: opacity 0.2s;
          -moz-transition: opacity 0.2s;
          -o-transition: opacity 0.2s;
          transition: opacity 0.2s;
          opacity: 0; }
        body.top .read__product ul li:hover .img-on {
          opacity: 1; }
        body.top .read__product ul li .text {
          text-align: center;
          margin: 40px 0 0;
          padding-top: 490px;
          display: inline-block;
          text-align: left; }
          @media only screen and (max-width: 767px) {
            body.top .read__product ul li .text {
              margin: 22px 0 0;
              padding-top: 510px; } }
          @media only screen and (min-width: 768px) {
            body.top .read__product ul li .text {
              padding-left: 18%;
              -webkit-transition: opacity 0.3s;
              -moz-transition: opacity 0.3s;
              -o-transition: opacity 0.3s;
              transition: opacity 0.3s; } }
          body.top .read__product ul li .text span {
            font-size: 18px;
            font-size: 1.8rem;
            letter-spacing: 0.04em;
            display: inline-block;
            font-family: "Portrait", "A1明朝", "A1 Mincho", "A-OTF-A1MinchoStd", "EB Garamond", serif; }
            @media only screen and (max-width: 767px) {
              body.top .read__product ul li .text span {
                font-size: 21px;
                font-size: 2.1rem; } }
            body.top .read__product ul li .text span:after {
              content: "";
              width: 13px;
              height: 11px;
              display: inline-block;
              position: relative;
              right: -3px;
              top: -1px;
              background: url(../images/arrow-right-blk.svg) center center/cover no-repeat; }
              @media only screen and (max-width: 767px) {
                body.top .read__product ul li .text span:after {
                  width: 15px;
                  height: 13px; } }
          body.top .read__product ul li .text small {
            display: block;
            font-size: 12px;
            font-size: 1.2rem;
            letter-spacing: 0.01em;
            margin: 6px 0 0; }
            @media only screen and (max-width: 767px) {
              body.top .read__product ul li .text small {
                font-size: 14px;
                font-size: 1.4rem; } }

body.top .bg01 {
  height: 100vh;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1; }

body.top .bg02 {
  height: 100vh;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1; }

body.top .product {
  padding: 260px 0 112px;
  background: #fff; }
  @media only screen and (min-width: 768px) {
    body.top .product {
      margin-top: 800px; } }
  @media only screen and (max-width: 767px) {
    body.top .product {
      margin-top: 600px; } }
  @media only screen and (max-width: 767px) {
    body.top .product {
      padding: 158px 0 5px; } }
  body.top .product__box {
    padding-left: 42px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin: 0 0 170px;
    transition: 0.8s;
    opacity: 0;
    -webkit-transform: translate(0, 80px);
    -moz-transform: translate(0, 80px);
    -ms-transform: translate(0, 80px);
    -o-transform: translate(0, 80px);
    transform: translate(0, 80px); }
    body.top .product__box.is-active {
      opacity: 1;
      -webkit-transform: translate(0, 0px);
      -moz-transform: translate(0, 0px);
      -ms-transform: translate(0, 0px);
      -o-transform: translate(0, 0px);
      transform: translate(0, 0px); }
    @media only screen and (max-width: 767px) {
      body.top .product__box {
        -webkit-flex-direction: column;
        flex-direction: column;
        padding: 0;
        margin: 0 0 150px; } }
    body.top .product__box .img-box {
      width: 37.6%; }
      @media only screen and (max-width: 767px) {
        body.top .product__box .img-box {
          width: 100%;
          order: 1; } }
      body.top .product__box .img-box .slider {
        margin: 0; }
        body.top .product__box .img-box .slider .slide {
          height: 632px; }
          @media only screen and (max-width: 767px) {
            body.top .product__box .img-box .slider .slide {
              height: 490px; } }
        body.top .product__box .img-box .slider .slick-arrow {
          width: 17px;
          height: 14px; }
          @media only screen and (max-width: 767px) {
            body.top .product__box .img-box .slider .slick-arrow {
              width: 19px;
              height: 16px; } }
        body.top .product__box .img-box .slider .slick-prev {
          left: 20px;
          z-index: +1; }
          @media only screen and (max-width: 767px) {
            body.top .product__box .img-box .slider .slick-prev {
              left: 16px; } }
          @media only screen and (min-width: 768px) {
            body.top .product__box .img-box .slider .slick-prev:hover:before {
              opacity: 0; }
            body.top .product__box .img-box .slider .slick-prev:hover:after {
              opacity: 1; } }
          body.top .product__box .img-box .slider .slick-prev:before {
            position: absolute;
            top: 0;
            left: 0;
            content: "";
            width: 17px;
            height: 14px;
            display: inline-block;
            background: url(../images/arrow-left.svg) center center/cover no-repeat;
            opacity: 1; }
            @media only screen and (min-width: 768px) {
              body.top .product__box .img-box .slider .slick-prev:before {
                -webkit-transition: opacity 0.3s;
                -moz-transition: opacity 0.3s;
                -o-transition: opacity 0.3s;
                transition: opacity 0.3s; } }
            @media only screen and (max-width: 767px) {
              body.top .product__box .img-box .slider .slick-prev:before {
                width: 19px;
                height: 16px; } }
          body.top .product__box .img-box .slider .slick-prev:after {
            position: absolute;
            top: 0;
            left: 0;
            content: "";
            width: 17px;
            height: 14px;
            display: inline-block;
            background: url(../images/arrow-left-blk.svg) center center/cover no-repeat;
            opacity: 0; }
            @media only screen and (min-width: 768px) {
              body.top .product__box .img-box .slider .slick-prev:after {
                -webkit-transition: opacity 0.3s;
                -moz-transition: opacity 0.3s;
                -o-transition: opacity 0.3s;
                transition: opacity 0.3s; } }
            @media only screen and (max-width: 767px) {
              body.top .product__box .img-box .slider .slick-prev:after {
                width: 19px;
                height: 16px; } }
          body.top .product__box .img-box .slider .slick-prev.slick-disabled:before {
            opacity: 1; }
        body.top .product__box .img-box .slider .slick-next {
          right: 20px; }
          @media only screen and (max-width: 767px) {
            body.top .product__box .img-box .slider .slick-next {
              right: 16px; } }
          @media only screen and (min-width: 768px) {
            body.top .product__box .img-box .slider .slick-next:hover:before {
              opacity: 0; }
            body.top .product__box .img-box .slider .slick-next:hover:after {
              opacity: 1; } }
          body.top .product__box .img-box .slider .slick-next:before {
            position: absolute;
            top: 0;
            left: 0;
            content: "";
            width: 17px;
            height: 14px;
            display: inline-block;
            background: url(../images/arrow-right.svg) center center/cover no-repeat;
            opacity: 1; }
            @media only screen and (min-width: 768px) {
              body.top .product__box .img-box .slider .slick-next:before {
                -webkit-transition: opacity 0.3s;
                -moz-transition: opacity 0.3s;
                -o-transition: opacity 0.3s;
                transition: opacity 0.3s; } }
            @media only screen and (max-width: 767px) {
              body.top .product__box .img-box .slider .slick-next:before {
                width: 19px;
                height: 16px; } }
          body.top .product__box .img-box .slider .slick-next:after {
            position: absolute;
            top: 0;
            left: 0;
            content: "";
            width: 17px;
            height: 14px;
            display: inline-block;
            background: url(../images/arrow-right-blk.svg) center center/cover no-repeat;
            opacity: 0; }
            @media only screen and (min-width: 768px) {
              body.top .product__box .img-box .slider .slick-next:after {
                -webkit-transition: opacity 0.3s;
                -moz-transition: opacity 0.3s;
                -o-transition: opacity 0.3s;
                transition: opacity 0.3s; } }
            @media only screen and (max-width: 767px) {
              body.top .product__box .img-box .slider .slick-next:after {
                width: 19px;
                height: 16px; } }
          body.top .product__box .img-box .slider .slick-next.slick-disabled:before {
            opacity: 1; }
      body.top .product__box .img-box .thum-list ul {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: center;
        justify-content: center;
        margin: 14px -3px 0;
        position: static;
        width: calc(100% + 6px); }
        @media only screen and (max-width: 767px) {
          body.top .product__box .img-box .thum-list ul {
            margin: 11px -3px 0;
            width: calc(100% + 6px); } }
        body.top .product__box .img-box .thum-list ul li {
          width: calc((100% - 48px) / 8);
          margin: 0;
          margin: 0 3px;
          position: relative;
          height: auto; }
          @media only screen and (max-width: 767px) {
            body.top .product__box .img-box .thum-list ul li {
              width: calc((100% - 48px) / 8);
              margin: 0 3px; } }
          body.top .product__box .img-box .thum-list ul li:before {
            content: "";
            width: 100%;
            height: 100%;
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            background: rgba(18, 18, 18, 0.8);
            z-index: +1;
            opacity: 0;
            transition: 0.3s; }
          body.top .product__box .img-box .thum-list ul li:after {
            content: "";
            width: 0;
            height: 1px;
            display: block;
            background: #000;
            position: absolute;
            left: 0;
            bottom: -6px;
            opacity: 0;
            transition: 0.3s; }
            @media only screen and (max-width: 767px) {
              body.top .product__box .img-box .thum-list ul li:after {
                bottom: -5px; } }
          body.top .product__box .img-box .thum-list ul li .img {
            height: 70px; }
          body.top .product__box .img-box .thum-list ul li.slick-active:before {
            opacity: 1; }
          body.top .product__box .img-box .thum-list ul li.slick-active:after {
            opacity: 1;
            width: 100%; }
    body.top .product__box .text {
      width: 58.8%; }
      @media only screen and (max-width: 767px) {
        body.top .product__box .text {
          width: 100%;
          order: 2;
          margin: 52px 0 0; } }
      body.top .product__box .text h2 span {
        font-size: 18px;
        font-size: 1.8rem;
        letter-spacing: 0.04em;
        display: block;
        margin: 0 0 6px;
        font-family: "Portrait", "A1明朝", "A1 Mincho", "A-OTF-A1MinchoStd", "EB Garamond", serif; }
        @media only screen and (max-width: 767px) {
          body.top .product__box .text h2 span {
            font-size: 21px;
            font-size: 2.1rem;
            margin: 0 0 8px; } }
      body.top .product__box .text h2 small {
        font-size: 12px;
        font-size: 1.2rem;
        letter-spacing: 0.01em; }
        @media only screen and (max-width: 767px) {
          body.top .product__box .text h2 small {
            font-size: 14px;
            font-size: 1.4rem; } }
      body.top .product__box .text .text01 {
        font-size: 13px;
        font-size: 1.3rem;
        letter-spacing: 0.01em;
        line-height: 1.846;
        text-align: left;
        margin: 30px auto; }
        @media only screen and (max-width: 767px) {
          body.top .product__box .text .text01 {
            font-size: 15px;
            font-size: 1.5rem;
            margin: 40px auto; } }
      body.top .product__box .text .text02 {
        font-size: 12px;
        font-size: 1.2rem;
        letter-spacing: 0.01em;
        line-height: 1.8333;
        color: #787878;
        margin: 30px auto; }
        @media only screen and (max-width: 767px) {
          body.top .product__box .text .text02 {
            font-size: 14px;
            font-size: 1.4rem;
            margin: 40px auto; } }
      body.top .product__box .text .price {
        margin: 0 0 40px; }
        @media only screen and (max-width: 767px) {
          body.top .product__box .text .price {
            margin: 64px 0 48px; } }
        body.top .product__box .text .price span {
          font-size: 15px;
          font-size: 1.5rem;
          letter-spacing: 0.01em; }
          @media only screen and (max-width: 767px) {
            body.top .product__box .text .price span {
              font-size: 18px;
              font-size: 1.8rem; } }
        body.top .product__box .text .price small {
          font-size: 13px;
          font-size: 1.3rem;
          letter-spacing: 0.01em; }
          @media only screen and (max-width: 767px) {
            body.top .product__box .text .price small {
              font-size: 15px;
              font-size: 1.5rem; } }
      body.top .product__box .text .order-btn {
        width: 190px;
        height: 30px;
        border-top: 1px solid #000;
        border-bottom: 1px solid #000;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        padding-right: 10px;
        transition: 0.3s; }
        @media only screen and (max-width: 767px) {
          body.top .product__box .text .order-btn {
            width: 100%;
            height: 37px; } }
        body.top .product__box .text .order-btn span {
          font-size: 13px;
          font-size: 1.3rem;
          letter-spacing: 0.05em;
          display: inline-block;
          margin-right: 10px; }
          @media only screen and (max-width: 767px) {
            body.top .product__box .text .order-btn span {
              font-size: 15px;
              font-size: 1.5rem;
              margin-right: 12px; } }
          body.top .product__box .text .order-btn span:before {
            content: "";
            width: 9px;
            height: 7px;
            display: inline-block;
            position: relative;
            top: -1px;
            margin-right: 13px;
            background: url(../images/arrow-right-blk.svg) center center/cover no-repeat; }
            @media only screen and (max-width: 767px) {
              body.top .product__box .text .order-btn span:before {
                width: 11px;
                height: 9px;
                margin-right: 14px; } }
        body.top .product__box .text .order-btn small {
          font-size: 11px;
          font-size: 1.1rem;
          letter-spacing: 0.03em; }
          @media only screen and (max-width: 767px) {
            body.top .product__box .text .order-btn small {
              font-size: 13px;
              font-size: 1.3rem; } }
        body.top .product__box .text .order-btn:hover {
          background: #000;
          color: #fff; }
          body.top .product__box .text .order-btn:hover span:before {
            background: url(../images/arrow-right.svg) center center/cover no-repeat; }

body.top .material {
  padding: 0 0 240px;
  background: #fff; }
  @media only screen and (max-width: 767px) {
    body.top .material {
      padding: 0 0 66px; } }
  @media only screen and (max-width: 767px) {
    body.top .material .inner {
      padding: 0; } }
  body.top .material__bg {
    height: 800px; }
    @media only screen and (max-width: 767px) {
      body.top .material__bg {
        height: 600px; } }
  body.top .material__list {
    max-width: 860px;
    margin: 210px auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    transition: 0.8s;
    opacity: 0;
    -webkit-transform: translate(0, 40px);
    -moz-transform: translate(0, 40px);
    -ms-transform: translate(0, 40px);
    -o-transform: translate(0, 40px);
    transform: translate(0, 40px); }
    body.top .material__list.is-active {
      opacity: 1;
      -webkit-transform: translate(0, 0px);
      -moz-transform: translate(0, 0px);
      -ms-transform: translate(0, 0px);
      -o-transform: translate(0, 0px);
      transform: translate(0, 0px); }
    @media only screen and (max-width: 767px) {
      body.top .material__list {
        margin: 148px auto 0;
        display: block;
        padding: 0 55px; } }
    body.top .material__list li {
      width: 25.58%; }
      @media only screen and (max-width: 767px) {
        body.top .material__list li {
          width: 100%;
          margin: 0 0 130px; } }
      body.top .material__list li h3 {
        text-align: center; }
        body.top .material__list li h3 span {
          display: block;
          font-size: 18px;
          font-size: 1.8rem;
          letter-spacing: 0.04em;
          margin: 0 0 8px;
          font-family: "Portrait", "A1明朝", "A1 Mincho", "A-OTF-A1MinchoStd", "EB Garamond", serif; }
          @media only screen and (max-width: 767px) {
            body.top .material__list li h3 span {
              font-size: 21px;
              font-size: 2.1rem;
              margin: 0 0 12px; } }
        body.top .material__list li h3 small {
          font-size: 12px;
          font-size: 1.2rem;
          letter-spacing: 0.01em; }
          @media only screen and (max-width: 767px) {
            body.top .material__list li h3 small {
              font-size: 14px;
              font-size: 1.4rem; } }
      body.top .material__list li p {
        text-align: left;
        font-size: 12px;
        font-size: 1.2rem;
        letter-spacing: 0.01em;
        line-height: 1.75;
        color: #787878;
        margin: 32px 0 28px; }
        @media only screen and (max-width: 767px) {
          body.top .material__list li p {
            font-size: 14px;
            font-size: 1.4rem;
            margin: 40px 0 34px; } }
      body.top .material__list li .logo {
        margin: 0 auto; }
      body.top .material__list li .logo01 {
        width: 88px; }
        @media only screen and (max-width: 767px) {
          body.top .material__list li .logo01 {
            width: 106px; } }
      body.top .material__list li .logo02 {
        width: 135px;
        margin: 38px auto 0; }
        @media only screen and (max-width: 767px) {
          body.top .material__list li .logo02 {
            width: 162px;
            margin: 48px auto 0; } }
      body.top .material__list li .logo03 {
        width: 120px;
        margin: 38px auto 0; }
        @media only screen and (max-width: 767px) {
          body.top .material__list li .logo03 {
            width: 144px;
            margin: 45px auto 0; } }

body.top .attention {
  padding: 200px 0 245px;
  color: #5a5a5a;
  background: #fff; }
  @media only screen and (min-width: 768px) {
    body.top .attention {
      margin-top: 800px; } }
  @media only screen and (max-width: 767px) {
    body.top .attention {
      margin-top: 600px; } }
  @media only screen and (max-width: 767px) {
    body.top .attention {
      padding: 140px 0 202px; } }
  body.top .attention .inner {
    max-width: 982px;
    transition: 0.8s;
    opacity: 0;
    -webkit-transform: translate(0, 40px);
    -moz-transform: translate(0, 40px);
    -ms-transform: translate(0, 40px);
    -o-transform: translate(0, 40px);
    transform: translate(0, 40px); }
    body.top .attention .inner.is-active {
      opacity: 1;
      -webkit-transform: translate(0, 0px);
      -moz-transform: translate(0, 0px);
      -ms-transform: translate(0, 0px);
      -o-transform: translate(0, 0px);
      transform: translate(0, 0px); }
  body.top .attention h3 {
    font-size: 13px;
    font-size: 1.3rem;
    letter-spacing: 0.01em;
    line-height: 1.615;
    text-align: left;
    margin: 0 0 22px; }
    @media only screen and (max-width: 767px) {
      body.top .attention h3 {
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 1.6; } }
  body.top .attention p {
    font-size: 12px;
    font-size: 1.2rem;
    letter-spacing: 0.01em;
    line-height: 1.75;
    text-align: left; }
    @media only screen and (max-width: 767px) {
      body.top .attention p {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.714; } }

.to-top {
  display: block;
  width: 28px;
  height: 28px;
  background: url(../images/to-top.svg) center center/cover no-repeat;
  right: 50px;
  bottom: 50px;
  position: fixed;
  z-index: 100; }
  @media only screen and (max-width: 767px) {
    .to-top {
      right: 26px;
      bottom: 26px; } }
