html {
  font-size: 62.5%;
}


body {
  color: #4d4d4d;
  font-weight: 400;
  font-size: 1.6em;
  font-family: '游ゴシック', 'YuGothic', 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', sans-serif;
}

* {
  box-sizing: border-box;
}

/* --------------------------

基本サイズ10px
3rem = 30px
1.6rem = 16px

--------------------*/

.roboto {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
}

.yumin {
  font-family: YuMincho,
    /* Mac用 */
    'Yu Mincho',
    /* Windows用 */
    serif;
}

.rozha {
  font-family: 'Rozha One', serif;
}

#wrap,
section,
article,
main {
  position: relative;
  width: 100%;
  overflow: hidden;
}

#wrap {
  min-width: 1100px;
}

main {
  display: block;
  padding-bottom: 55px;
}


.inner {
  width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}


img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  color: #4d4d4d;
  transition: all .4s;
}

a:hover {
  opacity: .6;
}

/* --- btn --- */

.btn {
  display: block;
  position: relative;
  padding-right: 54px;
  color: #a38f55;
  font-size: 1.4rem;
}

.btn::before {
  display: block;
  position: absolute;
  right: 0;
  bottom: 5px;
  width: 46px;
  height: 6px;
  background: url(../images/btn_arrow.svg) no-repeat center / contain;
  content: '';
  transition: all .4s;
}

.btn:hover::before {
  right: -10px;
}

/*
.btn::before {
	content:"";
	display: block;
	width:46px;
	height:1px;
	background:#a38f55;
	position:absolute;
	right:0;
	bottom:5px;
	transition:all .4s;
}


.btn::after {
	content:"";
	display:block;
	width:8px;
	height:1px;
	background:#a38f55;
	position:absolute;
	right:0;
	bottom:7px;
	transform:rotate(30deg);
	transition:all .4s;
}

.btn:hover::before,
.btn:hover::after {
	right:-10px;
}
*/
/* --- btn_link --- */

.btn_link {
  display: block;
  position: relative;
  width: 190px;
  height: 40px;
  overflow: hidden;
  border: 1px solid #a38f55;
  border-radius: 20px;
  color: #fff;
  font-size: 1.5rem;
  line-height: 38px;
  text-align: center;
}

.btn_link span {
  position: relative;
  z-index: 3;
  font-size: 1.5rem;
}

.btn_link:hover {
  opacity: 1;
  border: 1px solid #fff;
  color: #a38f55;
}

.btn_link::before {
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  transform: scale(.7);
  width: 100%;
  height: 100%;
  margin: auto;
  border-radius: 20px;
  background: #fff;
  content: '';
  transition: all .4s;
}

.btn_link:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* --- btn frame --- */

.btn_frame {
  border: 1px solid #a38f55;
}

.btn_frame:hover {
  opacity: 1;
  color: #fff;
}

.btn_frame_wrap {
  position: relative;
  transition: all .4s;
}

.btn_frame_wrap::before {
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  transform: scale(.7);
  width: 100%;
  height: 100%;
  margin: auto;
  background: #a38f55;
  content: '';
  transition: all .4s;
}

.btn_frame_wrap:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* --- btn gold --- */

.btn_gold {
  opacity: 1 !important;
  width: 320px;
  height: 50px;
  padding-right: 0;
  overflow: hidden;
  border: 1px solid #a38f55;
  border-radius: 25px;
  background: #a38f55;
  color: #fff;
  line-height: 48px;
  text-align: center;
}

.btn_gold span {
  position: relative;
  z-index: 5;
  color: #fff;
  font-size: 1.6rem;
}

.btn.btn_gold::before {
  top: 0;
  right: 4%;
  bottom: 0;
  z-index: 3;
  margin: auto 0;
  background: url(../images/btn_arrow_white.svg) no-repeat center / contain;
}

.btn_gold::after {
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  transform: scale(.7);
  width: 100%;
  height: 100%;
  margin: auto;
  border-radius: 25px;
  background: #fff;
  content: '';
  transition: all .4s;
}

.btn_gold:hover::before {
  background: url(../images/btn_arrow.svg) no-repeat center /contain;
}

.btn_gold:hover span {
  color: #a38f55;
}

.btn_gold:hover::after {
  opacity: 1;
  transform: scale(1);
}




/* --- flex --- */

.d_flex {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
}

.jus_ce {
  justify-content: center;

  -webkit-justify-content: center;
}

.jus_sb {
  justify-content: space-between;

  -webkit-justify-content: space-between;
}

