@charset "UTF-8";
/* ----------------------------------------
   default.css
---------------------------------------- */
html,
body {
  font-size: 10px;
}

body {
  position: relative;
  background: url(../img/bg_page.jpg) repeat center top;
  letter-spacing: 0.04em;
  line-height: 1.8;
  text-align: center;
  color: #000;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  font-style: normal;
  font-weight: normal;
}

body * {
  box-sizing: border-box;
}

/* Font */
.mincho {
  font-family: "Sawarabi Mincho", serif;
}

/* Ancher */
a {
  text-decoration: underline;
  color: #000;
}

a:hover {
  text-decoration: none;
}

a.inactive {
  pointer-events: none;
  cursor: default;
  color: #999 !important;
}

a[href^="tel:"] {
  text-decoration: none;
  pointer-events: none;
  cursor: default;
}

a.txtLink::after {
  content: ' ＞';
}

/* PARTS
---------------------------------------- */
sup {
  vertical-align: top;
  font-size: 0.5em;
}

/* Note */
.note {
  letter-spacing: 0;
  font-size: 1.2rem;
}

.noteList {
  font-size: 1.2rem;
}
.noteList li {
  padding-left: 1em;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: left;
  text-indent: -1em;
}

/* text-align */
.ta-c {
  text-align: center;
}

.ta-r {
  text-align: right;
}

.ta-l {
  text-align: left;
}

/* vertical-align */
.va-m {
  vertical-align: middle;
}

.va-t {
  vertical-align: top;
}

.va-b {
  vertical-align: bottom;
}

/* Table */
.tbl {
  display: table;
}
.tbl .row {
  display: table-row;
}
.tbl .cell {
  display: table-cell;
  vertical-align: middle;
}
.tbl .cell.top {
  vertical-align: top;
}
.tbl .cell.btm {
  vertical-align: bottom;
}

.tbl.top .cell {
  vertical-align: top;
}

.tbl.btm .cell {
  vertical-align: bottom;
}

/* Button */
a.pdfBox {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 60px;
  padding: 0 15px 0 50px;
  border: 1px solid #000;
  text-align: left;
  text-decoration: none;
  color: #000;
  font-size: 1.3rem;
}

a.pdfBox::before {
  content: '';
  position: absolute;
  left: 15px;
  top: calc(50% - 15px);
  width: 25px;
  height: 30px;
  background: url("../img/icon_pdf.png") no-repeat left top;
  background-size: 100% auto;
}

a.pdfBox:hover {
  opacity: 0.7;
}

/* Button_link */
a.linkBox {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 60px;
  border: 1px solid #000;
  text-align: center;
  text-decoration: none;
  color: #000;
  font-size: 1.2rem;
}

a.linkBox::before {
  content: '';
  position: absolute;
  left: 15px;
  top: calc(50% - 15px);
  width: 25px;
  height: 30px;
  background-size: 100% auto;
}

a.linkBox:hover {
  opacity: 0.7;
}

a.navBox {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 60px;
  padding: 0 1.6em;
  border: 1px solid #000;
  text-align: left;
  text-decoration: none;
  color: #000;
  font-size: 1.3rem;
}

a.navBox::before {
  content: '';
  position: absolute;
	top: 0;
	bottom: 0;
	right: .8em;
	margin: auto;
	width: 6px;
	height: 6px;	
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

a.navBox:hover {
  opacity: 0.7;
}




/* Other */
.sp {
  display: none;
}

.ib {
  display: inline-block;
}

.nowrap {
  white-space: nowrap;
}

.sq::before,
.sq > li::before {
  content: '■';
}

.dsk::before,
.dsk > li::before {
  content: '●';
}

.tri::before,
.tri > li::before {
  content: '▼';
  display: inline-block;
  margin-right: 5px;
  transform: rotate(-90deg);
}

.fixedBg {
  background-color: #000;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
}

#goTop {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  height: 0;
  z-index: 99;
}
#goTop a {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  overflow: hidden;
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  text-indent: -999px;
}
#goTop a::after {
  content: '';
  position: absolute;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  width: 30px;
  height: 30px;
  background: url("../img/icon_arrow_01.png") no-repeat center center;
  background-size: 100% auto;
  transform: rotate(-90deg);
}

