@charset "utf-8";

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,
font,
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 {
  border: 0 none;
  margin: 0;
  padding: 0;
  font-family: "Sawarabi Gothic", "メイリオ", "Meiryo", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", sans-serif;
}

@media screen and (min-width: 320px) and (max-width: 768px) {

  /*　画面サイズが320pxから1024pxまではここを読み込む　*/
  p,
  th,
  td,
  strong,
  span,
  li {
    font-size: 14px;
    -webkit-text-size-adjust: 100% !important;
  }
}

@media screen and (min-width: 768px) {

  /*　画面サイズが1024pxからはここを読み込む　*/
  p,
  th,
  td,
  strong,
  span,
  li {
    font-size: 14px;
  }
}

@media screen and (min-width: 999px) {

  /*　画面サイズが1024pxからはここを読み込む　*/
  p,
  th,
  td,
  strong,
  span,
  li {
    font-size: 16px;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0 auto;
  line-height: 1.4;
  -webkit-text-size-adjust: 100%;
  max-height: 100%;
  background-color: transparent;
}

a:focus,
*:focus {
  outline: none;
}

a {
  color: white;
  text-decoration: underline;
  word-break: break-all;
}

a.deco {
  text-decoration: underline;
}

a:hover {
  color: white;
  text-decoration: none;
}

img:hover {
  -webkit-transition: 0.1s ease-in-out;
  -moz-transition: 0.1s ease-in-out;
  -o-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
}

a img:hover {
  opacity: 0.5;
}

a.hover_img {
  display: inline-block;
}

a:hover.hover_img img {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

a.hover_img img {
  transition: all 0.2s ease;
  padding: 0;
}

ul,
li {
  list-style-type: none;
}

/*clearfix*/
.clearfix {
  zoom: 100%;
}

.clearfix:after {
  content: ".";
  display: block;
  visibility: hidden;
  height: 0.1px;
  font-size: 0.1em;
  line-height: 0;
  clear: both;
}

#contents {
  width: 100%;
  margin: 0 auto;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

header#sqexHeader-white_rsp,
div#sqexFooter.sqex-footer-white {
  z-index: 1999;
}

footer#sqexFooter div.sqex-footer-copy-logo {
  position: static;
}


/*==================================================
JS
===================================================*/
/* ぼやっと表示 */
.img-blur {
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
  opacity: 1;
  animation-duration: 0.8s;
  animation-timing-function: ease-out;
}

@-webkit-keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }

  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}

