@charset "UTF-8";
@import url(html5reset.css);
@import url("https://fonts.googleapis.com/css?family=Cormorant+Infant:300,400&display=swap");
@font-face {
  font-family: "YakuHanJP";
  font-style: normal;
  font-weight: 400;
  src: url("https://cdn.jsdelivr.net/npm/yakuhanjp@3.0.0/dist/fonts/YakuHanJP/YakuHanJP-Light.eot");
  src: url("https://cdn.jsdelivr.net/npm/yakuhanjp@3.0.0/dist/fonts/YakuHanJP/YakuHanJP-Light.woff2") format("woff2"), url("https://cdn.jsdelivr.net/npm/yakuhanjp@3.0.0/dist/fonts/YakuHanJP/YakuHanJP-Light.woff") format("woff");
  font-display: swap; }

@font-face {
  font-family: 'Din';
  font-style: normal;
  font-weight: 500;
  src: url(/fonts/URWDIN-Demi.eot), url(/fonts/URWDIN-Demi.woff) format("woff"); }

@font-face {
  font-family: 'TexasHero';
  font-style: normal;
  font-weight: 300;
  src: url(/fonts/texhero-webfont.eot), url(/fonts/texhero-webfont.woff2) format("woff2"), url(/fonts/texhero-webfont.woff) format("woff"); }

/* variables
----------------------------------------------------*/
/* base
----------------------------------------------------*/
body {
  position: relative;
  text-align: left;
  font-family: YakuHanJP, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, 'Lucida Grande', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Meiryo, Helvetica, Verdana, Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #000;
  background: #fff;
  -webkit-text-size-adjust: 100%; }

img {
  display: block; }

/* anchor
----------------------------------------------------*/
a:link {
  color: #000;
  text-decoration: none; }

a:visited {
  color: #000;
  text-decoration: none; }

a:hover, a:active {
  color: #604c3f;
  text-decoration: none; }

/* utils
---------------------------------------------------*/
.pc {
  display: block; }

.sp {
  display: none; }

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

/* animation
----------------------------------------------------*/
.inview-slide {
  display: inline-block;
  position: relative; }
  .inview-slide span {
    visibility: hidden; }
  .inview-slide.inview::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    content: '';
    animation-name: in, out;
    animation-duration: .5s;
    animation-delay: 0s, 0.5s;
    animation-timing-function: cubic-bezier(0.75, 0, 0.2, 1);
    animation-fill-mode: backwards, forwards; }
  .inview-slide.inview span {
    visibility: visible;
    animation-name: show;
    animation-duration: 1s; }

@keyframes in {
  0% {
    transform-origin: 0 0;
    transform: scale3d(0, 1, 1); }
  100% {
    transform-origin: 0 0;
    transform: scale3d(1, 1, 1); } }

@keyframes out {
  0% {
    transform-origin: 100% 0;
    transform: scale3d(1, 1, 1); }
  100% {
    transform-origin: 100% 0;
    transform: scale3d(0, 1, 1); } }

@keyframes show {
  0%, 50% {
    visibility: hidden; }
  100% {
    visibility: visible; } }

_::-webkit-full-page-media, _:future, :root, body {
  -webkit-animation: safariFix 1s forwards infinite; }

@-webkit-keyframes safariFix {
  100% {
    z-index: 1; } }

/* header
----------------------------------------------------*/
#header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 50px;
  background: #fff;
  box-sizing: border-box; }
  @media only screen and (max-width: 640px) {
    #header {
      height: 50px; } }
  #header .logo {
    position: absolute;
    left: 7px;
    bottom: -8px;
    max-width: 251px; }
    @media only screen and (max-width: 640px) {
      #header .logo {
        width: 60%;
        bottom: 2px; } }

/* gnav
----------------------------------------------------*/
#gnav {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  background: rgba(0, 0, 0, 0.9); }
  #gnav .inner {
    height: 100%;
    padding: 50px 0; }
    #gnav .inner ul {
      padding-bottom: 70px; }
    #gnav .inner li {
      font-size: 22px;
      font-weight: 400;
      line-height: 1.8;
      text-align: center;
      transition: 0.3s opacity; }
      @media only screen and (max-width: 640px) {
        #gnav .inner li {
          font-size: 18px; } }
      #gnav .inner li:hover {
        opacity: 0.6; }
      #gnav .inner li::after {
        content: '';
        display: block;
        margin: 1.5em auto;
        width: 30px;
        height: 1px;
        background: #fff; }
      #gnav .inner li a {
        color: #fff;
        text-align: center;
        letter-spacing: 0.3em;
        text-decoration: none; }
        #gnav .inner li a span {
          display: block;
          font-size: 14px;
          font-family: 'Din'; }
          @media only screen and (max-width: 640px) {
            #gnav .inner li a span {
              font-size: 11px; } }
  #gnav .nav1 img {
    width: 250px; }

