@charset "UTF-8";
/* - - - - - - - - - */
/* - - - - - - - - - */
/* - - - - - - - - - */
/* - - - - - - - - - */
@import url("https://fonts.googleapis.com/css?family=EB+Garamond");
@font-face {
  font-family: "Yu Gothic M";
  src: local("Yu Gothic Medium");
}

@font-face {
  font-family: "Yu Gothic M";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}

@font-face {
  font-family: AVG35;
  src: url(../css/fonts/AVG35.otf);
}

@font-face {
  font-family: Monotype;
  src: url(../css/fonts/Monotype.otf);
}

/* ===================================================================

Base style

=================================================================== */
html {
  font-size: 62.5%;
}

body {
  background: #fff;
  color: #262626;
  font-size: 10px;
  font-size: 1.6rem;
  font-family: -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

@media all and (-ms-high-contrast: none) {
  body {
    font-family: a-otf-ryumin-pr6n,"メイリオ", Meiryo, -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  }
}

@media (min-width: 992px) {
  body {
    min-width: 1000px;
  }
}

.pc {
  display: inline-block;
}

@media (min-width: 768px) and (max-width: 991px) {
  .pc {
    display: none;
  }
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}

@media (min-width: 768px) and (max-width: 991px) {
  .sp {
    display: inline-block;
  }
}

@media (max-width: 767px) {
  .sp {
    display: inline-block;
  }
}

#wrapper {
  text-align: center;
  position: relative;
}

.contents {
  position: relative;
}

.animated {
  opacity: 0;
}

.fixed {
  position: fixed;
}

/* ===================================================================

header style

=================================================================== */
.header {
  position: relative;
}

.gNav {
  width: 100%;
  z-index: 999;
  padding: 100px 0 30px;
}

.gNav a {
  color: #000;
  font-size: 1.1rem;
}

@media (min-width: 1356px) {
  .gNav a {
    font-size: 1.8rem;
  }
}

.gNav a:hover {
  opacity: 0.5;
}

.gNav a:focus {
  color: #fff;
}

.gNav .header_logo {
  clear: both;
  margin: 0 0 20px;
}

@media (max-width: 991px) {
  .gNav .header_logo {
    margin: 0;
  }
}

.gNav .header_logo img {
  margin: 0 auto;
  width: 25%;
  display: block;
}

@media (max-width: 991px) {
  .gNav .header_logo img {
    width: 50%;
  }
}

.gNav .pc_nav {
  font-family: AVG35 !important;
  width: 50%;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .gNav .pc_nav {
    display: none;
  }
}

.gNav .pc_nav ul {
  display: flex;
  justify-content: space-around;
}

.gNav nav {
  display: inline-block;
  text-align: center;
  font-size: 1.4rem;
  position: absolute;
  top: 0;
  right: 140px;
  z-index: 999;
}

.gNav nav ul {
  padding: 20px;
}

.gNav nav ul li {
  display: inline-block;
  padding: 10px;
}

.gNav nav.navicon {
  right: 0;
}

.gNav nav.navicon ul {
  padding: 17px 20px;
}

@media (max-width: 991px) {
  .gNav nav.navicon {
    right: 40px;
  }
  .gNav nav.navicon ul {
    padding: 13px 20px;
  }
}

@media (max-width: 991px) {
  .gNav nav {
    display: none;
  }
  .gNav nav.navicon {
    display: block;
  }
}

.header .scroll {
  position: absolute;
  bottom: 130px;
  left: 10px;
  color: #000;
  font-size: 1.3rem;
  transform: rotate(90deg);
  transition: all .15s;
  animation-name: scroll1;
  animation-duration: 2s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}

@media (min-width: 1356px) {
  .header .scroll {
    font-size: 1.5rem;
  }
}

.header .scroll:after {
  content: "";
  display: inline-block;
  height: 1px;
  width: 80px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0 auto 15px;
  background: #000;
  transition: all .15s;
  animation-name: scroll2;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.header .header_spNav {
  display: none;
  padding: 40px 0 50px;
  z-index: 1000;
}

@media (max-width: 991px) {
  .header .header_spNav {
    display: block;
  }
}

.header .header_spNav img {
  max-width: 170px;
}

.header .header_spNav .logo {
  display: block;
  width: 50px;
  margin-left: 20px;
}

.header .header_spNav .spMenubar {
  position: relative;
  display: block;
  padding: 15px 0;
}

.header .header_spNav .spMenubar .spNav_on {
  display: none;
}

.header .header_spNav .spMenubar.active .logo {
  z-index: 1000;
  position: absolute;
}

.header .header_spNav .spMenubar.active .spNav_off {
  display: none;
}

.header .header_spNav .spMenubar.active .spNav_on {
  display: inline-block;
}

.header .header_spNav .spMenubar img {
  max-width: 100%;
}

.header .header_spNav.fixed .spMenubar {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}

.header .header_spNav .spNav {
  position: absolute;
  top: 17px;
  right: 20px;
  margin: auto;
  z-index: 999;
  transition: all .3s;
}

.header .header_spNav .spNav div {
  transition: all .3s;
}

.header .header_spNav .spNav div:hover {
  transition: all .3s;
}

.header .header_spNav .spNav span {
  position: relative;
  display: block;
  width: 30px;
  height: 3px;
  margin: 7px 0;
  background: #222f4c;
  transition: all .3s;
  overflow: hidden;
}

.header .header_spNav .spNav.open {
  transition: all 1s;
}

.header .header_spNav .spNav.open span {
  background: #aaa;
}

.header .header_spNav .spNav.open span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 2px;
}

