@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%;
}

a[disabled] {
  pointer-events: none;
  cursor: default;
  color: #CFCFCF !important;
}

.bg-maincl {
  background-color: #FFF;
}

.cl-main {
  color: #FFF;
}

.w-90 {
  width: 95%;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .w-90 {
    width: 90%;
  }
}

.sp-none {
  display: block;
}
@media only screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
}

.pc-none {
  display: none;
}
@media only screen and (max-width: 768px) {
  .pc-none {
    display: block;
  }
}

.idealborder {
  width: 1px;
  height: 100%;
  max-width: none;
}
@media only screen and (max-width: 768px) {
  .idealborder {
    display: none;
  }
}

.css-gs60ek {
  overflow: visible;
  text-align: center;
  z-index: 0;
}

.css-npo5nh {
  inset: 0px -0.5px;
}

.css-roiesn {
  position: absolute;
  display: block;
}

.css-npo5nh {
  top: 0;
  left: -0.5px;
  right: -0.5px;
  bottom: 0;
}

.css-roiesn {
  position: absolute;
  display: block;
}

.css-gs60ek {
  overflow: visible;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.margin-t100 {
  background: black;
  width: 100%;
  height: 100px;
  border-bottom: 1px solid #b3b3b3;
}

#loader {
  position: fixed;
  inset: 0;
  background: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 9999;
}
#loader .loader-text {
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 1px;
}
#loader img {
  width: 200px;
}
@media only screen and (max-width: 768px) {
  #loader img {
    width: 15%;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
header {
  position: fixed;
  width: auto;
  inset: 0px 0px auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 40px;
  background-color: #FFF;
  z-index: 9999;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.2);
  border-width: 0px 0px 1px;
  position: relative;
}
header____inner {
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.2);
  border-top-width: 0px;
  border-bottom-width: 1px;
  border-left-width: 0px;
  border-right-width: 0px;
  position: absolute;
  inset: 0;
}

.bg-half {
  position: relative;
}
.bg-half::before {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: #ccc;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

.arrow {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  position: relative;
  width: 0.1em;
  height: 2em;
  margin: 50px 0 40px;
}
.arrow:before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  border: 0.1em solid;
  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;
  border-color: #FFF;
}

.qa-box {
  position: relative;
  margin-bottom: 150px;
}
.qa-box .qa-title {
  text-align: center;
  margin-top: 45px;
  color: #FFF;
  font-size: 10rem;
  font-weight: 900;
  line-height: 6.2rem;
}
@media only screen and (max-width: 768px) {
  .qa-box .qa-title {
    font-size: 8rem;
    line-height: 5.5rem;
  }
}
.qa-box .qa-title span {
  font-size: 2rem;
}
.qa-box .center {
  margin: 20px auto 0;
  text-align: center;
  border-bottom: 1px solid #FFF;
}
.qa-box .arrow {
  background-color: #FFF;
  color: #FFF;
  margin-bottom: 0;
}