.menu-trigger {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 35px;
  height: 20px;
  z-index: 200;
  transform: translateY(-50%); }

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box; }

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000; }

.menu-trigger span:nth-of-type(1) {
  top: 0; }

.menu-trigger span:nth-of-type(2) {
  top: 9px; }

.menu-trigger span:nth-of-type(2)::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: all 0.15s;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  opacity: 0; }

.menu-trigger.active span {
  background-color: #fff; }

.menu-trigger span:nth-of-type(3) {
  bottom: 0; }

.menu-trigger.active span:nth-of-type(1) {
  transform: translate(50%) scale(0); }

.menu-trigger.active span:nth-of-type(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

.menu-trigger.active span:nth-of-type(2)::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  opacity: 1;
  background-color: #fff; }

.menu-trigger.active span:nth-of-type(3) {
  transform: translate(-50%) scale(0); }

/* 
----------------------------------------------------*/
#hero {
  position: relative;
  width: 100%;
  height: 50vw; }
  #hero .hero-img {
    width: 100%;
    height: 100%; }

/* home
----------------------------------------------------*/
#home #hero {
  position: relative;
  width: 100%;
  height: 66.666vw; }
  @media only screen and (max-width: 640px) {
    #home #hero {
      height: 135vw; } }
  #home #hero .inner {
    width: 100%;
    overflow: hidden; }
  #home #hero .hero-logo {
    position: absolute;
    top: 57%;
    left: 10px;
    z-index: 10;
    font-family: 'TexasHero';
    font-size: 8vw;
    line-height: 0.9;
    color: #fff; }
    @media only screen and (max-width: 640px) {
      #home #hero .hero-logo {
        top: 70%;
        font-size: 14vw; }
        #home #hero .hero-logo span {
          display: inline-block;
          width: 2.2em; } }

#home .hero-copy {
  position: absolute;
  bottom: -0.95em;
  width: 100%;
  z-index: 11;
  font-family: 'TexasHero';
  font-size: 5vw;
  text-align: center;
  color: #000; }
  @media only screen and (max-width: 640px) {
    #home .hero-copy {
      display: none; } }

@media only screen and (max-width: 640px) {
  #home .hero-slide {
    margin-left: -90%;
    width: 200%; } }

#home #about {
  margin: 70px auto 0;
  padding-top: 70px;
  width: 90%; }
  @media only screen and (max-width: 640px) {
    #home #about {
      margin-top: 0;
      padding-top: 15px; } }
  #home #about h2 {
    font-size: 28px;
    font-weight: 300;
    text-align: center; }
    @media only screen and (max-width: 640px) {
      #home #about h2 {
        font-size: 5vw; } }
  #home #about h2 + p {
    margin-top: 2em;
    font-size: 18px;
    line-height: 1.8;
    text-align: center; }
    @media only screen and (max-width: 640px) {
      #home #about h2 + p {
        margin-top: 1em;
        font-size: 3.8vw;
        text-align: justify; } }

#home #topics {
  margin-top: 70px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center; }
  @media only screen and (max-width: 640px) {
    #home #topics {
      display: block;
      margin: 40px auto 0;
      width: 90%; } }
  #home #topics .title {
    padding: 10px 20px;
    font-family: 'Cormorant Infant', serif;
    font-size: 35px;
    text-align: center;
    color: #fff;
    background: #92857c; }
    @media only screen and (max-width: 640px) {
      #home #topics .title {
        padding: 5px;
        font-size: 30px; } }
    #home #topics .title h2 {
      font-weight: 400; }
  #home #topics ul {
    margin-left: 2em; }
    @media only screen and (max-width: 640px) {
      #home #topics ul {
        margin-top: 20px;
        margin-left: 0; } }
  #home #topics li {
    font-size: 18px; }
    @media only screen and (max-width: 640px) {
      #home #topics li {
        font-size: 14px; } }
    #home #topics li + li {
      margin-top: 0.2em; }
      @media only screen and (max-width: 640px) {
        #home #topics li + li {
          margin-top: 1.5em; } }
    #home #topics li .date {
      padding-right: 1em; }
      @media only screen and (max-width: 640px) {
        #home #topics li .date {
          display: block;
          padding-bottom: 0.5em; } }
    #home #topics li a:hover {
      text-decoration: underline; }

