@charset "UTF-8";
/*!
【記述ルール】
p-header-****__****--****
 -****  セクション的要素
 __**** ブロック・インライン的要素の名称
 --**** 修飾的要素の名称
 例）p-top-content01__list--bold

 注意：1クラスに記述するブロック・インライン的要素は必要以上多くならないように注意する
*/
/* =========================================================
flex - flex関連の指定
========================================================= */
/* =========================================================
shadow - シャドウ
デフォルトでは色が濃い目なので使う際に調整してください。
========================================================= */
/* =========================================================
font - font-familyの設定など
========================================================= */
/* =========================================================
typography - テキスト関連の設定
========================================================= */
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* =========================================================
base - 基本設定
========================================================= */
body {
  overflow-x: hidden;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 24px;
  color: #333333;
  font-family: "SF Pro KR", "SF Pro Text", "SF Pro Icons", "Apple Gothic", "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  letter-spacing: 0.1em;
}
@media screen and (min-width: 981px) {
  body {
    overflow-x: hidden !important;
  }
}

a {
  cursor: pointer;
  text-decoration: none;
  transition: .4s;
  line-height: 1;
}
a:hover {
  color: inherit;
}

p {
  color: #555555;
}

img {
  height: auto;
  vertical-align: bottom;
  max-width: 100%;
  width: auto;
}

.pc-show {
  display: none;
}
@media screen and (min-width: 981px) {
  .pc-show {
    display: block;
  }
}

@media screen and (min-width: 981px) {
  .sp-show {
    display: none;
  }
}

.pc-show-inline {
  display: none;
}
@media screen and (min-width: 981px) {
  .pc-show-inline {
    display: inline-block;
  }
}

/* =========================================================
section - コンテンツの大枠
========================================================= */
.l-container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .l-container {
    max-width: 1011px;
  }
}

.l-section {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .l-section {
    margin-top: 70px;
  }
}

/* =========================================================
main - メイン
========================================================= */
.l-main {
  position: relative;
}

