@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: 'Times New Roman','Yu Mincho Light','YuMincho','Yu Mincho','游明朝体',"游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  background: #fff;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  body {
    margin-top: 70px;
  }
}

@media screen and (max-width: 767px) {
  body.fixed {
    position: fixed;
    right: 0;
    left: 0;
  }
}

a {
  color: #333;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out all;
  -o-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}

a:hover {
  opacity: .8;
}

img {
  max-width: 100%;
}

.container {
  width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 1250px) {
  .container {
    width: 94%;
  }
}

.left {
  float: left;
}

.right {
  float: right;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

.center {
  text-align: center;
}

.textRight {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .pcOnly {
    display: none;
  }
}

@media print, screen and (min-width: 768px) {
  .spOnly {
    display: none;
  }
}

@media print, screen and (min-width: 769px) {
  .allLink {
    cursor: pointer;
  }
  .allLink:hover {
    opacity: 0.8;
  }
  .allLink a:hover {
    opacity: 1;
  }
}

.displayNone {
  display: none;
}

.breadcrumb {
  font-family: Arial, Helvetica, "sans-serif";
  font-size: 16px;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    width: 94%;
    margin: 0 auto 20px;
  }
}

.breadcrumb a {
  color: #0081d6;
  text-decoration: underline;
}

@media all and (-ms-high-contrast: none) {
  .breadcrumb li:not(:first-child) a {
    line-height: 1;
  }
}

.breadcrumb li:not(:last-child) {
  margin-right: 10px;
  padding-right: 15px;
  position: relative;
}

.breadcrumb li:not(:last-child):after {
  content: "";
  width: 6px;
  height: 6px;
  margin: auto 0;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  border-radius: 1px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}

input[type="submit"] {
  font-family: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  border: 0;
  cursor: pointer;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  -webkit-transition: 0.3s ease-in-out all;
  -o-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}

input[type="submit"]:hover {
  opacity: .8;
}

input[type="text"], input[type="email"] {
  font-family: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  font-size: 16px;
  width: 100%;
  height: 40px;
  border: 1px solid #ccc;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

textarea {
  font-size: 16px;
  width: 100%;
  height: 220px;
  border: 1px solid #ccc;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  resize: none;
}

.checkbox {
  padding-left: 25px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
}

.checkbox:before, .checkbox:after {
  content: '';
  position: absolute;
}

.checkbox:before {
  width: 16px;
  height: 16px;
  border: 1px solid #c8c9ca;
  border-radius: 3px;
  z-index: 3;
  top: 0;
  left: 0;
}

.checkbox:after {
  width: 4px;
  height: 9px;
  margin-top: -6px;
  border-right: 3px solid #333;
  border-bottom: 3px solid #333;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  z-index: 1;
  display: block;
  top: 8px;
  left: 6px;
}

.checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: 41px 0px #fff;
  box-shadow: 41px 0px #fff;
  -moz-appearance: none;
  -webkit-appearance: none;
  z-index: 2;
  display: block;
  position: absolute;
  left: -40px;
}

