@charset "UTF-8";
/* css_name constants */
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;400;500;700&family=Noto+Serif+JP:wght@400;600&family=Zen+Antique&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Staatliches&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.css");
@import url("https://unpkg.com/swiper@8/swiper.min.css");
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

* {
  padding: 0;
  margin: 0;
  min-height: inherit;
  min-width: inherit;
  box-sizing: border-box;
}
*:focus {
  outline: none;
}

[type=hidden]:focus,
[type=text]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=url]:focus,
[type=email]:focus,
[type=password]:focus,
[type=datetime]:focus,
[type=date]:focus,
[type=month]:focus,
[type=week]:focus,
[type=time]:focus,
[type=datetime-local]:focus,
[type=number]:focus,
select:focus,
textarea:focus {
  border-color: inherit;
  box-shadow: none;
  outline: none;
}

p {
  margin: 0;
}

a {
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease-in-out;
}
a:hover img {
  transform: scale(1.06);
}
a img {
  transition: 0.3s;
  cursor: pointer;
}
a img:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
}

ol,
ul,
li,
dl,
dt,
dd {
  list-style: none;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #272020;
}

.center {
  text-align: center;
}

.text01 {
  padding: 40px 10px;
  color: #000;
}

.center {
  text-align: center;
}

.recommend_3.l-inner,
.recommend_4.l-inner {
  display: none;
}

/*
 * Mixin
 * -------------------------------------------------------------------
 */
/* ---sp--- */
/* ---percent--- */
/* css_name constants */
/* color constants */
/*
 * Fonts
 * -------------------------------------------------------------------
 */
/*
 * other
 * -------------------------------------------------------------------
 */
/*
 * Module
 * -------------------------------------------------------------------
 */
/*==================================================
ふわっ
===================================*/
/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 上から */
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