.header .header_spNav .spNav.open span:nth-of-type(2) {
  transform: rotate(135deg);
  top: -8px;
}

.header .header_spNav .spNav.open span:nth-of-type(3) {
  opacity: 0;
}

.header .header_spNav .spNav.open + .spNavCont .navicon {
  position: relative;
}

.header .header_spNav .spNavCont {
  display: none;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #262626;
  z-index: 998;
}

.header .header_spNav .spNavCont .innerNav {
  height: 75vh;
  position: absolute;
  width: 100%;
  padding-top: 10vh;
}

.header .header_spNav .spNavCont .innerNav ul:last-of-type li {
  font-size: 1.2rem;
}

.header .header_spNav .spNavCont .innerNav ul:last-of-type li a {
  color: #fff;
}

.header .header_spNav .spNavCont .innerNav ul:last-of-type li a:hover {
  color: #fff;
}

.header .header_spNav .spNavCont .navicon {
  width: 40%;
  margin: 0 auto;
  text-align: center;
}

.header .header_spNav .spNavCont .navicon li {
  margin: 0;
  display: inline-block;
  padding: 10px;
}

.header .header_spNav .spNavCont ul {
  font-size: 0;
}

.header .header_spNav .spNavCont li {
  margin: 4vh 0;
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: 0.1em;
}

.header .header_spNav .spNavCont li.active a span:after {
  width: 100%;
}

@keyframes scroll1 {
  50% {
    bottom: 125px;
  }
  100% {
    bottom: 130px;
  }
}

@keyframes scroll2 {
  50% {
    margin: auto 0 auto 20px;
    width: 60px;
  }
  100% {
    margin: auto 0 auto 15px;
    width: 80px;
  }
}

/* ===================================================================

contents style

=================================================================== */
.contents {
  position: relative;
}

.contents .inner {
  max-width: 1000px;
  margin: 0 auto;
}

.title_cont {
  text-align: center;
  margin-bottom: 40px;
}

.title_cont .main-ttl {
  font-size: 5.6rem;
  font-family: Monotype;
  font-weight: 600;
  font-style: normal;
  line-height: 1;
}

.title_cont p {
font-family: a-otf-ryumin-pr6n, serif !important;
  padding-top: 40px;
}

.title_cont p.sub-ttl {
font-family: a-otf-ryumin-pr6n, serif !important;
  padding-top: 0;
  margin-top: 10px;
}

.sub .title_cont .main-ttl {
font-family: a-otf-ryumin-pr6n, serif !important;
  font-size: 3.6rem;
  font-weight: normal;
}

@media (max-width: 991px) {
  .sub .title_cont .main-ttl {
    font-size: 2.6rem;
  }
}

.sub .title_cont + .txt {
  text-align: center;
  margin-bottom: 40px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(38, 38, 38, 0.3);
}

@media (max-width: 991px) {
  .sub .title_cont + .txt {
    margin-bottom: 20px;
    padding: 20px 0;
    text-align: left;
  }
}

.contents .image {
  margin-bottom: 30px;
}

.contents .list {
  margin-bottom: 50px;
}

.contents .list li {
  display: inline-block;
}

.contents .list li:nth-of-type(1) {
  animation-delay: 0.1s;
}

.contents .list li:nth-of-type(2) {
  animation-delay: 0.2s;
}

.contents .list li:nth-of-type(3) {
  animation-delay: 0.3s;
}

.contents .list li:nth-of-type(4) {
  animation-delay: 0.4s;
}

.contents .list li:nth-of-type(5) {
  animation-delay: 0.5s;
}

.contents .list li:nth-of-type(6) {
  animation-delay: 0.6s;
}

.contents .list li:nth-of-type(7) {
  animation-delay: 0.7s;
}

.contents .list li:nth-of-type(8) {
  animation-delay: 0.8s;
}

.contents .list li:nth-of-type(9) {
  animation-delay: 0.9s;
}

.contents .list li:nth-of-type(10) {
  animation-delay: 1s;
}

.contents .list li:nth-of-type(11) {
  animation-delay: 1.1s;
}

.contents .list li:nth-of-type(12) {
  animation-delay: 1.2s;
}