.checkbox input[type="checkbox"]:checked {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.radio {
  padding-left: 22px;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
}

.radio:before, .radio:after {
  content: '';
  position: absolute;
}

.radio:before {
  width: 20px;
  height: 20px;
  border: 1px solid #ddd;
  border-radius: 50%;
  z-index: 3;
  top: 7px;
  left: 0;
}

.radio:after {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #5876b6;
  z-index: 1;
  top: 12px;
  left: 5px;
}

.radio input[type="radio"] {
  width: 20px;
  height: 20px;
  margin: 0;
  -webkit-box-shadow: 20px -1px #fff;
  box-shadow: 20px -1px #fff;
  -moz-appearance: none;
  -webkit-appearance: none;
  z-index: 2;
  position: absolute;
  top: 7px;
  left: -23px;
}

.radio input[type="radio"]:checked {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.radio input[type="radio"]:focus {
  opacity: 0.2;
  -webkit-box-shadow: 20px -1px #fff;
  box-shadow: 20px -1px #fff;
}

.selectBox01 {
  border: 1px solid #ccc;
  position: relative;
}

.selectBox01:after {
  content: "";
  width: 4px;
  height: 4px;
  margin: auto 0;
  border: 4px solid transparent;
  border-top: 4px solid #333;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 18px;
  right: 15px;
}

.selectBox01 select {
  font-family: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  width: 100%;
  height: 40px;
  background: none;
  padding-left: 15px;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  outline: none;
}

@media all and (-ms-high-contrast: none) {
  .selectBox01 select {
    width: 100% !important;
  }
}

.selectBox01 select:not(:target) {
  width: 130%\9;
}

.selectBox01 select::-ms-expand {
  display: none;
}

.headerTop {
  margin-top: -86px;
  padding-top: 86px;
}

.btn01 {
  font-family: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
}

.btn01 a {
  padding: 17px 0 16px;
  background: #fff;
  border: 1px solid #666;
  border-bottom: 5px solid #666;
  display: block;
}

.btn01 a:hover {
  color: #fff;
  background: #666;
  opacity: 1;
}

.verticalTop {
  vertical-align: top;
}

.mainContent {
  position: relative;
}

.mainContent .pagetop {
  display: none;
  width: 65px;
  position: fixed;
  right: 20px;
  bottom: 0;
  z-index: 10000;
  cursor: pointer;
  bottom: 80px !important; /* 下から80px上に移動（元の位置は0）*/
}

.lowerPage {
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .lowerPage {
    width: 100%;
    padding: 0 0 40px;
  }
}

.sideBar {
  width: 20%;
}

@media screen and (max-width: 1000px) {
  .sideBar {
    width: 25%;
  }
}

.sideBar ul {
  padding-bottom: 20px;
}

.sideBar li a {
  padding: 10px 0 10px 15px;
  display: block;
}

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

.sideBar li:not(:first-child) {
  background: #e4dfd0;
}

.sideBar li:not(:first-child) a {
  color: #42210b;
  font-size: 16px;
  padding: 6px 0 6px 15px;
}

@media screen and (max-width: 1100px) {
  .sideBar li:not(:first-child) a {
    font-size: 14px;
  }
}

.sideBar li:not(:first-child) .border01 {
  margin: 0 10px;
  border-bottom: 1px dashed #42210b;
  display: block;
}

.sideBar li:not(:first-child) .border01 a {
  padding: 6px 0 6px 5px;
}

.sideBar li:first-child .min {
  font-size: 11px;
}

.sideBar li:first-child a {
  color: #fff;
  font-size: 18px;
  background: #42210b;
}

@media screen and (max-width: 1100px) {
  .sideBar li:first-child a {
    font-size: 16px;
  }
}

.sideBar .accessLink li:not(:first-child) {
  border-bottom: 1px solid #42210b;
}

.sideBar .accessLink li:not(:first-child) a {
  font-size: 18px;
  padding: 6px 0 6px 25px;
  background: #fff;
}

@media screen and (max-width: 1100px) {
  .sideBar .accessLink li:not(:first-child) a {
    font-size: 16px;
  }
}

@media screen and (max-width: 900px) {
  .sideBar .accessLink li:not(:first-child) a {
    font-size: 14px;
  }
}

.sideBar .accessLink li:last-child {
  border-bottom: none;
}

.sideBar .movie a {
  padding: 0;
}

.sideBar .movie img {
  width: 100%;
}

.sideBar .movie span {
  font-size: 18px;
  display: inline-block;
}

@media screen and (max-width: 1100px) {
  .sideBar .movie span {
    font-size: 16px;
	margin-bottom: 20px;
  }
}

.mainContents {
  width: 75%;
}

@media screen and (max-width: 1000px) {
  .mainContents {
    width: 70%;
  }
}

@media screen and (max-width: 767px) {
  .mainContents {
    width: 100%;
  }
}

.mainContents h3 {
  font-size: 41px;
  font-weight: bold;
  position: relative;
}

@media screen and (max-width: 767px) {
  .mainContents h3 {
    font-size: 29px;
    width: 94%;
    margin: auto;
  }
}

.mainContents h3:before {
  content: '';
  width: 30px;
  height: 4px;
  background: #333;
  position: absolute;
  bottom: 0;
  left: 0;
}

.mainContents .snsPc {
  position: relative;
}

.mainContents .snsPc ul {
  position: absolute;
  right: 0;
  bottom: -20px;
}

.mainContents .snsPc li {
  width: 37px;
}

.mainContents .snsPc li:not(:last-child) {
  margin-right: 10px;
}

.mainContents .snsSp {
  width: 94%;
  margin: 0 auto 30px;
}

.mainContents .snsSp a {
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  padding: 4px 0 4px 30px;
  border-radius: 3px;
  display: block;
}

.mainContents .snsSp li {
  font-family: Arial, Helvetica, "sans-serif";
  width: 48%;
}

.mainContents .snsSp li:first-child a {
  background: url(../images/twitter_sp.png) no-repeat center left 10px, #138dda;
  background-size: 12px auto;
}

.mainContents .snsSp li:last-child a {
  background: url(../images/facebook_sp.png) no-repeat center left 10px, #283e79;
  background-size: 7px auto;
}

.mainContents .mainPost {
  padding: 40px 0;
}
.mainContents .mainPost .info{
  background: none;
  border-top: none;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .mainContents .mainPost {
    padding: 15px 0 40px;
  }
}

.mainContents .mainPost h4 {
  color: #aa9255;
  font-size: 32px;
  background: url(../images/bg_footer01.png) no-repeat center left;
  background-size: 1440px auto;
}

@media screen and (max-width: 767px) {
  .mainContents .mainPost h4 {
    font-size: 18px;
  }
}

.mainContents .mainPost h4 span {
  padding: 0 20px 0 15px;
  background: #1a1311;
  background-size: 35px auto;
  position: relative;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .mainContents .mainPost h4 span {
    padding: 0 15px 0 10px;
  }
}

.mainContents .mainPost h4 span:before {
  content: '';
  width: 37px;
  height: 100%;
  background: url(../images/arrow03.png) no-repeat center right;
  background-size: 37px auto;
  position: absolute;
  top: 0;
  right: -35px;
}

@media screen and (max-width: 767px) {
  .mainContents .mainPost h4 span:before {
    width: 20px;
    background-size: 20px auto;
    right: -20px;
  }
}

.mainContents .mainPost p {
  font-family: Arial, Helvetica, "sans-serif";
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .mainContents .mainPost p {
    font-size: 13px;
  }
}

@media screen and (max-width: 767px) {
  .mainContents .backBtn {
    width: 94%;
    margin: auto;
  }
}

.mainContents .backBtn a {
  color: #42210b;
  font-size: 27px;
  padding: 5px 0 5px 35px;
  background: url(../images/arrow01.png) no-repeat center left;
  background-size: 12px auto;
}

@media screen and (max-width: 767px) {
  .mainContents .backBtn a {
    font-size: 14px;
    padding: 5px 0 5px 20px;
    background-size: 10px auto;
  }
}

#MicrosoftTranslatorWidget {
  height: 33px !important;
  margin-top: 7px;
}

@media screen and (max-width: 767px) {
  #MicrosoftTranslatorWidget {
    margin-top: 2px;
  }
}

