@charset "UTF-8";
* {
  margin: 0;
  padding: 0; }

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%; }

body {
  font-family: 'Noto Serif JP', serif;
  color: #111;
  font-size: 1.7rem;
  letter-spacing: 0.15em; }

h2 {
  font-size: 2.8rem;
  font-weight: normal;
  margin-bottom: 50px;
  line-height: 1.8; }

h3 {
  font-weight: normal; }

a {
  color: #111;
  text-decoration: none;
  transition: all 0.3s; }

a:hover {
  transform: translateY(-5px); }

p {
  margin-bottom: 1em; }

ul {
  padding: 0;
  list-style: none; }

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

table {
  border-collapse: collapse; }

#main {
  margin: 0; }

section {
  margin: 0 auto;
  padding: 0; }

.btn {
  display: block;
  position: relative;
  max-width: 440px;
  padding: 5px 5px 5px 30px;
  background: #fff url("../images/btn_arrow.png") no-repeat 95% 50%/10px auto; }
  .btn::before {
    content: "";
    width: 5px;
    height: calc(100% - 2px);
    background: #937e3a;
    position: absolute;
    top: 1px;
    left: 1px; }

.sp {
  display: none !important; }

.link {
  text-align: center;
  font-size: 1.3rem;
  display: inline-block;
  margin-top: 20px; }

@media screen and (max-width: 999px) {
  body {
    font-size: 1.5rem;
    padding-bottom: 80px; }

  .pc {
    display: none !important; }

  .sp {
    display: block !important; }

  h2 {
    font-size: 2rem; }

  .btn {
    margin: 0 auto; } }
/*------------------------------------------------------------------------------------------------------------------------------------

header

------------------------------------------------------------------------------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(255, 255, 255, 0) 100%); }
  #header h1 {
    width: 180px;
    padding: 20px;
    margin-right: auto; }
  #header .header_tel {
    max-width: 360px;
    padding: 30px 40px 0 0; }
#header .menu_lang {
	position: relative;
}
#header .menu_lang ul{
    /*絶対配置で位置を指定*/
	position: absolute;
	left:0;
	top:84px;
	z-index: 4000;
    /*形状を指定*/
	background:#f8f8f8;
	width:180px;
    /*はじめは非表示*/
	visibility: hidden;
	opacity: 0;
    /*アニメーション設定*/
	transition: all .3s;
}
#header .menu_lang a {
    background: rgba(255, 255, 255, 0.8);
    display: block;
    text-align: center;
    letter-spacing: 0;
    line-height: 84px;
    padding: 0 50px; 
}
#header .menu_lang ul a {
	line-height: 60px;
}
#header .menu_lang a:hover{
	transform: none
}
#header .menu_lang ul a:hover{
	background: #ddd;
}
/*hoverしたら表示*/
#header .menu_lang:hover > ul,
#header .menu_lang:active > ul{
  visibility: visible;
  opacity: 1;
}
  #header .menu_plan a {
    background: rgba(130, 46, 43, 0.8);
    display: block;
    text-align: center;
    line-height: 84px;
    padding: 0 50px;
    color: #fff; }
  #header .inner {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    padding-right: 180px; }

@media screen and (max-width: 999px) {
  #header {
    height: 80px; }
    #header .inner {
      padding-right: 80px; }
    #header .header_tel {
      padding: 30px 20px 0 0; }
    #header h1 {
      width: 180px;
      margin-right: 20px; }
    #header .menu_lang {
      display: none; }
    #header .menu_plan {
      width: 50%;
      position: fixed;
      bottom: 0;
      right: 0; }
      #header .menu_plan a {
        line-height: 80px;
        font-size: 2rem;
        padding: 0; }

  .fix_tel {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 50%; }
    .fix_tel a {
      display: block;
      text-align: center;
      background: rgba(255, 255, 255, 0.8);
      color: #000;
      width: 100%;
      line-height: 80px;
      font-size: 2rem; }

  .i_tel {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url("../images/i_tel.png") no-repeat 0 0/cover;
    margin: 0 20px;
    transform: translateY(5px); } }
/*========= ナビゲーション ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background: rgba(1, 1, 1, 0.9);
  /*動き*/
  transition: all 0.6s; }
  #g-nav.panelactive {
    opacity: 1;
    z-index: 999; }
  #g-nav #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch; }

/*ナビゲーション*/
#g-nav ul {
	/*ナビゲーション天地中央揃え*/
	position: absolute;
	z-index: 999;
	top: 50%;
	left: 10%;
	width: 80%;
	transform: translateY(-50%);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
#g-nav ul li {
    list-style: none;
    text-align: center;
	width: 40%;
	border-bottom: solid 1px #aaa;
}
#g-nav ul li:nth-child(1),
#g-nav ul li:nth-child(2){
	border-top: solid 1px #aaa;
}
#g-nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 20px 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 2.2rem;
}
#g-nav ul li:last-of-type {
	margin-top: 50px;
	border-bottom: none
}
@media screen and (max-width: 999px) {
  #g-nav ul li a {
    padding: 16px 5px;
    font-size: 1.7rem; } }
/*========= ハンバーガー ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  top: 0;
  right: 0;
  cursor: pointer;
  width: 150px;
  height: 84px;
  background: url("../images/menu_bg.png") no-repeat 0 0;
  background-size: cover;
  color: #fff; }
  .openbtn1 span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background-color: #fff;
    width: 40px; }
    .openbtn1 span:nth-of-type(1) {
      top: 32px; }
    .openbtn1 span:nth-of-type(2) {
      top: 43px; }
    .openbtn1 span:nth-of-type(3) {
      top: 53px; }
  .openbtn1.active span:nth-of-type(1) {
    top: 34px;
    transform: translateY(6px) rotate(-45deg);
    width: 40px; }
  .openbtn1.active span:nth-of-type(2) {
    opacity: 0; }
  .openbtn1.active span:nth-of-type(3) {
    top: 46px;
    transform: translateY(-6px) rotate(45deg);
    width: 40px; }
  .openbtn1 small {
    position: absolute;
    bottom: 21px;
    left: 60px;
    font-size: 2rem; }

@media screen and (max-width: 999px) {
  .openbtn1 {
    width: 50px;
    height: 50px;
    top: 0; }
    .openbtn1 span {
      width: 30px; }
      .openbtn1 span:nth-of-type(1) {
        top: 16px; }
      .openbtn1 span:nth-of-type(2) {
        top: 24px; }
      .openbtn1 span:nth-of-type(3) {
        top: 32px; }
    .openbtn1.active span:nth-of-type(1) {
      top: 20px;
      left: 0px;
      transform: translateY(6px) rotate(-45deg);
      width: 30px; }
    .openbtn1.active span:nth-of-type(3) {
      top: 32px;
      left: 0px;
      transform: translateY(-6px) rotate(45deg);
      width: 30px; }
    .openbtn1 small {
      bottom: 0px;
      left: 0px;
      font-size: 1rem;
      letter-spacing: 0.05em; } }
/*------------------------------------------------------------------------------------------------------------------------------------

footer

------------------------------------------------------------------------------------------------------------------------------------*/
#footer {
	background: url("../images/footer_bg.jpg") no-repeat 50%/cover;
  padding: 5%; }
  #footer > * {
    font-family: 'Noto Sans JP', sans-serif; }
  #footer .footer_body {
    max-width: 1360px;
    margin: 0 auto 60px;
    display: flex;
    justify-content: space-between; }
    #footer .footer_body .footer_info {
      display: flex;
      align-items: center;
      margin-bottom: 30px; }
      #footer .footer_body .footer_info p {
        margin: 0 0 8px 0; }
    #footer .footer_body .footer_logo {
      max-width: 200px;
      margin-right: 45px; }
    #footer .footer_body .footer_add {
      font-size: 1.9rem;
      margin-bottom: 0.5em; }