.section-content {
  text-align: center;
  padding-bottom: 80px;
}

@media (max-width: 991px) {
  .section-content {
    text-align: left;
  }
}

.home .section-content {
  padding-top: 80px;
}

.fv_slider {
  overflow: hidden;
}

.slick-slider .slick-slide {
  text-align: center;
}

.slick-slider .slick-slide img {
  width: 100%;
}

.slick-slider .slick-slide img.pc {
  display: inline-block;
}

@media (max-width: 991px) {
  .slick-slider .slick-slide img.pc {
    display: none;
  }
}

.slick-slider .slick-slide img.sp {
  display: none;
}

@media (max-width: 991px) {
  .slick-slider .slick-slide img.sp {
    display: inline-block;
  }
}

.slick-slider.slick-slider {
  margin-bottom: 0;
}

.slick-slider .slick-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto 20px;
}

.slick-slider .slick-dots li {
  width: auto;
  height: auto;
  margin: 0 2px;
}

.slick-slider .slick-dots li button {
  background: #fff;
  height: 2px;
  width: 30px;
  padding: 0;
}

.slick-slider .slick-dots li button:before {
  content: none;
  color: transparent;
}

.slick-slider .slick-dots li.slick-active button {
  background: blue;
}

.more {
  margin: 0 auto;
}

.more a {
  display: inline-block;
  padding: 10px 40px;
  color: #c6c6c6;
  border: 1px solid rgba(198, 198, 198, 0.2);
  background: transparent;
  transition: all 1s;
}

.more a:hover {
  color: #262626;
  background: #fff;
}

.more.more_g a {
  color: rgba(38, 38, 38, 0.8);
  border: 1px solid rgba(38, 38, 38, 0.2);
}

.more.more_g a:hover {
  color: #fff;
  background: rgba(38, 38, 38, 0.8);
}

/* ===================================================================

sub style

=================================================================== */
.sub dl dt, .sub dl dd {
  word-break: break-all;
}

.breadCrumb {
  margin: 0 20px 80px;
}

.breadCrumb ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-around;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  padding-bottom: 10px;
}

.breadCrumb ul li {
  color: #fff;
  position: relative;
  padding-right: 20px;
  margin-right: 20px;
  font-size: 1.4rem;
}

.breadCrumb ul li:after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.breadCrumb ul li:last-child:after {
  border: none;
}

.breadCrumb ul li a {
  color: #fff;
}

@media (max-width: 991px) {
  .breadCrumb {
    margin: 0 2% 40px;
  }
  .breadCrumb ul {
    display: block;
    padding: 0 4%;
    text-align: left;
  }
  .breadCrumb ul li {
    display: inline-block;
    padding-right: 10px;
    margin-right: 10px;
  }
}

.mv {
  background: url(../images/sub_bg.jpg) no-repeat center/cover;
  padding-bottom: 120px;
  margin-bottom: 100px;
  color: #fff;
  text-align: center;
}

.mv .main-ttl {
  font-size: 5.6rem;
  font-family: Monotype;
  font-weight: 600;
  font-style: normal;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .mv {
    padding-bottom: 70px;
    margin-bottom: 80px;
  }
}

.return_top a {
  display: block;
  max-width: 480px;
  padding: 10px 20px;
  margin: 0 auto;
}

.info_box {
  text-align: left;
}

@media (max-width: 991px) {
  .info_box {
    padding: 0 4% 80px;
  }
}

.info_box h3 {
  padding: 15px 0;
  font-weight: bold;
}

.info_box p {
  padding-bottom: 15px;
}

.info_box dl {
  border-bottom: 1px solid rgba(38, 38, 38, 0.3);
  font-size: 0;
}

.info_box dl:first-of-type {
  border-top: 1px solid rgba(38, 38, 38, 0.3);
}

.info_box dl dt, .info_box dl dd {
  display: inline-block;
  padding: 15px 0;
  font-size: 1.6rem;
  vertical-align: top;
}

.info_box dl dt {
  width: 23%;
}

.info_box dl dd {
  width: 77%;
}

@media (max-width: 991px) {
  .info_box dl dt, .info_box dl dd {
    display: block;
    width: auto;
  }
  .info_box dl dd {
    padding-top: 0;
  }
}

/* ===================================================================

top style

=================================================================== */
#intro {
  color: rgba(0, 0, 0, 0.8);
  background-color: white;
  text-align: center;
  padding: 10% 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  #intro {
    padding: 150px 0;
  }
}

#intro .logo {
  margin-bottom: 50px;
  position: relative;
  z-index: 3;
}

#intro .logo img {
  width: 15%;
  margin: 0 auto;
  display: block;
}

@media (max-width: 991px) {
  #intro .logo img {
    width: 40%;
  }
}

#intro .txt {
  line-height: 1.8;
  margin-bottom: 50px;
  font-feature-settings: "palt";
  position: relative;
  z-index: 3;
}