.qa-01-list__title {
  color: #FFF;
  padding: 35px 50px;
  font-size: 2.6rem;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #b2a58f;
  background: black;
}
@media only screen and (max-width: 768px) {
  .qa-01-list__title {
    padding: 35px 20px;
  }
}
.qa-01-list__title span {
  color: #edc900;
  font-size: 1.6rem;
  margin-left: 20px;
  font-weight: 300;
}
.qa-01-list__title .arrow {
  margin: 0 0 0 auto;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.qa-01-list__title.active .arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #edc900;
  background-color: #edc900;
}
.qa-01-list__qabox {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease, padding 0.5s ease;
  transition: max-height 0.5s ease, padding 0.5s ease;
}
.qa-01-list__qabox.active {
  max-height: 5500px;
}
.qa-01-list__list {
  border-bottom: 1px solid black;
}
.qa-01-list__list .qa-text {
  color: black;
  font-size: 2rem;
  text-align: left;
}
.qa-01-list__list li a {
  padding: 35px 50px;
  display: block;
}
@media only screen and (max-width: 768px) {
  .qa-01-list__list li a {
    padding: 35px 0 35px 20px;
    width: 90%;
    line-height: normal;
  }
}
.qa-01-list__list li .arrow {
  margin: 0 0 0 auto;
  position: absolute;
  right: 50px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media only screen and (max-width: 768px) {
  .qa-01-list__list li .arrow {
    right: 20px;
  }
}
.qa-01-list__list--q-box {
  background-color: #FFF;
  position: relative;
}
.qa-01-list__list--q-box .q-num {
  color: #edc900;
  font-size: 2.6rem;
  font-weight: 900;
  margin-right: 40px;
}
@media only screen and (max-width: 768px) {
  .qa-01-list__list--q-box .q-num {
    display: block;
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
}
.qa-01-list__list--q-box.active .arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #edc900;
  background-color: #edc900;
}
.qa-01-list__list--a-box {
  background-color: #FFF;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease, padding 0.5s ease;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding: 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .qa-01-list__list--a-box {
    display: block;
    padding: 0 20px;
  }
}
.qa-01-list__list--a-box.active {
  max-height: 500px;
  padding: 35px 50px;
}
@media only screen and (max-width: 768px) {
  .qa-01-list__list--a-box.active {
    padding: 35px 20px;
  }
}
.qa-01-list__list--a-box .a-num {
  color: black;
  font-size: 2.6rem;
  font-weight: 900;
  margin-right: 40px;
}
@media only screen and (max-width: 768px) {
  .qa-01-list__list--a-box .a-num {
    margin-bottom: 10px;
  }
}