#footer .footer_body .footer_add_small span {
	display: block;
}
    #footer .footer_body .footer_tel img {
      max-width: 438px; }
    #footer .footer_body .footer_sns {
      display: flex;
      flex-wrap: wrap;
      max-width: 390px; }
      #footer .footer_body .footer_sns li {
        width: 50%;
        margin-bottom: 20px;
        text-align: left; }
        #footer .footer_body .footer_sns li a {
          background-size: 28px auto;
          background-repeat: no-repeat;
          padding-left: 40px;
          font-size: 1.2rem;
          line-height: 28px;
          display: inline-block; }
        #footer .footer_body .footer_sns li .f_instagram {
          background-image: url("../images/i_insta.png"); }
        #footer .footer_body .footer_sns li .f_twitter {
          background-image: url("../images/i_tw.png"); }
        #footer .footer_body .footer_sns li .f_facebook {
          background-image: url("../images/i_fb.png"); }
        #footer .footer_body .footer_sns li .f_line {
          background-image: url("../images/i_line.png"); }
    #footer .footer_body .footer_link {
      display: flex;
      flex-direction: row-reverse;
      column-gap: 30px; }
      #footer .footer_body .footer_link li {
        -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl; }
        #footer .footer_body .footer_link li a {
          display: block; }
  #footer .copyright {
    margin: 0 auto;
    display: block;
    font-size: 1.2rem;
    text-align: center;
    line-height: 1; }
    #footer .copyright span {
      font-size: 1.4rem;
      display: inline-block;
      transform: translateY(1px);
      margin-right: 3px; }

/*リンクの形状*/
#page-top a {
  display: flex;
  background: url("../images/btn_return.png");
  background-size: cover;
  width: 90px;
  height: 73px;
  transition: all 0.3s;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap; }

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 0;
  bottom: -5px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
  margin: 0; }

/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards; }

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards; }

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0); }
  to {
    opacity: 1;
    transform: translateY(100px); } }
@media screen and (max-width: 1100px) {
  #page-top a {
    width: 70px;
    height: 57px; }

  #footer {
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center; }
    #footer .footer_body {
      flex-wrap: wrap;
      justify-content: center; }
      #footer .footer_body .footer_info {
        flex-wrap: wrap;
		  justify-content: center;}
        #footer .footer_body .footer_info .footer_logo {
          width: 100%;
          max-width: 100%;
          margin: 0 auto 30px;
          text-align: center; }
          #footer .footer_body .footer_info .footer_logo img {
            max-width: 180px; }
        #footer .footer_body .footer_info .footer_add {
          margin-bottom: 1em; }
      #footer .footer_body .footer_sns {
        margin: 0 auto 50px;
        width: 70%; }
        #footer .footer_body .footer_sns li:nth-child(odd) {
          width: 60%; }
        #footer .footer_body .footer_sns li:nth-child(even) {
          width: 40%; }
      #footer .footer_body .footer_box_l,
      #footer .footer_body .footer_link {
        width: 100%; }
      #footer .footer_body .footer_link {
		  width: 85%;
		  column-gap: 0;
        justify-content: center;
        text-align: left; } }

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

home

------------------------------------------------------------------------------------------------------------------------------------*/
.top_banner {
	margin: 30px auto;
	width: 90%;
	max-width: 600px;
}
.sagane_densetsu_banner {
	display: flex;
	align-items: center;
	justify-content: space-around;
	margin-bottom: 30px;
	padding: 20px;
	border: solid 1px #b1a271;
}
.sagane_densetsu_banner dt {
	width: 80px;
}
.sagane_densetsu_banner dt img {
	margin: 0!important
}
.sagane_densetsu_banner .densetsu_n {
	font-size: 2.4rem;
	line-height: 1;
	padding: 0 10px;
}
.sagane_densetsu_banner .densetsu_l a{
	padding-right: 40px
}


main.home {
	display: flex;
	flex-direction: column;
}
main.home #main_visual {
	order: -1;
}


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

main_visual 1122

------------------------------------------------------------------------------------------------------------------------------------*/
#main_visual .main_slider li {
  display: block;
  background-size: cover;
  background-repeat: no-repeat;}
#main_visual .main_slider .slide_01:nth-child(1) {
  background-image: url("../images/mv_01.jpg");
  background-position: 50% 50%; }
#main_visual .main_slider .slide_02:nth-child(2) {
  background-image: url("../images/mv_02.jpg");
  background-position: 50% 100%; }
#main_visual .main_slider .slide_03:nth-child(3) {
  background-image: url("../images/mv_03.jpg");
  background-position: 50% 100%; }
#main_visual .main_slider .slide_04:nth-child(4) {
  background-image: url("../images/mv_04.jpg");
  background-position: 50% 50%; }
#main_visual .main_slider .slide_05:nth-child(5) {
  background-image: url("../images/mv_05.jpg");
  background-position: 50% 50%; }
#main_visual .main_slider .slide_06:nth-child(6) {
  background-image: url("../images/mv_06.jpg");
  background-position: 50% 50%; }
#main_visual img {
	width: 100%;
  height: 100vh;
  object-fit: cover;
	cursor: pointer!important;
}
@media screen and (min-width: 1000px){
	#main_visual .main_slider li {
  height: 100vh; }
} 
@media screen and (max-width: 999px) {
	#main_visual img {
	width: 100%;
  height: auto;
  object-fit: cover;
	cursor: pointer!important;
}
}
/*------------------------------------------------------------------------------------------------------------------------------------

lead

------------------------------------------------------------------------------------------------------------------------------------*/
#lead {
  padding: 85px 0;
  background: url("../images/bg_01.png"); }
  #lead h2 {
    margin-bottom: 98px; }
  #lead section {
    text-align: center;
    background: url("../images/image_lead.png") no-repeat 50% 50%/100% auto; }
    #lead section .text {
      display: flex;
      justify-content: center;
      text-align: left; }
      #lead section .text p {
        -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        line-height: 4em; }