/*cssアニメーション　ふわっと表示させる*/
.anim_fadeup {
  animation: fadeup 3s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

.anim_fadeup2 {
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.load {
  animation: fade 3s;
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*スクロールでふわっと現れる*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

/* フワフワするアニメーション */
@keyframes fuwafuwa {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* このクラスをつけると回転を無限に繰り返します */
.anime-fuwafuwa {
  animation: 3s fuwafuwa infinite;
}


/* フワフワするアニメーション */
@keyframes fuwafuwa3 {

  0%,
  100% {
    transform: translateY(-10px);
  }

  50% {
    transform: translateY(0px);
  }
}

/* このクラスをつけると回転を無限に繰り返します */
.anime-fuwafuwa3 {
  animation: 3s fuwafuwa3 infinite;
}


/*　***********************************************************************************　*/
/* ここからいじる */
/*　***********************************************************************************　*/


/* 変数指定 */
:root {
  --main-witdh: 1110px;
  --detail-witdh: 800px;
  --main-padding-top: 0px;
  --main-padding-side: 47px;
  --main-padding-bottom: 65px;

  --navi-icon-maxWtidth: 14px;
  --navi-witdh: 200px;

  --btn-witdh: 320px;
  --modal-witdh: 800px
}

#contents {
  width: 100%;
  background: linear-gradient(180deg, #324bdb, #1a1a1a);
  /* background: url(../images/bk.png),linear-gradient(180deg, #691783, #28004b); */
  background-size: contain;
  background-repeat: repeat-y;
  color: #1a1a1a;
}

#contents .pc {
  display: block;
}

#contents .sp {
  display: none;
}

#contentWrap {
  margin: 0 auto;
  letter-spacing: 0.1em;
  width: 876px;
}

.top1 {
  padding-top: 1rem;
}

.top1_0 {
  padding-top: 1rem;
}

.top2 {
  padding-top: 2rem;
}

.top3 {
  padding-top: 3rem;
}

.top3_1 {
  padding-top: 3rem;
}

.top3_3 {
  padding-top: 3rem;
}

.top5 {
  padding-top: 5rem;
}

.bottom1 {
  padding-bottom: 1rem;
}

.bottom2 {
  padding-bottom: 2rem;
}

.bottom3 {
  padding-bottom: 3rem;
}

h2 {
  /* font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif; */
  font-size: 40px;
  font-weight: 700;
  font-feature-settings: "pkna";
  letter-spacing: 0.3em;
}

h3 {
  /* font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif; */
  font-size: 36px;
  font-weight: 500;
  font-feature-settings: "pkna";
}

h4 {
  /* font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif; */
  font-size: 24px;
  font-weight: 500;
  font-feature-settings: "pkna";
}

p.strong {
  font-size: 1rem;
  font-weight: 700;
  line-height: 180%;
  font-feature-settings: "pkna";
  margin: 0 auto;
  max-width: 95%;
}

p.underline {
  text-decoration: underline;
}

p.small {
  /* font-size: 14px; */
  letter-spacing: 0.1em;
  text-align: left;
  font-size: 0.8rem;
  font-feature-settings: "pkna";
}

p.center {
  text-align: center;
}

p.right {
  text-align: right;
}

div.left {
  text-align: left;
}

/*==================================================
contentsWrap内共通設定
===================================================*/
/* 要素の外枠 */
/* #contentWrap .green {
  background-color: #e1efd8;
} */

/* 要素の枠 */
/* .contentOutline {
  padding-top: 60px;
  padding-bottom: 60px;
}

.contentBox {
  display: block;
  position: relative;
  width: var(--main-witdh);
  max-width: 90vw;
  margin: 0 auto;
  color: #604c3f;
  background-color: #fff;
  box-shadow: 0px 0px 18px 0px rgba(158, 183, 142, 0.3);
}

.contentBox h2 {
  padding: 48px 0 38px 0;
  text-align: center;
  background-image: url(../images/bg_content.png);
  background-repeat: repeat;
}

.contentDetail {
  padding-left: 70px;
  padding-right: 70px;
} */

/* ボタン */

p.btn_p {
  max-width: var(--btn-witdh);
  margin: 0 auto;
}

a.btn_a {
  text-decoration: none;
  padding: 1.8rem 10% 1.7rem 10%;
  display: block;
  font-weight: bold;
  border-radius: 50px;
  background-color: #019c96;
}

span.btn_icon {
  padding: 0 0 0 30px;
  background: url(../images/btn_icon2.png) no-repeat center left;
}

a.btn_a span {
  font-size: 1rem;
  /* font-weight: 700; */
}

p.btn_p :hover {
  /* background-color: #9c8649;
  color: #000; */
  opacity: 0.5;
}

a.btn_a span:hover {
  opacity: 1;
  /* ※重複よけ */
}

p.btn_p_information {
  max-width: 50%;
  width: 570px;
  margin: 0 auto;
}

a.btn_a_information {
  clip-path: polygon(2% 0, 98% 0, 100% 12%, 100% 88%, 98% 100%, 2% 100%, 0 88%, 0 12%);
  background-color: #000;
  font-size: large;
  padding: 1.1em 0 0.9em 0;
  display: block;
}

a.btn_a_information span {
  font-size: 1.1rem;
  font-weight: 700;
}

p.btn_p_information :hover {
  background-color: #9c8649;
  color: #000;
}

a.smallBtn {
  clip-path: polygon(2% 0, 98% 0, 100% 12%, 100% 88%, 98% 100%, 2% 100%, 0 88%, 0 12%);
  display: block;
  margin: 0 auto;
  width: 570px;
  max-width: 90%;
  background-color: #9c8649;
  padding: 1.1em 0 0.9em;
  text-align: center;
  position: relative;
}

a.close {
  background-color: #a3a3a3;
}

a.smallBtn span {
  color: #fff;
  /* font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif; */
  font-size: 1.2em;
  font-weight: 700;
  font-feature-settings: "pkna";
  letter-spacing: 0.1em;
}

a.smallBtn::after {
  content: '';
  border-style: solid;
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent #fff;
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

a.smallBtn:hover {
  background-color: #cbb883;
}

a.close:hover {
  background-color: #a3a3a3;
}

/*
a.close {
  background-color: #a3a3a3;
  text-decoration: none;
}

a.close:hover {
  background-color: #a3a3a3;
} */


/* モーダル */
.modal {
  display: none;
}

.modal_bg {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 9995;
}

.modal_content {
  overscroll-behavior: contain;
  overflow-y: scroll;
  background: #fff;

  position: fixed;
  height: 80vh;
  top: 50%;
  right: 50vw;
  margin-top: -40vh;
  margin-right: calc(-1 * (var(--modal-witdh) / 2));

  padding: 30px;
  width: var(--modal-witdh);
  z-index: 9998;
}

a.js-modal-close {
  position: fixed;
  top: 0;
  right: 0;
  color: #fff;
  font-size: 2em;
  background-color: #8cc367;
  text-decoration: none;
  padding: 0 10px;
  text-align: center;
  z-index: 9999;
}

.show {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: hidden;
}


/* モーダルの中 */
.modal_content p.place {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  padding: 0.5rem 0 0.3rem;
  color: #fff;
  background-color: #001400;
}

.modal_content img {
  max-width: 400px;
}

.modal_content p.entryStrong {
  font-weight: bold;
}

.modal_content p span {
  font-weight: bold;
  color: #9c8649;
}

.modal_content ul {
  text-indent: -1em;
  margin-left: 1em;
}

.modal_content ul.small li {
  font-size: 14px;
}

.modal_content li {
  line-height: 1.3;
  margin-bottom: 0.5rem;
}






/*==================================================
各要素の設定
===================================================*/


#header {
  background-color: #001400;
  text-align: center;
}

#header img {
  padding: 1.3rem 0 1.7rem 0;
  width: var(--main-witdh);
}