.jus_ar {
  justify-content: space-around;

  -webkit-justify-content: space-around;
}

.ali_ce {
  align-items: center;

  -webkit-align-items: center;
}

.ali_end {
  align-items: flex-end;

  -webkit-align-items: flex-end;
}

.pc_none,
.snavbtn {
  display: none;
}

.tex_ce {
  text-align: center;
}

/* --- color --- */

.white {
  color: #fff;
}

.gold {
  color: #a38f55;
}

.brown {
  color: #643200;
}

.pink {
  color: #e48266;
}

.red {
  color: red;
}

/* --- fontawesome --- */

.fa-instagram {
  margin-right: .2em;
}

.icon-note{
  width: 18px;
  height: 18px;
  margin-right: .2em;
  line-height: 1;
}

.icon-note img {
  height: 100%;
  object-fit: contain;
}

.flex-note{
  display: flex !important;
  align-items: center;
  justify-content: center;
}


/* ---------  header ------------ */

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  /*min-width:1280px;*/
  min-width: 1282px;
  height: 122px;
}

header.header_white {
  background: #fff;
}

.header_inner {
  padding: 20px 34px 0 34px;
}

.header_logo {
  width: 250px;
}


/* ---------  Nav ------------ */

nav {
  position: relative;
}

.nav_list {
  justify-content: flex-end;
  min-width: 1014px;
  margin-bottom: 20px;

  -webkit-justify-content: flex-end;
}


.nav_list li:nth-of-type(-n+6) a {
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.nav_list li a {
  display: inline-block;
  padding: 0 .6em;
  color: #fff;
  font-size: 1.3rem;
}

.nav_list li a.gold_nav {
  color: #a38f55;
}

.nav_list li.gold_border {
  border-right: 1px solid rgba(163, 143, 85, .2);
}

.nav_list li:last-of-type a {
  display: inline-block;
  width: 148px;
  height: 34px;
  margin-left: .5em;
  padding: 0;
  border-radius: 17px;
  background: #a38f55;
  color: #fff !important;
  font-size: 1.4rem;
  line-height: 34px;
  text-align: center;
}

.nav_list li.gold_border:nth-last-of-type(-n+2) {
  border: none;
}

.nav_list2 {
  align-items: center;
  max-width: 1030px;
  margin: 0 0 0 auto;
}

.nav_list2 li {
  position: relative;
  text-align: center;
}

.nav_list2 li a {
  position: relative;
  padding-bottom: 26px;
  color: #fff;
  font-size: 1.5rem;
}

/* .nav_list2 li:nth-of-type(7) > a:hover {
	opacity: 1;
	cursor: default;
} */

.nav_list2 li a.black_nav {
  color: #383838;
}

.nav_parent::before {
  display: block;
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  width: 8px;
  height: 5px;
  margin: 0 auto;
  background: url(../images/arrow_bottom.svg) no-repeat center / contain;
  content: '';
  transition: all .4s;
}

.nav_parent.black_arrow::before {
  background: url(../images/arrow_bottom_black.svg) no-repeat center / contain;
}

.nav_list2 li:nth-of-type(2):hover .nav_parent::before,
.nav_list2 li:nth-of-type(3):hover .nav_parent::before,
.nav_list2 li:nth-of-type(6):hover .nav_parent::before,
.nav_list2 li:nth-of-type(7):hover .nav_parent::before {
  transform: rotate(-180deg);
}

/*
.nav_child.nav_child_active {
	display:flex;
	display:-webkit-flex;
	transform:scale(1);
}
*/


.nav_child {
  display: flex;
  display: -webkit-flex;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 114px;
  left: 0;
  transform: scale(.9);
  width: 100%;
  min-width: 1280px;
  padding: 46px 0 36px 0;
  background: rgba(0, 0, 0, .7);
  transition: all .4s;
}


.nav_list2 li:nth-of-type(2):hover>.nav_child,
.nav_list2 li:nth-of-type(3):hover>.nav_child,
.nav_list2 li:nth-of-type(6):hover>.nav_child,
.nav_list2 li:nth-of-type(7):hover>.nav_child {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}


.nav_list2 li:nth-of-type(4) .nav_child {
  /*display:flex;
	display:-webkit-flex;*/
}

.nav_child li:not(:last-of-type) {
  margin-right: 40px;
}

.nav_child li a {
  display: inline-block;
  position: relative;
  padding-bottom: .8em;
  color: #fff !important;
  font-size: 1.5rem;
}

.nav_child li a::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #a38f55;
  content: '';
  transition: all .4s;
}

