@charset "UTF-8";

/******************************
header
******************************/
.mask {
  background: rgba(0,0,0,.3);
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  transition: .5s;
  opacity: 0;
  pointer-events: none;
  height: 100vh;
  width: 100vw;
  z-index: 9;
}
.cmnhead:has(.spbtn.active) .mask {
  transition: .5s;
  opacity: 1;
  pointer-events: all;
}
.cmnhead .logo {
  position: absolute;
  top: 5rem;
  left: 5rem;
  width: 300px;
  z-index: 8;
}
.cmnnavgr .reservebtn {
  background: #A64B42;
  border: 2px solid #A64B42;
  border-radius: 20px;
  color: #fff;
  padding: .5rem 2rem .5rem 4.5rem;
  position: fixed;
  top: 5rem;
  right: 13rem;
  transition: .5s;
  z-index: 9;
}
.cmnnavgr .reservebtn::before {
  aspect-ratio: 1/1;
  background: #fff;
  content: '';
  position: absolute;
  top: 11px;
  left: 2rem;
  mask-image: url(../images/common/icon-calendar.svg);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  transition: .5s;
  height: 18px;
  width: 18px;
}
.cmnnavgr .reservebtn:hover {
  opacity: 1;
  background: #fff;
  color: #A64B42;
}
.cmnnavgr .reservebtn:hover::before {
  background: #A64B42;
}
.spbtn {
  cursor: pointer;
  position: fixed;
  top: 6rem;
  right: 5rem;
  height: 20px;
  width: 40px;
  z-index: 11;
}
.spbtn span {
  background: #fff;
  border-radius: 5px;
  display: inline-block;
  position: absolute;
  left: 0;
  transition: all .4s;
  height: 2px;
  width: 100%;
}
.cmnhead.change .spbtn span {
  background: #B39A7A;
}
.spbtn span:nth-of-type(1) { top: 0; }
.spbtn span:nth-of-type(2) { top: 10px; }
.spbtn span:nth-of-type(3) { top: 20px; }
.spbtn.active span:nth-of-type(1),
.spbtn.active span:nth-of-type(3) {
  top: 10px;
}
.spbtn.active span:nth-of-type(1) { transform: rotate(-45deg); }
.spbtn.active span:nth-of-type(2) { opacity: 0; }
.spbtn.active span:nth-of-type(3) { transform: rotate(45deg); }

.cmnhead.change .spbtn.active span {
  background: #fff;
}