#mq {
  width: 0;
  height: 0;
}

/* ▼ @media : PC */
@media screen and (min-width: 769px) {
  #mq {
    display: block;
  }

  .sp {
    display: none;
  }
}
/* ▼ @media : SP */
@media screen and (max-width: 768px) {
  body {
    letter-spacing: 0;
    line-height: 1.5;
  }

  #mq, .pc {
    display: none;
  }

  a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }

  .tbl.rsp,
  .tbl.rsp .row,
  .tbl.rsp .cell {
    display: block;
  }

  .tbl.rsp .row + .row {
    margin-top: 1em;
  }

  .fixedBg {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 480px) {
  #goTop {
    right: 10px;
    bottom: 10px;
  }
  #goTop a {
    width: 50px;
    height: 50px;
  }
  #goTop a::after {
    left: calc(50% - 12px);
    top: calc(50% - 12px);
    width: 24px;
    height: 24px;
  }
}
/* Padding */
.pt1e {
  padding-top: 1em;
}

.pb1e {
  padding-bottom: 1em;
}

.pr1e {
  padding-right: 1em;
}

.pl1e {
  padding-left: 1em;
}

/* #container
---------------------------------------- */
#container {
  position: relative;
  font-size: 1.6rem;
}

/* header
---------------------------------------- */
header {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 160px;
  background: url(../img/bg_page.jpg) repeat center top;
}
header h1 {
  width: 28.6%;
  min-width: 300px;
  max-width: 590px;
  margin: 0 auto;
  line-height: 0;
}
header .btn {
  display: none;
  position: relative;
  width: 65px;
  height: 65px;
  cursor: pointer;
}
header .btn div {
  position: absolute;
  left: calc(50% - 14px);
  top: calc(50% - 2px);
  width: 28px;
  height: 4px;
  background: #8c6960;
  transition: all 300ms ease;
}
header .btn div:nth-child(1) {
  margin-top: -10px;
}
header .btn div:nth-child(3) {
  margin-top: 10px;
}

header.open .btn div:nth-child(1) {
  margin-top: 0;
  transform: rotate(45deg);
}

header.open .btn div:nth-child(2) {
  transform: scale(0) rotate(90deg);
}

header.open .btn div:nth-child(3) {
  margin-top: 0;
  transform: rotate(135deg);
}

/* #nav1
---------------------------------------- */
#nav1 {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  background: url(../img/bg_page.jpg) repeat center top;
  border-bottom: 1px solid #d5d5d5;
}
#nav1 .logo {
  width: 230px;
  padding-left: 25px;
  line-height: 0;
}
#nav1 ul {
  display: flex;
}
#nav1 ul li a {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  height: 74px;
  padding: 0 15px;
  text-align: center;
  text-decoration: none;
  color: #8c6960;
  font-size: 1.7rem;
  white-space: nowrap;
}
#nav1 ul li a br {
  display: none;
}
#nav1 ul li a:hover {
  background: rgba(255, 255, 255, 0.5);
}
#nav1 ul li a.active {
  background: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  cursor: default;
}
#nav1 ul li:last-child {
  padding-left: 15px;
}
#nav1 ul li:last-child a {
  width: 135px;
  padding: 0;
  background: #8c6960;
  color: #fff;
}
#nav1 ul li:last-child a:hover {
  background: rgba(140, 105, 96, 0.75);
  opacity: 1.0;
}

body.index.navFixed {
  padding-top: 75px;
}
body.index.navFixed #nav1 {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}

/* .sub-cnt
---------------------------------------- */
body.sub-cnt.navFixed #container {
  padding-top: 74px;
}
body.sub-cnt.navFixed header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}

body.sub-cnt header {
  width: 100%;
  height: 74px;
  border-bottom: 1px solid #d5d5d5;
  padding-left: 2.38095%;
}
body.sub-cnt header h1 {
  width: 19.42857%;
  max-width: 204px;
  min-width: 0;
}
body.sub-cnt header #nav1 {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  border-bottom: none;
}
body.sub-cnt header #nav1 ul li a {
  height: 73px;
}