.nav_child li a:hover {
  opacity: 1;
}

.nav_child li a:hover::after {
  width: 100%;
}

/* --- about --- */

.about_inner {
  width: 450px;
  margin: 0 auto;
  padding: 50px 0 60px 0;
}

.about_left {
  width: 50%;
  background: #f0ece3;
}

.about_left h2 {
  height: 40px;
  margin-bottom: 30px;
  border-radius: 20px;
  background: #fff;
  font-size: 1.8rem;
  line-height: 40px;
  text-align: center;
}

.about_left p,
.about_right p {
  margin-bottom: .5em;
  font-size: 1.5rem;
}

.consul_time+p,
.consul_time+p+p {
  padding-left: 5em;
}

.consul_time {
  flex-wrap: wrap;
  margin-bottom: 1em;

  -webkit-flex-wrap: wrap;
}

.about_left .consul_time p,
.tel_num+p {
  font-size: 1.7rem;
}

.about_left .consul_time p:not(:last-of-type) {
  margin-bottom: .5em;
}

.about_left h2:nth-of-type(2) {
  margin-top: 30px;
}

.about_left h2:nth-of-type(2)+p {
  margin-bottom: 0;
  font-size: 1.7rem;
  text-align: center;
}

.about_right {
  width: 50%;
  background: #a38f55;
}

.about_right h2 {
  margin-bottom: 30px;
  font-size: 1.7rem;
  line-height: 1.8em;
  text-align: center;
}

.tel_num {
  margin-bottom: 20px;
  font-weight: 300;
  font-size: 4rem;
  letter-spacing: .5rem;
}

.tel_icon {
  width: 30px;
  margin-right: 1em;
}

.tel_num+p {
  margin-bottom: 1em;
}

.tel_num+p+p {
  margin-bottom: 0;
}

.about_right p {
  text-align: center;
}

.reserve_system {
  margin: 25px auto 0 auto;
  padding: 25px 0 0 0;
  border-top: 1px solid #fff;
}

.about_right .reserve_system p {
  line-height: 1.5em;
  text-align: left;
}

.reserve_system .btn_link {
  width: 150px;
  border: 1px solid #fff;
  background: #fff;
  color: #a38f55;
}

.reserve_system .btn_link:hover {
  color: #fff;
}

.reserve_system .btn_link:hover::before {
  background: #a38f55;
}

/* --- about fin --- */

/* --- google map --- */

.google_map {
  width: 100%;
}

.google_map iframe {
  width: 100%;
  height: 450px;
}

/* --- google map fin --- */

/* --- certification --- */

.certification {
  padding: 60px 0;
}

.cer_left {
  width: 540px;
}

.cer_right {
  width: 505px;
}

.certification p {
  padding-left: 2em;
  font-size: 1.3rem;
  line-height: 1.5em;
}

.cer_left figure {
  width: 84px;
}

.cer_right figure {
  width: 122px;
}

.cer_left p {
  width: 82%;
}

.cer_right p {
  width: 72%;
}

/* --- certificatioon fin --- */

/* --- page top --- */
#page-top {
  display: block;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 10;
  width: 50px;
  height: 50px;
}

/* ---------  footer ------------ */

footer {
  padding: 50px 0 30px 0;
  border-top: 1px solid #a38f55;
}

.footer_nav {
  margin-bottom: 65px;
}

.footer_nav_list_gold li a,
.footer_nav_list li:nth-of-type(1) a {
  color: #a38f55;
  font-weight: bold;
}

.footer_nav_list,
.footer_nav_list {
  font-size: 1.4rem;
}

.footer_nav_list_gold li:not(:last-of-type) {
  margin-bottom: 1.785em;
}

.footer_nav_list li:not(:first-of-type) {
  margin-bottom: 1em;
}

.footer_nav_list li:first-of-type {
  margin-bottom: 1.2em;
}

.footer_nav_list:last-of-type {
  margin-bottom: 0;
}

/* --- footer link --- */

.footer_link {
  /*
	-webkit-flex-direction: column;
    flex-direction: column;
	*/
  margin-bottom: 80px;
}


.footer_link_list a {
  display: block;
  color: #a38f55;
  font-size: 1.3rem;
  text-align: center;
}

.footer_link_list:first-of-type {
  width: 200px;
}

.footer_link_list:first-of-type li {
  border-top: 1px solid #a38f55;
  border-right: 1px solid #a38f55;
  border-left: 1px solid #a38f55;
}

