/* CSS Document */
/* *********************
 *
 *     import
 *
 ***********************/
@import url('https://fonts.googleapis.com/css?family=GFS+Didot&display=swap');
/* @font-face {
  font-family: 'Didot';
  src: url('Didot_Regular.eot');
  src: url('Didot_Regular.eot?#iefix') format('embedded-opentype'),
     url('Didot_Regular.woff') format('woff'),
     url('Didot_Regular.ttf') format('truetype');
} */
@import url('https://fonts.googleapis.com/css?family=Nunito+Sans&display=swap');
/* @font-face {
  font-family: 'Futura';
  src: url('Futura.eot');
  src: url('Futura.eot?#iefix') format('embedded-opentype'),
     url('Futura.woff') format('woff'),
     url('Futura.ttf') format('truetype');
} */
/* @font-face {
  font-family: 'AdobeGaramond';
  src: url('AdobeGaramondProRegular.eot');
  src: url('AdobeGaramondProRegular.eot?#iefix') format('embedded-opentype'),
     url('AdobeGaramondProRegular.woff') format('woff'),
     url('AdobeGaramondProRegular.ttf') format('truetype');
} */






	


/* *********************
 *
 *     CSS リセット
 *
 ***********************/
html {
	font: 400 62.5%/normal 'Noto Serif', "游明朝体", 'Yu Mincho', YuMincho, serif;
	color: #fff;
	overflow-x: hidden;
	position: relative;
	-webkit-font-smoothing: antialiased;
}
/* TODO::font
html {
	font: 400 62.5%/normal "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	color: #FFF;
	overflow-x: hidden;
	position: relative;
	-webkit-font-smoothing: antialiased;
}
*/
body {
	font-size: 14px;
	font-size: 1.4rem;
	letter-spacing: 1px;
	position: relative;
	line-height: 3.4rem;
	text-align: justify;
	text-justify: inter-ideograph;
	background-color: #1a1a1a;
}
body * {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
  color: #fff;
}
a {
	color: #FFFFFF;
	margin: 0;
	padding: 0;
	text-decoration: none;
	line-height: normal;
	outline: none;
}
a:hover {
  text-decoration: none;
  color: inherit;
}
p img {
	width: 100%;
	height: auto;
}
img {
	vertical-align: bottom;
}
span {
	/* white-space: nowrap; */
}
h1 , h2 , h3, h4, h5 , h6 {
	text-align: center;
	line-height: normal;
}
::selection {
	background:hsla(49,53%,38%,0.45); /* Safari */
}
::-moz-selection {
	background:hsla(49,53%,38%,0.45); /* Firefox */
}

a[href*="tel"] {
  pointer-events: none;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden
}
.clear {
  clear: both
}

/*フレックス*/

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flexc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: center;
  justify-content: center;
}

.flexs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flexb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.columnreverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.rowreverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

/*align-item*/

