@charset "UTF-8";
/*------------------------------------------------------------------------
// Base
  ├ reset
  └ base
------------------------------------------------------------------------*/
/*----------------------------------------
	reset
----------------------------------------*/
:root {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
::before,
::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  border-style: solid;
  border-width: 0;
}

* {
  font-size: inherit;
  line-height: inherit;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

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, dialog, figure, footer, header, hgroup, main, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

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

span, small, strong, em, b, i {
  color: inherit;
}

html {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: top;
}

img[src$=".svg"] {
  width: 100%;
}

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

caption, th {
  text-align: left;
}

hr {
  margin: 1em 0;
  padding: 0;
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
}

input, select {
  vertical-align: middle;
}

input, textarea {
  margin: 0;
  padding: 0;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

address {
  font-style: normal;
}

q::before,
q::after {
  display: none;
}

/* html,Body
----------------------------------------*/
html {
  height: 100%;
  font-size: 62.5%;
}

html.is-scroll-prevent {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
  padding-top: 50px;
  color: #333333;
  font-size: 1.3em;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.5;
  word-wrap: break-word;
  word-break: normal;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body * {
  word-wrap: break-word;
  word-break: normal;
}

body.home {
  padding-top: 50px;
}

@media screen and (min-width: 768px), print {
  body {
    padding-top: 100px;
    font-size: 1.6em;
  }
  body.home {
    padding-top: 100px;
  }
}

h1, h2, h3, h4, h5, h6 {
  color: #333333;
  font-weight: 500;
}

th, strong {
  font-weight: 500;
}

svg {
  width: 100%;
  height: auto;
}

main {
  overflow: hidden;
}

/*Font
----------------------------------------*/
.serif {
  font-family: "Noto Serif JP", serif;
}

.sans {
  font-family: "Noto Sans JP", sans-serif;
}

/* Links
----------------------------------------*/
a {
  color: #824880;
  text-decoration: underline;
  -webkit-transition: color 0.3s, opacity 0.3s;
  transition: color 0.3s, opacity 0.3s;
}

a:hover {
  text-decoration: none;
}

.js-tel-link body:not(.mobile) a:hover {
  color: inherit;
  text-decoration: none;
}

/*------------------------------------------------------------------------
// Layout
  ├ l-header
  ├ l-gnav
  ├ l-pagetop
  ├ l-footer
  ├ l-container
  ├ l-section
  └ l-contents
------------------------------------------------------------------------*/
/*----------------------------------------
	Header
	(breakpoint 1080px)
----------------------------------------*/
/*ヘッダーエリア*/
@media screen and (max-width: 767px), print {
  .l-header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10000;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    background: #ffffff;
  }
  .l-header__inner {
    position: relative;
    z-index: 10000;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 50px;
    padding: 15px;
    background: #ffffff;
  }
  .l-header .l-container {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .l-header__logo {
    width: 44.0625vw;
    max-width: 141px;
    vertical-align: middle;
    line-height: 1;
  }
}

@media screen and (min-width: 768px), print {
  .l-header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10000;
    width: 100%;
    background: #ffffff;
  }
  .l-header__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    height: 100px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .l-header .l-container {
    position: relative;
  }
  .l-header__logo {
    width: 232px;
  }
}

/*ハンバーガーボタン*/
.l-header__btn {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  margin: 0;
  padding: 0;
  background: #824880;
}

.l-header__btn .inner {
  position: relative;
  width: 25px;
  height: 1px;
}

.l-header__btn .inner > span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: #ffffff;
  -webkit-transition: opacity 0.3s, -webkit-transform .3s;
  transition: opacity 0.3s, -webkit-transform .3s;
  transition: transform .3s, opacity 0.3s;
  transition: transform .3s, opacity 0.3s, -webkit-transform .3s;
}

.l-header__btn .inner > span:nth-child(1) {
  top: -8px;
}

.l-header__btn .inner > span:nth-child(2) {
  top: 0;
}

.l-header__btn .inner > span:nth-child(3) {
  top: 8px;
}

.l-header__btn[aria-expanded="true"] .inner > span:nth-child(1) {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.l-header__btn[aria-expanded="true"] .inner > span:nth-child(2) {
  opacity: 0;
}

.l-header__btn[aria-expanded="true"] .inner > span:nth-child(3) {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media screen and (min-width: 768px), print {
  .l-header__btn {
    display: none;
  }
}

/*----------------------------------------
	SP Global Navigation
	(breakpoint 1080px)
----------------------------------------*/
@media screen and (max-width: 767px), print {
  .l-gnav {
    overflow: hidden;
    position: fixed;
    left: 0;
    top: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    width: 100%;
    height: 100%;
    padding-top: 50px;
    background: #ffffff;
    color: #333333;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
  }
  .l-gnav[aria-hidden="false"] {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    z-index: 1000;
    height: 100%;
  }
}

@media screen and (min-width: 768px), print {
  .l-gnav {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}

/*1階層目メニュー
--------------------------------*/
@media screen and (max-width: 767px), print {
  .l-gnav__inner {
    overflow-y: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 50px 0;
    padding: 50px 40px;
    border-top: 1px solid #E6E6E6;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 13.5px;
    font-size: 1.35rem;
  }
  .l-gnav__menuLink {
    position: relative;
    display: block;
    width: 100%;
    padding: 10px 0;
    color: #493759;
    text-decoration: none;
    text-align: left;
    font-weight: 500;
    font-size: 19px;
    font-size: 1.9rem;
  }
  .l-gnav__menuLink > span {
    display: inline-block;
    border-bottom: 2px solid transparent;
  }
  .l-gnav__menuLink.ico_cart > span::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 18px;
    margin-right: 5px;
    background: url(../img/ico_cart01.svg) 0 0/contain no-repeat;
    vertical-align: middle;
  }
  .l-gnav__menuLink:hover > span {
    border-bottom: 2px solid #493759;
  }
}

@media screen and (min-width: 768px), print {
  .l-gnav__menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .l-gnav__menuItem {
    position: relative;
    margin: 0 7px;
    padding: 20px 10px;
  }
  .l-gnav__menuItem:last-child {
    padding: 20px 0 20px 10px;
  }
  .l-gnav__menuLink {
    color: #493759;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.01em;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    font-size: 17px;
    font-size: 1.7rem;
  }
  .l-gnav__menuLink > span {
    position: relative;
    display: inline-block;
  }
  .l-gnav__menuLink > span::after {
    position: absolute;
    left: 0;
    bottom: -4px;
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #824880;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .l-gnav__menuLink:hover > span::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  .l-gnav__menuLink.ico_cart > span::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 18px;
    margin-right: 5px;
    background: url(../img/ico_cart01.svg) 0 0/contain no-repeat;
    vertical-align: middle;
  }
}

/*SP用電話連絡先
--------------------------------*/
.l-gnav__contact {
  margin-top: 30px;
  margin-bottom: 50px;
  padding: 15px;
  background: #E9EAF5;
  text-align: center;
}

.l-gnav__contactTel {
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 500;
}

.l-gnav__contactTel a {
  color: #333333;
  font-size: 1.2em;
  text-decoration: none;
}

.l-gnav__contactTime {
  font-size: 11px;
  font-size: 1.1rem;
}

@media screen and (min-width: 768px), print {
  .l-gnav__contact {
    display: none;
  }
}

/*----------------------------------------
	pagetop
----------------------------------------*/
.l-pagetop {
  position: fixed;
  right: 15px;
  bottom: 0;
  z-index: 1;
  width: 40px;
  height: 40px;
}

@media screen and (min-width: 768px), print {
  .l-pagetop {
    width: 50px;
    height: 50px;
  }
}

/*----------------------------------------
	Footer
----------------------------------------*/
/* 大枠レイアウト
--------------------------------------*/
.l-footer {
  position: relative;
}

@media screen and (max-width: 767px), print {
  .l-footer {
    padding-top: 50px;
    padding-bottom: 20px;
  }
  .l-footer__logo {
    width: 45.9375vw;
    max-width: 294px;
    margin: 0 auto 20px;
  }
}

@media screen and (min-width: 768px), print {
  .l-footer {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .l-footer__logo {
    width: 304px;
  }
  .l-footer__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

/* メニュー
--------------------------------------*/
.l-footer__menu {
  display: none;
}

@media screen and (min-width: 768px), print {
  .l-footer__menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-top: 40px;
  }
  .l-footer__menu > li {
    width: 50%;
  }
  .l-footer__menu a {
    display: inline-block;
    padding: 5px;
    color: inherit;
    text-decoration: none;
    font-size: 20px;
    font-size: 2rem;
  }
  .l-footer__menu a.frame {
    border: 1px solid;
    font-weight: 500;
  }
}

/* 会社情報
--------------------------------------*/
.l-footer__address {
  text-align: center;
  line-height: 2;
}

@media screen and (min-width: 768px), print {
  .l-footer__address {
    text-align: right;
  }
}

/* Cooyright
--------------------------------------*/
.l-footer__copy {
  margin-top: 20px;
}

@media screen and (max-width: 767px), print {
  .l-footer__copy {
    text-align: center;
    font-size: 10px;
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px), print {
  .l-footer__copy {
    text-align: right;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

/*----------------------------------------
	Structure
----------------------------------------*/
/*container 
--------------------------*/
.l-container {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}

@media screen and (min-width: 1080px), print {
  .l-container {
    padding-left: 0;
    padding-right: 0;
  }
}

.l-container--lg {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}

@media screen and (min-width: 1260px), print {
  .l-container--lg {
    padding-left: 0;
    padding-right: 0;
  }
}

.l-container--sm {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}

@media screen and (min-width: 1080px), print {
  .l-container--sm {
    padding-left: 0;
    padding-right: 0;
  }
}

/*Section
--------------------------*/
/*通常セクション*/
.l-section {
  margin-top: 80px;
  margin-bottom: 80px;
}

/*PC*/
@media screen and (min-width: 768px), print {
  .l-section {
    margin-top: 200px;
    margin-bottom: 200px;
  }
}

/*背景色付きセクション*/
.l-section--paint {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #E9EAF5;
}

/*PC*/
@media screen and (min-width: 768px), print {
  .l-section--paint {
    padding-top: 200px;
    padding-bottom: 200px;
  }
}

/*Contents（下層）
--------------------------*/
.l-contents {
  margin-top: 50px;
  margin-bottom: 100px;
}

/*------------------------------------------------------------------------
// Compornent
  ├ c-ttl
  ├ c-btn
  ├ c-link
  ├ c-list
  ├ c-txt
  ├ c-table
  └ c-clip
------------------------------------------------------------------------*/
/*----------------------------------------
	Heading
----------------------------------------*/
.c-heading01 {
  margin-bottom: 30px;
  text-align: center;
  font-weight: 500;
  font-size: 5.3125vw;
  font-size: clamp(17px, 5.3125vw, 34px);
}

.c-heading01::after {
  content: "";
  display: block;
  width: 74px;
  height: 4px;
  background: #824880;
  margin: 10px auto 20px;
}

@media screen and (min-width: 768px), print {
  .c-heading01 {
    margin-bottom: 60px;
    font-size: 34px;
    font-size: 3.4rem;
  }
}

/*----------------------------------------
	Button
----------------------------------------*/
/*標準*/
.c-btn {
  display: inline-block;
}

.c-btn__link {
  position: relative;
  display: block;
  padding: 8px 20px;
  background: #824880;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
  border-radius: 30px;
}

.c-btn__link::after {
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid;
  border-right: 1px solid;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.c-btn__link:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px), print {
  .c-btn__link {
    padding: 10px 30px;
    border-radius: 50px;
  }
  .c-btn.c-btn--lg .c-btn__link {
    min-width: 304px;
    padding: 20px 30px 20px 20px;
    font-size: 20px;
    font-size: 2rem;
  }
  .c-btn.c-btn--lg .c-btn__link::after {
    right: 20px;
  }
}

/*----------------------------------------
	Link
----------------------------------------*/
.c-link--map {
  color: inherit;
  text-decoration: none;
}

.c-link--map::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.2em;
  background: url(../img/ico_pin.svg) center center/contain no-repeat;
  vertical-align: middle;
}

.c-link--map:hover {
  color: #824880;
}

.c-link--chevron::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  margin-left: 0.5em;
  border-top: 1px solid;
  border-right: 1px solid;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  vertical-align: middle;
}

/*----------------------------------------
	List
----------------------------------------*/
.c-list--indent {
  margin-left: 1em;
  text-indent: -1em;
}

.c-list--disc li {
  position: relative;
  padding-left: 1.5em;
}

.c-list--disc li::before {
  position: absolute;
  left: 0;
  top: 0.5em;
  content: "";
  display: block;
  width: 0.85em;
  height: 0.85em;
  border-radius: 50%;
  background: #02964E;
  vertical-align: middle;
}

/*----------------------------------------
	Text Style
----------------------------------------*/
.c-txt--lead {
  padding-left: 25px;
  padding-right: 25px;
  font-weight: 500;
  line-height: 2.2;
}

@media screen and (min-width: 768px), print {
  .c-txt--lead {
    text-align: center;
    font-size: 22px;
    font-size: 2.2rem;
  }
}

/*----------------------------------------
	Table
----------------------------------------*/
/* Clip画像・動画用スタイル
----------------------------------------*/
.c-clip-mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
}

.c-clip-img {
  position: relative;
}

.c-clip-img svg,
.c-clip-img img,
.c-clip-video video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover';
}

/*------------------------------------------------------------------------
// Project (Shared Compornent)
  └ *
------------------------------------------------------------------------*/
/*------------------------------------------------------------------------
// Utilitiy
------------------------------------------------------------------------*/
/*----------------------------------------
	Utilities
----------------------------------------*/
/*margin*/
.u-mt0 {
  margin-top: 0 !important;
}

.u-mt05 {
  margin-top: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-mb05 {
  margin-bottom: 5px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

/*padding*/
.u-pt0 {
  padding-top: 0 !important;
}

.u-pt05 {
  padding-top: 5px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-pb0 {
  padding-bottom: 0 !important;
}

.u-pb05 {
  padding-bottom: 5px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

/*image*/
.u-img-full {
  max-width: none;
  width: 100%;
}

/*float*/
.u-fl {
  float: left;
}

.u-fr {
  float: right;
}

.u-clear {
  clear: both;
}

/*align-text*/
.u-ta__l {
  text-align: left !important;
}

.u-ta__c {
  text-align: center !important;
}

.u-ta__r {
  text-align: right !important;
}

/*font-size*/
.u-fz__small {
  font-size: 0.8em;
}

/*align-block*/
.u-block__l {
  float: none;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.u-block__c {
  float: none;
  margin-left: auto !important;
  margin-right: auto !important;
}

.u-block__r {
  float: none;
  margin-left: auto !important;
  margin-right: 0 !important;
}

/*display*/
.u-sp {
  display: block;
}

.u-tab {
  display: block;
}

.u-pc {
  display: none;
}

@media screen and (min-width: 768px), print {
  .u-sp {
    display: none;
  }
  .u-tab {
    display: block;
  }
  .u-pc {
    display: block;
  }
}

@media screen and (min-width: 1080px), print {
  .u-sp {
    display: none;
  }
  .u-tab {
    display: none;
  }
  .u-pc {
    display: block;
  }
}

.u-hidden {
  visibility: hidden;
}

/* for screen reader
ーーーーーーーーーーーーーーーーーーーーーーーー*/
.u-visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  margin: -1px;
}

/* for keybord
ーーーーーーーーーーーーーーーーーーーーーーーー*/
.skipLink {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  height: 0;
  overflow: hidden;
  -webkit-transition: .3s;
  transition: .3s;
}

.skipLink:active, .skipLink:focus {
  position: static;
  opacity: 1;
  overflow: visible;
  height: auto;
  font-size: inherit;
}

/*------------------------------------------------------------------------
// Animation
  └ animation
------------------------------------------------------------------------*/
/*----------------------------------------
	Animation
----------------------------------------*/
/*FadeInUp
------------------------------*/
.js-effect {
  opacity: 0;
}

.js-effect.aniOn {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
          animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.js-effect.a-fadeInLtoR.aniOn {
  -webkit-animation-name: fadeInLtoR;
          animation-name: fadeInLtoR;
}

.js-effect.a-fadeInRtoL.aniOn {
  -webkit-animation-name: fadeInRtoL;
          animation-name: fadeInRtoL;
}

.js-effect.a-showLtoR.aniOn {
  -webkit-animation-name: showLtoR;
          animation-name: showLtoR;
}

.js-effect.a-jello.aniOn {
  -webkit-animation-name: jello;
          animation-name: jello;
}

.js-effect.a-bounceIn.aniOn {
  -webkit-animation-name: bounceIn;
          animation-name: bounceIn;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

.js-effect.a-scaleUp.aniOn {
  -webkit-animation-name: scaleUp;
          animation-name: scaleUp;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes fadeInRtoL {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInRtoL {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes fadeInLtoR {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInLtoR {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes showLtoR {
  0% {
    width: 0;
  }
  100% {
    width: 300px;
  }
}

@keyframes showLtoR {
  0% {
    width: 0;
  }
  100% {
    width: 300px;
  }
}

/*ポヨン*/
@-webkit-keyframes jello {
  0%, 11.1%, to {
    opacity: 0;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  22.2% {
    opacity: 1;
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
            transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    opacity: 1;
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
            transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    opacity: 1;
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
            transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    opacity: 1;
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
            transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    opacity: 1;
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
            transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    opacity: 1;
    -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
            transform: skewX(0.39062deg) skewY(0.39062deg);
  }
  88.8% {
    opacity: 1;
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
            transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
  100% {
    opacity: 1;
  }
}
@keyframes jello {
  0%, 11.1%, to {
    opacity: 0;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  22.2% {
    opacity: 1;
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
            transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    opacity: 1;
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
            transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    opacity: 1;
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
            transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    opacity: 1;
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
            transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    opacity: 1;
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
            transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    opacity: 1;
    -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
            transform: skewX(0.39062deg) skewY(0.39062deg);
  }
  88.8% {
    opacity: 1;
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
            transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
  100% {
    opacity: 1;
  }
}

/*プルッと出てくる*/
@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

/*ふわっと大きくなる*/
@-webkit-keyframes scaleUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    opacity: 1;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@keyframes scaleUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    opacity: 1;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

/*くるくる回る*/
@-webkit-keyframes round {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}
@keyframes round {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

/*------------------------------------------------------------------------
// Vendor Style
  ├ slick
  └ slick-theme
------------------------------------------------------------------------*/
/*----------------------------------------
	Slick Slider
----------------------------------------*/
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  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 {
  -webkit-transform: translate3d(0, 0, 0);
  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;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  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;
}

/*arrow*/
.slick-arrow {
  overflow: hidden;
  position: absolute;
  z-index: 1;
  width: 40px;
  height: 0;
  padding-top: 40px;
  color: #EA242B;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.slick-arrow::before {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-top: 2px solid;
  border-right: 2px solid;
}

.slick-arrow:hover {
  opacity: 0.7;
}

.slick-prev {
  left: -7.8125vw;
  top: 18.75vw;
}

.slick-prev::before {
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
          transform: translate(-50%, -50%) rotate(-135deg);
}

.slick-next {
  right: -7.8125vw;
  top: 18.75vw;
}

.slick-next::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

@media screen and (min-width: 768px), print {
  .slick-arrow {
    width: 50px;
    padding-top: 50px;
  }
  .slick-arrow::before {
    width: 30px;
    height: 30px;
  }
  .slick-prev {
    left: -50px;
  }
  .slick-next {
    right: -50px;
  }
}

/*dots*/
.slick-dots {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slick-dots li {
  margin: 0 10px;
}

.slick-dots li.slick-active button {
  background: #EA242B;
  border: 1px solid #EA242B;
}

.slick-dots button {
  overflow: hidden;
  width: 14px;
  height: 0;
  margin: 0;
  padding: 0;
  padding-top: 12px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #E6E6E6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (min-width: 768px), print {
  .slick-dots {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

/*------------------------------------------------------------------------
// Print Style
------------------------------------------------------------------------*/
@media print {
  .js-effect {
    opacity: 1 !important;
  }
}
