﻿@charset "UTF-8";
/*===== BASE =====*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
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 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.clear {
  clear: both;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
}

/*==== PLEASE REMOVE ====*/
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
/*===== COMMON =====*/
html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  font-size: 14px;
  font-family: Meiryo, "Kozuka Gothic Pro", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-text-size-adjust: none;
  line-height: 1.4;
  color: #000;
  margin-top: 130px;
}
body.fixed {
  overflow: hidden;
  position: fixed;
}

.container {
  width: 100%;
  min-width: 1000px;
  overflow: hidden;
}

.wrapper {
  width: 1000px;
  margin: 0 auto;
}

.ft-serif {
  font-family: "Hiragino Mincho Pro", Times, "Times New Roman", Georgia, serif;
}

a:link,
a:visited,
a:active {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.trans {
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  opacity: 1;
}

.trans:hover {
  filter: alpha(opacity=80);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  -webkit-opacity: 0.8;
  -khtml-opacity: 0.8;
  -moz-opacity: 0.8;
  -ms-opacity: 0.8;
  -o-opacity: 0.8;
  opacity: 0.8;
}

.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
  text-justify: distribute;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.sm {
  display: none !important;
}

.regu {
  font-family: "YuMincho-Regular";
}

/**/
@media (max-width: 750px) {
  .md {
    display: none !important;
  }

  .sm {
    display: block !important;
  }

  .container {
    width: 100%;
    min-width: 0;
    position: relative;
  }

  .wrapper {
    width: auto;
    margin: 0;
    padding: 0;
  }
}
/*===== COMMON PARTS =====*/
header {
  padding: 29px 0 28px;
  background: #fff;
}
.hd-block.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
header .main-header {
  position: relative;
}
header .main-header .logo {
  float: left;
  width: 200px;
}
header .main-header .navigation {
  float: right;
  margin-top: 2px;
}
header .main-header .navigation ul li {
  display: inline-block;
  /*margin-left: 47px;*/
  margin-left: 35px;
}
header .main-header .navigation ul li a {
  font-family: 'DINCondensed-Bold';
  font-size: 20px;
  letter-spacing: 0.04em;
  color: #000;
  text-decoration: none;
  padding-bottom: 5px;
  position: relative;
}
header .main-header .navigation ul li a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  transition: all 0.6s ease;
  border-bottom: 2px solid #000;
}
header .main-header .navigation ul li a.disabled {
  color: #ccc;
  pointer-events: none;
}
header .main-header .navigation ul li:hover a:after {
  width: 100%;
}
header .main-header .navigation ul li.active a {
  border-bottom: 2px solid black;
}
header .main-header .navigation ul li.active a:after {
  border-bottom: 2px solid #000;
}
header .main-header .shop-btn {
  position: absolute;
  right: 0;
  top: 0;
}
header .main-header .shop-btn .shop-open {
  font-family: 'DINCondensed-Bold';
  font-size: 20px;
  letter-spacing: 0.04em;
  background: #231815;
  color: white;
  padding: 2px 10px 1px;
  text-decoration: none;
  display: block;
}
header .shop-menu {
  position: absolute;
  right: 0;
  top: 100%;
  width: 250px;
  display: none;
  z-index: 99;
}
header .shop-menu li {
  display: block;
}
header .shop-menu li a {
  display: block;
  color: white;
  font-size: 13px;
  background: #000 url("../img/icon01.png") no-repeat 94% 50%;
  text-decoration: none;
  padding: 15px 13px;
}
header .shop-menu li:nth-child(even) a {
  background: #1A1A1A url("../img/icon01.png") no-repeat 94% 50%;
}

.breadcrumb {
  margin-bottom: 18px;
}
.breadcrumb .main-breadcrumb li {
  display: inline-block;
  font-size: 10px;
  vertical-align: middle;
  color: #000;
}
.breadcrumb .main-breadcrumb li a {
  color: #000;
}

@media (max-width: 750px) {
  header {
    padding: 29px 20px 27px;
  }
  header .main-header .logo {
    width: 42%;
  }
  header .main-header .navigation {
    width: 100%;
    margin-right: 0;
    margin-top: 62px;
  }
  header .main-header .navigation ul {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  header .main-header .navigation ul li {
    display: table-cell;
    text-align: center;
    margin-left: 0;
  }
  header .main-header .navigation ul li a {
    font-size: 28px;
    letter-spacing: 0.04em;
  }
  header .main-header .shop-btn {
    position: absolute;
    right: 0;
    top: 0px;
  }
  header .main-header .shop-btn .shop-open {
    font-size: 27px;
    padding: 14px 13px 8px;
    background: #000;
    line-height: 1;
  }
  header .shop-menu {
    position: fixed;
    right: 0;
    top: 74px;
    width: 100%;
    height: 100%;
    background: #000;
  }
  header .shop-menu li {
    display: block;
  }
  header .shop-menu li a {
    display: block;
    color: white;
    font-size: 26px;
    background: #000 url("../img/icon01.png") no-repeat 94% 50%;
    text-decoration: none;
    padding: 26px 55px;
  }
  header .shop-menu li:nth-child(even) a {
    background: #1A1A1A url("../img/icon01.png") no-repeat 94% 50%;
  }
}
footer {
  background: #000;
  padding: 11px 0;
  position: relative;
}
footer .main-footer {
  padding: 0 6px 0 3px;
}
footer .main-footer .menu-ft {
  float: left;
}
footer .main-footer .menu-ft li {
  display: inline-block;
  border-right: 1px solid #fff;
  padding: 0 9px;
}
footer .main-footer .menu-ft li a {
  font-size: 10px;
  color: white;
  text-decoration: none;
  line-height: 1em;
  display: block;
}
footer .main-footer .menu-ft li:last-child {
  border: none;
}
footer .main-footer .menu-ft li:first-child {
  padding-left: 0;
}
footer .main-footer .copy-right {
  float: right;
  font-size: 10px;
  color: white;
}

.to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 9999;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -khtml-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  opacity: 0;
}
.to-top.show {
  opacity: 1;
}
.to-top.absolute {
  position: absolute;
  top: -71px;
}

.sp-nav, .sp-nav-btn {
  display: none;
}

.pre {
  width: 0px;
  height: 0px;
  display: inline;
  background-image: url(../img/btn_sp_nav_01.png);
  background-image: url(../img/btn_sp_nav_02.png);
}

