@charset "UTF-8";
/* ----------------------------------------------------
	mixin
---------------------------------------------------- */
/*----- メディアクエリ -----*/
/* 使い方
@include mq(){
  font-size: rem(16);
}
@include mq(375px){
  font-size: rem(16);
}
*/
/*----- font -----*/
/* 使い方
font-family: $noto;
*/
/*----- px変換 -----*/
/* 使い方
font-size: rem(16);
font-size: vw(16);
font-size: vw(16, 375); // ブラウザ幅が375pxのデザインデータの場合
line-height: lh(16,28);
letter-spacing: ls(50);
*/
/* リセットCSS
---------------------------------------------------------------------------- */
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, 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

img {
  border: 0;
  vertical-align: bottom;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/* Table Of Contents
----------------------------------------------------------------------------
General Elements
header
gNav
visual
topicPath
footer
---------------------------------------------------------------------------- */
/*General Elements
---------------------------------------------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  font-family: "Hiragino Kaku Gothic Pro", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "ヒラギノ角ゴ ProN", "Hiragino Sans", "Meiryo", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  color: #000;
}

a {
  text-decoration: none;
  color: #505050;
  outline: none;
}

a:hover {
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

img {
  max-width: 100%;
}

#wrpper {
  overflow: hidden;
}

/*l-header
---------------------------------------------------------------------------- */
.l-header {
  position: relative;
  z-index: 5;
}
.l-header .logo {
  position: absolute;
  top: 60px;
  left: 60px;
  width: 80px;
  z-index: 5;
}
.l-header .logo a {
  display: block;
  transition: 0.3s;
}
.l-header .logo a:hover {
  opacity: 0.8;
}

.l-menu {
  display: none;
  /* js-menuクラスでクリック状態を管理 */
}
.l-menu .l-menu__line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  transition: all 0.3s ease;
}
.l-menu.is-active .l-menu__line:first-child {
  transform: rotate(25deg);
  position: absolute;
  top: 3px;
}
.l-menu.is-active .l-menu__line:last-child {
  transform: rotate(-25deg);
  position: absolute;
  top: 3px;
}

/* l-gNav
---------------------------------------------------------------------------- */
.l-gNav {
  position: fixed;
  bottom: 60px;
  left: 60px;
  z-index: 10;
}
.l-gNav .l-gNav__logo {
  display: none;
}
.l-gNav ul li {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  padding-bottom: 10px;
}
.l-gNav ul li:last-child {
  padding: 0;
}
.l-gNav ul li a {
  color: #999;
  transition: 0.3s;
  text-decoration: none;
  display: block;
}
.l-gNav ul li a:hover {
  color: #B3B3B3;
}
.l-gNav ul li a.is-current {
  color: #000;
}

/* l-footer
---------------------------------------------------------------------------- */
.l-footer {
  padding: 60px;
  background: #000;
  color: #fff;
}
.l-footer .l-footer__content {
  position: relative;
}
.l-footer .l-footer__copy {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 1.4rem;
  line-height: 1.5;
}
.l-footer .l-footer__logo {
  width: 70px;
  margin: 0 0 35px;
}
.l-footer .l-footer__logo a {
  display: block;
  transition: 0.3s;
}
.l-footer .l-footer__logo a:hover {
  opacity: 0.8;
}
.l-footer .l-footer__lead {
  font-size: 1.4rem;
  line-height: 1.5;
  padding-bottom: 25px;
}
.l-footer .l-footer__lead:last-child {
  padding: 0;
}

/* ----------------------------------------------------
	utility
---------------------------------------------------- */
/*----- コンテナ幅 -----*/
.u-wrap {
  max-width: 114rem;
  padding: 0 2rem;
  margin: 0 auto;
}

/*----- spのみ表示 -----*/
.u-nopc {
  display: none;
}

/*----- pcのみ表示 -----*/
.u-nosp {
  display: inherit;
}