.itemstart {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.itemcenter {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.itemend {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

/*align-content*/

.contentstart {
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.contentcenter {
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

.contentend {
  -webkit-align-content: flex-end;
  -ms-flex-line-pack: end;
  align-content: flex-end;
}

/*align-self*/

.selfstart {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.selfcenter {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.selfend {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

/* 見たまま編集バリデーション */

.flex > div[data-collection-list-content],
.flexc > div[data-collection-list-content],
.flexs > div[data-collection-list-content],
.flexb > div[data-collection-list-content] {
  width: 100%;
}

.flex > div[data-recommend-collection-list-content],
.flexc > div[data-recommend-collection-list-content],
.flexs > div[data-recommend-collection-list-content],
.flexb > div[data-recommend-collection-list-content] {
  width: 100%;
}

.flex > div[data-collection-filtered-content],
.flexc > div[data-collection-filtered-content],
.flexs > div[data-collection-filtered-content],
.flexb > div[data-collection-filtered-content] {
  width: 100%;
}

.flex > div[data-collection-archive-content],
.flexc > div[data-collection-archive-content],
.flexs > div[data-collection-archive-content],
.flexb > div[data-collection-archive-content] {
  width: 100%;
}

.flex > div[data-collection-list-content] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flexc > div[data-collection-list-content] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: center;
  justify-content: center;
}

.flexs > div[data-collection-list-content] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flexb > div[data-collection-list-content] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex > div[data-recommend-collection-list-content] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flexc > div[data-recommend-collection-list-content] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: center;
  justify-content: center;
}

.flexs > div[data-recommend-collection-list-content] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flexb > div[data-recommend-collection-list-content] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex > div[data-collection-filtered-content] {
  display: -webkit-box;
  display: -ms-flexsbox;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flexc > div[data-collection-filtered-content] {
  display: -webkit-box;
  display: -ms-flexsbox;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: center;
  justify-content: center;
}

.flexs > div[data-collection-filtered-content] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexsbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flexb > div[data-collection-filtered-content] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexsbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex > div[data-collection-archive-content] {
  display: -webkit-box;
  display: -ms-flexsbox;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flexc > div[data-collection-archive-content] {
  display: -webkit-box;
  display: -ms-flexsbox;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: center;
  justify-content: center;
}

.flexs > div[data-collection-archive-content] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexsbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flexb > div[data-collection-archive-content] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexsbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

[data-element-id] [class*="heightLine"] {
  height: auto !important;
}

[data-element-id] .imgalt {
  position: relative;
  color: orange;
  font-size: 14px;
  background: #333;
  padding: 2px 4px;
  text-align: left;
  max-height: 70px;
  overflow: hidden;
  z-index: 50;
}

[data-element-id] .altcolor {
  color: red;
}

[data-common-area] {
  position: relative;
}

[data-common-area]:hover:before {
  content: "共通要素です。";
  position: absolute !important;
  width: 100%;
  min-width: 200px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: 100%;
  color: #FDC44F;
  font-weight: bold;
  background: #555;
  padding: 5px;
  font-size: 12px;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a[data-href="#"] {
  border: solid red 5px !important;
  display: block;
  position: relative !important;
  opacity: 1;
}

a[data-href="#"]:hover:before {
  content: "リンクが設定されていない可能性があります。";
  position: absolute !important;
  width: 100%;
  min-width: 200px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: 100%;
  color: red;
  font-weight: bold;
  background: #555;
  padding: 5px;
  font-size: 12px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a[data-href*="."] {
  border: solid red 5px !important;
  display: block;
  position: relative !important;
  opacity: 1;
}

a[data-href*="."]:hover:before {
  content: "外部リンクの可能性があります。リンクが飛ばない可能性がありますので注意してください。";
  position: absolute !important;
  width: 100%;
  min-width: 200px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: 100%;
  color: red;
  font-weight: bold;
  background: #555;
  padding: 5px;
  font-size: 12px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

[data-element-id][data-uk-slideshow]:hover:before {
  content: "※こちらは見たまま編集ができません。①画像をダブルクリック、②変更（歯車マーク）、③スライドショーから編集してください。";
  display: block;
  line-height: 1.8;
  font-weight: bold;
  color: red;
  clear: both;
  background: #4c4c4c;
  padding: 5px;
  text-align: left;
  position: absolute;
  letter-spacing: 1px;
  z-index: 1000;
  font-size: 12px;
  width: 100%;
}

[data-collection-list-content]:hover:before {
  content: "※こちらは見たまま編集ができません。①ページのどこかをダブルクリック、②左下（もしくは左上）のCMSロゴをクリック、③画面右上のメニュー（三本線マーク）から「カスタムコンテンツ管理」をクリック、④編集したいカスタムコンテンツの一覧（三本線マーク）から記事投稿・記事編集ができます。";
  display: block;
  line-height: 1.8;
  font-weight: bold;
  color: red;
  clear: both;
  background: #4c4c4c;
  padding: 5px;
  text-align: left;
  position: absolute;
  letter-spacing: 1px;
  z-index: 1000;
  font-size: 12px;
  width: 100%;
}

/*カラム*/

/* ##### pcで6分割のグリッド ##### */
.gr666,
.gr665,
.gr664,
.gr663,
.gr662,
.gr661,
.gr655,
.gr654,
.gr653,
.gr652,
.gr651,
.gr644,
.gr643,
.gr642,
.gr641,
.gr633,
.gr632,
.gr631,
.gr622,
.gr621,
.gr611 {
  width: 12%;
  margin: 0 2% 6% 2%;
}

/* ##### pcで5分割のグリッド ##### */
.gr555,
.gr554,
.gr553,
.gr552,
.gr551,
.gr544,
.gr543,
.gr542,
.gr541,
.gr533,
.gr532,
.gr531,
.gr522,
.gr521,
.gr511 {
  width: 16%;
  margin: 0 2% 6% 2%;
}

/* ##### pcで4分割のグリッド ##### */
.gr444,
.gr443,
.gr442,
.gr441,
.gr433,
.gr432,
.gr431,
.gr422,
.gr421,
.gr411 {
  width: 21%;
  margin: 0 2% 6% 2%;
}

/* ##### pcで3分割のグリッド ##### */
.gr333,
.gr332,
.gr331,
.gr322,
.gr321,
.gr311 {
  width: 29%;
  margin: 0 2% 6% 2%;
}

/* ##### pcで2分割のグリッド ##### */
.gr222,
.gr221,
.gr211 {
  width: 46%;
  margin: 0 2% 6% 2%;
}

.w100 {
  width: 100%;
}

.w70 {
  width: 70%;
}

.w65 {
  width: 65%;
}

.w60 {
  width: 60%;
}

.w55 {
  width: 55%;
}

.w50 {
  width: 50%;
}

.w48 {
  width: 48%;
}

.w45 {
  width: 45%;
}

.w40 {
  width: 40%;
}

.w35 {
  width: 35%;
}

.w30 {
  width: 30%;
}

.w25 {
  width: 25%;
}


@media only screen and (max-width: 1024px) {
  .fs20 {
    font-size: 18px;
  }

  .fs22 {
    font-size: 20px;
  }

  .fs24 {
    font-size: 20px;
  }

  .fs26 {
    font-size: 22px;
  }

  .fs28 {
    font-size: 22px;
  }

  .fs30 {
    font-size: 24px;
  }

  .fs32 {
    font-size: 24px;
  }

  .fs34 {
    font-size: 26px;
  }

  .fs36 {
    font-size: 26px;
  }

  .fs38 {
    font-size: 28px;
  }

  .fs40 {
    font-size: 28px;
  }

  .fs42 {
    font-size: 30px;
  }

  .fs44 {
    font-size: 30px;
  }

  .fs46 {
    font-size: 32px;
  }

  a[href*="tel"] {
    pointer-events: initial !important;
  }

  .flex {
    margin: 0 auto;
  }

  .flexc {
    margin: 0 auto;
  }

  .flexs {
    margin: 0 auto;
  }

  .flexb {
    /*        max-width: 768px;*/
    margin: 0 auto;
  }

  /* カラム */

  /* ##### タブレッドで5分割のグリッド ##### */
  .gr655,
  .gr654,
  .gr653,
  .gr652,
  .gr651 {
    width: 16%;
  }

  /* ##### タブレッドで4分割のグリッド ##### */
  .gr644,
  .gr643,
  .gr642,
  .gr641,
  .gr544,
  .gr543,
  .gr542,
  .gr541 {
    width: 21%;
  }

  /* ##### タブレッドで3分割のグリッド ##### */
  .gr633,
  .gr632,
  .gr631,
  .gr533,
  .gr532,
  .gr531,
  .gr433,
  .gr432,
  .gr431 {
    width: 29%;
  }

  /* ##### タブレッドで2分割のグリッド ##### */
  .gr622,
  .gr621,
  .gr522,
  .gr521,
  .gr422,
  .gr421,
  .gr322,
  .gr321 {
    width: 46%;
  }

  /* ##### タブレッドで1分割のグリッド ##### */
  .gr611,
  .gr511,
  .gr411,
  .gr311,
  .gr211 {
    width: 96%;
  }
}

@media only screen and (max-width: 599px) {

  .fs18 {
    font-size: 16px;
  }

  .fs20 {
    font-size: 18px;
  }

  .fs22 {
    font-size: 18px;
  }

  .fs24 {
    font-size: 20px;
  }

  .fs26 {
    font-size: 20px;
  }

  .fs28 {
    font-size: 22px;
  }

  .fs30 {
    font-size: 22px;
  }

  .fs32 {
    font-size: 24px;
  }

  .fs34 {
    font-size: 24px;
  }

  .fs36 {
    font-size: 26px;
  }

  .fs38 {
    font-size: 26px;
  }

  .fs40 {
    font-size: 28px;
  }

  .fs42 {
    font-size: 28px;
  }

  .fs44 {
    font-size: 30px;
  }

  .fs46 {
    font-size: 32px;
  }

  .flex {}

  .flexc {}

  .flexs {}

  .flexb {
    /*        max-width: 450px;*/
  }

  /* カラム */

  /* ##### スマホで5分割のグリッド ##### */
  .gr665 {
    width: 16%;
  }

  /* ##### スマホで4分割のグリッド ##### */
  .gr664,
  .gr654,
  .gr554 {
    width: 21%;
  }

  /* ##### スマホで3分割のグリッド ##### */
  .gr663,
  .gr653,
  .gr643,
  .gr633,
  .gr553,
  .gr543,
  .gr533,
  .gr443,
  .gr433 {
    width: 29%;
  }

  /* ##### スマホで2分割のグリッド ##### */
  .gr662,
  .gr652,
  .gr642,
  .gr632,
  .gr622,
  .gr552,
  .gr542,
  .gr532,
  .gr522,
  .gr442,
  .gr432,
  .gr422,
  .gr332,
  .gr322 {
    width: 46%;
  }

  /* ##### スマホで1分割のグリッド ##### */
  .gr661,
  .gr651,
  .gr641,
  .gr631,
  .gr621,
  .gr611,
  .gr551,
  .gr541,
  .gr531,
  .gr521,
  .gr511,
  .gr441,
  .gr431,
  .gr421,
  .gr411,
  .gr331,
  .gr321,
  .gr311,
  .gr221,
  .gr211 {
    width: 96%;
  }

  .w70 {
    width: 100%;
    margin: 2% 0;
  }

  .w65 {
    width: 100%;
    margin: 2% 0;
  }

  .w60 {
    width: 100%;
    margin: 2% 0;
  }

  .w55 {
    width: 100%;
    margin: 2% 0;
  }

  .w50 {
    width: 100%;
    margin: 2% 0;
  }

  .w48 {
    width: 100%;
    margin: 2% 0;
  }

  .w45 {
    width: 100%;
    margin: 2% 0;
  }

  .w40 {
    width: 100%;
    margin: 2% 0;
  }

  .w35 {
    width: 100%;
    margin: 2% 0;
  }

  .w30 {
    width: 100%;
    margin: 2% 0;
  }

  .w25 {
    width: 100%;
    margin: 2% 0;
  }
}

/*左右の要素を入れ替え*/
.change {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/*object-fit(cover)IE対応*/
.img.-cover img {
  /*IE対策*/
  font-family: "object-fit: cover; object-position: 50% 50%;";
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

/**
アスペクト比固定
*/
/*基本アスペクト
（下に続く比率クラスと合わせて使用）*/
.aspect {
  position: relative;
  display: block;
}
.aspect:before {
  display: block;
  content: "";
}
.aspect img {
  /*IE対策*/
  font-family: "object-fit: cover; object-position: 50% 50%;";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

/*比率40％*/
.aspect.-ratio40:before {
  padding-top: 40%;
}

/*比率50％*/
.aspect.-ratio50:before {
  padding-top: 50%;
}

/*比率65％*/
.aspect.-ratio65:before {
  padding-top: 65%;
}

/*比率75％*/
.aspect.-ratio75:before {
  padding-top: 75%;
}

/*比率85％*/
.aspect.-ratio85:before {
  padding-top: 85%;
}

/*比率100％*/
.aspect.-ratio100:before {
  padding-top: 100%;
}

/*比率110％*/
.aspect.-ratio110:before {
  padding-top: 110%;
}

/*比率135％*/
.aspect.-ratio135:before {
  padding-top: 135%;
}

/*比率175％*/
.aspect.-ratio175:before {
  padding-top: 175%;
}



/* *********************
 *
 *     基本
 *
 ***********************/
header {
	z-index: 100;
	width: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	height: 140px;
	background-color: hsla(0,0%,0%,0.30);
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
}
[data-element-id] header {
  position: relative;
  height: auto;
  background: #fff;
}
[data-element-id] header .drawer {
  position: relative;
  padding-top: 120px;
}
main {
	position: relative;
	/* z-index: 1; */
}
footer {
	position: relative;
	z-index: 1;
	padding-bottom: 80px;
}
section {
	position: relative;
	margin-bottom: 70px;
}
.inner1280 {
	width: 100%;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}
.inner1150 {
	width: 90%;
	max-width: 1150px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}
.inner1000 {
	width: 90%;
	max-width: 1000px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}
.absolute {
	position: absolute;
}
.centering {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
	z-index: 1;
}
.flex_centering {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
			flex-wrap: wrap;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
	-webkit-justify-content: center;
			justify-content: center;
	-webkit-align-items: center;
			align-items: center;
	-webkit-align-content: center;
			align-content: center;
}

.clearfix:after {
    content:"";
    display:block;
    clear:both;
}
.pc_none {
	display: none;
}
.sp_none {
	display: block;
}
.none {
	display: none;
}
.animated {
	opacity: 0;
}
.hideAnchor {
	margin-top: -100px;
	padding-top:100px;
	/*height: 0px;
    /height:1px;
	display: block;
	font-size: 0px;
	outline: none;
	pointer-events: none;
	text-indent: -9999px;
	overflow: hidden;
	cursor: default;*/
}

/* *********************
 *
 *     font   
 *   	"ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
 *		"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, sans-serif;
 *		'Noto Serif', "游明朝体", 'Yu Mincho', YuMincho, serif;
 *		'Noto Sans', "游ゴシック", 'Yu Gothic',YuGothic, sans-serif;
 *
 ***********************/
.mincho {
	font-family: 'Noto Serif', "游明朝体", 'Yu Mincho', YuMincho, serif;	
}
.didot {
	font-family: 'GFS Didot', serif;
}
.adobegaramond {
	font-family: AdobeGaramond, 'Noto Serif', "游明朝体", 'Yu Mincho', YuMincho, serif;
}
.gothic {
	font-family: 'Noto Sans', "游ゴシック", 'Yu Gothic',YuGothic, sans-serif;
}
.futura {
	font-family: 'Nunito Sans', sans-serif;
}
.logo {
	/*font: 5rem/normal Didot;
	letter-spacing: 5px;*/
	max-width: 200px;
	width: 100%;
	height: auto;
	transition: .3s all ease;
}
.tit_content {
	font-size: 90px;
	font-size: 9rem;
	font-family: 'GFS Didot', serif;
	letter-spacing: -5px;
	display: inline-block;
	position: relative;
}
.tit_menu {
	font-size: 40px;
	font-size: 4rem;
	font-family: 'GFS Didot', serif;
	color: #000;
	letter-spacing: 2px;
}

/*TODO::font
.mincho {
	font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
}
.didot {
	font-family: Didot, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
}
.adobegaramond {
	font-family: AdobeGaramond, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
}
.gothic {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, sans-serif;
}
.futura {
	font-family: Futura,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, sans-serif;
}
.logo {
	font: 5rem/normal Didot;
	letter-spacing: 5px;
}
.tit_content {
	font-size: 90px;
	font-size: 9rem;
	font-family: Didot, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	letter-spacing: -5px;
	display: inline-block;
	position: relative;
}
.tit_menu {
	font-size: 40px;
	font-size: 4rem;
	font-family: Didot, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	color: #000;
	letter-spacing: 2px;
}
*/


.tit_sub {
	font-size: 30px;
	font-size: 3rem;
}
.txt {
	line-height: 3.4rem;
}
.txt_xl {
	font-size: 24px;
	font-size: 2.4rem;
}
.txt_l {
	font-size: 18px;
	font-size: 1.8rem;
}
.txt_m {
	font-size: 16px;
	font-size: 1.6rem;
}
.txt_s {
	font-size: 12px;
	font-size: 1.2rem;
}
.txt_xs {
	font-size: 10px;
	font-size: 1rem;
}
.phone {
	color: #fff;
	font-size: 2.4rem;
}
.phone a {
	color: #fff;
	font-size: 2.4rem;
}
.color_b {
	color: #171717;
}
.color_w {
	color: #fff;
}
.color_g {
	color: #b4b6b4;
}
/* *********************
 *
 *     botton
 *
 ***********************/
.btn {
  margin-top: 5%;
}
.btn a{
	background-color: transparent;
	border: 1px solid #fff;
	display: block;
	max-width:400px;
	width: 100%;
	margin:auto;
	padding: 10px 0;
	margin-bottom: 20px;
	color: #fff;
	font-size: 1.4rem;
	transition: .3s;
	cursor: pointer;
	text-align: center;
}
.btn a:hover{
	background-color: #fff;
	color: #1a1a1a;
}

 
.btn_a {
}
.btn_b {
}
.btn_yoyaku{
	display: block;
	text-align: center;
	padding: 10px 0;
	border: 2px solid #fff;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	-webkit-transition: all .3s ease;
			transition: all .3s ease;
	/*position: absolute;
	width: 100%;
	bottom: 0;*/
}
.btn_yoyaku:hover{
	background-color: #fff;
	color: #333;
}
.scroll {
	display: inline-block;
	letter-spacing: 1px;
	position: absolute;
	color: #171717;
	text-align: center;
	font-style: italic;
	border-radius: 50%;
	background-color: #efefef;
	width: 100px;
	padding-right: 20px;
	padding-left: 20px;
	padding-top: 28px;
	padding-bottom: 28px;
	bottom: 2%;
	left: 48%;
	z-index: 1;
}
.scroll::after {
	content: "";
	width: 30%;
	height: 12px;
	margin-top: 10px;
	display: inline-block;
	position: relative;
	background-image: url(/import/tenant_1/gold-beauty.jp/assets/img/icon/arrow/arrow_down.svg);
	background-position: center top;
	background-size: cover;
	background-repeat: no-repeat;
	animation: vertical .5s ease-in 0s infinite alternate;
}

@keyframes vertical {
	0% {top: 0px;}
	100% {top: 6px;}
}

/* *********************
 *
 *     flexbox
 *
 ***********************/
.flexbox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
			flex-wrap: wrap;
	-webkit-box-pack: justify;
		-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
			justify-content: space-between;
	-webkit-align-items: flex-start;
			align-items: flex-start;
	-webkit-align-content: center;
			align-content: center;
}
/* 2カラムの場合*/
.flexbox.clm2::after{
  content:"";
  display: block;
  width:48%;
}
.flexbox.clm2 li {
	width: 48%;
	margin-bottom: 40px;
}
/* 3カラムの場合*/
.flexbox.clm3::after{
	content: "";
	display: block;
	width: 30%;
}
.flexbox.clm3 li {
	width: 30%;
	margin-bottom: 30px;
}
/* 4カラムの場合 */
.flexbox.clm4::before{
	content: "";
	display: block;
	width: 23%;
	order: 1;
}
.flexbox.clm4::after{
	content: "";
	display: block;
	width: 23%;
}
.flexbox.clm4 li {
	width: 23%;
	margin-bottom: 20px;
}
header .wrapper {
	position: relative;
}
header .logo {
	display: inline-block;
	position: absolute;
	top: 30px;
	top: 20px;
	left: 5%;
	max-width: 160px;
}
@media all and (-ms-high-contrast: none){
  header .logo {
    height: 70px;
  }
}
header .logo .a{
	fill:#fff;
	transition: .3s;
}
header .logo a {
	color: #ffffff;
	line-height: 40px;
}
.sns.header {
	position: absolute;
	top: 40px;
	right: 80px;
}
.header .telephone {
  position: relative;
  top: -5px;
}
.header .telephone .tel a {
  font-size: 24px;
}
.sns.header .reserve{
	background-color: #333;
	padding: 0px 10px;
	border-radius: 10px;
}
.sns.header .reserve.gold{
	background-color: #c5a062;
}
.sns.header .futura {
	padding-left: 15px;
	-webkit-transition: all .4s ease;
			transition: all .4s ease;
}
.sns {
}
.sns .futura {
	font-size: 10px;
	font-size: 1rem;
	font-weight: bold;
	line-height: normal;
	margin-bottom: 10px;
	color: #EEEEEE;
}
.sns ul {
}
.sns ul li {
	margin-left: 10px;
	margin-right: 10px;
}
.sns ul li a {
	display: inline-block;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
#h_copy {
	color: #A2A2A2;
	position: absolute;
	top: 360px;
	right: -100px;
	font-size: 1rem;
	letter-spacing: 2px;
	transform: rotate(-270deg);
}
#h_nav {
}
#h_nav .flexbox {
	-webkit-box-pack: center;
		-ms-flex-pack: center;
	-webkit-justify-content: center;
			justify-content: center;
}
#h_nav .flexbox li {
}
#h_nav .flexbox li a {
	display: inline-block;
	padding: 1em;
}
#f_box {
	vertical-align: bottom;
	margin-bottom: 30px;
}
#f_box .logo {
	display: inline-block;
	margin-right: 20px;
}
#f_logo {
	width: 30%;
	max-width: 180px;
	height: auto;
	display: inline-block;
	margin-right: 20px;
}
.sns.footer  {
	width: 230px;
	height: auto;
	color: #fff;
	display: inline-block;
	vertical-align: bottom;
}
.sns.footer .futura {
	float: left;
	margin-right: 10px;
}
.sns.footer .flexbox {
	float: left;
}
.sns.footer .flexbox li {
}
footer .phone {
	margin-left: 10px;
	vertical-align: bottom;

}
footer .tel a {
	margin-left: 10px;
	vertical-align: bottom;
    color: #fff;
	font-size: 2.4rem;
}
#f_copy {
	margin-top: 60px;
	font-size: 1rem;
	letter-spacing: 2px;
}
#instagram {
	display: block;
	width: 100%;
}
#instagram li {
	float: left;
	width: 23%;
	height: auto;
	padding-top: 23%;
	position: relative;
	margin-left: 1%;
	margin-right: 1%;
	margin-bottom: 1%;
}
#instagram li a {
	width: 100%;
	margin-bottom: 10px;
	height: 100%;
	display: block;
	top: 0px;
	left: 0px;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
}
footer .logo svg{
	max-width: 200px;
	height: auto;
}

#contactBox{
	display: none;
}
#contactBox{
	text-align: center;
	padding: 0px;
	width: 100%;
	margin-bottom: 0;
	/*border: 4px solid #E60012;*/
	/*border-radius: 20px 20px 0 0;*/
}
#contactBox::before{
	content: none;
}
#contactBox dt,
#contactBox dd{
	display: inline-block;
}
#contactBox .sns {
  margin-bottom: 10px;
}
#contactBox .insta {
  margin-left: auto;
}
#contactBox .facebook {
  margin: 0 15px;
}
.contactBox ul{
	margin-top: 10px;
}
.contactBox ul li{
	text-align: center;
	background-color: rgba(69,69,69,0.70);
	margin-bottom: 0 !important;
	width: 33.333% !important;
	height: 60px;
}
.contactBox ul li.bg-line{
  background: #00C300;
}
.contactBox ul li{
	/*padding-top: 30%;*/
	/*border-radius: 50%;*/
	position: relative;
	/*border-bottom: 1px solid #fff;*/
}
.contactBox ul li:first-child{
	/*border-right: 1px solid #fff;*/
}
.contactBox ul li a{
	color: #fff;
	position:absolute;
	top:50%;
	left:50%;
	-webkit-transform:translate(-50%,-50%);
	transform:translate(-50%,-50%);
	width: 100%;
}
.contactBox ul li a::before{
	display: block;
	font-family :"Font Awesome 5 Free";
	font-weight: 900;
	color: #fff;
	font-size: 22px;
	margin-bottom: 5px;
}
/* .contactBox ul li:nth-child(1) a::before{
  content: "\f274";
} */
.contactBox ul li:nth-child(1) a::after{
	content: "";
	position: absolute;
	width: 1px;
	height: 100%;
	/* border-right: 1px solid #fff; */
	right: 0;
	top: 0;
}
.contactBox ul li:nth-child(2) a::before{
	content: url(/upload/tenant_1/4b07a23504e5d1fadb467093a9534316.png);
	margin-bottom: 0;
}