/* ▼ @media : PC */
@media screen and (max-width: 1000px) {
  #nav1 ul li a {
    padding: 0 10px;
    font-size: 1.7vw;
  }

  #nav1 ul li:last-child {
    padding-left: 10px;
  }
}
/* ▼ @media : SP */
@media screen and (max-width: 768px) {
  body.sub-cnt.navFixed {
    padding-top: 0;
  }

  header,
  body.sub-cnt header {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: fixed;
    left: 0;
    top: 0;
    height: 65px;
    padding-left: 0;
    border-bottom: 1px solid #d5d5d5;
    z-index: 1000;
  }
  header h1,
  body.sub-cnt header h1 {
    width: 40%;
    min-width: 1px;
    margin: 0 0 0 6.42857%;
  }
  header .btn,
  body.sub-cnt header .btn {
    display: block;
  }
  header #nav1 ul li a,
  body.sub-cnt header #nav1 ul li a {
    height: calc((90vh - 65px) / 7);
  }

  #nav1 {
    display: none;
    position: fixed;
    left: 0;
    top: 65px;
    height: calc(90vh - 65px);
    background: url(../img/bg_page.jpg) repeat center top;
    z-index: 999;
  }
  #nav1 .logo {
    display: none;
  }
  #nav1 ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }
  #nav1 ul li {
    flex: 0 0 auto;
    padding: 0 !important;
  }
  #nav1 ul li a {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 100% !important;
    height: calc((90vh - 65px) / 7);
    padding: 0 30px !important;
    font-size: 1.8rem;
  }

  body.sub-cnt header h1 {
    width: 40%;
    max-width: 590px;
    min-width: 1px;
    margin: 0 0 0 6.42857%;
  }
}
@media screen and (max-width: 480px) {
  body.sub-cnt header h1,
  header h1 {
    width: 50%;
    max-width: 590px;
  }

  #nav1 ul li a {
    font-size: 3.75vw;
  }
}
/* main
---------------------------------------- */
main {
  display: block;
}
main section {
  padding-right: 10px;
  padding-left: 10px;
}
main section h2 {
  margin-bottom: 50px;
  padding-bottom: 30px;
  background: url(../img/bg_h2_hashi.png) no-repeat center bottom;
  background-size: 112px auto;
  line-height: 1.1;
  color: #8c6960;
  font-size: 2.7rem;
  font-family: "Sawarabi Mincho", serif;
}
main section article {
  margin-right: auto;
  margin-left: auto;
}

#yoyaku {
  padding: 45px 10px 55px;
  background: #8c6960;
  color: #fff;
}
#yoyaku h2 {
  background-image: url(../img/bg_h2_hashi_02.png);
  color: #fff;
}
#yoyaku article {
  max-width: 800px;
}
#yoyaku article dl {
  margin-bottom: 10px;
  text-align: left;
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  /*justify-content: space-between;*/
}
#yoyaku article dl dt {
  flex: 0 0 auto;
  position: relative;
  top: 4px;
  letter-spacing: 0;
  line-height: 1.3;
  font-size: 2.2rem;
}
#yoyaku article dl dd {
  flex: 0 0 auto;
  text-align: right;
  margin-left: 25px;  
}
#yoyaku article dl dd a img {
  width: 100%;
  max-width: 320px;
}
#yoyaku article .btn {
  margin-top: 30px;
}
#yoyaku article .reser_btn {
  display: flex;
  flex-direction: row;  
  margin: 0 0 30px 0;    
}
#yoyaku article .btn_item {
  width: 100%;
  height: 100px;
  text-align: center;
}
#yoyaku article .btn_01 {
}
#yoyaku article .btn_02 {
}
#yoyaku article .btn_01 a,
#yoyaku article .btn_02 a {
  display: block;
  position: relative;
  max-width: 95%;
  height: 90px;
  margin: 0 auto;
  background: #fff;
  line-height: 90px;
  text-decoration: none;
  color: #8c6960;
  font-size: 2rem;
}
#yoyaku article .btn a {
  display: block;
  position: relative;
  max-width: 570px;
  height: 90px;
  margin: 0 auto;
  background: #fff;
  line-height: 90px;
  text-decoration: none;
  color: #8c6960;
  font-size: 2rem;
}
#yoyaku article .btn_01 a::after,
#yoyaku article .btn_02 a::after,
#yoyaku article .btn a::after {
  content: '＞';
  position: absolute;
  right: 15px;
  top: auto;
}
#yoyaku article .btn_01 a:hover,
#yoyaku article .btn_02 a:hover,
#yoyaku article .btn a:hover {
  opacity: 0.7;
}