#MicrosoftTranslatorWidget span {
  display: inline-block !important;
}

#LauncherTranslatePhrase {
  padding: 2px 0 0 0 !important;
}

#WidgetLauncher {
  height: 25px !important;
}

#LauncherLogo {
  display: none !important;
}

#WidgetFloaterPanels {
  left: auto !important;
  right: 0 !important;
}

#WidgetFloaterPanels.LTRStyle div.DDStyle {
  left: auto !important;
  right: -215px;
}

.header {
  position: relative;
}

.header h1 {
  line-height: 0;
}

@media screen and (max-width: 1000px) {
  .header h1 {
    width: 350px;
    padding-top: 5px;
  }
}

@media screen and (max-width: 900px) {
  .header h1 {
    width: 300px;
    padding: 8px 0;
  }
}

@media screen and (max-width: 767px) {
  .header h1 {
    width: 170px;
    line-height: 0;
    padding: 0;
  }
}

@media screen and (max-width: 380px) {
  .header h1 {
    width: 150px;
  }
}

@media screen and (max-width: 350px) {
  .header h1 {
    width: 130px;
  }
}

.header h1 a {
  display: inline-block;
}

.header .headerPc {
  padding: 10px 0;
}

.header .mainVisual {
  background: url(../../images/mv_index01.png) no-repeat center center;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .header .mainVisual {
    margin-top: 50px;
  }
}