.contactBox ul li:nth-child(3) a::before{
	content: "\f095";
}
[data-element-id] #contactBox {
  display: block;
  position: relative;
  margin-bottom: 50px;
}

#topconcept {
	text-align: center;
	padding-top: 150px;
	padding-bottom: 0px;
	margin-bottom: 0px;
}
#topconcept small {
	display: inline-block;
	letter-spacing: 3px;
	margin-bottom: 40px;
	color: #CCCCCC;
}
#topconcept .txt {
    margin-bottom: 30px;
}

@media screen and (max-width:480px){
  #topconcept {
  	padding-top: 40px;
  	padding-bottom: 80px;
  	margin-bottom: 0px;
  }
  #topconcept small {
  	margin-bottom: 30px;
  }
  #topconcept .txt {
  	text-align: justify;
  	text-justify: inter-ideograph;
  }
}

/* footer ***********/

/* header.cc 変化 */
header.cc {
	background-color: transparent;
}
[data-element-id] header.cc {
  background-color: #fff;
}
header.cc .sns.header,
header.cc .logo,
header.cc #toggle_button 
{
	top: 30px;
}
header.cc .sns.header{
	top: 40px;
}
header.cc .telephone {
  color: #333;
}
header.cc .telephone .tel a {
  color: #333;
}
header.cc .sns.header .reserve{
	background-color: #333;
	padding: 0px 10px;
	border-radius: 10px;
}
header.cc .sns.header .reserve.gold{
	background-color: #c5a062;
}
header.cc .sns.header .futura {
	color: #171717;
}
header.cc .logo{
	max-width: 180px;
}
@media all and (-ms-high-contrast: none){
  header.cc .logo{
  	height: 70px;
  }
}
header.cc .logo a {
	color: #171717;
	font-size: 8rem;
}
header.cc .toggle span {
	background-color: #171717;
}
header.cc #nav_typeB a{
	color: #171717;
}
header.cc .logo .a{
	fill:#000;
}
/* header.cc 色変化 */