.lead_fig {
	position:relative;	
}
.lead_fig .fig {
	position: absolute;
	width: 25%;
}
.lead_fig .fig_01 {
	top: 30px;
	left: 0;
}
.lead_fig .fig_02 {
	top: 30px;
	right: 0;
	max-width: 452px
}
.lead_fig .fig_03 {
	bottom: 0;
	left: 134px;
	/*max-width: 404px*/
}
.lead_fig .fig_04 {
	bottom: 0;
	right: 150px;
	max-width: 449px;
}
@media screen and (min-width: 1300px) {
	.lead_fig .fig_01 {
		object-fit: fill;
		height: 320px;
		overflow: hidden;
	}
	.lead_fig .fig_02 {
		object-fit: fill;
		height: 320px;
		overflow: hidden;
	}
	.lead_fig .fig_03 {
		object-fit: fill;
		height: 280px;
		overflow: hidden;
	}
	.lead_fig .fig_04 {
		object-fit: fill;
		height: 270px;
		overflow: hidden;
	}
}
@media screen and (min-width: 1000px) {
  #lead .text p {
    transform: translateX(-20px); } }
@media screen and (max-width: 999px) {
  #lead {
    padding-bottom: 0; }
    #lead section {
      background: none; } }
/*------------------------------------------------------------------------------------------------------------------------------------

concept

------------------------------------------------------------------------------------------------------------------------------------*/
#concept {
	background: url("../images/bg_02.png");
}
#concept .column {
	display: flex;
	max-width: 100%;
}
#concept .column .summary {
    width: 50%;
    padding:5% 5% 0;
}
#concept .column .summary img {
    max-width: 320px;
    margin-bottom: 20px;
}
#concept .column p {
    line-height: 2.6; 
}
#concept .column .fig {
    width: 50%;
}

@media screen and (max-width: 999px) {
  #concept {
    padding-top: 50px; }
    #concept .column {
      flex-wrap: wrap; }
      #concept .column .summary,
      #concept .column .fig {
        width: 100%; }
      #concept .column .summary img {
        max-width: 200px; } }
/*------------------------------------------------------------------------------------------------------------------------------------

radium

------------------------------------------------------------------------------------------------------------------------------------*/
#radium {
  background: url("../images/bg_02.png");
  padding: 140px 0; }
#radium .column {
	display: flex;
	max-width: 100%;
}
    #radium .column .summary {
      width: 50%;
      padding: 5%;
      order: 2; }
      #radium .column .summary img {
        max-width: 506px;
        margin-bottom: 20px; }
    #radium .column p {
      line-height: 2.6; }
    #radium .column .fig {
      order: 1;
      width: 50%;
      position: relative; }
      #radium .column .fig .hamon {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("../images/image_02.jpg") no-repeat 100% 0/cover; }
  #radium .figs {
    max-width: 1600px;
    margin: 110px auto 0;
    padding: 0 50px;
    display: flex;
    column-gap: 30px; }
    #radium .figs li {
      width: calc( 100%/3);
position: relative;
}
#radium .figs span {
	background: rgba(255,255,255,0.85);
	position: absolute;
	right: 20px;
	top: 20px;
	padding: 5px 10px;
	-webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
}
@media screen and (max-width: 999px) {
  #radium {
    padding: 50px 0; }
    #radium .column {
      flex-wrap: wrap; }
      #radium .column .summary,
      #radium .column .fig {
        width: 100%; }
      #radium .column .fig {
        order: 2; }
      #radium .column .summary img {
        max-width: 320px; }
    #radium .figs {
      flex-wrap: wrap; }
      #radium .figs li {
        width: 100% !important;
        margin-bottom: 30px; } }
/*------------------------------------------------------------------------------------------------------------------------------------

dishes

------------------------------------------------------------------------------------------------------------------------------------*/
#dishes {
  background: url("../images/bg_01.png");
  padding: 90px 0; }
  #dishes .dishes_mv {
    position: relative; }
    #dishes .dishes_mv h2 {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      padding: 0 5%; }
      #dishes .dishes_mv h2 img {
        max-width: 613px; }
  #dishes .h_image img {
    max-width: 190px;
    margin-bottom: 60px; }
  #dishes .column_header {
    text-align: center; }
  #dishes .column {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 90%;
    margin: 55px auto 0; }
    #dishes .column .summary {
      width: 50%;
      padding: 0 5%; }
      #dishes .column .summary img {
        max-width: 320px;
        margin-bottom: 20px; }
    #dishes .column p {
      line-height: 2.6;
      transform: translateY(-15px);
      margin-bottom: 30px; }
    #dishes .column .figs {
      display: flex;
      width: 50%;
      column-gap: 30px; }
      #dishes .column .figs li {
        width: 50%; }

@media screen and (max-width: 999px) {
  #dishes {
    padding: 50px 0; }
    #dishes .dishes_mv h2 {
      padding: 0;
      width: 90%; }
    #dishes .column {
      flex-wrap: wrap; }
      #dishes .column .summary {
        width: 100%; }
      #dishes .column .figs {
        width: 100%;
        justify-content: center; }
        #dishes .column .figs li {
          width: 40%; }
    #dishes .h_image img {
      max-width: 120px;
      margin-bottom: 40px; } }
/*------------------------------------------------------------------------------------------------------------------------------------

rooms

------------------------------------------------------------------------------------------------------------------------------------*/
#rooms .h_image {
  max-width: 48px;
  margin-right: 30px; }
#rooms section {
  padding: 80px 5%; }
#rooms .column {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  position: relative; }
  #rooms .column::before {
    content: "";
    width: 10px;
    height: calc(100% - 34px);
    background: url("../images/frame_side.png");
    position: absolute;
    top: 17px;
    left: 0; }
  #rooms .column::after {
    content: "";
    width: 10px;
    height: calc(100% - 34px);
    background: url("../images/frame_side.png");
    position: absolute;
    top: 17px;
    right: 0; }
  #rooms .column .frame {
    position: absolute;
    max-width: 750px; }
    #rooms .column .frame.frame_lb {
      left: 0;
      bottom: 0;
      transform: scale(1, -1); }
    #rooms .column .frame.frame_rt {
      right: 0;
      top: 0;
      transform: scale(-1, 1); }
    #rooms .column .frame.frame_rb {
      right: 0;
      bottom: 0;
      transform: scale(-1, -1); }
#rooms .summary {
  width: 46%;
  padding: 50px 30px 20px;
  display: flex;
  justify-content: space-around;
  line-height: 2.4; }
#rooms h2 {
  margin-bottom: 20px; }
#rooms .btn {
  margin-top: 40px;
  border: solid 1px #636363; }
#rooms .slider {
  width: 54%; }

@media screen and (max-width: 999px) {
  #rooms .column {
    flex-wrap: wrap;
    padding-bottom: 50px; }
    #rooms .column::before, #rooms .column::after {
      display: none; }
  #rooms .summary,
  #rooms .slider {
    width: 100%; } }