@media (max-width: 750px) {
  .to-top {
    right: 20px;
    bottom: 120px;
    width: 50px;
    height: 50px;
  }
  .to-top.show {
    opacity: 1;
  }
  .to-top.absolute {
    position: fixed;
    top: auto;
    bottom: 120px;
  }

  footer {
    padding: 26px 0 21px;
  }
  footer .main-footer {
    padding: 0;
  }
  footer .main-footer .menu-ft {
    width: 100%;
    text-align: center;
  }
  footer .main-footer .menu-ft li {
    display: inline-block;
    border-right: 1px solid #fff;
    padding: 0 18px;
  }
  footer .main-footer .menu-ft li a {
    font-size: 16px;
  }
  footer .main-footer .menu-ft li:last-child {
    padding-right: 0;
  }
  footer .main-footer .copy-right {
    font-size: 16px;
    margin-top: 12px;
    width: 100%;
    text-align: center;
  }
  .navigation, .shop-btn, .nav-sub {
    display: none;
  }
  .sp-nav-btn {
    
  }
  .sp-nav {
    /*display: block;*/
    position: relative;
    color: #FFF;
  }
  .sp-nav ul {
    width: 100%;
    font-size: 25px;
  }
  .sp-nav li {
    width: 100%;
  }
  .sp-nav li a {
    display: block;
    padding: 30px 37px;
    color: #FFF;
  }
  .sp-nav li:nth-child(odd) {
    background: #000 url("../img/icon01.png") no-repeat 94% 50%;
  }
  .sp-nav li:nth-child(even) {
    background: #1A1A1A url("../img/icon01.png") no-repeat 94% 50%;
  }
  .sp-nav .nav-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 90vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-main {
     overflow: auto;
     -webkit-overflow-scrolling: touch;
  }
  .nav-main .nav-subwrapper {
  }
  .sp-nav-btn {
    display: block;
    position: absolute;
    right: 10px;
    top: 26px;
    /*float: right;*/
    margin-top: 10px;
    margin-right: 20px;
    width: 50px;
    height: 50px;
    background: url(../img/btn_sp_nav_01.png) no-repeat;
  }
  .sp-nav-btn.open {
    background: url(../img/btn_sp_nav_02.png) no-repeat;
  }
}
/*===== COMMON PAGES =====*/
.main {
  padding-bottom: 149px;
}
body.page-home .main {
  padding-bottom: 0;
}

.btn-social {
  text-align: center;
  margin-top: 80px;
}
.btn-social ul li {
  display: inline-block;
  margin: 0 19px;
}

.ttl-common {
  text-align: center;
}
.ttl-common a {
  display: inline-block;
  transition: .5s ease;
}
.ttl-common a:hover {
  opacity: .7;
}

.banner .slick-next {
  right: -35px;
}
.banner .slick-prev {
  left: -35px;
}
.banner .slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
  width: 9px;
  height: 9px;
  background: #FFF;
  border-radius: 50%;
  box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.5);
}

.banner .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.banner .slick-dots li button:hover,
.banner .slick-dots li button:focus {
  outline: none;
}

.banner .slick-dots li button:hover:before,
.banner .slick-dots li button:focus:before {
  opacity: 1;
}

.banner .slick-dots li button:before {
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.banner .slick-dots li.slick-active {
  background: #666;
}

.banner .slick-dots li.slick-active button:before {
  opacity: .75;
  color: black;
}

/*  ITEM  */

.item {
  padding: 0 ;
  margin-top: 80px;
}

.item .list-item {
  margin-top: 60px;
}

.item .list-item  li {
  width: 168px;
  text-align: center;
/*  border: #AFAFAF 1px solid;*/
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 3px;
}

.item .list-item  li img {
  width: 100%;
}

.item .list-item  li .item-img {
  position: relative;
  overflow: hidden;
  height: 168px;
}
.item .list-item  li .item-img .item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  color: #FFF;
  transition: opacity 0.1s linear;
  opacity: 0;
  cursor: pointer;
}

.item .list-item li a:hover .item-img .item-overlay {
  opacity: 1;
}