/*----- ホバー効果 -----*/
.u-hover--fade {
  transition: opacity 0.3s ease;
}
.u-hover--fade:hover {
  opacity: 0.7;
}

/* ----------------------------------------------------
	c-
---------------------------------------------------- */
.c-content {
  padding: 100px 60px 0;
}

.c-lead {
  padding-bottom: 35px;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
.c-lead:last-child {
  padding: 0;
}

.c-heading {
  padding-bottom: 25px;
  font-size: 3rem;
  line-height: 1.5;
}

.c-slider {
  padding: 82px 0 50px;
  position: relative;
}
.c-slider .c-slider__box {
  width: 100%;
  max-width: 1105px;
}
.c-slider .c-slider__pic {
  max-width: 500px;
  padding: 50px 0 0;
  margin: 0 auto;
  opacity: 0.3;
}
.c-slider .c-slider__pic.is-large {
  max-width: 800px;
}
.c-slider .slick-center .c-slider__pic {
  opacity: 1;
}

.c-product {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
.c-product .c-product__box {
  width: 100%;
  padding: 82px 60px 0;
}
.c-product .c-product__category {
  float: left;
  min-width: 350px;
  padding: 0 50px 0 0;
}
.c-product .c-product__category .c-lang-en {
  padding: 0 0 10px;
  font-size: 4rem;
  line-height: 1;
}
.c-product .c-product__detail {
  float: left;
  padding: 0 0 0 20px;
  position: relative;
}
.c-product .c-product__detail:before {
  content: "";
  width: 1px;
  height: 125px;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
}
.c-product .c-product__detail .c-lang-en {
  padding: 0 0 10px;
  font-size: 3rem;
  line-height: 1;
}
.c-product .c-product__detail .c-lang-en small {
  font-size: 2rem;
}
.c-product .lead {
  font-size: 1.3rem;
  line-height: 1.5384615385;
}

.c-lang-en {
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

@keyframes fadeUpShow {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fade-up {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  will-change: transform, opacity;
}

.fade-up.is-show {
  animation: fadeUpShow 0.8s cubic-bezier(0.78, 0.18, 0.34, 0.98) forwards;
}

/* ----------------------------------------------------
	p-fv
---------------------------------------------------- */
.p-fv {
  height: 100svh;
  padding: 60px;
  background: url("../img/main_pc.png") no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.p-fv .p-fv__txt {
  width: 360px;
  position: absolute;
  top: 50%;
  /* 親要素の中央 */
  left: 60px;
  z-index: 2;
  transform: translateY(-100%);
}

@keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}
/* ----------------------------------------------------
	p-about
---------------------------------------------------- */
.p-about {
  height: 100vh;
  background: url("../img/about_pc.png") no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  position: relative;
}
.p-about .p-about__heading {
  max-width: 380px;
  margin: 0 0 85px;
}
.p-about .p-about__content {
  padding: 100px 60px 0;
}

/* ----------------------------------------------------
	p-piaval
---------------------------------------------------- */
.p-piaval .p-piaval__content {
  height: 100vh;
  background: url("../img/piaval_pc.png") no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  position: relative;
}
.p-piaval .p-piaval__heading {
  max-width: 370px;
  margin: 0 0 75px;
}

/* ----------------------------------------------------
	p-ton
---------------------------------------------------- */
.p-ton__content {
  height: 100vh;
  background: url("../img/ton_pc.png") no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  position: relative;
}
.p-ton__content .p-ton__heading {
  max-width: 155px;
  margin: 0 0 75px;
}

/* ----------------------------------------------------
	p-plank
---------------------------------------------------- */
.p-plank__content {
  height: 100vh;
  background: url("../img/plank_pc.png") no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  position: relative;
}
.p-plank__content .p-plank__heading {
  max-width: 226px;
  margin: 0 0 75px;
}

/* ----------------------------------------------------
	p-calisson
---------------------------------------------------- */
.p-calisson .c-slider {
  padding-top: 140px;
}
.p-calisson .c-product__detail:before {
  height: 170px;
}
.p-calisson .c-product__detail p.lead {
  padding: 0 0 30px;
}
.p-calisson .p-calisson__content {
  height: 100vh;
  background: url("../img/calisson_pc.png") no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.p-calisson .p-calisson__content .p-calisson__heading {
  max-width: 317px;
  margin: 0 0 75px;
}

/* ----------------------------------------------------
	p-original_tables
---------------------------------------------------- */
.p-original_tables .c-slider {
  padding-bottom: 60px;
}
.p-original_tables .p-original_tables__content {
  height: 100vh;
  background: url("../img/table_pc.png") no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.p-original_tables .p-original_tables__content .p-original_tables__heading {
  max-width: 270px;
  margin: 0 0 75px;
}
.p-original_tables .p-original_tables__list {
  max-width: 690px;
  padding: 0 60px 0 0;
  margin: 60px 0 0 auto;
}
.p-original_tables .p-original_tables__list li {
  padding-left: 14px;
  font-size: 1.2rem;
  line-height: 1.8333333333;
  letter-spacing: 0.05em;
  position: relative;
}
.p-original_tables .p-original_tables__list li:before {
  content: "";
  width: 4px;
  height: 4px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  top: 9px;
  left: 3px;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.3rem;
    line-height: 1.6923076923;
    letter-spacing: 0.03em;
  }
  .l-header .logo {
    width: 45px;
    top: 25px;
    left: 25px;
  }
  .l-menu {
    width: 40px;
    height: 7px;
    position: fixed;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 15;
    top: 28px;
    right: 25px;
  }
  .l-gNav {
    display: none;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 25px;
    height: 100svh;
  }
  .l-gNav .l-gNav__logo {
    display: block;
    width: 45px;
    margin: 0 0 40px;
  }
  .l-gNav ul li {
    font-size: 2rem;
    padding-bottom: 15px;
  }
  .l-gNav ul li a {
    color: #000;
  }
  .l-gNav ul li a:hover {
    color: inherit;
  }
  .l-gNav ul li a.is-current {
    color: inherit;
  }
  .l-footer {
    padding: 25px;
  }
  .l-footer .l-footer__copy {
    font-size: 1rem;
    line-height: 1.6;
    text-align: right;
    position: inherit;
    right: inherit;
    bottom: inherit;
  }
  .l-footer .l-footer__logo {
    width: 40px;
    margin: 0 0 20px;
  }
  .l-footer .l-footer__lead {
    font-size: 1rem;
    line-height: 1.6;
    padding-bottom: 15px;
  }
  .u-wrap {
    padding: 0 1.5625vw;
  }
  .u-nopc {
    display: inherit;
  }
  .u-nosp {
    display: none;
  }
  .u-hover--fade {
    transition: none;
  }
  .u-hover--fade:hover {
    opacity: 1;
  }
  .c-content {
    padding: 30px 25px 40px;
    margin: 0 auto;
  }
  .c-lead {
    padding-bottom: 25px;
    font-size: 1.3rem;
    line-height: 1.6923076923;
    letter-spacing: 0.03em;
  }
  .c-heading {
    font-size: 1.7rem;
    line-height: 1.4705882353;
    text-align: center;
  }
  .c-slider {
    padding: 0 0 40px;
  }
  .c-slider .c-slider__pic {
    width: 80%;
    padding: 0;
    opacity: 1;
  }
  .c-slider .c-slider__pic.is-large {
    width: 90%;
  }
  .c-slider .c-product__category {
    width: calc(100% - 50px);
    padding: 35px 0 30px;
    margin: 0 auto;
    border-top: solid 1px #ccc;
    text-align: center;
  }
  .c-slider .c-product__category .c-lang-en {
    padding: 0 0 3px;
    font-size: 3rem;
    line-height: 1;
  }
  .c-slider .c-product__detail {
    width: calc(100% - 50px);
    padding: 20px 0 40px;
    margin: 0 auto;
    text-align: center;
  }
  .c-slider .c-product__detail .c-lang-en {
    padding: 0 0 7px;
    font-size: 2rem;
    line-height: 1;
  }
  .c-slider .c-product__detail .c-lang-en small {
    font-size: 1.5rem;
  }
  .c-slider .lead {
    font-size: 1.2rem;
    line-height: 1.6666666667;
  }
  .c-product {
    display: none;
  }
  .p-fv {
    background: url("../img/main_sp.png") no-repeat;
    background-position: center;
    background-size: cover;
  }
  .p-fv .p-fv__txt {
    width: 225px;
    left: 25px;
    transform: translateY(-130%);
  }
  .p-fv .p-fv__scroll {
    display: block;
    width: 40px;
    margin-left: -20px;
    position: absolute;
    left: 50%;
    bottom: 25px;
    animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
  }
  .p-about {
    height: inherit;
    background: #fff;
    color: #000;
  }
  .p-about .p-about__heading {
    max-width: 217px;
    margin: 0 auto 60px;
  }
  .p-about .p-about__content {
    padding: 60px 25px;
  }
  .p-piaval .p-piaval__content {
    height: inherit;
    padding: 73.33vw 0 0;
    background: #fff;
    color: #000;
  }
  .p-piaval .p-piaval__content:before {
    content: "";
    width: 100%;
    height: 73.33vw;
    background: url("../img/piaval_sp.png") no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .p-piaval .p-piaval__heading {
    max-width: 190px;
    margin: 0 auto 20px;
  }
  .p-ton__content {
    height: inherit;
    padding: 73.33vw 0 0;
    background: #fff;
    color: #000;
  }
  .p-ton__content:before {
    content: "";
    width: 100%;
    height: 73.33vw;
    background: url("../img/ton_sp.png") no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .p-ton__content .p-ton__heading {
    max-width: 74px;
    margin: 0 auto 20px;
  }
  .p-plank__content {
    height: inherit;
    padding: 73.33vw 0 0;
    background: #fff;
    color: #000;
  }
  .p-plank__content:before {
    content: "";
    width: 100%;
    height: 73.33vw;
    background: url("../img/plank_sp.png") no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .p-plank__content .p-plank__heading {
    max-width: 109px;
    margin: 0 auto 20px;
  }
  .p-calisson .c-slider {
    padding-top: 0;
  }
  .p-calisson .c-product__detail p.lead {
    padding: 0 0 10px;
  }
  .p-calisson .p-calisson__content {
    height: inherit;
    padding: 73.33vw 0 0;
    background: #fff;
    color: #000;
  }
  .p-calisson .p-calisson__content:before {
    content: "";
    width: 100%;
    height: 73.33vw;
    background: url("../img/calisson_sp.png") no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .p-calisson .p-calisson__content .p-calisson__heading {
    max-width: 175px;
    margin: 0 auto 20px;
  }
  .p-original_tables .c-slider {
    padding-bottom: 25px;
  }
  .p-original_tables .p-original_tables__content {
    height: inherit;
    padding: 73.33vw 0 0;
    background: #fff;
    color: #000;
  }
  .p-original_tables .p-original_tables__content:before {
    content: "";
    width: 100%;
    height: 73.33vw;
    background: url("../img/table_sp.png") no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .p-original_tables .p-original_tables__content .p-original_tables__heading {
    max-width: 298px;
    margin: 0 auto 20px;
  }
  .p-original_tables .p-original_tables__list {
    padding: 0 25px;
    margin: 0 auto;
  }
  .p-original_tables .p-original_tables__list li {
    font-size: 1rem;
  }
  .p-original_tables .p-original_tables__list li:before {
    top: 7px;
  }
}