@charset "UTF-8";
/*リセット
--------------------------------------------*/
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

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

a img {
  border: none;
}

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

/*フォント
---------------------------------------------*/
@font-face {
  font-family: "noto-sans";
  src: url("../fonts/NotoSansCJKjp-Bold.woff2") format("woff2"), url("../fonts/NotoSansCJKjp-Bold.woff") format("woff"), url("../fonts/NotoSansCJKjp-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/*メディアクエリー
---------------------------------------------*/
/*変数
---------------------------------------------*/
/* コンテンツ
---------------------------------------------*/
html,
body,
#wrapper {
  letter-spacing: 0.2em;
  width: 100%;
  font-family: yu-gothic-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6em;
  font-size: 18px;
  color: #1A1A1A;
  font-feature-settings: "palt";
}
@media screen and (min-width: 769px) {
  html,
  body,
  #wrapper {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  html,
  body,
  #wrapper {
    font-size: 12px;
  }
}
html a,
body a,
#wrapper a {
  text-decoration: none;
}

.min_bold {
  font-family: fot-udmincho-pr6n, sans-serif;
  font-weight: 500;
  font-style: normal;
}

.min {
  font-family: fot-udmincho-pr6n, sans-serif;
  font-weight: 300;
  font-style: normal;
}

img {
  width: 100%;
  display: block;
}

@media screen and (min-width: 769px) {
  .pcNone {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pcNone {
    display: block;
  }
}

@media screen and (min-width: 769px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  #mainArea {
    /* 1. position を relative にし、z-index を明示的に高くする */
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    align-items: center; /* 画面中央に配置する場合 */
    justify-content: center;
    display: block;
    background: url(../images/main_pc2.jpg);
    background-size: cover;
    background-position: center center;
  }
  #mainArea:before {
    content: "";
    display: block;
    padding-top: 52.3%;
  }
}
#mainArea h1 {
  width: 40%;
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
}
#mainArea h2 {
  font-size: 32px;
  color: #fff;
  position: absolute;
  top: 8%;
  right: 10%;
  /* 1. 縦書き（右から左へ改行）の指定 */
  writing-mode: vertical-rl;
  /* 2. 【最重要】英数字が横を向いてガタつくのを防ぎ、すべて直立させる */
  text-combine-upright: none;
  font-feature-settings: "pkna" 1; /* プロポーショナルかなを有効にして文字間を綺麗に */
  /* 3. 行間と文字のブレを防ぐ設定 */
  line-height: 2em; /* 縦書きの行間は広め（2em前後）が圧倒的に綺麗 */
  letter-spacing: 0.15em; /* 文字と文字の間隔を少し空けると安定します */
  /* 4. 高さの基準をしっかり決める（これがないと親要素に応じてガタつきます） */
  height: auto;
  max-height: 400px; /* 必要に応じて、縦の限界線を決めておくと崩れません */
}
#mainArea h3 {
  width: 15%;
  position: absolute;
  top: 8%;
  left: 10%;
}
#mainArea h4 {
  position: absolute;
  bottom: 20%;
  left: 0%;
  /* 親のh4自体の背景色やpaddingはすべて消します */
  background-color: transparent;
  padding: 0;
}
#mainArea h4 span {
  display: block; /* ★ここが最大のポイント。1行ずつ完全に独立した箱にする */
  background-color: #1A1A1A;
  color: #fff;
  font-size: 32px;
  padding: 10px; /* 帯の太さ（上下左右の余白） */
  width: -moz-fit-content;
  width: fit-content; /* 文字の長さに合わせて帯の横幅を自動で縮める */
  /* --- 帯と帯の間の「空白」をここでミリ単位で完全制御 --- */
  margin-bottom: 10px; /* ここの数値を大きくするほど、帯の間がガバッと空きます */
  /* 最後の行だけは下の余白をゼロにする（念のため） */
}
#mainArea h4 span:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #mainArea {
    width: 100%;
  }
}

