@charset "UTF-8";
input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button {
  -webkit-appearance: button; /* iOS 8+ */
  overflow: visible; /* Internet Explorer 11- */
}

input {
  -webkit-border-radius: 0;
}

input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* iOS 8+ */
}

input[type=number] {
  width: auto; /* Firefox 36+ */
}

input[type=search] {
  -webkit-appearance: textfield; /* Chrome 45+, Safari 9+ */
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none; /* Chrome 45+, Safari 9+ */
}

button,
input,
select,
textarea {
  background-color: transparent;
}

button,
input,
select,
textarea {
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
}

button,
[type=button],
[type=date],
[type=datetime],
[type=datetime-local],
[type=email],
[type=month],
[type=number],
[type=password],
[type=reset],
[type=search],
[type=submit],
[type=tel],
[type=text],
[type=time],
[type=url],
[type=week],
select,
textarea {
  min-height: 1.5em;
}

button,
input,
label,
select,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

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

 *  ブラウザリセット

===============================================*/
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html {
  font-size: 62.5%; /*10px*/
  overflow-y: scroll;
}

body {
  font-size: 1.4rem; /*14px*/
  font-family: sans-serif;
}

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

select, input, textarea {
  font: 99% arial, helvetica, clean, sans-serif;
}

pre, code {
  font: 115% monospace;
  *font-size: 100%;
}

br {
  letter-spacing: normal;
}

body, div, p, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, input, textarea, p, blockquote, th, td, img, figure, figcaption {
  margin: 0;
  padding: 0;
  line-height: 140%;
  font-style: normal;
  font-weight: 400;
}

p, li, dt, dd {
  font-size: 100％;
}

address, em {
  font-style: normal;
}

strong, th {
  font-weight: 400;
}

table {
  font-size: inherit;
  border-collapse: collapse;
  border-spacing: 0;
  border: none;
}

th, td {
  text-align: left;
  border: none;
  font-weight: 400;
}