/* =========================================================
title - 共通のタイトルやテキストなど
========================================================= */
.c-ttl-h1 {
  position: relative;
  background: #e52f79;
  padding: 20px 0 30px;
}
@media screen and (min-width: 768px) {
  .c-ttl-h1 {
    padding: 30px 0 40px;
  }
}
.c-ttl-h1::before {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 5px;
  left: 0;
  background: #ffffff;
}
.c-ttl-h1__in {
  text-align: center;
  color: #ffffff;
  line-height: 1.3;
}
.c-ttl-h1 .main {
  display: block;
  font-size: 35px;
  font-size: 2.1875rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .c-ttl-h1 .main {
    font-size: 55px;
    font-size: 3.4375rem;
  }
}
.c-ttl-h1 .sub {
  display: block;
  padding-top: 5px;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-ttl-h1 .sub {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/*h2====*/
.c-ttl-h2 {
  position: relative;
  background: #ffffff;
  border: 3px solid #e52f79;
  border-radius: 100px;
  padding: 15px 5px;
  margin-bottom: 40px;
  text-align: center;
  box-shadow: 4px 8px 0px -5px #89214B;
}
@media screen and (min-width: 768px) {
  .c-ttl-h2 {
    padding: 30px 10px;
    margin-bottom: 70px;
    border-width: 5px;
    box-shadow: 10px 13px 0px -6px #89214B;
  }
}
.c-ttl-h2 .in {
  font-weight: bold;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .c-ttl-h2 .in {
    font-size: 55px;
    font-size: 3.4375rem;
  }
}
.c-ttl-h2::before {
  content: '';
  height: 0;
  border-style: solid;
  border-width: 10px 13px 0 13px;
  border-color: #e52f79 transparent transparent transparent;
  position: absolute;
  bottom: -10px;
  right: 52px;
}
@media screen and (min-width: 768px) {
  .c-ttl-h2::before {
    border-width: 45px 35px 0 35px;
    bottom: -46px;
    right: 99px;
  }
}
.c-ttl-h2::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 9px 0 9px;
  border-color: #ffffff transparent transparent transparent;
  position: absolute;
  bottom: -6px;
  right: 56px;
}
@media screen and (min-width: 768px) {
  .c-ttl-h2::after {
    border-width: 39px 30px 0 30px;
    bottom: -39px;
    right: 104px;
  }
}

.c-basic-h2 {
  position: relative;
  background: #ffffff;
  border-left: 5px solid #8DC21B;
  padding: 10px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .c-basic-h2 {
    margin-bottom: 30px;
    padding: 25px;
  }
}
.c-basic-h2:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 30px 30px;
  border-color: transparent transparent #f7ffe5 transparent;
}
@media screen and (min-width: 768px) {
  .c-basic-h2:before {
    border-width: 0 0 70px 70px;
  }
}
.c-basic-h2 .in {
  font-size: 3.4vw;
  font-weight: bold;
}
@media screen and (min-width: 576px) {
  .c-basic-h2 .in {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

.c-basic-h3 {
  background: #8DC21B;
  padding: 10px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .c-basic-h3 {
    padding: 15px;
  }
}
.c-basic-h3 .in {
  position: relative;
  color: #ffffff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .c-basic-h3 .in {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.c-basic-h3 .in::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background: #ffffff;
  position: absolute;
  left: 0;
  top: calc(50% - 6px);
}

.c-basic-h4 {
  position: relative;
  background: #1bc2ac;
  border-bottom: 2px solid #1b7dc2;
  padding: 10px;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-basic-h4 {
    padding: 15px 10px;
  }
}
.c-basic-h4:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 30px 0 30px;
  border-color: #1b7dc2 transparent transparent transparent;
  position: absolute;
  bottom: -11px;
  right: calc(50% - 15px);
}
.c-basic-h4 .in {
  display: inline-block;
  color: #ffffff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .c-basic-h4 .in {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/* =========================================================
text - 共通のテキストなど
========================================================= */
.c-basic-txt,
.c-error-message {
  color: #555555;
  word-wrap: break-word;
  font-size: 2.8vw;
  margin-top: 0px;
  margin-top: 0rem;
  margin-bottom: 6px;
  margin-bottom: 0.375rem;
}
@media screen and (min-width: 981px) {
  .c-basic-txt,
  .c-error-message {
    margin-top: 0px;
    margin-top: 0rem;
    margin-bottom: 12px;
    margin-bottom: 0.75rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 24px;
    line-height: 1.5rem;
  }
}
.c-basic-txt:last-of-type,
.c-error-message:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 576px) {
  .c-basic-txt,
  .c-error-message {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 24px;
    line-height: 1.5rem;
  }
}

.c-small-txt {
  margin-top: 0px;
  margin-top: 0rem;
  margin-bottom: 3px;
  margin-bottom: 0.18rem;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 24px;
  line-height: 1.5rem;
}
@media screen and (min-width: 981px) {
  .c-small-txt {
    margin-top: 0px;
    margin-top: 0rem;
    margin-bottom: 6px;
    margin-bottom: 0.375rem;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 24px;
    line-height: 1.5rem;
  }
}
.c-small-txt:last-of-type {
  margin-bottom: 0;
}

.c-error-message {
  display: inline-block;
  color: #e74c3c;
  margin-top: .5rem;
}

/* =========================================================
button - ボタン関係のコンポーネント
========================================================= */
.c-basic-btn {
  display: block;
  background-color: #e52f79;
  border-radius: 5px;
  border: 2px solid #000000;
  max-width: 330px;
  padding: 18px 10px;
  text-align: center;
  box-shadow: 3px 3px 0px #000000;
  transition: .3s;
  cursor: pointer;
}
.c-basic-btn:hover {
  opacity: .7;
}
.c-basic-btn .in {
  display: inline-block;
  position: relative;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #fff;
  font-weight: bold;
  padding-right: 25px;
}
.c-basic-btn .in::before {
  content: '';
  display: block;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  border: 1px solid #000000;
  background: url(../images/icon/icon_triangle_right_magenta.svg) no-repeat center;
  background-size: 40% 40%;
  background-color: #ffffff;
  position: absolute;
  right: 0;
  top: calc(50% - 10px);
}

/* =========================================================
txtarea - テキストエリア
========================================================= */
.c-txtarea {
  resize: none;
  width: 100%;
  height: 10rem;
  padding: .5rem;
  border: 0;
  border: 1px solid #dddddd;
  border-radius: 4px;
  background-color: #fafafa;
  font-size: 16px;
  font-size: 1rem;
  color: #555555;
  font-family: "SF Pro KR", "SF Pro Text", "SF Pro Icons", "Apple Gothic", "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.c-txtarea::placeholder {
  color: #cccccc;
}
.c-txtarea.is-entered {
  background-color: #ffffff;
}

/* =========================================================
drawer - ドロワーのスタイルなど
========================================================= */
.c-drawer {
  display: block;
  position: relative;
  z-index: 101;
}
@media screen and (min-width: 981px) {
  .c-drawer {
    display: none;
  }
}
.c-drawer .drawer-toggle {
  background-color: #333cb5;
  display: block;
}
@media screen and (min-width: 981px) {
  .c-drawer .drawer-toggle {
    display: none;
  }
}
.c-drawer-nav {
  overflow: scroll;
}
.c-drawer-nav__list {
  padding: 10px 20px;
}
.c-drawer-nav__item {
  text-align: center;
}
.c-drawer-nav__item:first-of-type {
  border-top: 1px  dotted #ccc;
}
.c-drawer-nav__item a {
  border-bottom: 1px  dotted #ccc;
  color: #fff;
  display: block;
  padding: 20px;
}
.c-drawer-label {
  color: #fff;
  font-size: 10px;
  font-size: 0.625rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  margin: auto;
}
.c-drawer-label::before {
  content: 'menu';
}

.drawer-nav {
  width: 85vw;
  width: -webkit-calc(100vw - 56px);
  width: calc(100vw - 56px);
}

.drawer--right .drawer-nav {
  background-color: rgba(60, 60, 60, 0.9);
  right: -85vw;
  right: -webkit-calc(-100vw + 56px);
  right: calc(-100vw + 56px);
}

.drawer--right.drawer-open .drawer-hamburger {
  background-color: #fff;
  right: 85vw;
  right: -webkit-calc(100vw - 56px);
  right: calc(100vw - 56px);
}

.drawer-hamburger {
  padding: 17px 0.75rem 29px;
  top: -2px;
}

.drawer-hamburger-icon {
  margin: 10px 10%;
  height: 0;
  width: 80%;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
  background-color: #fff;
}

.drawer-hamburger-icon:after {
  top: 0;
}

.drawer-open .c-drawer-label {
  color: #333cb5;
  bottom: 6px;
}

.drawer-open .c-drawer-label::before {
  content: 'close';
}

.drawer-open .drawer-hamburger-icon,
.drawer-open .drawer-hamburger-icon:after,
.drawer-open .drawer-hamburger-icon:before {
  background-color: #333cb5;
}

.slick-next {
  right: -20px;
}

/* =========================================================
pagenation - ページ送り
========================================================= */
.c-pagenation {
  text-align: center;
  margin: auto;
}
.c-pagenation__group {
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-pagenation__item + .c-pagenation__item {
  margin-left: .5rem;
}
.c-pagenation__item.is-current .c-pagenation__link {
  border-color: #666;
  background-color: #666;
  color: #ffffff;
  pointer-events: none;
}
.c-pagenation__link a {
  text-decoration: none;
}
.c-pagenation__link .page-numbers {
  width: 2rem;
  height: 2rem;
  border: 1px solid #999;
  color: #999;
  font-weight: bold;
  text-decoration: none;
  transition: .3s;
  display: inline-block;
  line-height: 1.7;
  margin: 0 5px;
}
.c-pagenation__link .page-numbers:hover {
  background-color: #666;
  border-color: #666;
  color: #fff;
}
.c-pagenation__link .next,
.c-pagenation__link .prev {
  border: none;
  width: 4rem;
}
.c-pagenation__link .next:hover,
.c-pagenation__link .prev:hover {
  background-color: #fff;
  color: #999;
  text-decoration: underline;
}
.c-pagenation__link .current {
  background-color: #666;
  color: #fff;
}

/* =========================================================
breadcrumbs - パンくずリスト
========================================================= */
.c-breadcrumbs {
  background: #eeeeee;
}
.c-breadcrumbs__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 7px 0;
}
.c-breadcrumbs__item {
  margin-left: 5px;
  background: url(../images/icon/icon_right_gray.svg) no-repeat left center;
  background-size: 10px 10px;
  padding-left: 15px;
  background-position: left center;
  max-width: 50%;
}
.c-breadcrumbs__item:first-of-type {
  margin-left: 0;
  background-image: none;
  padding-left: 0;
  padding-right: 0;
}
.c-breadcrumbs__item:first-of-type .c-breadcrumbs__name {
  text-decoration: underline;
  font-weight: bold;
}
.c-breadcrumbs__name {
  color: #666666;
  font-size: 12px;
  font-size: 0.75rem;
}

/* =========================================================
navigation - グローバルナビなど
========================================================= */
@media screen and (min-width: 768px) {
  .c-nav {
    border-left: 5px solid #fff600;
  }
}
.c-nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.c-nav__item {
  width: 33.3%;
}
.c-nav__link {
  display: block;
  text-align: center;
  padding: 8px 5px;
}
@media screen and (min-width: 768px) {
  .c-nav__link {
    min-width: 150px;
    padding: 15px 5px;
  }
}
.c-nav__link .in {
  display: inline-block;
  padding-top: 33px;
  background-size: 25px 25px;
  background-position: top center;
  background-repeat: no-repeat;
  color: #ffffff;
  font-weight: bold;
  font-size: 11px;
  font-size: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .c-nav__link .in {
    padding-top: 50px;
    background-size: 40px 40px;
    font-size: 16px;
    font-size: 1rem;
  }
}
.c-nav__link.pachinko {
  background-color: #e52f79;
}
.c-nav__link.pachinko .in {
  background-image: url(../images/common/icon_pachinko.svg);
}
.c-nav__link.slot {
  background-color: #01b2eb;
}
.c-nav__link.slot .in {
  background-image: url(../images/common/icon_slot.svg);
}
.c-nav__link.service {
  background-color: #8dc21b;
}
.c-nav__link.service .in {
  background-image: url(../images/common/icon_service.svg);
}

/*内部リンク*/
.c-nav-blank {
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  .c-nav-blank {
    padding: 50px 0;
  }
}
.c-nav-blank__list {
  margin: 0 -5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .c-nav-blank__list {
    margin: 0 -10px;
  }
}
.c-nav-blank__item {
  padding: 0 5px;
  margin: 0 auto 10px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-nav-blank__item {
    padding: 0 10px;
  }
}
.c-nav-blank__link {
  position: relative;
  display: block;
  border: 3px solid #89214B;
  border-bottom-width: 5px;
  padding: 15px 0;
  text-align: center;
  background: url(../images/common/nav_flow.jpg) no-repeat center;
  background-size: cover;
  text-align: center;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .c-nav-blank__link {
    padding: 50px 0;
    border-bottom-width: 8px;
  }
}
.c-nav-blank__link::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 25px 0 25px;
  border-color: #89214B transparent transparent transparent;
  position: absolute;
  bottom: -15px;
  left: calc(50% - 25px);
}
@media screen and (min-width: 768px) {
  .c-nav-blank__link::before {
    border-width: 25px 50px 0 50px;
    bottom: -25px;
    left: calc(50% - 50px);
  }
}
.c-nav-blank__link .in {
  color: #ffffff;
  font-weight: bold;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .c-nav-blank__link .in {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.c-nav-blank__link.flow {
  background-image: url(../images/common/nav_flow.jpg);
}
.c-nav-blank__link.trouble {
  background-image: url(../images/common/nav_trouble.jpg);
}

/* =========================================================
trigger - トリガー
========================================================= */
.invisible {
  opacity: 0.0;
  transition: opacity 0.5s ease;
}

.c-trigger_delay_2 {
  animation-delay: .2s;
}
.c-trigger_delay_4 {
  animation-delay: .4s;
}
.c-trigger_delay_6 {
  animation-delay: .6s;
}
.c-trigger_delay_8 {
  animation-delay: .8s;
}
.c-trigger_delay_10 {
  animation-delay: 1s;
}
.c-trigger_delay_12 {
  animation-delay: 1.2s;
}
.c-trigger_delay_14 {
  animation-delay: 1.4s;
}
.c-trigger_delay_16 {
  animation-delay: 1.6s;
}
.c-trigger_delay_24 {
  animation-delay: 2.4s;
}
.c-trigger_duration_1 {
  --animate-duration: 1.5s;
}
.c-trigger_duration_2 {
  --animate-duration: 2s;
}
.c-trigger_duration_3 {
  --animate-duration: 3s;
}
.c-trigger_duration_4 {
  --animate-duration: 4s;
}

/* =========================================================
reveal effect - テキストエフェクト
========================================================= */
@-webkit-keyframes passing-bar {
  0% {
    left: 0;
    right: auto;
    width: 0;
  }
  50% {
    left: 0;
    right: auto;
    width: 100%;
  }
  51% {
    left: auto;
    right: 0;
    width: 100%;
  }
  100% {
    left: auto;
    right: 0;
    width: 0;
  }
}
@keyframes passing-bar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@-webkit-keyframes passing-txt {
  0% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes passing-txt {
  0% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.u-passing .u-passing-bar {
  display: inline-block;
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.u-passing .u-passing-bar:before {
  content: '';
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: #80C6C4;
}
.u-passing .u-passing-txt {
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.u-passing.isActive .u-passing-time:before {
  -webkit-animation: passing-bar 1s ease 0s 1 normal forwards;
  animation: passing-bar 1s ease 0s 1 normal forwards;
}
.u-passing.isActive .u-passing-time_delay02:before {
  -webkit-animation: passing-bar 1s ease .2s 1 normal forwards;
  animation: passing-bar 1s ease .2s 1 normal forwards;
}
.u-passing.isActive .u-passing-time_delay04:before {
  -webkit-animation: passing-bar 1s ease .4s 1 normal forwards;
  animation: passing-bar 1s ease .4s 1 normal forwards;
}
.u-passing.isActive .u-passing-time_delay06:before {
  -webkit-animation: passing-bar 1s ease .6s 1 normal forwards;
  animation: passing-bar 1s ease .6s 1 normal forwards;
}
.u-passing.isActive .u-passing-time_delay08:before {
  -webkit-animation: passing-bar 1s ease .8s 1 normal forwards;
  animation: passing-bar 1s ease .8s 1 normal forwards;
}
.u-passing.isActive .u-passing-time_delay10:before {
  -webkit-animation: passing-bar 1s ease 1s 1 normal forwards;
  animation: passing-bar 1s ease 1s 1 normal forwards;
}
.u-passing.isActive .u-passing-time_delay12:before {
  -webkit-animation: passing-bar 1s ease 1.2s 1 normal forwards;
  animation: passing-bar 1s ease 1.2s 1 normal forwards;
}
.u-passing.isActive .u-passing-txt {
  -webkit-animation: passing-txt 0s ease .6s 1 normal forwards;
  animation: passing-txt 0s ease .6s 1 normal forwards;
}
.u-passing.isActive .u-passing-txt_delay08 {
  -webkit-animation: passing-txt 0s ease .8s 1 normal forwards;
  animation: passing-txt 0s ease .8s 1 normal forwards;
}
.u-passing.isActive .u-passing-txt_delay10 {
  -webkit-animation: passing-txt 0s ease 1s 1 normal forwards;
  animation: passing-txt 0s ease 1s 1 normal forwards;
}
.u-passing.isActive .u-passing-txt_delay12 {
  -webkit-animation: passing-txt 0s ease 1.2s 1 normal forwards;
  animation: passing-txt 0s ease 1.2s 1 normal forwards;
}
.u-passing.isActive .u-passing-txt_delay14 {
  -webkit-animation: passing-txt 0s ease 1.4s 1 normal forwards;
  animation: passing-txt 0s ease 1.4s 1 normal forwards;
}
.u-passing.isActive .u-passing-txt_delay16 {
  -webkit-animation: passing-txt 0s ease 1.6s 1 normal forwards;
  animation: passing-txt 0s ease 1.6s 1 normal forwards;
}

/* =========================================================
textline - テキストラインエフェクト
========================================================= */
.c-textline-txt {
  display: inline-block;
  opacity: 0;
  position: relative;
  transition: all 0.4s;
  z-index: 1;
}
.c-textline-txt:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1rem;
  background: #e8f3ff;
  z-index: -1;
  transition: all 0.8s;
  animation-delay: .6s;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .c-textline-txt:after {
    height: 1rem;
  }
}
.c-textline-txt.isActive {
  opacity: 1;
}
.c-textline-txt.isActive:after {
  opacity: 1;
  width: 100%;
}
.c-textline-txt-brown {
  position: relative;
  z-index: 1;
}
.c-textline-txt-brown:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2rem;
  background: #F1EAE9;
  z-index: -1;
  transition: all 0.8s;
  opacity: 0;
}
.c-textline-txt-brown.isActive:after {
  opacity: 1;
  width: 100%;
}

/* =========================================================
loader - プリローダー
========================================================= */
#c-loader {
  background-color: #F1EAE9;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 999;
}
#c-loader--wrap {
  max-width: 300px;
  width: 50%;
}
#c-loader .st0 {
  fill: none;
  fill-opacity: 0;
  stroke: #AA8E76;
  stroke-width: 1;
  transition: fill-opacity 1s;
}
#c-loader .done .st0 {
  fill: #5F2A1D;
  fill-opacity: 1;
  stroke-width: 0;
  transition: fill-opacity 1s, stroke-width 1s;
}