#mv {
  background: url(../images/bg_white_13.png);
  background-repeat: repeat;
  background-size: 150px;
  /* width: var(--main-witdh); */
  width: var(--detail-witdh);
  margin: 0 auto;
  max-width: 100%;
}

#mvWrap {
  /* padding-top: var(--main-padding-top); */
  /* padding-right: var(--main-padding-side); */
  /* padding-bottom: var(--main-padding-bottom); */
  /* padding-left: var(--main-padding-side); */
  text-align: center;
}

#mv_image {
  padding: 0 1rem;
  position: relative;
}

#mv_image .cloud1 {
  position: absolute;
  top: 21%;
  right: 2%;
  max-width: 33%;
}

#mv_image .cloud2 {
  position: absolute;
  top: 54%;
  left: 6%;
  max-width: 28%;
}

#mv_image .cloud3 {
  position: absolute;
  top: 56%;
  right: 0%;
  max-width: 39%;
}

#mv_image .mv_image2 {
  position: absolute;
  right: 2.5rem;
  bottom: 3rem;
}

#mv_image img.mv_image2 {
  max-width: 75%;
}

#mv p {
  font-size: 1rem;
  /* font-weight: 700; */
  line-height: 220%;
  font-feature-settings: "pkna";
  margin: 0 auto;
  max-width: 95%;
}


ul#mv_link {
  display: flex;
  justify-content: space-between;
}

#mv_link li {
  max-width: 400px;
}

#mv_link li img {
  filter: drop-shadow(0px 0px 15px #0b030c)
}

#mv_link p {
  font-size: 1.2rem;
  /* font-weight: 700; */
  line-height: 150%;
}

#mv .info1 {
  margin: 0 auto;
}

#mv .info1 p {
  width: fit-content;
  padding: 10px 30px;
  display: block;
  color: #fff;
  background-color: #9c8649;
}

#mv .info2 {
  line-height: normal;
  font-size: 1.2rem;
}

#mv .info2 span.highLight {
  font-size: 1.2rem;
  font-feature-settings: "pkna";

  text-decoration: underline;
  text-decoration-thickness: 10px;
  text-decoration-color: #9c864973;
  text-underline-offset: -0.3em;
  text-decoration-skip-ink: none;
}

