@charset "UTF-8";

/* import */
@import url("commonParts/commonMeta.css");
@import url("commonParts/commonButton.css");
@import url("commonParts/commonIcons.css");
@import url("commonParts/commonTitle.css");

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');


/* ===================================
Reset
=================================== */
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;
}

button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  cursor: pointer;
  outline: none;
}


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

body {
  line-height: 1.8;
}

ol,
ul,
li {
  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;
}

/* input textarea reset
==============================　*/
input,
textarea,
select {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  max-width: 100%;
  outline: none;
  outline: 0;
}

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

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}


/* ===================================
Foundation
=================================== */
* {
  box-sizing: border-box;
  line-break: strict;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  /* font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;*/
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.016em;
  color: #595757;
  background: var(--cream);
}

body.stop {
  overflow: hidden;
  ;
}

.stop {
  overflow: hidden;
}

/* テキスト
==============================　*/
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
  transition: 0.3s;
  cursor: pointer;
}

p {
  letter-spacing: 0.1em;
}

strong {
  font-weight: bold;
  color: #dd9969;
}

b {
  font-weight: bold;
}

sup {
  vertical-align: top;
}

/* メディア
==============================　*/
img {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

video {
  display: block;
  max-width: 100%;
  height: auto;
  outline: none;
}

iframe {
  max-width: 100%;
}

html {
  height: -webkit-fill-available;
}

body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

/* ===================================
共通
=================================== */
.inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.lato {
  font-family: 'Lato', sans-serif;
}

.ser {
  font-family: 'Noto Serif JP', serif;
}

.w {
  color: #595757;
}

.w500 {
  font-weight: 500;
}

.br_sp {
  display: none;
}

.pc {
  display: block;
}

.pc_only {
  display: block;
}

.tb {
  display: none;
}

.sp {
  display: none;
}

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

  .tb {
    display: block;
  }
}

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

  .sp {
    display: block;
  }

  .br_sp {
    display: inline;
  }
}

/* フェードインアニメーション */
.fadeInDown {
  transform: translateY(30px);
  opacity: 0;
}

.animated {
  animation-name: fadeInDown;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.anime01 {
  animation-delay: .2s;
}

.anime02 {
  animation-delay: .4s;
}

.anime03 {
  animation-delay: .6s;
}

.anime04 {
  animation-delay: .8s;
}

.anime05 {
  animation-delay: 1s;
}

@keyframes fadeInDown {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}



/* TOPへ戻るボタン */
.top_back {
  position: absolute;
  top: calc(100vh + 820px);
  right: 18px;
  z-index: 10;
  opacity: 1 !important;

  display: none;
}


/* 矢印動くボタン */
.link {
  display: flex;
  font-size: 14px;
  font-weight: 300;
  width: fit-content;
  position: relative;
}

.link img {
  margin-left: 11px;
  transition: .3s;
  z-index: 1;
}

.link::after {
  content: "";
  background-color: #fff;
  border-radius: 30px;
  position: absolute;
  top: -4px;
  left: -2px;
  width: 40px;
  height: 40px;
  transition: .3s;
}

.link p {
  font-size: 16px;
  margin-left: 20px;
  letter-spacing: 0.09em;
  border-bottom: 1px solid #fff;
  padding-bottom: 3px;
  transition: .3s;
}

.link:hover .yaji {
  transform: translateX(7px);
  transition: .3s;
}

.link:hover p {
  opacity: 0.7;
  transition: .3s;
}

.link:hover {
  opacity: 1;
}

.link:hover::after {
  transition: .3s;
}

@media screen and (max-width: 768px) {
  .link::after {
    top: 1px;
    left: 4px;
    width: 30px;
    height: 30px;
  }
}


/* ===================================
ヘッダー
=================================== */
.header_inner {
  width: 100%;
  z-index: 10;
}

header.h-top {
  opacity: 0;
}

header.h-top.show {
  transition: opacity 640ms ease;
  opacity: 1;
}

header.h-top.show.noTransition {
  transition: none;
  opacity: 1;
}

.fixed {
  position: fixed;
  top: 0;
}

.top_top {
  font-size: 12px;
  display: flex;
  justify-content: end;
  align-items: center;
  height: 25px;
  color: #fff;
  background-color: #484242;
  text-align: right;
  padding: 0 30px;
}

.top_top a {
  text-decoration: underline;
}

.header_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 92px;
  padding: 0 111px 0 55px;
}