/*------------------------------------------------------------------------------------------------------------------------------------

news

------------------------------------------------------------------------------------------------------------------------------------*/
#news {
  padding: 80px 0;}
  #news > * {
    font-family: 'Noto Sans JP', sans-serif; }
  #news h2 {
    text-align: center; }
    #news h2.h_image img {
      max-width: 158px; }
  #news dl {
    border-top: solid 1px #ccbca6;
    width: 90%;
    max-width: 1290px;
    margin: 0 auto;
    display: flex;
    align-items: center; }
    #news dl:last-of-type {
      border-bottom: solid 1px #ccbca6; }
  #news dt, #news dd {
    padding: 16px; }
  #news dt {
    font-weight: normal;
    width: 14em; }
    #news dt .category {
      display: block;
      padding: 10px 20px;
      line-height: 1;
      text-align: center;
color: #fff;}
#news dt .category a {
	color: #fff;
}
      #news dt .category.c_media {
        background: #998a61; }
      #news dt .category.c_plan {
        background: #244421; }
	  #news dt .category.c_info {
        background: #822e2b; }
 #news dt .category.c_notice {
        background: #666; }
#news dt .category.c_new {
        background: #f49500; }
  #news dd {
    text-align: left; }
  #news .date {
    width: 6em; 
white-space: nowrap;}
#news dt + dd {
	width: 14%; 
}
#news dd:last-of-type{
	flex: 1;
}

@media screen and (max-width: 999px) {
  #news {
    padding-top: 50px;}
    #news h2.h_image img {
      max-width: 120px; }
    #news dl {
      flex-wrap: wrap; }
    #news dd:last-of-type {
		display: block;
		width: 100%!important;
		flex: 0 1 auto;
      padding-top: 0; } 
}


.banners .column {
	width: 90%;
	max-width: 600px!important;
	margin: 0 auto;
}

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

plan

------------------------------------------------------------------------------------------------------------------------------------*/
#plan {
  background: url("../images/bg_03.png");
  padding: 60px 5%; }
  #plan > * {
    font-family: 'Noto Sans JP', sans-serif; }
  #plan .column_header {
    text-align: center;
    margin-bottom: 60px; }
#plan .subtitle {
	background: #822e2b;
	color:#fff;
	line-height: 1;
	padding:10px 20px;
	display: inline-block;
}
#plan .subtitle +p{
	margin-bottom: 30px;
}
  #plan .h_image img {
    max-width: 498px; }
  #plan .items {
    display: flex;
    column-gap: 50px; }
    #plan .items .item {
      position: relative; }
      #plan .items .item img {
        margin-bottom: 10px; }
      #plan .items .item h3 {
        line-height: 1.6; }
      #plan .items .item .badge {
        position: absolute;
        top: 0;
        left: 0;
        transform: translate(-40%, -40%);
        width: 90px;
        height: 90px;
        background: #998a61;
        border-radius: 50%;
        color: #fff;
        font-size: 1.6rem;
        line-height: 1.1;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        letter-spacing: 0; }
#plan .items .ex_item img {
	border: solid 10px #998a61;
	margin-bottom: 0;
}
#plan .items .ex_item {
	background: #998a61;
	color: #fff;
}
#plan .items .ex_item a {
	color: #fff;	
}
#plan .items .ex_item h3,
#plan .items .ex_item p {
	padding-left: 20px
}


  #plan .fee {
    text-align: right; }

@media screen and (max-width: 999px) {
  #plan .h_image img {
    max-width: 360px; }

  .items {
    flex-wrap: wrap; }
    .items .item {
      width: 80%;
      margin: 0 auto 50px; } }

/*====================================================================================================
スライダーのためのcss
====================================================================================================*/
.slider {
  width: 100%;
  margin: 0 auto; }

.slider img {
  width: 100%;
  height: auto; }

/*矢印の設定*/
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 3000;
  top: 42%;
  cursor: pointer;
  /*マウスカーソルを指マークに*/
  outline: none;
  /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #fff;
  /*矢印の色*/
  border-right: 2px solid #fff;
  /*矢印の色*/
  height: 25px;
  width: 25px; }

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: 2.5%;
  transform: rotate(-135deg); }

.slick-next {
  /*次へ矢印の位置と形状*/
  right: 2.5%;
  transform: rotate(45deg); }

/*ドットナビゲーションの設定*/
.slick-dots {
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%); }

#main_visual .slick-dots,
.main_slider .slick-dots {
  display: none!important; }

.slick-dots li {
  display: inline-block;
  margin: 0 20px; }

.lead_slider .slick-dots {
  width: 100%; }

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px;
  /*ドットボタンのサイズ*/
  height: 8px;
  /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #fff;
  /*ドットボタンの色*/
  padding: 0;
  border: none;
  position: relative; }

.slick-dots .slick-active button::before {
  content: "";
  width: 24px;
  height: 24px;
  border: solid 1px #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-8px, -8px); }


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

page 下層ページ共通

------------------------------------------------------------------------------------------------------------------------------------*/
.page #main {
  background: url("../images/bg_02.png");
  padding-bottom: 100px; }
.page .page_mv {
  height: 25vh;
  background: no-repeat 50%/cover;
  margin-bottom: 80px; }

.page .column {
  max-width: 1000px;
  margin: 0 auto; }

.page .column h2 {
  margin-bottom: 20px; }

.page #contents_header h2 {
  text-align: center;
  margin-bottom: 80px; }

.page_main_slider {
  position: relative;
  z-index: 1;
  height: 60vh;
  margin-bottom: 80px; }
  .page_main_slider li {
    height: 60vh; }