#mv .info2 a:hover {
  text-decoration: underline !important;
}

#mainWrapBk {
  width: 100%;
  background-image: url(../images/bk.png);
  background-size: contain;
  background-repeat: repeat-y;

}

#mainWrap {
  padding-top: var(--main-padding-top);
  /* padding-right: var(--main-padding-side); */
  padding-bottom: var(--main-padding-bottom);
  /* padding-left: var(--main-padding-side); */
  width: var(--main-witdh);
  max-width: 100%;
  margin: 0 auto;
  text-align: center;

}

p.decorated-heading {
  width: 90%;
  padding: 10px 20px;
  margin-right: auto;
  margin-left: auto;
  font-size: larger;
  font-family: "Zen Maru Gothic";
  font-weight: 900;
  background-color: #ccecf9;
  border-image-slice:
    13 13 13 13;
  border-image-width:
    10px 10px 10px 10px;
  border-image-outset:
    10px 10px 10px 10px;
  border-image-repeat:
    repeat repeat;
  border-image-source:
    url(../images/border-image-4.png);
  border-style:
    solid;

}

ul#navi {
  width: var(--detail-witdh);
  margin: 0 auto;
  display: flex;
}

#navi li {
  width: fit-content;
}

#navi li a img:hover {
  opacity: 1 !important;
}

div.main {
  width: var(--detail-witdh);
  margin: 0 auto;
}

div.main_footer {
  line-height: 1.0em;
}

div.main_detail {
  background: url(../images/bg_main.png);
  background-repeat: repeat-y;
  background-size: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}




#kaijo ul {
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

#kaijo ul.kaijo {
  color: rgb(42, 42, 42);
  line-height: 0.5em;
}


#kaijo ul.kaijo li {
  display: flex;
  line-height: 1.5em;
  font-weight: lighter;
  padding-top: 2em;
  padding-bottom: 2em;
}

#kaijo ul.kaijo li:first-child {
  padding-top: 2em;
}

#kaijo ul li.border {
  border-bottom: 1px dotted #8d8d8d;
}

#kaijo ul.kaijo p.area {
  width: 30%;
  font-size: 200%;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  font-family: "Zen Maru Gothic";
  -webkit-text-stroke: 4px #019c96;
  paint-order: stroke;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 4px double #c54695;
}

#kaijo ul.kaijo p.detail {
  width: 70%;
  margin: auto 0;
  text-align: center;
}

#kaijo ul.kaijo p a {
  font-size: 150%;
  display: block;
  margin-bottom: 5%;
  font-weight: bold;
  color: rgb(42, 42, 42);
}

#kaijo ul.chu {
  /* text-align: left; */
}

#kaijo ul.chu li {
  font-size: smaller;
}


p.cmgs {
  padding: 2em 0;
  font-size: x-large;
  text-align: center;
  color: gray;
}



#entry .main_detail {
  letter-spacing: 0em;
  text-align: left;
}

#entry .entryList table {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  text-align: center;
}

#entry .entryList table td {
  padding: 0.5rem 0 0.3rem;
  vertical-align: middle;
}

#entry .entryList table td img {
  width: 1rem;
}

.arrow {
  position: relative;
  display: inline-block;
  padding: 10px;
  font-size: 1.3rem;
  /* font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif; */
  color: #000;
  font-weight: bold;

  /* text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: #9c8649;
  text-underline-offset: 0.3em;
  text-decoration-skip-ink: none; */
}

.arrow:hover {
  opacity: 0.5;
}

#entry h3 {
  text-align: center;
}

#entry span.highLight {
  /* font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif; */
  font-size: 36px;
  font-weight: 500;
  font-feature-settings: "pkna";
  letter-spacing: 0.2em;

  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: #9c8649;
  /* text-decoration-color: rgba(193, 28, 7, 0.4); */
  /* text-underline-offset: -0.2em; */
  text-underline-offset: 0.3em;
  text-decoration-skip-ink: none;
}

#entry p.place {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  padding: 0.5rem 0 0.3rem;
  color: #fff;
  background-color: #001400;
}

