@charset "UTF-8";
/* --------------------------------
[コーディングルール]
・基本classのみ使用し、idはアンカーやJSで使用
・class名、フォルダ名、ファイル名はハイフン(-）区切り
・トップページはロゴを<h1>、他のページはロゴを<p>でページタイトルを<h1>にする
・メディアクエリーはPCファーストで、@media screen and (max-width: 767px) {}を使用
-------------------------------- */
/* reset -------- */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

html {
  line-height: 1.5;
  font-size: 10px; }

body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  font-family: Helvetica Neue, Helvetica, Arial, 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  /*font-family: "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;*/
  font-size: 1.3rem;
  color: #333;
  -webkit-font-feature-settings: 'palt' 1;
  font-feature-settings: 'palt' 1;
  text-align: justify;
  text-justify: inter-ideograph;
  /*
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  */ }

article, aside, figure, footer, header, hgroup, nav, section {
  display: block; }

h1, h2, h3, h4, h5, h6, p, th, td, address, small, i {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: normal;
  font-style: normal; }

ol, ul, dl, dt, dd {
  list-style-type: none;
  margin: 0;
  padding: 0; }

img, object, embed, video {
  border: 0;
  vertical-align: bottom; }

img {
  max-width: 100%;
  /*
  backface-visibility;
  -webkit-backface-visibility;
  */ }

table {
  border-spacing: 0;
  border-collapse: collapse; }

th {
  text-align: left; }

em {
  font-style: normal;
  font-weight: bold; }

a {
  color: #000;
  text-decoration: none; }