#content {
  width: 100%;
  letter-spacing: 1px;
  width: 100%;
  background-image: url("../images/back_pc.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  position: relative;
  z-index: 0;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  #content {
    overflow: hidden;
    padding-bottom: 0px;
  }
}
#content::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  /* 画面の見た目幅(vw)に強制固定して、画像のはみ出しを物理的にカット */
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background-image: url("../images/back_2.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  /* 横幅を画面にぴったり合わせる */
  background-size: 100% auto;
}
@media screen and (max-width: 768px) {
  #content::before {
    /* スマホでは画像が小さくなりすぎるなら、coverで隙間を埋める */
    background-size: cover;
  }
}
#content .lead {
  padding: 120px 0 70px;
  text-align: center;
  color: #FEF9D5;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #content .lead {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 2.4em;
    padding: 100px 0 50px;
  }
}
#content .lead p.title {
  font-size: 38px;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #content .lead p.title {
    font-size: 28px;
  }
}
#content .lead p.txt {
  font-size: 18px;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  #content .lead p.txt {
    font-size: 16px;
  }
}
#content .box {
  width: 800px;
  margin: 0 auto;
  background-color: #AF9251;
  padding: 70px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #content .box {
    width: 90%;
    padding: 70px 0px;
  }
}
#content .box .boxtitle {
  font-size: 28px;
  letter-spacing: 0.2em;
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 1.6em;
}
@media screen and (max-width: 768px) {
  #content .box .boxtitle {
    font-size: 22px;
    letter-spacing: 0.12em;
    margin-bottom: 30px;
  }
}
#content .box .boxtitle_l {
  font-size: 36px;
  letter-spacing: 0.2em;
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 1.6em;
}
@media screen and (max-width: 768px) {
  #content .box .boxtitle_l {
    font-size: 18px;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
  }
}
#content .box .boxtitle_brown {
  font-size: 28px;
  letter-spacing: 0.2em;
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 1.6em;
  color: #371B06;
}
@media screen and (max-width: 768px) {
  #content .box .boxtitle_brown {
    font-size: 18px;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
  }
}
#content .box .boxtitle_brown span {
  display: block;
  font-size: 22px;
  letter-spacing: 0.2em;
  margin-bottom: 0px;
}
#content .box p.txt {
  margin: 0 auto;
  font-size: 22px;
  letter-spacing: 0.12em;
  font-weight: 500;
  width: 652px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #content .box p.txt {
    font-size: 16px;
    width: 90%;
    margin: 0 auto;
    line-height: 1.8em;
  }
}
#content .box p.txt span {
  display: block;
  font-size: 14px;
  letter-spacing: 0.2em;
  margin-top: 0px;
}
@media screen and (max-width: 768px) {
  #content .box p.txt span {
    font-size: 12px;
    letter-spacing: 0.12em;
    margin-top: 15px;
  }
}
#content .box .boximg {
  width: 500px;
  margin: -30px auto 0;
}
@media screen and (max-width: 768px) {
  #content .box .boximg {
    width: 90%;
    margin-top: -30px;
  }
}
#content .box1 {
  margin-bottom: 120px;
  position: relative;
}
#content .box1::before {
  content: "";
  display: block;
  background: url(../images/lead_img1.png) no-repeat; /*フレーム上部画像*/
  width: 120px;
  height: 120px;
  top: 0%;
  right: -3px;
  position: absolute;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  #content .box1::before {
    width: 70px;
    height: 70px;
  }
}
#content .box1::after {
  content: "";
  display: block;
  background: url(../images/lead_img2.png) no-repeat; /*フレーム上部画像*/
  width: 120px;
  height: 120px;
  bottom: 0%;
  left: 0%;
  position: absolute;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  #content .box1::after {
    width: 70px;
    height: 70px;
  }
}
#content .box1 ul {
  margin: 0 auto 20px;
  width: 540px;
}
@media screen and (max-width: 768px) {
  #content .box1 ul {
    width: 90%;
  }
}
#content .box1 ul li {
  font-size: 18px;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  display: flex;
}
@media screen and (max-width: 768px) {
  #content .box1 ul li {
    font-size: 16px;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
  }
}
#content .box1 ul li .listimg {
  width: 30px;
}
#content .box1 ul li .listimg img {
  width: 30px;
  margin-right: 10px;
  height: 30px;
}
@media screen and (max-width: 768px) {
  #content .box1 ul li .listimg img {
    width: 30px;
    margin-right: 8px;
    height: auto;
  }
}
#content .box1 ul li p {
  line-height: 1.6em;
}
@media screen and (max-width: 768px) {
  #content .box1 ul li p {
    line-height: 1.7em;
  }
}
#content .box2 {
  position: relative;
  margin-bottom: 120px;
}
#content .box2 ul {
  margin: 20px auto 20px;
  width: 680px;
}
@media screen and (max-width: 768px) {
  #content .box2 ul {
    width: 90%;
  }
}
#content .box2 ul li {
  padding: 50px;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  background-color: #CAB680;
}
@media screen and (max-width: 768px) {
  #content .box2 ul li {
    font-size: 14px;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    padding: 20px 0;
  }
}
#content .box2 ul li {
  /* 偶数番目（2, 4, 6, 8...個目）をすべて対象にする */
}
#content .box2 ul li:nth-child(even) {
  background-color: #DDCAA0;
  position: relative;
}
#content .box2 ul li:nth-child(even)::before {
  content: "";
  display: block;
  background: url(../images/img1.png) no-repeat; /*フレーム上部画像*/
  width: 100px;
  height: 100px;
  top: 10px;
  right: -30px;
  position: absolute;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  #content .box2 ul li:nth-child(even)::before {
    width: 70px;
    height: 70px;
    right: -20px;
    top: -36px;
  }
}
#content .box2 ul li:nth-child(odd) {
  position: relative;
}
#content .box2 ul li:nth-child(odd)::before {
  content: "";
  display: block;
  background: url(../images/img2.png) no-repeat; /*フレーム上部画像*/
  width: 120px;
  height: 120px;
  top: 0px;
  left: -60px;
  position: absolute;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  #content .box2 ul li:nth-child(odd)::before {
    width: 80px;
    height: 80px;
    left: -15px;
    top: -55px;
  }
}
#content .box2 ul li .box_flex {
  display: flex;
  margin: 0 auto 10px;
  color: #371B06;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  #content .box2 ul li .box_flex {
    width: 90%;
  }
}
#content .box2 ul li .box_flex .number {
  width: 30px;
  margin-right: 7px;
}
@media screen and (max-width: 768px) {
  #content .box2 ul li .box_flex .number {
    width: 7%;
  }
}
#content .box2 ul li .box_flex p {
  font-size: 20px;
  width: 90%;
}
@media screen and (max-width: 768px) {
  #content .box2 ul li .box_flex p {
    font-size: 16px;
    margin: 0 auto;
    width: 90%;
  }
}
#content .box2 ul li p {
  font-size: 18px;
  color: #371B06;
  line-height: 1.7em;
}
@media screen and (max-width: 768px) {
  #content .box2 ul li p {
    font-size: 14px;
    width: 90%;
    margin: 0 auto;
  }
}
#content .box3 {
  background-color: #DDCAA0;
}
#content .box3 ul.list {
  margin: 0 auto 20px;
  width: 700px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* これを入れると、1つだけ縦にビヨーンと伸びるのを防げます */
}
@media screen and (max-width: 768px) {
  #content .box3 ul.list {
    width: 90%;
    display: block;
  }
}
#content .box3 ul.list li {
  width: 49%;
  flex-wrap: wrap;
  font-size: 18px;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #content .box3 ul.list li {
    width: 90%;
    font-size: 14px;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    margin: 0 auto 20px;
  }
}
#content .box3 ul.list li .list_inner a {
  display: flex;
  justify-content: space-between; /* 左右にきれいに振り分ける */
  align-items: flex-start; /* テキストの開始位置を上に揃える */
  color: #371B06;
}
#content .box3 ul.list li .list_inner a .img_inner {
  width: 40%;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  #content .box3 ul.list li .list_inner a .img_inner {
    width: 40%;
  }
}
#content .box3 ul.list li .list_inner a .img_inner img {
  width: 100%; /* 画像自体が飛び出さないように */
  height: auto;
}
@media screen and (max-width: 768px) {
  #content .box3 ul.list li .list_inner a .img_inner img {
    height: auto;
  }
}
#content .box3 ul.list li .list_inner a p {
  width: 60%;
  justify-content: center;
  align-items: center;
  line-height: 1.6em;
  font-size: 16px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  #content .box3 ul.list li .list_inner a p {
    line-height: 1.4em;
    font-size: 16px;
    width: 60%;
  }
}
#content .box3 ul.list li .list_inner a p span {
  display: block;
  background-color: #371B06;
  width: 130px;
  box-sizing: border-box;
  height: 40px;
  color: #fff;
  line-height: 40px;
  text-align: center;
  margin-top: 10px;
}
@media screen and (min-width: 769px) {
  #content .box3 ul.list li .list_inner a p span {
    height: 30px;
    line-height: 30px;
  }
}
#content .dx_lp {
  width: 600px;
  margin: 0 auto 120px;
}
@media screen and (max-width: 768px) {
  #content .dx_lp {
    width: 90%;
  }
}