#topWrp{
	width: 100%;
	height: auto;
	padding-top: 0px;
}
#topBox{
	width: 100%;
	height: 100%;
	overflow: hidden;
}
#top{
	width: 100%;
	height: 100%;
	position: relative;
	padding-top: 0px;
	padding-bottom: 0px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	margin-bottom: 0px;
	overflow: visible;
}
/**aniation**/
.fadeInRotate{
	-webkit-animation-name: fadeInRotate;
	animation-name: fadeInRotate;
	-webkit-animation-duration: 1.3s;
	animation-duration: 1.3s;
	-webkit-animation-timing-function: ease;
	animation-timing-function: ease;
}
@keyframes fadeInRotate {
  0% {
    opacity: 0;
	-webkit-transform: rotate(-5deg) scale(1.2);
	transform: rotate(-5deg) scale(1.2);
  }
  100% {
    opacity: 1;
	-webkit-transform: rotate(0deg) scale(1.0);
	transform: rotate(0deg) scale(1.0);
  }
}
/**aniation-end**/
#topWrp h1{
	font-size: 9rem;
	position: absolute;
	left: 3%;
	top: 90%;
	z-index: 1;
}

#nav_typeB{
	width: 80%;
	position: absolute;
	top: 90px;
	left: 5%;
}
[data-element-id] #nav_typeB {
  display: block;
}
#nav_typeB a{
	color: #fff;
	font-weight: bold;
}
/*********************

	viewmore

*********************/
.img_viewmore {
	/*max-width: 250px;*/
	margin-left: auto;
	margin-right: auto;
	position: relative;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
	/*background-color: #444444;*/
	z-index: 0;
}
.img_viewmore img {
	/* position: relative; */
	position: absolute;
	z-index: 1;
	opacity: 1;
	-webkit-transition: all .3s ease;
			transition: all .3s ease;
}
.img_viewmore:hover img {
	opacity: 0.4;
}
.img_viewmore::before {
	content: "+";
	color: #fff;
	font: 40px "Titillium Web", sans-serif;
	font-weight: 200;
	position: absolute;
	top: 45%;
	left: 50%;
	-webkit-transition: all .2s ease .2s;
			transition: all .2s ease .2s;
	-webkit-transform: translate(-50%,-50%) rotate(45deg);
			transform: translate(-50%,-50%) rotate(45deg);
	opacity: 0;
	z-index: 2;
}
.img_viewmore::after {
	content: "MORE";
	color: #fff;
	font-family: 'Nunito Sans', sans-serif;
	position: absolute;
	top: 60%;
	left: 50%;
	-webkit-transition: all .3s ease;
			transition: all .3s ease;
	-webkit-transform: translate(-50%,-50%);
			transform: translate(-50%,-50%);
	opacity: 0;
	z-index: 2;
}
.img_viewmore:hover::before,
.img_viewmore:hover::after {
	opacity: 1;
	-webkit-transform: translate(-50%,-50%) rotate(0deg);
			transform: translate(-50%,-50%) rotate(0deg);
	
}
.img_viewmore span{
	position: relative;
	display: block;
}
.img_viewmore span::after{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%); /* Safari用 */
			transform: translate(-50%, -50%);
	display: block;
	width: 100%;
	height: 100%;
	border: solid 1px #fff;
	opacity: 0;
	z-index: 2;
	-webkit-transition: all .3s ease;
			transition: all .3s ease;
	overflow: hidden;
}
.img_viewmore:hover span::after{
	opacity: 1;
	width: 84%;
	height: 84%;
}
/****************/
.pagenav li{
	padding: 0 6px;
}
.pagenav li.active{
	background-color: #454545;
}