#home #nav-products {
  position: relative;
  margin-top: 70px;
  width: 100%;
  height: 41.666vw; }
  @media only screen and (max-width: 640px) {
    #home #nav-products {
      margin: 40px auto 0;
      width: 90%;
      height: 100vw; } }
  #home #nav-products .inner {
    position: relative;
    width: 100%;
    height: 100%; }
  #home #nav-products .inner a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    background: url(../img/product_bg.jpg) no-repeat center center;
    background-size: 100%;
    transition: background 0.5s; }
    @media only screen and (max-width: 640px) {
      #home #nav-products .inner a {
        background: url(../img/sp_product_bg.jpg) no-repeat center center;
        background-size: 100%; } }
    #home #nav-products .inner a .title-en {
      position: absolute;
      right: 30px;
      bottom: 70px;
      font-family: 'TexasHero';
      font-size: 6vw;
      color: #000; }
      @media only screen and (max-width: 640px) {
        #home #nav-products .inner a .title-en {
          right: -14%;
          width: 115%;
          bottom: -0.4em;
          font-size: 10.7vw; } }
    #home #nav-products .inner a .title-jp {
      position: absolute;
      right: 30px;
      bottom: 40px;
      padding: 10px 30px 12px;
      font-size: 22px;
      color: #fff;
      background: #000;
      transition: background 0.3s; }
      @media only screen and (max-width: 640px) {
        #home #nav-products .inner a .title-jp {
          width: 100%;
          right: 0;
          bottom: -55px;
          font-size: 18px;
          text-align: center;
          box-sizing: border-box; } }
      #home #nav-products .inner a .title-jp span {
        padding-left: 1em;
        font-size: 66%; }
    #home #nav-products .inner a:hover {
      background-size: 110%; }
      @media only screen and (max-width: 640px) {
        #home #nav-products .inner a:hover {
          background-size: 100%; } }
      #home #nav-products .inner a:hover .title-jp {
        background: #604c3f; }

#home #contents-nav {
  margin-top: 100px; }
  @media only screen and (max-width: 640px) {
    #home #contents-nav {
      margin-top: 100px; } }
  #home #contents-nav ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 95%;
    max-width: 1200px; }
  #home #contents-nav li {
    margin: 0 1.5% 70px;
    width: 30.333%; }
    @media only screen and (max-width: 640px) {
      #home #contents-nav li {
        margin: 0 auto 50px;
        width: 75%; } }
  #home #contents-nav .content-ph {
    width: 100%;
    overflow: hidden;
    border: solid 10px #eee;
    box-sizing: border-box; }
    @media only screen and (max-width: 640px) {
      #home #contents-nav .content-ph {
        border: solid 5px #eee; } }
    #home #contents-nav .content-ph img {
      transition: transform 0.5s; }
  #home #contents-nav .content-title {
    margin-top: 13px;
    padding: 8px 0 10px;
    font-size: 24px;
    text-align: center;
    color: #fff;
    background: #000;
    transition: background 0.3s; }
    @media only screen and (max-width: 640px) {
      #home #contents-nav .content-title {
        font-size: 16px; } }
  #home #contents-nav .content-cap {
    margin-top: 2em;
    font-size: 16px;
    line-height: 1.8;
    text-align: center; }
    @media only screen and (max-width: 1200px) {
      #home #contents-nav .content-cap {
        font-size: 1.2vw; } }
    @media only screen and (max-width: 640px) {
      #home #contents-nav .content-cap {
        margin-top: 1em;
        font-size: 14px;
        line-height: 1.6;
        text-align: justify; } }
  #home #contents-nav a:hover .content-title {
    background: #604c3f; }
  #home #contents-nav a:hover .content-ph img {
    transform: scale(1.1); }

