@charset "UTF-8";
.js_fixed {
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .js_fixed .header_wrap #header .header_box .header_logo_box {
    display: none;
  }
}
.js_fixed .header_wrap #header .header_box .header_btn .menu_wrap .menu_sp::after {
  content: "CLOSE";
}

#g-nav {
  position: fixed;
  z-index: 100;
  top: 0;
  right: -120%;
  width: 600px;
  height: 100%;
  transition: all 0.6s;
  border-left: 1px solid #000;
  box-shadow: -8px -8px 32px 0px rgba(0, 14, 26, 0.25);
  background-blend-mode: multiply;
  mix-blend-mode: hard-light;
  background: #191f24;
  overflow-y: scroll;
  /*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
}
@media screen and (max-width: 768px) {
  #g-nav {
    background: rgba(0, 0, 0, 0.6);
    display: none;
    height: 100vh;
    min-height: 900px;
    position: fixed;
    width: 100%;
    z-index: 98;
    padding: 0;
    mix-blend-mode: inherit;
    border-left: none;
  }
}

#g-nav::-webkit-scrollbar {
  display: none;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}
@media screen and (max-width: 768px) {
  #g-nav.panelactive {
    right: inherit;
    display: block;
  }
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  z-index: 999;
  height: 100%;
  overflow: scroll;
}
@media screen and (max-width: 768px) {
  #g-nav.panelactive #g-nav-list {
    width: 100%;
  }
}

#g-nav .g-nav_ul {
  width: 415px;
  position: absolute;
  z-index: 999;
  top: max(25%, 120px);
  left: 50%;
  transform: translateX(-50%);
  mix-blend-mode: inherit;
  display: flex;
  flex-direction: column;
  gap: 60px;
  justify-content: center;
  padding: 0 0 30px;
}
@media screen and (max-width: 768px) {
  #g-nav .g-nav_ul {
    top: 56px;
    transform: inherit;
    width: 100%;
    left: inherit;
    background: #F6F6F6;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    mix-blend-mode: inherit;
    gap: 0;
    padding: 0 0 30px;
  }
}
#g-nav .g-nav_ul li a {
  color: #fff;
  font-size: 2.4rem;
  position: relative;
  padding: 0 0 0 30px;
}
@media screen and (max-width: 768px) {
  #g-nav .g-nav_ul li a {
    color: #333333;
    font-size: 1.4rem;
    font-weight: 400;
    width: 90%;
    height: 58px;
    display: flex;
    align-items: center;
    padding: 0 0 0 30px;
    border-bottom: 1px solid #c1c1c1;
    margin: 0 auto;
  }
}
#g-nav .g-nav_ul li a::before {
  content: "";
  background: #ba6b60;
  height: 10px;
  width: 10px;
  -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translateY(-50%);
}

.header_wrap {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header_wrap {
    flex-direction: column;
  }
}

#header {
  min-width: 1100px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #header {
    min-width: 100%;
    padding: 0 0 0;
  }
}
#header .header_box {
  width: 100%;
  padding: 0;
  min-width: 1100px;
  position: absolute;
  z-index: 102;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 190px;
}
@media screen and (max-width: 768px) {
  #header .header_box {
    min-width: inherit;
    height: 64px;
    bottom: inherit;
    position: fixed;
    height: auto;
    background: #fff;
  }
}
#header .header_box .header_logo_box {
  z-index: 105;
  position: relative;
  top: 0;
  left: 30px;
  width: 30%;
  transition: all 0.3s;
}
@media screen and (max-width: 1200px) {
  #header .header_box .header_logo_box {
    width: 27%;
  }
}
@media screen and (max-width: 768px) {
  #header .header_box .header_logo_box {
    top: inherit;
    left: inherit;
    width: 100%;
    padding: 6px 0 3px 13px;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 768px) {
  #header .header_box .header_logo_box.panelactive {
    display: none;
  }
}
#header .header_box .header_logo_box .header_logo .logo_img {
  height: auto;
  position: relative;
  width: 100%;
  max-width: 480px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  #header .header_box .header_logo_box .header_logo .logo_img {
    width: 310px;
    height: auto;
    text-align: center;
    margin: 10px auto;
  }
}
#header .header_box .header_logo_box .header_logo .logo_img .logo_off {
  display: block;
}
@media screen and (max-width: 768px) {
  #header .header_box .header_logo_box .header_logo .logo_img .logo_off {
    display: none;
  }
}
#header .header_box .header_logo_box .header_logo .logo_img .logo_on {
  display: none;
}
@media screen and (max-width: 768px) {
  #header .header_box .header_logo_box .header_logo .logo_img .logo_on {
    display: block;
  }
}
#header .header_box .header_cov_box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 20px 0 auto;
  height: 110px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  #header .header_box .header_cov_box {
    display: none;
  }
}
#header .header_box .header_cov_box .header_tel_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 10px 0 0;
}
#header .header_box .header_cov_box .header_tel_box .header_tel {
  font-family: "Cinzel", serif;
  font-weight: 500;
  font-size: 3.6rem;
  color: #ba6b60;
}
#header .header_box .header_cov_box .header_tel_box .header_tel span {
  font-size: 1.8rem;
}
#header .header_box .header_cov_box .header_access a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 8px;
  background: #814841;
  position: relative;
  width: 182px;
  height: 56px;
  padding: 0 0 0 10px;
  transition: all 0.3s;
}
#header .header_box .header_cov_box .header_access a::before {
  content: "";
  background: url(../images/common/icon_header_access.svg);
  background-size: cover;
  width: 14px;
  height: 24px;
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  #header .header_box .header_cov_box .header_access a:hover {
    background: #5b332f;
  }
}
#header .header_box .header_cov_box .header_time a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 8px;
  background: #814841;
  position: relative;
  width: 182px;
  height: 56px;
  padding: 0 0 0 20px;
  transition: all 0.3s;
}
#header .header_box .header_cov_box .header_time a::before {
  content: "";
  background: url(../images/common/icon_header_time.svg);
  background-size: cover;
  width: 20px;
  height: 22px;
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  #header .header_box .header_cov_box .header_time a:hover {
    background: #5b332f;
  }
}
#header .header_box .header_btn {
  width: 100px;
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s;
  z-index: 110;
  background: #333333;
}
@media screen and (min-width: 769px) {
  #header .header_box .header_btn:hover {
    background-color: #555;
  }
}
#header .header_box .header_btn .menu_wrap .menu_sp {
  width: 100px;
  height: 105px;
  position: relative;
}
#header .header_box .header_btn .menu_wrap .menu_sp::after {
  content: "MENU";
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 350;
  letter-spacing: 1.12px;
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
}
#header .header_box .header_btn .menu_wrap .menu_sp .menu__line {
  background: #fff;
  display: block;
  height: 1px;
  transition: transform 0.3s;
  width: 44px;
  position: absolute;
  left: 28px;
}
#header .header_box .header_btn .menu_wrap .menu_sp .menu__line--top {
  top: 54px;
}
@media screen and (max-width: 768px) {
  #header .header_box .header_btn .menu_wrap .menu_sp .menu__line--top {
    top: 54px;
  }
}
#header .header_box .header_btn .menu_wrap .menu_sp .menu__line--center {
  top: 64px;
}
@media screen and (max-width: 768px) {
  #header .header_box .header_btn .menu_wrap .menu_sp .menu__line--center {
    top: 64px;
  }
}
#header .header_box .header_btn .menu_wrap .menu_sp .menu__line--bottom {
  top: 76px;
}
@media screen and (max-width: 768px) {
  #header .header_box .header_btn .menu_wrap .menu_sp .menu__line--bottom {
    top: 76px;
  }
}
#header .header_box .header_btn .menu_wrap .menu_sp .menu__line--top.active {
  top: 64px;
  transform: rotate(35deg);
}
#header .header_box .header_btn .menu_wrap .menu_sp .menu__line--center.active {
  transform: scaleX(0);
}
#header .header_box .header_btn .menu_wrap .menu_sp .menu__line--bottom.active {
  top: 64px;
  transform: rotate(145deg);
}
#header .header_box .sp_btn_wrap {
  display: none;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #header .header_box .sp_btn_wrap {
    display: block;
  }
}
#header .header_box .sp_btn_wrap .sp_btn_ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#header .header_box .sp_btn_wrap .sp_btn_ul.panelactive {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  top: 0;
}
#header .header_box .sp_btn_wrap .sp_btn_ul.panelactive li:nth-child(5) a::before {
  -webkit-mask-image: url(../images/common/icon_menu_on.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../images/common/icon_menu_on.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  /*変更したい色をここに書く*/
  background-color: #814841;
}
#header .header_box .sp_btn_wrap .sp_btn_ul li {
  width: 20%;
  padding: 0 0 2px;
}
#header .header_box .sp_btn_wrap .sp_btn_ul li a {
  height: 54px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 5px 0 0;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.8px;
  position: relative;
}
#header .header_box .sp_btn_wrap .sp_btn_ul li a::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
#header .header_box .sp_btn_wrap .sp_btn_ul li a::after {
  content: "";
  background: #814841;
  width: 1px;
  height: 48px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