footer {
  padding: 30px 10px;
}
footer ul {
  display: inline-block;
  margin: 0 auto 30px;
}
footer .logo {
  width: 207px;
  margin: 0 auto;
}

/* body.sub-cnt
---------------------------------------- */
body.sub-cnt #hero {
  padding: 75px 0 60px;
}
body.sub-cnt #hero h1 {
  margin-bottom: 50px;
  padding-bottom: 30px;
  background: url(../img/bg_h2_hashi.png) no-repeat center bottom;
  background-size: 112px auto;
  line-height: 1.1;
  color: #8c6960;
  font-size: 2.7rem;
  font-family: "Sawarabi Mincho", serif;
}
body.sub-cnt .slider-wrap {
  position: relative;
  overflow: hidden;
}
body.sub-cnt .slider-wrap .prev,
body.sub-cnt .slider-wrap .next {
  position: absolute;
  top: 0;
  width: 22.5%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 5;
  cursor: pointer;
}
body.sub-cnt .slider-wrap .prev {
  left: 0;
}
body.sub-cnt .slider-wrap .next {
  right: 0;
}
body.sub-cnt .slider-wrap .prev::before,
body.sub-cnt .slider-wrap .next::before {
  content: '';
  position: absolute;
  top: calc(50% - 20.5px);
  width: 21px;
  height: 41px;
  background: url("../img/arrow_slide_01.png") no-repeat left top;
  background-size: 100% auto;
}
body.sub-cnt .slider-wrap .prev::before {
  right: 16.66667%;
}
body.sub-cnt .slider-wrap .next::before {
  left: 16.66667%;
  transform: rotate(180deg);
}
body.sub-cnt .slider-wrap .slider {
  width: 55%;
  margin: 0 auto;
}
body.sub-cnt .slider-wrap .slider .slick-list {
  overflow: visible;
}
body.sub-cnt .slider-wrap .slider .slick-list img {
  width: 100%;
}

body.sub-cnt main .btnBlock {
  margin-top: 60px;
}
body.sub-cnt main .btns {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
body.sub-cnt main .btns li {
  flex: 0 0 auto;
  width: 48.41772%;
}
body.sub-cnt main .btns + h5 {
  margin-top: 2em;
}
body.sub-cnt main h5 + .btns {
  margin-top: 0.25em;
}

body.sub-cnt main.m1 {
  padding-bottom: 100px;
}
body.sub-cnt main.m1 > section {
  padding-right: 0;
  padding-left: 0;
}
body.sub-cnt main.m1 > section article {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 895px;
  margin: 0 auto;
  padding: 0 10px;
  text-align: left;
}
body.sub-cnt main.m1 > section article .doc {
  flex: 0 0 auto;
  width: 58%;
}
body.sub-cnt main.m1 > section article .doc .txt {
  margin-bottom: 40px;
  font-size: 1.4rem;
}
body.sub-cnt main.m1 > section article .doc > dl {
  font-size: 1.3rem;
}
body.sub-cnt main.m1 > section article .doc > dl > dd > .tbl dl dt {
  padding-right: 1em;
}
body.sub-cnt main.m1 > section article .doc > dl > dd .kerning {
  display: inline-block;
  letter-spacing: 2.1em;
  margin-right: -2.1em;
}
body.sub-cnt main.m1 > section article .doc > dl > dd .note {
  letter-spacing: 0;
}
body.sub-cnt main.m1 > section article .map {
  flex: 0 0 auto;
  width: 41%;
  text-align: center;
  font-size: 1.3rem;
}
body.sub-cnt main.m1 > section article .map .txt {
  line-height: 1.1;
}
body.sub-cnt main.m1 > section article .map .img {
  margin: 0 0 20px;
}
body.sub-cnt main.m1 > section article .map .note {
  margin-top: 7px;
}

body.sub-cnt main.m2 #yoyaku {
  max-width: none;
  text-align: center;
}