.item-overlay .item-txt {
  font-size: 16px;
  line-height: 1.5;
  padding: 10px;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.item-overlay .txt-brand {
  font-size: 12px;
  margin-bottom: 5px;
}

.item-overlay .txt-name {
  margin-bottom: 5px;
  line-height: 1.3;
}

.special {
  padding: 0 50px;
  margin-top: 80px;
}
.special .list-special {
  margin-top: 43px;
}
.special .list-special .block-special {
  margin-bottom: 58px;
}
.special .list-special .block-special p,
.special .list-special .clm2 .block-special_clm2 p {
  font-size: 16px;
  line-height: 1.5em;
  font-weight: bold;
  margin-top: 17px;
}

.special .list-special .clm2 {
  display: flex;
  align-items: flex-start;
  margin-bottom: 70px;
}

.special .list-special .clm2 .block-special_clm2 {
  width: 430px;
}

.special .list-special .clm2 .box01 {
 margin-right: 40px; 
}
/* .special .list-special .clm2 .box02 {
  background: #F5F5F5;
} */

.special .list-special .clm2 .info-ttl {
  padding: 20px 0 25px 20px;
  background: #FFF;
}
.special .list-special .clm2 p {
  margin-top: 0;
  padding: 0 12px 12px;
}

.more-btn {
  text-align: center;
}
.more-btn a {
  font-size: 26px;
  font-family: 'SairaSemiCondensed-SemiBold';
  line-height: 1em;
  display: inline-block;
}
.more-btn a span {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
}
.more-btn a.disabled {
  color: #ccc;
  pointer-events: none;
}

.news {
  margin-top: 80px;
}
.campaign {
  margin-top: 90px;
}
.news .more-btn, .campaign .more-btn {
  margin-top: 65px;
}

.list-layout01 {
  margin: 50px auto 0;
  display: flex;
  flex-wrap: wrap;
}
.list-layout01 .item {
  width: calc(33.33% - 20px);
  margin: 0 30px 30px 0;
}
.list-layout01 .item:nth-child(3n) {
  margin-right: 0;
}
@media (min-width: 750px) {
  .list-layout01 .item:nth-child(7),
  .list-layout01 .item:nth-child(8) {
    display: none;
  }
}
.list-layout01 .img {
  position: relative;
}
.list-layout01 .img:after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .3);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: .5s ease;
}
.list-layout01 .img .more {
  padding: 0 18px;
  font-family: 'SairaSemiCondensed-SemiBold';
  font-size: 34px;
  color: #fff;
  border: 4px solid #fff;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%,-50%,0);
          transform: translate3d(-50%,-50%,0);
  z-index: 1;
  opacity: 0;
  transition: .5s ease;
}
.list-layout01 .date {
  margin-top: 15px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: -.02em;
  line-height: 1;
}
.list-layout01 .txt01 {
  margin-top: 9px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5625;
}
.list-layout01 a:hover {
  text-decoration: none;
}
.list-layout01 a:hover .img:after {
  opacity: 1;
}
.list-layout01 a:hover .more {
  opacity: 1;
}
.blog {
  margin-top: 116px;
}
.blog .list-blog {
  padding: 0 20px;
  margin-top: 44px;
  margin-bottom: 46px;
  width: 100%;
  position: relative;
  -js-display: flex;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.blog .list-blog .blog-child {
  width: 300px;
  position: relative;
  margin-right: 30px;
  margin-bottom: 30px;
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog .list-blog .blog-child .info-blog {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.5s ease;
}
.blog .list-blog .blog-child .info-blog span {
  display: block;
  color: white;
}
.blog .list-blog .blog-child .info-blog span.date {
  font-family: 'SairaSemiCondensed-SemiBold';
  font-size: 34px;
  margin-top: 100px;
}
.blog .list-blog .blog-child .info-blog span.store {
  font-size: 18px;
  margin-top: 11px;
  margin-bottom: 45px;
}
.blog .list-blog .blog-child .info-blog a {
  font-size: 20px;
  font-family: 'SairaSemiCondensed-Regular';
  color: white;
  border: 4px solid white;
  text-decoration: none;
  padding: 0px 18px;
  display: inline-block;
}
.blog .list-blog .blog-child:nth-child(3n) {
  margin-right: 0;
}
.blog .list-blog .blog-child:hover .info-blog {
  opacity: 1;
}
.blog .list-blog .blog-child img {
  width: 100%;
}

.instagram {
  margin-top: 90px;
  padding: 100px 0 70px;
  background: #B2B2B1;
  overflow: hidden;
}
.instagram .list-insta {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  position: relative;
  z-index: 1;
}
.instagram .list-insta:before {
  content: "";
  width: 565px;
  height: 164px;
  background: url(../img/ttl_instagram.png) no-repeat center;
  background-size: cover;
  position: absolute;
  top: -110px;
  left: -40px;
  z-index: -1;
}
.instagram .insta {
  width: calc(16.66% - 15px);
  margin: 0 18px 0 0;
}
.instagram .insta:last-child {
  margin-right: 0;
}
.instagram .insta a {
  display: block;
  transition: .5s ease;
}
.instagram .insta a:hover {
  opacity: .7;
}
.instagram .more-btn {
  width: 1000px;
  margin: 20px auto 0;
  text-align: right;
}
.instagram .more-btn a {
  color: #fff;
}
.instagram .insta img,
.instagram .insta video {
  aspect-ratio: 1/1;
  width: 100%;
  object-fit: cover;
}


/*@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .instagram .insta a img {
    height: 100%;
  }
}
.ie9 .instagram .insta a img {
  height: auto;
}*/

@media (max-width: 750px) {
  .btn-social {
    margin-top: 80px;
  }
  .btn-social ul li {
    margin: 0 30px;
  }
  .btn-social ul li img {
    height: 60px;
    width: 60px;
    max-width: inherit;
  }

  .ttl-common img {
    max-width: inherit;
    height: 73px;
  }

  .item {
    padding: 0;
    margin-top: 80px;
  }
  .item .list-item {
    padding: 0 7%;
    box-sizing: border-box;
  }
  .item .list-item ul {
    
  }
  .item .list-item li {
    
  }
  .item .list-item li .item-img {
    height: auto;
    padding-bottom: 10px;
  }
  .slick-next {
    right: -6% !important;
  }
  .slick-prev {
    left: -6% !important;
  }

  .special {
    padding: 0;
    margin-top: 80px;
  }
  .special .list-special {
    margin-top: 56px;
  }
  .special .list-special .block-special {
    margin-bottom: 76px;
  }
  .special .list-special .block-special p {
    font-size: 26px;
    margin-top: 24px;
    padding: 0 55px;
  }
  .special .list-special .block-special:last-child {
    margin-bottom: 46px;
  }
  .special .list-special .clm2 .block-special_clm2 p {
    font-size: 26px;
  }

  .more-btn a {
    font-size: 26px;
  }
  .more-btn a span {
    display: inline-block;
    margin-left: 8px;
  }
  .more-btn a img {
    height: 16px;
    max-width: inherit;
  }
  .list-layout01 {
    padding: 0 55px;
    flex-wrap: wrap;
  }
  .list-layout01 .item {
    width: calc(50% - 15px);
    margin: 30px 30px 0 0;
  }
  .list-layout01 .item:nth-child(3n) {
    margin-right: 30px;
  }
  .list-layout01 .item:nth-child(-n+2) {
    margin-top: 0;
  }
  .list-layout01 .item:nth-child(2n) {
    margin-right: 0;
  }
  .list-layout01 .item:nth-child(7), .list-layout01 .item:nth-child(8) {
    display: block;
}
  .list-layout01 .img:after {
    opacity: 1;
  }
  .list-layout01 .img .more {
    opacity: 1;
  }
  .list-layout01 .date {
    font-size: 16px;
  }
  .list-layout01 .txt01 {
    font-size: 20px;
  }
  .blog {
    margin-top: 100px;
  }
  .blog .list-blog {
    padding: 0 55px;
    margin-top: 45px;
    margin-bottom: 0;
  }
  .blog .list-blog .blog-child {
    width: 47%;
    margin-right: 6%;
    margin-bottom: 6%;
  }
  .blog .list-blog .blog-child img {
    width: 100%;
  }
  .blog .list-blog .blog-child .info-blog {
    opacity: 1;
  }
  .blog .list-blog .blog-child .info-blog span.date {
    font-family: 'SairaSemiCondensed-Bold';
    font-size: 34px;
    margin-top: 27%;
  }
  .blog .list-blog .blog-child .info-blog span.store {
    font-size: 20px;
    margin-top: 6%;
    margin-bottom: 12%;
  }
  .blog .list-blog .blog-child .info-blog a {
    font-family: 'SairaSemiCondensed-SemiBold';
    font-size: 20px;
    border: 2px solid white;
    padding: 2px 30px;
  }
  .blog .list-blog .blog-child:nth-child(3n) {
    margin-right: 6%;
  }
  .blog .list-blog .blog-child:nth-child(even) {
    margin-right: 0;
  }

  .instagram {
    padding: 140px 0 60px;
    background: url(../img/ttl_instagram.png) no-repeat center -4px, #B2B2B1;
    background-size: 100% auto;
  }
  .instagram .list-insta {
    width: 100%;
    padding: 0 60px;
    flex-wrap: wrap;
  }
  .instagram .list-insta:before {
    content: none;
  }
  .instagram .insta {
    width: calc(50% - 15px);
    margin: 30px 30px 0 0;
  }
  .instagram .insta:nth-child(-n+2) {
    margin-top: 0;
  }
  .instagram .insta:nth-child(2n) {
    margin-right: 0;
  }
  .instagram .insta:nth-child(n+5) {
    display: none;
  }
  .instagram .more-btn {
    width: auto;
    margin: 55px auto 0;
    text-align: center;
  }
  .instagram .more-btn a {
    color: #fff;
  }

  .main {
    padding-bottom: 100px;
  }
}
.page-special .main {
  padding-bottom: 62px;
}
.page-special .main.interview {
  padding-bottom: 96px;
}
.page-special .main.interview {
  padding-bottom: 113px;
}
.page-special .main.information001 {
  padding-bottom: 121px;
}
.page-special header {
  padding-bottom: 21px;
}

.link-special {
  width: 100%;
  position: relative;
  -js-display: flex;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0px 100px;
  margin-top: 70px;
}
.link-special .child-link {
  width: 380px;
  margin-bottom: 40px;
}
.link-special .child-link a {
  text-decoration: none;
}
.link-special .child-link p {
  color: #000000;
  margin: 6px 0 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: bold;
  transition: all .5s ease;
}
.link-special .child-link.large {
  width: 100%;
}
.link-special .child-link.large .img-sp {
  display: none;
}

@media (max-width: 750px) {
  .link-special .child-link.large .img-sp {
    display: block;
  }
  .link-special .child-link.large .img-pc {
    display: none;
  }
}

<!--▼about us-->

.link-aboutus{}
.link-aboutus .child-link {margin-bottom:50px;}
.link-aboutus .child-link dl:first-child{ margin-top:100px;} 
.link-aboutus .child-link dl{-js-display: flex;/*--- flexibility.js ---*/
	display: -webkit-box;/*--- Android ---*/
	display: -ms-flexbox;/*--- IE10 ---*/
	display: -webkit-flex;/*--- safari（PC）用 ---*/
	display: flex;
	margin-top:67px;}
.link-aboutus .child-link dt{ width:400px;}
.link-aboutus .child-link dt img{ width:100%;}
.link-aboutus .child-link dd img{ margin-bottom:17px;}
.link-aboutus .child-link dd{ width:540px; margin-left:80px; line-height:180%; font-size:16px;}
.link-aboutus .child-link dd p.name{ text-align:center; font-weight:bold; font-size:14px; margin-bottom:20px;}



.intro-interview {
  padding-left: 220px;
  color: #000;
}
.intro-interview .inner-intro {
  width: 400px;
  padding-left: 15px;
  padding-top: 30px;
  border-left: 1px solid #3F3F3F;
}
.intro-interview .inner-intro .ttl-intro {
  font-size: 26px;
  font-weight: bold;
}
.intro-interview .inner-intro .name-ceo {
  font-size: 23px;
}
.intro-interview .inner-intro .name-ceo span {
  font-size: 26px;
}
.intro-interview .inner-intro .name-ceo small {
  font-size: 16px;
}
.intro-interview .inner-intro p {
  font-size: 16px;
  line-height: 1.75;
  position: relative;
  bottom: -7px;
  margin-top: 12px;
}

.main-interview {
  margin-top: 62px;
}

.block-interview {
  padding: 0px 95px 0px 122px;
  position: relative;
}
.block-interview .left {
  color: #000;
  float: left;
  width: 500px;
}
.block-interview .left .img-interview {
  margin-bottom: 20px;
}
.block-interview .left p {
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0.1em;
}
.block-interview .right {
  float: right;
}
.block-interview .right .ttl-interview {
  margin-right: 22px;
}
.block-interview.block01 {
  margin-top: 10px;
}
.block-interview.block01 .left {
  float: right;
  width: 410px;
}
.block-interview.block01 .left .img-interview {
  margin-bottom: 35px;
}
.block-interview.block01 .left p {
  text-align: right;
}
.block-interview.block01 .right {
  float: left;
  margin-left: 110px;
}
.block-interview.block01 .right .ttl-interview {
  margin-top: 80px;
  margin-right: 0;
}
.block-interview.block02 {
  padding: 0px 84px 0px 100px;
  margin-top: 74px;
}
.block-interview.block02 .right .ttl-interview {
  margin-right: 100px;
  margin-top: 30px;
}
.block-interview.block02 .left .img-interview {
  margin-left: 40px;
  margin-bottom: 50px;
}
.block-interview.block02 .img-asl {
  position: absolute;
  right: 84px;
  bottom: 7px;
}

.block-abs {
  position: absolute;
  left: 100px;
  bottom: 23px;
}
.block-abs .ct-abs {
  position: absolute;
  width: 267px;
  top: 185px;
}
.block-abs .ct-abs span {
  font-size: 26px;
  line-height: 1.346153846153846;
  display: block;
  margin-bottom: 6px;
}
.block-abs .ct-abs p {
  line-height: 2;
}

.mid-banner {
  text-align: center;
  margin-top: 84px;
}

.circle-block {
  padding: 0px 82px 0px 92px;
  margin-top: 52px;
}
.circle-block .img-circle {
  float: right;
}
.circle-block .txt-circle {
  float: left;
  margin-top: -265px;
}
.circle-block .txt-circle p {
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0.1em;
  margin-top: 20px;
}

.product-slow {
  padding: 0px 82px 0px 92px;
  margin-top: 26px;
}
.product-slow .ttl-slow {
  text-align: right;
  margin-right: 18px;
}
.product-slow .list-prslow {
  color: #000;
  margin-top: 65px;
}
.product-slow .list-prslow .block-slow {
  margin-bottom: 53px;
}
.product-slow .list-prslow .block-slow .left {
  float: left;
  margin-left: 43px;
  width: 350px;
}
.product-slow .list-prslow .block-slow .right {
  float: right;
  width: 410px;
  margin-top: 67px;
}
.product-slow .list-prslow .block-slow .right h3 {
  font-size: 30px;
  line-height: 1.433333333333333;
}
.product-slow .list-prslow .block-slow .right p {
  line-height: 2.071428571428571;
  margin-top: 20px;
}
.product-slow .list-prslow .block-slow:nth-child(even) .left {
  float: right;
}
.product-slow .list-prslow .block-slow:nth-child(even) .right {
  float: left;
}
.product-slow .list-prslow .block-slow.bl01 {
  margin-bottom: 97px;
}
.product-slow .list-prslow .block-slow.bl01 .right {
  margin-top: 0;
  padding-left: 21px;
}
.product-slow .list-prslow .block-slow.bl01 .left {
  margin-top: 24px;
  margin-left: 0;
  width: 406px;
}
.product-slow .list-prslow .block-slow.bl02 {
  margin-bottom: 60px;
}
.product-slow .list-prslow .block-slow.bl02 .right {
  margin-top: 0;
  width: 375px;
}
.product-slow .list-prslow .block-slow.bl02 .left {
  margin-top: 24px;
  margin-left: 0;
}
.product-slow .list-prslow .block-slow.bl03 .right {
  margin-top: 30px;
}
.product-slow .list-prslow .block-slow.bl03 .left {
  margin-top: 0px;
  margin-right: 120px;
  width: 220px;
}
.product-slow .list-prslow .block-slow.bl04 .left {
  margin-left: 55px;
}

.btn-back {
  text-align: center;
  margin-top: 95px;
}
.btn-back a {
  display: inline-block;
  font-size: 28px;
  letter-spacing: 0.07em;
  line-height: 1;
  text-decoration: none;
  border: 2px solid #3F3F3F;
  padding: 6px 45px 6px 58px;
  background: url("../img/special/icon.png") no-repeat 40px center;
}

.three-way {
  margin-bottom: 53px;
}
.three-way .left {
  float: left;
  width: 550px;
  padding-left: 33px;
  position: relative;
  z-index: 9;
  margin-top: 38px;
}
.three-way .left p {
  font-size: 17px;
  line-height: 2.117647058823529;
  padding-left: 70px;
  margin-top: 77px;
}
.three-way .right {
  float: right;
  width: 565px;
  margin-left: -135px;
  margin-top: 5px;
}

.main-product .btn-back {
  margin-top: 38px;
}

.section-product {
  margin-bottom: 89px;
}
.section-product .banner-product {
  margin-bottom: 32px;
}
.section-product .banner-product img {
  width: 100%;
}
.section-product .txt-pro {
  font-size: 20px;
  font-weight: bold;
  line-height: 2.15;
  text-align: center;
}
.section-product .inner-product .big-img {
  text-align: center;
  position: relative;
  margin-top: 55px;
}
.section-product .inner-product .big-img .txt-asl {
  text-align: left;
  margin-left: 525px;
  margin-top: 4px;
}
.section-product .inner-product .big-img .txt-asl span {
  display: block;
  font-size: 34px;
  font-weight: bold;
}
.section-product .inner-product .big-img .txt-asl p {
  font-size: 20px;
  line-height: 2.05;
  margin-top: 15px;
}
.section-product .inside {
  margin-top: 20px;
}
.section-product .inside .right {
  float: right;
  width: 480px;
  margin-right: 46px;
}
.section-product .inside .left {
  float: left;
  width: 470px;
  font-size: 16px;
  line-height: 2.125;
  letter-spacing: 0.05em;
  padding-left: 160px;
  margin-top: 120px;
}
.section-product .txt-pro02 {
  font-size: 16px;
  line-height: 2.125;
  letter-spacing: 0.05em;
  padding-left: 113px;
  margin-top: 20px;
}
.section-product.bl01 {
  margin-bottom: 83px;
}
.section-product.bl01 .inner-product .big-img {
  margin-top: 42px;
  margin-left: 54px;
}
.section-product.bl01 .inner-product .big-img .txt-asl {
  margin-left: 73px;
  margin-top: -17px;
}
.section-product.bl01 .list-detail {
  margin-top: -196px;
}
.section-product.bl01 .list-detail .child-detail {
  float: right;
  margin-left: 0;
  margin-right: 75px;
}
.section-product.bl01 .list-detail .child-detail.cd01 {
  margin-top: 271px;
  margin-left: 0px;
  margin-right: 75px;
}
.section-product.bl01 .list-detail .child-detail.cd01 p {
  padding-left: 8px;
}
.section-product.bl01 .list-detail .child-detail.cd02 {
  margin-top: -81px;
  margin-left: 0;
  margin-right: 91px;
}
.section-product.bl01 .list-detail .child-detail.cd02 p {
  padding-left: 0;
}
.section-product.bl02 {
  margin-bottom: 0;
}
.section-product.bl02 .inner-product .big-img {
  margin-left: 38px;
  margin-top: 44px;
}
.section-product.bl02 .inner-product .big-img .txt-asl {
  margin-left: 491px;
}
.section-product.bl02 .list-detail {
  margin-top: -216px;
}
.section-product.bl02 .list-detail .child-detail.cd01 {
  margin-left: 110px;
  margin-top: 359px;
}
.section-product.bl02 .list-detail .child-detail.cd01 p {
  padding-left: 8px;
}
.section-product.bl02 .list-detail .child-detail.cd02 {
  margin-left: 162px;
  margin-top: -179px;
}
.section-product.bl02 .list-detail .child-detail.cd02 p {
  padding-left: 0;
}

.list-detail {
  margin-top: -218px;
}
.list-detail .child-detail {
  float: left;
  width: 392px;
  margin-left: 82px;
}
.list-detail .child-detail p {
  font-size: 16px;
  line-height: 2.125;
  margin-top: 14px;
  padding-left: 10px;
}
.list-detail .child-detail.cd01 {
  margin-top: 392px;
  margin-left: 55px;
}
.list-detail .child-detail.cd01 p {
  padding-left: 0;
  margin-top: 9px;
}
.list-detail .child-detail.cd02 {
  margin-top: -75px;
  margin-left: 102px;
}
.list-detail .child-detail.cd02 p {
  padding-left: 10px;
  margin-top: 2px;
}

.small-detail {
  padding: 0px 35px;
  margin-top: 43px;
}
.small-detail li {
  float: left;
  width: 216px;
  margin-right: 22px;
}
.small-detail li:last-child {
  margin-right: 0;
}

.main-information001 {
  margin-top: 42px;
}
.main-information001 .upper-infor {
  text-align: center;
}
.main-information001 .upper-infor p {
  font-size: 43px;
  line-height: 1.441860465116279;
  margin-top: 24px;
}
.main-information001 .upper-infor p span {
  display: inline-block;
  position: relative;
}
.main-information001 .upper-infor p span:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 22px;
  background: #FFF000;
  bottom: 13px;
  z-index: 1;
}
.main-information001 .upper-infor p span small {
  position: relative;
  z-index: 9;
}
.main-information001 .block-frame {
  margin-left: 182px;
  margin-top: 115px;
}
.main-information001 .block-frame .frame-inner {
  display: inline-block;
  position: relative;
  background: #fff;
}
.main-information001 .block-frame .frame-inner h2 {
  position: absolute;
  left: -71px;
  top: -50px;
  z-index: 9;
}
.main-information001 .block-frame .frame-inner p {
  font-size: 27px;
  line-height: 1.666666666666667;
  padding: 33px 35px 23px 31px;
  border: 6px solid #000;
  background: white;
  position: relative;
}
.main-information001 .block-frame .frame-inner p span {
  display: inline-block;
  position: relative;
}
.main-information001 .block-frame .frame-inner p span:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 18px;
  background: #FFF000;
  bottom: 11px;
  z-index: 1;
}
.main-information001 .block-frame .frame-inner p span small {
  position: relative;
  z-index: 9;
}
.main-information001 .block-frame .frame-inner:before {
  position: absolute;
  content: "";
  background: url("../img/special/bg.png") repeat center;
  width: 100%;
  height: 100%;
  bottom: -15px;
  right: -15px;
}
.main-information001 .block-frame.bl01 {
  margin-left: 364px;
  margin-top: 136px;
}
.main-information001 .block-frame.bl01 .frame-inner h2 {
  left: -37px;
  top: -93px;
}
.main-information001 .block-frame.bl01 .frame-inner p {
  padding: 33px 69px 29px 31px;
}
.main-information001 .block-frame.bl01 .frame-inner:before {
  bottom: -42px;
  left: -42px;
  right: auto;
}
.main-information001 .block-frame.bl02 {
  margin-left: 200px;
  margin-top: 140px;
}
.main-information001 .block-frame.bl02 .frame-inner h2 {
  left: -37px;
  top: -117px;
}
.main-information001 .block-frame.bl02 .frame-inner p {
  padding: 33px 61px 23px 32px;
}
.main-information001 .block-frame.bl02 .frame-inner:before {
  bottom: -25px;
  right: -24px;
}
.main-information001 .block-frame.bl03 {
  margin-left: 360px;
  margin-top: 84px;
}
.main-information001 .block-frame.bl03 .frame-inner h2 {
  left: auto;
  top: -311px;
  right: -53px;
}
.main-information001 .block-frame.bl03 .frame-inner p {
  padding: 33px 43px 30px 31px;
}
.main-information001 .block-frame.bl03 .frame-inner:before {
  bottom: -22px;
  right: auto;
  left: -24px;
}
.main-information001 .block-frame.bl04 {
  margin-left: 305px;
  margin-top: 137px;
}
.main-information001 .block-frame.bl04 .frame-inner h2 {
  left: -173px;
  top: -75px;
}
.main-information001 .block-frame.bl04 .frame-inner p {
  padding: 33px 55px 29px 31px;
}
.main-information001 .block-frame.bl04 .frame-inner:before {
  bottom: -42px;
  right: -44px;
}
.main-information001 .list-logo {
  text-align: center;
  margin-top: 43px;
}
.main-information001 .list-logo li {
  display: inline-block;
  margin: 11px 19px;
}
.main-information001 .txt-infor01 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-top: 113px;
  padding-left: 205px;
}
.main-information001 .list-infor {
  padding-left: 156px;
  margin-top: 70px;
}
.main-information001 .list-infor li {
  line-height: 2.107142857142857;
  display: block;
  padding-left: 15px;
}
.main-information001 .list-infor li span {
  text-indent: -15px;
  display: inline-block;
}
.main-information001 .block-links {
  padding: 0px 233px;
  margin-top: 83px;
}
.main-information001 .block-links .link {
  margin-bottom: 22px;
}
.main-information001 .block-links .link a {
  display: block;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #fff;
  background: #000 url("../img/special/icon02.png") no-repeat 15px center;
  line-height: 1;
  padding: 12px 32px;
  text-decoration: none;
}
.main-information001 .block-links .link p {
  font-size: 15.44px;
  margin-top: 4px;
}
.main-information001 .block-links .link.hp {
  margin-bottom: 13px;
}
.main-information001 .block-links.member {
  padding: 0;
  margin-top: 47px;
}
.main-information001 .block-links.member h2 {
  font-size: 20px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 10px;
}
.main-information001 .block-links.member .link {
  padding: 0px 233px;
}
.main-information001 .btn-back {
  margin-top: 58px;
}