#header .header_box .sp_btn_wrap .sp_btn_ul li:first-child a::before {
  width: 22.4px;
  height: 20px;
  top: 26px;
  -webkit-mask-image: url(../images/common/icon_home.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../images/common/icon_home.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  /*変更したい色をここに書く*/
  background-color: #814841;
}
#header .header_box .sp_btn_wrap .sp_btn_ul li:nth-child(2) a::before {
  width: 20px;
  height: 20px;
  top: 26px;
  -webkit-mask-image: url(../images/common/icon_tel_sp.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../images/common/icon_tel_sp.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  /*変更したい色をここに書く*/
  background-color: #814841;
}
#header .header_box .sp_btn_wrap .sp_btn_ul li:nth-child(3) a::before {
  width: 22px;
  height: 22px;
  top: 24px;
  -webkit-mask-image: url(../images/common/icon_web.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../images/common/icon_web.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  /*変更したい色をここに書く*/
  background-color: #814841;
}
#header .header_box .sp_btn_wrap .sp_btn_ul li:nth-child(4) a::before {
  width: 17px;
  height: 23px;
  top: 24px;
  -webkit-mask-image: url(../images/common/icon_access.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../images/common/icon_access.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  /*変更したい色をここに書く*/
  background-color: #814841;
}
#header .header_box .sp_btn_wrap .sp_btn_ul li:nth-child(5) a::before {
  width: 17.799px;
  height: 17.678px;
  top: 26px;
  -webkit-mask-image: url(../images/common/icon_menu.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../images/common/icon_menu.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  /*変更したい色をここに書く*/
  background-color: #814841;
}
#header .header_box .sp_btn_wrap .sp_btn_ul li.header_btn {
  width: 20%;
  height: inherit;
  display: inline-block;
  position: relative;
  transition: all 0.4s;
  z-index: 110;
  background: inherit;
}
#header .header_box .sp_btn_wrap .sp_btn_ul li.header_btn a::after {
  content: none;
}
#header .header_box .header_pc_nav {
  width: 100%;
  background: #ba6b60;
}
@media screen and (max-width: 768px) {
  #header .header_box .header_pc_nav {
    display: none;
  }
}
#header .header_box .header_pc_nav > ul {
  width: 1100px;
  margin: 0 auto;
  display: flex;
  position: relative;
}
#header .header_box .header_pc_nav > ul::before {
  content: "";
  background: #909090;
  width: 1px;
  height: 33px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#header .header_box .header_pc_nav > ul > li {
  width: 12.5%;
}
#header .header_box .header_pc_nav > ul > li a {
  font-size: 1.4rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  position: relative;
  width: 100%;
  font-weight: 600;
  transition: all 0.3s;
  letter-spacing: 0.06em;
  color: #fff;
}
#header .header_box .header_pc_nav > ul > li a::before {
  content: "";
  background: #fff;
  width: 1px;
  height: 33px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  #header .header_box .header_pc_nav > ul > li a:hover {
    opacity: 0.7;
  }
}
#header .header_box.fixed {
  position: fixed;
  bottom: inherit;
  width: 100%;
  background: #fff;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  #header .header_box.fixed {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #header .header_box.fixed .header_logo_box {
    display: none;
  }
}
#header .header_box.fixed .header_logo_box .header_logo .logo_img .logo_off {
  display: none;
}
#header .header_box.fixed .header_logo_box .header_logo .logo_img .logo_on {
  display: block;
}