/* ----------------------------------------
   @media : PC
---------------------------------------- */
@media screen and (max-width: 820px) {
  #yoyaku article dl {
    display: block;
  }
  #yoyaku article dl dt, #yoyaku article dl dd {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0;  
  }
  #yoyaku article dl dt {
    margin-bottom: 20px;
  }
}
/* ----------------------------------------
   @media : SP
---------------------------------------- */
@media screen and (max-width: 768px) {
  #container {
    padding-top: 65px;
  }

  main section h2 {
    margin-bottom: 25px;
    padding-bottom: 25px;
    background-size: 100px auto;
    font-size: 3.515625vw;
  }

  #yoyaku {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  #yoyaku article dl dt {
    font-size: 2.8645833333vw;
  }

  body.sub-cnt #hero {
    padding: 40px 0 30px;
  }
  body.sub-cnt #hero h1 {
    margin-bottom: 35px;
    padding-bottom: 25px;
  }
  body.sub-cnt .slider-wrap .slider {
    width: 73.57143%;
    margin: 0 auto;
  }
  body.sub-cnt .slider-wrap .slider .slick-list {
    overflow: visible;
  }
  body.sub-cnt .slider-wrap .prev,
  body.sub-cnt .slider-wrap .next {
    width: 13.214285%;
  }
  body.sub-cnt .slider-wrap .prev::before,
  body.sub-cnt .slider-wrap .next::before {
    top: calc(50% - 15.375px);
    width: calc(21px * 0.75);
    height: calc(41px * 0.75);
  }

  body.sub-cnt main .btnBlock {
    margin-top: 2em;
  }
  body.sub-cnt main .btns {
    display: block;
  }
  body.sub-cnt main .btns li {
    width: 100%;
  }
  body.sub-cnt main .btns li + li {
    margin: 1em 0 0;
  }

  body.sub-cnt main.m1 {
    padding-bottom: 50px;
  }
  body.sub-cnt main.m1 > section article {
    display: block;
    width: 100%;
    padding: 0 5%;
  }
  body.sub-cnt main.m1 > section article .map {
    width: 90%;
    margin: 0 auto 2em;
  }
  body.sub-cnt main.m1 > section article .map .note {
    margin-top: 1em;
  }
  body.sub-cnt main.m1 > section article .doc {
    width: 100%;
  }
  body.sub-cnt main.m1 > section article .doc .txt {
    margin-bottom: 20px;
  }
  body.sub-cnt main.m1 > section article .doc > dl > dd > .tbl dl dd span {
    letter-spacing: inherit;
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  main section h2 {
    font-size: 2.5rem;
  }

  #yoyaku article dl dt {
    font-size: 2rem;
  }

  #yoyaku article dl dd a img {
    width: 85%;
  }
    
  #yoyaku article .reser_btn {
    display: flex;
    flex-direction: column;  
  }      

  #yoyaku article .btn,
  #yoyaku article .btn_01,
  #yoyaku article .btn_02, {
    margin-top: 20px;
  }  

  #yoyaku article .btn a,
  #yoyaku article .btn_01 a,
  #yoyaku article .btn_02 a {
    height: 70px;
    line-height: 70px;
  }

  body.sub-cnt main.m1 {
    padding-bottom: 50px;
  }
  body.sub-cnt main.m1 > section article {
    display: block;
    width: 100%;
  }
  body.sub-cnt main.m1 > section article .map,
  body.sub-cnt main.m1 > section article .doc {
    width: 100%;
  }
  body.sub-cnt main.m1 > section article .map .txt,
  body.sub-cnt main.m1 > section article .doc .txt {
    margin-bottom: 20px;
  }

  footer .logo {
    width: 50%;
  }
}