/* slick
----------------------------------------------------*/
.slick-dots {
  bottom: 20px; }
  .slick-dots li {
    margin: 0; }
    .slick-dots li button:before {
      font-size: 8px;
      opacity: 0.5;
      color: #fff; }
  .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #fff; }

/* contents
----------------------------------------------------*/
.contents {
  margin-top: 50px;
  width: 100%;
  overflow: hidden; }
  @media only screen and (max-width: 640px) {
    .contents {
      margin-top: 0;
      padding-top: 20px; } }
  .contents .content-header {
    margin: 0 auto;
    padding-top: 70px;
    width: 90%;
    max-width: 700px; }
    @media only screen and (max-width: 640px) {
      .contents .content-header {
        padding-top: 30px; } }
    .contents .content-header h2 {
      margin-top: -0.1em;
      font-family: 'TexasHero';
      font-size: 60px;
      font-weight: 300;
      line-height: 0.8;
      text-align: center; }
      @media only screen and (max-width: 640px) {
        .contents .content-header h2 {
          margin-left: -5%;
          width: 110%;
          font-size: 13vw; } }
  .contents .content-bottom {
    margin: 90px auto 0;
    width: 90%;
    max-width: 700px; }

.lead {
  margin: 100px auto 0;
  width: 90%; }
  @media only screen and (max-width: 640px) {
    .lead {
      margin-top: 50px; } }
  .lead h3 {
    font-size: 30px;
    font-weight: 300;
    text-align: center; }
    @media only screen and (max-width: 640px) {
      .lead h3 {
        font-size: 5vw; } }
  .lead p {
    margin-top: 2em;
    font-size: 18px;
    line-height: 2;
    text-align: center; }
    @media only screen and (max-width: 640px) {
      .lead p {
        font-size: 14px;
        text-align: justify; } }

.content-tx {
  margin: 100px auto 100px;
  width: 90%; }
  @media only screen and (max-width: 640px) {
    .content-tx {
      margin-top: 50px;
      margin-bottom: 50px; } }
  .content-tx p {
    margin-top: 2em;
    font-size: 18px;
    line-height: 2;
    text-align: center; }
    @media only screen and (max-width: 640px) {
      .content-tx p {
        font-size: 14px;
        text-align: justify; } }

.across-ph {
  margin-top: 150px;
  width: 100%; }
  @media only screen and (max-width: 640px) {
    .across-ph {
      margin: 50px auto 0;
      width: 75%; } }
  @media only screen and (max-width: 640px) {
    #susono .across-ph {
      width: 100%; } }

.col3-ph {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto 0;
  width: 95%; }
  @media only screen and (max-width: 640px) {
    .col3-ph {
      width: 75%; } }
  .col3-ph .col3 {
    margin-top: 30px;
    width: 31.333%; }
    @media only screen and (max-width: 640px) {
      .col3-ph .col3 {
        margin-top: 20px;
        width: 100%; } }

/* thailand
----------------------------------------------------*/
.profile {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 100px auto 0;
  width: 95%;
  max-width: 1200px; }
  @media only screen and (max-width: 640px) {
    .profile {
      width: 75%; } }
  .profile .profile-ph {
    width: 43%; }
    @media only screen and (max-width: 640px) {
      .profile .profile-ph {
        width: 100%; } }
  .profile .profile-tx {
    margin-top: 7em;
    position: relative;
    width: 55%; }
    @media only screen and (max-width: 640px) {
      .profile .profile-tx {
        margin-top: 1em;
        width: 100%; } }
  .profile .profile-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center; }
  .profile .profile-title {
    margin-left: -0.6em;
    font-family: 'TexasHero';
    font-size: 60px; }
    @media only screen and (max-width: 640px) {
      .profile .profile-title {
        margin-left: 0;
        font-size: 9vw; } }
  .profile .profile-name {
    margin-top: -0.3em;
    margin-left: 1em;
    font-size: 26px;
    font-weight: 700; }
    @media only screen and (max-width: 640px) {
      .profile .profile-name {
        font-size: 4vw; } }
  .profile table {
    width: 100%; }
  .profile th, .profile td {
    padding-top: 0.7em;
    font-size: 16px;
    line-height: 1.6; }
    @media only screen and (max-width: 640px) {
      .profile th, .profile td {
        font-size: 12px; } }
  .profile th {
    font-weight: 300;
    vertical-align: top; }
  .profile td {
    padding-left: 1em; }