#content2 {
  width: 100%;
  letter-spacing: 1px;
  width: 100%;
  background-image: url("../images/back_pc.jpg");
  background-repeat: repeat;
  background-position: top center;
  background-size: cover;
  position: relative;
  z-index: 0;
  padding-bottom: 120px;
}
#content2 .lead {
  padding: 120px 0 20px;
  text-align: center;
  color: #FEF9D5;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #content2 .lead {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
#content2 .lead p.title {
  font-size: 38px;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #content2 .lead p.title {
    font-size: 26px;
  }
}
#content2 .lead p.txt {
  font-size: 18px;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  #content2 .lead p.txt {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
#content2 .dx_lp {
  width: 500px;
  margin: 0 auto 120px;
}
@media screen and (max-width: 768px) {
  #content2 .dx_lp {
    width: 90%;
  }
}
#content2 .box {
  width: 800px;
  margin: 0 auto;
  background-color: #AF9251;
  padding: 70px;
  color: #fff;
  font-family: yu-gothic-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #content2 .box {
    width: 90%;
    padding: 40px 0;
  }
}
#content2 .box .bottom {
  margin: 0 auto 30px;
}
#content2 .box .bottom h5 {
  color: #fff;
  font-size: 24px;
  text-align: center;
  margin-bottom: 10ox;
}
@media screen and (max-width: 768px) {
  #content2 .box .bottom h5 {
    font-size: 22px;
    line-height: 1.5em;
  }
}
#content2 .box .bottom h5 span {
  display: block;
  font-size: 18px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  #content2 .box .bottom h5 span {
    line-height: 1.6em;
  }
}
#content2 .box .bottom .buybtn {
  width: 500px;
  margin: 40px auto 0;
  background-color: #371B06;
  line-height: 70px;
  height: 70px;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) {
  #content2 .box .bottom .buybtn {
    width: 80%;
  }
}
#content2 .box .bottom .buybtn a {
  display: block;
  color: #fff;
  text-align: center;
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  #content2 .box .bottom .buybtn a {
    font-size: 16px;
  }
}