@media (max-width: 750px) {
  .page-special .main {
    padding-bottom: 98px;
  }
  .page-special .main.information001 {
    padding-bottom: 99px;
  }
  .page-special header {
    padding-bottom: 40px;
  }

  .link-special {
    padding: 0px 55px;
    margin-top: 100px;
  }
  .link-special .child-link {
    width: 100%;
    margin-bottom: 74px;
    width: calc(50% - 15px);
    margin: 30px 30px 0 0;
  }
  .link-special .child-link:nth-child(2n) {
    margin-right: 0;
  }
  .link-special .child-link a {
    text-decoration: none;
  }
  .link-special .child-link p {
    margin: 11px 0 0;
    font-size: 22px;
    line-height: 28px;
    transition: none;
  }
  .link-special .child-link img {
    width: 100%;
  }
  
  <!--▼about us-->

.link-aboutus{}
.link-aboutus .child-link {}
.link-aboutus .child-link dl{-js-display: flex;/*--- flexibility.js ---*/
	display: -webkit-box;/*--- Android ---*/
	display: -ms-flexbox;/*--- IE10 ---*/
	display: -webkit-flex;/*--- safari（PC）用 ---*/
	display: flex;
	flex-direction:column;}
  
.link-aboutus .child-link dt{ width:100%; margin-bottom:10px;}
.link-aboutus .child-link dd img{ margin:30px auto;}
.link-aboutus .child-link dd{width:85%; margin:0 auto;
}
.link-aboutus .child-link dd p.name{ margin-bottom:20px; font-size:16px;}
.link-aboutus .child-link dd p{line-height:180%; font-size:18px;}
  

  

  .intro-interview {
    padding-left: 166px;
  }
  .intro-interview .inner-intro {
    padding-left: 11px;
    padding-top: 23px;
    padding-bottom: 5px;
  }
  .intro-interview .inner-intro .ttl-intro {
    font-size: 21px;
  }
  .intro-interview .inner-intro .name-ceo {
    font-size: 18px;
    line-height: 1;
  }
  .intro-interview .inner-intro .name-ceo span {
    font-size: 23px;
  }
  .intro-interview .inner-intro .name-ceo small {
    font-size: 14px;
  }
  .intro-interview .inner-intro p {
    font-size: 18px;
    line-height: 1.428571428571429;
  }

  .main-interview {
    margin-top: 41px;
  }

  .block-interview {
    padding: 0px 60px 0px 90px;
  }
  .block-interview .left {
    width: 71.7%;
  }
  .block-interview .left .img-interview {
    margin-bottom: 24px;
    width: 91.4%;
  }
  .block-interview .left p {
    font-size: 18px;
  }
  .block-interview .right .ttl-interview {
    margin-right: 0;
    width: 75%;
    float: right;
  }
  .block-interview.block01 {
    margin-top: 10px;
  }
  .block-interview.block01 .left .img-interview {
    margin-bottom: 25px;
    width: 73%;
    margin-left: 87px;
  }
  .block-interview.block01 .left p {
    padding-right: 8px;
    width: 365px;
    float: right;
  }
  .block-interview.block01 .right {
    margin-left: 0px;
  }
  .block-interview.block01 .right .ttl-interview {
    margin-top: 99px;
    width: 73px;
    margin-left: 87px;
  }
  .block-interview.block02 {
    padding: 0px 84px 0px 68px;
    margin-top: 43px;
  }
  .block-interview.block02 .right .ttl-interview {
    margin-right: 70px;
    margin-top: 12px;
    width: 117px;
  }
  .block-interview.block02 .left {
    width: 67%;
  }
  .block-interview.block02 .left .img-interview {
    margin-bottom: 15px;
    width: 307px;
  }
  .block-interview.block02 .img-asl {
    right: 29px;
    bottom: 3px;
    width: 233px;
  }

  .block-abs {
    left: 76px;
    bottom: 82px;
    width: 202px;
  }
  .block-abs .ct-abs {
    width: 228px;
    top: 146px;
  }
  .block-abs .ct-abs span {
    font-size: 20px;
    margin-bottom: 5px;
  }
  .block-abs .ct-abs p {
    font-size: 16px;
    line-height: 1.9;
  }

  .mid-banner {
    margin-top: 50px;
    padding: 0 136px;
  }

  .circle-block {
    padding: 0px 62px 0px 72px;
    margin-top: 52px;
  }
  .circle-block .img-circle {
    width: 424px;
  }
  .circle-block .txt-circle {
    margin-top: -165px;
  }
  .circle-block .txt-circle img {
    width: 144px;
  }
  .circle-block .txt-circle p {
    font-size: 16px;
    margin-top: 10px;
  }

  .product-slow {
    padding: 0px 59px 0px 92px;
    margin-top: 34px;
  }
  .product-slow .ttl-slow {
    text-align: right;
    margin-right: 0;
    margin-left: 143px;
  }
  .product-slow .list-prslow {
    margin-top: 33px;
  }
  .product-slow .list-prslow .block-slow {
    margin-bottom: 37px;
  }
  .product-slow .list-prslow .block-slow .left {
    margin-left: 14px;
    width: 259px;
  }
  .product-slow .list-prslow .block-slow .right {
    width: 312px;
    margin-top: 51px;
  }
  .product-slow .list-prslow .block-slow .right h3 {
    font-size: 22px;
  }
  .product-slow .list-prslow .block-slow .right p {
    font-size: 16px;
    line-height: 1.833333333333333;
    margin-top: 12px;
  }
  .product-slow .list-prslow .block-slow:nth-child(even) .left {
    float: right;
  }
  .product-slow .list-prslow .block-slow:nth-child(even) .right {
    float: left;
  }
  .product-slow .list-prslow .block-slow.bl01 {
    margin-bottom: 69px;
  }
  .product-slow .list-prslow .block-slow.bl01 .right {
    margin-top: 0;
    padding-left: 0px;
    width: 289px;
  }
  .product-slow .list-prslow .block-slow.bl01 .left {
    margin-top: 24px;
    margin-left: 0;
    width: 300px;
    margin-right: 10px;
  }
  .product-slow .list-prslow .block-slow.bl02 {
    margin-bottom: 48px;
  }
  .product-slow .list-prslow .block-slow.bl02 .right {
    width: 284px;
  }
  .product-slow .list-prslow .block-slow.bl02 .left {
    margin-top: 25px;
    margin-left: -14px;
    width: 297px;
  }
  .product-slow .list-prslow .block-slow.bl03 {
    margin-bottom: 18px;
  }
  .product-slow .list-prslow .block-slow.bl03 .right {
    margin-top: 19px;
    margin-left: -3px;
  }
  .product-slow .list-prslow .block-slow.bl03 .left {
    margin-right: 109px;
    width: 161px;
  }
  .product-slow .list-prslow .block-slow.bl04 .left {
    margin-left: 34px;
    width: 176px;
  }
  .product-slow .list-prslow .block-slow.bl04 .right {
    width: 343px;
  }

  .btn-back {
    margin-top: 68px;
  }
  .btn-back a {
    font-size: 15px;
    padding: 4px 21px 4px 36px;
    background-position: 21px center;
    background-size: 8px;
  }

  .three-way {
    margin-bottom: 48px;
  }
  .three-way .left {
    float: left;
    width: 366px;
    padding-left: 0;
    position: relative;
    z-index: 9;
    margin-top: 38px;
    margin-left: 73px;
  }
  .three-way .left p {
    line-height: 1.882352941176471;
    padding-left: 12px;
    margin-top: 52px;
  }
  .three-way .right {
    width: 413px;
    margin-left: -190px;
    margin-top: 66px;
    position: relative;
    right: 45px;
  }

  .main-product .btn-back {
    margin-top: 61px;
  }

  .section-product {
    margin-bottom: 89px;
    padding: 0 55px;
  }
  .section-product .banner-product {
    margin-bottom: 19px;
  }
  .section-product .txt-pro {
    font-size: 16px;
    line-height: 1.75;
  }
  .section-product .inner-product .big-img {
    margin-top: 33px;
    padding: 0 96px;
    margin-left: 13px;
  }
  .section-product .inner-product .big-img .txt-asl {
    text-align: left;
    margin-left: 229px;
    margin-top: 1px;
  }
  .section-product .inner-product .big-img .txt-asl span {
    font-size: 22px;
  }
  .section-product .inner-product .big-img .txt-asl p {
    font-size: 16px;
    line-height: 1.625;
    margin-top: 9px;
  }
  .section-product .inside {
    margin-top: 13px;
  }
  .section-product .inside .right {
    width: 307px;
    margin-right: 30px;
  }
  .section-product .inside .left {
    width: 300px;
    font-size: 14px;
    line-height: 1.571428571428571;
    padding-left: 89px;
    margin-top: 91px;
    letter-spacing: 0;
  }
  .section-product .txt-pro02 {
    font-size: 14px;
    line-height: 1.571428571428571;
    letter-spacing: 0;
    padding-left: 35px;
    margin-top: 15px;
  }
  .section-product.bl01 {
    margin-bottom: 92px;
  }
  .section-product.bl01 .inner-product .big-img {
    margin-top: 28px;
    margin-left: 34px;
    padding: 0 52px;
  }
  .section-product.bl01 .inner-product .big-img .txt-asl {
    margin-left: -5px;
  }
  .section-product.bl01 .list-detail {
    margin-top: -125px;
  }
  .section-product.bl01 .list-detail .child-detail {
    margin-left: 0;
    margin-right: 55px;
  }
  .section-product.bl01 .list-detail .child-detail.cd01 {
    margin-top: 173px;
    margin-right: 105px;
    width: 192px;
  }
  .section-product.bl01 .list-detail .child-detail.cd01 p {
    padding-left: 6px;
    margin-top: 7px;
  }
  .section-product.bl01 .list-detail .child-detail.cd02 {
    margin-top: -53px;
    margin-left: 0;
    margin-right: 59px;
  }
  .section-product.bl01 .list-detail .child-detail.cd02 p {
    padding-left: 5px;
  }
  .section-product.bl02 {
    margin-bottom: 0;
  }
  .section-product.bl02 .inner-product .big-img {
    margin-left: 24px;
    margin-top: 35px;
    padding: 0 85px;
  }
  .section-product.bl02 .inner-product .big-img .txt-asl {
    margin-left: 229px;
    margin-top: -3px;
  }
  .section-product.bl02 .list-detail {
    margin-top: -138px;
  }
  .section-product.bl02 .list-detail .child-detail.cd01 {
    margin-left: 79px;
    margin-top: 231px;
    width: 192px;
  }
  .section-product.bl02 .list-detail .child-detail.cd01 p {
    padding-left: 4px;
    margin-top: 5px;
  }
  .section-product.bl02 .list-detail .child-detail.cd02 {
    margin-left: 102px;
    margin-top: -115px;
    width: 205px;
  }
  .section-product.bl02 .list-detail .child-detail.cd02 p {
    padding-left: 3px;
  }

  .list-detail {
    margin-top: -139px;
  }
  .list-detail .child-detail {
    float: left;
    width: 245px;
    margin-left: 51px;
  }
  .list-detail .child-detail p {
    font-size: 14px;
    line-height: 1.571428571428571;
    margin-top: 8px;
    padding-left: 7px;
    white-space: nowrap;
  }
  .list-detail .child-detail.cd01 {
    margin-top: 248px;
    margin-left: 42px;
    width: 252px;
  }
  .list-detail .child-detail.cd01 p {
    margin-top: 1px;
  }
  .list-detail .child-detail.cd02 {
    margin-top: -46px;
    margin-left: 67px;
    width: 250px;
  }
  .list-detail .child-detail.cd02 p {
    padding-left: 6px;
    margin-top: 0px;
  }

  .small-detail {
    padding: 0px 23px;
    margin-top: 30px;
  }
  .small-detail li {
    width: 137px;
    margin-right: 15px;
  }

  .main-information001 {
    margin-top: 37px;
  }
  .main-information001 .upper-infor img {
    width: 395px;
  }
  .main-information001 .upper-infor p {
    font-size: 31px;
    margin-top: 18px;
  }
  .main-information001 .upper-infor p span:before {
    height: 10px;
  }
  .main-information001 .block-frame {
    margin-left: 148px;
    margin-top: 84px;
  }
  .main-information001 .block-frame .frame-inner h2 {
    left: -52px;
    top: -37px;
    z-index: 9;
    width: 206px;
  }
  .main-information001 .block-frame .frame-inner p {
    font-size: 18px;
    line-height: 1.777777777777778;
    padding: 22px 39px 17px 24px;
    border: 4px solid #000;
  }
  .main-information001 .block-frame .frame-inner p span:before {
    height: 15px;
    bottom: 4px;
  }
  .main-information001 .block-frame .frame-inner p span small {
    position: relative;
    z-index: 9;
  }
  .main-information001 .block-frame .frame-inner:before {
    bottom: -12px;
    right: -10px;
    background-size: 45px;
  }
  .main-information001 .block-frame.bl01 {
    margin-left: 281px;
    margin-top: 100px;
  }
  .main-information001 .block-frame.bl01 .frame-inner h2 {
    left: -29px;
    top: -66px;
    width: 314px;
  }
  .main-information001 .block-frame.bl01 .frame-inner p {
    padding: 23px 57px 21px 31px;
  }
  .main-information001 .block-frame.bl01 .frame-inner:before {
    bottom: -33px;
    left: -34px;
  }
  .main-information001 .block-frame.bl02 {
    margin-left: 161px;
    margin-top: 100px;
  }
  .main-information001 .block-frame.bl02 .frame-inner h2 {
    left: -27px;
    top: -83px;
    width: 173px;
  }
  .main-information001 .block-frame.bl02 .frame-inner p {
    padding: 22px 56px 18px 22px;
  }
  .main-information001 .block-frame.bl02 .frame-inner:before {
    bottom: -22px;
    right: -18px;
  }
  .main-information001 .block-frame.bl03 {
    margin-left: 275px;
    margin-top: 62px;
  }
  .main-information001 .block-frame.bl03 .frame-inner h2 {
    left: auto;
    top: -226px;
    right: -34px;
    width: 53px;
  }
  .main-information001 .block-frame.bl03 .frame-inner p {
    padding: 23px 48px 21px 23px;
  }
  .main-information001 .block-frame.bl03 .frame-inner:before {
    bottom: -17px;
    right: auto;
    left: -17px;
  }
  .main-information001 .block-frame.bl04 {
    margin-left: 236px;
    margin-top: 98px;
  }
  .main-information001 .block-frame.bl04 .frame-inner h2 {
    left: -124px;
    top: -53px;
    width: 242px;
  }
  .main-information001 .block-frame.bl04 .frame-inner p {
    padding: 23px 54px 22px 23px;
  }
  .main-information001 .block-frame.bl04 .frame-inner:before {
    bottom: -36px;
    right: -34px;
  }
  .main-information001 .list-logo {
    margin-top: 29px;
  }
  .main-information001 .list-logo li {
    margin: 7px 9px;
  }
  .main-information001 .list-logo li img {
    height: 43px;
  }
  .main-information001 .txt-infor01 {
    font-size: 14px;
    line-height: 1.857142857142857;
    margin-top: 80px;
    padding-left: 165px;
  }
  .main-information001 .list-infor {
    padding-left: 133px;
    margin-top: 49px;
  }
  .main-information001 .list-infor li {
    line-height: 2.1;
    padding-left: 10px;
    font-size: 10px;
  }
  .main-information001 .list-infor li span {
    text-indent: -10px;
  }
  .main-information001 .block-links {
    padding: 0px 185px;
    margin-top: 56px;
  }
  .main-information001 .block-links .link {
    margin-bottom: 16px;
  }
  .main-information001 .block-links .link a {
    font-size: 14px;
    background-position: 11px center;
    line-height: 1;
    padding: 8px 23px;
    background-size: 5px;
  }
  .main-information001 .block-links .link p {
    font-size: 11px;
    margin-top: 3px;
  }
  .main-information001 .block-links .link.hp {
    margin-bottom: 12px;
  }
  .main-information001 .block-links.member {
    margin-top: 36px;
  }
  .main-information001 .block-links.member h2 {
    font-size: 14px;
    margin-bottom: 7px;
  }
  .main-information001 .block-links.member .link {
    padding: 0px 185px;
  }
}