.contents {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contents {
    width: 100%;
    padding: 0 6%;
  }
}

.contents_full {
  width: 100%;
  min-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contents_full {
    width: 100%;
    min-width: auto;
  }
}

#footer {
  padding: 120px 0 0;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  #footer {
    padding: 60px 0 0;
  }
}
#footer .contents_full .contents h2 {
  font-size: 5.6rem;
  color: #ba6b60;
  position: relative;
  text-align: center;
  letter-spacing: 0.2em;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #footer .contents_full .contents h2 {
    font-size: 2.8rem;
    letter-spacing: 0.1em;
  }
}
#footer .contents_full .contents h2::before {
  content: "";
  background: #ba6b60;
  background-size: cover;
  width: 80px;
  height: 5px;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  #footer .contents_full .contents h2::before {
    width: 50px;
  }
}
#footer .contents_full .contents h2::after {
  content: "CLINIC";
  font-size: 15rem;
  color: rgba(0, 0, 0, 0.03);
  position: absolute;
  letter-spacing: 0.2em;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  #footer .contents_full .contents h2::after {
    top: -40px;
    font-size: 5rem;
  }
}
#footer .contents_full .contents .footer_conts {
  margin: 100px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px 0;
}
@media screen and (max-width: 768px) {
  #footer .contents_full .contents .footer_conts {
    margin: 60px auto 0;
    flex-direction: column;
    gap: 20px;
  }
}
#footer .contents_full .contents .footer_conts .footer_conts_l {
  width: 525px;
}
@media screen and (max-width: 768px) {
  #footer .contents_full .contents .footer_conts .footer_conts_l {
    width: 100%;
  }
}
#footer .contents_full .contents .footer_conts .footer_conts_l .footer_conts_dl {
  display: flex;
  flex-wrap: wrap;
  font-family: "Noto Sans JP", sans-serif;
}
#footer .contents_full .contents .footer_conts .footer_conts_l .footer_conts_dl dt {
  font-weight: 500;
  width: 150px;
  padding: 10px 0;
  border-bottom: 1px solid #cccccc;
}
@media screen and (max-width: 768px) {
  #footer .contents_full .contents .footer_conts .footer_conts_l .footer_conts_dl dt {
    width: 90px;
  }
}
#footer .contents_full .contents .footer_conts .footer_conts_l .footer_conts_dl dd {
  padding: 10px 0;
  width: calc(100% - 150px);
  border-bottom: 1px solid #cccccc;
}
@media screen and (max-width: 768px) {
  #footer .contents_full .contents .footer_conts .footer_conts_l .footer_conts_dl dd {
    width: calc(100% - 90px);
  }
}
#footer .contents_full .contents .footer_conts .footer_conts_l .footer_conts_ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
}
#footer .contents_full .contents .footer_conts .footer_conts_l .footer_conts_ul li {
  width: calc((100% - 10px) / 2);
}
#footer .contents_full .contents .footer_conts .footer_conts_l .footer_conts_ul li a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 10px 0;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  #footer .contents_full .contents .footer_conts .footer_conts_l .footer_conts_ul li a {
    font-size: 1.4rem;
  }
}
#footer .contents_full .contents .footer_conts .footer_conts_l .footer_conts_ul li a::before {
  content: "";
  width: 20px;
  height: 5px;
  border: none;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  right: 20px;
  transform: translateY(-50%) skew(45deg);
}
@media screen and (max-width: 768px) {
  #footer .contents_full .contents .footer_conts .footer_conts_l .footer_conts_ul li a::before {
    width: 15px;
    right: 10px;
  }
}
@media screen and (min-width: 769px) {
  #footer .contents_full .contents .footer_conts .footer_conts_l .footer_conts_ul li a:hover {
    opacity: 0.7;
  }
}
#footer .contents_full .contents .footer_conts .footer_conts_l .footer_conts_ul li:first-child a {
  background: #814841;
}
#footer .contents_full .contents .footer_conts .footer_conts_l .footer_conts_ul li:nth-child(2) a {
  background: #814841;
}
#footer .contents_full .contents .footer_conts .footer_conts_l .footer_conts_ul li:nth-child(3) a {
  background: #09c755;
}
#footer .contents_full .contents .footer_conts .footer_conts_l .footer_conts_ul li:nth-child(4) a {
  background: #bd02c6;
}
#footer .contents_full .contents .footer_conts .footer_conts_r {
  width: 525px;
}
@media screen and (max-width: 768px) {
  #footer .contents_full .contents .footer_conts .footer_conts_r {
    width: 100%;
  }
}
#footer .contents_full .contents .footer_conts .footer_conts_r .footer_conts_table {
  width: 100%;
}
#footer .contents_full .contents .footer_conts .footer_conts_r .footer_conts_table tr th {
  background: #814841;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  padding: 15px 0;
  width: 60px;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  #footer .contents_full .contents .footer_conts .footer_conts_r .footer_conts_table tr th {
    font-size: 1.3rem;
  }
}
#footer .contents_full .contents .footer_conts .footer_conts_r .footer_conts_table tr th:first-child {
  width: 105px;
}
@media screen and (max-width: 768px) {
  #footer .contents_full .contents .footer_conts .footer_conts_r .footer_conts_table tr th:first-child {
    width: 90px;
  }
}
#footer .contents_full .contents .footer_conts .footer_conts_r .footer_conts_table tr th.pd_ft {
  padding: 15px;
  text-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  #footer .contents_full .contents .footer_conts .footer_conts_r .footer_conts_table tr th.pd_ft {
    padding: 15px 10px;
  }
}
#footer .contents_full .contents .footer_conts .footer_conts_r .footer_conts_table tr td {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  padding: 15px 0;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  #footer .contents_full .contents .footer_conts .footer_conts_r .footer_conts_table tr td {
    font-size: 1.3rem;
  }
}
#footer .contents_full .contents .footer_conts .footer_conts_r .footer_conts_table_cap {
  margin: 20px 0 0;
}
#footer .contents_full .contents .footer_conts .footer_conts_r .footer_conts_table_cap li {
  line-height: 2;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  #footer .contents_full .contents .footer_conts .footer_conts_r .footer_conts_table_cap li {
    font-size: 1.1rem;
  }
}
#footer .contents_full .contents .footer_conts .footer_conts_bt {
  width: 100%;
}
#footer .contents_full .contents .footer_conts .footer_conts_bt .footer_conts_bt_tit {
  text-align: center;
  color: #ba6b60;
  margin: 0 0 20px;
}
#footer .contents_full .contents .footer_conts .footer_conts_bt .footer_conts_bt_img {
  width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #footer .contents_full .contents .footer_conts .footer_conts_bt .footer_conts_bt_img {
    width: 100%;
  }
}
#footer .contents_full .ft_map {
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  #footer .contents_full .ft_map {
    margin: 20px auto 0;
  }
}
#footer .contents_full .ft_map iframe {
  width: 100%;
  height: 600px;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  #footer .contents_full .ft_map iframe {
    height: 250px;
  }
}
#footer .contents_full .copy {
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  padding: 10px 10px 100px;
  color: #fff;
  background: #814841;
}
@media screen and (max-width: 768px) {
  #footer .contents_full .copy {
    font-size: 1rem;
    padding: 10px 10px 120px;
  }
}

#pagetop {
  position: fixed;
  right: 45px;
  bottom: 30px;
  z-index: 10;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  #pagetop {
    right: 10px;
    bottom: 80px;
  }
  #pagetop.none {
    transition: all 0.6s;
    opacity: 0;
  }
}
#pagetop a {
  background: #814841;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-clip: padding-box;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
  letter-spacing: 1.12px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 0 15px;
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  #pagetop a {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
    letter-spacing: 0.55px;
    padding: 0 0 8px;
  }
}
#pagetop a::before {
  content: "";
  background: url(../images/common/arrow.svg) no-repeat;
  background-size: cover;
  width: 8px;
  height: 13px;
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  #pagetop a::before {
    width: 6px;
    height: 10px;
    top: 10px;
  }
}
@media screen and (min-width: 769px) {
  #pagetop a:hover {
    opacity: 0.7;
  }
}
/*# sourceMappingURL=style.css.map */