.paginator{
	text-align: center;
}

.paginator .no{
	display: inline-block;
	padding: 0 6px;
}

.paginator .no.now{
	background-color: #454545;
}

.paginator .next a,.paginator .prev a{
	visibility: hidden;
	position: relative;
}
.paginator .next a:after{
	visibility: visible;
	content:'→';
	position: absolute;
	left:0;
	top:0;
}
.paginator .prev a:after{
	visibility: visible;
	content:'←';
	position: absolute;
	right:0;
	top:0;
}


@media screen and (max-width:768px){
body {
	line-height: 2.4rem;
}
header {
}
footer {
	text-align: center;
}
/*.inner1150,
.inner1000 {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}*/
section {
}
.tit_menu {
	font-size: 2.4rem;
}
.pc_none {
	display: block;
}
.sp_none {
	display: none;
}
.tit_content {
	font-size: 7.5rem;
	letter-spacing: -4px;
}
.logo {
	font-size: 7rem;
}
.txt {
	line-height: 3rem;
}
.scroll {
	left: 45%;
}
}

@media screen and (max-width:480px){
.inner1280 {
	width: 90%;
}
.logo {
	font-size: 4rem;
	width: 35%;
}
header {
	height: 70px;
}
#topWrp{
	padding-top: 70px;
	margin-bottom: 50px;
	}