/* WYSIWYG */
.wysiwyg strong {
  font-weight: bold;
}

/* ----------------------------
    ページャー
---------------------------- */
.pager {
  margin: 122px 0 50px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.pager a {
  transition: all .5s ease;
}
.pager a:hover {
  opacity: .8;
}
.pager-list {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.pager-btn a {
  width: 30px;
  height: 30px;
  display: block;
  background: #000;
  position: relative;
}
.pager-btn a:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  position: absolute;
  top: 9px;
}
.pager-btn.prev {
  margin-right: 20px;
}
.pager-btn.prev a:after {
  transform: rotate(-45deg);
  left: 11px;
}
.pager-btn.next {
  margin-left: 20px;
}
.pager-btn.next a:after {
  transform: rotate(135deg);
  right: 11px;
}
.pager-num {
  position: relative;
  font-size: 13px;
  border-right: 1px solid #000;
}
.pager-num:first-child {
  border-left: 1px solid #000;
}
.pager-num a {
  width: 46px;
  display: block;
  text-align: center;
}
.pager-num .is-current {
  font-weight: bold;
  pointer-events: none;
}
.pager a,
.pager span.navipage_now_ {
  position: relative;
  font-size: 13px;
  border-right: 1px solid #000;
}
.pager a:first-child {
  border-left: 1px solid #000;
}
.pager a,
.pager span.navipage_now_ {
  width: 46px;
  display: inline-block;
  text-align: center;
}
.pager span.navipage_now_ {
  width: 46px;
  display: inline-block;
  text-align: center;
}
.pager span.navipage_now_ {
  font-weight: bold;
}
.pager a .is-current {
  font-weight: bold;
  pointer-events: none;
}
.navipage_forward_,
.navipage_reverse_ {
  height: 30px;
  display: inline-block;
  vertical-align: super;
}
.navipage_forward_>span,
.navipage_reverse_>span {
  vertical-align: middle;
  display: inline-block;
}
.navipage_forward_ a,
.navipage_reverse_ a {
  border-left: none !important;
  background: #000;
  color: #fff;
  margin: 0 5px 0 5px;
  padding: 6px;
  font-size: 0;
  width: 30px;
  aspect-ratio: 1;
}
.navipage_forward_ .navipage_next_ a::after,
.navipage_reverse_ .navipage_prev_ a::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  position: absolute;
  top: 9px;
}
.navipage_forward_ .navipage_next_ a::after {
  transform: rotate(135deg);
  right: 11px;
}
.navipage_reverse_ .navipage_prev_ a::after {
  transform: rotate(-45deg);
  left: 11px;
}
.navipage_forward_ .navipage_last_ a:before,
.navipage_forward_ .navipage_last_ a:after,
.navipage_reverse_ .navipage_first_ a:before,
.navipage_reverse_ .navipage_first_ a:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  position: absolute;
  top: 9px;
}
.navipage_forward_ .navipage_last_ a:before,
.navipage_forward_ .navipage_last_ a:after {
  transform: rotate(135deg);
}
.navipage_forward_ .navipage_last_ a:before {
  right: 7px;
}
.navipage_forward_ .navipage_last_ a:after {
  right: 15px;
}
.navipage_reverse_ .navipage_first_ a:before,
.navipage_reverse_ .navipage_first_ a:after {
  transform: rotate(-45deg);
}
.navipage_reverse_ .navipage_first_ a:before {
  left: 7px;
}
.navipage_reverse_ .navipage_first_ a:after {
  left: 15px;
}
@media (max-width: 750px) {
  .pager {
    margin: 52px 0 0;
  }
    .pager a {
    transition: none;
  }
    .pager a:hover {
    opacity: 1;
  }
    .pager-num {
    border-right: 1px solid #000;
    font-size: 22px;
  }
    .pager-num:first-child {
    border-left: 1px solid #000;
  }
    .pager-num a {
    width: 77px;
  }
    .pager-btn a {
    width: 50px;
    height: 50px;
  }
    .pager-btn a:after {
    width: 20px;
    height: 20px;
    top: 16px;
  }
    .pager-btn.prev {
    margin-right: 35px;
  }
    .pager-btn.prev a:after {
    left: 19px;
  }
    .pager-btn.next {
    margin-left: 35px;
  }
    .pager-btn.next a:after {
    right: 19px;
  }
    .pager>*>*:not([class*="navipage_"]),
  .pager span.navipage_now_ {
    font-size: 1.6em;
    width: 70px;
  }
    .navipage_forward_,
  .navipage_reverse_ {
    height: 50px;
  }
    .navipage_forward_ a,
  .navipage_reverse_ a {
    width: 50px;
  }
    .navipage_forward_ .navipage_next_ a::after,
  .navipage_reverse_ .navipage_prev_ a::after {
    width: 40%;
    height: 40%;
    top: 0;
    bottom: 0;
    margin: auto;
  }
    .navipage_forward_ .navipage_next_ a::after {
    right: 30%;
  }
    .navipage_reverse_ .navipage_prev_ a::after {
    left: 40%;
  }
    .navipage_forward_ .navipage_last_ a:before,
  .navipage_forward_ .navipage_last_ a:after,
  .navipage_reverse_ .navipage_first_ a:before,
  .navipage_reverse_ .navipage_first_ a:after {
    width: 40%;
    height: 40%;
    top: 0;
    bottom: 0;
    margin: auto;
  }
    .navipage_forward_ .navipage_last_ a:before {
    right: 50%;
  }
    .navipage_forward_ .navipage_last_ a:after {
    right: 15px;
  }
    .navipage_reverse_ .navipage_first_ a:before {
    left: 50%;
  }
    .navipage_reverse_ .navipage_first_ a:after {
    left: 15px;
  }
}