/* company
----------------------------------------------------*/
#company-info {
  margin: 120px auto 0;
  width: 90%;
  max-width: 700px;
  padding: 70px 70px 100px;
  background: #f7f7f7;
  box-sizing: border-box; }
  @media only screen and (max-width: 640px) {
    #company-info {
      margin-top: 60px;
      padding: 40px 10% 50px; } }
  #company-info h3 {
    font-size: 30px;
    font-weight: 300;
    line-height: 1.5; }
    #company-info h3 span {
      display: block;
      font-size: 73%; }
    @media only screen and (max-width: 640px) {
      #company-info h3 {
        font-size: 5vw; } }
  #company-info table {
    margin-top: 50px;
    width: 100%;
    font-size: 18px;
    line-height: 1.8; }
    @media only screen and (max-width: 640px) {
      #company-info table {
        margin-top: 25px;
        font-size: 14px; } }
  #company-info th {
    padding-top: 0.5em;
    font-weight: 300;
    white-space: nowrap; }
  #company-info td {
    padding-top: 0.5em;
    padding-left: 1em; }

/* howto
----------------------------------------------------*/
#howto .contents {
  padding-top: 70px; }
  @media only screen and (max-width: 640px) {
    #howto .contents {
      padding-top: 50px; } }

#howto .howto-header {
  position: relative;
  margin: 0 auto 0;
  width: 90%;
  max-width: 700px;
  height: 700px;
  border: solid 10px #f7f7f7;
  background: #d3b988;
  box-sizing: border-box;
  text-align: center; }
  @media only screen and (max-width: 640px) {
    #howto .howto-header {
      height: 90vw;
      border: solid 8px #f7f7f7; } }
  #howto .howto-header h2 {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    font-family: 'TexasHero';
    font-size: 60px;
    font-weight: 300; }
    @media only screen and (max-width: 640px) {
      #howto .howto-header h2 {
        width: 120%;
        transform: translate(-50%, -90%);
        font-size: 12vw;
        line-height: 0.9; } }
  #howto .howto-header h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 10%);
    width: 70%;
    padding: 10px 0;
    font-size: 25px;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #fff;
    background: #000; }
    @media only screen and (max-width: 640px) {
      #howto .howto-header h3 {
        width: 80%;
        padding: 3px 0 5px;
        font-size: 4.5vw;
        transform: translate(-50%, 50%); } }
  #howto .howto-header p {
    position: absolute;
    bottom: 10%;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    font-size: 18px;
    line-height: 2;
    letter-spacing: 0.1em; }
    @media only screen and (max-width: 640px) {
      #howto .howto-header p {
        bottom: 3%;
        font-size: 3.7vw;
        line-height: 1.8;
        letter-spacing: 0; } }

#howto .howto-nav {
  margin: 100px auto 0;
  width: 90%;
  max-width: 800px; }
  @media only screen and (max-width: 640px) {
    #howto .howto-nav {
      margin-top: 70px; } }
  #howto .howto-nav ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  #howto .howto-nav li {
    width: 48%;
    max-width: 360px; }
    @media only screen and (max-width: 640px) {
      #howto .howto-nav li {
        width: 75%; } }
  #howto .howto-nav li + li {
    padding-left: 3%; }
    @media only screen and (max-width: 640px) {
      #howto .howto-nav li + li {
        padding: 50px 0 0; } }
  #howto .howto-nav .howto-thumb {
    width: 100%;
    overflow: hidden;
    border: solid 10px #eee;
    box-sizing: border-box; }
    @media only screen and (max-width: 640px) {
      #howto .howto-nav .howto-thumb {
        border: solid 5px #eee; } }
    #howto .howto-nav .howto-thumb img {
      transition: transform 0.5s; }
  #howto .howto-nav .howto-item {
    margin-top: 13px;
    padding: 8px 0 10px;
    font-size: 24px;
    text-align: center;
    color: #fff;
    background: #000;
    transition: background 0.3s; }
    @media only screen and (max-width: 640px) {
      #howto .howto-nav .howto-item {
        font-size: 16px; } }
  #howto .howto-nav a:hover .howto-item {
    background: #604c3f; }
  #howto .howto-nav a:hover .howto-thumb img {
    transform: scale(1.1); }

#howto .howto-bg {
  margin: 0 auto;
  padding: 100px 0;
  width: 95%;
  max-width: 1100px;
  background: #d2b988;
  border-radius: 20px; }
  @media only screen and (max-width: 640px) {
    #howto .howto-bg {
      padding: 20px 0 50px;
      width: 100%;
      border-radius: 0; } }

#howto .product-howto {
  margin: 0 auto;
  width: 90%;
  max-width: 700px; }