/* =========================================================
header - ヘッダー内のクラス
========================================================= */
.p-header {
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-header__in {
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-header__in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}

/*logo============*/
.p-header-logo {
  padding: 10px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-header-logo {
    padding-right: 5px;
  }
}
.p-header-logo__link {
  display: inline-block;
  max-width: 210px;
}
@media screen and (min-width: 768px) {
  .p-header-logo__link {
    max-width: 300px;
  }
}

/* =========================================================
footer - フッター内のクラス
========================================================= */
.p-footer {
  background: #3b3232;
  border-top: 5px solid #ed307c;
  padding: 10px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding: 20px 0;
  }
}

.p-footer-copy {
  text-align: center;
}
.p-footer-copy__text {
  color: #ffffff;
  font-weight: bold;
  font-size: 10px;
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-footer-copy__text {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/*btn=============*/
.p-footer-pagetop {
  text-align: center;
  padding: 70px 0 30px;
}
@media screen and (min-width: 768px) {
  .p-footer-pagetop {
    padding: 100px 0 50px;
  }
}
.p-footer-pagetop__btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background: #E70012;
  text-align: center;
  box-shadow: 5px 5px 0px -5px rgba(0, 0, 0, 0.5);
  transition: .3s;
  cursor: pointer;
}
.p-footer-pagetop__btn:hover {
  opacity: .7;
}
.p-footer-pagetop__in {
  display: inline-block;
  color: #ffffff;
  font-weight: bold;
  font-size: 10px;
  font-size: 0.625rem;
  padding: 40px 0 7px;
  background: url(../images/icon/icon_up_w.svg) no-repeat center top;
  background-size: 35px 35px;
}

/* =========================================================
slot - スロットページのクラスなど
========================================================= */
.p-slot {
  background: #F6F6F6;
}
.p-slot .c-ttl-h1 {
  background: #01b2eb;
}
.p-slot .c-ttl-h2 {
  border-color: #01b2eb;
  box-shadow: 4px 8px 0px -5px #005976;
}
@media screen and (min-width: 768px) {
  .p-slot .c-ttl-h2 {
    box-shadow: 10px 13px 0px -6px #005976;
  }
}
.p-slot .c-ttl-h2::before {
  border-color: #01b2eb transparent transparent transparent;
}
.p-slot .c-nav-blank__link {
  border-color: #005976;
}
.p-slot .c-nav-blank__link::before {
  border-color: #005976 transparent transparent transparent;
}
.p-slot .c-nav-blank__link.active {
  border-color: #01b2eb;
}
.p-slot .c-nav-blank__link.active::before {
  border-color: #01b2eb transparent transparent transparent;
}

/*list======*/
.p-page-list .p-page-box:last-child {
  margin-bottom: 0;
}
.p-page-list .p-page-box:last-child::before {
  content: none;
}

/*box==*/
.p-page-box {
  position: relative;
  background: #ffffff;
  box-shadow: 15px 15px 0px -5px rgba(0, 0, 0, 0.5);
  margin-bottom: 120px;
}
.p-page-box::before {
  content: '';
  display: block;
  width: 120px;
  height: 65px;
  background: url(../images/common/icon_arrow_down.svg) no-repeat center;
  position: absolute;
  bottom: -100px;
  left: calc(50% - 60px);
}
.p-page-box__ttl {
  background: #006FAD;
  color: #ffffff;
  font-weight: bold;
  padding: 12px;
  line-height: 1.3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-page-box__ttl {
    padding: 15px;
  }
}
.p-page-box__ttl .no {
  display: inline-block;
  min-width: 35px;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-page-box__ttl .no {
    font-size: 30px;
    font-size: 1.875rem;
    min-width: 50px;
  }
}
.p-page-box__ttl .ttl {
  display: inline-block;
  font-size: 3.7vw;
  border-left: 2px solid #ffffff;
  padding-left: 8px;
}
@media screen and (min-width: 768px) {
  .p-page-box__ttl .ttl {
    padding-left: 10px;
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
.p-page-box__in {
  padding: 10px 10px 20px;
}
@media screen and (min-width: 768px) {
  .p-page-box__in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    padding: 20px;
  }
}
.p-page-box__photo {
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-page-box__photo {
    margin-bottom: 0;
    width: 330px;
  }
}
@media screen and (min-width: 768px) {
  .p-page-box__text {
    padding-right: 20px;
    width: calc(100% - 330px);
  }
}
