@charset "utf-8";
body {
  min-width: 320px;
  font-family: "MS Serif", "New York", serif;
  color: rgba(205, 190, 130, 1.00);
  margin-left: auto;
  margin-right: auto;
  font-size: 1.2rem;
  overflow: hidden;
  background-color: rgba(20, 16, 16, 1.00);
}
main {
  margin-top: 80px;
}
.br_none {
  display: none;
}
/*========= LoadingのためのCSS ===============*/
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  text-align: center;
  color: #fff;
  background-color: hsla(0, 7%, 22%, 1.00);
}
/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 260px;
}
/* fadeUpをするアイコンの動き */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*========= レイアウトのためのCSS ===============*/
#container {
  width: 100%;
  height: 100vh;
  background: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
a {
  color: #FFFFFF;
}
a:hover {
  text-decoration: none;
}
/*========= スクロール途中からヘッダーの高さが小さくなるためのCSS ===============*/
#header {
  /*はじめの高さを設定*/
  height: 80px;
  width: 100%;
  /*以下はレイアウトのためのCSS*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(23, 4, 4, 1.00);
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-left: auto;
  margin-right: auto;
  position: fixed;
  overflow: hidden;
  z-index: 996;
}
.logo {
  left: auto;
  max-width: 100%;
  height: auto;
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-170px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
p {
  margin-top: 20px;
}
.btn {
  display: none;
}
#g-navi {
  list-style: none;
  display: flex;
  justify-content: center;
}
#g-navi li {
  border-right: 0.5px dashed rgba(255, 255, 255, 0.48);
}
#g-navi li:last-child {
  border: none;
}
#g-navi li a {
  display: block;
  text-decoration: none;
  color: #A29680;
  padding-right: 25px;
  padding-left: 25px;
  transition: all 0.3s;
  font-size: 1em;
}
#g-navi li.current a, nav ul li a:hover {
  color: #fff;
}
/*TOP*/
.top_theme {
  will-change: animation;
  animation: bgchange 30s ease infinite;
  background-position: center 0%;
  background-size: cover;
  height: 850px;
  width: 100%;
  text-align: center;
  padding-top: 20%;
}
@keyframes bgchange {
  0% {
    background-image: url("../DSC08568.jpg")
  } /*変化させたい色*/
  25% {
    background-image: url("../img/enter_lady.jpg")
  } /*変化させたい色*/
  50% {
    background-image: url("../img/DSC00964.jpg")
  } /*変化させたい色*/
  75% {
    background-image: url("../img/DSC00902.jpg")
  } /*変化させたい色*/
  100% {
    background-image: url("../img/DSC08568.jpg")
  } /*変化させたい色*/
}
.top_theme h2 {
  display: inline-block;
  color: rgba(255, 255, 255, 1.00);
  font-size: 3.3rem;
  width: 100%;
  text-shadow: 2px 2px 2px rgba(128, 91, 92, 1.00);
}
.top_theme ul {
  display: flex;
  list-style-type: none;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  color: rgba(255, 255, 255, 1.00);
  font-weight: bold;
  margin-top: 100px;
}
.top_theme ul li {
  padding: 5px 15px;
  margin: 15px auto;
  border-collapse: separate;
}
section {
  padding-top: 30px;
  padding-bottom: 30px;
}
section:nth-child(2n-1) {
  background-color: rgba(23, 4, 4, 1.00);
}
.want_to_description h4 {
  font-size: 1.4em;
  text-align: center;
}
.sub_title {
  text-align: center;
  padding-top: 25px;
  padding-bottom: 25px;
}
.about_glanz_detail {
    display: flex;
    margin-top: 50px;
    margin-bottom: 50px;
}
.about_glanz_detail div {
  padding: 10px 40px;
  color: hsla(0, 0%, 100%, 1.00);
  display: block;
  margin-top: auto;
  margin-bottom: auto;
}
.about_glanz_detail div img {
  width: 400px;
  height: auto;
}
.customers {
  padding-top: 50px;
  margin: 10px;
  padding-bottom: 50px;
  background-color: hsla(0, 0%, 95%, 1.00);
}
.customers .sub_title {
  color: hsla(0, 0%, 0%, 1.00);
  text-shadow: 1px 1px 1px hsla(0, 9%, 73%, 1.00);
  font-size: 1.5em;
}
/*==================================================
スライダーのためのcss
===================================*/
.top_slider { /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 94%;
  margin: 0 auto;
}
.top_slider img {
  width: 60vw; /*スライダー内の画像を60vwにしてレスポンシブ化*/
  height: auto;
}
.top_slider .slick-slide {
  transform: scale(0.8); /*左右の画像のサイズを80%に*/
  transition: all .5s; /*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.5; /*透過50%*/
}
.top_slider .slick-slide.slick-center {
  transform: scale(1); /*中央の画像のサイズだけ等倍に*/
  opacity: 1; /*透過なし*/
}
/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.top-slick-prev, .top-slick-next {
  position: absolute; /*絶対配置にする*/
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #666; /*矢印の色*/
  border-right: 2px solid #666; /*矢印の色*/
  height: 15px;
  width: 15px;
}
.top-slick-prev { /*戻る矢印の位置と形状*/
  left: -1.5%;
  transform: rotate(-135deg);
}
.top-slick-next { /*次へ矢印の位置と形状*/
  right: -1.5%;
  transform: rotate(45deg);
}
/*ドットナビゲーションの設定*/
.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}
.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px; /*ドットボタンのサイズ*/
  height: 8px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc; /*ドットボタンの色*/
}
.slick-dots .slick-active button {
  background: #333; /*ドットボタンの現在地表示の色*/
}
.news {
  background-image: url(url);
  margin: 20px;
  border: 3px solid hsla(0, 0%, 100%, 1.00);
}
.news_description {
    list-style-type: none;
    margin: 40px;
}
.news_description li {
    display: block;
    text-align: center;

}
.news_description a {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
}
.news_description a img {
    width: 100%;
    height: auto;
}