.page_nav {
  display: flex;
  justify-content: center;
  margin-bottom: 80px; }
  .page_nav li {
    border-right: solid 1px #aaa; }
    .page_nav li a {
      padding: 0px 16px 0 20px;
      display: block;
      text-align: center; }


.faq .page_mv,
.clause .page_mv,
.privacy .page_mv,
.sanage-densetsu .page_mv,
.gallery .page_mv,
.contact .page_mv{
	display: none;
}


@media screen and (min-width: 1000px) {
  .page_nav li:last-child {
    border: none; } }
@media screen and (max-width: 999px) {
  .page article {
    padding: 0 7%; }

  .page_main_slider {
    height: 30vh; }
    .page_main_slider li {
      height: 30vh;
      background-size: cover; }

  .page_nav {
    flex-wrap: wrap;
    border-top: solid 1px #aaa;
    width: 80%;
    margin: 0 auto 100px; }
    .page_nav li {
      width: 100%;
      border-right: 0;
      border-bottom: solid 1px #aaa; }
      .page_nav li a {
        padding: 20px; } }
/*------------------------------------------------------------------------------------------------------------------------------------

rooms お部屋

------------------------------------------------------------------------------------------------------------------------------------*/
.rooms {
  /*
  table::before{
  	content: "";
  	width: 100px;
  	height: 1px;
  	background: #ccc;
  	position: absolute;
  	top: -20px;
  	left: 50%;
  	transform: translateX(-50%);
  }
  */
  /*
  tr:first-of-type {
  	border-bottom: solid 1px #eee;
  }
  th,
  td {
  	font-weight: normal;
  	font-size: 1.3rem;
  	text-align: left;
  	padding: 6px 10px;
  }
  th{
  	background: #ddd;
  }
  td {
  	background: #fff
  }
  */ }
.rooms .page_nav {
	display: flex;
	flex-wrap: wrap;
}
.rooms .page_nav li {
	width: 25%;
	margin-bottom: 30px;
}
  .rooms .page_mv {
    background-image: url("../images/mv_4.jpg"); }
  .rooms .column {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 100px;
    margin-bottom: 100px;
    position: relative; }
    .rooms .column::before {
      content: "";
      width: 200px;
      height: 1px;
      background: #ccc;
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%); }
    .rooms .column:last-of-type {
      margin-bottom: 0; }
      .rooms .column:last-of-type::before {
        content: none; }
  .rooms h2 small {
    display: block;
    font-size: 1.6rem; }
  .rooms .summary {
    width: 45%;
    font-size: 1.6rem;
    line-height: 2; }
  .rooms .fig {
    width: 50%; }
  .rooms table {
    margin-top: 30px;
    margin-bottom: 30px;
    position: relative; }
  .rooms th,
  .rooms td {
    font-weight: normal;
    font-size: 1.3rem;
    text-align: left;
    padding: 0 10px;
	  vertical-align: top!important;
}
  .rooms th {
    color: #937e3a; }
  .rooms #amenity {
    border: solid 1px #ccc;
    padding: 30px; }
    .rooms #amenity .summary {
      font-size: 1.3rem; }
      .rooms #amenity .summary dt {
        color: #937e3a; }
      .rooms #amenity .summary dd {
        margin-bottom: 1em; }
.rooms .slick-dots li {
  margin: 0 10px;
}
@media screen and (max-width: 999px) {
	.rooms .page_nav li {
	width: 100%;
		margin-bottom: 0;
}
  .rooms .column {
    margin-bottom: 50px;
    padding-bottom: 60px; }
  .rooms .summary,
  .rooms .fig {
    width: 100%; }
  .rooms .summary {
    order: 2; }
  .rooms .fig {
    margin-bottom: 30px; } }



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

spa 温泉

------------------------------------------------------------------------------------------------------------------------------------*/
.spa .page_mv {
  background-image: url("../images/mv_7.jpg"); }
.spa .column {
  margin-bottom: 80px;
  padding-bottom: 100px;
  position: relative; }
  .spa .column:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0; }
  .spa .column:not(:last-of-type)::after {
    content: "";
    width: 200px;
    height: 1px;
    background: #aaa;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); }
.spa .summary {
  line-height: 2;
  margin-bottom: 30px; }
.spa .item img {
  object-fit: cover;
  width: 100%;
  height: 60vh; }
.spa #drink .banner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 30px;
  width: 90%;
  margin: 50px auto;
  position: relative; }
  .spa #drink .banner::before {
    content: "";
    width: 10px;
    height: calc(100% - 34px);
    background: url("../images/frame_side.png");
    position: absolute;
    top: 17px;
    right: 0; }
  .spa #drink .banner::after {
    content: "";
    width: 10px;
    height: calc(100% - 34px);
    background: url("../images/frame_side.png");
    position: absolute;
    top: 17px;
    left: 0; }
  .spa #drink .banner .frame {
    position: absolute;
    max-width: 750px; }
    .spa #drink .banner .frame.frame_lt {
      top: 0;
      left: 0; }
    .spa #drink .banner .frame.frame_lb {
      left: 0;
      bottom: 0;
      transform: scale(1, -1); }
    .spa #drink .banner .frame.frame_rt {
      right: 0;
      top: 0;
      transform: scale(-1, 1); }
    .spa #drink .banner .frame.frame_rb {
      right: 0;
      bottom: 0;
      transform: scale(-1, -1); }
  .spa #drink .banner h3 {
    margin-bottom: 1em;
    font-size: 2.6rem; }
  .spa #drink .banner .summary {
    width: 55%;
    display: flex;
    flex-direction: column; }
  .spa #drink .banner .fig {
    width: 40%; }
  .spa #drink .banner .btn {
    margin: auto 0 0; }
.spa #benefits {
  padding-bottom: 0; }
  .spa #benefits table {
    border-top: solid 1px #aaa;
    width: 90%;
    margin: 50px auto; }
  .spa #benefits th,
  .spa #benefits td {
    font-weight: normal;
    text-align: left;
    font-size: 1.6rem;
    border-bottom: solid 1px #aaa; }
  .spa #benefits th {
    color: #937e3a;
    white-space: nowrap;
    vertical-align: top;
    border-right: solid 1px #aaa;
    padding: 10px 30px 10px 10px; }
  .spa #benefits td {
    padding: 10px 10px 10px 30px; }
  .spa #benefits strong {
    display: block; }
  .spa #benefits::after {
    content: none; }
  .spa #benefits dl {
    width: 90%;
    padding: 20px;
    margin: 50px auto 0;
    background: #eee; }
  .spa #benefits dt {
    color: #937e3a; }
  .spa #benefits dd + dt {
    margin-top: 1em; }
.spa #daytrip {
  max-width: 1000px;
  margin: 0 auto 100px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  align-items: center;
  padding: 10px 0 0 0; }
  .spa #daytrip h2 {
    margin-bottom: 20px; }
  .spa #daytrip::before {
    content: "";
    width: 10px;
    height: calc(100% - 34px);
    background: url("../images/frame_side.png");
    position: absolute;
    top: 17px;
    right: 0; }
  .spa #daytrip::after {
    content: "";
    width: 10px;
    height: calc(100% - 34px);
    background: url("../images/frame_side.png");
    position: absolute;
    top: 17px;
    left: 0; }
  .spa #daytrip .frame {
    position: absolute;
    max-width: 750px; }
    .spa #daytrip .frame.frame_lt {
      top: 0;
      left: 0; }
    .spa #daytrip .frame.frame_lb {
      left: 0;
      bottom: 0;
      transform: scale(1, -1); }
    .spa #daytrip .frame.frame_rt {
      right: 0;
      top: 0;
      transform: scale(-1, 1); }
    .spa #daytrip .frame.frame_rb {
      right: 0;
      bottom: 0;
      transform: scale(-1, -1); }
  .spa #daytrip .summary {
    width: 45%;
    padding: 30px; }
  .spa #daytrip .fig {
    width: 55%;
    padding: 0 30px 0 0;
    align-items: center; }
  .spa #daytrip ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
    .spa #daytrip ul li {
      width: 47%; }