hr {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

img, fieldset {
  border: 0;
  vertical-align: bottom;
}

li {
  list-style-type: none;
}

ul, ol, dl {
  list-style-position: outside;
  list-style-type: none;
}

dt {
  font-weight: 400;
}

a {
  text-decoration: none;
  outline: none;
}

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

.flex-start {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-end {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-center {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: flex-center;
      -ms-flex-pack: flex-center;
          justify-content: flex-center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* 均等配置 */
.flex-space-between {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* 均等配置（先端・終端にも余白） */
.flex-space-around {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* たて */
.flex-column {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.flex-column__1 {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 10%;
          flex: 1 0 10%;
}
.flex-column__8 {
  -webkit-box-flex: 3;
      -ms-flex: 3 0 65.8%;
          flex: 3 0 65.8%;
}

.FlexTwoContainer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.FlexTwoContainer__body {
  width: 49%;
}

.FlexThreeContainer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.FlexThreeContainer__body {
  width: 32%;
}
.FlexThreeContainer__body img {
  width: 100%;
}

.FlexFiveContainer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.FlexFiveContainer__body {
  width: 20%;
  overflow: hidden;
}
.FlexFiveContainer__body img {
  width: 100%;
}

.FlexRight {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.FlexRight__body {
  width: 60%;
}

.FlexImageTwoConList {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 10px;
}
.FlexImageTwoConList__body {
  border: 1px solid #999;
  border-radius: 3px;
  background-color: #FFF;
  width: 49%;
  margin: 10px 0 0;
  font-size: 1.2rem;
}
/*フォントサイズ*/
.fs8 {
  font-size: 0.8rem !important;
}

.fs9 {
  font-size: 0.9rem !important;
}

.fs10 {
  font-size: 1rem !important;
}

.fs11 {
  font-size: 1.1rem !important;
}

.fs12 {
  font-size: 1.2rem !important;
}

.fs13 {
  font-size: 1.3rem !important;
}

.fs14 {
  font-size: 1.4rem !important;
}

.fs15 {
  font-size: 1.5rem !important;
}

.fs16 {
  font-size: 1.6rem !important;
}

.fs17 {
  font-size: 1.7rem !important;
}

.fs18 {
  font-size: 1.8rem !important;
}

.fs19 {
  font-size: 1.9rem !important;
}

.fs20 {
  font-size: 2rem !important;
}

.fs21 {
  font-size: 2.1rem !important;
}

.fs22 {
  font-size: 2.2rem !important;
}

.fs23 {
  font-size: 2.3rem !important;
}

.fs24 {
  font-size: 2.4rem !important;
}

.fs25 {
  font-size: 2.5rem !important;
}

.fs26 {
  font-size: 2.6rem !important;
}

.fs27 {
  font-size: 2.7rem !important;
}

.fs28 {
  font-size: 2.8rem !important;
}

.fs29 {
  font-size: 2.9rem !important;
}

.fs30 {
  font-size: 3rem !important;
}

.bold {
  font-weight: bold !important;
}

/*フォントスタイル定義*/
.underline {
  text-decoration: underline;
}

.textdc_none {
  text-decoration: none !important;
} /*アンダーライン外す*/
/*マージン関連定義*/
.m0 {
  margin: 0px !important;
}

.mt0 {
  margin-top: 0px !important;
}

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

.ml0 {
  margin-left: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.p0 {
  padding: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

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

.pl0 {
  padding-left: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.m5 {
  margin: 5px !important;
}

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

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

.ml5 {
  margin-left: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.p5 {
  padding: 5px !important;
}

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

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

.pl5 {
  padding-left: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.m10 {
  margin: 10px !important;
}

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

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

.ml10 {
  margin-left: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.p10 {
  padding: 10px !important;
}

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

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

.pl10 {
  padding-left: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.m15 {
  margin: 15px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.p15 {
  padding: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.m20 {
  margin: 20px !important;
}

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

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

.ml20 {
  margin-left: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.p20 {
  padding: 20px !important;
}

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

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

.pl20 {
  padding-left: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.m25 {
  margin: 25px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.p25 {
  padding: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.m30 {
  margin: 30px !important;
}

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

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

.ml30 {
  margin-left: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.p30 {
  padding: 30px !important;
}

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

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

.pl30 {
  padding-left: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.m35 {
  margin: 35px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.p35 {
  padding: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.m40 {
  margin: 40px !important;
}

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

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

.ml40 {
  margin-left: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.p40 {
  padding: 40px !important;
}

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

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

.pl40 {
  padding-left: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.m45 {
  margin: 45px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.p45 {
  padding: 45px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.m50 {
  margin: 50px !important;
}

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

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

.ml50 {
  margin-left: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.p50 {
  padding: 50px !important;
}

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

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

.pl50 {
  padding-left: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.m55 {
  margin: 55px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.p55 {
  padding: 55px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.m60 {
  margin: 60px !important;
}

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

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

.ml60 {
  margin-left: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.p60 {
  padding: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.m65 {
  margin: 65px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.p65 {
  padding: 65px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.m70 {
  margin: 70px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.p70 {
  padding: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.m75 {
  margin: 75px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.p75 {
  padding: 75px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pl75 {
  padding-left: 75px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.m80 {
  margin: 80px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.p80 {
  padding: 80px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.m85 {
  margin: 85px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.ml85 {
  margin-left: 85px !important;
}

.mr85 {
  margin-right: 85px !important;
}

.p85 {
  padding: 85px !important;
}

.pt85 {
  padding-top: 85px !important;
}

.pb85 {
  padding-bottom: 85px !important;
}

.pl85 {
  padding-left: 85px !important;
}

.pr85 {
  padding-right: 85px !important;
}

.m90 {
  margin: 90px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.ml90 {
  margin-left: 90px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.p90 {
  padding: 90px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pl90 {
  padding-left: 90px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.m95 {
  margin: 95px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.ml95 {
  margin-left: 95px !important;
}

.mr95 {
  margin-right: 95px !important;
}

.p95 {
  padding: 95px !important;
}

.pt95 {
  padding-top: 95px !important;
}

.pb95 {
  padding-bottom: 95px !important;
}

.pl95 {
  padding-left: 95px !important;
}

.pr95 {
  padding-right: 95px !important;
}

.m100 {
  margin: 100px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.ml100 {
  margin-left: 100px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.p100 {
  padding: 100px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pl100 {
  padding-left: 100px !important;
}

.pr100 {
  padding-right: 100px !important;
}

.m-1 {
  margin: 1% !important;
}

.m-t1 {
  margin-top: 1% !important;
}

.m-b1 {
  margin-bottom: 1% !important;
}

.m-l1 {
  margin-left: 1% !important;
}

.m-r1 {
  margin-right: 1% !important;
}

.p-1 {
  padding: 1% !important;
}

.p-t1 {
  padding-top: 1% !important;
}

.p-b1 {
  padding-bottom: 1% !important;
}

.p-l1 {
  padding-left: 1% !important;
}

.p-r1 {
  padding-right: 1% !important;
}

.m-2 {
  margin: 2% !important;
}

.m-t2 {
  margin-top: 2% !important;
}

.m-b2 {
  margin-bottom: 2% !important;
}

.m-l2 {
  margin-left: 2% !important;
}

.m-r2 {
  margin-right: 2% !important;
}

.p-2 {
  padding: 2% !important;
}

.p-t2 {
  padding-top: 2% !important;
}

.p-b2 {
  padding-bottom: 2% !important;
}

.p-l2 {
  padding-left: 2% !important;
}

.p-r2 {
  padding-right: 2% !important;
}

.m-3 {
  margin: 3% !important;
}

.m-t3 {
  margin-top: 3% !important;
}

.m-b3 {
  margin-bottom: 3% !important;
}

.m-l3 {
  margin-left: 3% !important;
}

.m-r3 {
  margin-right: 3% !important;
}

.p-3 {
  padding: 3% !important;
}

.p-t3 {
  padding-top: 3% !important;
}

.p-b3 {
  padding-bottom: 3% !important;
}

.p-l3 {
  padding-left: 3% !important;
}

.p-r3 {
  padding-right: 3% !important;
}

.m-4 {
  margin: 4% !important;
}

.m-t4 {
  margin-top: 4% !important;
}

.m-b4 {
  margin-bottom: 4% !important;
}

.m-l4 {
  margin-left: 4% !important;
}

.m-r4 {
  margin-right: 4% !important;
}

.p-4 {
  padding: 4% !important;
}

.p-t4 {
  padding-top: 4% !important;
}

.p-b4 {
  padding-bottom: 4% !important;
}

.p-l4 {
  padding-left: 4% !important;
}

.p-r4 {
  padding-right: 4% !important;
}

.m-5 {
  margin: 5% !important;
}

.m-t5 {
  margin-top: 5% !important;
}

.m-b5 {
  margin-bottom: 5% !important;
}

.m-l5 {
  margin-left: 5% !important;
}

.m-r5 {
  margin-right: 5% !important;
}

.p-5 {
  padding: 5% !important;
}

.p-t5 {
  padding-top: 5% !important;
}

.p-b5 {
  padding-bottom: 5% !important;
}

.p-l5 {
  padding-left: 5% !important;
}

.p-r5 {
  padding-right: 5% !important;
}

.m-6 {
  margin: 6% !important;
}

.m-t6 {
  margin-top: 6% !important;
}

.m-b6 {
  margin-bottom: 6% !important;
}

.m-l6 {
  margin-left: 6% !important;
}

.m-r6 {
  margin-right: 6% !important;
}

.p-6 {
  padding: 6% !important;
}

.p-t6 {
  padding-top: 6% !important;
}

.p-b6 {
  padding-bottom: 6% !important;
}

.p-l6 {
  padding-left: 6% !important;
}

.p-r6 {
  padding-right: 6% !important;
}

.m-7 {
  margin: 7% !important;
}

.m-t7 {
  margin-top: 7% !important;
}

.m-b7 {
  margin-bottom: 7% !important;
}

.m-l7 {
  margin-left: 7% !important;
}

.m-r7 {
  margin-right: 7% !important;
}

.p-7 {
  padding: 7% !important;
}

.p-t7 {
  padding-top: 7% !important;
}

.p-b7 {
  padding-bottom: 7% !important;
}

.p-l7 {
  padding-left: 7% !important;
}

.p-r7 {
  padding-right: 7% !important;
}

.m-8 {
  margin: 8% !important;
}

.m-t8 {
  margin-top: 8% !important;
}

.m-b8 {
  margin-bottom: 8% !important;
}

.m-l8 {
  margin-left: 8% !important;
}

.m-r8 {
  margin-right: 8% !important;
}

.p-8 {
  padding: 8% !important;
}

.p-t8 {
  padding-top: 8% !important;
}

.p-b8 {
  padding-bottom: 8% !important;
}

.p-l8 {
  padding-left: 8% !important;
}

.p-r8 {
  padding-right: 8% !important;
}

.m-9 {
  margin: 9% !important;
}

.m-t9 {
  margin-top: 9% !important;
}

.m-b9 {
  margin-bottom: 9% !important;
}

.m-l9 {
  margin-left: 9% !important;
}

.m-r9 {
  margin-right: 9% !important;
}

.p-9 {
  padding: 9% !important;
}

.p-t9 {
  padding-top: 9% !important;
}

.p-b9 {
  padding-bottom: 9% !important;
}

.p-l9 {
  padding-left: 9% !important;
}

.p-r9 {
  padding-right: 9% !important;
}

.m-10 {
  margin: 10% !important;
}

.m-t10 {
  margin-top: 10% !important;
}

.m-b10 {
  margin-bottom: 10% !important;
}

.m-l10 {
  margin-left: 10% !important;
}

.m-r10 {
  margin-right: 10% !important;
}

.p-10 {
  padding: 10% !important;
}

.p-t10 {
  padding-top: 10% !important;
}

.p-b10 {
  padding-bottom: 10% !important;
}

.p-l10 {
  padding-left: 10% !important;
}

.p-r10 {
  padding-right: 10% !important;
}

.m-11 {
  margin: 11% !important;
}

.m-t11 {
  margin-top: 11% !important;
}

.m-b11 {
  margin-bottom: 11% !important;
}

.m-l11 {
  margin-left: 11% !important;
}

.m-r11 {
  margin-right: 11% !important;
}

.p-11 {
  padding: 11% !important;
}

.p-t11 {
  padding-top: 11% !important;
}

.p-b11 {
  padding-bottom: 11% !important;
}

.p-l11 {
  padding-left: 11% !important;
}

.p-r11 {
  padding-right: 11% !important;
}

.m-12 {
  margin: 12% !important;
}

.m-t12 {
  margin-top: 12% !important;
}

.m-b12 {
  margin-bottom: 12% !important;
}

.m-l12 {
  margin-left: 12% !important;
}

.m-r12 {
  margin-right: 12% !important;
}

.p-12 {
  padding: 12% !important;
}

.p-t12 {
  padding-top: 12% !important;
}

.p-b12 {
  padding-bottom: 12% !important;
}

.p-l12 {
  padding-left: 12% !important;
}

.p-r12 {
  padding-right: 12% !important;
}

.m-13 {
  margin: 13% !important;
}

.m-t13 {
  margin-top: 13% !important;
}

.m-b13 {
  margin-bottom: 13% !important;
}

.m-l13 {
  margin-left: 13% !important;
}

.m-r13 {
  margin-right: 13% !important;
}

.p-13 {
  padding: 13% !important;
}

.p-t13 {
  padding-top: 13% !important;
}

.p-b13 {
  padding-bottom: 13% !important;
}

.p-l13 {
  padding-left: 13% !important;
}

.p-r13 {
  padding-right: 13% !important;
}

.m-14 {
  margin: 14% !important;
}

.m-t14 {
  margin-top: 14% !important;
}

.m-b14 {
  margin-bottom: 14% !important;
}

.m-l14 {
  margin-left: 14% !important;
}

.m-r14 {
  margin-right: 14% !important;
}

.p-14 {
  padding: 14% !important;
}

.p-t14 {
  padding-top: 14% !important;
}

.p-b14 {
  padding-bottom: 14% !important;
}

.p-l14 {
  padding-left: 14% !important;
}

.p-r14 {
  padding-right: 14% !important;
}

.m-15 {
  margin: 15% !important;
}

.m-t15 {
  margin-top: 15% !important;
}

.m-b15 {
  margin-bottom: 15% !important;
}

.m-l15 {
  margin-left: 15% !important;
}

.m-r15 {
  margin-right: 15% !important;
}

.p-15 {
  padding: 15% !important;
}

.p-t15 {
  padding-top: 15% !important;
}

.p-b15 {
  padding-bottom: 15% !important;
}

.p-l15 {
  padding-left: 15% !important;
}

.p-r15 {
  padding-right: 15% !important;
}

.mauto {
  margin: 0 auto;
}

.mlauto {
  margin: 0 auto 0 0 !important;
}

.mrauto {
  margin: 0 0 0 auto !important;
}

/*width関連定義*/
.mw50 {
  max-width: 50%;
}

.mw95 {
  max-width: 95%;
}

.mw94 {
  max-width: 94%;
}

.mw90 {
  max-width: 90%;
}

.mw80 {
  max-width: 80%;
}

.mw100 {
  max-width: 100% !important;
}

.w1 {
  width: 100% !important;
}

.w2 {
  width: 200% !important;
}

.w3 {
  width: 300% !important;
}

.w4 {
  width: 400% !important;
}

.w5 {
  width: 500% !important;
}

.w6 {
  width: 600% !important;
}

.w7 {
  width: 700% !important;
}

.w8 {
  width: 800% !important;
}

.w9 {
  width: 900% !important;
}

.w10 {
  width: 1000% !important;
}

.w11 {
  width: 1100% !important;
}

.w12 {
  width: 1200% !important;
}

.w13 {
  width: 1300% !important;
}

.w14 {
  width: 1400% !important;
}

.w15 {
  width: 1500% !important;
}

.w16 {
  width: 1600% !important;
}

.w17 {
  width: 1700% !important;
}

.w18 {
  width: 1800% !important;
}

.w19 {
  width: 1900% !important;
}

.w20 {
  width: 2000% !important;
}

.w21 {
  width: 2100% !important;
}

.w22 {
  width: 2200% !important;
}

.w23 {
  width: 2300% !important;
}

.w24 {
  width: 2400% !important;
}

.w25 {
  width: 2500% !important;
}

.w26 {
  width: 2600% !important;
}

.w27 {
  width: 2700% !important;
}

.w28 {
  width: 2800% !important;
}

.w29 {
  width: 2900% !important;
}

.w30 {
  width: 3000% !important;
}

.w31 {
  width: 3100% !important;
}

.w32 {
  width: 3200% !important;
}

.w33 {
  width: 3300% !important;
}

.w34 {
  width: 3400% !important;
}

.w35 {
  width: 3500% !important;
}

.w36 {
  width: 3600% !important;
}

.w37 {
  width: 3700% !important;
}

.w38 {
  width: 3800% !important;
}

.w39 {
  width: 3900% !important;
}

.w40 {
  width: 4000% !important;
}

.w41 {
  width: 4100% !important;
}

.w42 {
  width: 4200% !important;
}

.w43 {
  width: 4300% !important;
}

.w44 {
  width: 4400% !important;
}

.w45 {
  width: 4500% !important;
}

.w46 {
  width: 4600% !important;
}

.w47 {
  width: 4700% !important;
}

.w48 {
  width: 4800% !important;
}

.w49 {
  width: 4900% !important;
}

.w50 {
  width: 5000% !important;
}

.w51 {
  width: 5100% !important;
}

.w52 {
  width: 5200% !important;
}

.w53 {
  width: 5300% !important;
}

.w54 {
  width: 5400% !important;
}

.w55 {
  width: 5500% !important;
}

.w56 {
  width: 5600% !important;
}

.w57 {
  width: 5700% !important;
}

.w58 {
  width: 5800% !important;
}

.w59 {
  width: 5900% !important;
}

.w60 {
  width: 6000% !important;
}

.w61 {
  width: 6100% !important;
}

.w62 {
  width: 6200% !important;
}

.w63 {
  width: 6300% !important;
}

.w64 {
  width: 6400% !important;
}

.w65 {
  width: 6500% !important;
}

.w66 {
  width: 6600% !important;
}

.w67 {
  width: 6700% !important;
}

.w68 {
  width: 6800% !important;
}

.w69 {
  width: 6900% !important;
}

.w70 {
  width: 7000% !important;
}

.w71 {
  width: 7100% !important;
}

.w72 {
  width: 7200% !important;
}

.w73 {
  width: 7300% !important;
}

.w74 {
  width: 7400% !important;
}

.w75 {
  width: 7500% !important;
}

.w76 {
  width: 7600% !important;
}

.w77 {
  width: 7700% !important;
}

.w78 {
  width: 7800% !important;
}

.w79 {
  width: 7900% !important;
}

.w80 {
  width: 8000% !important;
}

.w81 {
  width: 8100% !important;
}

.w82 {
  width: 8200% !important;
}

.w83 {
  width: 8300% !important;
}

.w84 {
  width: 8400% !important;
}

.w85 {
  width: 8500% !important;
}

.w86 {
  width: 8600% !important;
}

.w87 {
  width: 8700% !important;
}

.w88 {
  width: 8800% !important;
}

.w89 {
  width: 8900% !important;
}

.w90 {
  width: 9000% !important;
}

.w91 {
  width: 9100% !important;
}

.w92 {
  width: 9200% !important;
}

.w93 {
  width: 9300% !important;
}

.w94 {
  width: 9400% !important;
}

.w95 {
  width: 9500% !important;
}

.w96 {
  width: 9600% !important;
}

.w97 {
  width: 9700% !important;
}

.w98 {
  width: 9800% !important;
}

.w99 {
  width: 9900% !important;
}

.w100 {
  width: 10000% !important;
}

.heightauto {
  height: auto;
}

/*text-align関連定義*/
.ta_r {
  text-align: right !important;
}

.ta_l {
  text-align: left !important;
}

.ta_c {
  text-align: center !important;
}

.inline-block {
  display: inline-block !important;
  vertical-align: middle;
}

.block {
  display: block !important;
}

.none {
  display: none;
}

.radius {
  border-radius: 5px !important;
}

/*line-height関連定義*/
.lh13 {
  line-height: 1.3em;
}

.lh14 {
  line-height: 1.4em;
}

.lh15 {
  line-height: 1.5em;
}

.lh16 {
  line-height: 1.6em;
}

.lh17 {
  line-height: 1.7em;
}

.lh18 {
  line-height: 1.8em;
}

.lh19 {
  line-height: 1.9em;
}

.lh20 {
  line-height: 2em;
}

.lh30 {
  line-height: 3em;
}

.letterSpacing05 {
  letter-spacing: 0.5rem;
}

.letterSpacing10 {
  letter-spacing: 1rem;
}

.letterSpacing20 {
  letter-spacing: 2rem;
}

.hidden {
  width: 100%;
  overflow: hidden !important;
  position: fixed;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.opacity5 {
  opacity: 0.4 !important;
}

.BasicTable {
  width: 100%;
  color: #FFF;
}
.BasicTable__th {
  text-align: center;
  padding: 2.5%;
  border: 1px solid #FFF;
  white-space: nowrap;
  width: 30%;
}
.BasicTable__td {
  padding: 2.5%;
  border: 1px solid #FFF;
  width: 70%;
}
.BasicTable__td a {
  color: #FFF;
}

.BasicTable2 {
  width: 100%;
}
.BasicTable2__th, .BasicTable2__th--gray {
  text-align: center;
  padding: 2.5% 0;
  border: 1px solid #FFF;
  white-space: nowrap;
  width: 16.6666%;
  background-color: #878787;
  color: #FFF;
}
.BasicTable2__th--gray {
  background-color: #EEEFEF;
  color: #000;
}
.BasicTable2__td {
  text-align: center;
  padding: 2.5% 0;
  border: 1px solid #FFF;
  width: 16.6666%;
}
.BasicTable2__td a {
  color: #FFF;
}

/* 点滅 */
.ani_blinking {
  -webkit-animation: blink 0.5s ease-in-out infinite alternate;
  animation: blink 0.5s ease-in-out infinite alternate;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 画像回転 */
.ani_rotate:hover img {
  -webkit-animation-name: rotate;
          animation-name: rotate;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes "rotate" {
  from {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}
/* underline animation */
.ani_underline {
  display: inline-block;
}
.ani_underline::after {
  content: "";
  display: block;
  width: 0;
  margin: -3px 0 0;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  border-bottom: 1px solid #FFF;
}
.ani_underline:hover::after {
  width: 100%;
}

/* ローディング画面 */
#loading {
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 1s;
  transition: all 1s;
  background-color: white;
  position: fixed;
  z-index: 100;
}

.spinner {
  width: 100px;
  height: 100vh;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  border-radius: 100%;
}
.spinner img {
  width: 25px;
  height: 25px;
}
.spinner img:first-child {
  position: absolute;
  top: -7px;
  -webkit-animation: sk-scaleout 0.6s infinite ease-in-out;
          animation: sk-scaleout 0.6s infinite ease-in-out;
}

/* ローディングアニメーション */
@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
    top: -9px;
  }
  50% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
    top: -9px;
  }
  100% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
    top: -9px;
  }
}
@keyframes sk-scaleout {
  0% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
    top: -9px;
  }
  50% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
    top: -9px;
  }
  100% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
    top: -9px;
  }
}
.loaded {
  opacity: 0;
  visibility: hidden;
}

.sp-area .top-video {
  position: relative;
}
.sp-area .top-video .top-movie {
  height: 100vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.sp-area .top-video .hidden {
  display: none;
}
.sp-area .top-video__top-sns {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 40px;
}
.sp-area .top-video__top-sns a {
  margin-bottom: 10px;
  display: inline-block;
}
.sp-area .top-video__top-sns img {
  width: 30px;
}
.sp-area .top-video__top-title .top-text {
  position: absolute;
  right: 20px;
  bottom: 80px;
  text-align: right;
  bottom: 20px;
}
.sp-area .top-video__top-title .top-text h2 {
  color: white;
  font-size: 4.6rem;
  margin-top: -20px;
}
.sp-area .top-video__top-title .vertical-text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  margin-left: auto;
}
.sp-area .top-video__top-title img {
  position: absolute;
  width: 90%;
  bottom: 80px;
  left: 20px;
}
.sp-area .top-video__top-businessdays {
  position: absolute;
  left: 20px;
  top: 20px;
}
.sp-area .top-video__top-businessdays p {
  border: 1px solid white;
  color: white;
  padding: 5px 20px;
  font-size: 1.2rem;
  font-family: "ryo-gothic-plusn", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}
.sp-area .slider1 {
  position: absolute;
  top: 0;
  visibility: initial;
  opacity: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.sp-area .slider1.show {
  opacity: 1;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.sp-area .slider1 .splide__slide {
  position: relative;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.sp-area .slider1 .splide__slide img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.sp-area .slider2 li {
  width: 45%;
}
.sp-area .slider2 img {
  height: 15vh;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.sp-area .week-menu {
  margin: 50px auto;
  text-align: center;
}
.sp-area .week-menu.night-menu {
  margin: 20px auto 30px;
}
.sp-area .week-menu h2 {
  font-size: 1.8rem;
  text-align: center;
}
.sp-area .week-menu p {
  text-align: left;
  margin-bottom: 5px;
}
.sp-area .week-menu p span {
  font-size: 1.2rem;
  line-height: 1.8rem;
  display: inline-block;
}
.sp-area .week-menu p.week-name {
  text-align: center;
  margin-top: 5px;
  font-family: "ryo-gothic-plusn", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}
.sp-area .week-menu img {
  width: 100%;
  margin: 10px auto;
}
.sp-area .week-menu .week-img {
  height: 300px;
  overflow: hidden;
  width: 100%;
  margin: 10px auto;
}
@media only screen and (max-width: 991px) {
  .sp-area .week-menu .week-img {
    height: 28vh;
  }
}
.sp-area .week-menu .week-img img {
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.sp-area .menu-list h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 10px;
}
.sp-area .menu-list ul li {
  width: 100%;
  margin-bottom: 20px;
}
.sp-area .menu-list ul li .img-box {
  overflow: hidden;
  width: 100%;
}
.sp-area .menu-list ul li .img-box img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.sp-area .menu-list ul li p {
  text-align: left;
  margin-bottom: 5px;
  margin-top: 10px;
}
.sp-area .menu-list ul li p span {
  font-size: 1.2rem;
}
.sp-area .splide__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  bottom: -20px;
}
.sp-area .splide__pagination li {
  width: auto !important;
}
.sp-area .splide__pagination li button {
  width: 20px;
  height: 2px;
  min-height: 2px;
  border-radius: 0;
}
.sp-area .splide__pagination li button.is-active {
  height: 2px !important;
  background-color: black;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.night-content {
  margin-bottom: 0px;
}

.drink-menu {
  margin: 0 auto 40px;
}
.drink-menu h2 {
  width: 100%;
  background-image: url("../../img/top/table-title.jpg");
  padding: 15px 20px;
  border-bottom: 2px solid black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.8rem;
  font-weight: 500;
  position: relative;
}
.drink-menu h2 img {
  width: 25px;
  margin-right: 10px;
}
.drink-menu h2 .arrow-down {
  display: block;
  color: #333;
  line-height: 1;
  position: relative;
  width: 0.1em;
  height: 1em;
  background: currentColor;
  margin-left: auto;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.drink-menu h2 .arrow-down:before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  border: 0.1em solid currentColor;
  border-top: 0;
  border-right: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  position: absolute;
  left: 50%;
  bottom: -0.05em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.drink-menu h2 .arrow-down.open {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.drink-menu h3 {
  margin-top: 40px;
  margin-bottom: -20px;
}
.drink-menu table {
  width: 100%;
  margin-top: 40px;
}
.drink-menu table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
.drink-menu table tr td {
  text-indent: -1.5rem;
  margin-left: 1.5rem;
}
.drink-menu table tr td span {
  font-size: 1.2rem;
}
.drink-menu table tr td:nth-child(2) {
  text-align: right;
}

.about {
  background-image: url("../../img/top/about-bg.jpg");
  padding: 50px 0;
  height: 100vh !important;
}
.about .about-card {
  opacity: 0;
  height: auto !important;
  position: absolute;
}
.about.is-fixed .about-card {
  opacity: 1;
  height: 100vh !important;
  width: 90%;
}
.about .about-box {
  position: relative;
}
.about .about-box h1 {
  margin-bottom: 40px;
}
.about .about-card {
  -webkit-transform: translate(0px, 0px) !important;
          transform: translate(0px, 0px) !important;
}
.about .about-card .about-img {
  margin: 0 auto;
  text-align: center;
}
.about .about-card .about-img img {
  width: auto;
  height: 300px;
}
.about .about-card .about-img img#aboutimg01 {
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
}
.about .about-card .about-img img#aboutimg02 {
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
}
.about .about-card .about-img img#aboutimg03 {
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
}
.about .about-card.is-active {
  position: absolute;
  top: 70px;
  width: 90% !important;
  left: 20px !important;
  z-index: 2;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.about .about-card.is-active .abouttext {
  opacity: 1;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  margin-top: 40px;
}
.about .about-card.is-active img {
  opacity: 1;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.about .about-card.is-active img#aboutimg01 {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.about .about-card.is-active img#aboutimg02 {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.about .about-card.is-active img#aboutimg03 {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.about .about-card .abouttext {
  opacity: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.about .about-card .about-titlebox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 55px;
}
.about .about-card .about-titlebox h2 {
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0.15rem;
}
.about .about-card .about-titlebox--number {
  position: relative;
  margin-left: auto;
  margin-top: -20px;
}
.about .about-card .about-titlebox--number span.childnum {
  position: absolute;
  top: 0;
}
.about .about-card .about-titlebox--number span.number {
  position: relative;
  display: block;
  padding-left: 2.5rem;
  font-size: 1.5rem;
  top: 20px;
}
.about .about-card .about-titlebox--number span.number:before {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #adab97;
  background-size: cover;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 4rem;
  top: 4px;
  left: -4px;
}

.about-content .swiper-wrapper {
  width: 75%;
  margin: 0 auto;
}
.about-content .swiper-pagination {
  position: absolute;
  text-align: right;
  bottom: -50px;
  right: 20px;
  width: auto;
  font-size: 3rem;
  font-family: "ryo-gothic-plusn", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}
.about-content .swiper-pagination span {
  font-size: 1.4rem;
  position: absolute;
  display: inline-block;
  font-family: "ryo-gothic-plusn", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}
.about-content .swiper-pagination span:first-child {
  top: -10px;
  right: 20px;
}
.about-content .swiper-pagination span:nth-child(2) {
  right: -12px;
  bottom: -8px;
}
.about-content li {
  width: 100% !important;
}
.about-content__img-box {
  overflow: hidden;
  width: 100%;
  height: 400px;
  margin: 0 auto 20px;
}
.about-content__img-box img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.aboutcontent__title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.aboutcontent__title-box h2 {
  font-size: 1.8rem;
}

.swiper02 .swiper-slide {
  opacity: 0 !important;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.swiper02 .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.swiper02 .swiper-slide #aboutcontent02 h2 {
  margin: 15px 0 10px;
}

.shopbox {
  margin-bottom: 25px;
}

.shopimg .splide__slide {
  overflow: hidden;
  height: 400px;
}
@media only screen and (max-width: 991px) {
  .shopimg .splide__slide {
    height: 300px;
  }
}
.shopimg .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.shopimg .splide__track--nav > .splide__list > .splide__slide.is-active {
  border-color: white;
}

.shop-textbox {
  margin-top: 20px;
}
.shop-textbox h2 {
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  margin-bottom: 10px;
}

#gohanmuta-modal {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.gohanmuta-modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
}

.gohanmuta-modal-content {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  padding: 2em 1.5em;
  border-radius: 10px;
  max-width: 90vw;
  width: 400px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.gohanmuta-modal-content h2 {
  font-size: 1.2em;
  margin-bottom: 1em;
}
.gohanmuta-modal-content p {
  line-height: 1.6;
}

#gohanmuta-modal-close {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 1.5em;
  padding: 0.4em 1.8em;
  font-size: 0.9em;
}

@media (max-width: 500px) {
  .gohanmuta-modal-content {
    width: 95vw;
    padding: 1em;
  }
}