@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 {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  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: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.flex-end {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.flex-center {
  width: 100%;
  display: flex;
  justify-content: flex-center;
  flex-wrap: wrap;
}

/* 均等配置 */
.flex-space-between, .Header__inner, .ContentBox__inner, .ImgBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

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

/* たて */
.flex-column {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.flex-column__1 {
  flex: 1 0 10%;
}

.flex-column__8 {
  flex: 3 0 65.8%;
}

.FlexTwoContainer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.FlexTwoContainer__body {
  width: 49%;
}

.FlexThreeContainer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.FlexThreeContainer__body {
  width: 32%;
}

.FlexThreeContainer__body img {
  width: 100%;
}

.FlexFiveContainer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.FlexFiveContainer__body {
  width: 20%;
  overflow: hidden;
}

.FlexFiveContainer__body img {
  width: 100%;
}

.FlexRight {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.FlexRight__body {
  width: 60%;
}

.FlexImageTwoConList {
  width: 100%;
  display: flex;
  justify-content: space-between;
  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: 1.0rem !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: 2.0rem !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: 3.0rem !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: 1% !important;
}

.w2 {
  width: 2% !important;
}

.w3 {
  width: 3% !important;
}

.w4 {
  width: 4% !important;
}

.w5 {
  width: 5% !important;
}

.w6 {
  width: 6% !important;
}

.w7 {
  width: 7% !important;
}

.w8 {
  width: 8% !important;
}

.w9 {
  width: 9% !important;
}

.w10 {
  width: 10% !important;
}

.w11 {
  width: 11% !important;
}

.w12 {
  width: 12% !important;
}

.w13 {
  width: 13% !important;
}

.w14 {
  width: 14% !important;
}

.w15 {
  width: 15% !important;
}

.w16 {
  width: 16% !important;
}

.w17 {
  width: 17% !important;
}

.w18 {
  width: 18% !important;
}

.w19 {
  width: 19% !important;
}

.w20 {
  width: 20% !important;
}

.w21 {
  width: 21% !important;
}

.w22 {
  width: 22% !important;
}

.w23 {
  width: 23% !important;
}

.w24 {
  width: 24% !important;
}

.w25 {
  width: 25% !important;
}

.w26 {
  width: 26% !important;
}

.w27 {
  width: 27% !important;
}

.w28 {
  width: 28% !important;
}

.w29 {
  width: 29% !important;
}

.w30 {
  width: 30% !important;
}

.w31 {
  width: 31% !important;
}

.w32 {
  width: 32% !important;
}

.w33 {
  width: 33% !important;
}

.w34 {
  width: 34% !important;
}

.w35 {
  width: 35% !important;
}

.w36 {
  width: 36% !important;
}

.w37 {
  width: 37% !important;
}

.w38 {
  width: 38% !important;
}

.w39 {
  width: 39% !important;
}

.w40 {
  width: 40% !important;
}

.w41 {
  width: 41% !important;
}

.w42 {
  width: 42% !important;
}

.w43 {
  width: 43% !important;
}

.w44 {
  width: 44% !important;
}

.w45 {
  width: 45% !important;
}

.w46 {
  width: 46% !important;
}

.w47 {
  width: 47% !important;
}

.w48 {
  width: 48% !important;
}

.w49 {
  width: 49% !important;
}

.w50 {
  width: 50% !important;
}

.w51 {
  width: 51% !important;
}

.w52 {
  width: 52% !important;
}

.w53 {
  width: 53% !important;
}

.w54 {
  width: 54% !important;
}

.w55 {
  width: 55% !important;
}

.w56 {
  width: 56% !important;
}

.w57 {
  width: 57% !important;
}

.w58 {
  width: 58% !important;
}

.w59 {
  width: 59% !important;
}

.w60 {
  width: 60% !important;
}

.w61 {
  width: 61% !important;
}

.w62 {
  width: 62% !important;
}

.w63 {
  width: 63% !important;
}

.w64 {
  width: 64% !important;
}

.w65 {
  width: 65% !important;
}

.w66 {
  width: 66% !important;
}

.w67 {
  width: 67% !important;
}

.w68 {
  width: 68% !important;
}

.w69 {
  width: 69% !important;
}

.w70 {
  width: 70% !important;
}

.w71 {
  width: 71% !important;
}

.w72 {
  width: 72% !important;
}

.w73 {
  width: 73% !important;
}

.w74 {
  width: 74% !important;
}

.w75 {
  width: 75% !important;
}

.w76 {
  width: 76% !important;
}

.w77 {
  width: 77% !important;
}

.w78 {
  width: 78% !important;
}

.w79 {
  width: 79% !important;
}

.w80 {
  width: 80% !important;
}

.w81 {
  width: 81% !important;
}

.w82 {
  width: 82% !important;
}

.w83 {
  width: 83% !important;
}

.w84 {
  width: 84% !important;
}

.w85 {
  width: 85% !important;
}

.w86 {
  width: 86% !important;
}

.w87 {
  width: 87% !important;
}

.w88 {
  width: 88% !important;
}

.w89 {
  width: 89% !important;
}

.w90 {
  width: 90% !important;
}

.w91 {
  width: 91% !important;
}

.w92 {
  width: 92% !important;
}

.w93 {
  width: 93% !important;
}

.w94 {
  width: 94% !important;
}

.w95 {
  width: 95% !important;
}

.w96 {
  width: 96% !important;
}

.w97 {
  width: 97% !important;
}

.w98 {
  width: 98% !important;
}

.w99 {
  width: 99% !important;
}

.w100 {
  width: 100% !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: 2.0em;
}

.lh30 {
  line-height: 3.0em;
}

.letterSpacing05 {
  letter-spacing: 0.5rem;
}

.letterSpacing10 {
  letter-spacing: 1rem;
}

.letterSpacing20 {
  letter-spacing: 2rem;
}

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

.opacity5 {
  opacity: 0.4 !important;
}

/* 点滅 */
.blinking {
  -webkit-animation: blink 0.5s ease-in-out infinite alternate;
  -moz-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;
  }
}

@-moz-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

html {
  height: 100%;
  font-size: 62.5%;
  /*10px*/
}

body {
  height: 100%;
  font-size: 14px;
  font-size: 1.4rem;
  /*14px*/
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
  color: #000;
}

_:-ms-fullscreen, :root body {
  /* IE11以上 */
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  body {
    /* IE10以上 */
    font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
  }
}

main {
  display: block;
}

.wapper {
  height: 100%;
}

.contents {
  height: 100%;
}

.pc_none {
  display: none;
}

@media only screen and (max-width: 768px) {
  .pc_none {
    transition-duration: 0.5s;
    display: block;
  }
}

.sp_none {
  display: block;
}

@media only screen and (max-width: 768px) {
  .sp_none {
    transition-duration: 0.5s;
    display: none;
  }
}

a {
  color: #000;
}

a:visited {
  color: #000;
}

a:visited {
  color: #000;
}

a:hover {
  color: #000;
}

a:active {
  color: #000;
}

.js-effect {
  transition-duration: 2s;
}

.Logo {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 120px;
  transform: translate(0, -50%);
  text-align: center;
}

.Logo__text {
  font-size: 25px;
  color: #DDD;
  margin: 0 auto 40px;
  border: 1px solid #DDD;
  padding: 20px 0 20px;
  letter-spacing: 4px;
  width: 80%;
}

@media only screen and (max-width: 768px) {
  .Logo__text {
    transition-duration: 0.5s;
    width: 100%;
    margin: 0 auto 25px;
    padding: 0;
    letter-spacing: 1px;
    border: none;
    font-size: 1.8rem;
  }
}

.Logo__img {
  display: block;
  width: 60%;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .Logo__img {
    transition-duration: 0.5s;
    width: 36%;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 768px) {
  .Logo {
    transition-duration: 0.5s;
    width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.scrollIcon {
  position: absolute;
  width: 70px;
  height: 30px;
  line-height: 30px;
  font-size: 12px;
  color: #000;
  background-color: #FFF;
  border-radius: 5px;
  text-align: center;
  left: calc(50% - 35px);
  top: calc(100vh - 60px);
  z-index: 9;
}

_:-ms-fullscreen, :root .scrollIcon {
  /* IE11以上 */
  line-height: 33px;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .scrollIcon {
    /* IE10以上 */
    line-height: 33px;
  }
}

@media only screen and (max-width: 768px) {
  .scrollIcon {
    transition-duration: 0.5s;
    top: calc(100vh - 18vh);
  }
}

.scrollIcon::after {
  content: "";
  position: absolute;
  height: 50px;
  border-left: 1px dotted #FFF;
  left: 50%;
  top: 30px;
}

@media only screen and (max-width: 768px) {
  .scrollIcon::after {
    transition-duration: 0.5s;
    height: 18vh;
  }
}

.scrollIcon a {
  width: 100%;
  display: block;
}

.zs-enabled .zs-slideshow .zs-bullets {
  text-align: right;
  display: none;
}

.float-img, .float-img-r {
  width: 50%;
  float: left;
  padding: 0 20px 20px 0;
}

@media only screen and (max-width: 768px) {
  .float-img, .float-img-r {
    transition-duration: 0.5s;
    width: 100%;
    float: none;
    margin: 0 0 3%;
    padding: 0;
  }
}

.float-img-r {
  float: right;
}

#loader {
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: #FFF;
  z-index: 99999;
  overflow: hidden;
}

#load {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 999999;
  transform: translate(-50%, -50%);
  text-align: center;
}

#load img {
  width: 60%;
}

.zs-enabled .zs-slideshow:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: 0;
  background: transparent none repeat 0 0;
}

.backToTop {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: fixed;
  right: 30px;
  bottom: 40px;
  transition-duration: 1.5s;
  opacity: 0;
}

.backToTop a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 1rem;
  line-height: inherit;
  color: #fff;
  border-radius: 50%;
  background: #000;
}

.backToTop a::before {
  position: absolute;
  content: "";
  top: 16px;
  left: 14px;
  display: block;
  width: 12px;
  height: 12px;
  margin: 0 auto 3px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.backToTop a:hover {
  opacity: 0.7;
}

.l-content {
  padding-top: 150px !important;
  padding-bottom: 150px !important;
}

@media only screen and (max-width: 768px) {
  .l-content {
    transition-duration: 0.5s;
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
}

.l-footer {
  padding-top: 150px !important;
}

@media only screen and (max-width: 768px) {
  .l-footer {
    transition-duration: 0.5s;
    padding-top: 100px !important;
  }
}

.Header {
  width: 100%;
  position: fixed;
  top: -100px;
  transition: transform 0.8s;
  opacity: 0.8;
}

.Header.fixed {
  position: fixed;
  top: -100px;
  background-color: #FFF;
  z-index: 9999;
  margin: 0;
  transform: translateY(100px);
  transition: transform 0.8s;
}

.Header__inner {
  width: 90%;
  margin: 0 auto;
  padding: 20px 0;
}

@media only screen and (max-width: 768px) {
  .Header__inner {
    transition-duration: 0.5s;
    width: 100%;
    padding: 10px 3%;
  }
}

@media only screen and (max-width: 768px) {
  .Header__logo {
    transition-duration: 0.5s;
    width: 30%;
    line-height: 1.8;
  }
}

.Header__logo img {
  width: 150px;
}

@media only screen and (max-width: 768px) {
  .Header__logo img {
    transition-duration: 0.5s;
    width: 100%;
  }
}

.Header__info {
  font-size: 12px;
  line-height: 27px;
}

@media only screen and (max-width: 768px) {
  .Header__info {
    transition-duration: 0.5s;
    line-height: 1.4;
    font-size: 1.2rem;
  }
}

.Footer {
  width: 100%;
  background-color: #FFF;
}

@media only screen and (max-width: 768px) {
  .Footer {
    transition-duration: 0.5s;
    padding: 0 5px;
  }
}

.Footer__body {
  width: 1000px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .Footer__body {
    transition-duration: 0.5s;
    width: 100%;
  }
}

.Footer__copy {
  padding: 80px 0 5px;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .Footer__copy {
    transition-duration: 0.5s;
    padding: 20px 0 5px;
  }
}

.ShopInfo {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
}

_:-ms-fullscreen, :root .ShopInfo {
  /* IE11以上 */
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ShopInfo {
    /* IE10以上 */
    font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
  }
}

.ShopInfo__title {
  margin: 0 0 40px;
  text-align: center;
}

.ShopInfo__title img {
  width: 250px;
}

@media only screen and (max-width: 768px) {
  .ShopInfo__title img {
    transition-duration: 0.5s;
    width: 40%;
  }
}

@media only screen and (max-width: 768px) {
  .ShopInfo__title {
    transition-duration: 0.5s;
    margin: 0 0 20px;
  }
}

.ShopInfo__address {
  text-align: center;
  font-size: 16px;
}

@media only screen and (max-width: 768px) {
  .ShopInfo__address {
    transition-duration: 0.5s;
    font-size: 1.3rem;
    margin: 0 0 10px;
  }
}

.ShopInfo__block {
  width: 100%;
  text-align: center;
}

.ShopInfo__block-img {
  max-width: 390px;
}

@media only screen and (max-width: 768px) {
  .ShopInfo__block-img {
    transition-duration: 0.5s;
    max-width: 100%;
  }
}

.ShopInfo__telblock {
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  pointer-events: none;
  margin: 10px 0 50px;
}

@media only screen and (max-width: 768px) {
  .ShopInfo__telblock {
    transition-duration: 0.5s;
    margin-bottom: 25px;
    font-size: 1.3rem;
    pointer-events: visible;
  }
}

.mainV {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
  background: url(../img/parallax-bg1.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}

.zs-enabled .zs-slideshow .zs-slides .zs-slide.active {
  background-attachment: fixed;
}

.parallax-bg {
  height: 100vh;
  position: relative;
}

@media only screen and (min-width: 769px) {
  .parallax-bg {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    color: #000;
  }
}

@media only screen and (max-width: 768px) {
  .parallax-bg::before {
    transition-duration: 0.5s;
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    -webkit-transform: translate3d(0, 0, -1);
    transform: translate3d(0, 0, -1);
    width: 100%;
    height: 100vh;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
    text-align: center;
    z-index: -1;
  }
}

@media only screen and (max-width: 768px) {
  .parallax-bg.sp_photo1::before {
    transition-duration: 0.5s;
    background-image: url(../img/parallax-bg1.jpg) !important;
  }
}

.parallax-bg.photo1 {
  background-image: url(../img/parallax-bg1.jpg);
}

@media only screen and (max-width: 768px) {
  .parallax-bg.photo1 {
    transition-duration: 0.5s;
    background-image: none !important;
  }
}

@media only screen and (max-width: 768px) {
  .parallax-bg.photo1::before {
    transition-duration: 0.5s;
    background-image: url(../img/parallax-bg1.jpg);
  }
}

@media only screen and (max-width: 768px) {
  .parallax-bg.sp_photo2::before {
    transition-duration: 0.5s;
    background-image: url(../img/parallax-bg2.jpg) !important;
  }
}

.parallax-bg.photo2 {
  background-image: url(../img/parallax-bg2.jpg);
}

@media only screen and (max-width: 768px) {
  .parallax-bg.photo2 {
    transition-duration: 0.5s;
    background-image: none !important;
  }
}

@media only screen and (max-width: 768px) {
  .parallax-bg.photo2::before {
    transition-duration: 0.5s;
    background-image: url(../img/parallax-bg2.jpg);
  }
}

@media only screen and (max-width: 768px) {
  .parallax-bg.sp_photo3::before {
    transition-duration: 0.5s;
    background-image: url(../img/parallax-bg3.jpg) !important;
  }
}

.parallax-bg.photo3 {
  background-image: url(../img/parallax-bg3.jpg);
}

@media only screen and (max-width: 768px) {
  .parallax-bg.photo3 {
    transition-duration: 0.5s;
    background-image: none !important;
  }
}

@media only screen and (max-width: 768px) {
  .parallax-bg.photo3::before {
    transition-duration: 0.5s;
    background-image: url(../img/parallax-bg3.jpg);
  }
}

@media only screen and (max-width: 768px) {
  .parallax-bg.sp_photo4::before {
    transition-duration: 0.5s;
    background-image: url(../img/parallax-bg4.jpg) !important;
  }
}

.parallax-bg.photo4 {
  background-image: url(../img/parallax-bg4.jpg);
}

@media only screen and (max-width: 768px) {
  .parallax-bg.photo4 {
    transition-duration: 0.5s;
    background-image: none !important;
  }
}

@media only screen and (max-width: 768px) {
  .parallax-bg.photo4::before {
    transition-duration: 0.5s;
    background-image: url(../img/parallax-bg4.jpg);
  }
}

.contentWrap {
  background-color: #FFF;
}

.ContentBox {
  max-width: 1000px;
  margin: 0 auto;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
  background-color: #FFF;
}

_:-ms-fullscreen, :root .ContentBox {
  /* IE11以上 */
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ContentBox {
    /* IE10以上 */
    font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
  }
}

@media only screen and (max-width: 768px) {
  .ContentBox {
    transition-duration: 0.5s;
    width: 100%;
  }
}

.ContentBox__title {
  width: 100%;
  margin: 0 0 50px;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .ContentBox__title {
    transition-duration: 0.5s;
    margin: 0 0 50px;
  }
}

.ContentBox__title-main {
  display: block;
  margin: 0 0 10px;
  font-size: 23px;
}

@media only screen and (max-width: 768px) {
  .ContentBox__title-main {
    transition-duration: 0.5s;
    font-size: 1.6rem;
  }
}

.ContentBox__title-sub {
  display: block;
  font-size: 14px;
}

@media only screen and (max-width: 768px) {
  .ContentBox__title-sub {
    transition-duration: 0.5s;
    font-size: 1.4rem;
  }
}

.ContentBox__block {
  flex: 1;
  margin: 0 25px 0 0;
}

@media only screen and (max-width: 768px) {
  .ContentBox__block {
    transition-duration: 0.5s;
    flex: none;
    width: 100%;
    padding: 0 3%;
    margin: 0 0 15px;
  }
}

.ContentBox__block-img {
  width: 100%;
}

.ContentBox__text {
  flex: 1;
  font-size: 16px;
  line-height: 1.85;
  text-align: left;
}

@media only screen and (max-width: 768px) {
  .ContentBox__text {
    transition-duration: 0.5s;
    font-size: 1.4rem;
  }
}

.ImgBox {
  width: 100%;
  flex-wrap: nowrap;
  margin: 0 0 20px;
}

@media only screen and (max-width: 768px) {
  .ImgBox {
    transition-duration: 0.5s;
    flex-wrap: wrap;
  }
}

.ImgBox__item {
  width: 49%;
}

@media only screen and (max-width: 768px) {
  .ImgBox__item {
    transition-duration: 0.5s;
    width: 100%;
    margin: 0 0 3%;
  }
}

.ImgBox__img {
  width: 100%;
}

.ShopBtn {
  width: 100%;
  margin: 50px 0 0;
  text-align: center;
}

.ShopBtn__inner {
  display: inline-block;
  padding: 20px 30px;
  border: 1px solid #000;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border-radius: 35px;
}

@media only screen and (max-width: 768px) {
  .ShopBtn__inner {
    transition-duration: 0.5s;
    padding: 15px 20px;
    font-size: 1.4rem;
  }
}

.ShopBtn__inner:hover {
  background-color: #000;
  color: #FFF;
}

.ShopBtn--header {
  width: 100%;
  margin: 0;
}

.ShopBtn--header__inner {
  padding: 5px 10px;
  font-size: 11px;
}

.instagram {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media only screen and (max-width: 768px) {
  .instagram {
    transition-duration: 0.5s;
    padding: 2.5px;
  }
}

.instagram li {
  display: block;
  width: 250px;
  height: 250px;
  padding: 8px 8px 8px 8px;
  box-sizing: border-box;
  object-fit: cover;
}

@media only screen and (max-width: 768px) {
  .instagram li {
    transition-duration: 0.5s;
    width: 33%;
    height: 33%;
    padding: 0.3%;
  }
}

.instagram li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video {
  width: 100%;
  padding-bottom: 56.25%;
  height: 0px;
  position: relative;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