.footer_link_list:first-of-type li a {
  width: 200px;
  height: 35px;
  line-height: 33px;
}

.footer_link_list:first-of-type li:last-of-type {
  border-bottom: 1px solid #a38f55;
}

.footer_link_list.d_flex {
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 450px;

  -webkit-flex-wrap: wrap;
}

.footer_link_list.d_flex li {
  width: 150px;
}

.footer_link_list.d_flex li a {
  display: flex;
  display: -webkit-flex;
  width: 100%;
  height: 70px;
  margin-bottom: -1px;
  border: 1px solid #a38f55;
  line-height: 1.5em;
  text-align: left;
}

.footer_link_list.d_flex li:nth-of-type(3n-1) a {
  margin-left: -1px;
}

.footer_link_list.d_flex li:nth-of-type(3n) a {
  margin-left: -2px;
}

/*
.footer_link_list.d_flex li:nth-last-of-type(-n+3)  a {
	border-bottom:1px solid #a38f55;
}

.footer_link_list.d_flex li:nth-of-type(3n) a,
.footer_link_list.d_flex li:last-of-type a{
	border-right:1px solid #a38f55;
}
*/

.footer_link .btn_frame_wrap {
  width: 260px;
  height: 70px;
  margin: auto 0 0 0;
  border: 1px solid #a38f55;
}

.footer_link .btn_frame_wrap::before {
  z-index: 1;
  background: #fff;
}

.footer_link .btn_frame {
  width: 100%;
  height: 100%;
  padding-right: 0;
  border: none;
  background: #a38f55;
  color: #fff;
  line-height: 68px;
  text-align: center;
}

.footer_link .btn_frame_wrap:hover .btn_frame {
  color: #a38f55;
}

.btn_frame span {
  display: block;
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
}

.footer_link .btn::before {
  top: 0;
  right: 4%;
  bottom: 0;
  z-index: 3;
  margin: auto 0;
  background: url(../images/btn_arrow_white.svg) no-repeat center / contain;
}

.footer_link .btn_frame_wrap:hover .btn::before {
  right: 4%;
  background: url(../images/btn_arrow.svg) no-repeat center / contain;
}

/*
.footer_link .btn::before {
	bottom:50%;
	right:4%;
	background:#fff;
	z-index:3;
}

.footer_link .btn::after {
	bottom:53%;
	right:4%;
	background:#fff;
	z-index:3;
}

.footer_link .btn_frame_wrap:hover .btn::before,
.footer_link .btn_frame_wrap:hover .btn::after {
	right:4%;
	background:#a38f55;
}
*/
/* --- footer bottom --- */

.footer_bottom_nav li {
  margin-right: 2em;
}

.footer_bottom_nav li a,
.footer_bottom p small {
  font-size: 1.3rem;
}

.footer_bottom p small {
  font-weight: 300;
  letter-spacing: .2rem;
}

/* ---------  footer ここまで ------------ */



/* ---------  ver.SmartPhone ------------ */

/* font-size ---

if : window size = 750px

12px : 1.6vw;
14px : 1.866667vw
16px : 2.133333vw
18px : 2.4vw;
20px : 2.666667vw;
36px : 4.8vw;

*/