@media (max-width: 991px) {
  #intro .txt {
    padding: 0 4%;
    font-size: 0.8em;
  }
}

#intro .txt .sponly {
  display: none;
}

@media (max-width: 991px) {
  #intro .txt .sponly {
    display: block;
  }
}

#intro .intro-img1 {
  position: absolute;
  top: 10%;
  left: 100px;
  width: 35%;
  transition: none;
}

@media (max-width: 991px) {
  #intro .intro-img1 {
    top: 60px;
    left: 0;
    transform: translate(-50%, 0);
    width: 80%;
  }
}

#intro .intro-img2 {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0 auto;
  transform: translate(-50%, -50%);
  width: 35%;
  transition: none;
  opacity: 0.5;
}

@media (max-width: 991px) {
  #intro .intro-img2 {
  position: absolute;
    bottom: 100px;
     top: -100px;
  left: -30%;
  margin: 0 auto;
    transform: translate(50%, 0);
    width: 80%;
  }
}

#lineup {
  background-color: #e6e6e6;
  text-align: center;
}

#lineup .title_cont {
  color: #000;
}

#lineup .title_cont .main-ttl {
  font-family: Monotype !important;
  font-weight: 400;
  font-size: 2.4em;
}

#lineup .lineup_list {
  font-size: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-around;
}

#lineup .lineup_list li {
  width: 40%;
  background-color: #e6e6e6;
  font-size: 1.6rem;
  transition: all .3s;
  padding: 40px 0;
  color: #262626;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-around;
}

#lineup .lineup_list li .lineup_list-child-img {
  width: 35%;
}

#lineup .lineup_list li .lineup_list-child-text {
  width: 65%;
  padding: 30px 0;
}

#lineup .lineup_list li .lineup_list-child-text .name, #lineup .lineup_list li .lineup_list-child-text .volume {
  text-align: left;
}

#lineup .lineup_list li li {
  box-shadow: none;
  width: 100%;
  padding: 0 0 20px;
  margin: 0 auto;
  display: block;
	float: left;
}

#lineup .lineup_list li li button {
  cursor: pointer;
}

#lineup .lineup_list li li:hover {
  box-shadow: none;
  transform: none;
}

@media (max-width: 991px) {
  #lineup .lineup_list li {
    width: 92%;
    margin: 0 auto 10px;
  }
}

#lineup .lineup_list .cart_name {
    padding-right: 0;
    padding-left: 0;
    line-height: 1.2;
    text-align: left;
}

#lineup .lineup_list .cart_name .small {
  font-size: 80%;
}

#lineup .lineup_list .btn_cart .btn-submit {
  display: inline-block;
  padding: 10px 15px;
  width: 70%;
  color: #fff;
  text-align: center;
  border: 1px solid #036EB8;
  background: #036EB8;
  font-size: 1.2rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  transition: all 0.3s;
  cursor: pointer;
}

#lineup .lineup_list .btn_cart .btn-submit:hover {
  color: #036EB8;
  background: #fff;
}

#lineup .lineup_list .btn_cart.onepiece .btn-submit {
  color: #036EB8;
  border: 1px solid #c2c2c2;
  background: #c2c2c2;
}

#lineup .lineup_list .btn_cart.onepiece .btn-submit:hover {
  color: #c2c2c2;
  background: #fff;
}

#lineup .lineup_list a:after {
  content: "";
  display: block;
  clear: both;
}

@media (max-width: 991px) {
  #lineup .lineup_list {
    margin-bottom: 0;
  }
  #lineup .lineup_list .image {
    max-width: 70%;
    margin: 0 auto;
  }
  #lineup .lineup_list .cart {
    text-align: center;
  }
}

#lineup .more {
  display: inline-block;
  margin-top: 20px;
  padding: 6px 0px;
  color: rgba(38, 38, 38, 0.8);
  border: 1px solid rgba(38, 38, 38, 0.2);
  background: transparent;
  transition: all 1s;
  font-size: 1.2rem;
}

#lineup .more:hover {
  color: #fff;
  background: rgba(38, 38, 38, 0.8);
}

@media (max-width: 991px) {
  #lineup .more {
    margin-top: 0;
  }
}

#media {
  text-align: center;
  background-image: linear-gradient(90deg, #262626, #313131, #262626);
}

#media .title_cont {
  color: #fff;
}

#media .image {
  margin-bottom: 60px;
}

@media (max-width: 991px) {
  #media .image {
    padding: 0 4%;
  }
}

#insta {
  text-align: center;
}

#insta .insta_list {
  max-width: 1400px;
  margin: 0 auto calc(50px - 2%);
  font-size: 0;
}

#insta .insta_list li {
  width: 16%;
  margin: 0 .3% 2%;
}

@media (max-width: 991px) {
  #insta .insta_list li {
    width: 30%;
    margin: 0 .15% 1%;
  }
}