.spa #details h2 {
  margin-bottom: 60px; }
.spa #details dt {
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-size: 2rem;
  position: relative; }
  .spa #details dt::before {
    content: "";
    width: 50px;
    height: 1px;
    background: #aaa;
    position: absolute;
    bottom: 0;
    left: 0; }
.spa #details dd {
  line-height: 2;
  margin-bottom: 50px; }
  .spa #details dd img {
    width: 80%;
    display: block;
    margin: 30px auto; }

@media screen and (max-width: 999px) {
  .spa .column {
    margin-bottom: 40px;
    padding-bottom: 50px; }
  .spa .summary,
  .spa .fig {
    width: 100%; }
  .spa .summary {
    order: 2; }
  .spa .fig {
    margin-bottom: 30px; }
  .spa .item img {
    height: 25vh; }
  .spa #drink .banner {
    padding: 30px 20px 20px;
    margin: 50px auto 20px;
    padding-bottom: 0; }
    .spa #drink .banner::before {
      content: none; }
    .spa #drink .banner::after {
      content: none; }
    .spa #drink .banner .summary,
    .spa #drink .banner .fig {
      width: 100%; }
  .spa #benefits table {
    border-top: none;
    width: 100%;
    margin: 50px auto; }
  .spa #benefits th,
  .spa #benefits td {
    display: block;
    width: 100%;
    font-size: 1.5rem; }
  .spa #benefits th {
    border: solid #aaa;
    border-width: 1px 0; }
  .spa #benefits td {
    border: none;
    padding: 10px;
    margin-bottom: 30px; }
  .spa #benefits dl {
    width: 100%;
    padding: 20px;
    margin: 50px auto 0;
    background: #eee;
    border: solid 1px #aaa; }
  .spa #benefits dt {
    color: #937e3a; }
  .spa #benefits dd + dt {
    margin-top: 1em; }
  .spa #daytrip {
    padding: 30px 0 0; }
    .spa #daytrip::before {
      content: none; }
    .spa #daytrip::after {
      content: none; }
    .spa #daytrip .summary,
    .spa #daytrip .fig {
      width: 100%;
      padding: 0 20px; } }
/*------------------------------------------------------------------------------------------------------------------------------------

cuisine お料理

------------------------------------------------------------------------------------------------------------------------------------*/
.cuisine .page_mv {
  background-image: url("../images/mv_2.jpg"); }
.cuisine #main {
  padding-bottom: 0; }
.cuisine #contents_header {
  max-width: 1100px;
  margin: 0 auto 100px; }
  .cuisine #contents_header .catch {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem; }
.cuisine #seasons {
  margin: 0 calc(50% - 50vw);
  padding-bottom: 50px;
  max-width: 100%; }
  .cuisine #seasons .column {
    max-width: 80%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 100px; }
    .cuisine #seasons .column h2 {
      margin-bottom: 30px; }
    .cuisine #seasons .column .summary {
      width: 40%;
      text-align: center; }
      .cuisine #seasons .column .summary p {
        display: inline-block;
        text-align: left; }
    .cuisine #seasons .column .fig {
      width: 55%; }
.cuisine #cuisine_menu {
  background: url("../images/bg_03.png");
  padding: 80px 5%; }
  .cuisine #cuisine_menu h2 {
    max-width: 1000px;
    margin: 0 auto 50px; }
  .cuisine #cuisine_menu .column {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #fffdf3;
    padding: 30px; }
    .cuisine #cuisine_menu .column .summary {
      width: 45%; }
    .cuisine #cuisine_menu .column .fig {
      width: 50%;
      padding-top: 50px; }
  .cuisine #cuisine_menu .menu_dinner {
    margin-bottom: 80px; }
  .cuisine #cuisine_menu h3 {
    margin-bottom: 1em;
    border-bottom: solid 1px #666;
    display: inline-block;
    padding-bottom: 5px; }
  .cuisine #cuisine_menu dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 1.5rem; }
    .cuisine #cuisine_menu dl dt {
      width: 20%;
      text-align: right;
      padding: 5px;
      position: relative; }
      .cuisine #cuisine_menu dl dt::after {
        content: ":";
        color: #999;
        position: absolute;
        right: -13px;
        top: 4px; }
    .cuisine #cuisine_menu dl dd {
      width: 75%;
      padding: 5px; }
.cuisine #restaurant {
  padding: 80px 5%; }
.cuisine #restaurant section:first-of-type {
	margin-bottom: 100px;
}
@media screen and (min-width: 1000px) {
  /*.cuisine .item {
    height: 60vh; }*/
  .cuisine #summer .summary,
  .cuisine #winter .summary {
    order: 2; } }
@media screen and (max-width: 999px) {
  .cuisine #seasons {
    padding-bottom: 0; }
    .cuisine #seasons .column .summary,
    .cuisine #seasons .column .fig {
      width: 100%; }
    .cuisine #seasons .column .summary {
      margin-bottom: 30px; }
  .cuisine #cuisine_menu .column .summary,
  .cuisine #cuisine_menu .column .fig {
    width: 100%; } }
/*------------------------------------------------------------------------------------------------------------------------------------

facilities 施設・サービスのご案内

------------------------------------------------------------------------------------------------------------------------------------*/
.facilities .page_mv {
  background-image: url("../images/mv_6.jpg"); }
.facilities .column {
  margin-bottom: 80px;
  padding-bottom: 100px;
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
  .facilities .column .summary {
    width: 40%; }
  .facilities .column .fig {
    width: 55%; }
  .facilities .column:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0; }
  .facilities .column:not(:last-of-type)::after {
    content: "";
    width: 200px;
    height: 1px;
    background: #aaa;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); }
.facilities #shop h2 small {
  display: block;
  font-size: 1.6rem; }
.facilities #salon h2 {
  font-size: 2.5rem; }
  .facilities #salon h2 small {
    display: block;
    font-size: 1.8rem; }
.facilities #map{
	background: #ebe9e7;
}
.facilities #map figure {
  mix-blend-mode: multiply; }
.facilities #map img {
  width: 80%;
  margin: 0 auto;
  display: block; }

@media screen and (max-width: 999px) {
  .facilities .column {
    margin-bottom: 40px;
    padding-bottom: 50px; }
    .facilities .column .summary,
    .facilities .column .fig {
      width: 100%; }
  .facilities #salon h2 {
    font-size: 2rem; } }
/*------------------------------------------------------------------------------------------------------------------------------------

guide 周辺ガイド

------------------------------------------------------------------------------------------------------------------------------------*/
.guide .page_mv {
  background-image: url("../images/mv_3.jpg"); }