.footer {
  background-color: #1A1A1A;
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 70px 0;
  }
}
.footer .gekilogo {
  text-align: center;
  font-size: 10px;
  color: #fff;
  margin-bottom: 40px;
}
.footer .gekilogo img {
  width: 100px;
  margin: 0 auto;
}
.footer a .logo {
  margin: 0 auto;
  padding: 0px 0 20px;
}
@media screen and (max-width: 768px) {
  .footer a .logo {
    padding: 0px 0 20px 0;
  }
}
.footer a .logo img {
  width: 70px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer a .logo img {
    width: 15%;
    margin: 0 auto 0px;
  }
}
.footer a p {
  text-align: center;
  color: #fff;
  font-size: 11px;
}
@media screen and (max-width: 768px) {
  .footer a p {
    font-size: 10px;
  }
}
.footer a p span {
  font-size: 20px;
  letter-spacing: 0.18em;
  display: block;
}
@media screen and (max-width: 768px) {
  .footer a p span {
    line-height: 2.2;
    font-size: 14px;
  }
}

.flexslider {
  margin: 0 !important;
}

.slider {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .slider {
    width: 100%;
  }
}
.slider .slick-slide {
  padding: 10px;
  width: 230px;
}
@media screen and (max-width: 768px) {
  .slider .slick-slide {
    padding: 5px;
  }
}

