@charset "UTF-8";
/* clearfix */
.clearfix {
  *zoom: 1;
}
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}

.has-x-small-font-size {
  font-size: 10px;
}

.has-small-font-size {
  font-size: 13px;
}

.has-regular-font-size {
  font-size: 16px;
}

.has-large-font-size {
  font-size: 24px;
}

.has-x-large-font-size {
  font-size: 36px;
}

.has-huge-font-size {
  font-size: 50px;
}

/*----------------------------------------------------
	再設定
----------------------------------------------------*/
html {
  font-size: 10px;
}

body {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Segoe UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #333;
  font-size: 1.6rem;
}
@media screen and (min-width: 481px) and (max-width: 896px) {
  body {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 479px) {
  body {
    margin-top: 64px;
    font-size: 1.2rem;
  }
}

a {
  transition: all 0.3s;
  text-decoration: none;
}
a:link, a:visited {
  color: #2489ce;
}
a:hover, a:active {
  color: #72b7e6;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
}

/* ----------------------------------------------------------------------
	header
---------------------------------------------------------------------- */
header .header--fmt01 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2%;
  height: 90px;
}
header .header--fmt01 .logo img {
  vertical-align: bottom;
}
header .header--fmt01 .logo .header_ttl {
  font-size: 1.2rem;
}
@media (max-width: 1200px) {
  header .header--fmt01 .logo img {
    height: 36px;
    width: auto;
  }
  header .header--fmt01 .logo .header_ttl {
    font-size: 0.9rem;
  }
}
header .header--fmt01 .gnav ul {
  display: flex;
}
header .header--fmt01 .gnav ul li a {
  display: block;
  padding: 16px 1.5em;
  font-size: 1.4rem;
  font-weight: 500;
  color: #333;
  position: relative;
}
header .header--fmt01 .gnav ul li a::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 0;
  height: 2px;
  background: #922B05;
  transition: all 0.3s;
}
header .header--fmt01 .gnav ul li a:hover {
  color: #922B05;
}
header .header--fmt01 .gnav ul li a:hover::before {
  width: 100%;
}
header .header--fmt01 .gnav ul li.bt a {
  background: #922B05;
  color: #fff;
  margin-left: 1em;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
header .header--fmt01 .gnav ul li.bt a::before {
  display: none;
}
header .header--fmt01 .gnav ul li.bt a:hover {
  background: #000;
}
@media (max-width: 1200px) {
  header .header--fmt01 .gnav {
    display: none;
  }
}
@media (max-width: 1200px) {
  header .header--fmt01 {
    height: 64px;
  }
}
@media (max-width: 1200px) {
  header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    background: #fff;
    z-index: 9000;
  }
}

/*----------------------------------------------------
	spNav
----------------------------------------------------*/
header .header_menu {
  display: none;
  position: absolute;
  right: 20px;
  top: 12px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 1000;
}
header .header_menu div {
  position: relative;
}
header .header_menu span {
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background: #922B05;
  left: 0;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}
header .header_menu span:nth-child(1) {
  top: 10px;
}
header .header_menu span:nth-child(2) {
  top: 20px;
}
header .header_menu span:nth-child(3) {
  top: 30px;
}
@media (max-width: 1200px) {
  header .header_menu {
    display: block;
  }
}
header .header_menu.open span:nth-child(1) {
  top: 20px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #922B05;
}
header .header_menu.open span:nth-child(2) {
  width: 0;
  left: 50%;
}
header .header_menu.open span:nth-child(3) {
  top: 20px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background: #922B05;
}

#spNav {
  display: none;
  position: fixed;
  left: 0;
  top: 64px;
  width: 100%;
  height: -webkit-calc(100vh - 64px);
  height: calc(100vh - 64px);
  background: #922B05;
  text-align: center;
  padding: 6vh 10% 8vh;
  z-index: 9999;
}
#spNav ul {
  opacity: 0;
  margin-bottom: 30px;
}
#spNav ul li {
  border-bottom: 1px solid #922B05;
}
#spNav ul li a {
  display: block;
  width: 100%;
  line-height: 6vh;
  color: #fff;
  font-size: 1.7rem;
  text-decoration: none;
}

/*----------------------------------------------------
	reserve
----------------------------------------------------*/
#reserve {
  background: #922B05;
  color: #fff;
  padding: 48px 0 100px;
}
#reserve .container .container_inner .desc {
  text-align: center;
  margin-bottom: 60px;
  line-height: 2;
}
#reserve .container .container_inner .btns {
  justify-content: space-between;
  flex-wrap: wrap;
}
#reserve .container .container_inner .btns a {
  width: 48%;
  background: #fff;
  color: #922B05;
  padding: 20px 1em;
  text-align: center;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