@media screen and (max-width:768px) {

  #wrap,
  section,
  article,
  main {
    overflow: visible;
  }

  .yumin {
    font-family: YuMincho,
      /* Mac用 */
      'Yu Mincho',
      /* Windows用 */
      'Noto Serif JP',
      /* Android */
      serif;
  }

  .pc_none {
    display: block;
  }

  .sp_none {
    display: none;
  }

  .inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 4vw;
  }

  /* --- flex --- */

  .d_flex {
    flex-wrap: wrap;

    -webkit-flex-wrap: wrap;
  }

  /* --- btn --- */

  .btn {
    padding-right: 11.47vw;
    font-size: 2.94vw;
  }

  .btn::before {
    bottom: 30%;
    width: 9.74vw;
    height: 1.34vw;
  }

  /*
.btn::after {
	width:1.072vw;
	bottom:46%;
}
*/
  .btn_link {
    width: 40.56vw;
    height: 8.54vw;
    border-radius: 4.27vw;
    background: #a38f55;
    font-size: 3.2vw;
    line-height: 8.54vw;
  }

  .btn_link span {
    font-size: 3.2vw;
  }

  .btn_frame_wrap {
    width: 100%;
    margin-bottom: 5.34vw;
  }

  /* --- btn gold --- */

  .btn_gold {
    width: 80%;
    height: 10.67vw;
    margin: 0 auto;
    padding-right: 0;
    border-radius: 5.34vw;
    line-height: 10.4vw;
  }

  .btn_gold span {
    font-size: 4vw;
  }


  /* --- marin --- */

  main {
    /* padding-bottom:20vw; */
    padding-bottom: 12vw;
  }

  #wrap {
    min-width: 100%;
  }


  /* --- header --- */

  header {
    min-width: 100%;
    /*height:15.48vw;*/
    height: auto;
    background: #fff;
  }

  .header_inner {
    align-items: center;
    padding: 2.94vw 4.8vw 2.94vw 2.8vw;

    -webkit-align-items: center;
  }

  .header_logo {
    width: 53vw;
  }

  /* --- header fin --- */

  /* --- nav --- */


  /* --- Nav Botton --- */
  .snavbtn {
    display: block;
    /*background:#fff;*/
    z-index: 99;
    width: 5vw;
    height: auto;
  }

  .snavbtn span {
    display: block;
    width: 6vw;
    height: .4vw;
    margin-right: auto;
    margin-left: auto;
    background: #a18d55;
    transition: all .7s;
  }

  .snavbtn span:first-child {}

  .snavbtn span:not(:last-child) {
    margin-bottom: 1.4vw;
  }

  .snavbtn span:last-child {}

  .snavbtn span.bnone {
    opacity: 0;
  }

  .snavbtn span.lineup {
    transform: translate(0px, 2vw) rotate(45deg);
  }

  .snavbtn span.linedown {
    transform: translate(0px, -1.7vw) rotate(-45deg);
  }


  /* --- ここまで Nav Botton --- */

  /* font : 24px */
  .nav_list2 li a {
    font-size: 3.2vw;
  }

  /* font : 22px */
  .nav_list li a,
  .nav_list li:last-of-type a {
    font-size: 2.94vw;
  }

  .nav_child li a {
    font-size: 2.67vw;
  }

  nav {
    display: flex;
    display: -webkit-flex;
    justify-content: flex-end;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 20;
    width: 100%;
    height: 93vh;
    margin-top: 14.6vw;
    padding: 6vw 7.47vw;
    overflow-y: auto;
    background: rgba(0, 0, 0, .88);
    transition: all .4s;

    -webkit-flex-wrap: wrap;
  }

  nav.nav_active {
    visibility: visible;
    left: 0;
  }

  .nav_list.d_flex {
    order: 1;
    width: 100%;
    min-width: 100%;

    -webkit-order: 1;
  }

  .nav_list2.d_flex {
    width: 100%;
    margin: 0 auto;
  }

  .nav_list li,
  .nav_list2 li {
    width: 100%;
  }

  .nav_parent::before {
    display: none;
  }

  .nav_list2 li {
    margin-bottom: 2em;
    text-align: left;
  }

  .nav_list2 li a {
    padding-bottom: 0;
  }

  .sp_nav_arrow {
    display: inline-block;
    width: 2.14vw;
    margin-left: 1em;
    transition: transform .4s;
  }

  .sp_nav_arrow img {
    vertical-align: middle;
  }

  .arrow_rotate {
    transform: rotate(-180deg);
  }

  .nav_list2 li:nth-of-type(2),
  .nav_list2 li:nth-of-type(3),
  .nav_list2 li:nth-of-type(6),
  .nav_list2 li:nth-of-type(7) {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    align-items: center;

    -webkit-align-items: center;
    -webkit-flex-wrap: wrap;
  }

  .nav_list li a {
    display: block;
    width: 100%;
    padding: 1.5em 0;
    color: #a38f55;
  }

  .nav_list li:nth-of-type(-n+6) a {
    border-right: none;
  }

  .nav_list li:nth-of-type(-n+7) a {
    border-top: 1px solid rgba(163, 143, 85, .4);
  }

  .nav_list li:nth-of-type(7) a {
    margin-bottom: 1.5em;
    border-bottom: 1px solid rgba(163, 143, 85, .4);
  }

  .nav_list li:last-of-type a {
    width: 51vw;
    height: 6.14vw;
    border-radius: 4vw;
    line-height: 6.14vw;
  }

  .nav_child {
    display: none;
    visibility: visible;
    opacity: 1;
    position: relative;
    top: auto;
    transform: scale(1);
    min-width: 100%;
    height: auto;
    padding: 1em;
    background: none;
    transition: none;
  }

  .nav_list2 li .nav_child li {
    margin-bottom: 1.5em;
  }

  .nav_list2 li .nav_child li:last-of-type {
    margin-bottom: 0;
  }


  .nav_child li a::after {
    display: none;
  }

  /* --- nav fin --- */

  /* --- sp bottom nav --- */

  .sp_bottom_nav {
    width: 100%;
  }

  .sp_bottom_nav ul li a {
    display: block;
    position: relative;
    width: 100%;
    padding: 2.5em 1.875em;
    border-top: 2px solid #dad2bc;
    color: #9c8855;
    font-size: 3.2vw;
  }

  .sp_bottom_nav ul li:last-of-type a {
    border-bottom: 2px solid #dad2bc;
  }

  .sp_bottom_nav ul li a::after {
    display: block;
    position: absolute;
    top: 0;
    right: 4%;
    bottom: 0;
    width: 1.34vw;
    height: 2.4vw;
    margin: auto 0;
    background: url(../images/arrow_right.svg) no-repeat center / contain;
    content: '';
  }

  /* --- about --- */

  .about_left,
  .about_right,
  .about_inner {
    width: 100%;
  }

  .about_inner {
    padding: 6.67vw 13.34vw 8vw 13.34vw;
  }

  .about_left h2 {
    width: 100%;
    height: 6.14vw;
    margin-bottom: 4vw;
    border-radius: 2.67vw;
    font-size: 2.8vw;
    line-height: 6.14vw;
  }

  .about_left .consul_time p,
  .tel_num+p,
  .about_left h2:nth-of-type(2)+p,
  .about_right h2 {
    font-size: 2.67vw;
  }

  .about_left p,
  .about_right p {
    font-size: 2.27vw;
  }

  .about_right .reserve_system p {
    font-feature-settings: 'palt';
  }

  .consul_time+p,
  .consul_time+p+p {
    padding-left: 0;
    text-align: center;
  }

  .about_left h2:nth-of-type(2) {
    margin-top: 4vw;
  }

  .about_right h2 {
    margin-bottom: 4vw;
  }

  .tel_num {
    font-size: 6.14vw;
  }

  .tel_icon {
    width: 4.94vw;
  }

  .reserve_system {
    margin: 3.34vw auto 0 auto;
    padding: 3.34vw 0 0 0;
  }

  .reserve_system .btn_link {
    width: 23.08vw;
    height: 6.14vw;
    border-radius: 3.07vw;
    font-size: 2.67vw;
    line-height: 6.14vw;
  }

  .reserve_system .btn_link span {
    font-size: 2.67vw;
  }

  /* --- google map --- */

  .google_map iframe {
    height: 70.7vw;
  }

  /* --- certification --- */

  .certification {
    margin-bottom: 13.34vw;
    padding: 8vw 4vw 0 4vw;
  }

  .cer_left,
  .cer_right {
    width: 100%;
  }

  .cer_left {
    margin-bottom: 5.34vw;
  }

  .cer_left figure {
    width: 20%;
  }

  .cer_left p {
    width: 80%;
  }

  .cer_right figure {
    width: 30%;
  }

  .cer_right p {
    width: 70%;
  }

  .certification p {
    font-size: 2.67vw;
  }

  /* --- footer --- */

  footer {
    padding: 0 0 6.67vw 0;
    border: none;
  }

  .footer_nav,
  .footer_link {
    display: none;
  }

  .footer_bottom.d_flex {
    justify-content: space-around;
    padding: 0 13.34vw;

    -webkit-justify-content: space-around;
  }

  .footer_bottom_nav {
    justify-content: space-between;
    width: 100%;
    margin-bottom: 9.34vw;

    -webkit-justify-content: space-between;
  }

  .footer_bottom_nav li {
    margin-right: 0;
  }

  .footer_bottom_nav li a,
  .footer_bottom p small {
    font-size: 2.67vw;
  }

  .fotter_bottom p {
    text-align: center;
  }

  .footer_bottom p small {
    letter-spacing: .1rem;
    text-align: center;
  }


  /* --- footer fin --- */

  /* --- page top --- */

  #page-top {
    opacity: 0;
  }

  #page-top {
    width: 13.34vw;
    height: 13.34vw;
  }
}

/* ---------  ver.SmartPhone fin ------------ */


.hnavbtn {
  display: none;
}

@media screen and (max-width:768px) {
  .hnavbtn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 3vw;
    width: 23vw;
  }

  .hnavbtn a {
    display: block;
    width: 13vw;
  }
}