#topWrp h1{
	font-size: 5rem;
}
.tit_content {
	font-size: 5rem;
	letter-spacing: -3px;
	text-align: center;
    display: block;
    margin-bottom: 10px;
}
.tit_sub {
	font-size: 2rem;
}
.tit_menu {
	font-size: 1.8rem;
}
.scroll {
	bottom: -120px;
	left: 40%;
	width: 75px;
	padding-left: 12px;
	padding-right: 12px;
	padding-top: 15px;
	padding-bottom: 15px;
	letter-spacing: 1px;
}
	
header .logo,
header #toggle_button,
header.cc .logo,
header.cc #toggle_button {
	top: 10px !important;
}
#f_box .logo {
	margin-bottom: 20px;
}
.sns.footer {
	width: auto;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
}
footer{
	padding-top: 30px;
	padding-bottom: 100px;
}
footer .phone {
	vertical-align: middle;
}
footer .tel a {
	vertical-align: middle;
}
footer .logo{
	width: 100%;
}
footer .logo img{
	width: 60%;
}
.flexbox.clm3 li,
.flexbox.clm4 li{
	width: 48%;
}
/**********************
#contactBox
**********************/
/* #contactBox{
  text-align: center;
  padding: 0px;
  width: 100%;
  margin-bottom: 0;
  border: 4px solid #E60012;
  border-radius: 20px 20px 0 0;
}
#contactBox::before{
  content: none;
}
#contactBox dt,
#contactBox dd{
  display: inline-block;
}
#contactBox ul{
  margin-top: 10px;
}
.contactBox ul li{
  text-align: center;
  background-color: rgba(69,69,69,0.70);
  margin-bottom: 0;
  width: 30%;
  width: 50%;
  height: 60px;

}
.contactBox ul li{
  padding-top: 30%;
  border-radius: 50%;
  position: relative;
  border-bottom: 1px solid #fff;
}
.contactBox ul li:first-child{
  border-right: 1px solid #fff;
}
.contactBox ul li a{
  color: #fff;
  position:absolute;
  top:50%;
  left:50%;
  -webkit-transform:translate(-50%,-50%);
  transform:translate(-50%,-50%);
  width: 100%;
}
.contactBox ul li a::before{
  display: block;
  font-family :"Font Awesome 5 Free";
  font-weight: 900;
  color: #fff;
  font-size: 22px;
  margin-bottom: 5px;
}
.contactBox ul li:nth-child(1) a::before{
  content: "\f274";
}
.contactBox ul li:nth-child(1) a::after{
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  border-right: 1px solid #fff;
  right: 0;
  top: 0;
}
.contactBox ul li:nth-child(2) a::before{
  content: "\f095";
} */
main{
	/*padding-bottom: 60px;*/
}
}