.header_content .logo {
  width: 150px;
}

.header_right {
  display: flex;
  gap:0 30px;
}

.header_time{
  text-align: right;
}

.header_time-txt{
    font-weight: 400;
    font-size: 15px;
}

.header_tel {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap:0 10px;
}

.header_tel::before {
  content: "";
  background-image: url(../img/ico_tel.svg);
  background-repeat: no-repeat;
  display: block;
  width: 16px;
  height: 16px;
}

.header_res {
  background-color: #dd9969;
  border: 1px solid #dd9969;
  padding: 14px 46px 14px 70px;
  border-radius: 30px;
  color: #fff;
}

.header_res p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
}

.header_res p::before {
  content: "";
  background-color: #fff;
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  top: 9px;
  left: -20px;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  transition: .3s;
}

.header_res:hover {
  color: #dd9969;
  background-color: #fff;
}

.header_res:hover p::before {
  background-color: #dd9969;
  transition: .3s;
}

.top_box {
  position: relative;
}

.top_margin {
  height: 83px;
}

.ttl_h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ttl_h1 span {
  font-size: 14px;
  display: block;
  text-align: center;
  margin-top: 5px;
}

.bg_ttl {
  width: 100%;
  object-fit: cover;
  min-height: 150px;
  max-height: 224px;
}

/* パンくず */
.breadcrumbs {
  display: flex;
  justify-content: flex-start;
  height: 30px;
  background-color: #fff;
  padding: 0 0 0 120px;

  white-space: nowrap;
  overflow-x: auto;
}

.breadcrumbs li {
  font-size: 12px;
  display: flex;
  align-items: center;
  font-weight: 300;
  line-height: 180%;
  letter-spacing: 1.2px;
}

.breadcrumbs_top {
  color: #9E9892;
}

.breadcrumbs_top span {
  margin: 0 19px;
}

.cream {
  background-color: #F9F7F2;
}