.slick-prev:before,
.slick-next:before {
  font-size: 23px !important;
}
@media screen and (max-width: 768px) {
  .slick-prev:before,
  .slick-next:before {
    display: none !important;
  }
}

.slick-dots li button:before {
  font-size: 28px !important;
  color: #272727 !important;
}

.slick-next:before {
  content: "";
  background: url(../images/next.png) !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
}

.slick-prev:before {
  background: url(../images/prev.png) !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}

.slick-prev:before {
  color: transparent !important;
}

.slick-next:before {
  color: transparent !important;
}

.slick-prev,
.slick-next {
  top: 50% !important;
}

.copy {
  margin: 100px auto 20px;
  padding: 100px 0 0 0;
}
@media screen and (max-width: 768px) {
  .copy {
    padding: 0px 0 50px 0;
    margin: 100px auto 20px;
  }
}
.copy img {
  width: 150px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .copy img {
    width: 30%;
    margin: 0 auto 0px;
  }
}

.scrolltop {
  position: fixed;
  bottom: 20px;
  width: 70px;
  right: 15px;
  border-radius: 10px 0 0 10px;
  z-index: 10;
  align-items: center;
  justify-content: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .scrolltop {
    bottom: 25px;
    width: 60px;
    right: 15px;
    z-index: 999;
  }
}

.img-wrapL {
  animation: img-opacity 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  overflow: hidden;
  position: relative;
}

.img-wrapL:before {
  animation: img-wrapL 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #eef2ff;
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

@keyframes img-opacity {
  100% {
    opacity: 1;
  }
}
@keyframes img-wrapL {
  100% {
    transform: translateX(100%);
  }
}
.border {
  width: 90%;
  border-bottom: 1px solid #5067D4;
  margin: 0 auto 30px;
}

.img-wrapR {
  overflow: hidden;
  position: relative;
  animation: img-opacity 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.img-wrapR:before {
  animation: img-wrapR 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #eef2ff;
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

@keyframes img-opacity {
  100% {
    opacity: 1;
  }
}
@keyframes img-wrapR {
  100% {
    transform: translateX(-100%);
  }
}
.img-wrapB {
  overflow: hidden;
  position: relative;
  animation: img-opacity 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.img-wrapB:before {
  animation: img-wrapB 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #eef2ff;
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

@keyframes img-opacity {
  100% {
    opacity: 1;
  }
}
@keyframes img-wrapB {
  100% {
    transform: translateY(100%);
  }
}
/* ANIMATION
--------------------------------------*/
.fuwatAnime {
  animation-fill-mode: both;
  animation-duration: 1.5s;
  animation-name: fuwatAnime;
  visibility: visible !important;
}
@keyframes fuwatAnime {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* sass読み込み
--------------------------------------*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-prev:before,
.slick-next:before {
  color: black;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("../fonts/slick.eot");
  src: url("../fonts/slick.eot?#iefix") format("embedded-opentype"), url("../fonts/slick.woff") format("woff"), url("../fonts/slick.ttf") format("truetype"), url("../fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}/*# sourceMappingURL=style.css.map */