.news_article {
  width: 80%;
  max-width: 1000px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  color: hsla(0, 0%, 100%, 1.00);
  margin-bottom: 200px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.news_title {
  font-size: 1.2em;
  padding-top: 20px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 10px;
  display: block;
  border-bottom: 1px solid hsla(240, 27%, 91%, 1.00);
  margin-top: 100px;
  margin-bottom: 100px;
}
.news_article p {
  text-align: left;
}
.want_to {
  background-position: center 0%;
  background-size: auto auto;
  background-clip: content-box;
}
.want_to_box {
  display: flex;
  width: 100%;
  overflow-y: hidden;
}
.want_to_description {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 20px;
}
.want_to_description h3 {
  letter-spacing: 2px;
  display: inline-block;
  margin-left: 30px;
  color: rgba(255, 255, 255, 1.00);
  font-weight: bold;
  font-size: 2.2em;
}
.bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 0.6s ease 0.2s;
  z-index: -1;
}
.show .bg {
  opacity: 1;
}
.bg._01 {
  background-image: url(../img/want_to_main.jpg);
}
.bg._02 {
  background-image: url(../img/DSC01269.jpg);
}
.bg._03 {
    background-image: url(../img/DSC08686.jpg);
}
.bg._04 {
  background-image: url(../img/DSC00937.jpg);
}
.bg._05 {
    background-image: url(../img/DSC08598.jpg);
}
.onebox {
  max-width: 800px;
  margin-top: 0;
  margin-right: auto;
  margin-left: 5%;
  margin-bottom: 0;
  padding: 20px;
  width: 95%;
  background-color: rgba(255, 255, 255, 0.89);
  -webkit-box-shadow: 2px 2px 2px 1px;
  box-shadow: 2px 2px 2px 1px;
}
.want_to_box:nth-child(2n) .onebox {
  margin-left: auto;
  margin-right: 5%;
}
.onebox h4 {
  color: rgba(55, 54, 2, 1.00);
  font-size: 1.8em;
  padding: 15px;
  font-weight: bold;
}
.onebox p {
  text-align: left;
  margin: 0;
  text-shadow: 0px 0px;
  padding: 15px;
  color: rgba(55, 54, 2, 1.00);
}
.contain_box {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 100px;
  text-align: center;
}
.contain_box img {
  width: 100%;
  max-width: 400px;
}
.contain_box a {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  color: rgba(249, 249, 249, 1.00);
  text-decoration: none;
  padding: 20px;
}
.information {
  background-image: url(../img/div_glanz.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: repeat-x;
  background-attachment: fixed;
}
.information a {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  color: rgba(249, 249, 249, 1.00);
  text-decoration: none;
  padding-top: 20px;
  padding-right: 20px;
  padding-left: 20px;
  text-align: center;
}
footer {
  background-color: rgba(90, 90, 90, 1.00);
  background-image: url(../img/GLANZ_mark_logo.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 9999;
}
footer > div {
  display: flex;
}
footer ul {
  display: flex;
  flex-flow: column;
  width: 50%;
  margin-top: 21px;
}
footer ul li {
  display: block;
  padding: 5px;
  justify-content: flex-start;
  margin-left: 150px;
  margin-right: auto;
  list-style-type: none;
}
footer a {
  color: rgba(255, 255, 255, 1.00);
  text-decoration: none;
  font-size: 0.9em;
}
.emotional {
  display: block;
  margin-top: auto;
  margin-right: auto;
  margin-bottom: auto;
  text-align: center;
}
small {
  color: #fff;
  display: block;
  text-align: center;
  padding: 20px;
  font-size: 0.7em;
}
.tab-wrap {
  margin-top: 50px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 150px;
}
/*TOP*/
/*FAQ*/
.tab-label {
  color: rgba(198, 187, 187, 0.91);
  background-color: rgba(110, 103, 103, 0.45);
  font-weight: bold;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
  margin-bottom: -1px;
  padding: 20px .5em;
  border-left: 1px solid rgba(0, 0, 0, .2);
  border-right: 1px solid rgba(0, 0, 0, .2);
  border-bottom: 4px solid rgba(255, 255, 255, 0.20);
  border-top: 1px solid rgba(0, 0, 0, .2);
  cursor: pointer;
  display: block;
  margin-left: auto;
  width: 70%;
  max-width: 1000px;
  margin-right: auto;
}
.tab-label:before {
  content: '▼';
  margin-right: .2em;
  display: inline-block;
  transform: rotate(-90deg);
}
.tab-switch:checked + .tab-label:before {
  transform: rotate(0);
}
.tab-content {
  height: 0;
  padding: 0 15px;
  overflow: hidden;
  opacity: 0;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
  max-width: 1000px;
  background-color: rgba(240, 240, 240, 1.00);
}
/* アクティブなタブ */
.tab-switch:checked + .tab-label {}
.tab-switch:checked + .tab-label + .tab-content {
  height: auto;
  overflow: auto;
  margin-bottom: -1px;
  padding-top: 35px;
  padding-right: 35px;
  padding-left: 35px;
  padding-bottom: 35px;
  opacity: 1;
  transition: .5s;
  border: 1px solid LightGray;
  color: rgba(0, 0, 0, 1.00);
}
/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}
.page_title {
  padding: 30px;
  text-align: center;
  font-size: 1.9rem;
  letter-spacing: 2px;
  display: block;
  margin-top: 180px;
  margin-bottom: 50px;
}
.upper_page img {
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-bottom: 150px;
  margin-top: 100px;
}
/*FAQ*/
.menu {
  display: flex;
  margin-top: 80px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 250px;
  width: 100%;
  flex-wrap: wrap;
}
.menu li {
  width: 45%;
  max-width: 1000px;
  list-style-type: none;
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 20px;
  display: block;
  border-bottom: 2px solid rgba(255, 255, 255, 1.00);
}
.menu li a {
  color: rgba(255, 255, 255, 1.00);
  font-size: 1.3em;
  padding-top: 20px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 20px;
  text-decoration: none;
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.menu_detail h3 {
  text-align: center;
  color: rgba(231, 231, 231, 1.00);
}
.menu_pickup {
  text-align: center;
  font-size: 1.1em;
  margin-top: 10px;
  margin-bottom: 10px;
}
.menu_description {
    position: relative;
    margin-bottom: 150px;
}
.menu_description img {
  max-width: 100%;
  height: auto;
}
.menu_imgbox {
  margin-bottom: 200px;
}
.img {
  position: absolute;
  top: 316px;
  right: 0px;
  width: 1001px;
}
.before_after_img {
  margin-top: 150px;
}
.before_after_img img {
  display: block;
  width: 80%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
  padding-bottom: 30px;
}
.menu_tb {
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    width: 80%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
    color: rgba(255, 255, 255, 1.00);
}
.push_box {
    position: relative;
}

.push_mark {
    width: 120px;
    height: 120px;
    position: absolute;
    top: 60px;
    left: 60px;
    background-color: #B78300;
    border-radius: 60px;
    display: inline-block;
    margin: auto;
    text-align: center;
    color: #FFFFFF;
    font-style: normal;
    font-weight: 900;
    line-height: 120px;
}

.menu_tb tr:last-child {
  border-bottom: solid 1px #ddd;
}
.menu_tb th {
  text-align: center;
  padding: 20px 0;
  border-right: 1px solid #000000;
  border-left: 1px solid #000000;
  width: 155px;
  border-top: 1px solid #ddd;
  background-color: rgba(216, 215, 215, 1.00);
  color: rgba(0, 0, 0, 1.00);
  font-weight: 500;
  font-size: 1.4em;
}
.menu_tb tr:nth-child(2) td {
  font-size: 30px;
}
.menu_tb td {
  text-align: center;
  padding: 20px 0;
  border-right: 1px solid #ddd;
  border-left: solid 1px #ddd;
}
.glanz_tb {
  text-align: center;
  color: rgba(255, 255, 255, 1.00);
  width: 80%;
  max-width: 1000px;
  display: block;
  margin: 80px auto;
}
.glanz_tb tr {
  border-top: 1px solid rgba(255, 255, 255, 1.00);
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 100%;
}
.glanz_tb tr:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 1.00);
}
.glanz_tb th {
  width: 200px;
}
.glanz_tb td {
  text-align: left;
  padding: 20px;
  width: 800px;
}
.access_img {
  display: flex;
}
.access_img img {
  display: block;
  width: 45%;
}
.access_map {
  display: block;
}
.access_map iframe {
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  display: block;
}
.gallery_wrapper {
  margin-bottom: 150px;
}
.gallery {
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 20px;
}
.gallery li img {
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev, .slick-next {
  position: absolute; /*絶対配置にする*/
  z-index: 3;
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #ccc; /*矢印の色*/
  border-right: 2px solid #ccc; /*矢印の色*/
  height: 25px;
  width: 25px;
}
.slick-prev { /*戻る矢印の位置と形状*/
  left: 2.5%;
  transform: rotate(-135deg);
}
.slick-next { /*次へ矢印の位置と形状*/
  right: 2.5%;
  transform: rotate(45deg);
}
.choice-btn {
  margin-left: auto;
  margin-right: auto;
  display: block;
  text-align: center;
}
/*選択するサムネイル画像の設定*/
.choice-btn li {
  cursor: pointer;
  outline: none;
  background: #333;
  width: 12.5% !important;
  height: auto;
  margin-left: auto;
  padding: 5px;
  margin-right: auto;
}
.choice-btn li img {
  opacity: 0.4; /*選択されていないものは透過40%*/
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.choice-btn li.slick-current img {
  opacity: 1; /*選択されているものは透過しない*/
}
.choice-btn .slick-track {
  transform: unset !important;
}
.page-inner {
  color: rgba(255, 255, 255, 1.00);
}
.text-privacypolicy {
  max-width: 1000px;
  padding: 0 20px;
  margin: 20px auto;
  font-size: 1em;
  width: 80%;
}
.h3-privacypolicy {
  font-size: 1.1em;
  font-weight: bold;
  max-width: 1000px;
  padding: 10px 20px;
  margin: 10px auto 0px;
  width: 80%;
  background-color: rgba(255, 255, 255, 0.4);
}
.ul-privacypolicy {
  max-width: 1000px;
  padding: 0 40px;
  margin: 20px auto;
  font-size: 0.9em;
  width: 80%;
  list-style-position: outside;
}
#pagetop {
  position: fixed;
  right: 0;
  bottom: 0;
  padding-right: 25px;
  padding-bottom: 25px;
  z-index: 9998;
  width: 15%;
  height: auto;
}
#pagetop img {
  width: 100%;
  height: auto;
  vertical-align: baseline;
}
.instagram-media {
  width: 95%;
}
.snapwidget-widget {
  pointer-events: none;
  width: 80%;
  max-width: 800px;
  margin-top: 40px;
}
.instagram-media img {
  background-color: #FFFFFF;
  width: 40%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width:1024px) {
  p {
    font-size: 0.9em;
  }
  #header h1 {
    max-width: 30%;
    width: 40%;
  }
  .logo {
    left: auto;
    height: auto;
    margin-left: 10px;
    width: 80%;
    display: block;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: auto;
  }
  /**************** 以下、ハンバーガーボタンのスタイリング ****************/
  .btn {
    padding-top: auto;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: auto;
    outline: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    text-align: inherit;
    font: inherit;
    -webkit-appearance: none;
    appearance: none;
    position: static;
    /* 最前面に */
    z-index: 10;
    /* ボタンの大きさ  */
    width: 48px;
    height: 48px;
    display: block;
    margin-left: auto;
    margin-right: 10px;
  }
  /***** 真ん中のバーガー線 *****/
  .btn-line {
    display: block;
    /* バーガー線の位置基準として設定 */
    position: relative;
    /* 線の長さと高さ */
    width: 100%;
    height: 4px;
    /* バーガー線の色 */
    background-color: #d6d5d5;
    transition: .2s;
  }
  /***** 上下のバーガー線 *****/
  .btn-line::before, .btn-line::after {
    content: "";
    /* 基準線と同じ大きさと色 */
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #d6d5d5;
    transition: .5s;
    right: 0px;
  }
  .btn-line::before {
    /* 上の線の位置 */
    transform: translateY(-16px);
  }
  .btn-line::after {
    /* 下の線の位置 */
    transform: translateY(16px);
  }
  /***** メニューオープン時 *****/
  .btn-line.open {
    /* 真ん中の線を透明に */
    background-color: transparent;
  }
  .btn-line.open::before, .btn-line.open::after {
    content: "";
    background-color: #BDBDBD;
    transition: .2s;
  }
  .btn-line.open::before {
    /* 上の線を傾ける */
    transform: rotate(45deg);
  }
  .btn-line.open::after {
    /* 上の線を傾ける */
    transform: rotate(-45deg);
  }
  /**************** ここまで、ハンバーガーボタンのスタイリング ****************/
  /**************** 以下、メニューのスタイリング ****************/
  #g-navi {
    /* メニューを縦に */
    display: flex;
    flex-direction: column;
    position: fixed;
    /* メニューの位置マイナス指定で画面外に */
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(33, 33, 33, 1.00);
    color: #efefef;
    transition: .5s;
    top: 0px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #g-navi li {
    /* メニューテキスト位置をリスト内中心に */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
  }
  /***** メニューオープン時位置0にして画面内に *****/
  #g-navi.open {
    right: 0;
  }
  footer ul {
    display: flex;
    flex-flow: column;
    width: 100%;
    margin-top: 21px;
  }
  footer ul li {
    display: inline-block;
    padding: 5px;
    justify-content: flex-start;
    margin-top: 0;
    margin-right: 0;
    margin-left: 50px;
    margin-bottom: 0;
    list-style-type: none;
    width: 50%;
  }
  .top_theme h2 {
    font-size: 2rem;
  }
  .top_theme ul {
    margin-left: auto;
    margin-right: auto;
    margin-top: 200px;
    width: 100%;
  }
  .top_theme ul li {}
  .top_theme ul li img {
    width: 100%;
    height: auto;
  }
  .news_description {
    margin-top: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
    margin-left: 5px;
  }
  .news_description a datetime {
    width: 20%;
    text-align: center;
    border-left: 2px solid rgba(25, 24, 20, 1.00);
    padding-top: 3px;
    padding-bottom: 3px;
  }
  .news_description a p {
    width: 80%;
  }
  .about_glanz_detail div {
    padding: 15px;
    display: block;
    margin-top: auto;
    margin-bottom: auto;
  }
  .about_glanz_detail div img {
    display: block;
    width: 100%;
  }
  .want_to_description h3 {
    display: inline-block;
    margin-left: 30px;
    font-size: 1.8em;
  }
  .want_to_description h4 {
    font-size: 1.4em;
    text-align: center;
  }
  #reservation div {
    margin-right: auto;
    margin-left: auto;
    display: block;
  }
  .contain_box {
    display: block;
  }
  .contain_box a {
    margin-left: auto;
    margin-right: auto;
    color: rgba(249, 249, 249, 1.00);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.00);
    padding: 0;
    text-align: center;
  }
  .upper_page img {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 100px;
    margin-top: 80px;
  }
  .tab-wrap {
    margin-top: 0px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 150px;
    font-size: 0.9em;
  }
  .tab-label {
    width: 90%;
  }
  .tab-content {
    width: 90%;
  }
  .glanz_tb {
    text-align: center;
    color: rgba(255, 255, 255, 1.00);
    width: 98%;
    display: block;
    margin: 50px auto;
    font-size: 0.9em;
  }
  .glanz_tb th {
    width: 25%;
  }
  .glanz_tb td {
    text-align: left;
    padding: 20px;
  }
  .access_map iframe {
    margin-left: auto;
    margin-right: auto;
    padding: 30px;
    display: block;
    width: 100%;
    height: 500px;
  }
  .gallery li img {
    margin-left: auto;
    margin-right: auto;
    width: 85%;
  }
  /*選択するサムネイル画像の設定*/
  .choice-btn li {
    cursor: pointer;
    outline: none;
    background: #333;
    width: 25% !important;
    height: auto;
    margin-left: auto;
    padding: 5px;
    margin-right: auto;
  }
  /*FAQ*/
  .menu {
    display: block;
    margin: 80px auto;
    width: 100%;
    flex-wrap: wrap;
  }
  .menu_description {
    position: relative;
    margin-bottom: 80px;
  }
  .menu li {
    width: 80%;
    max-width: 800px;
    list-style-type: none;
    margin: 0 auto;
    display: block;
    border-bottom: 2px solid rgba(255, 255, 255, 1.00);
    padding-top: 10px;
  }
  .menu li a {
    color: rgba(255, 255, 255, 1.00);
    font-size: 1.3em;
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: -10px;
  }
  .page-inner {
    color: rgba(255, 255, 255, 1.00);
    font-size: 0.8em;
  }
  .text-privacypolicy {
    max-width: 1000px;
    padding: 0 20px;
    margin: 20px auto;
    font-size: 1em;
    width: 95%;
  }
  .h3-privacypolicy {
    font-size: 1.1em;
    font-weight: bold;
    max-width: 1000px;
    padding: 10px 20px;
    margin: 10px auto 0px;
    width: 95%;
    background-color: rgba(255, 255, 255, 0.4);
  }
  .ul-privacypolicy {
    padding: 0 40px;
    margin: 20px auto;
    font-size: 0.9em;
    width: 95%;
    list-style-position: outside;
  }
  #pagetop {
    position: fixed;
    right: 0;
    bottom: 0;
    padding-right: 25px;
    padding-bottom: 25px;
    z-index: 9999;
    width: 18%;
    height: auto;
  }
  .news_article {
    width: 95%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    color: hsla(0, 0%, 100%, 1.00);
    margin-bottom: 200px;
  }
  .news_title {
    font-size: 1.2em;
    padding-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
    display: block;
    border-bottom: 1px solid hsla(240, 27%, 91%, 1.00);
    margin-top: 100px;
    margin-bottom: 100px;
  }
  .news_article p {
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
  }
  footer {
    background-image: none;
  }
  footer ul li {
    display: inline-block;
  }
  .snapwidget-widget {
    pointer-events: none;
    width: 85%;
  }
  .before_after_img {
    margin-top: 170px;
  }
}
@keyframes bgchange_narrow {
  0% {
    background-image: url("../img/DSC08578.jpg")
  } /*変化させたい色*/
  25% {
    background-image: url("../img/enter_lady_v.jpg")
  } /*変化させたい色*/
  50% {
    background-image: url("../img/DSC00964_v.jpg")
  } /*変化させたい色*/
  75% {
    background-image: url("../img/DSC00902_v.jpg")
  } /*変化させたい色*/
  100% {
    background-image: url("../img/DSC08578.jpg")
  } /*変化させたい色*/
}
@media (max-width:599px) {
  main {
    margin-top: 60px;
  }
  p {
    font-size: 0.85em;
  }
  #header {
    height: 60px;
  }
  #header h1 {
    max-width: 60%;
    margin-left: -5px;
    margin-right: auto;
    width: 35%;
  }
  .logo {}
  /**************** 以下、ハンバーガーボタンのスタイリング ****************/
  .btn {
    padding-top: auto;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: auto;
    outline: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    text-align: inherit;
    font: inherit;
    -webkit-appearance: none;
    appearance: none;
    position: static;
    /* 最前面に */
    z-index: 10;
    display: block;
    margin-right: -20px;
  }
  /***** 真ん中のバーガー線 *****/
  .btn-line {
    display: block;
    /* バーガー線の位置基準として設定 */
    position: relative;
    /* 線の長さと高さ */
    width: 65%;
    height: 1.5px;
    /* バーガー線の色 */
    background-color: #d6d5d5;
    transition: .2s;
    padding-top: 0px;
    bottom: auto;
    top: auto;
  }
  /***** 上下のバーガー線 *****/
  .btn-line::before {
    /* 基準線と同じ大きさと色 */
    position: absolute;
    transition: .5s;
    right: 0px;
  }
  /***** 上下のバーガー線 *****/
  .btn-line::before {
    /* 基準線と同じ大きさと色 */
    position: absolute;
    transition: .5s;
    right: 0px;
    top: 5px;
  }
  /***** 上下のバーガー線 *****/
  .btn-line::after {
    /* 基準線と同じ大きさと色 */
    position: absolute;
    transition: .5s;
    right: 0px;
    top: -5px;
  }
  .btn-line.open::before, .btn-line.open::after {
    top: 0px;
  }
  footer ul {
    display: block;
    flex-flow: column;
    width: 100%;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 70px;
    padding-top: 30px;
  }
  footer > div {
    display: block;
  }
  footer ul li {
    padding-top: 3px;
    padding-right: 3px;
    padding-left: 3px;
    padding-bottom: 3px;
    justify-content: flex-start;
    margin-top: 0;
    margin-right: auto;
    margin-left: 4%;
    margin-bottom: 0;
    list-style-type: none;
    font-size: 0.8em;
    width: 45%;
    display: inline-block;
  }
  .emotional {
    width: 100%;
  }
  .top_theme {
    will-change: animation;
    animation: bgchange_narrow 20s ease infinite;
    background-size: contain;
  }
  .top_theme h2 {
    font-size: 1.25em;
    margin-top: 80px;
  }
  .top_theme ul {
    width: 100vw;
    display: flex;
    padding: 50px 20px;
    flex-wrap: wrap;
  }
  .top_theme ul li {
    padding: 5px;
    display: block;
    width: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin: 0;
    box-sizing: border-box;
  }
  .top_theme ul img {
    width: auto;
    max-width: 150px;
    margin-left: auto;
    margin-right: auto;
  }
  .br_none {
    display: inherit;
  }
  .news {
    margin: 30px 4px;
  }
  .about_glanz_detail {
    display: block;
  }
  .about_glanz_detail div {
    padding: 15px;
    display: block;
    margin: 5px 10px;
  }
  .customers {
    background-size: 170% auto;
    margin-top: 100px;
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .about_glanz .customers .sub_title {
    font-size: 0.9em;
  }
  .want_to_description h3 {
    display: inline-block;
    margin: 0;
    padding: 1px;
    font-size: 1.1em;
  }
  .onebox {
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
    padding: 8px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.89);
    -webkit-box-shadow: 2px 2px 2px 1px;
    box-shadow: 2px 2px 2px 1px;
  }
  .want_to_box:nth-child(2n) .onebox {
    margin-left: auto;
    margin-right: auto;
  }
  .onebox h4 {
    color: rgba(55, 54, 2, 1.00);
    font-size: 1.2em;
    padding: 10px;
    font-weight: bold;
  }
  .bg {
    background-repeat: no-repeat;
    transition: all 0.6s ease 0.2s;
    z-index: -1;
  }
  .bg._01 {
    background-image: url("../img/glanz_v.jpg");
  }
  .bg._02 {
    background-image: url(../img/DSC01269_v.jpg);
  }
  .bg._03 {
    background-image: url(../img/DSC0131_v.jpg);
  }
  .bg._04 {
    background-image: url("../img/DSC00937_v.jpg");
  }
  .bg._05 {
    background-image: url(../img/DSC08598_v.jpg);
  }
  .contain_box {
    padding: 20px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 30px;
  }
  .instagram-media {
    width: 100%;
  }
  .snapwidget-widget {
    pointer-events: none;
    width: 98%;
    margin-top: 15px;
  }
  .upper_page img {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    margin-top: 25px;
    width: 100%;
    height: auto;
  }
  .tab-wrap {
    margin-top: 0px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 150px;
    font-size: 0.6em;
  }
  /*TOP*/
  /*FAQ*/
  .tab-label {
    color: rgba(198, 187, 187, 0.91);
    background-color: rgba(110, 103, 103, 0.45);
    font-weight: bold;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
    padding: 10px .1em;
    border-left-color: rgba(0, 0, 0, .2);
    border-right-color: rgba(0, 0, 0, .2);
    border-top-color: rgba(0, 0, 0, .2);
    border-style: solid;
    border-width: 1px;
    cursor: pointer;
  }
  .tab-content {
    width: 90%;
  }
  .tab-switch:checked + .tab-label + .tab-content {
    padding-top: 15px;
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 15px;
  }
  .glanz_tb {
    text-align: center;
    color: rgba(255, 255, 255, 1.00);
    width: 95%;
    display: block;
    margin: 50px auto;
    font-size: 0.7em;
  }
  .before_after_img {
    margin-top: 50px;
  }
  .before_after_img img {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .access_img {
    display: block;
  }
  .access_img img {
    display: block;
    width: 80%;
  }
  .access_map iframe {
    padding: 10px;
    height: 350px;
  }
  .glanz_img {
    max-width: 320px;
  }
  /*FAQ*/
  .menu {
    display: block;
    margin: 80px auto;
    width: 100%;
    flex-wrap: wrap;
    font-size: 0.8em;
  }
  .img {
    position: static;
    right: auto;
    margin-top: -40px;
  }
  .menu_menubox {
    margin: 0;
  }
  .menu_imgbox {
    margin-bottom: 20px;
  }
  .menu_tb {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    font-size: 0.6em;
    width: 95%;
  }
  .menu_tb th {
    text-align: center;
    padding: 10px 0;
    border-right: 1px solid #000000;
    border-left: 1px solid #000000;
    border-top: 1px solid #ddd;
    background-color: rgba(216, 215, 215, 1.00);
    color: rgba(0, 0, 0, 1.00);
    font-weight: 500;
    font-size: 1.4em;
  }
  .menu_tb tr:nth-child(2) td {
    font-size: 1.6em;
  }
  .menu_tb td {
    text-align: center;
    padding-top: 10px;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 5px;
    border-right: 1px solid #ddd;
    border-left: solid 1px #ddd;
  }
  .page-inner {
    color: rgba(255, 255, 255, 1.00);
    font-size: 0.7em;
  }
  #pagetop {
    position: fixed;
    right: 0;
    bottom: 0;
    padding-right: 5px;
    padding-bottom: 5px;
    z-index: 9999;
    width: 30%;
    height: auto;
  }
  small {
    font-size: 0.4em;
    padding-top: 40px;
  }
  .news_title {
    font-size: 0.9em;
    padding-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
    display: block;
    border-bottom: 1px solid hsla(240, 27%, 91%, 1.00);
    margin-top: 100px;
    margin-bottom: 100px;
  }
  .news_article p {
    text-align: left;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 0.8em;
  }
  .page_title {
    padding: 30px;
    text-align: center;
    font-size: 1.9rem;
    letter-spacing: 2px;
    display: block;
    margin-top: 120px;
    margin-bottom: 0px;
  }
  .want_to_description {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 85vh;
    padding: 20px;
  }
.push_mark {
    width: 80px;
    height: 80px;
    position: absolute;
    top: -21px;
    left: 10px;
    background-color: #B78300;
    border-radius: 60px;
    text-align: center;
    font-style: normal;
    font-weight: 900;
    line-height: 80px;
    font-size: 0.8em;
}

}