.guide .box_container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between
}
.guide .panel .box {
    width: calc(100% / 3 - 30px);
    margin-bottom: 30px;
}
.guide .panel .fig {
    margin-bottom: 10px;
}
.guide .others li {
  margin-bottom: 1em;
  position: relative;
  padding-left: 1em; 
}
.guide .others li::before {
    content: "";
    width: 1px;
    height: 100%;
    background: #999;
    position: absolute;
    top: 0;
    left: 0;
}
.guide .box_container::after{
  content:"";
  display: block;
  width:30%;
}
@media screen and (max-width: 750px){
  .guide .panel {
    margin-bottom: 50px; 
	}
  .guide .panel .box {
    width: 47%; 
	} 
}


/*====================================================================================================
タブメニューのためのcss
====================================================================================================*/

.tab-area {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	cursor: pointer;
	margin-bottom: 80px;
}
.tab {
	width: 22%;
	padding:10px 20px;
	text-align: center;
	border: solid 1px #ccc;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.tab small {
	display: block;width: 100%;
}
.tab.active {
  background:#fff;
	border: solid 1px #fff
}
.panel {
  display: none;
  text-align: center;
}
.panel.active {
  display: block;
}
@media screen and (max-width: 999px){
	.tab-area {
		margin-bottom: 40px;
	}
	.tab {
		width: 47%;
		margin-bottom: 20px;
	}
}
/*------------------------------------------------------------------------------------------------------------------------------------

privacy プライバシーポリシー

------------------------------------------------------------------------------------------------------------------------------------*/
.privacy #main {
  padding-top: 150px; }
.privacy .column {
  margin-bottom: 60px; }
  .privacy .column li {
    font-size: 1.5rem;
    list-style: disc;
    margin-left: 2em;
    margin-bottom: 0.5em; }
.privacy p {
  margin-bottom: 0; }
.privacy h3 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 0.5em; }
.privacy form input,
.privacy form textarea {
  border: solid 1px #ccc;
  padding: 5px;
  font-size: 1.8rem;
  width: 100%;
  margin-bottom: 1em; }
.privacy form .send_btn input {
  padding: 10px; }

@media screen and (max-width: 999px) {
  .privacy #main {
    padding-top: 100px; }
  .privacy #contents_header h2 {
    margin-bottom: 30px; } }
/*------------------------------------------------------------------------------------------------------------------------------------

clause 宿泊約款

------------------------------------------------------------------------------------------------------------------------------------*/
.clause #main {
  padding-top: 150px; }
.clause .column {
  margin-bottom: 60px; }
  .clause .column li {
    font-size: 1.5rem;
    list-style: disc;
    margin-left: 2em;
    margin-bottom: 0.5em; }
.clause p {
  font-size: 1.5rem;
  margin-bottom: 0.5em; }
.clause h3 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 0.5em; }
.clause form input,
.clause form textarea {
  border: solid 1px #ccc;
  padding: 5px;
  font-size: 1.8rem;
  width: 100%;
  margin-bottom: 1em; }
.clause form .send_btn input {
  padding: 10px; }

@media screen and (max-width: 999px) {
  .clause #main {
    padding-top: 100px; }
  .clause #contents_header h2 {
    margin-bottom: 30px; } }
/*------------------------------------------------------------------------------------------------------------------------------------

access アクセス

------------------------------------------------------------------------------------------------------------------------------------*/
.access .page_mv {
  background-image: url("../images/mv_1.jpg"); }
.access #contents_header {
  margin-bottom: 100px; }
.access iframe {
  width: 100%;
  border: none;
  height: 40vh;
  margin-bottom: 60px; }
.access .carnav {
  text-align: center;
  border: solid 1px #ccc;
  padding: 30px; }
.access .carnav h3 {
    margin-bottom: 0.8em;
    padding-bottom: 5px;
    display: inline-block;
    border-bottom: solid 1px #ccc; }
.access .carnav p {
    display: block; }
.access .carnav .parking {
    margin-bottom: 0; }
.access .carnav span {
    color: #937e3a;
    font-size: 3rem; }
.access #route .column {
  margin-bottom: 100px; }
.access #route .bus {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center; }
.access #route .bus .summary {
    width: 60%; }
.access #route .bus .fig {
    width: 35%; }
.access #route .bus ul {
    list-style: disc;
    font-size: 1.6rem;
    margin: 0 0 1em 2em; }
.access #route .bus .small {
    font-size: 1.4rem;
    padding-left: 1em;
    text-indent: -1em; }
.access #route .bus_information {
  text-align: center; }
.access #route .bus_information .btn {
    max-width: 600px;
    padding: 20px;
    margin: 0 auto;
}

@media screen and (max-width: 999px) {
  .access #route .bus {
    margin-bottom: 50px; }
    .access #route .bus .summary,
    .access #route .bus .fig {
      width: 100%; }
    .access #route .bus .summary {
      margin-bottom: 30px; }
  .access #route .bus_information {
    margin-bottom: 0; } }
/*------------------------------------------------------------------------------------------------------------------------------------

gallery 写真集

------------------------------------------------------------------------------------------------------------------------------------*/
.gallery #main {
  padding-top: 150px; }
.gallery .photos {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
  .gallery .photos li {
    width: 30%;
    margin-bottom: 5%; }

@media screen and (max-width: 999px) {
  .gallery #main {
    padding-top: 100px; }
  .gallery #contents_header h2 {
    margin-bottom: 30px; }
  .gallery .photos li {
    width: 47%; }
    .gallery .photos li a {
      pointer-events: none; } }

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

news