.header .mainVisual p {
  color: #fff;
  font-size: 60px;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  padding: 200px 0;
}

@media screen and (max-width: 1000px) {
  .header .mainVisual p {
    font-size: 40px;
    padding: 150px 0;
  }
}

@media screen and (max-width: 767px) {
  .header .mainVisual p {
    font-size: 24px;
    padding: 100px 0;
  }
}

.header .pcMenu {
  background: #1a1311;
  border-bottom: 8px solid #42210b;
  position: relative;
}

.header .pcMenu ul {
  max-width: 660px;
  margin: auto;
  padding: 20px 0;
}

@media screen and (max-width: 1000px) {
  .header .pcMenu ul {
    margin: 0;
  }
}

@media all and (-ms-high-contrast: none) {
  .header .pcMenu ul {
    max-width: 665px;
  }
}

.header .pcMenu li {
  line-height: 1.0;
}

.header .pcMenu li a {
  color: #fff;
  font-size: 18px;
  padding: 5px 30px;
  display: inline-block;
}

@media screen and (max-width: 850px) {
  .header .pcMenu li a {
    font-size: 16px;
  }
}

.header .pcMenu li:not(:nth-child(3)) a {
  padding: 15px 30px;
}

.header .pcMenu li:not(:last-child) {
  border-right: 1px solid #fff;
}

.header .pcMenu .min {
  font-size: 12px;
}