/*==================================================
パタッ
===================================*/
/* 下へ */
.flipDown {
  animation-name: flipDownAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes flipDownAnime {
  from {
    transform: perspective(2500px) rotateX(100deg);
    opacity: 0;
  }
  to {
    transform: perspective(2500px) rotateX(0);
    opacity: 1;
  }
}
/* 左へ */
.flipLeft {
  animation-name: flipLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  perspective-origin: left center;
  opacity: 0;
}

@keyframes flipLeftAnime {
  from {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
  }
  to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
/* 左上へ */
.flipLeftTop {
  animation-name: flipLeftTopAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes flipLeftTopAnime {
  from {
    transform: translate(-20px, 80px) rotate(-15deg);
    opacity: 0;
  }
  to {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
}
/* 右へ */
.flipRight {
  animation-name: flipRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  perspective-origin: right center;
  opacity: 0;
}

@keyframes flipRightAnime {
  from {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
    opacity: 0;
  }
  to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
/* 右上へ */
.flipRightTop {
  animation-name: flipRightTopAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes flipRightTopAnime {
  from {
    transform: translate(-20px, 80px) rotate(25deg);
    opacity: 0;
  }
  to {
    transform: translate(0, 1) rotate(0deg);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.flipDownTrigger,
.flipLeftTrigger,
.flipLeftTopTrigger,
.flipRightTrigger,
.flipRightTopTrigger {
  opacity: 0;
}

/*==================================================
くるっ
===================================*/
/* X 軸（縦へ） */
.rotateX {
  animation-name: rotateXAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes rotateXAnime {
  from {
    transform: rotateX(0);
    opacity: 0;
  }
  to {
    transform: rotateX(-360deg);
    opacity: 1;
  }
}
/*　Y軸（横へ） */
.rotateY {
  animation-name: rotateYAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes rotateYAnime {
  from {
    transform: rotateY(0);
    opacity: 0;
  }
  to {
    transform: rotateY(-360deg);
    opacity: 1;
  }
}
/* Z 軸（左へ） */
.rotateLeftZ {
  animation-name: rotateLeftZAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes rotateLeftZAnime {
  from {
    transform: rotateZ(0);
    opacity: 0;
  }
  to {
    transform: rotateZ(-360deg);
    opacity: 1;
  }
}
/*　Z 軸（右へ） */
.rotateRightZ {
  animation-name: rotateRightZAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes rotateRightZAnime {
  from {
    transform: rotateZ(0);
    opacity: 0;
  }
  to {
    transform: rotateZ(360deg);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.rotateXTrigger,
.rotateYTrigger,
.rotateLeftZTrigger,
.rotateRightZTrigger {
  opacity: 0;
}

/*==================================================
ボンッ、ヒュッ
===================================*/
/* 拡大 */
.zoomIn {
  animation-name: zoomInAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* 縮小 */
.zoomOut {
  animation-name: zoomOutAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes zoomOutAnime {
  from {
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.zoomInTrigger,
.zoomOutTrigger {
  opacity: 0;
}

/*==================================================
じわっ
===================================*/
/* ぼかしから出現 */
.blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.blurTrigger {
  opacity: 0;
}

/*==================================================
にゅーん
===================================*/
/* 滑らかに変形して出現 */
.smooth {
  animation-name: smoothAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  transform-origin: left;
  opacity: 0;
}

@keyframes smoothAnime {
  from {
    transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.smoothTrigger {
  opacity: 0;
}

/*==================================================
スーッ（枠線が伸びて出現）
===================================*/
/*枠線が伸びて出現*/
.lineTrigger {
  position: relative; /* 枠線が書かれる基点*/
  opacity: 0;
}

.lineTrigger.lineanime {
  animation-name: lineAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes lineAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*上下線*/
.lineTrigger::before,
.lineTrigger::after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background: #333; /* 枠線の色*/
}

/*左右線*/
.line2::before,
.line2::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 0;
  background: #333; /* 枠線の色*/
}

/*上線*/
.lineTrigger::before {
  top: 0;
  left: 0;
}

.lineTrigger.lineanime::before {
  animation: lineAnime 0.5s linear 0s forwards; /*表示されて0秒後に上線が0.5秒かけて表示*/
}

/*右線*/
.line2::before {
  top: 0;
  right: 0;
}

.lineTrigger.lineanime .line2::before {
  animation: lineAnime2 0.5s linear 0.5s forwards; /*表示されて0.5秒後に右線が0.5秒かけて表示*/
}

/*下線*/
.lineTrigger::after {
  bottom: 0;
  right: 0;
}

.lineTrigger.lineanime::after {
  animation: lineAnime 0.5s linear 1s forwards; /*表示されて1秒後に下線が0.5秒かけて表示*/
}

/*左線*/
.line2::after {
  bottom: 0;
  left: 0;
}

.lineTrigger.lineanime .line2::after {
  animation: lineAnime2 0.5s linear 1.5s forwards; /*表示されて1.5秒後に左線が0.5秒かけて表示*/
}

@keyframes lineAnime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes lineAnime2 {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
/*枠線内側の要素*/
.lineTrigger.lineanime .lineinappear {
  animation: lineInnerAnime 0.5s linear 1.5s forwards; /*1.5秒後に中央のエリアが0.5秒かけて表示*/
  opacity: 0; /*初期値を透過0にする*/
}

@keyframes lineInnerAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*==================================================
シャッ（背景色が伸びて出現）
===================================*/
/*背景色が伸びて出現（共通）*/
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden; /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*左から*/
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666; /*伸びる背景色の設定*/
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*右から*/
.bgRLextend::before {
  animation-name: bgRLextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666; /*伸びる背景色の設定*/
}

@keyframes bgRLextendAnime {
  0% {
    transform-origin: right;
    transform: scaleX(0);
  }
  50% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}
/*下から*/
.bgDUextend::before {
  animation-name: bgDUextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666; /*伸びる背景色の設定*/
}

@keyframes bgDUextendAnime {
  0% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
  50% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  50.001% {
    transform-origin: top;
  }
  100% {
    transform-origin: top;
    transform: scaleY(0);
  }
}
/*上から*/
.bgUDextend::before {
  animation-name: bgUDextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666; /*伸びる背景色の設定*/
}

@keyframes bgUDextendAnime {
  0% {
    transform-origin: top;
    transform: scaleY(0);
  }
  50% {
    transform-origin: top;
    transform: scaleY(1);
  }
  50.001% {
    transform-origin: bottom;
  }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgUDextendTrigger,
.bgDUextendTrigger,
.bgRLextendTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

/*========= レイアウトのためのCSS ===============*/
.wrapper {
  overflow: hidden;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.box {
  width: 220px;
  padding: 20px;
  margin: 0 20px 20px 20px;
  background: #666;
  color: #fff;
  box-sizing: border-box;
}

.bgextend,
.lineTrigger {
  width: 220px;
  padding: 20px;
  margin: 0 20px 20px 20px;
  box-sizing: border-box;
}

/*==================================================
アニメーション設定
===================================*/
/* アニメーションの回数を決めるCSS*/
.count2 {
  animation-iteration-count: 2; /*この数字を必要回数分に変更*/
}

.countinfinite {
  animation-iteration-count: infinite; /*無限ループ*/
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time05 {
  animation-delay: 0.5s;
}

.delay-time1 {
  animation-delay: 1s;
}

.delay-time15 {
  animation-delay: 1.5s;
}

.delay-time2 {
  animation-delay: 2s;
}

.delay-time25 {
  animation-delay: 2.5s;
}

/* アニメーション自体が変化する時間を決めるCSS*/
.change-time05 {
  animation-duration: 0.5s;
}

.change-time1 {
  animation-duration: 1s;
}

.change-time15 {
  animation-duration: 1.5s;
}

.change-time2 {
  animation-duration: 2s;
}

.change-time25 {
  animation-duration: 2.5s;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  height: 85px;
  width: 100%;
  z-index: 999;
  background: #000000;
}
@media screen and (max-width: 1080px) {
  .header {
    top: 0;
    box-shadow: none;
  }
}
@media screen and (max-width: 1080px) and (max-width: 1080px) {
  .header {
    height: 70px;
  }
}
@media screen and (max-width: 1080px) and (max-width: 635px) {
  .header {
    height: 31px;
  }
}
.header__nav {
  margin: 56px auto 0;
}
.header__nav__list {
  display: flex;
  justify-content: center;
}
.header__nav__unit {
  position: relative;
  z-index: 1;
  width: 160px;
  flex: 0 1 160px;
  align-items: stretch;
  margin: 0 20px;
}
.header__nav__unit:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 1px;
  background: #d8d8d8;
}
.header__nav__unit:nth-child(n+2) {
  margin-left: 8px;
}
.header__nav__unit a {
  display: block;
  height: 100%;
  padding: 16px 0 32px;
  font-family: "Noto Serif JP Kerning", "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.075em;
  text-align: center;
  color: #101010;
  text-decoration: none;
  transition: all 0.4s 0s cubic-bezier(0, 0.4, 0.4, 1);
}
.header__nav__unit a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 8px;
  height: 16px;
  margin-top: -4px;
  margin-left: -4px;
  transition: all 0.4s 0s cubic-bezier(0, 0.4, 0.4, 1);
}
.header__nav__unit a:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 1px;
  background: #ED4545;
  transition: all 0.4s 0s cubic-bezier(0, 0.4, 0.4, 1);
  transform: translateY(0) scale(0, 1);
  backface-visibility: hidden;
}
.header__nav__unit a:hover {
  color: #ED4545;
  transform: translateY(4px);
}
.header__nav__unit a:hover:after {
  transform: translateY(-4px) scale(1, 1.5);
  background-color: #ED4545;
}
.header__wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  height: 85px;
}
@media screen and (max-width: 1080px) and (max-width: 1080px) {
  .header__wrap {
    padding-left: 15px;
  }
}
@media screen and (max-width: 1080px) and (max-width: 635px) {
  .header__wrap {
    padding-left: 7px;
  }
}
@media screen and (max-width: 1080px) and (max-width: 1080px) {
  .header__wrap {
    padding-right: 15px;
  }
}
@media screen and (max-width: 1080px) and (max-width: 635px) {
  .header__wrap {
    padding-right: 7px;
  }
}
@media screen and (max-width: 1080px) and (max-width: 1080px) {
  .header__wrap {
    height: 70px;
  }
}
@media screen and (max-width: 1080px) and (max-width: 635px) {
  .header__wrap {
    height: 31px;
  }
}
.header__logo img {
  width: 210px;
  display: block;
}
@media screen and (max-width: 1080px) and (max-width: 1080px) {
  .header__logo img {
    width: 173px;
  }
}
@media screen and (max-width: 1080px) and (max-width: 635px) {
  .header__logo img {
    width: 76px;
  }
}
.header__menupc {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 1000px) {
  .header__menupc {
    display: none;
  }
}
.header__menupc > li {
  margin-left: 30px;
}
.header__menupc > li > a {
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  transition: all 0.2s ease;
}
.header__menupc > li > a:hover {
  opacity: 0.6;
}

/* CSS Document */
#sp_header {
  display: none;
}
@media screen and (max-width: 1000px) {
  #sp_header {
    display: block;
    /* メニューを開いた時に
    オーバーレイの上に来るように絶対指定 */
    width: 100%;
    height: 55px;
    color: #fff;
    z-index: 9999;
    /* 最前面に来るように */
    position: fixed;
    top: 0;
    background: #000;
  }
}

#sp_header h1.logo {
  height: 55px;
  margin: 0 auto;
  margin-left: -4%;
}
#sp_header h1.logo a img {
  width: 142px;
  margin: 12px 0 12px 40px;
}
@media screen and (max-width: 640px) {
  #sp_header h1.logo a img {
    width: 162px;
    margin: 12px 0 12px 20px;
  }
}

#sp_header #feature_title {
  width: 100%;
  font-size: 0.875rem;
  font-size: 14px;
  line-height: 1.4rem;
  color: #fff;
  background: #000;
  border-top: 1px solid #fff;
  font-weight: normal;
  padding: 1% 0;
  text-align: center;
}

/*------------------------------------------------------------
	メニュー
------------------------------------------------------------*/
.menu {
  overflow-y: auto;
  /* 縦方向のみスクロール */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 300px;
  /* 横に広がり過ぎないように */
  color: #000;
  background: #f5f5f5;
  text-align: left;
  z-index: 9999;
  /* アニメーション */
  transition: 0.2s ease-in-out;
}

.navName {
  color: #fff;
  display: block;
  font-size: 0.75rem;
  text-align: center;
  margin: 0 auto;
}

/* メニューON/OFF */
.menuOff {
  transform: translate3d(-100%, 0, 0);
  z-index: 9999;
  /* 最前面に来るように */
}

.menuOn {
  box-shadow: 8px 8px 20px 0 rgba(0, 0, 0, 0.2);
  transform: translate3d(0, 0, 0);
}

.ie .menuOff {
  left: -100%;
  /* IE向け */
}

.ie .menuOn {
  left: 0;
  /* IE向け */
}

/* ナビゲーション以外固定 */
.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

/* オーバーレイ */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
  z-index: 999;
}

/*------------------------------------------------------------
	メニュー内部設定
------------------------------------------------------------*/
.menu .sub_title {
  font-size: 1rem;
  font-size: 16px;
  line-height: 1.4rem;
  color: #fff;
  padding: 12px 10px;
  background: #000;
}
.menu .sub_title a {
  color: #fff;
}

.menu ul li {
  width: 100%;
  font-size: 1rem;
  font-size: 16px;
  line-height: 1.4rem;
  padding: 10px;
  box-sizing: border-box;
  display: table;
}
.menu ul li a {
  color: #000;
}

.menu ul li.sidelist a {
  display: table-cell;
  width: 95%;
  color: #000;
}

.menu ul li.sidelist:after {
  display: table-cell;
  width: 5%;
  font-size: 1rem;
  font-size: 16px;
  line-height: 1.4rem;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  content: "\f061";
}

.menu ul li.sidelist.droptitle:after {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  content: "\f105";
}

.menu ul li.sidelist.droptitle.active:after {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  content: "\f107";
}

.menu ul.inlist li.sidelist {
  background: #ddd;
}

.menu .listwrap {
  padding: 5px;
}

.menu .listwrap .sqlist {
  width: 33.3%;
  float: left;
  padding: 5px;
  box-sizing: border-box;
  font-size: 1.2em;
}

.menu .listwrap .sqlist .name {
  padding: 0;
  font-size: 0.6rem;
  font-weight: normal;
  line-height: 1.2em;
}

.menu .listwrap .sqlist img {
  width: 100%;
  padding-bottom: 5px;
  box-sizing: border-box;
  font-size: 1.2em;
}

#gohome a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  content: "\f106";
  margin-right: 10px;
}

/*------------------------------------------------------------
	検索
------------------------------------------------------------*/
.search_box {
  vertical-align: middle;
  text-align: center;
  width: 90%;
  display: table;
  margin: 0 auto;
  padding: 20px 10px 20px 5px;
}
.search_box div {
  display: table-cell;
  padding-right: 30px;
}
.search_box div :last-child {
  width: 80px;
  padding-right: 0;
}

#keyword {
  width: 110%;
  height: 40px;
  border: solid 1px #c0c0c0;
  border-radius: 3px;
  background: #fff;
  vertical-align: middle;
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2) inset;
  font-size: 1rem;
}

input.search_submit {
  width: 65px;
  height: 40px;
  background: #333;
  border: solid 1px #333;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  vertical-align: middle;
  color: #eee;
  font-size: 0.8em;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#555), to(#222));
  /*終了色*/
}

.main_visual_box {
  height: 190px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.item .vis {
  line-height: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 0;
}

.keyword {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 20px;
}

.keyword a {
  color: -webkit-link;
  text-decoration: underline;
  cursor: auto;
}

/*------------------------------------------------------------
	ナビゲーションアイコン
------------------------------------------------------------*/
.navBtn {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 55px;
}
.navBtn .navname {
  display: block;
  color: #fff;
  font-size: 0.6rem;
  text-align: center;
}
.navBtn button {
  display: block;
  border: none;
  background: none;
  outline: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  −moz−tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}

/* IE8以下はアイコン位置調整 */
#ie8 .navBtn,
#ie7 .navBtn,
#ie6 .navBtn {
  top: 30px;
}

.navIcon {
  padding: 1.25rem 0.5rem 0.5rem 0.5rem;
  cursor: pointer;
  transform: scale(0.8);
}

/*----- アイコンレイヤー -----*/
/*----- 開閉前 アイコンレイヤー -----*/
.iconLayer {
  position: relative;
  display: block;
  width: 35px;
  height: 5px;
  background: #fff;
  animation-duration: 300ms;
  animation-timing-function: ease-in-out;
}

.iconLayer:before,
.iconLayer:after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: inherit;
  height: 5px;
  background: inherit;
  animation-duration: 300ms;
  animation-timing-function: ease-in-out;
}

.iconLayer:before {
  bottom: 200%;
}

.iconLayer:after {
  top: 200%;
}

/*----- 開閉中 アイコンレイヤー -----*/
.arrow {
  animation-name: navIconSlide;
  animation-fill-mode: forwards;
  background: rgba(0, 0, 0, 0);
}
@keyframes navIconSlide {
  100% {
    transform: rotate(180deg);
  }
}
/* ナビアイコン：矢印:before */
.arrow:before {
  animation-name: navIconSlideBefore;
  animation-fill-mode: forwards;
  background: #fff;
}
@keyframes navIconSlideBefore {
  100% {
    margin: -25% 0%;
    width: 100%;
    transform: rotate(45deg);
  }
}
/* ナビアイコン：矢印:after */
.arrow:after {
  animation-name: navIconSlideAfter;
  animation-fill-mode: forwards;
  background: #fff;
}
@keyframes navIconSlideAfter {
  100% {
    margin: -32% 0%;
    width: 100%;
    transform: rotate(-45deg);
  }
}
/*----- 開閉後 アイコンレイヤー -----*/
.hamburger {
  animation-name: navIconSlideFrom;
  background: #fff;
  transition: 0.3s;
}
@keyframes navIconSlideFrom {
  0% {
    transform: rotate(-180deg);
  }
}
/* ナビアイコン：ハンバーガー:before */
.hamburger:before {
  animation-name: navIconSlideBeforeFrom;
}
@keyframes navIconSlideBeforeFrom {
  0% {
    margin: -25% 0%;
    width: 100%;
    transform: rotate(45deg);
  }
}
/* ナビアイコン：ハンバーガー:after */
.hamburger:after {
  animation-name: navIconSlideAfterFrom;
}
@keyframes navIconSlideAfterFrom {
  0% {
    margin: -32% 0%;
    width: 100%;
    transform: rotate(-45deg);
  }
}
/* ポイントフッター */
#pointfooter {
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 999999;
  height: 0px;
  /*height: 76px; ポイントアップ */
}

/*===============================================
right navi
===============================================*/
#right_navi {
  position: fixed;
  z-index: 999;
  top: 130px;
  right: 0;
}
@media screen and (max-width: 1200px) {
  #right_navi {
    position: absolute;
    z-index: -999;
    top: 0;
    right: 0;
    display: none;
  }
}
#right_navi .ttl {
  font-family: "Staatliches", cursive;
  font-size: 60px;
  text-align: center;
  width: 115px;
  height: 54px;
  margin: 0 auto 10px;
}
#right_navi ul li a {
  display: block;
  box-sizing: border-box;
  width: 180px;
  margin-bottom: 5px;
  padding: 15px 0;
  font-size: 1.3rem;
  color: #ffffff;
  background: #000;
  text-align: center;
}
#right_navi ul li a:hover {
  background: #ed2409;
}
#right_navi ul li a.now {
  background: #ed2409;
}

.footer {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 0.08em;
  line-height: 28px;
  text-align: left;
  color: #f5eeee;
  background: #212529;
  padding: 60px 0 39px;
}
.footer__grid {
  display: grid;
  gap: 0 40px;
  grid-template-columns: 0.6fr 0.4fr;
}
@media screen and (max-width: 1000px) {
  .footer__grid {
    gap: 30px 0;
    grid-template-columns: 1fr;
  }
}
.footer__grid--inner p:not(:last-child) {
  margin-bottom: 28px;
}

/*
 * トップページ
 * -------------------------------------------------------------------
 */
.pc {
  display: block !important;
}
@media screen and (max-width: 1000px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 1000px) {
  .sp {
    display: block !important;
  }
}

@media screen and (min-width: 1025px) {
  .tab-sp {
    display: none !important;
  }
}

@media screen and (max-width: 599px) {
  .pc-tab {
    display: none !important;
  }
}

main {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
@media screen and (max-width: 1080px) {
  main {
    justify-content: flex-start;
    flex-direction: column;
  }
}
@media screen and (max-width: 1080px) and (max-width: 1080px) {
  main {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1080px) and (max-width: 635px) {
  main {
    margin-top: 9px;
  }
}
main > section {
  width: 830px;
}
@media screen and (max-width: 1080px) {
  main > section {
    width: 100%;
  }
}

@media screen and (max-width: 1080px) {
  .only-pc {
    display: none !important;
  }
}

.only-sp {
  display: none !important;
}
@media screen and (max-width: 1000px) {
  .only-sp {
    display: flex !important;
  }
}

.both-sp-tablet {
  display: none !important;
}
@media screen and (max-width: 1080px) {
  .both-sp-tablet {
    display: flex !important;
  }
}

@media screen and (max-width: 1000px) {
  .both-pc-tablet {
    display: none !important;
  }
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

.contents-2 {
  max-width: 1080px;
  width: calc(100% - 40px);
  margin: 0 auto;
  padding: 50px 0 0;
}
@media screen and (max-width: 1080px) {
  .contents-2 {
    padding: 50px 0 10px;
  }
}
@media screen and (max-width: 640px) {
  .contents-2 {
    padding: 10px 0;
  }
}

.bg__gray {
  background: #f8f6ea;
  padding-bottom: 100px;
}

.fv_image img {
  width: 100%;
}

.productCWrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding-top: 85px;
}

.productCWrap_1 {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .productCWrap_1 {
    background-size: cover;
  }
}

.productCWrap_1_img {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background: url(../images/bg_1.webp) center top repeat;
  overflow: hidden;
  padding-top: 85px;
}
@media screen and (max-width: 640px) {
  .productCWrap_1_img {
    background-size: cover;
    height: 500px;
  }
}

.top_lead_txt {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
  color: #000;
  width: 100%;
  margin: 0 auto 100px;
  text-align: left;
  font-size: 25px;
  line-height: 1.8;
  padding-top: 30px;
}
@media screen and (max-width: 1000px) {
  .top_lead_txt {
    font-size: 15px;
    margin: 0 auto 50px;
  }
}

.product__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 25px;
  line-height: 1.8;
  text-align: center;
  color: #fff;
  background: #1c1c1c;
  padding: 15px;
  margin-top: 70px;
  margin-bottom: 1em;
}
.product__flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.product__content4_left {
  width: 24%;
  position: relative;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .product__content4_left {
    width: 100%;
  }
}
.product__content4_left-item {
  font-size: 1rem;
  line-height: 180%;
}
.product__content4_right {
  width: 73%;
  display: inline-block;
}
@media screen and (max-width: 1000px) {
  .product__content4_right {
    width: 100%;
  }
}
.product__content4_right-item {
  font-size: 1rem;
  line-height: 180%;
}
.product__content4_right h4 {
  color: #a3236f;
  padding: 0;
  font-size: 1.7em;
  line-height: 1.6em;
}
.product__alcohol {
  position: relative;
}
.product__alcohol__txt {
  padding-top: 45px;
}

.mb-13 {
  display: inline-block;
  margin-bottom: 13px;
}

/* 01 */
.button01 a {
  background: #eee;
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  padding: 10px 25px;
  color: #313131;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}
.button01 a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.button01 a:hover {
  background: #c6872a;
  color: #fff;
}
.button01 a:hover:after {
  right: 1.4rem;
}

.animate-link {
  text-decoration: none;
  color: #000;
  background-image: linear-gradient(90deg, #000, #000);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 3px;
  transition: background-size 0.6s;
}
.animate-link:hover {
  background-size: 100% 3px;
}

/*========= トップへ戻る===============*/
#page-top {
  position: fixed;
  right: 26px;
  bottom: 15px;
  z-index: 2;
  writing-mode: vertical-rl;
  white-space: nowrap;
}
#page-top a {
  text-decoration: none;
  color: #666;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: block;
}
#page-top a:before {
  content: "";
  position: absolute;
  top: 0;
  right: -6px;
  width: 1px;
  height: 20px;
  background: #666;
  transform: skewX(31deg);
}
#page-top a:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 75px;
  background: #666;
}/*# sourceMappingURL=main.css.map */