#top1{
	width: 100%;
	height: 100%;
	position: relative;
	padding-top: 0px;
	padding-bottom: 0px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	margin-bottom: 0px;
	overflow: visible;
}
#topBox1{
	width: 100%;
	height: 100%;
	overflow: hidden;
}

@media screen and (max-width:480px){
  #topWrp1{
	width: 100%;
	padding-top: 70px;
}
  #topWrp1 h1{
	font-size: 5rem;
	margin-top: 20px;
}
}

/*2022/08/10*/

.top-mv {
  width: 1000px;
  margin: auto;
}

.top-mv video {
  width: 100%;
}

.f-bnr {
  position: fixed;
    z-index: 999999;
    bottom: 20px;
    right: 20px;
    background: #00C300;
    border-radius: 20px;
    width: 185px;
}
.f-bnr a {
  display: block;
  width: 100%;
  padding: 20px;
}
.f-bnr a .f-txt {
  font-size: 14px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 5px;
}
.f-bnr a .f-img {
  width: 100%;
}
.f-bnr a .f-img img {
  width: 100%;
}

@media screen and (max-width:1045px){
  .top-mv {
    width: 100%;
  }
  .f-bnr {
    width: 160px;
  }
  .f-bnr a {
    padding: 10px;
  }
  .f-bnr a .f-txt {
    font-size: 12px;
  }
}