#insta .insta_list li a {
  position: relative;
  display: block;
  max-width: 202px;
  background: #efefef url(../images/icon_insta.png) no-repeat center/auto;
  overflow: hidden;
}

#insta .insta_list li a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  width: 18px;
  height: 18px;
  margin: auto;
  background: transparent url(../images/icon_insta.png) no-repeat center/auto;
  opacity: 0;
  transition: all .3s;
}

#insta .insta_list li a:hover:after {
  opacity: 1.0;
}

#insta .insta_list li a:hover img {
  opacity: 0.2;
}

#insta .insta_list li img {
  opacity: 1.0;
  max-width: 100%;
}

#news,
#column {
  overflow: hidden;
}

#news .image,
#column .image {
  position: relative;
  display: block;
  background: transparent;
  margin-bottom: 15px;
}

#news .image:after,
#column .image:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  width: 132px;
  height: 65px;
  margin: auto;
  background: transparent url(../images/logo_w.png) no-repeat center/auto;
  opacity: 0;
  transition: all 1.5s;
}

#news .image:hover,
#column .image:hover {
  background: #bb2024;
}

#news .image:hover:after,
#column .image:hover:after {
  opacity: 1.0;
}

#news .image:hover img,
#column .image:hover img {
  opacity: 0.2;
}

#news .image img,
#column .image img {
  opacity: 1.0;
}

@media (max-width: 991px) {
  #news .image,
  #column .image {
    width: 45%;
    float: left;
  }
}

#news .info,
#column .info {
  text-align: left;
}

@media (max-width: 991px) {
  #news .info,
  #column .info {
    width: 50%;
    float: right;
  }
}

#news .info .data,
#column .info .data {
  color: #8a8a8a;
  padding-right: 10px;
}

#news .info .cat,
#column .info .cat {
  background: #bb2024;
  color: #fff;
  font-size: 1.5rem;
  padding: 2px 7px 3px;
  vertical-align: top;
}

#news a,
#column a {
  color: #262626;
}

#news .list,
#column .list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-around;
  font-size: 0;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: space-between;
}

#news li,
#column li {
  font-size: 1.6rem;
  width: 32%;
}

@media (max-width: 991px) {
  #news li,
  #column li {
    width: 92%;
    margin: 0 auto 10px;
  }
  #news li:after,
  #column li:after {
    content: "";
    display: block;
    clear: both;
  }
}

#news .more,
#column .more {
  text-align: right;
}

#news .more a,
#column .more a {
  font-size: 1.5rem;
  border: 0;
  padding: 0;
  text-decoration: underline;
}

#news .more a:hover,
#column .more a:hover {
  text-decoration: none;
}

@media (max-width: 991px) {
  #news .more,
  #column .more {
    padding: 0 4%;
  }
}

#news {
  text-align: center;
  background-image: linear-gradient(90deg, #e7edf0, #f8fafb, #e7edf0);
}

/* ===================================================================

about style

=================================================================== */
.about section {
  padding-bottom: 80px;
}

.about section p {
font-family: a-otf-ryumin-pr6n, serif !important;
  margin-bottom: 30px;
  font-size: 1.6rem;
  line-height: 2.6;
  word-break: break-all;
}

@media (max-width: 767px) {
  .about section {
    padding: 0 4% 60px;
  }
}

.about .sec01 {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.about .sec01 h2 {
  font-family: a-otf-ryumin-pr6n, serif !important;
  font-size: 3.6rem;
  margin-bottom: 30px;
  text-indent: 0.5em;
}

@media (max-width: 991px) {
  .about .sec01 h2 {
    font-size: 3.3rem;
  }
}

.about .sec02 {
  position: relative;
  font-size: 0;
  padding-bottom: 180px;
}

.about .sec02_cont {
  position: relative;
}

.about .sec02_inner {
  max-width: 1000px;
  margin: 0 auto;
}

.about .sec02_inner p {
  font-size: 1.5rem;
  max-width: 48%;
  padding-bottom: 0px;
  margin: auto 0px auto auto;
}

.about .sec02_title {
font-family: a-otf-ryumin-pr6n, serif !important;
  max-width: 48%;
  margin: auto 0 40px auto;
  padding-top: 30px;
  font-size: 3.4rem;
}

.about .sec02 .leftbg {
  position: absolute;
  top: 0;
  left: 0px;
  width: 50%;
  height: 100%;
  background: url(../images/about_img01.jpg) no-repeat left center/cover;
}

@media (max-width: 767px) {
  .about .sec02 {
    padding-bottom: 60px;
  }
  .about .sec02_inner p {
    max-width: none;
    margin: 0 4%;
  }
  .about .sec02_title {
    max-width: none;
    margin: 0 0 10px;
    font-size: 2.4rem;
  }
  .about .sec02 .leftbg {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    height: 200px;
  }
}

.about .sec03 {
  max-width: 1000px;
  margin: 0 auto;
}

.about .sec03_inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 70px 40px;
  background: #0d1644 url(../images/about_img02.jpg) no-repeat left top/100% auto;
}