.main-sec-contact-btn {
  background-color: #FFF;
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 768px) {
  .main-sec-contact-btn {
    display: block;
  }
}
.main-sec-contact-btn a {
  padding: 15px 40px;
  font-size: 2rem;
  font-weight: 600;
  border-radius: 5px;
  margin: 0 10px;
}
@media only screen and (max-width: 768px) {
  .main-sec-contact-btn a {
    display: block;
    text-align: center;
    padding: 20px 0;
    width: 60%;
    margin: 0 auto 15px;
  }
}
@media only screen and (max-width: 768px) {
  .main-sec-contact-btn a.main-sec-contact-btn__quotation-btn {
    margin-bottom: 0;
  }
}
.main-sec-contact-btn__contact-btn {
  background-color: #FFF;
  color: black;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.main-sec-contact-btn__contact-btn:hover {
  background-color: black;
  color: #FFF;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.main-sec-contact-btn__quotation-btn {
  background-color: #edc900;
  color: #FFF;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.main-sec-contact-btn__quotation-btn:hover {
  background-color: black;
  color: #edc900;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

footer {
  color: #000;
  background-color: #FFF;
  padding: 40px 0;
  position: relative;
}
footer .footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  footer .footer {
    display: block;
  }
}
footer .footer__inner {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
footer .footer__contents {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 40px;
  z-index: 1;
  position: relative;
}
footer .footer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 768px) {
  footer .footer-box {
    display: block;
  }
}
footer .footer-box--left {
  width: 50%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media only screen and (max-width: 768px) {
  footer .footer-box--left {
    width: 100%;
  }
}
footer .footer-box--right {
  width: 50%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media only screen and (max-width: 768px) {
  footer .footer-box--right {
    width: 100%;
  }
}
footer .footer-box li,
footer .footer-box a {
  color: black;
  font-weight: 600;
  line-height: 4rem;
}
footer .footer-box__list {
  margin-right: 60px;
}
footer .footer-box__list--title {
  font-size: 1.4rem;
  color: #AAAAAA !important;
}
footer .footer-box__list--title .arrow {
  color: black;
  background: black;
  margin: 0;
  -webkit-transform: rotate(220deg);
          transform: rotate(220deg);
  height: 1.2em;
  margin-left: 20px;
  width: 1px;
}
footer .footer-box__list--title .arrow::before {
  width: 0.4em;
  height: 0.4em;
  border-color: #000;
}
footer .footer-box__list--title a {
  color: #AAAAAA;
}
footer .footer-box__list a {
  font-size: 2.2rem;
}
@media only screen and (max-width: 768px) {
  footer .footer-box__list {
    margin-right: 0;
  }
}
footer .footer-box__content {
  border: 1px solid black;
  min-width: 320px;
  width: 70%;
  border-radius: 15px;
  padding: 25px 25px 15px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #000;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  footer .footer-box__content {
    width: auto;
    margin-top: 20px;
  }
}
footer .footer-box__content--title {
  font-size: 2rem;
  line-height: 2.5rem;
  color: #FFF;
  font-weight: 600;
}
footer .footer-box__content--title span {
  font-size: 1.3rem;
  font-weight: 500;
}
footer .footer-box__content__time-tell {
  text-align: right;
  line-height: 4rem;
  margin-top: -20px;
}
@media only screen and (max-width: 768px) {
  footer .footer-box__content__time-tell {
    margin-top: 0;
  }
}
footer .footer-box__content__time-tell--time,
footer .footer-box__content__time-tell a {
  color: #FFF;
}
footer .footer-box__content__time-tell--time {
  font-weight: 400;
  font-size: 1.3rem;
}
footer .footer-box__content__time-tell a {
  font-size: 3rem;
  font-weight: 900;
}
footer .footer-box__underbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 80px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  footer .footer-box__underbox {
    display: block;
  }
}
footer .footer-box__underbox__brandname--logo {
  width: 201px;
  height: 35px;
}
footer .footer-box__underbox__brandname--logo img {
  width: 100%;
  height: 100%;
  max-width: none;
}
footer .footer-box__underbox__brandname--logo span {
  font-weight: 900;
  font-size: 6rem;
}
footer .footer-box__underbox__brandname small {
  font-size: 1.4rem;
  color: black;
  font-weight: 400;
}
footer .footer-box__underbox__linklist ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 768px) {
  footer .footer-box__underbox__linklist ul {
    margin-top: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
footer .footer-box__underbox__linklist ul a {
  color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 768px) {
  footer .footer-box__underbox__linklist ul a {
    font-size: 1rem;
  }
}
footer .footer-box__underbox__linklist ul a::before {
  content: "";
  width: 1px;
  height: 12px;
  display: block;
  background-color: black;
  margin-right: 2rem;
  margin-left: 2rem;
}
@media only screen and (max-width: 768px) {
  footer .footer-box__underbox__linklist ul a::before {
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
footer .footer-box__underbox__linklist ul:last-child::after {
  content: "";
  width: 1px;
  height: 12px;
  display: block;
  background-color: black;
  margin-right: 2rem;
  margin-left: 2rem;
}
@media only screen and (max-width: 768px) {
  footer .footer-box__underbox__linklist ul:last-child::after {
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
footer .footer-bottom {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  footer .footer-bottom {
    display: block;
  }
}
footer .footer-bottom a {
  color: black;
  text-decoration: none;
}
footer .footer-bottom a:hover {
  text-decoration-line: underline;
  text-underline-position: from-font;
  text-decoration-thickness: from-font;
  text-decoration-style: solid;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
footer .footer-left {
  text-decoration-line: underline;
  text-underline-position: from-font;
  text-decoration-thickness: from-font;
  text-decoration-style: solid;
  cursor: pointer;
  font-size: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  width: 100%;
}
footer .footer-right {
  black-space: nowrap;
  font-family: "Inter:Light", sans-serif;
  word-break: break-word;
  font-weight: 300;
  font-style: normal;
  font-size: 10px;
  letter-spacing: -0.24px;
  text-align: right;
  line-height: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  width: 100%;
}

.top-back-btn a {
  position: fixed;
  width: 50px;
  height: 40px;
  background-color: black;
  z-index: 2;
  bottom: 40px;
  right: 20px;
  border-radius: 5px;
}
.top-back-btn a .arrow {
  margin: 10px auto 0;
  text-align: center;
  display: block;
  color: white;
  background-color: white;
  height: 1.5em;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}