#howto .product-name-en {
  margin-top: -0.4em;
  font-family: 'TexasHero';
  font-size: 100px;
  text-align: center;
  color: #fff; }
  @media only screen and (max-width: 640px) {
    #howto .product-name-en {
      font-size: 70px; } }

#howto .product-name-jp {
  margin-top: 0;
  font-size: 30px;
  text-align: center; }
  @media only screen and (max-width: 640px) {
    #howto .product-name-jp {
      font-size: 24px; } }

#howto .product-tx {
  margin-top: 2em;
  font-size: 18px;
  line-height: 2;
  text-align: center; }
  @media only screen and (max-width: 640px) {
    #howto .product-tx {
      font-size: 14px;
      line-height: 1.8;
      text-align: justify; } }

#howto .howto {
  position: relative;
  margin-top: 100px; }
  @media only screen and (max-width: 640px) {
    #howto .howto {
      margin-top: 50px; } }
  #howto .howto h3 {
    padding: 10px 0 12px;
    font-size: 24px;
    font-weight: 300;
    text-align: center;
    color: #fff;
    background: #7c664d;
    letter-spacing: 0.1em; }
    @media only screen and (max-width: 640px) {
      #howto .howto h3 {
        padding: 8px 0 10px;
        font-size: 17px; } }
  #howto .howto h4 {
    position: absolute;
    top: -0.8em;
    left: -25%;
    width: 150%;
    font-family: 'TexasHero';
    font-size: 60px;
    font-weight: 300;
    text-align: center; }
    @media only screen and (max-width: 640px) {
      #howto .howto h4 {
        font-size: 7vw; } }
  #howto .howto p {
    margin-top: 10px;
    padding: 40px 50px;
    width: 100%;
    font-size: 18px;
    line-height: 2;
    background: #fff;
    box-sizing: border-box; }
    @media only screen and (max-width: 640px) {
      #howto .howto p {
        padding: 10px 20px;
        font-size: 13px; } }

/* column
----------------------------------------------------*/
#column .contents {
  padding-top: 70px; }
  @media only screen and (max-width: 640px) {
    #column .contents {
      padding-top: 50px; } }

#column .column {
  margin: 0 auto;
  width: 90%;
  max-width: 700px; }

#column .column-header {
  position: relative;
  margin: 0 auto 0;
  width: 100%;
  height: 700px;
  border: solid 10px #f7f7f7;
  box-sizing: border-box;
  text-align: center; }
  @media only screen and (max-width: 640px) {
    #column .column-header {
      height: 90vw;
      border: solid 8px #f7f7f7; } }
  #column .column-header h2 {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    font-family: 'TexasHero';
    font-size: 60px;
    font-weight: 300; }
    @media only screen and (max-width: 640px) {
      #column .column-header h2 {
        width: 120%;
        transform: translate(-50%, -90%);
        font-size: 12vw;
        line-height: 0.9; } }
  #column .column-header h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 10%);
    width: 70%;
    padding: 10px 0;
    font-size: 25px;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #fff;
    background: #000; }
    @media only screen and (max-width: 640px) {
      #column .column-header h3 {
        width: 80%;
        padding: 3px 0 5px;
        font-size: 4.5vw;
        transform: translate(-50%, 50%); } }
  #column .column-header p {
    position: absolute;
    bottom: 10%;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    font-size: 18px;
    line-height: 2;
    letter-spacing: 0.1em; }
    @media only screen and (max-width: 640px) {
      #column .column-header p {
        bottom: 3%;
        font-size: 3.7vw; } }

#column .column-ph {
  margin-top: 150px; }
  @media only screen and (max-width: 640px) {
    #column .column-ph {
      margin-top: 50px; } }

#column .column-num {
  margin-top: 20px;
  font-family: 'Din';
  font-size: 80px;
  text-align: center; }
  @media only screen and (max-width: 640px) {
    #column .column-num {
      font-size: 60px; } }

#column .post-title {
  font-size: 24px;
  font-weight: 300;
  text-align: center; }
  @media only screen and (max-width: 640px) {
    #column .post-title {
      font-size: 20px; } }

#column .post-tx {
  margin-top: 1em;
  padding: 50px 50px;
  font-size: 18px;
  line-height: 2;
  text-align: justify;
  background: #f7f7f7;
  box-sizing: border-box; }
  @media only screen and (max-width: 640px) {
    #column .post-tx {
      padding: 30px;
      font-size: 14px;
      line-height: 1.8; } }