------------------------------------------------------------------------------------------------------------------------------------*/
.news .page_mv {
  background-image: url("../images/mv_5.jpg");
}
.news .entry {
	width: 80%;
	margin: 0 auto 100px;
	max-width: 800px;
}
.news .entry_head{
	display: flex;
	flex-wrap: wrap;
}
.news .category {
	font-size: 1.3rem;
	display: block;
	padding: 10px 20px;
	line-height: 1;
	color: #fff;
	text-align: center;
}
.news .category a {
	color: #fff;
}
.news .category.c_media {
	background: #998a61;
}
.news .category.c_plan {
	background: #244421; 
}
.news .category.c_info {
    background: #822e2b;
}
.news .category.c_notice {
        background: #666; }
.news .category.c_new {
	background: #f49500;
}
.news .entry h2 {
	width: 100%
}
.news .entry_body {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.news .entry time {
	font-size: 1.3rem;
	color:#666;
	padding: 10px 20px 10px 0;
	line-height: 1;
}
.news .entry .summary {
	width: 50%;
}
.news .entry .fig {
	width: 45%;
}
.news .entry_body table {
	margin: 20px auto
}
.news .entry_body th,
.news .entry_body td{
	padding: 10px 20px;
	border-bottom: solid 1px #ccc;
}
.news .entry_body th {
	white-space: nowrap;
}
.archive .archive_entry {
	width: 90%;
	max-width: 800px;
	margin: 0 auto 60px;
	padding-bottom: 50px;
	display: flex;
	justify-content: space-between;
	position: relative;
	border-bottom: solid 1px #aaa;
	flex-wrap: wrap;
}
.archive .entry_head{
	margin-bottom: 10px;
}
.archive .category{
	display: inline-block;
}
.archive .category a {
	line-height: 1;
}
.archive .archive_entry .fig{
	width: 40%;
}
.archive .archive_entry .summary{
	width: 52%
}

@media screen and (max-width: 999px){
	.news .entry .summary,
	.news .entry .fig,
	.archive .archive_entry .summary,
	.archive .archive_entry .fig {
		width: 100%	
	}
	.news .entry .summary{
		order: 2;
	}
	.news .entry h2 {
		margin-bottom: 20px;
	}
}

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

sanage-densetsu 猿投伝説

------------------------------------------------------------------------------------------------------------------------------------*/
.sanage-densetsu #footer {
	display: none!important
}
.sanage-densetsu .header_tel,
.sanage-densetsu .menu_lang,
.sanage-densetsu .menu_plan,
.sanage-densetsu .fix_tel{
	display: none!important;
}
.sanage-densetsu #main {
	padding-top: 150px;
	padding-bottom: 50px;
	color: #fff;
	background: #000
}
.sanage-densetsu p {
	line-height: 2.6;
	margin-bottom: 2em;
	font-feature-settings: "palt"!important;
}
.sanage-densetsu .content_container {
	background: url("../images/background.png") no-repeat 50% 105px/1600px auto;
}
.sanage-densetsu #contents_header .densetsu_logo img {
	display: block;
	margin: 0 auto 45px;
	width: 70%;
	max-width: 180px;
	height: auto;
}
.sanage-densetsu #densetsu_mv {
	background: url("../images/mv.jpg") 50%/cover;
	position: relative;
	height: 600px;
	margin-bottom: 105px;
}
.sanage-densetsu #densetsu_mv img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	max-width: 377px;
	height: auto;
}

.sanage-densetsu .column {
	max-width: 645px;
	margin: 0 auto 100px;
	text-align: center;
}
/*.sanage-densetsu .column_01 {
	background: url("../images/densetsu/bg_01.png") no-repeat 50% 0;
}*/
.sanage-densetsu .column_01 .column {
	background: url("../images/separate_01.png") no-repeat 50% 0/100% auto;
	padding-top: 105px;
	margin-bottom: 60px;
}
.sanage-densetsu .column_02 .column {
	background: url("../images/separate_02.png") no-repeat 50% 100%/100% auto;
	padding-bottom: 105px;
	margin-bottom: 20px;
}
.sanage-densetsu .column_01 .fig {
	padding-top: 30px
}
.sanage-densetsu .column_02 .fig img {
	width: 75%;
	max-width: 393px;
	height: auto;
	margin-bottom: 50px;
}
.sanage-densetsu h2 {
	margin-bottom: 40px!important;
}
.sanage-densetsu h2 img {
	max-width: 270px;
	height: auto;
}
.sanage-densetsu rt {
	letter-spacing: 0;
	font-size: 1.1rem;
}
.sanage-densetsu .note {
	text-align: center;
	font-size: 1.3rem;
}
@media screen and (max-width: 999px) {
	.sanage-densetsu #header h1 {
      display: none!important;
	}
	.sanage-densetsu #contents_header .densetsu_logo img {
		max-width: 160px;
		height: auto;
	}
	.sanage-densetsu h2 img {
		max-width: 200px;
		height: auto;
	}
	body.sanage-densetsu {
		padding-bottom: 0; 
	}
	.sanage-densetsu #contents_header {
		padding: 0;
	}
	.sanage-densetsu #densetsu_mv {
		margin-bottom: 60px;
	}
	.sanage-densetsu #densetsu_mv img {
		max-width: 335px;
		height: auto;
	}
	.sanage-densetsu .content_container {
		background: url("../images/bg_sp.png") no-repeat 50% 45%/100% auto;
	}
	.sanage-densetsu .column_01 .column {
		background: url("../images/separate_01.png") no-repeat 50% 0/90% auto;
		padding-top:75px;
	}
	.sanage-densetsu .column_02 .column {
		background: url("../images/separate_02.png") no-repeat 50% 100%/90% auto;
		padding-bottom: 55px;
	}
	.sanage-densetsu .column_01 {
		padding: 0;
	}
	.sanage-densetsu .column_02 {
		padding: 0;
	}
	.sanage-densetsu .column_02 .fig {
		padding-top: 30px;
	}
	.sanage-densetsu rt {
		transform: translateY(3px);
	}
	.sanage-densetsu p {
		font-size: 4vw;
		letter-spacing: 0.05em;
		padding: 0 1.5em;
		/*font-size: 3.4vw*/
	}
}
/*------------------------------------------------------------------------------------------------------------------------------------

faq 

------------------------------------------------------------------------------------------------------------------------------------*/
.faq #main {
	padding-top: 150px;
}
.faq .column dl {
	margin-bottom: 120px;
	position: relative;
}
.faq .column dl::after{
	content: "";
	width: 20%;
	height: 1px;
	background: #aaa;
	position: absolute;
	left: 40%;
	bottom: -60px;
}
.faq .column dt {
	font-weight: bold;
	margin-bottom: 2em;
	position: relative;
	padding-left: 50px;
}
.faq .column dt::before {
	content: "Q";
	position: absolute;
	top:-10px;
	left: 0;
	width: 40px;
	line-height: 40px;
	text-align: center;
	background: #333;
	color: #fff;
}
.faq .column dd {
	position: relative;
	padding-left: 50px;
}
.faq .column dd::before {
	content: "A";
	position: absolute;
	top:-10px;
	left: 0;
	width: 40px;
	line-height: 40px;
	text-align: center;
	border: solid 1px;
	font-weight: bold;
}


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

contact お問い合わせ

------------------------------------------------------------------------------------------------------------------------------------*/
.contact #main {
	padding-top: 150px;
}
.contact dl {
	width: 80%;
	max-width: 800px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto 50px;
}
.contact input,
.contact textarea {
	border: solid 1px #ccc;
	padding: 3px;
	font-size: 1.8rem;
	width: 100%;
}
.contact dt {
	width: 30%;
}
.contact dd {
	width: 65%;
}
.contact .mark {
	display: inline-block;
	margin-left: 1em;
	color: #AB0306;
}
.contact .btn_send {
	width: 80%;
	max-width: 800px;
	margin: 0 auto 50px;
}
.contact .btn_send input {
	padding: 20px;
	transition: all 0.3s;
}
.contact .btn_send:hover input {
	transform: translateY(-5px);
}


#insta-feed {
	padding: 5% 0;
}
#insta-feed .h_image img {
	max-width: 240px;
	margin:0 auto 30px;
	height: auto;
	display: block;
}
@media screen and (max-width: 999px){
	#insta-feed {
		padding: 5%;
	}
	#insta-feed .h_image img {
		max-width: 140px;
		margin-bottom: 0px;
}
}