@media screen and (max-width: 479px) {
  #reserve .container .container_inner .btns a {
    width: 100%;
    margin-bottom: 12px;
  }
}
#reserve .container .container_inner .btns a span {
  display: block;
  width: 100%;
}
#reserve .container .container_inner .btns a span.tel {
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
#reserve .container .container_inner .btns a span.mail {
  font-size: 2.2rem;
  font-weight: 600;
}
#reserve .container .container_inner .btns a:hover {
  background: #000;
  color: #fff;
}

/*----------------------------------------------------
	footer
----------------------------------------------------*/
footer {
  padding: 80px 0 20px;
}
@media screen and (max-width: 479px) {
  footer {
    padding: 50px 2% 20px;
  }
}
footer .pd_side .flex {
  margin-bottom: 80px;
}
footer .pd_side .flex .left {
  width: 50%;
}
@media screen and (max-width: 479px) {
  footer .pd_side .flex .left {
    width: 100%;
  }
}
@media screen and (max-width: 479px) {
  footer .pd_side .flex .left .logo img {
    height: 34px;
    width: auto;
  }
}
footer .pd_side .flex .left h2 {
  font-size: 1.2rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 479px) {
  footer .pd_side .flex .left h2 {
    margin-bottom: 18px;
  }
}
footer .pd_side .flex .left address {
  line-height: 2;
  font-weight: 500;
}
@media screen and (max-width: 479px) {
  footer .pd_side .flex .left address {
    padding-bottom: 40px;
  }
}
footer .pd_side .flex .left address > a:link, footer .pd_side .flex .left address > a:visited {
  color: #333;
}
footer .pd_side .flex .fnavi {
  width: 50%;
  display: flex;
  justify-content: end;
}
@media screen and (max-width: 479px) {
  footer .pd_side .flex .fnavi {
    flex-wrap: wrap;
    width: 100%;
  }
}
footer .pd_side .flex .fnavi ul {
  padding-left: 3em;
}
@media screen and (max-width: 479px) {
  footer .pd_side .flex .fnavi ul {
    width: 100%;
    padding-left: 0;
  }
}
footer .pd_side .flex .fnavi ul li {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
@media screen and (max-width: 479px) {
  footer .pd_side .flex .fnavi ul li {
    border-bottom: 1px solid #ccc;
  }
}
footer .pd_side .flex .fnavi ul li a {
  color: #333;
  font-weight: 500;
}
footer .pd_side .flex .fnavi ul li a:hover {
  color: #922B05;
}
@media screen and (max-width: 479px) {
  footer .pd_side .flex .fnavi ul li a {
    display: block;
    padding-top: 4px;
    padding-bottom: 14px;
  }
}
footer .copyright {
  border-top: 1px solid #922B05;
  padding-top: 14px;
  font-size: 1.2rem;
  color: #666;
}
footer .copyright a {
  color: #666;
}
footer .copyright a:link, footer .copyright a::visited {
  color: #666;
}

#fixed_contact {
  display: none;
  position: fixed;
  right: 0;
  bottom: 5%;
  max-width: 260px;
  width: 100%;
  background-color: #F4F5F7;
  padding: 14px 12px;
  z-index: 9991;
}
@media screen and (max-width: 479px) {
  #fixed_contact {
    display: none !important;
  }
}
#fixed_contact .fixed_contact_inner {
  padding: 12px 6px;
  border-top: 1px solid #922B05;
  border-bottom: 1px solid #922B05;
  text-align: center;
}
#fixed_contact .fixed_contact_inner h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #922B05;
}
#fixed_contact .fixed_contact_inner .desc {
  font-size: 1.2rem;
  margin-bottom: 16px;
}
#fixed_contact .fixed_contact_inner a {
  margin-bottom: 8px;
  display: block;
  color: #fff;
  font-weight: 600;
}
#fixed_contact .fixed_contact_inner a.btn {
  width: 100%;
  font-size: 1.3rem;
  padding: 6px 0.5rem;
  background: #000;
  border: 1px solid #000;
}
#fixed_contact .fixed_contact_inner a.btn:after {
  content: none;
}
#fixed_contact .fixed_contact_inner a.btn:hover {
  background: #fff;
  color: #000;
}
#fixed_contact .fixed_contact_inner a.btn.btn--red {
  background: #922B05;
  border: 1px solid #922B05;
}
#fixed_contact .fixed_contact_inner a.btn.btn--red:hover {
  background: #fff;
  color: #922B05;
}
#fixed_contact .icon_close {
  display: inline-block;
  position: absolute;
  top: 0px;
  left: -10px;
  transform: translateY(-52%);
  width: 20px;
  height: 20px;
  border: 2px solid #333;
  border-radius: 50%;
  background-color: #fff;
  z-index: 10;
  cursor: pointer;
}
#fixed_contact .icon_close:before, #fixed_contact .icon_close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 10px;
  background: #333;
  transition: 0.5s all;
}
#fixed_contact .icon_close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
#fixed_contact .icon_close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