#column .post-date {
  margin-top: 1em;
  font-size: 14px;
  text-align: right; }
  @media only screen and (max-width: 640px) {
    #column .post-date {
      font-size: 12px; } }

#column .column-ph-col {
  margin-top: 100px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  @media only screen and (max-width: 640px) {
    #column .column-ph-col {
      margin-top: 60px; } }
  #column .column-ph-col .cap {
    margin-top: 0.2em;
    font-size: 16px;
    text-align: center; }
    #column .column-ph-col .cap span {
      padding-left: 0.3em;
      font-size: 80%; }
    @media only screen and (max-width: 640px) {
      #column .column-ph-col .cap {
        font-size: 12px; } }

#column .column-backnumber h3 {
  margin: 50px auto 0;
  width: 100%;
  padding: 5px 0;
  font-family: 'Cormorant Infant', serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  background: #000; }
  @media only screen and (max-width: 640px) {
    #column .column-backnumber h3 {
      padding: 3px 0 5px;
      font-size: 6vw; } }

#column .column-backnumber ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  #column .column-backnumber ul li {
    padding: 20px 0 0px;
    width: 10%;
    font-family: Din;
    font-size: 30px;
    text-align: center;
    box-sizing: border-box; }
    @media only screen and (max-width: 640px) {
      #column .column-backnumber ul li {
        width: 14.2857%;
        font-size: 24px; } }
  #column .column-backnumber ul li a {
    display: block; }

/* products
----------------------------------------------------*/
#products .contents {
  padding-top: 70px; }
  @media only screen and (max-width: 640px) {
    #products .contents {
      padding-top: 50px; } }

#products .product + .product {
  margin-top: 150px; }
  @media only screen and (max-width: 640px) {
    #products .product + .product {
      margin-top: 100px; } }

#products .product {
  margin: 0 auto;
  width: 90%;
  max-width: 700px; }

#products .product-name-en {
  margin-top: -0.4em;
  font-family: 'TexasHero';
  font-size: 100px;
  text-align: center; }
  @media only screen and (max-width: 640px) {
    #products .product-name-en {
      font-size: 70px; } }

#products .product-name-jp {
  margin-top: 90px;
  font-size: 30px;
  text-align: center; }
  @media only screen and (max-width: 640px) {
    #products .product-name-jp {
      margin-top: 40px;
      font-size: 24px; } }

#products .product-tx {
  margin-top: 2em;
  font-size: 18px;
  line-height: 2;
  text-align: center; }
  @media only screen and (max-width: 640px) {
    #products .product-tx {
      font-size: 14px;
      line-height: 1.8;
      text-align: justify; } }

#products .product-info {
  margin-top: 30px;
  padding: 20px 30px;
  width: 100%;
  font-size: 16px;
  line-height: 1.6;
  color: #614738;
  background: #f7f7f7;
  box-sizing: border-box; }
  @media only screen and (max-width: 640px) {
    #products .product-info {
      margin-top: 20px;
      padding: 10px 20px;
      font-size: 13px; } }

#products .btn-buy a {
  margin-top: 20px;
  width: 100%;
  display: block;
  padding: 8px 0 10px;
  font-size: 24px;
  text-align: center;
  color: #fff;
  background: #000;
  transition: background 0.3s; }
  @media only screen and (max-width: 640px) {
    #products .btn-buy a {
      font-size: 22px; } }
  #products .btn-buy a:hover {
    background: #614738; }

/* footer
----------------------------------------------------*/
#footer {
  margin-top: 120px; }
  @media only screen and (max-width: 640px) {
    #footer {
      margin-top: 70px; } }
  #footer .footer-logo {
    margin: 0 auto;
    width: 250px; }
    @media only screen and (max-width: 640px) {
      #footer .footer-logo {
        width: 40%; } }
  #footer .footer-nav {
    margin-top: 10px; }
    #footer .footer-nav ul {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: center;
      justify-content: center;
      -ms-flex-align: center;
      align-items: center;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      #footer .footer-nav ul:before {
        content: "|";
        margin-right: 0.5em; }
    #footer .footer-nav li {
      line-height: 2; }
    #footer .footer-nav li:after {
      content: "|";
      margin-left: 0.5em;
      padding-right: 0.5em; }
  #footer .copyright {
    margin: 30px 0 50px;
    color: #888;
    font-size: 90%;
    text-align: center; }