@media screen and (max-width:599px){
  .f-bnr {
    display: none;
  }
}


.aprilineset{
  display: flex;
  margin: auto;
  width: 52%;
}

.f-bnr {
    position: unset;
    width: 228px;
}

.footertenpo {
    width: 46%;
}

.footer01{
  display: flex;
  max-width: 1000px;
  margin: auto;
}

.koshiki02 {
    width: 235px !important;
    margin-right: 15px;
}

.f-bnr a {
    border-radius: 20px;
}

.apliqrimg{
  width: 188px !important;
   margin: 22px 0 0 4px !important;
}

@media screen and (max-width:599px){
.aprilineset {
    display: none;
  
}
    
    
  .footertenpo {
    width: 100%;
}  
}

.staff-block{
  display: block;
  width: 55%;
}

.staff-flex{
  display: flex;
}

.youtube-a{
  border: 1px solid;
    padding: 20px 15px 0px;
    border-radius: 10px;
    border: 1px solid;
    height: 60px;
    padding: 20px 15px 0px;
    border-radius: 10px;
    background: #6f6767;
    width: 170px;
}

.youtube-btn{
  font-family: fantasy;
    font-size: 16px;
    display: flex;
}

.youtube-icon{
  width: 30px;
  margin-right: 10px;
  margin-top: -5px;
}

.btn-flex{
  display: flex;
}


@media only screen and (max-width: 1024px) {
.btn-flex {
    display: flex;
    margin-top: 10px;
}
}


@media screen and (max-width:599px){
  .staff-flex {
    display: block;
}

.staff-block {
    margin-bottom: 30px;
    display: block;
    width: 100%;
}

.btn-flex {
    display: ruby;
    margin: auto;
    width: 200px;
}
}