.about .sec03_inner p {
  font-size: 1.5rem;
  max-width: 480px;
  padding-bottom: 0px;
  margin: auto 0px auto auto;
}

.about .sec03 p {
  padding: 0 10px 30px;
  font-size: 1.8rem;
  line-height: 1.6;
  color: #fff;
}

.about .sec03 .image {
  padding: 0 0 30px;
}

@media (max-width: 991px) {
  .about .sec03 p {
    padding: 0;
  }
  .about .sec03_inner {
    padding: 120px 20px 40px;
  }
}

/* ===================================================================

products style

=================================================================== */
.products,
.product {
  text-align: center;
}

.products .products_list,
.product .products_list {
  font-size: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-around;
}

.products .products_list li,
.product .products_list li {
  width: 30%;
  margin-bottom: 40px;
  background: #fff;
  font-size: 1.6rem;
  transition: all .3s;
  border: 1px solid #f1f1f1;
}

@media (max-width: 991px) {
  .products .products_list li,
  .product .products_list li {
    width: 92%;
    margin: 0 auto 10px;
  }
}

.products .products_list a,
.product .products_list a {
  display: block;
  padding: 40px 0;
  color: #262626;
}

.products .products_list a:after,
.product .products_list a:after {
  content: "";
  display: block;
  clear: both;
}

.products .products_list a:hover,
.product .products_list a:hover {
  color: #262626;
}

.products .products_list .name,
.product .products_list .name {
  font-size: 1.8rem;
}

@media (max-width: 991px) {
  .products .products_list .image,
  .product .products_list .image {
    float: left;
    width: 35%;
    margin-bottom: 0;
  }
  .products .products_list .name,
  .products .products_list .volume,
  .products .products_list .price,
  .product .products_list .name,
  .product .products_list .volume,
  .product .products_list .price {
    display: block;
    text-align: center;
    width: 60%;
    margin-right: 5%;
    float: right;
  }
}

.products a.more,
.product a.more {
  display: inline-block;
  width: 160px;
  height: 35px;
  margin: 25px 0 25px 0;
  padding: 7px 0 0 0;
  color: rgba(38, 38, 38, 0.8);
  border: 1px solid rgba(38, 38, 38, 0.2);
  background: transparent;
  transition: all 1s;
}

.products a.more:hover,
.product a.more:hover {
  color: #fff;
  background: rgba(38, 38, 38, 0.8);
}

@media (max-width: 991px) {
  .products .more,
  .product .more {
    display: block;
    text-align: center;
    width: calc(45% - 40px);
    margin: 10px 12% 0 0;
    padding: 5px 20px;
    float: right;
  }
}

.product .section-content + .section-content {
  border-top: 1px solid rgba(53, 53, 53, 0.3);
  padding-top: 80px;
}

.product .product_info {
  font-size: 0;
}

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

.product .product_info .image {
  float: left;
  width: 50%;
}

@media (max-width: 991px) {
  .product .product_info .image {
    float: none;
    width: auto;
    max-width: 70%;
    margin: 0 auto;
  }
}

.product .product_info .info {
  float: right;
  width: 50%;
  font-size: 1.6rem;
  text-align: left;
}

@media (max-width: 991px) {
  .product .product_info .info {
    float: none;
    width: auto;
    padding: 0 4%;
  }
}

.product .product_info .furigana {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(53, 53, 53, 0.3);
}

.product .product_info .info_wrap {
  padding: 15px 0;
  border-bottom: 1px solid rgba(53, 53, 53, 0.3);
}

.product .product_info .info_wrap:after {
  content: "";
  display: block;
  clear: both;
}

.product .product_info .info_wrap .volume {
  float: left;
}

.product .product_info .info_wrap .price {
  float: right;
}

@media (max-width: 991px) {
  .product .product_info .info_wrap .price {
    margin-top: 10px;
  }
}

.product .product_info .info_wrap.set .volume {
  width: 100%;
}

.product .product_info .info_wrap.set .price {
  margin-top: 10px;
}

.product .product_info .name {
  font-size: 3.2rem;
  font-weight: bold;
}

.product .product_info dl {
  padding: 15px 0;
  border-bottom: 1px solid rgba(53, 53, 53, 0.3);
}

.product .product_info dl.dropdown dt:before, .product .product_info dl.dropdown dt:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  margin: auto;
  background: rgba(53, 53, 53, 0.3);
  transition: all .3s;
}

.product .product_info dl.dropdown dt:before {
  right: 22px;
  height: 25px;
  width: 1px;
}

.product .product_info dl.dropdown dt:after {
  right: 10px;
  height: 1px;
  width: 25px;
}