@media screen and (max-width: 1024px) {

  /* パンくず */
  .breadcrumbs {
    padding: 0 0 0 60px;
  }
}

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

  .header_right {
    display: none;
  }

  /* パンくず */
  .breadcrumbs {
    display: flex;
    justify-content: flex-start;
    margin-top: 5px;
    padding: 0 0 0 30px;
  }

  .header_res {
    padding: 14px 0px 13px 20px;
  }

  .top_margin {
    height: 0px;
  }

  .ttl_h1 {
    width: 135px;
  }

  .ttl_h1 span {
    font-size: 12px;
  }

  .header_content {
    height: 70px;
    padding: 0 20px;
    background-color: transparent;
  }

  /* 下部追従 */
  .sp_bottom {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100vw;
    bottom: 0;
    background-color: #fff;
    z-index: 4;

    padding-top: 0;
    padding-bottom: env(safe-area-inset-bottom);
    transition: .3s;
  }

  .sp_bottom .header_res {
    padding: 0;
    border-radius: 0;
    width: 50%;
    padding: 18px 0 18px 22px;
    letter-spacing: 1.6px;
    line-height: 1;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sp_bottom .header_res span::before {
    content: "";
    background-color: #fff;
    background-repeat: no-repeat;
    position: absolute;
    display: block;
    top: 2px;
    left: -21px;
    width: 10px;
    height: 10px;
    border-radius: 50px;
    transition: .3s;
  }

  .sp_bottom .header_res span {
    width: fit-content;
    position: relative;
  }

  .sp_bottom .header_tel {
    margin-right: 0;
    margin-bottom: 0;
    width: 50%;
    padding: 18px 0 18px 27px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sp_bottom .header_tel span {
    width: fit-content;
    position: relative;
  }

  .sp_bottom .header_tel span::before {
    content: "";
    background-image: url(../img/ico_tel.svg);
    background-repeat: no-repeat;
    position: absolute;
    display: block;
    top: 0;
    left: -26px;
    width: 20px;
    height: 20px;

  }

}

@media screen and (max-width: 375px) {
  .sp_bottom .header_tel {
    font-size: 14px;
    position: relative;
    margin-right: 5px;
  }
}

/* ===================================
バーガーメニュー
=================================== */
/* バーガーボタン */
.side_btn {
  position: fixed;
  top: 40%;
  left: 1%;
  width: 80px;

  z-index: 15;
}

.openbtn2 {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  margin: 0 20px 0 30px;
  z-index: 100;
}

/*ボタン内側*/
.openbtn2 span {
  display: inline-block;
  transition: all .3s;
  /*アニメーションの設定*/
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 1px;
  background-color: var(--txt-brown);
}

.openbtn2 span:nth-of-type(1) {
  top: -16px;
  width: 30px;
}

.openbtn2 span:nth-of-type(2) {
  top: 2px;
  width: 30px;
}

.openbtn2 span:nth-of-type(3) {
  top: 20px;
  width: 30px;
}

/*activeクラスが付与されると線が回転して×に*/
.openbtn2.active span:nth-of-type(1) {
  top: 0px;
  left: 0px;
  transform: rotate(-30deg);
  width: 100%;
}

.openbtn2.active span:nth-of-type(2) {
  top: 0px;
  left: 0px;
  transform: rotate(30deg);
  width: 100%;
}

.openbtn2.active span:nth-of-type(3) {
  display: none;
}

/* アイコンボックス */
.side_icon_box {
  position: fixed;
  top: 81.5%;
  left: 2.8%;

  z-index: 3;
}

.side_icon_box img {
  margin-bottom: 25px;
}

/* バーガーメニュー */
.gnav {
  display: none;
  min-height: 100vh;
  position: fixed;
  width: 100vw;

  z-index: 11;
}

.gnav__wrap {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
  position: absolute;
  width: 100%;
  overflow: auto;
}

.gnav__left {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #F9F7F2;
  width: 46%;
  height: 100%;
  padding: 0 20px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.gnav__left__inner {
  max-width: 500px;
  width: 100%;
}

.gnav__left .burger_logo {
  width: 100%;
  margin-bottom: 20px;
}

.gnav__left .flex {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
}

.gnav__left .header_res {
  padding: 11px 9% 11px 14%;
}

.gnav__left .header_res::before {
  left: 92px;
}

.gnav__left .header_tel {
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
  margin-right: 6%;
  white-space: nowrap;
}

.bottom__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom__box .icon__box {
  display: flex;
  align-items: center;
}

.icon__box a {
  margin-right: 29px;
}

.bottom__box .nav__rec {
  font-size: 14px;
  position: relative;
  transform: translateX(-15px);

}

.bottom__box .nav__rec::before {
  content: "";
  background-image: url(../img/arrow_black.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  width: 14px;
  height: 14px;
  top: 10px;
  right: -16px;
}

/* バーガー内 */
.gnav__right {
  width: 54%;
  min-height: 100%;
  background-color: #fff;
  padding: 100px 20px;
  position: absolute;
  top: 0;
  right: 0;
}

.gnav__right__wrapper {
  width: 100%;
  display: block;
}

.gnav__right__inner {
  width: 100%;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #C9C7C7;
}

.gnav__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 16px;
  max-width: 333px;
}

.gnav__menu__item {
  font-size: 24px;
  width: 43%;
  margin-bottom: 38px;
  white-space: nowrap;

  font-size: 24px;
  font-weight: 300;
  letter-spacing: 2.4px;
  line-height: 1.4;
}

.gnav__menu__item span {
  display: block;
  font-size: 12px;
  font-weight: 300;
  line-height: 180%;
  letter-spacing: 1.2px;
  color: #9E9892;
}

.icon_box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 55px;
}

.icon_box a {
  margin: 0 12px;
}



@media screen and (max-width: 1024px) {
  .gnav__left .flex {
    display: block;
    margin-left: 20px;
    text-align: center;
  }

  .gnav__left .header_tel {
    margin: 25px 0;
    justify-content: center;
  }

  .gnav__left__inner {
    max-width: 350px;
  }

  li.gnav__menu__item {
    width: 48%;
  }

  .side_icon_box {
    top: auto;
    bottom: 40px;
  }

  .side_icon_box {
    left: 30px;
  }

  .side_btn {
    left: 0px;
  }
}

@media screen and (max-width: 768px) {
  .openbtn2 {
    top: 15px;
    right: 0;
  }

  .gnav {
    height: 100dvh;
    background-color: #fff;
  }

  .gnav__wrap {
    display: block;
    height: 97dvh;
    overflow-y: scroll;
  }

  .gnav__left {
    width: 100%;
    height: auto;
    position: relative;
  }

  .gnav__left__inner {
    max-width: none;
  }

  .gnav__left .burger_logo {
    width: 100%;
    max-width: 220px;
    margin: 0 auto 1dvh;
    padding: 9svh 0 0;
  }

  .gnav__left .flex {
    display: flex;
    margin: 0 auto 3dvh;
    max-width: 350px;
  }

  .gnav__left .header_res {
    padding: 7px 11% 7px 16%;
  }

  .gnav__left .header_tel {
    font-size: 18px;
  }

  .icon__box a {
    margin-right: 29px;
  }

  /* バーガー内 */
  .gnav__right {
    width: 100%;
    height: auto;
    padding: 0 20px;
    position: relative;
  }

  .gnav__right__wrapper {
    width: 100%;
    height: 100%;
    display: block;
    padding-top: 5dvh;
  }

  .gnav__right__inner {
    width: 100%;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #C9C7C7;
  }

  .gnav__menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: -7px;
    padding-left: 7px;
    max-width: 320px;
  }

  .gnav__menu__item {
    font-size: 24px;
    width: 43%;
    margin-bottom: 3.4dvh;
    white-space: nowrap;

    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2.4px;
    line-height: 1.4;
  }

  .gnav__menu__item span {
    display: block;
    font-size: 12px;
    font-weight: 300;
    line-height: 180%;
    letter-spacing: 1.2px;
    color: #9E9892;
  }

  .icon_box {
    margin-top: 2.8dvh;
  }
}