.header .jpBtn {
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.header .jpBtn a {
  color: #42210b;
  font-size: 20px;
  padding: 29px 15px 29px 50px;
  background: url(../images/ico_headre03.png) no-repeat center left 15px, #aa9255;
  background-size: 20px auto;
  display: block;
}

@media screen and (max-width: 850px) {
  .header .jpBtn a {
    font-size: 16px;
    padding: 31px 10px 31px 40px;
  }
}

@media screen and (max-width: 767px) {
  .header .spMenu {
    padding: 15px 0 10px;
    background: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
  }
  .header .spMenu .linksSp h6{
	  background: #42210b;
	  padding: 20px 0;
  }
  .header .spMenu .linksSp h6 .linkIco01{
	  top:31px;
  }
  
  
  
  
}

.header .spMenu .menuWrap01 {
  width: 94%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header .spMenu .menuWrap01 .rightContents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header .spMenu .menuWrap01 .rightContents #spBtn01 {
  cursor: pointer;
}

.header .spMenu .position {
  position: relative;
}

.header .spMenu .menu {
  color: #42210b;
  font-size: 12px;
  text-align: center;
  line-height: 1;
  margin-top: 1px;
}

@media screen and (max-width: 767px) {
  .header .lowerMargin {
    margin-top: 55px;
  }
}

@media screen and (max-width: 767px) {
  .header .splowerMenu {
    border-bottom: 1px solid #000;
  }
}

@media screen and (max-width: 767px) {
  .reservBtn {
    margin-right: 15px;
  }
}

@media screen and (max-width: 380px) {
  .reservBtn {
    margin-right: 10px;
  }
}

.reservBtn a {
  color: #fff;
  font-size: 27px;
  padding: 5px;
  background: -webkit-gradient(linear, left top, right top, from(#a5803d), color-stop(#ffe5a4), to(#a5803d));
  background: -webkit-linear-gradient(left, #a5803d, #ffe5a4, #a5803d);
  background: -o-linear-gradient(left, #a5803d, #ffe5a4, #a5803d);
  background: linear-gradient(90deg, #a5803d, #ffe5a4, #a5803d);
  border-radius: 3px;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .reservBtn a {
    font-size: 15px;
  }
}

@media screen and (max-width: 380px) {
  .reservBtn a {
    font-size: 14px;
  }
}

.reservBtn span {
  padding: 0 10px 0 50px;
  background: url(../images/ico_headre02.png) no-repeat center left 5px, #42210b;
  background-size: 40px auto;
  border-radius: 3px;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .reservBtn span {
    padding: 2px 10px 2px 35px;
    background: url(../images/ico_headre02.png) no-repeat center left 5px, #42210b;
    background-size: 24px auto;
  }
}

@media screen and (max-width: 350px) {
  .reservBtn span {
    padding: 2px 7px 2px 33px;
  }
}

.spBtn01 {
  width: 30px;
}

@media print, screen and (min-width: 768px) {
  .spBtn01 {
    display: none !important;
  }
}

.spBtn01 .menuBtn {
  width: 22px;
  height: 17px;
  margin: 0 auto;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  z-index: 9999;
  position: relative;
}

.spBtn01 .menuBtn.active {
  height: 18px;
  position: fixed;
  right: 3%;
  top: 15px;
}

.spBtn01 .menuBtn.active span {
  background: #fff;
}

.spBtn01 .menuBtn.active span:first-child {
  -webkit-transform: translateY(8px) rotate(-45deg);
  -moz-transform: translateY(8px) rotate(-45deg);
  -ms-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
}

.spBtn01 .menuBtn.active span:nth-child(2) {
  opacity: 0;
}

.spBtn01 .menuBtn.active span:last-child {
  -webkit-transform: translateY(-8px) rotate(45deg);
  -moz-transform: translateY(-8px) rotate(45deg);
  -ms-transform: translateY(-8px) rotate(45deg);
  transform: translateY(-8px) rotate(45deg);
}

.spBtn01 span {
  width: 22px;
  height: 3px;
  margin: 0 auto;
  background: #42210b;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
}

.spBtn01 span:first-child {
  top: 0;
}

.spBtn01 span:nth-child(2) {
  top: 7px;
}

.spBtn01 span:nth-child(3) {
  bottom: 0;
}

.spBtn01.active {
  width: 100%;
  height: 50px;
  background: #42210b;
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.spMenuArea01 {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  margin-top: 50px;
  padding-bottom: 50px;
  background: #42210b;
  border: 0;
  overflow-y: scroll;
  z-index: 9998;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  -ms-overflow-style: none;
}



.spMenuArea01::-webkit-scrollbar {
  display: none;
}

@media print, screen and (min-width: 768px) {
  .spMenuArea01 {
    display: none !important;
  }
}

.spMenuArea01 a {
  color: #000;
  padding: 15px;
  display: block;
  position: relative;
}

.spMenuArea01 a:after {
  content: "";
  width: 6px;
  height: 6px;
  margin: auto 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  border-radius: 2px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
}

.spMenuArea01 .dropBtn01 {
  color: #fff;
  padding: 15px;
  position: relative;
}

.spMenuArea01 .dropBtn01:before, .spMenuArea01 .dropBtn01:after {
  content: "";
  position: absolute;
}

.spMenuArea01 .dropBtn01:before {
  width: 14px;
  height: 1px;
  margin: auto 0;
  background: #fff;
  border: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  display: block;
  top: 0;
  right: 15px;
  bottom: 0;
  left: auto;
}

.spMenuArea01 .dropBtn01:after {
  width: 1px;
  height: 14px;
  background: #fff;
  border: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  right: 22px;
}

.spMenuArea01 .dropBtn01.active:after {
  display: none;
}

.spMenuArea01 .drop01 ul {
  display: none;
}

.spMenuArea01 .drop01 a {
  padding-left: 25px;
}

.footer a {
  color: #1a1311;
  display: inline-block;
}

.footer .linkArea {
  padding: 40px 0;
  background: -webkit-gradient(linear, left top, right top, from(#6f4f22), color-stop(#ffe5a4), to(#6f4f22));
  background: -webkit-linear-gradient(left, #6f4f22, #ffe5a4, #6f4f22);
  background: -o-linear-gradient(left, #6f4f22, #ffe5a4, #6f4f22);
  background: linear-gradient(90deg, #6f4f22, #ffe5a4, #6f4f22);
  position: relative;
}

.footer .linkArea:before {
  content: '';
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  background: url(../images/bg_footer01.png) center;
  background-size: 1440px auto;
  position: absolute;
  top: 0;
  z-index: 0;
}

@media all and (-ms-high-contrast: none) {
  .footer .linkArea:before {
    background: url(../images/bg_footer01_02.png) center left;
    background-size: 2980px auto;
  }
}

.footer .copyright {
  color: #aa9255;
  padding: 5px 0;
  background: #1a1311;
}

@media screen and (max-width: 767px) {
  .footer .copyright {
    font-size: 12px;
  }
}

.footerLinks01 {
  max-width: 840px;
  margin: 0 auto;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 900px) {
  .footerLinks01 {
    max-width: 721px;
  }
}

@media screen and (max-width: 767px) {
  .footerLinks01 {
    max-width: 100%;
  }
}

.footerLinks01 .mainLinks {
  padding-right: 40px;
}

@media screen and (max-width: 900px) {
  .footerLinks01 .mainLinks {
    padding-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .footerLinks01 .mainLinks {
    width: 50%;
    padding-bottom: 15px;
  }
}

.footerLinks01 .mainLink {
  font-size: 20px;
}

@media screen and (max-width: 900px) {
  .footerLinks01 .mainLink {
    font-size: 18px;
  }
}

.footerLinks01 .mainLink .min {
  font-size: 11px;
}

.footerLinks01 .mainLink a {
  text-indent: -1em;
  padding-left: 1em;
}

.footerLinks01 .sub {
  padding: 8px 0 0 25px;
}

.footerLinks01 .sub a {
  padding: 2px 0;
}

@media screen and (max-width: 767px) {
  .footerLinks01 .sub a {
    font-size: 12px;
  }
}

.footerLinks02 {
  max-width: 770px;
  width: 100%;
  margin: auto;
  position: relative;
  z-index: 1;
}

.footerLinks02 a {
  color: #42210b;
  line-height: 1.2;
  min-width: 115px;
  padding: 5px 10px 5px 35px;
  border-radius: 5px;
  display: block;
}

@media screen and (max-width: 767px) {
  .footerLinks02 a {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px 10px 8px 35px;
  }
}

@media screen and (max-width: 767px) {
  .footerLinks02 li {
    width: 49%;
  }
}

.footerLinks02 li:not(:last-child) {
  margin-right: 15px;
}

@media screen and (max-width: 767px) {
  .footerLinks02 li:not(:last-child) {
    margin: 0;
  }
}

@media screen and (max-width: 767px) {
  .footerLinks02 li:nth-child(odd) {
    margin-right: 2%;
  }
}

.footerLinks02 li:first-child a {
  background: url(../images/ico_footer1.png) no-repeat center left 5px, #e4dfd0;
  background-size: 20px auto;
}

.footerLinks02 li:nth-child(2) a {
  background: url(../images/ico_footer2.png) no-repeat center left 5px, #e4dfd0;
  background-size: 18px auto;
}

.footerLinks02 li:nth-child(3) a {
  padding: 13px 10px 13px 35px;
  background: url(../images/ico_footer3.png) no-repeat center left 5px, #e4dfd0;
  background-size: 17px auto;
}

@media screen and (max-width: 767px) {
  .footerLinks02 li:nth-child(3) a {
    padding: 16px 10px 16px 35px;
  }
}

.footerLinks02 li:nth-child(4) a {
  background: url(../images/ico_footer4.png) no-repeat center left 5px, #e4dfd0;
  background-size: 16px auto;
}
.footerLinks02 li:nth-child(5) a {
  background: url(../images/ico_footer5.png) no-repeat center left 5px, #e4dfd0;
  background-size: 16px auto;
}

.footerLinks02 li:last-child a {
  background: url(../images/ico_footer6.png) no-repeat center left 5px, #e4dfd0;
  background-size: 20px auto;
  background-color:#E1D7AA;
}


/* フロートボタン */
/**
 * Floating buttons styles
 * Add this CSS to your global stylesheet
 */

/* 透過背景を持つフローティングボタンスタイル */

/* Floating buttons container */
.floating-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(235, 225, 190, 0.95); /* 淡い金色の背景 */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 9990;
    border-top: 1px solid rgba(165, 128, 61, 0.25);
}

/* Common button styles */
.floating-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    margin: 0 18px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    min-width: 180px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Default button style (FAQ and Temple Lodgings) */
.floating-button {
    color: #42210b;
    background-color: #f5f3ed;
    border: 1px solid rgba(66, 33, 11, 0.1);
}

.floating-button:hover {
    background-color: #eeebe2;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.floating-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    opacity: 0.6;
    pointer-events: none;
}

/* Reservation button (Book Now) with distinct styling */
.floating-button.reservation {
    color: #42210b;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(to right, #d9bc7f, #e9d5a0, #d9bc7f);
    border: none;
    box-shadow: 0 4px 10px rgba(165, 128, 61, 0.25);
    min-width: 220px;
    position: relative;
}

.floating-button.reservation:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(165, 128, 61, 0.3);
}

.floating-button.reservation::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
    opacity: 0.6;
    pointer-events: none;
}

.floating-button.reservation:hover::before {
    opacity: 0.7;
}

.floating-button.reservation::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    pointer-events: none;
}

/* Show class for animation */
.floating-buttons.show {
    transform: translateY(0);
}

/* Mobile styles */
@media (max-width: 768px) {
    .floating-buttons {
        padding: 8px;
        background-color: rgba(235, 225, 190, 0.97); /* モバイルでは少し不透明度を上げる */
    }
    
    .floating-button {
        padding: 10px 18px;
        margin: 0 8px;
        font-size: 16px;
        min-width: 100px;
        border-radius: 30px;
    }
    
    .floating-button.reservation {
        font-size: 17px;
        min-width: 120px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .floating-button {
        padding: 8px 14px;
        margin: 0 5px;
        font-size: 14px;
        min-width: 80px;
    }
    
    .floating-button.reservation {
        font-size: 15px;
        min-width: 90px;
    }
}

/* フッター対応の追加スタイル */

/* フローティングボタンがフッターと重ならないように調整 */
body {
    position: relative;
}

footer {
    position: relative;
    z-index: 1; /* フッターをボタンより下に */
}

/* オプション: フッター上にボタンが来た時の見た目を調整 */
/*
.floating-buttons.over-footer {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}
*/

/* モバイル用のGoTop調整 */
@media screen and (max-width: 767px) {
    .mainContent .pagetop {
        bottom: 50px !important; /* モバイルではさらに上に */
    }
}