#entry p.placeDetail {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  padding: 0.5rem 0 0.3rem;
  /* margin: 0 auto;
  width: 80%; */
  color: #000;
  background-color: rgba(156, 134, 73, 0.5);
}

#entry p.entryStrong {
  font-weight: bold;
}

#entry p span {
  font-weight: bold;
  color: #9c8649;
}

#entry ul {
  text-indent: -1em;
  margin-left: 1em;
}

#entry li {
  line-height: 1.3;
  margin-bottom: 0.5rem;
}


#present h4 {
  font-size: 1.2rem;
}

#present span.highLight {
  text-decoration: underline;
  text-decoration-thickness: 0.4em;
  text-decoration-color: rgba(156, 134, 73, 0.5);
  text-underline-offset: -0.2em;
  text-decoration-skip-ink: none;

  /* font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif; */
  font-size: 1.2rem;
  font-feature-settings: "pkna";
}


#goods .main_detail {
  height: auto;
}


#bnr a img:hover {
  opacity: 1;
}

#bnr img {
  max-width: 450px;
}

/* #sns .main_detail {
  height: auto;
}

#sns .main_detail .x_wrapping {
  margin: 0 auto;
  max-width: 600px;
  width: calc(var(--detail-witdh) - var(--main-padding-side)*2);
} */

/* #sns ul{
  display: flex;
  justify-content: space-evenly;
  max-width: 80%;
  margin: 0 auto;
}
#sns li{
  width: 40%;
}
#sns li img{
  border: solid 1px #9c8649;
  border-radius: 0.3rem;
} */

div.sub {
  width: var(--detail-witdh);
  margin: 0 auto;
}

.attention {
  color: white;
  text-align: left;
}

.attention ul {
  text-indent: -1em;
  margin-left: 1em;
}

.attention li {
  margin-bottom: 0.3rem;
  font-size: 0.8rem;
  line-height: 1.3;
  font-feature-settings: "pkna";
  margin: 0 auto;
  /* max-width: 95%; */
}

#footer {
  background-color: #001400;
  height: 200px;
}





.upper {
  z-index: 1000;
  position: fixed;
  right: 0;
  bottom: 0;
  padding: 10px;
  cursor: pointer;
  transition: .3s;

  /*デフォルトで非表示にする*/
  opacity: 0;
  visibility: hidden;
}

/*このクラスが付与されると表示する*/
.active {
  opacity: 1;
  visibility: visible;
}


.floatCafe {
  z-index: 1000;
  position: fixed;
  right: 0;
  bottom: 0;
  width: calc((100vw - (var(--detail-witdh)))/2);
  max-width: 304px;
  min-width: 20%;
  padding: 0 0 10px 0px;
  cursor: pointer;
  transition: .3s;

  /*デフォルトで非表示にする*/
  opacity: 0;
  visibility: hidden;
}

/*このクラスが付与されると表示する*/
.active {
  opacity: 1;
  visibility: visible;
}

a img.floatCafe:hover {
  opacity: 1;
  filter: brightness(120%);
}






/*　***********************************************************************************　*/