.product .product_info dl.dropdown dd {
  display: none;
}

.product .product_info dl.dropdown.active dt:before {
  height: 0;
}

.product .product_info dl.dropdown.active dd {
  display: block;
}

.product .product_info dt {
  position: relative;
  font-weight: bold;
}

.product .product_info dd {
  padding-top: 20px;
}

.product .product_info .cart {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 15px 0 30px;
}

.product .product_info .cart dt {
  width: 100%;
}

@media (max-width: 991px) {
  .product .product_info .cart {
    display: block;
  }
}

.product .product_info .btn_cart .btn-submit {
  display: inline-block;
  padding: 10px 50px;
  color: #fff;
  text-align: center;
  border: 1px solid #036EB8;
  background: #036EB8;
  font-size: 1.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  transition: all 0.3s;
  cursor: pointer;
}

.product .product_info .btn_cart .btn-submit:hover {
  color: #036EB8;
  background: #fff;
}

.product .product_info .btn_cart.onepiece .btn-submit {
  border: 1px solid #c2c2c2;
  background: #c2c2c2;
}

.product .product_info .btn_cart.onepiece .btn-submit:hover {
  color: #c2c2c2;
  background: #fff;
}

@media (max-width: 991px) {
  .product .product_info .btn_cart {
    text-align: right;
  }
}

.product .feature {
  text-align: left;
}

@media (max-width: 991px) {
  .product .feature {
    padding: 0 4%;
  }
}

.product .feature .image {
  text-align: center;
}

.product .feature .photo_l {
  padding-top: 60px;
}

.product .feature h3 {
  position: relative;
  width: 50%;
  font-size: 4.8rem;
  font-family: poynter-oldstyle-display, serif;
  line-height: 1;
  display: inline-block;
  vertical-align: text-bottom;
}

.product .feature h3:after {
  content: "";
  display: block;
  clear: both;
}

.product .feature h3 span {
  float: right;
  font-size: 1.6rem;
  vertical-align: text-bottom;
  padding-top: 27px;
  text-align: right;
}

@media (max-width: 991px) {
  .product .feature h3 {
    width: auto;
    display: block;
    margin-bottom: 10px;
  }
  .product .feature h3 span {
    float: none;
    display: block;
    padding-top: 5px;
  }
}

/* ===================================================================

faq style

=================================================================== */
.faq_list dl {
  text-align: left;
  margin-bottom: 20px;
}

.faq_list dt, .faq_list dd {
  padding: 20px 30px;
  border: 1px solid #8495c5;
  font-size: 1.5rem;
}

.faq_list dt span, .faq_list dd span {
  color: #8495c5;
  font-weight: bold;
  font-size: 1.6rem;
  padding-right: 20px;
}

.faq_list dt {
  position: relative;
  border: 1px solid #c0c3e7;
  font-size: 1.5rem;
  border-radius: 3px;
  letter-spacing: 0.1rem;
  padding: 32px 80px 32px 35px;
}

.faq_list dt:before, .faq_list dt:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  height: 1px;
  margin: auto;
  background: #8495c5;
  transition: all 0.3s;
}

.faq_list dt:before {
  right: 35px;
  width: 24px;
}

.faq_list dt:after {
  right: 46px;
  width: 1px;
  height: 24px;
}

.faq_list dt span {
  letter-spacing: 0.38rem;
}

.faq_list dd {
  display: none;
  border-top: 0;
  border-radius: 0 0 3px 3px;
  text-indent: -5.2em;
  padding-left: 8.2em;
  letter-spacing: 0.1rem;
}

.faq_list dd span {
  padding-left: 35px;
  letter-spacing: 0.38rem;
}

.faq_list .active dt {
  border-radius: 3px 3px 0 0;
  background: #f7faff;
  border: 1px solid #8495c5;
}

.faq_list .active dt:after {
  height: 1px;
}

.faq_list .active dd {
  background: #f7faff;
}

@media (max-width: 767px) {
  .faq_list dl {
    padding: 0 6%;
  }
  .faq_list dd {
    padding: 6% 6% 6% 6%;
    text-indent: -3.6rem;
    padding-left: 6rem;
  }
  .faq_list dd span {
    padding-left: 0;
  }
  .faq_list dt {
    padding: 6% 12% 6% 18%;
    text-indent: -3.6rem;
    padding-left: 6rem;
  }
  .faq_list dt:before {
    right: 20px;
    width: 15px;
  }
  .faq_list dt:after {
    right: 27px;
    width: 1px;
    height: 15px;
  }
  .faq_list .active dt:after {
    height: 1px;
    background: #8692c7;
  }
  .faq_list .active dd {
    background: #f7faff;
  }
}

/* ===================================================================

company style

=================================================================== */
/* ===================================================================

footer style

=================================================================== */
footer {
font-family: a-otf-ryumin-pr6n, serif !important;
  position: relative;
  background-color: #0d1644;
  padding: 5% 10% 5%;
  color: #fff;
  text-align: center;
}