a:hover {
  color: #000; }

/* body -------- */
body {
  padding-right: 0 !important; }
  body .body-inner {
    position: relative;
    left: 0;
    -webkit-transition: left .3s;
    -o-transition: left .3s;
    transition: left .3s; }
    body .body-inner:after {
      content: '';
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      width: 0;
      height: 0;
      background: rgba(0, 0, 0, 0.5);
      opacity: 0;
      -webkit-transition: opacity .3s;
      -o-transition: opacity .3s;
      transition: opacity .3s; }
  body.is-gnav-open {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    overflow: hidden; }
    body.is-gnav-open .body-inner:after {
      width: 100%;
      height: 100%; }
  body.is-gnav-open2 .body-inner {
    left: -280px; }
    body.is-gnav-open2 .body-inner:after {
      opacity: 1; }
  @media screen and (max-width: 767px) {
    body.is-gnav-open2 .body-inner {
      left: -200px; } }

/* header -------- */
.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%; }
  .header .sp-menu {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10; }
    .header .sp-menu a {
      display: block;
      position: absolute;
      right: 15px;
      top: 15px;
      width: 55px;
      height: 50px; }
      .header .sp-menu a span {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 25px;
        height: 2px;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
        .header .sp-menu a span:before {
          content: '';
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          width: 25px;
          height: 2px;
          background-color: #d9e100;
          -webkit-transition: all .3s;
          -o-transition: all .3s;
          transition: all .3s; }
        .header .sp-menu a span:nth-child(1):before {
          top: -9px; }
        .header .sp-menu a span:nth-child(3):before {
          top: 9px; }
      body.is-gnav-open .header .sp-menu a span:nth-child(1):before {
        top: 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg); }
      body.is-gnav-open .header .sp-menu a span:nth-child(2):before {
        opacity: 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg); }
      body.is-gnav-open .header .sp-menu a span:nth-child(3):before {
        top: 0;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg); }
      @media screen and (min-width: 768px) {
        body.is-gnav-open .header .sp-menu a:hover span:nth-child(1):before {
          background-color: rgba(0, 0, 0, 0.5); }
        body.is-gnav-open .header .sp-menu a:hover span:nth-child(2):before {
          background-color: rgba(0, 0, 0, 0.5); }
        body.is-gnav-open .header .sp-menu a:hover span:nth-child(3):before {
          background-color: rgba(0, 0, 0, 0.5); } }
    @media screen and (max-width: 767px) {
      .header .sp-menu a {
        right: 5px;
        top: 5px; } }
  .header .gnav {
    position: absolute;
    right: 0;
    top: 0;
    overflow-y: auto;
    width: 280px;
    height: 100vh;
    background-color: #fff;
    text-align: center;
    -webkit-transform: translateX(280px);
    -ms-transform: translateX(280px);
    transform: translateX(280px);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s; }
    body.is-gnav-open2 .header .gnav {
      display: block;
      -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0); }
    .header .gnav .gnav-inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      height: 100%;
      padding: 70px 30px 0; }
    .header .gnav ul {
      padding-top: 10px;
      padding-bottom: 17px;
      border-top: 1px solid #d9e100;
      border-bottom: 1px solid #d9e100; }
      .header .gnav ul li a {
        display: block;
        padding: 17px 0; }
        .header .gnav ul li a img {
          -webkit-transition: -webkit-filter .3s;
          transition: -webkit-filter .3s;
          -o-transition: filter .3s;
          transition: filter .3s;
          transition: filter .3s, -webkit-filter .3s; }
        @media screen and (min-width: 768px) {
          .header .gnav ul li a:hover img {
            -webkit-filter: grayscale(100%) brightness(60%);
            filter: grayscale(100%) brightness(60%); } }
    .header .gnav .gnav-logo {
      margin-top: auto;
      padding-top: 30px;
      padding-bottom: 30px; }
      .header .gnav .gnav-logo img {
        -webkit-transition: -webkit-filter .3s;
        transition: -webkit-filter .3s;
        -o-transition: filter .3s;
        transition: filter .3s;
        transition: filter .3s, -webkit-filter .3s; }
      @media screen and (min-width: 768px) {
        .header .gnav .gnav-logo:hover img {
          -webkit-filter: grayscale(100%) brightness(60%);
          filter: grayscale(100%) brightness(60%); } }
    @media screen and (max-width: 767px) {
      .header .gnav {
        width: 200px; }
        .header .gnav .gnav-inner {
          padding: 60px 20px 0; }
        .header .gnav ul {
          padding-top: 0;
          padding-bottom: 10px; }
          .header .gnav ul li a {
            display: block;
            padding: 10px 0; }
        .header .gnav .gnav-logo {
          padding-top: 20px;
          padding-bottom: 20px; } }

/* content -------- */
.content {
  line-height: 1.8;
  font-size: 1.4rem;
  letter-spacing: .02em; }
  .content .content-title {
    padding: 15px;
    background-color: #ddd;
    text-align: center;
    font-size: 24px; }

/* footer -------- */
.footer {
  background-color: #fff; }
  .footer .footer-inner {
    padding: 14px 15px; }
  .footer .copyright {
    font-size: 12px;
    text-align: center; }
    @media screen and (max-width: 767px) {
      .footer .copyright {
        font-size: 8px; } }

/* --------------------------------
[module.cssについて]
・共通レイアウトと共通タグを記述
-------------------------------- */
/* all -------- */
.clearfix {
  zoom: 1; }

.clearfix:after {
  content: "";
  display: block;
  clear: both; }

.container {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px; }
  @media screen and (max-width: 767px) {
    .container {
      padding-left: 25px;
      padding-right: 25px; } }

.text-center {
  text-align: center; }

.text-right {
  text-align: right; }

.display-inline {
  display: inline; }

.display-inline-block {
  display: inline-block; }

.display-block {
  display: block; }

.display-table {
  display: table; }

.display-table-cell {
  display: table-cell; }

@media screen and (max-width: 767px) {
  .pc {
    display: none !important; } }

@media screen and (min-width: 768px) {
  .sp {
    display: none !important; }
  .over {
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s; }
  .over:hover {
    opacity: 0.7; } }

/* wordpress editor -------- */
.format .aligncenter {
  display: block;
  margin: 0 auto; }

.format .alignright {
  float: right; }

.format .alignleft {
  float: left; }

.format img[class*="wp-image-"],
.format img[class*="attachment-"] {
  max-width: 100%;
  height: auto; }

/* format -------- */
.format a {
  color: #03c;
  text-decoration: none; }

.format a:hover {
  color: #69f; }

.format h2 {
  margin: 30px 0 20px;
  font-size: 24px;
  font-weight: bold; }

.format h3 {
  margin: 30px 0 20px;
  font-size: 18px;
  font-weight: bold; }

.format p,
.format ul,
.format ol,
.format table {
  margin-bottom: 20px; }

.format li {
  margin-bottom: 10px; }

.format ul {
  list-style-type: disc;
  padding-left: 1.5em; }

.format ol {
  list-style-type: decimal;
  padding-left: 1.5em; }

.format hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #999; }

.format table {
  width: 100%; }

.format th {
  width: 150px;
  padding: 10px 20px;
  border: 1px solid #999;
  background-color: #eee; }

.format td {
  padding: 10px 20px;
  border: 1px solid #999; }

/* remodal -------- */
.remodal-overlay {
  background-color: #fff; }

.remodal-wrapper {
  padding: 0 !important; }

.remodal {
  max-width: 100% !important;
  padding: 80px 80px 75px;
  margin: 0 !important; }

.remodal.type-image {
  padding: 0; }

.remodal-all-close {
  position: fixed;
  z-index: 99999;
  display: none;
  right: 15px !important; }

@media screen and (max-width: 767px) {
  .remodal-all-close {
    right: 0 !important; } }

.remodal-close {
  display: none;
  left: auto;
  right: -100px;
  width: 60px;
  height: 60px; }

.remodal-close:before {
  content: '';
  top: 36px;
  left: 6px;
  width: 25px;
  height: 2px;
  background-color: #000;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.remodal-close:after {
  content: '';
  position: absolute;
  top: 36px;
  left: 6px;
  width: 25px;
  height: 2px;
  background-color: #000;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

@media screen and (max-width: 767px) {
  .remodal {
    padding: 40px 20px; }
  .remodal-close {
    left: auto;
    right: 0;
    width: 45px;
    height: 45px; }
  .remodal-close:before,
  .remodal-close:after {
    top: 25px; } }

.modal-content {
  max-width: 1160px;
  margin: 0 auto;
  line-height: 2;
  font-size: 16px;
  letter-spacing: .1em;
  font-family: 'Noto Serif Japanese'; }

.modal-inner {
  max-width: 672px;
  margin: 0 auto;
  text-align: left; }

.modal-content .image {
  margin: 70px 0;
  text-align: center; }

.modal-content h3 {
  margin: 1em 0;
  text-align: center;
  font-weight: bold; }

.modal-content h3:first-child {
  margin-top: 0; }

.modal-content .note {
  margin-top: 72px;
  font-size: 12px;
  line-height: 1.66;
  letter-spacing: 0;
  text-align: justify; }

@media screen and (max-width: 767px) {
  .modal-content {
    line-height: 1.85;
    font-size: 14px; }
  .modal-content .image {
    margin: 50px 0; } }

/* m-home-slider -------- */
.m-home-slider-wrap {
  overflow: hidden; }

.m-home-slider {
  margin-bottom: 100px !important; }
  .m-home-slider .slide {
    width: calc(100vw - 15px - 250px);
    padding: 0 25px; }
    .m-home-slider .slide:focus {
      outline: none; }
  .m-home-slider .slick-dots {
    bottom: -40px; }
    .m-home-slider .slick-dots li {
      margin: 0 2px; }
  .m-home-slider .slick-prev {
    z-index: 10;
    width: 150px;
    height: 100%;
    left: 0;
    background: url(../images/module/slick-prev.svg) no-repeat right 21px center !important;
    background-size: 7px auto !important; }
    .m-home-slider .slick-prev:before {
      display: none; }
  .m-home-slider .slick-next {
    z-index: 10;
    width: 150px;
    height: 100%;
    right: 0;
    background: url(../images/module/slick-next.svg) no-repeat 21px center !important;
    background-size: 7px auto !important; }
    .m-home-slider .slick-next:before {
      display: none; }
  @media screen and (max-width: 767px) {
    .m-home-slider {
      margin-bottom: 60px !important; }
      .m-home-slider .slide {
        width: calc(100vw - 76px);
        padding: 0 12px; }
      .m-home-slider .slick-dots {
        bottom: -40px; }
        .m-home-slider .slick-dots li {
          margin: 0 0; }
          .m-home-slider .slick-dots li button {
            -webkit-transform: scale(0.8);
            -ms-transform: scale(0.8);
            transform: scale(0.8); }
      .m-home-slider .slick-prev {
        width: 52px;
        background-size: 6px auto !important;
        background-position: right 19px center !important; }
      .m-home-slider .slick-next {
        width: 52px;
        background-size: 6px auto !important;
        background-position: 19px center !important; } }

/* --------------------------------
[page.cssについて]
・各ページごとのCSSを記述
・必ず.page-homeなど各ページごとのclassを付ける
-------------------------------- */
/* page-home -------- */
.page-home {
  /* sec */
  /* kv */
  /* story */
  /* sec-movie */
  /* stylehunter1 */
  /* interview */
  /* bnr */
  /* stylehunter2 */
  /* products */ }
  .page-home .sec {
    background-color: #fff; }
    .page-home .sec .sec-title {
      padding: 43px 0 42px;
      text-align: center;
      font-size: 1rem;
      line-height: 1; }
      @media screen and (max-width: 767px) {
        .page-home .sec .sec-title {
          padding: 25px 0 24px; } }
  .page-home .sec-kv {
    position: relative;
    height: 100vh;
    background: url(../images/home/kv-bg.jpg) no-repeat center center;
    background-size: cover; }
    .page-home .sec-kv .logo {
      padding: 30px 0 0 30px; }
      @media screen and (max-width: 767px) {
        .page-home .sec-kv .logo {
          padding: 20px 0 0 20px; } }
    .page-home .sec-kv .title {
      position: absolute;
      left: 0;
      top: 50%;
      width: 100%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      text-align: center; }
      .page-home .sec-kv .title img {
        height: 70vh; }
      @media screen and (max-width: 767px) {
        .page-home .sec-kv .title img {
          height: 60vh; } }
    .page-home .sec-kv .scroll {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      text-align: center; }
      .page-home .sec-kv .scroll a {
        position: relative;
        display: block;
        padding: 18px;
        font-size: 1rem;
        line-height: 1; }
  .page-home .sec-story {
    background-color: #fff4e0;
    background: url(../images/home/story-bg.jpg) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    text-align: center; }
    @media screen and (max-width: 767px) {
      .page-home .sec-story {
        background: none; }
        .page-home .sec-story .sp-bg {
          display: none;
          position: fixed;
          left: 0;
          top: 0;
          right: 0;
          bottom: 0;
          z-index: -1;
          background: url(../images/home/story-bg.jpg) no-repeat center center;
          background-size: cover; }
          .page-home .sec-story .sp-bg.is-show {
            display: block; } }
    .page-home .sec-story .sec-inner {
      padding-bottom: 100px; }
      @media screen and (max-width: 767px) {
        .page-home .sec-story .sec-inner {
          padding-bottom: 60px; } }
    .page-home .sec-story .block1 {
      padding-top: 100px; }
      .page-home .sec-story .block1 .title {
        position: relative;
        z-index: 1; }
      .page-home .sec-story .block1 .image {
        margin-top: -70px; }
      @media screen and (max-width: 767px) {
        .page-home .sec-story .block1 {
          padding-top: 60px; }
          .page-home .sec-story .block1 .image {
            margin-top: -40px; } }
    .page-home .sec-story .block2 .title {
      margin-top: -30px;
      margin-bottom: 70px; }
    .page-home .sec-story .block2 .text {
      margin-bottom: 70px;
      font-size: 1.6rem;
      letter-spacing: .05em;
      line-height: 2; }
      .page-home .sec-story .block2 .text p {
        font-weight: 700; }
    @media screen and (max-width: 767px) {
      .page-home .sec-story .block2 .title {
        margin-top: -20px;
        margin-bottom: 45px; }
      .page-home .sec-story .block2 .text {
        margin-bottom: 45px;
        font-size: 1.5rem;
        text-align: left; }
      .page-home .sec-story .block2 .image {
        padding: 0 25px; } }
  .page-home .sec-movie .sec-inner {
    padding-top: 100px;
    padding-bottom: 57px; }
    @media screen and (max-width: 767px) {
      .page-home .sec-movie .sec-inner {
        padding-top: 60px;
        padding-bottom: 30px; } }
  .page-home .sec-movie .movie {
    padding: 0 100px; }
    .page-home .sec-movie .movie video {
      width: 100%; }
    @media screen and (max-width: 767px) {
      .page-home .sec-movie .movie {
        padding: 0; } }
  .page-home .sec-interview {
    background-color: #e7e5d9; }
    .page-home .sec-interview .sec-inner {
      padding-bottom: 100px; }
      .page-home .sec-interview .sec-inner a {
        text-decoration: underline; }
        .page-home .sec-interview .sec-inner a:hover {
          text-decoration: none; }
      @media screen and (max-width: 767px) {
        .page-home .sec-interview .sec-inner {
          padding-bottom: 50px; } }
    .page-home .sec-interview .block-title {
      margin-bottom: 70px; }
      .page-home .sec-interview .block-title .text1 {
        margin-top: 3px; }
      @media screen and (max-width: 767px) {
        .page-home .sec-interview .block-title {
          margin-bottom: 50px; }
          .page-home .sec-interview .block-title .text1 {
            margin-top: -6px; } }
    .page-home .sec-interview .block-image {
      margin-bottom: 70px; }
      .page-home .sec-interview .block-image .cap {
        margin-top: 18px;
        line-height: 1.66;
        font-size: 1.2rem; }
      @media screen and (max-width: 767px) {
        .page-home .sec-interview .block-image {
          margin-bottom: 45px; }
          .page-home .sec-interview .block-image .cap {
            margin-top: 10px; } }
    .page-home .sec-interview .block-text {
      margin-bottom: 45px;
      -webkit-column-count: 2;
      column-count: 2;
      -webkit-column-gap: 50px;
      column-gap: 50px; }
      @media screen and (max-width: 767px) {
        .page-home .sec-interview .block-text {
          -webkit-column-count: unset;
          column-count: unset; } }
    .page-home .sec-interview .box-image {
      margin-top: 65px; }
      .page-home .sec-interview .box-image .cap {
        margin-top: 18px;
        line-height: 1.66;
        font-size: 1.2rem; }
      @media screen and (max-width: 767px) {
        .page-home .sec-interview .box-image {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
          margin-top: 45px;
          margin-bottom: -20px; }
          .page-home .sec-interview .box-image .image {
            -ms-flex-preferred-size: 60%;
            flex-basis: 60%; }
          .page-home .sec-interview .box-image .cap {
            -ms-flex-preferred-size: 35%;
            flex-basis: 35%;
            margin-top: 0; } }
    .page-home .sec-interview .block-prof {
      padding: 0 20px;
      border-left: 1px solid #00375a;
      border-right: 1px solid #00375a;
      line-height: 1.66;
      font-size: 1.2rem; }
      .page-home .sec-interview .block-prof .name {
        margin-bottom: 13px;
        font-weight: 700; }
        .page-home .sec-interview .block-prof .name .en {
          display: inline-block;
          margin-right: .5em;
          font-size: 1.6rem;
          color: #00375a; }
      .page-home .sec-interview .block-prof em {
        color: #00375a; }
      @media screen and (max-width: 767px) {
        .page-home .sec-interview .block-prof {
          padding: 0 15px; }
          .page-home .sec-interview .block-prof .name {
            margin-bottom: 5px; }
            .page-home .sec-interview .block-prof .name .en {
              font-size: 1.4rem; } }
    @media screen and (max-width: 767px) {
      .page-home .sec-interview .block-text2 .box-image {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row; } }
    @media screen and (min-width: 768px) {
      .page-home .sec-interview .block-text3 .box-image {
        margin-top: 5px; } }
  .page-home .sec-bnr .sec-inner {
    padding: 75px 0 45px;
    background-color: #ffe47b;
    text-align: center; }
    @media screen and (max-width: 767px) {
      .page-home .sec-bnr .sec-inner {
        padding: 25px 0 10px; } }
  .page-home .sec-bnr .bnr a {
    display: block; }
  .page-home .sec-bnr .bnr .image {
    margin-bottom: 5px;
    -webkit-transition: background-color .3s;
    -o-transition: background-color .3s;
    transition: background-color .3s; }
  @media screen and (min-width: 768px) {
    .page-home .sec-bnr .bnr a:hover .image {
      background-color: #fff0b4; } }
  @media screen and (max-width: 767px) {
    .page-home .sec-bnr .bnr .image {
      margin-bottom: -10px; } }
  .page-home .sec-products {
    background-color: #337da2;
    -webkit-transition: background-color .3s;
    -o-transition: background-color .3s;
    transition: background-color .3s; }
    .page-home .sec-products .block {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      max-width: 800px;
      margin: 0 auto;
      padding: 75px 0; }
      .page-home .sec-products .block:nth-child(1) {
        padding-top: 0; }
      @media screen and (max-width: 767px) {
        .page-home .sec-products .block {
          display: block;
          padding: 45px 0; } }
    .page-home .sec-products .box {
      -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
      padding: 0 15px;
      color: #fff;
      line-height: 1.66;
      text-align: center;
      -moz-osx-font-smoothing: grayscale;
      -webkit-font-smoothing: antialiased; }
      .page-home .sec-products .box .image {
        margin-bottom: 27px; }
      .page-home .sec-products .box .name-en {
        margin-bottom: 14px; }
      .page-home .sec-products .box .name {
        margin-bottom: 14px;
        font-size: 1.4rem;
        font-weight: 700; }
      .page-home .sec-products .box a {
        display: block;
        color: #fff; }
      .page-home .sec-products .box .price {
        margin-bottom: 13px;
        font-size: 1.2rem; }
      .page-home .sec-products .box .buy {
        margin-bottom: 26px; }
      .page-home .sec-products .box .text {
        max-width: 310px;
        margin: 0 auto;
        text-align: left;
        font-size: 1.2rem; }
      @media screen and (max-width: 767px) {
        .page-home .sec-products .box {
          padding: 0 50px; }
          .page-home .sec-products .box:nth-child(1) {
            margin-bottom: 45px; }
          .page-home .sec-products .box .image {
            margin-bottom: 25px; }
            .page-home .sec-products .box .image img {
              max-width: 240px;
              padding-top: 0 !important; }
          .page-home .sec-products .box .name-en {
            margin-bottom: 13px; }
          .page-home .sec-products .box .name {
            margin-bottom: 8px;
            font-size: 1.2rem; }
          .page-home .sec-products .box .price {
            margin-bottom: 6px;
            font-size: .9rem; }
          .page-home .sec-products .box .buy {
            margin-bottom: 21px; }
            .page-home .sec-products .box .buy img {
              width: 28px; } }

/* --------------------------------
[post.cssについて]
・WordPressのindex.php、single.php内の記事出力HTMLで使用
-------------------------------- */
/* index-posts -------- */
/* single-posts -------- */