/*　画面サイズが999pxまではここを読み込む　*/
@media screen and (max-width: 999px) {

  #contents {
    /* background: linear-gradient(180deg, #324bdb, #1a1a1a); */
  }

  #contents img {
    width: 100%;
  }

  #contents .goods img {
    width: auto;
  }

  :root {
    --main-witdh: 90vw;
    --detail-witdh: 85vw;
    --main-padding-top: 1rem;
    --main-padding-side: 0.5rem;
    --main-padding-bottom: 1rem;

    --navi-icon-maxWtidth: 0.8rem;
    --navi-witdh: calc((85vw - 1rem) / 3);

    --btn-witdh: 90%;
    --modal-witdh: 90vw
  }


  #contentWrap {
    width: 100%;
    margin: 0 auto;
  }

  .top1 {
    padding-top: 0.5rem;
  }

  .top1_0 {
    padding-top: 0;
  }

  .top2 {
    padding-top: 1rem;
  }

  .top3 {
    padding-top: 1.5rem;
  }

  .top3_1 {
    padding-top: 1rem;
  }

  .top3_3 {
    padding-top: 1.5rem;
  }

  .bottom1 {
    padding-bottom: 0.5rem;
  }

  .bottom2 {
    padding-bottom: 1rem;
  }

  p.small {
    font-size: 12px;
    letter-spacing: 0.1em;
  }




  #header img {
    padding: 0.6rem 0 0.7rem 0;
    width: var(--detail-witdh);
  }

  #mainWrapBk {
    background-image: none;

  }

  #mv_image {
    padding: 0 0.2rem;
    position: relative;
  }

  #mv p {
    font-size: 0.875rem;
    line-height: 180%;
    font-feature-settings: "pkna";
    margin: 0 auto;
    max-width: 95%;
  }

  ul#mv_link {
    align-items: center;
    flex-direction: column;
  }

  #mv_link li {
    margin-bottom: 1.5rem;
  }

  #mv_link p {
    font-size: 1rem;
    line-height: 150%;
  }

  #mv .info2 {
    font-size: 1rem;
  }

  #mv .info2 span.highLight {
    font-size: 1rem;
    text-decoration-thickness: 8px;
  }


  /* #navi li:first-child {
    padding: 5px;
  }

  #navi li {
    padding: 5px;
    margin: auto;
  } */


  .btn_line0 a:after {
    height: 0;
  }

  .btn_line1 a:after {
    height: 0;
  }


  div.main_detail {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  div.main_footer img {
    vertical-align: top;
  }


  a.btn_a {
    padding: 1rem 1.5rem 0.8rem 1.5rem;
  }



  #entry .entryList table {
    max-width: 100%;
  }

  .arrow {
    font-size: 16px;
  }



  #present h4 {

    font-size: 1rem;
    font-weight: 500;
    font-feature-settings: "pkna";

  }

  #present span.highLight {

    font-size: 1rem;
    font-weight: 500;
    font-feature-settings: "pkna";
  }


  #bnr img {
    padding: 0 1em;
  }



  .attention li {
    font-size: 12px;
  }

  #footer {
    background-color: #001400;
    min-height: 100px;
    height: fit-content;
  }

  .upper {
    max-width: 95px;

    opacity: 0;
    visibility: hidden;
  }

  .active {
    opacity: 1;
    visibility: visible;
  }


  .floatCafe {
    z-index: 1000;
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 30%;

    opacity: 0;
    visibility: hidden;
  }

  #contents img.floatCafe {
    width: 100px;
    max-width: calc((100vw - (var(--detail-witdh)))/2);
  }

  .active {
    opacity: 1;
    visibility: visible;
  }




}


@media screen and (max-width: 768px) {
  /*　画面サイズが768pxまではここを読み込む　*/


  #contents .pc {
    display: none;
  }

  #contents .sp {
    display: block;
  }

  :root {
    --modal-witdh: 90vw;
    --navi-icon-maxWtidth: 2vw;
  }

  h4 {

    font-size: 1.1rem;
    font-weight: 500;
    font-feature-settings: "pkna";

  }

  .bottom3 {
    padding-bottom: 1rem;
  }

  a.smallBtn {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    background-color: #9c8649;
    padding: 0.6em 0 0.4em;
    text-align: center;
    position: relative;
  }

  a.smallBtn::after {
    display: none;
  }

  a.smallBtn span {
    font-size: 1em;
  }

  #mv_image .mv_image2 {
    position: absolute;
    right: 0.5rem;
    bottom: 0.7rem;
  }

  #mv_image img.mv_image2 {
    max-width: 90%;
  }

  ul#navi {
    max-width: 509px;
    display: grid;
    grid-template-columns: 56fr 286fr 286fr;
    row-gap:0.5em;
  }
  ul#navi.bottom3{
    padding-bottom: 0;
  }

  /* #navi li {
    padding: 5px;
    margin: auto;
  }

  #navi li img {
    max-height: 27%;
  } */

  #kaijo ul.kaijo p.area {
    font-size: larger;
  }

  #entry span.highLight {
    font-size: 18px;
    letter-spacing: 0.2em;

    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: #9c8649;
    text-underline-offset: 0.3em;
    text-decoration-skip-ink: none;
  }

  #entry p.place {
    font-size: 1rem;
  }

  .upper {
    max-width: 75px;
  }


}




/*　***********************************************************************************　*/