.cmnnav {
  background: #cea065a3;
  backdrop-filter: blur(10px);
  border-radius: 50px 0 0 50px;
  padding: 11rem 2rem 4rem;
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  transition: .7s;
  max-width: 500px;
  width: 100%;
  z-index: 9;
}
.cmnnav.active {
  opacity: 1;
  pointer-events: all;
}
.cmnnav .navlist {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.cmnnav .navlist > li {
  width: calc(100% / 2 - .5rem);
}
.cmnnav .navlist > li > a {
  border-bottom: 1px solid #fff;
  color: #fff;
  display: block;
  opacity: 1;
  overflow: hidden;
  padding: .5rem 1rem;
  position: relative;
  width: 100%;
}
.cmnnav .navlist > li > a::before,
.cmnnav .navlist > li > a::after {
  content: '';
  position: absolute;
}
.cmnnav .navlist > li > a .ja {
  transition: .3s;
}
.cmnnav .navlist > li > a:hover .ja {
  opacity: 0;
}
.cmnnav .navlist > li > a .en {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 1.5s;
  left: 1rem;
}
.cmnnav .navlist > li > a.nowpage .en {
  left: 4rem;
}
.cmnnav .navlist > li > a:hover .en {
  opacity: 1;
}
.cmnnav .navlist > li > a.nowpage {
  padding-left: 4rem;
  position: relative;
}
.cmnnav .navlist > li > a.nowpage::before {
  background: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: .3s;
  left: 20px;
  height: 10px;
  width: 10px;
}
.cmnnav .navlist > li.w100 {
  width: 100%;
}
.cmnnav .navlist .contactlist {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.cmnnav .navlist .contactlist a {
  border-radius: 20px;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  opacity: 1;
  padding: .5rem 2rem .5rem 4.5rem;
  position: relative;
  transition: .5s;
}
.cmnnav .navlist .contactlist .btn1 a {
  background: #B39A7A;
  border: 2px solid #B39A7A;
}
.cmnnav .navlist .contactlist .btn2 a {
  background: #A64B42;
  border: 2px solid #A64B42;
}
.cmnnav .navlist .contactlist .btn1:hover a {
  background: #fff;
  color: #B39A7A;
}
.cmnnav .navlist .contactlist .btn2:hover a {
  background: #fff;
  color: #A64B42;
}
.cmnnav .navlist .contactlist a::before {
  aspect-ratio: 1/1;
  background: #fff;
  content: '';
  position: absolute;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  transition: .5s;
}
.cmnnav .navlist .contactlist .btn1 a::before {
  top: 8px;
  left: 15px;
  mask-image: url(../images/common/icon-mail.svg);
  height: 25px;
  width: 25px;
}
.cmnnav .navlist .contactlist .btn1:hover a::before {
  background: #B39A7A;
}
.cmnnav .navlist .contactlist .btn2:hover a::before {
  background: #A64B42;
}
.cmnnav .navlist .contactlist .btn2 a::before {
  top: 11px;
  left: 20px;
  mask-image: url(../images/common/icon-calendar.svg);
  height: 18px;
  width: 18px;
}
.cmnnav .navlist > li .tel {
  border-bottom: initial;
  font-size: 2.5rem;
  padding: .5rem 1rem 0 3.5rem;
  position: relative;
}
.cmnnav .navlist > li .tel::before {
  aspect-ratio: 1/1;
  background: #fff;
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  mask-image: url(../images/common/icon-tel.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center center;
  width: 30px;
}
@media only screen and (max-width: 1180px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
  .cmnhead .logo {
    width: 200px;
  }
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
  .cmnhead .logo {
    top: 4rem;
    left: 4rem;
  }
  .cmnnavgr .reservebtn {
    display: none;
  }
  .cmnnav {
    border-radius: 20px 0 0 20px;
    padding: 11rem 2rem 2rem;
    max-width: 380px;
  }
  .cmnnav .navlist .contactlist {
    flex-wrap: wrap;
  }
}

/******************************
footer
******************************/
.cmnfot {
  background: rgba(179,154,122,.35);
  padding: 5rem 0 0;
}
.cmnfot .map {
  border-radius: 20px;
  margin: -15rem auto 0;
  max-width: 1000px;
  width: 90%;
  overflow: hidden;
}
.cmnfot .map iframe {
  aspect-ratio: 2/.8;
  height: 100%;
  width: 100%;
}
.fotwrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 8rem 2rem 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10rem;
}
.fotwrap .logo {
  max-width: 300px;
  margin-bottom: 2rem;
}
.fotwrap .add {
  margin-bottom: 1rem;
}
.fotwrap .copy {
  font-size: 1.4rem;
}
.fotwrap .navbox {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.fnav a {
  opacity: 1;
  line-height: 2;
  padding-left: 1.5rem;
  position: relative;
}
.fnav a::before,
.fnav a::after {
  position: absolute;
}
.fnav a::before {
  color: #B39A7A;
  content: "\f105";
  font: var(--fa-font-solid);
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.fnav a.gaibu::after {
  aspect-ratio: 26/23;
  background: #4A3728;
  content: '';
  top: 53%;
  transform: translateY(-50%);
  right: -2.3rem;
  mask-image: url(../images/common/icon-link.svg);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  transition: .5s;
  height: 15px;
  width: 16px;
}
.fnav .child ul {
  padding-left: 2rem;
}
@media only screen and (max-width: 1180px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
  .fotwrap {
    justify-content: flex-start;
    padding: 5rem 2rem 10rem;
    gap: 4rem;
  }
  .fotwrap .logo {
    max-width: 200px;
  }
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
  .cmnfot .map iframe {
    aspect-ratio: 2/1.4;
  }
}

/******************************
common
******************************/
.link {
  color: #B39A7A;
  opacity: 1;
  position: relative;
  text-decoration: underline;
}
.link::after {
  aspect-ratio: 26/23;
  background: #4A3728;
  content: '';
  position: absolute;
  top: 5px;
  right: -2.3rem;
  mask-image: url(../images/common/icon-link.svg);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  transition: .5s;
  height: 15px;
  width: 16px;
}
.link-txtunder,
.singlecontent a {
  color: #B39A7A;
  text-decoration: underline;
}
.link-txtunder:hover,
.singlecontent a:hover {
  text-decoration: none;
}
.singlecontent p,
.txtbox p:not(:last-of-type) {
  margin-bottom: 1rem;
}
.kome li,
.ten li {
  padding-left: 2rem;
  position: relative;
}
.kome li::before,
.ten li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.ten li::before {
  content: "・";
}
.anchor {
  scroll-margin-top: 50px;
}
@media only screen and (max-width: 1180px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
}

/******************************
inner
******************************/
.inner1,
.inner2,
.inner3 {
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 2rem;
}
.inner2 {
  max-width: 1920px;
}
.inner3 {
  max-width: 1280px;
}
.innernp {
  margin: 0 auto;
  max-width: 1920px;
}
.inner2 .inner1,
.inner2 .inner3,
.inner3 .inner1 {
  padding: 0 !important;
}
@media only screen and (max-width: 1180px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
}

/******************************
flex
******************************/
.flexbox1 {
  display: flex;
  flex-wrap: wrap;
}
.flexbox2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flexbox3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.flex {
  display: flex;
}
.frr {
  flex-direction: row-reverse;
}
.fac {
  align-items: center;
}
.fast {
  align-items: stretch;
}
.fafe {
  align-items: flex-end;
}
.fafs {
  align-items: flex-start;
}
.fabl {
  align-items: baseline;
}
.fbox,
.ftxtbox,
.fimgbox {
  width: 48%;
}
@media only screen and (max-width: 1180px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
  .fbox,
  .ftxtbox,
  .fimgbox {
    width: 100%;
  }
}

/******************************
ttl
******************************/
.ttlbox1 h2 {
  display: inline-block;
  font-family: "Shippori Mincho", serif;
  font-size: 4rem;
  font-weight: 600;
  padding-left: 8rem;
  position: relative;
}
.ttlbox1 h2::before {
  background: url(../images/common/ttl1.svg) no-repeat center / contain;
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 50px;
  width: 50px;
}
.ttlbox1 .sub {
  color: #B39A7A;
  font-family: "Shippori Mincho", serif;
  font-size: 3rem;
  font-weight: 600;
}
.ttlbox2 {
  text-align: center;
  margin-bottom: 3rem;
}
.ttlbox2 h2 {
  display: inline-block;
  font-family: "Shippori Mincho", serif;
  font-size: 4rem;
  font-weight: 600;
  position: relative;
}
.ttlbox2 h2::before,
.ttlbox2 h2::after {
  background: #B39A7A;
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 3px;
  width: 100px;
}
.ttlbox2 h2::before {
  border-radius: 50px 0 0 50px;
  left: -13rem;
}
.ttlbox2 h2::after {
  border-radius: 0 50px 50px 0;
  right: -13rem;
}
@media only screen and (max-width: 1180px) {
  .ttlbox1 .sub {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
  .ttlbox1 h2 {
    font-size: 3rem;
    padding-left: 5rem;
  }
  .ttlbox1 h2::before {
    height: 32px;
    width: 40px;
  }
  .ttlbox1 .sub {
    font-size: 2rem;
  }
  .ttlbox2 h2 {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
  .ttlbox1 h2 {
    font-size: 2.3rem;
  }
  .ttlbox2 h2 {
    font-size: 2rem;
  }
  .ttlbox2 h2::before,
  .ttlbox2 h2::after {
    width: 50px;
  }
  .ttlbox2 h2::before {
    left: -7rem;
  }
  .ttlbox2 h2::after {
    right: -7rem;
  }
}

/******************************
btn
******************************/
.morebtn1 a {
  border-bottom: 1px solid #4A3728;
  font-weight: 500;
  padding: 1rem 6rem 1rem 2rem;
  position: relative;
}
.morebtn1 span {
  background: #A64B42;
  border-radius: 5px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  height: 30px;
  width: 30px;
}
.morebtn1 span::before,
.morebtn1 span::after {
  aspect-ratio: 7/6;
  background: #fff;
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  mask-image: url(../images/common/morebtn1.svg);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  transition: .5s;
  height: 12px;
  width: 14px;
}
.morebtn1 span::before {
  left: -2rem;
  opacity: 0;
}
.morebtn1 span::after {
  left: .9rem;
  opacity: 1;
}
.morebtn1 a:hover {
  opacity: 1;
}
.morebtn1 a:hover span::before {
  left: .9rem;
  opacity: 1;
}
.morebtn1 a:hover span::after {
  left: 3rem;
  opacity: 0;
}

/******************************
newslist
******************************/
.newslist {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.newslist li {
  border-bottom: 1px solid #B39A7A;
  padding-bottom: 1rem;
}
.newslist .info {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: .5rem;
}
.newslist .time {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
}
.newslist .cat {
  background: #4A3728;
  border-radius: 5px;
  color: #fff;
  font-size: 1.4rem;
  padding: .25rem 1rem .1rem;
}
@media only screen and (max-width: 1180px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
}

/******************************
bg
******************************/
.cmnbg1 {
  background: rgba(179,154,122,.3);
}

/******************************
faq
******************************/
.faqbox {
  max-width: 800px;
  margin: 0 auto 5rem;
  width: 90%;
}
.faqlist li:not(:last-child) {
  margin-bottom: 2rem;
}
.faqlist dl {
  border-radius: 20px;
  overflow: hidden;
}
.faqlist dt,
.faqlist dd {
  padding: 2rem;
  position: relative;
}
.faqlist dt {
  background: #fff;
}
.faqlist dd {
  background: #e0d7cc;
  border-top: 2px solid #B39A7A;
}
.faqlist span {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
  margin-right: 1.5rem;
}
.faqlist dd span {
  color: #B39A7A;
}
@media only screen and (max-width: 1180px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
  .faqlist dt,
  .faqlist dd {
    padding: 1rem 2rem;
  }
  .faqlist span {
    font-size: 2.5rem;
    margin-right: 1rem;
  }
}

/*****************************
attention
*****************************/
.attentionlist li:not(:last-child) {
  margin-bottom: 10rem;
}
.attentionlist .fimgbox img {
  border-radius: 20px;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.attentionlist .ttlbox h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 3rem;
}
.attentionlist .ttlbox h3 span {
  color: #B39A7A;
  font-family: "Shippori Mincho", serif;
  font-size: 2.3rem;
  font-weight: 600;
  padding-left: 7rem;
  position: relative;
  margin-left: 2rem;
}
.attentionlist .ttlbox h3 span::before {
  background: #B39A7A;
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 1px;
  width: 60px;
}
@media only screen and (max-width: 1180px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
  .attentionlist .ttlbox h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .attentionlist .ttlbox h3 span {
    font-size: 2rem;
    padding-left: 7rem;
    margin-left: 0;
    display: block;
  }
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
  .attentionlist li:not(:last-child) {
    margin-bottom: 8rem;
  }
  .attentionlist .fimgbox {
    margin-bottom: 2rem;
  }
}

/******************************
spfixlink
******************************/
.spfixlink {
  display: none;
}
@media only screen and (max-width: 1180px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
  .spfixlink {
    border-radius: 20px 20px 0 0;
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    overflow: hidden;
    opacity: 0;
    transition: .5s;
    width: 100%;
    z-index: 10;
  }
  .spfixlink.change {
    opacity: 1;
  }
  .spfixlink li {
    width: calc(100% / 4);
  }
  .spfixlink li:not(:last-child) {
    border-right: 1px solid #fff;
  }
  .spfixlink a {
    background: #B39A7A;
    color: #fff;
    display: block;
    font-size: 1.4rem;
    padding: 1rem 0 .5rem;
    text-align: center;
  }
  .spfixlink i {
    display: block;
    font-size: 2rem;
    margin-bottom: .5rem;
  }
}

.logothumbnail {
  border-radius: 20px;
}