@media screen and (max-width:500px) {
  .gnav__left .flex {
    flex-direction: column;
  }
}



/* ===================================
フッター
=================================== */
.f-inner {
  overflow-x: hidden;
}

.img_area {
  max-height: 500px;
  position: relative;
  display: flex;
  width: 100%;
  background-color: var(--main-brown);
}

.img_area .flex {
  display: flex;
  align-items: center;
  margin: 20px 0 20px 0;
}

.img_area .left {
  align-self: center;
  width: 50%;
  height: 100%;
  padding:30px 0;
}

.img_area .right {
  width: 50%;
}
.img_area .right img{
  object-fit: cover;
  max-width: none;
  width:100%;
  height:100%;
}

.img_area .left .inner {
  max-width: 430px;
  width: 100%;
  color: #351c0c;
}

.f-tel {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  padding-left: 24px;
  padding-right: 33px;
}

.f-tel::before {
  content: "";
  background-image: url(../img/ico_tel_w.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  top: 9px;
  left: -1px;
  width: 18px;
  height: 20px;
}

.f-tel span {
  pointer-events: none;
  display: block;
  font-size: 14px;
  font-weight: 300;
  margin-left: -5px;
  letter-spacing: 0.1em;
}

.f-res {
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #fff;
  position: relative;
  border: 1px solid #dd9969;
  border-radius: 60px;
  padding: 18px 20px 18px 50px;
  height: 52px;
  background-color: #dd9969;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.f-res:hover {
  color: #dd9969;
  background-color: #fff;
  border: 1px solid #fff;
  transition: 0.3s;
  opacity: 1;
}

.f-res::before {
  content: "";
  background-color: #fff;
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  top: 19px;
  left: 25px;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  transition: .3s;
}

.f-res:hover::before {
  background-color: #dd9969;
  transition: .3s;
}

.f-ad {
  font-size: 14px;
  font-weight: 300;
}

.map_a {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.1em;
  display: block;
  width: fit-content;
  text-decoration: underline;
  margin-top: 10px;
}

.filter iframe {
  width: 100%;
  height: 300px;
}

.fontLight {
  font-weight: 300;
}

.section_btn a {
  display: block;
  max-width: fit-content;
  background-color: #dd9969;
  border: 1px solid #dd9969;
  border-radius: 100px;
  margin: 25px auto 0;
  padding: 2px 30px;
  color: #fff;
}

.section_btn a:hover {
  transition: .3s;
  background-color: #fff;
  color: #dd9969;
}

@media screen and (max-width: 1024px) {
  .img_area {
    max-height: none;
    display: block;
    padding: 0 20px;
  }

  .img_area .f-logo {
    margin: 0 auto;
    padding: 80px 0 40px;
  }

  .img_area .flex {
    display: block;
    margin: 23px 0 27px;
  }

  .img_area .left {
    width: 100%;
    height: 100%;
  }

  .img_area .right {
    width: none;
  }

  .img_area .left .inner {
    max-width: none;
  }

  .f-tel {
    font-size: 26px;
    padding-left: 24px;
    padding-right: 0;

    width: fit-content;
    display: block;
    margin: 0 auto;
  }

  .f-tel::before {
    content: "";
    background-image: url(../img/ico_tel_w.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    display: block;
    top: 9px;
    left: -1px;
    width: 18px;
    height: 20px;
  }

  .f-tel span {
    pointer-events: none;
    display: block;
    font-size: 14px;
    font-weight: 300;
    margin-left: -5px;
    letter-spacing: 0.1em;
  }

  .f-res {
    font-size: 16px;
    letter-spacing: 0.1em;
    color: #fff;
    position: relative;
    border: 2px solid #dd9969;
    border-radius: 60px;
    padding: 18px 47px 18px 67px;
    height: 52px;

    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;

    margin-top: 22px;
  }

  .f-res span {
    width: fit-content;
    position: relative;
  }

  .f-res:hover {
    color: var(--main-brown);
    background-color: #fff;
    transition: 0.3s;
    opacity: 1;
  }

  .f-res::before {
    display: none;
  }

  .f-res span::before {
    content: "";
    background-color: #fff;
    background-repeat: no-repeat;
    position: absolute;
    display: block;
    top: 8px;
    left: -23px;
    width: 10px;
    height: 10px;
    border-radius: 50px;
    transition: .3s;
  }

  .f-res:hover::before {
    background-color: var(--main-brown);
    transition: .3s;
  }

  .f-ad {
    font-size: 14px;
    font-weight: 300;
    text-align: center;
  }

  .map_a {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.1em;
    display: block;
    width: fit-content;
    text-decoration: underline;

    margin: 10px auto 0;
    padding-bottom: 60px;
  }

  .fontLight {
    font-weight: 300;
  }
}

@media screen and (max-width: 768px) {
  .img_area .f-logo {
    padding: 60px 0 27px;
    width: 160px;
  }

  .f-res {
    font-size: 18px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 1.8px;
  }

  .f-res span::before {
    top: 4px;
  }
}


/* google map */
.filter iframe {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

iframe {
  margin-bottom: -7px;
}

.filter {
  position: relative;
  width: 100%;
}


/* メニューエリア */
.f-bot {
  position: relative;
  background-color: var(--cream);
  padding: 80px 20px 40px;
}

.f-bot_inner {
  max-width: 1160px;
  margin: 0 auto;
}

.f-linkBox {
  background-color: #fff;
}

.f-pan {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 10px;
}

.f-pan li {
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-right: 29.5px;
}

.f-pan li:last-of-type {
  margin-right: 0;
}

.f-icon_box {
  display: flex;
  align-items: center;
  padding-bottom: 60px;
}

.f-icon_box a {
  margin-right: 30px;
}

.bot_bot {
  width: 100%;
  padding: 30px 10px;
  background-color: #fff;
  border-top: 1px solid #D8D5D0;
}

.bot_bot_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}

.bot_bot_inner a {
  font-size: 14px;
  position: relative;
  color: #FDFBFA;
}

.bot_bot_inner a.lawlink {
  color: #595757;
  font-size: 12px;
  font-weight: 300;
  line-height: 180%;
  letter-spacing: 0.1em;
}

.bot_bot_inner a::before {
  content: "";
  background-image: url(../img/arrow_white.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  width: 14px;
  height: 14px;
  top: 7px;
  right: -20px;
}
.bot_bot_inner a.lawlink::before {
  content: unset;
}


.bot_bot .copy {
  font-size: 12px;
}



.f-cat_ttl {
  font-size: 20px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 3px;
}

.f-menu_r {
  display: flex;
  flex-wrap: wrap;
}

.f-menu_item {
  width: 45%;
  margin-bottom: 40px;
  margin-right: 9.5%;
}

.f-menu_item:nth-last-of-type(odd) {
  margin-right: 0;
}

.f-menu_item h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 2.4px;
  border-bottom: 1px solid #D8D5D0;
  padding: 17px 0 5px;
}

.f-menu_item ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}

.f-menu_item ul li {
  font-size: 14px;
  margin-right: 19px;
  font-weight: 300;
  line-height: 180%;
  letter-spacing: 1.4px;
  padding-top: 11px;
}


@media screen and (max-width: 768px) {

  /* メニューエリア */
  .f-bot {
    padding: 0 20px 40px;
  }

  .f-pan {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 10px 10px;
  }

  .f-pan li {
    font-size: 12px;
    letter-spacing: 0.1em;
    margin: 0 15px 10px;
  }

  .f-pan li:last-of-type {
    margin-right: 0;
  }

  .f-icon_box {
    display: flex;
    align-items: center;
    padding-bottom: 60px;
  }

  .f-icon_box a {
    margin-right: 30px;
  }

  .bot_bot {
    padding: 20px 10px 75px;
  }

  .bot_bot_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
  }

  .bot_bot_inner a {
    font-size: 14px;
    position: relative;
    color: #FDFBFA;

  }

  .bot_bot_inner a::before {
    content: "";
    background-image: url(../img/arrow_white.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    width: 14px;
    height: 14px;
    top: 7px;
    right: -20px;
  }

  .bot_bot .copy {
    font-size: 12px;
  }


  .f-menu_area {
    padding-top: 43px;
  }

  .f-cat_ttl {
    font-size: 18px;
    font-weight: 500;
    line-height: 180%;
    letter-spacing: 3px;
  }

  .f-menu_r {
    display: block;
  }

  .f-menu_item {
    width: 100%;
    margin-bottom: 22px;
    margin-right: 9.5%;
  }

  .f-menu_item:nth-last-of-type(odd) {
    margin-right: 0;
  }

  .f-menu_item h3 {
    font-size: 14px;
    font-weight: 500;
    line-height: 180%;
    letter-spacing: 2.4px;
    border-bottom: 1px solid #D8D5D0;
    padding: 17px 0 5px;
  }

  .f-menu_item ul {
    display: flex;
    flex-wrap: wrap;
  }

  .f-menu_item ul li {
    font-size: 14px;
    margin-right: 19px;
    font-weight: 300;
    line-height: 180%;
    letter-spacing: 1.4px;
    padding-top: 11px;
  }


  .f-pan {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 0;
    padding-left: 10%;
  }

  .f-pan li {
    font-size: 14px;
    width: 39%;
    margin-bottom: 20px;
  }

  .f-pan li:last-of-type {
    margin-right: 0;
  }
}

.hotel{
  font-size:12px;
}

/* 管理メニュー設定 */
html:has(#wpadminbar){margin-top:0 !important}html:has(#wpadminbar) #wpadminbar{position:fixed;z-index:999;top:-32px;left:0;transition:.3s ease-in-out}html:has(#wpadminbar) #wpadminbar::before{content:"";position:absolute;z-index:999;bottom:-32px;left:0;width:100%;height:0;background:rgba(0,0,0,0)}html:has(#wpadminbar) #wpadminbar::after{content:"管理メニュー";cursor:pointer;display:flex;justify-content:center;align-items:center;height:32px;position:absolute;z-index:999;bottom:-32px;left:15px;line-height:1;padding:5px 10px;color:#fff;background:#1d2327;box-sizing:border-box;border-radius:0 0 5px 5px}html:has(#wpadminbar) #wpadminbar:hover{top:0}html:has(#wpadminbar) #wpadminbar:hover::before{height:32px}@media(max-width: 767px){html:has(#wpadminbar) #wpadminbar{top:-46px}}