@media (max-width: 991px) {
  footer {
    display: block;
    padding: 10% 5%;
  }
}

footer .flex {
  display: flex;
}

@media (max-width: 991px) {
  footer .flex {
    display: block;
  }
}

footer .footer_content {
  margin: 0 auto;
  width: 35%;
}

@media (max-width: 991px) {
  footer .footer_content {
    padding-bottom: 40px;
    width: 100%;
  }
}

footer .footer_logo {
  text-align: center;
  margin-bottom: 3%;
  width: 40%;
}

footer .footer_logo a {
  display: inline-block;
}

footer .footer_contact {
  float: right;
  margin-top: 1%;
}

footer .footer_contact a {
  display: inline-block;
  padding: 6px 50px;
  color: #c6c6c6;
  border: 1px solid rgba(198, 198, 198, 0.2);
  background: transparent;
  transition: all 1s;
  font-size: 1.4rem;
}

@media (min-width: 1356px) {
  footer .footer_contact a {
    font-size: 1.6rem;
  }
}

footer .footer_contact a:hover {
  color: #262626;
  background: #fff;
}

@media (max-width: 991px) {
  footer .footer_contact {
    float: none;
  }
  footer .footer_contact a {
    display: block;
    margin: 0 auto;
    padding: 10px;
    width: 80%;
  }
}

footer .footer_nav {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 0 auto 60px;
  text-align: left;
  justify-content: space-between;
  display: flex;
  width: 65%;
 font-family: a-otf-ryumin-pr6n, serif important!;
}

@media (max-width: 991px) {
  footer .footer_nav {
    width: 100%;
    font-size: 0.4em;
  }
}

footer .footer_nav .title {
  width: 100%;
  font-size: 1.6rem;
  text-align: left;
  padding: 2% 0 1%;
  font-weight: 600;
}

@media (min-width: 1356px) {
  footer .footer_nav .title {
    font-size: 2.0rem;
  }
}

footer .footer_nav .title a {
  color: #c6c6c6;
}

footer .footer_nav ul {
  font-size: 0;
}

footer .footer_nav ul.item_nav {
  width: 50%;
}

footer .footer_nav ul.item_nav li {
  display: block;
}

footer .footer_nav ul.item_nav li:first-child {
  padding: 0 0 30px 0;
}

@media (max-width: 991px) {
  footer .footer_nav ul.item_nav li:first-child {
    padding: 0 0 15px;
  }
}

footer .footer_nav ul.content_nav {
font-family: a-otf-ryumin-pr6n, serif !important;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 50%;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
}

footer .footer_nav ul.content_nav li {
  display: block;
}

footer .footer_nav ul.content_nav li:first-child {
  padding: 10px 0 0.3% 30px;
}

@media (max-width: 991px) {
  footer .footer_nav ul.content_nav li:first-child {
    padding: 5px 0 0.3% 10px;
  }
}

footer .footer_nav li {
  display: inline-block;
  padding: 0 0 0.3% 30px;
  font-size: 1.4rem;
}

@media (max-width: 991px) {
  footer .footer_nav li {
    padding: 0 0 0.3% 10px;
  }
}

@media (min-width: 1356px) {
  footer .footer_nav li {
    font-size: 1.6rem;
  }
}

@media (max-width: 991px) {
  footer .footer_nav li {
    font-size: 1rem;
  }
}

footer .footer_nav li a {
  color: #c6c6c6;
  letter-spacing: 1px;
}

footer .snsicons {
  display: flex;
  justify-content: center;
}

footer .snsicons .icon {
  margin: 0 20px;
}

@media (max-width: 991px) {
  footer .snsicons .icon {
    margin: 0 10px;
  }
}

footer .snsicons .icon img {
  width: 30px;
}

@media (max-width: 991px) {
  footer .snsicons .icon img {
    width: 15px;
  }
}

footer .copy {
  display: block;
  background-image: linear-gradient(90deg, #262626, #313131, #262626);
  font-size: 1.2rem;
  padding: 13px 50px;
  text-align: center;
}

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

footer .copy small {
  display: inline-block;
  color: #aaa;
  font-size: 1.3rem;
}
/* ===================================================================

contact style

=================================================================== */
.contact {
  margin: 0 auto 80px;
  width: 55%;
}

@media (max-width: 991px) {
  .contact {
    margin-bottom: 60px;
    width: 95%;
  }
}

.wpcf7-text,
.wpcf7-textarea {
  width: 100%;
}

.wpcf7-submit{
  margin: 12px 0;
  border: 1px solid #036EB8;
  background-color: #036EB8;
  padding: 10px 30px;
  color: #FFF;
  font-size: 1.2rem;
  transition: all 0.3s
}

.wpcf7-submit:hover {
  color: #036EB8;
  background-color: #FFF;
}
