@charset "UTF-8";
html {
  visibility: hidden;
}

html.wf-active,
html.loading-delay {
  visibility: visible;
}

html {
  scroll-behavior: smooth;
}

a {
  cursor: pointer;
}

body {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 884px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
}

.wrapper {
  max-width: 1670px;
  margin: 0 auto;
}
@media screen and (max-width: 1670px) {
  .wrapper {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .wrapper {
    margin: 0 3%;
  }
}

.inner {
  max-width: 1520px;
  margin: 0 auto;
}
@media screen and (max-width: 1520px) {
  .inner {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .inner {
    margin: 0 3%;
  }
}

.inner2 {
  max-width: 1200px;
  margin: 0 0 0 5%;
}
@media screen and (max-width: 1300px) {
  .inner2 {
    margin: 0 6%;
  }
}

#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 30px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
  transform: scale(1, -1);
}
@media screen and (max-width: 480px) {
  #page-top a {
    width: 45px;
    height: 45px;
    font-size: 30px;
  }
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (max-width: 480px) {
  #page-top {
    right: 13px;
    bottom: 8px;
  }
}

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

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

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/* fadeIn */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger {
  opacity: 0;
}

.pc_nav ul {
  position: absolute;
  font-family: "Lato", sans-serif;
  color: #FFFFFF;
  display: flex;
  padding: 50px;
  right: 0;
}
@media screen and (max-width: 1300px) {
  .pc_nav ul {
    padding: 40px 0 100px;
  }
}
.pc_nav ul li {
  padding: 0 20px;
}
.pc_nav ul li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .pc_nav ul li {
    padding: 0 22px;
  }
}
@media screen and (max-width: 480px) {
  .pc_nav {
    display: none;
  }
}

.footer {
  display: flex;
  flex-direction: column;
}
.footer .f-list {
  font-family: "Lato", sans-serif;
  display: flex;
  justify-content: right;
  color: #333333;
  padding: 55px 0 60px;
}
@media screen and (max-width: 1300px) {
  .footer .f-list {
    padding: 40px 0 55px;
  }
}
@media screen and (max-width: 884px) {
  .footer .f-list {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .footer .f-list {
    flex-wrap: wrap;
    font-size: 16px;
    gap: 10px;
    padding: 50px 0 30px;
  }
}
.footer .f-list li {
  padding: 0 20px;
}
.footer .f-list li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .footer .f-list li {
    padding: 0 22px;
  }
}
.footer .f-list_sub {
  font-size: 14px;
  padding: 0 0 60px;
}
@media screen and (max-width: 884px) {
  .footer .f-list_sub {
    padding-bottom: 50px;
  }
}
.footer .adress {
  font-family: "Lato", sans-serif;
  display: block;
  margin-left: auto;
  margin-right: 0;
  padding-bottom: 50px;
}
.footer .copy {
  text-align: right;
  padding-bottom: 10px;
}

.btn01 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-right: 0;
}
.btn01::before {
  content: "+";
}

.btn02 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-left: 0;
  position: relative;
  z-index: 100;
}
.btn02::before {
  content: "+";
}

.btn03 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  max-width: 150px;
  margin-right: 0;
  margin-top: 200px;
}
@media screen and (max-width: 884px) {
  .btn03 {
    margin-top: 100px;
  }
}
@media screen and (max-width: 480px) {
  .btn03 {
    margin-top: 80px;
    width: 100px;
  }
}

.title {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .title {
    font-size: 30px;
  }
}

.sub {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  padding: 50px 0 60px;
}
@media screen and (max-width: 480px) {
  .sub {
    padding: 45px 0 30px;
    font-size: 18px;
  }
}

.title-sub {
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .title-sub {
    font-size: 20px;
  }
}

.sub-title {
  font-size: 56px;
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-left: 100px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .sub-title {
    font-size: 40px;
    margin-left: 0;
    line-height: 0.8;
  }
}
.sub-title span {
  font-size: 18px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.sub-top {
  padding-top: 35px;
  background-image: url(../img/sub_kv.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 480px) {
  .sub-top {
    padding-top: 35px;
  }
}

.sub-top h2 {
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 800;
  font-style: normal;
  color: #46573F;
  display: block;
  margin-left: 200px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1700px) {
  .sub-top h2 {
    margin-left: 145px;
    font-size: 48px;
  }
}
@media screen and (max-width: 884px) {
  .sub-top h2 {
    margin-left: 115px;
    margin-top: 4vh;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 480px) {
  .sub-top h2 {
    text-align: center;
    font-size: 38px;
    margin: 2rem auto 5rem;
  }
}
.sub-top h2 span {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.sub-top .pc_nav {
  display: flex;
  justify-content: right;
  padding-bottom: 45px;
}
@media screen and (max-width: 480px) {
  .sub-top .pc_nav {
    justify-content: center;
  }
}
.sub-top .pc_nav ul {
  color: #000000;
  padding: 15px 0 0 0;
}
@media screen and (max-width: 884px) {
  .sub-top .pc_nav nav {
    display: none;
  }
}
.sub-top h3 {
  font-size: 36px;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .sub-top h3 {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
.sub-top .story_box1 {
  padding-left: 0;
  background: none;
}
@media screen and (max-width: 884px) {
  .sub-top .story_box1 {
    margin: 0 auto;
    padding: 8% 0 0;
  }
}
@media screen and (max-width: 480px) {
  .sub-top .story_box1 {
    padding: 0;
    margin: 4rem auto;
    width: 85%;
  }
}

.sub_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
@media screen and (max-width: 884px) {
  .sub_top {
    flex-direction: column;
    align-items: baseline;
  }
}
@media screen and (max-width: 480px) {
  .sub_top {
    margin-top: 0;
  }
}
.sub_top_img {
  width: 60%;
}
@media screen and (max-width: 1300px) {
  .sub_top_img {
    width: 55%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top_img {
    width: 75%;
    margin-left: auto;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .sub_top_img {
    width: 88%;
    margin-bottom: 0;
  }
}
.sub_top .sub-title {
  position: relative;
  display: block;
  text-align: left;
}
.sub_top .sub-title::before {
  content: "";
  background-image: url(../img/light.png);
  position: absolute;
  width: 140px;
  height: 300px;
  top: -343%;
  left: 0;
}
@media screen and (max-width: 1700px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light02.png);
    width: 101px;
    height: 215px;
    top: -305%;
    left: 7%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::before {
    top: -256%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light03.png);
    width: 67px;
    height: 140px;
    top: -300%;
    left: 28%;
  }
}
.sub_top .sub-title::after {
  content: "";
  background-image: url(../img/tree.png);
  background-repeat: no-repeat;
  position: absolute;
  width: 585px;
  height: 235px;
  top: -38%;
  left: -73%;
}
@media screen and (max-width: 1300px) {
  .sub_top .sub-title::after {
    width: 499px;
    height: 235px;
    top: -68%;
    left: -66%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::after {
    background-image: url(../img/tree02.png);
    height: 160px;
    top: -11%;
    left: -46%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::after {
    width: 350px;
    height: 160px;
    top: -70%;
    left: -58%;
  }
}

.topic {
  margin-top: 70px;
  margin-bottom: 70px;
}
@media screen and (max-width: 480px) {
  .topic {
    margin-top: 40px;
    margin-bottom: 45px;
  }
}
.topic li {
  border-top: 1px solid #ECECEC;
  padding: 8% 16%;
}
@media screen and (max-width: 480px) {
  .topic li {
    padding: 8% 3%;
  }
}
.topic li:last-child {
  border-bottom: 1px solid #ECECEC;
}
.topic .date {
  font-family: "Lato", sans-serif;
}
.topic .topic_title {
  font-weight: bold;
  margin: 15px 0;
}

#contact {
  margin-top: 10%;
}

.contact {
  display: flex;
}
@media screen and (max-width: 884px) {
  .contact {
    flex-direction: column;
  }
}
.contact_box01 {
  width: 58%;
  padding: 15% 6%;
  background-image: url(../img/back_img.png);
  color: #FFFFFF;
}
@media screen and (max-width: 884px) {
  .contact_box01 {
    width: 100%;
  }
}
.contact_box01 .sub {
  display: inline-block;
  border-bottom: 1px solid #ECECEC;
  padding-bottom: 5px;
  font-size: 20px;
  padding: 50px 0 0;
}
@media screen and (max-width: 480px) {
  .contact_box01 .sub {
    font-size: 18px;
    padding: 6px 0 0;
  }
}
.contact_box01 .text {
  margin-top: 70px;
}
@media screen and (max-width: 480px) {
  .contact_box01 .text {
    margin-top: 35px;
  }
}
.contact_box02 {
  width: 42%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 884px) {
  .contact_box02 {
    width: 100%;
  }
}
.contact_box02 .tel, .contact_box02 .mail {
  height: 50%;
  padding: 10% 5%;
  text-align: center;
  border-top: 1px solid #ECECEC;
}
@media screen and (max-width: 884px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 5%;
  }
}
@media screen and (max-width: 480px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 10% 5%;
  }
}
.contact_box02 .mail {
  border-bottom: 1px solid #ECECEC;
}
.contact_box02 .contact_contents {
  display: flex;
  margin: 50px auto;
  justify-content: center;
  border: 1px solid #ECECEC;
  width: 70%;
  padding: 10px;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents {
    width: 90%;
    margin: 15px auto;
  }
}
.contact_box02 .contact_contents a {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.contact_box02 .contact_contents a img {
  margin: 0 auto;
  width: 8%;
  height: auto;
  margin-right: 10px;
}
.contact_box02 .contact_contents .number {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .number {
    font-size: 30px;
  }
}
.contact_box02 .contact_contents .mailform {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .mailform {
    font-size: 20px;
  }
}
.contact_box02 .contact_detail {
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .m-c {
    padding: 20px 10px;
  }
}

.tab2 {
  display: none;
}
@media screen and (max-width: 884px) {
  .tab2 {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .tab2 {
    display: none;
  }
}

.booking {
  position: fixed;
  bottom: 3%;
  left: 3%;
  z-index: 9999;
  width: 250px;
  padding: 20px;
  background-color: rgba(249, 249, 249, 0.631372549);
}
@media screen and (max-width: 480px) {
  .booking {
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 10px;
  }
}
.booking a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.booking a .booking-img {
  margin-right: 15px;
}

html {
  visibility: hidden;
}

html.wf-active,
html.loading-delay {
  visibility: visible;
}

html {
  scroll-behavior: smooth;
}

a {
  cursor: pointer;
}

body {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 884px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
}

.wrapper {
  max-width: 1670px;
  margin: 0 auto;
}
@media screen and (max-width: 1670px) {
  .wrapper {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .wrapper {
    margin: 0 3%;
  }
}

.inner {
  max-width: 1520px;
  margin: 0 auto;
}
@media screen and (max-width: 1520px) {
  .inner {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .inner {
    margin: 0 3%;
  }
}

.inner2 {
  max-width: 1200px;
  margin: 0 0 0 5%;
}
@media screen and (max-width: 1300px) {
  .inner2 {
    margin: 0 6%;
  }
}

#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 30px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
  transform: scale(1, -1);
}
@media screen and (max-width: 480px) {
  #page-top a {
    width: 45px;
    height: 45px;
    font-size: 30px;
  }
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (max-width: 480px) {
  #page-top {
    right: 13px;
    bottom: 8px;
  }
}

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

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

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/* fadeIn */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger {
  opacity: 0;
}

.pc_nav ul {
  position: absolute;
  font-family: "Lato", sans-serif;
  color: #FFFFFF;
  display: flex;
  padding: 50px;
  right: 0;
}
@media screen and (max-width: 1300px) {
  .pc_nav ul {
    padding: 40px 0 100px;
  }
}
.pc_nav ul li {
  padding: 0 20px;
}
.pc_nav ul li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .pc_nav ul li {
    padding: 0 22px;
  }
}
@media screen and (max-width: 480px) {
  .pc_nav {
    display: none;
  }
}

.footer {
  display: flex;
  flex-direction: column;
}
.footer .f-list {
  font-family: "Lato", sans-serif;
  display: flex;
  justify-content: right;
  color: #333333;
  padding: 55px 0 60px;
}
@media screen and (max-width: 1300px) {
  .footer .f-list {
    padding: 40px 0 55px;
  }
}
@media screen and (max-width: 884px) {
  .footer .f-list {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .footer .f-list {
    flex-wrap: wrap;
    font-size: 16px;
    gap: 10px;
    padding: 50px 0 30px;
  }
}
.footer .f-list li {
  padding: 0 20px;
}
.footer .f-list li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .footer .f-list li {
    padding: 0 22px;
  }
}
.footer .f-list_sub {
  font-size: 14px;
  padding: 0 0 60px;
}
@media screen and (max-width: 884px) {
  .footer .f-list_sub {
    padding-bottom: 50px;
  }
}
.footer .adress {
  font-family: "Lato", sans-serif;
  display: block;
  margin-left: auto;
  margin-right: 0;
  padding-bottom: 50px;
}
.footer .copy {
  text-align: right;
  padding-bottom: 10px;
}

.btn01 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-right: 0;
}
.btn01::before {
  content: "+";
}

.btn02 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-left: 0;
  position: relative;
  z-index: 100;
}
.btn02::before {
  content: "+";
}

.btn03 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  max-width: 150px;
  margin-right: 0;
  margin-top: 200px;
}
@media screen and (max-width: 884px) {
  .btn03 {
    margin-top: 100px;
  }
}
@media screen and (max-width: 480px) {
  .btn03 {
    margin-top: 80px;
    width: 100px;
  }
}

.title {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .title {
    font-size: 30px;
  }
}

.sub {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  padding: 50px 0 60px;
}
@media screen and (max-width: 480px) {
  .sub {
    padding: 45px 0 30px;
    font-size: 18px;
  }
}

.title-sub {
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .title-sub {
    font-size: 20px;
  }
}

.sub-title {
  font-size: 56px;
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-left: 100px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .sub-title {
    font-size: 40px;
    margin-left: 0;
    line-height: 0.8;
  }
}
.sub-title span {
  font-size: 18px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.sub-top {
  padding-top: 35px;
  background-image: url(../img/sub_kv.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 480px) {
  .sub-top {
    padding-top: 35px;
  }
}

.sub-top h2 {
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 800;
  font-style: normal;
  color: #46573F;
  display: block;
  margin-left: 200px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1700px) {
  .sub-top h2 {
    margin-left: 145px;
    font-size: 48px;
  }
}
@media screen and (max-width: 884px) {
  .sub-top h2 {
    margin-left: 115px;
    margin-top: 4vh;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 480px) {
  .sub-top h2 {
    text-align: center;
    font-size: 38px;
    margin: 2rem auto 5rem;
  }
}
.sub-top h2 span {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.sub-top .pc_nav {
  display: flex;
  justify-content: right;
  padding-bottom: 45px;
}
@media screen and (max-width: 480px) {
  .sub-top .pc_nav {
    justify-content: center;
  }
}
.sub-top .pc_nav ul {
  color: #000000;
  padding: 15px 0 0 0;
}
@media screen and (max-width: 884px) {
  .sub-top .pc_nav nav {
    display: none;
  }
}
.sub-top h3 {
  font-size: 36px;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .sub-top h3 {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
.sub-top .story_box1 {
  padding-left: 0;
  background: none;
}
@media screen and (max-width: 884px) {
  .sub-top .story_box1 {
    margin: 0 auto;
    padding: 8% 0 0;
  }
}
@media screen and (max-width: 480px) {
  .sub-top .story_box1 {
    padding: 0;
    margin: 4rem auto;
    width: 85%;
  }
}

.sub_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
@media screen and (max-width: 884px) {
  .sub_top {
    flex-direction: column;
    align-items: baseline;
  }
}
@media screen and (max-width: 480px) {
  .sub_top {
    margin-top: 0;
  }
}
.sub_top_img {
  width: 60%;
}
@media screen and (max-width: 1300px) {
  .sub_top_img {
    width: 55%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top_img {
    width: 75%;
    margin-left: auto;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .sub_top_img {
    width: 88%;
    margin-bottom: 0;
  }
}
.sub_top .sub-title {
  position: relative;
  display: block;
  text-align: left;
}
.sub_top .sub-title::before {
  content: "";
  background-image: url(../img/light.png);
  position: absolute;
  width: 140px;
  height: 300px;
  top: -343%;
  left: 0;
}
@media screen and (max-width: 1700px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light02.png);
    width: 101px;
    height: 215px;
    top: -305%;
    left: 7%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::before {
    top: -256%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light03.png);
    width: 67px;
    height: 140px;
    top: -300%;
    left: 28%;
  }
}
.sub_top .sub-title::after {
  content: "";
  background-image: url(../img/tree.png);
  background-repeat: no-repeat;
  position: absolute;
  width: 585px;
  height: 235px;
  top: -38%;
  left: -73%;
}
@media screen and (max-width: 1300px) {
  .sub_top .sub-title::after {
    width: 499px;
    height: 235px;
    top: -68%;
    left: -66%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::after {
    background-image: url(../img/tree02.png);
    height: 160px;
    top: -11%;
    left: -46%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::after {
    width: 350px;
    height: 160px;
    top: -70%;
    left: -58%;
  }
}

.topic {
  margin-top: 70px;
  margin-bottom: 70px;
}
@media screen and (max-width: 480px) {
  .topic {
    margin-top: 40px;
    margin-bottom: 45px;
  }
}
.topic li {
  border-top: 1px solid #ECECEC;
  padding: 8% 16%;
}
@media screen and (max-width: 480px) {
  .topic li {
    padding: 8% 3%;
  }
}
.topic li:last-child {
  border-bottom: 1px solid #ECECEC;
}
.topic .date {
  font-family: "Lato", sans-serif;
}
.topic .topic_title {
  font-weight: bold;
  margin: 15px 0;
}

#contact {
  margin-top: 10%;
}

.contact {
  display: flex;
}
@media screen and (max-width: 884px) {
  .contact {
    flex-direction: column;
  }
}
.contact_box01 {
  width: 58%;
  padding: 15% 6%;
  background-image: url(../img/back_img.png);
  color: #FFFFFF;
}
@media screen and (max-width: 884px) {
  .contact_box01 {
    width: 100%;
  }
}
.contact_box01 .sub {
  display: inline-block;
  border-bottom: 1px solid #ECECEC;
  padding-bottom: 5px;
  font-size: 20px;
  padding: 50px 0 0;
}
@media screen and (max-width: 480px) {
  .contact_box01 .sub {
    font-size: 18px;
    padding: 6px 0 0;
  }
}
.contact_box01 .text {
  margin-top: 70px;
}
@media screen and (max-width: 480px) {
  .contact_box01 .text {
    margin-top: 35px;
  }
}
.contact_box02 {
  width: 42%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 884px) {
  .contact_box02 {
    width: 100%;
  }
}
.contact_box02 .tel, .contact_box02 .mail {
  height: 50%;
  padding: 10% 5%;
  text-align: center;
  border-top: 1px solid #ECECEC;
}
@media screen and (max-width: 884px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 5%;
  }
}
@media screen and (max-width: 480px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 10% 5%;
  }
}
.contact_box02 .mail {
  border-bottom: 1px solid #ECECEC;
}
.contact_box02 .contact_contents {
  display: flex;
  margin: 50px auto;
  justify-content: center;
  border: 1px solid #ECECEC;
  width: 70%;
  padding: 10px;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents {
    width: 90%;
    margin: 15px auto;
  }
}
.contact_box02 .contact_contents a {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.contact_box02 .contact_contents a img {
  margin: 0 auto;
  width: 8%;
  height: auto;
  margin-right: 10px;
}
.contact_box02 .contact_contents .number {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .number {
    font-size: 30px;
  }
}
.contact_box02 .contact_contents .mailform {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .mailform {
    font-size: 20px;
  }
}
.contact_box02 .contact_detail {
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .m-c {
    padding: 20px 10px;
  }
}

.tab2 {
  display: none;
}
@media screen and (max-width: 884px) {
  .tab2 {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .tab2 {
    display: none;
  }
}

.booking {
  position: fixed;
  bottom: 3%;
  left: 3%;
  z-index: 9999;
  width: 250px;
  padding: 20px;
  background-color: rgba(249, 249, 249, 0.631372549);
}
@media screen and (max-width: 480px) {
  .booking {
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 10px;
  }
}
.booking a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.booking a .booking-img {
  margin-right: 15px;
}

#g-nav {
  position: fixed;
  z-index: 900;
  top: -120%;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 0;
  background-color: #FFFFFF;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive {
  /*ナビの数が増えた場合縦スクロール*/
  display: block;
  position: fixed;
  z-index: 999;
  width: 33%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
}
@media screen and (max-width: 884px) {
  #g-nav.panelactive {
    width: 100%;
  }
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  width: 50%;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 1300px) {
  #g-nav ul {
    top: 55%;
  }
}
@media screen and (max-width: 884px) {
  #g-nav ul {
    width: auto;
    transform: translate(0%, -50%);
    top: 45%;
  }
}
@media screen and (max-width: 480px) {
  #g-nav ul {
    transform: translate(-10%, -50%);
    top: 42%;
  }
}

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
}
#g-nav li a {
  text-decoration: none;
  padding: 50px 0 20px;
  display: block;
  text-transform: uppercase;
  color: #333333;
  text-align: left;
  font-size: 16px;
}
@media screen and (max-width: 1300px) {
  #g-nav li a {
    padding: 30px 0 10px;
  }
}
@media screen and (max-width: 884px) {
  #g-nav li a {
    padding: 40px 0 10px;
  }
}
@media screen and (max-width: 320px) {
  #g-nav li a {
    padding: 10px 0;
  }
}
#g-nav li a:hover {
  color: #46573F;
  border-bottom: 1px solid #FFFFFF;
}

#g-nav .cart {
  width: 10%;
  padding: 50px 0 0;
}
@media screen and (max-width: 884px) {
  #g-nav .cart {
    width: 40%;
  }
}
@media screen and (max-width: 480px) {
  #g-nav .cart {
    width: 30%;
    padding-top: 0;
  }
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  top: 22px;
  left: 30px;
  z-index: 9999;
  cursor: pointer;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid #333333;
}
@media screen and (max-width: 480px) {
  .openbtn {
    width: 55px;
    height: 55px;
    left: 15px;
  }
}
.openbtn span {
  display: inline-block;
  background-color: #333333;
  transition: all 0.4s;
  position: absolute;
  height: 1px;
  left: 16px;
}
@media screen and (max-width: 480px) {
  .openbtn span {
    left: 13px;
  }
}
.openbtn span:nth-of-type(1) {
  top: 30px;
  width: 51%;
}
@media screen and (max-width: 480px) {
  .openbtn span:nth-of-type(1) {
    top: 20px;
    width: 47%;
  }
}
.openbtn span:nth-of-type(2) {
  top: 45px;
  width: 60%;
}
@media screen and (max-width: 480px) {
  .openbtn span:nth-of-type(2) {
    top: 33px;
    width: 57%;
  }
}

.openbtn.active span:nth-of-type(1) {
  top: 32px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}
@media screen and (max-width: 480px) {
  .openbtn.active span:nth-of-type(1) {
    top: 20px;
    left: 13px;
  }
}

.openbtn.active span:nth-of-type(2) {
  top: 44px;
  left: 20px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}
@media screen and (max-width: 480px) {
  .openbtn.active span:nth-of-type(2) {
    top: 32px;
    left: 13px;
  }
}

html {
  visibility: hidden;
}

html.wf-active,
html.loading-delay {
  visibility: visible;
}

html {
  scroll-behavior: smooth;
}

a {
  cursor: pointer;
}

body {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 884px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
}

.wrapper {
  max-width: 1670px;
  margin: 0 auto;
}
@media screen and (max-width: 1670px) {
  .wrapper {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .wrapper {
    margin: 0 3%;
  }
}

.inner {
  max-width: 1520px;
  margin: 0 auto;
}
@media screen and (max-width: 1520px) {
  .inner {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .inner {
    margin: 0 3%;
  }
}

.inner2 {
  max-width: 1200px;
  margin: 0 0 0 5%;
}
@media screen and (max-width: 1300px) {
  .inner2 {
    margin: 0 6%;
  }
}

#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 30px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
  transform: scale(1, -1);
}
@media screen and (max-width: 480px) {
  #page-top a {
    width: 45px;
    height: 45px;
    font-size: 30px;
  }
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (max-width: 480px) {
  #page-top {
    right: 13px;
    bottom: 8px;
  }
}

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

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

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/* fadeIn */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger {
  opacity: 0;
}

.pc_nav ul {
  position: absolute;
  font-family: "Lato", sans-serif;
  color: #FFFFFF;
  display: flex;
  padding: 50px;
  right: 0;
}
@media screen and (max-width: 1300px) {
  .pc_nav ul {
    padding: 40px 0 100px;
  }
}
.pc_nav ul li {
  padding: 0 20px;
}
.pc_nav ul li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .pc_nav ul li {
    padding: 0 22px;
  }
}
@media screen and (max-width: 480px) {
  .pc_nav {
    display: none;
  }
}

.footer {
  display: flex;
  flex-direction: column;
}
.footer .f-list {
  font-family: "Lato", sans-serif;
  display: flex;
  justify-content: right;
  color: #333333;
  padding: 55px 0 60px;
}
@media screen and (max-width: 1300px) {
  .footer .f-list {
    padding: 40px 0 55px;
  }
}
@media screen and (max-width: 884px) {
  .footer .f-list {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .footer .f-list {
    flex-wrap: wrap;
    font-size: 16px;
    gap: 10px;
    padding: 50px 0 30px;
  }
}
.footer .f-list li {
  padding: 0 20px;
}
.footer .f-list li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .footer .f-list li {
    padding: 0 22px;
  }
}
.footer .f-list_sub {
  font-size: 14px;
  padding: 0 0 60px;
}
@media screen and (max-width: 884px) {
  .footer .f-list_sub {
    padding-bottom: 50px;
  }
}
.footer .adress {
  font-family: "Lato", sans-serif;
  display: block;
  margin-left: auto;
  margin-right: 0;
  padding-bottom: 50px;
}
.footer .copy {
  text-align: right;
  padding-bottom: 10px;
}

.btn01 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-right: 0;
}
.btn01::before {
  content: "+";
}

.btn02 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-left: 0;
  position: relative;
  z-index: 100;
}
.btn02::before {
  content: "+";
}

.btn03 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  max-width: 150px;
  margin-right: 0;
  margin-top: 200px;
}
@media screen and (max-width: 884px) {
  .btn03 {
    margin-top: 100px;
  }
}
@media screen and (max-width: 480px) {
  .btn03 {
    margin-top: 80px;
    width: 100px;
  }
}

.title {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .title {
    font-size: 30px;
  }
}

.sub {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  padding: 50px 0 60px;
}
@media screen and (max-width: 480px) {
  .sub {
    padding: 45px 0 30px;
    font-size: 18px;
  }
}

.title-sub {
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .title-sub {
    font-size: 20px;
  }
}

.sub-title {
  font-size: 56px;
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-left: 100px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .sub-title {
    font-size: 40px;
    margin-left: 0;
    line-height: 0.8;
  }
}
.sub-title span {
  font-size: 18px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.sub-top {
  padding-top: 35px;
  background-image: url(../img/sub_kv.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 480px) {
  .sub-top {
    padding-top: 35px;
  }
}

.sub-top h2 {
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 800;
  font-style: normal;
  color: #46573F;
  display: block;
  margin-left: 200px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1700px) {
  .sub-top h2 {
    margin-left: 145px;
    font-size: 48px;
  }
}
@media screen and (max-width: 884px) {
  .sub-top h2 {
    margin-left: 115px;
    margin-top: 4vh;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 480px) {
  .sub-top h2 {
    text-align: center;
    font-size: 38px;
    margin: 2rem auto 5rem;
  }
}
.sub-top h2 span {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.sub-top .pc_nav {
  display: flex;
  justify-content: right;
  padding-bottom: 45px;
}
@media screen and (max-width: 480px) {
  .sub-top .pc_nav {
    justify-content: center;
  }
}
.sub-top .pc_nav ul {
  color: #000000;
  padding: 15px 0 0 0;
}
@media screen and (max-width: 884px) {
  .sub-top .pc_nav nav {
    display: none;
  }
}
.sub-top h3 {
  font-size: 36px;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .sub-top h3 {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
.sub-top .story_box1 {
  padding-left: 0;
  background: none;
}
@media screen and (max-width: 884px) {
  .sub-top .story_box1 {
    margin: 0 auto;
    padding: 8% 0 0;
  }
}
@media screen and (max-width: 480px) {
  .sub-top .story_box1 {
    padding: 0;
    margin: 4rem auto;
    width: 85%;
  }
}

.sub_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
@media screen and (max-width: 884px) {
  .sub_top {
    flex-direction: column;
    align-items: baseline;
  }
}
@media screen and (max-width: 480px) {
  .sub_top {
    margin-top: 0;
  }
}
.sub_top_img {
  width: 60%;
}
@media screen and (max-width: 1300px) {
  .sub_top_img {
    width: 55%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top_img {
    width: 75%;
    margin-left: auto;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .sub_top_img {
    width: 88%;
    margin-bottom: 0;
  }
}
.sub_top .sub-title {
  position: relative;
  display: block;
  text-align: left;
}
.sub_top .sub-title::before {
  content: "";
  background-image: url(../img/light.png);
  position: absolute;
  width: 140px;
  height: 300px;
  top: -343%;
  left: 0;
}
@media screen and (max-width: 1700px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light02.png);
    width: 101px;
    height: 215px;
    top: -305%;
    left: 7%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::before {
    top: -256%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light03.png);
    width: 67px;
    height: 140px;
    top: -300%;
    left: 28%;
  }
}
.sub_top .sub-title::after {
  content: "";
  background-image: url(../img/tree.png);
  background-repeat: no-repeat;
  position: absolute;
  width: 585px;
  height: 235px;
  top: -38%;
  left: -73%;
}
@media screen and (max-width: 1300px) {
  .sub_top .sub-title::after {
    width: 499px;
    height: 235px;
    top: -68%;
    left: -66%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::after {
    background-image: url(../img/tree02.png);
    height: 160px;
    top: -11%;
    left: -46%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::after {
    width: 350px;
    height: 160px;
    top: -70%;
    left: -58%;
  }
}

.topic {
  margin-top: 70px;
  margin-bottom: 70px;
}
@media screen and (max-width: 480px) {
  .topic {
    margin-top: 40px;
    margin-bottom: 45px;
  }
}
.topic li {
  border-top: 1px solid #ECECEC;
  padding: 8% 16%;
}
@media screen and (max-width: 480px) {
  .topic li {
    padding: 8% 3%;
  }
}
.topic li:last-child {
  border-bottom: 1px solid #ECECEC;
}
.topic .date {
  font-family: "Lato", sans-serif;
}
.topic .topic_title {
  font-weight: bold;
  margin: 15px 0;
}

#contact {
  margin-top: 10%;
}

.contact {
  display: flex;
}
@media screen and (max-width: 884px) {
  .contact {
    flex-direction: column;
  }
}
.contact_box01 {
  width: 58%;
  padding: 15% 6%;
  background-image: url(../img/back_img.png);
  color: #FFFFFF;
}
@media screen and (max-width: 884px) {
  .contact_box01 {
    width: 100%;
  }
}
.contact_box01 .sub {
  display: inline-block;
  border-bottom: 1px solid #ECECEC;
  padding-bottom: 5px;
  font-size: 20px;
  padding: 50px 0 0;
}
@media screen and (max-width: 480px) {
  .contact_box01 .sub {
    font-size: 18px;
    padding: 6px 0 0;
  }
}
.contact_box01 .text {
  margin-top: 70px;
}
@media screen and (max-width: 480px) {
  .contact_box01 .text {
    margin-top: 35px;
  }
}
.contact_box02 {
  width: 42%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 884px) {
  .contact_box02 {
    width: 100%;
  }
}
.contact_box02 .tel, .contact_box02 .mail {
  height: 50%;
  padding: 10% 5%;
  text-align: center;
  border-top: 1px solid #ECECEC;
}
@media screen and (max-width: 884px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 5%;
  }
}
@media screen and (max-width: 480px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 10% 5%;
  }
}
.contact_box02 .mail {
  border-bottom: 1px solid #ECECEC;
}
.contact_box02 .contact_contents {
  display: flex;
  margin: 50px auto;
  justify-content: center;
  border: 1px solid #ECECEC;
  width: 70%;
  padding: 10px;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents {
    width: 90%;
    margin: 15px auto;
  }
}
.contact_box02 .contact_contents a {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.contact_box02 .contact_contents a img {
  margin: 0 auto;
  width: 8%;
  height: auto;
  margin-right: 10px;
}
.contact_box02 .contact_contents .number {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .number {
    font-size: 30px;
  }
}
.contact_box02 .contact_contents .mailform {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .mailform {
    font-size: 20px;
  }
}
.contact_box02 .contact_detail {
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .m-c {
    padding: 20px 10px;
  }
}

.tab2 {
  display: none;
}
@media screen and (max-width: 884px) {
  .tab2 {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .tab2 {
    display: none;
  }
}

.booking {
  position: fixed;
  bottom: 3%;
  left: 3%;
  z-index: 9999;
  width: 250px;
  padding: 20px;
  background-color: rgba(249, 249, 249, 0.631372549);
}
@media screen and (max-width: 480px) {
  .booking {
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 10px;
  }
}
.booking a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.booking a .booking-img {
  margin-right: 15px;
}

#kv {
  position: relative;
}
#kv .top-slider {
  position: relative;
  z-index: -10;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  height: 100vh; /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  margin: 0;
  padding: 0;
  list-style: none;
}
#kv .top-slider .slider-item-top01 {
  background-image: url(../img/kv01.png);
  animation: slide-animation-01 24s infinite;
}
#kv .top-slider .slider-item-top02 {
  background-image: url(../img/kv02.png);
  animation: slide-animation-02 24s infinite;
}
#kv .top-slider .slider-item-top03 {
  background-image: url(../img/kv03.png);
  animation: slide-animation-03 24s infinite;
}
#kv .top-slider a {
  color: #fff;
}
#kv .top-slider a:hover,
#kv .top-slider a:active {
  text-decoration: none;
}
#kv .top-slider .wrapper {
  position: relative;
}
#kv .top-slider .container {
  background: #555;
}
#kv .top-slider .container p {
  padding: 300px 0;
  text-align: center;
  color: #fff;
}
@keyframes slide-animation-01 {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
    transform: scale(1.15);
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slide-animation-02 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
    transform: scale(1.1);
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  70% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slide-animation-03 {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
    transform: scale(1);
  }
  70% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}
#kv h1 {
  position: absolute;
  font-family: "ta-miyabi", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #FFFFFF;
  font-size: 60px;
  display: inline-block;
  margin: 50vh 0 0 55%;
  line-height: 1.3;
}
@media screen and (max-width: 1425px) {
  #kv h1 {
    margin: 35vh 0 0 43vw;
  }
}
@media screen and (max-width: 1300px) {
  #kv h1 {
    margin: 46vh 0 0 46vw;
    line-height: 1.3;
    font-size: 58px;
  }
}
@media screen and (max-width: 884px) {
  #kv h1 {
    margin: 0;
    display: block;
    text-align: center;
    line-height: 1.3;
    font-size: 50px;
    top: 40%;
    left: 13%;
  }
}
@media screen and (max-width: 480px) {
  #kv h1 {
    margin: 4vw auto;
    font-size: 30px;
    padding-top: 5em;
    line-height: 2;
    font-size: 27px;
    top: 10%;
    left: 13%;
  }
}

#story {
  background-color: #ECECEC;
}
@media screen and (max-width: 884px) {
  #story {
    background-position: bottom;
  }
}
#story .title .sub {
  padding: 10px 0 25px;
}

.story-position {
  position: relative;
}

.story_box1 {
  background-color: #FFFFFF;
  position: relative;
  padding: 115px 60px 155px;
  width: 55%;
  margin-left: 6%;
  z-index: 10;
}
@media screen and (max-width: 1300px) {
  .story_box1 {
    padding: 50px 60px 80px;
    width: 70%;
  }
}
@media screen and (max-width: 884px) {
  .story_box1 {
    margin-left: 0;
    padding: 50px 40px 60px;
  }
}
@media screen and (max-width: 480px) {
  .story_box1 {
    padding: 50px 25px 50px 30px;
    width: 100%;
    margin-left: 0;
  }
}

.story-bg {
  width: 80%;
  margin-left: auto;
  position: absolute;
  z-index: 1;
  top: 90%;
  right: 0;
}
@media screen and (max-width: 884px) {
  .story-bg {
    width: 85%;
    top: 40%;
  }
}
@media screen and (max-width: 480px) {
  .story-bg {
    top: 85%;
    width: 100%;
  }
}
@media screen and (max-width: 884px) {
  .story-bg .story-img {
    display: none;
  }
}
.story-bg .story-img-tab {
  display: none;
}
@media screen and (max-width: 884px) {
  .story-bg .story-img-tab {
    display: block;
  }
}

.story_box2 {
  background-color: #FFFFFF;
  padding: 95px 150px 100px 70px;
  width: 56%;
  margin: 357px 0 0 auto;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1300px) {
  .story_box2 {
    margin: 240px 0 0 auto;
    width: 70%;
  }
}
@media screen and (max-width: 884px) {
  .story_box2 {
    padding: 98px 71px 60px 70px;
    margin: 115px 0 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .story_box2 {
    padding: 70px 25px 70px 25px;
    width: 100%;
    margin-top: 258px;
    background-color: #ECECEC;
  }
}

@media screen and (max-width: 884px) {
  .sub {
    font-size: 25px;
    padding: 50px 0 60px;
  }
}
@media screen and (max-width: 480px) {
  .sub {
    padding: 30px 0 35px;
  }
}
.sub span {
  font-family: "ta-miyabi", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding-left: 20px;
  font-size: 16px;
}

#challenge {
  margin-top: 100px;
}
@media screen and (max-width: 1300px) {
  #challenge {
    margin-top: 140px;
  }
}
@media screen and (max-width: 884px) {
  #challenge {
    margin-top: 170px;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 480px) {
  #challenge {
    margin-top: 0;
  }
}

.challenge_box1 {
  display: flex;
}
@media screen and (max-width: 884px) {
  .challenge_box1 {
    flex-direction: column-reverse;
  }
}

.fourchallenge {
  padding-left: 6%;
  padding-right: 8%;
  width: 50%;
}
@media screen and (max-width: 1300px) {
  .fourchallenge {
    width: 70%;
  }
}
@media screen and (max-width: 884px) {
  .fourchallenge {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .fourchallenge {
    padding-right: 5%;
    padding-left: 5%;
  }
}
@media screen and (max-width: 1300px) {
  .fourchallenge .sub {
    padding: 0 0 60px;
  }
}
@media screen and (max-width: 884px) {
  .fourchallenge .sub {
    padding: 60px 0;
  }
}

.challenge_box2 {
  display: flex;
  justify-content: space-around;
  margin-top: 150px;
}
@media screen and (max-width: 884px) {
  .challenge_box2 {
    margin: 110px 5%;
    flex-wrap: wrap;
    gap: 50px 0;
  }
}
@media screen and (max-width: 480px) {
  .challenge_box2 {
    margin-top: 85px;
  }
}
.challenge_box2 .c_point {
  width: 25%;
  margin: 0 2%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media screen and (max-width: 884px) {
  .challenge_box2 .c_point {
    width: 45%;
  }
}
@media screen and (max-width: 480px) {
  .challenge_box2 .c_point {
    width: 100%;
  }
}
.challenge_box2 h3 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 480px) {
  .challenge_box2 h3 {
    font-size: 20px;
  }
}

.line {
  height: 250px;
  width: 1px;
  background-color: #ECECEC;
}
@media screen and (max-width: 480px) {
  .line {
    display: none;
  }
}

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

.challenge_box3 {
  width: 25%;
  margin: 10% auto 0;
}
@media screen and (max-width: 1300px) {
  .challenge_box3 {
    width: 33%;
  }
}
@media screen and (max-width: 884px) {
  .challenge_box3 {
    width: 45%;
  }
}
@media screen and (max-width: 480px) {
  .challenge_box3 {
    width: 70%;
    margin-top: 21%;
  }
}
.challenge_box3 .arrow {
  width: 10%;
  margin: 20% auto;
}

.challenge_box4 {
  text-align: center;
  padding: 0 10%;
}
@media screen and (max-width: 884px) {
  .challenge_box4 {
    padding: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .challenge_box4 {
    padding: 0 3%;
  }
}
.challenge_box4 h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 35px;
}

.challenge_box5 {
  width: 65%;
  margin: 5% auto !important;
}
@media screen and (max-width: 884px) {
  .challenge_box5 {
    width: 100%;
  }
}

#top-business {
  background-image: url(../img/traditional-bg.png);
  background-size: auto;
  padding-top: 6%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1300px) {
  #top-business {
    background-size: cover;
  }
}
@media screen and (max-width: 884px) {
  #top-business {
    padding-top: 0;
    background-image: none;
    background-color: #ECECEC;
    position: relative;
  }
}
@media screen and (max-width: 480px) {
  #top-business {
    background-color: #fff;
  }
}
#top-business .story_box1 {
  margin-left: auto;
  width: 50%;
  padding: 80px 105px 56px 140px;
}
@media screen and (max-width: 1300px) {
  #top-business .story_box1 {
    width: 50%;
    padding: 80px 70px 56px 70px;
  }
}
@media screen and (max-width: 884px) {
  #top-business .story_box1 {
    margin-top: 0%;
    width: 80%;
    padding: 20px 50px 10px 50px;
    margin-right: auto;
    margin-left: 0;
  }
}
@media screen and (max-width: 480px) {
  #top-business .story_box1 {
    margin-top: 18%;
    width: 100%;
    padding: 50px 25px 30px;
  }
}
#top-business .other {
  margin-left: 0;
  margin-right: auto;
  margin-top: 10vw;
}
@media screen and (max-width: 884px) {
  #top-business .other {
    margin-left: auto;
    margin-right: 0;
    margin-top: 40vw;
  }
}
@media screen and (max-width: 480px) {
  #top-business .other {
    margin-top: 0;
    background-color: #ECECEC;
  }
}
#top-business .top-business-bg {
  display: none;
}
@media screen and (max-width: 884px) {
  #top-business .top-business-bg {
    display: block;
    position: absolute;
    top: 55vw;
  }
}
@media screen and (max-width: 480px) {
  #top-business .top-business-bg {
    position: static;
  }
}
#top-business .title .sub {
  padding: 10px 0 25px;
}

#top-product {
  margin-top: 10%;
  margin-bottom: 10%;
}
@media screen and (max-width: 480px) {
  #top-product {
    margin: 10% 5% 20%;
  }
}

.top-product_box01 {
  width: 29%;
  margin-top: 100px;
  margin-left: 2%;
}
.top-product_box02 {
  margin-top: -200px;
}
@media screen and (max-width: 480px) {
  .top-product_box02 {
    margin-top: -88px;
  }
}

html {
  visibility: hidden;
}

html.wf-active,
html.loading-delay {
  visibility: visible;
}

html {
  scroll-behavior: smooth;
}

a {
  cursor: pointer;
}

body {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 884px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
}

.wrapper {
  max-width: 1670px;
  margin: 0 auto;
}
@media screen and (max-width: 1670px) {
  .wrapper {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .wrapper {
    margin: 0 3%;
  }
}

.inner {
  max-width: 1520px;
  margin: 0 auto;
}
@media screen and (max-width: 1520px) {
  .inner {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .inner {
    margin: 0 3%;
  }
}

.inner2 {
  max-width: 1200px;
  margin: 0 0 0 5%;
}
@media screen and (max-width: 1300px) {
  .inner2 {
    margin: 0 6%;
  }
}

#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 30px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
  transform: scale(1, -1);
}
@media screen and (max-width: 480px) {
  #page-top a {
    width: 45px;
    height: 45px;
    font-size: 30px;
  }
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (max-width: 480px) {
  #page-top {
    right: 13px;
    bottom: 8px;
  }
}

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

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

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/* fadeIn */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger {
  opacity: 0;
}

.pc_nav ul {
  position: absolute;
  font-family: "Lato", sans-serif;
  color: #FFFFFF;
  display: flex;
  padding: 50px;
  right: 0;
}
@media screen and (max-width: 1300px) {
  .pc_nav ul {
    padding: 40px 0 100px;
  }
}
.pc_nav ul li {
  padding: 0 20px;
}
.pc_nav ul li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .pc_nav ul li {
    padding: 0 22px;
  }
}
@media screen and (max-width: 480px) {
  .pc_nav {
    display: none;
  }
}

.footer {
  display: flex;
  flex-direction: column;
}
.footer .f-list {
  font-family: "Lato", sans-serif;
  display: flex;
  justify-content: right;
  color: #333333;
  padding: 55px 0 60px;
}
@media screen and (max-width: 1300px) {
  .footer .f-list {
    padding: 40px 0 55px;
  }
}
@media screen and (max-width: 884px) {
  .footer .f-list {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .footer .f-list {
    flex-wrap: wrap;
    font-size: 16px;
    gap: 10px;
    padding: 50px 0 30px;
  }
}
.footer .f-list li {
  padding: 0 20px;
}
.footer .f-list li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .footer .f-list li {
    padding: 0 22px;
  }
}
.footer .f-list_sub {
  font-size: 14px;
  padding: 0 0 60px;
}
@media screen and (max-width: 884px) {
  .footer .f-list_sub {
    padding-bottom: 50px;
  }
}
.footer .adress {
  font-family: "Lato", sans-serif;
  display: block;
  margin-left: auto;
  margin-right: 0;
  padding-bottom: 50px;
}
.footer .copy {
  text-align: right;
  padding-bottom: 10px;
}

.btn01 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-right: 0;
}
.btn01::before {
  content: "+";
}

.btn02 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-left: 0;
  position: relative;
  z-index: 100;
}
.btn02::before {
  content: "+";
}

.btn03 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  max-width: 150px;
  margin-right: 0;
  margin-top: 200px;
}
@media screen and (max-width: 884px) {
  .btn03 {
    margin-top: 100px;
  }
}
@media screen and (max-width: 480px) {
  .btn03 {
    margin-top: 80px;
    width: 100px;
  }
}

.title {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .title {
    font-size: 30px;
  }
}

.sub {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  padding: 50px 0 60px;
}
@media screen and (max-width: 480px) {
  .sub {
    padding: 45px 0 30px;
    font-size: 18px;
  }
}

.title-sub {
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .title-sub {
    font-size: 20px;
  }
}

.sub-title {
  font-size: 56px;
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-left: 100px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .sub-title {
    font-size: 40px;
    margin-left: 0;
    line-height: 0.8;
  }
}
.sub-title span {
  font-size: 18px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.sub-top {
  padding-top: 35px;
  background-image: url(../img/sub_kv.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 480px) {
  .sub-top {
    padding-top: 35px;
  }
}

.sub-top h2 {
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 800;
  font-style: normal;
  color: #46573F;
  display: block;
  margin-left: 200px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1700px) {
  .sub-top h2 {
    margin-left: 145px;
    font-size: 48px;
  }
}
@media screen and (max-width: 884px) {
  .sub-top h2 {
    margin-left: 115px;
    margin-top: 4vh;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 480px) {
  .sub-top h2 {
    text-align: center;
    font-size: 38px;
    margin: 2rem auto 5rem;
  }
}
.sub-top h2 span {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.sub-top .pc_nav {
  display: flex;
  justify-content: right;
  padding-bottom: 45px;
}
@media screen and (max-width: 480px) {
  .sub-top .pc_nav {
    justify-content: center;
  }
}
.sub-top .pc_nav ul {
  color: #000000;
  padding: 15px 0 0 0;
}
@media screen and (max-width: 884px) {
  .sub-top .pc_nav nav {
    display: none;
  }
}
.sub-top h3 {
  font-size: 36px;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .sub-top h3 {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
.sub-top .story_box1 {
  padding-left: 0;
  background: none;
}
@media screen and (max-width: 884px) {
  .sub-top .story_box1 {
    margin: 0 auto;
    padding: 8% 0 0;
  }
}
@media screen and (max-width: 480px) {
  .sub-top .story_box1 {
    padding: 0;
    margin: 4rem auto;
    width: 85%;
  }
}

.sub_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
@media screen and (max-width: 884px) {
  .sub_top {
    flex-direction: column;
    align-items: baseline;
  }
}
@media screen and (max-width: 480px) {
  .sub_top {
    margin-top: 0;
  }
}
.sub_top_img {
  width: 60%;
}
@media screen and (max-width: 1300px) {
  .sub_top_img {
    width: 55%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top_img {
    width: 75%;
    margin-left: auto;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .sub_top_img {
    width: 88%;
    margin-bottom: 0;
  }
}
.sub_top .sub-title {
  position: relative;
  display: block;
  text-align: left;
}
.sub_top .sub-title::before {
  content: "";
  background-image: url(../img/light.png);
  position: absolute;
  width: 140px;
  height: 300px;
  top: -343%;
  left: 0;
}
@media screen and (max-width: 1700px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light02.png);
    width: 101px;
    height: 215px;
    top: -305%;
    left: 7%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::before {
    top: -256%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light03.png);
    width: 67px;
    height: 140px;
    top: -300%;
    left: 28%;
  }
}
.sub_top .sub-title::after {
  content: "";
  background-image: url(../img/tree.png);
  background-repeat: no-repeat;
  position: absolute;
  width: 585px;
  height: 235px;
  top: -38%;
  left: -73%;
}
@media screen and (max-width: 1300px) {
  .sub_top .sub-title::after {
    width: 499px;
    height: 235px;
    top: -68%;
    left: -66%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::after {
    background-image: url(../img/tree02.png);
    height: 160px;
    top: -11%;
    left: -46%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::after {
    width: 350px;
    height: 160px;
    top: -70%;
    left: -58%;
  }
}

.topic {
  margin-top: 70px;
  margin-bottom: 70px;
}
@media screen and (max-width: 480px) {
  .topic {
    margin-top: 40px;
    margin-bottom: 45px;
  }
}
.topic li {
  border-top: 1px solid #ECECEC;
  padding: 8% 16%;
}
@media screen and (max-width: 480px) {
  .topic li {
    padding: 8% 3%;
  }
}
.topic li:last-child {
  border-bottom: 1px solid #ECECEC;
}
.topic .date {
  font-family: "Lato", sans-serif;
}
.topic .topic_title {
  font-weight: bold;
  margin: 15px 0;
}

#contact {
  margin-top: 10%;
}

.contact {
  display: flex;
}
@media screen and (max-width: 884px) {
  .contact {
    flex-direction: column;
  }
}
.contact_box01 {
  width: 58%;
  padding: 15% 6%;
  background-image: url(../img/back_img.png);
  color: #FFFFFF;
}
@media screen and (max-width: 884px) {
  .contact_box01 {
    width: 100%;
  }
}
.contact_box01 .sub {
  display: inline-block;
  border-bottom: 1px solid #ECECEC;
  padding-bottom: 5px;
  font-size: 20px;
  padding: 50px 0 0;
}
@media screen and (max-width: 480px) {
  .contact_box01 .sub {
    font-size: 18px;
    padding: 6px 0 0;
  }
}
.contact_box01 .text {
  margin-top: 70px;
}
@media screen and (max-width: 480px) {
  .contact_box01 .text {
    margin-top: 35px;
  }
}
.contact_box02 {
  width: 42%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 884px) {
  .contact_box02 {
    width: 100%;
  }
}
.contact_box02 .tel, .contact_box02 .mail {
  height: 50%;
  padding: 10% 5%;
  text-align: center;
  border-top: 1px solid #ECECEC;
}
@media screen and (max-width: 884px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 5%;
  }
}
@media screen and (max-width: 480px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 10% 5%;
  }
}
.contact_box02 .mail {
  border-bottom: 1px solid #ECECEC;
}
.contact_box02 .contact_contents {
  display: flex;
  margin: 50px auto;
  justify-content: center;
  border: 1px solid #ECECEC;
  width: 70%;
  padding: 10px;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents {
    width: 90%;
    margin: 15px auto;
  }
}
.contact_box02 .contact_contents a {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.contact_box02 .contact_contents a img {
  margin: 0 auto;
  width: 8%;
  height: auto;
  margin-right: 10px;
}
.contact_box02 .contact_contents .number {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .number {
    font-size: 30px;
  }
}
.contact_box02 .contact_contents .mailform {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .mailform {
    font-size: 20px;
  }
}
.contact_box02 .contact_detail {
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .m-c {
    padding: 20px 10px;
  }
}

.tab2 {
  display: none;
}
@media screen and (max-width: 884px) {
  .tab2 {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .tab2 {
    display: none;
  }
}

.booking {
  position: fixed;
  bottom: 3%;
  left: 3%;
  z-index: 9999;
  width: 250px;
  padding: 20px;
  background-color: rgba(249, 249, 249, 0.631372549);
}
@media screen and (max-width: 480px) {
  .booking {
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 10px;
  }
}
.booking a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.booking a .booking-img {
  margin-right: 15px;
}

#business {
  padding-top: 35px;
  background-image: url(../img/sub_kv.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 480px) {
  #business {
    padding-top: 35px;
  }
}
#business .catch {
  text-align: center;
}
@media screen and (max-width: 884px) {
  #business .catch h3 {
    margin-top: 5vw;
    font-size: 25px;
  }
}
@media screen and (max-width: 480px) {
  #business .catch h3 {
    font-size: 16px;
  }
}
#business h2 {
  font-family: "Lato", sans-serif;
  font-weight: 800;
  font-style: normal;
}
@media screen and (max-width: 480px) {
  #business h2 {
    text-align: center;
  }
}
#business h2 span {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
}
#business .pc_nav {
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
}
@media screen and (max-width: 480px) {
  #business .pc_nav {
    justify-content: center;
  }
}
#business .pc_nav ul {
  color: #000000;
  padding: 15px 0 0 0;
}
@media screen and (max-width: 884px) {
  #business .pc_nav nav {
    display: none;
  }
}
#business h3 {
  font-size: 36px;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  #business h3 {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
#business .story_box1 {
  padding-left: 0;
}
@media screen and (max-width: 884px) {
  #business .story_box1 {
    padding-left: 5%;
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  #business .story_box1 {
    padding: 0;
    margin: 4rem auto;
    width: 85%;
  }
}

.bussiness_top {
  margin-right: 13rem;
}
@media screen and (max-width: 884px) {
  .bussiness_top {
    margin-right: 0;
    margin-left: 6rem;
  }
}
@media screen and (max-width: 480px) {
  .bussiness_top {
    margin-left: 3rem;
  }
}

.b-t {
  width: 60%;
  margin: 0 0 150px auto;
}
@media screen and (max-width: 884px) {
  .b-t {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  .b-t {
    width: 100%;
  }
}

.komidashi {
  font-size: 22px;
}
@media screen and (max-width: 884px) {
  .komidashi {
    text-align: center;
  }
}

.minpaku_box1 {
  display: flex;
  margin: 10em 0 11em;
  justify-content: space-between;
}
@media screen and (max-width: 884px) {
  .minpaku_box1 {
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .minpaku_box1 {
    margin: 6rem auto;
  }
}

.minpaku_text {
  width: 50%;
  margin-right: 20em;
}
@media screen and (max-width: 1300px) {
  .minpaku_text {
    width: 55%;
    margin-right: 10rem;
  }
}
@media screen and (max-width: 884px) {
  .minpaku_text {
    width: 80%;
    margin: 2rem auto 0;
  }
}
@media screen and (max-width: 480px) {
  .minpaku_text {
    width: 90%;
    margin: 2rem auto 0;
  }
}

#minpaku .challenge_box2 {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13rem;
}
@media screen and (max-width: 884px) {
  #minpaku .challenge_box2 {
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  #minpaku .challenge_box2 {
    margin-bottom: 7rem;
  }
}
@media screen and (max-width: 480px) {
  #minpaku .challenge_box2 .c_point {
    width: 85%;
  }
}

.arrow2 {
  transform: rotate(270deg);
}
@media screen and (max-width: 884px) {
  .arrow2 {
    transform: rotate(360deg);
    margin: 2rem 0;
  }
}
@media screen and (max-width: 480px) {
  .arrow2 {
    margin: 0;
  }
}

.b-a_text {
  display: flex;
  justify-content: space-between;
  margin: 13rem auto 10rem;
}
@media screen and (max-width: 480px) {
  .b-a_text {
    margin: 8rem auto 4.5rem;
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .b-a_text .title {
    margin-left: 8%;
  }
}
.b-a_text p {
  width: 60%;
}
@media screen and (max-width: 884px) {
  .b-a_text p {
    padding-top: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .b-a_text p {
    width: 90%;
    margin: 2rem auto 0;
  }
}

.b-a_box {
  display: flex;
  justify-content: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 480px) {
  .b-a_box {
    flex-direction: column;
    margin-bottom: 1rem;
  }
}
.b-a_box_detail {
  width: 45%;
}
@media screen and (max-width: 884px) {
  .b-a_box_detail {
    width: 60%;
  }
}
@media screen and (max-width: 480px) {
  .b-a_box_detail {
    width: 80%;
    margin: 0 auto 1rem;
  }
}
.b-a_box .sub {
  font-size: 22px;
  padding-bottom: 15px;
}
@media screen and (max-width: 480px) {
  .b-a_box .sub {
    font-size: 20px;
  }
}
.b-a_box .sub span {
  font-size: 16px;
}

#j-p {
  padding: 10rem 0;
}
@media screen and (max-width: 480px) {
  #j-p {
    padding: 6rem 0 2rem;
  }
}
#j-p .title {
  text-align: center;
}
@media screen and (max-width: 480px) {
  #j-p .b-a_box {
    margin-bottom: 0;
  }
}

.j-p_text {
  margin: 3rem auto 10rem;
  width: 70%;
}
@media screen and (max-width: 480px) {
  .j-p_text {
    margin: 2rem auto 6rem;
    width: 90%;
  }
}

#other-business {
  background-image: url(../img/b-m.png);
  background-size: cover;
  padding-bottom: 20rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 1300px) {
  #other-business {
    padding-bottom: 9rem;
  }
}
@media screen and (max-width: 884px) {
  #other-business {
    background-position: bottom;
  }
}
@media screen and (max-width: 480px) {
  #other-business {
    padding-bottom: 3rem;
  }
}

.nagamori1 {
  margin-right: 3%;
}
@media screen and (max-width: 480px) {
  .nagamori1 {
    margin-right: 0;
  }
}

@media screen and (max-width: 480px) {
  .nagamori1, .nagamori2 {
    width: 85%;
    margin: 0 auto 1.5rem;
  }
}

.other-business {
  background-color: #FFFFFF;
  padding: 115px 175px 190px 0;
  width: 55%;
  margin-left: 6%;
  margin-bottom: 12rem;
}
@media screen and (max-width: 1300px) {
  .other-business {
    padding: 115px 115px 100px 0;
  }
}
@media screen and (max-width: 884px) {
  .other-business {
    padding: 50px 60px 80px;
    width: 70%;
  }
}
@media screen and (max-width: 480px) {
  .other-business {
    padding: 50px 25px 50px 25px;
    width: 88%;
    margin-left: 0;
  }
}
.other-business h2 {
  margin-bottom: 4rem;
}
@media screen and (max-width: 480px) {
  .other-business h2 {
    margin-bottom: 2rem;
  }
}

.slider img {
  width: 100%; /*スライダー内の画像を横幅100%に*/
  height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider .slick-slide {
  margin: 0 5px; /*スライド左右の余白調整*/
}

.before_after_slider {
  position: relative;
  overflow: hidden;
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
}

.box_before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  border-right: 5px solid rgba(255, 255, 255, 0.7);
  box-shadow: 10px 0 15px -13px #000;
}

.box_before img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.box_before::before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  right: -25px;
  bottom: 0;
  width: 45px;
  height: 45px;
  margin: auto;
  border: 5px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  box-shadow: 10px 0 15px -13px #000;
}

.slider_range {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: col-resize;
}

html {
  visibility: hidden;
}

html.wf-active,
html.loading-delay {
  visibility: visible;
}

html {
  scroll-behavior: smooth;
}

a {
  cursor: pointer;
}

body {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 884px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
}

.wrapper {
  max-width: 1670px;
  margin: 0 auto;
}
@media screen and (max-width: 1670px) {
  .wrapper {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .wrapper {
    margin: 0 3%;
  }
}

.inner {
  max-width: 1520px;
  margin: 0 auto;
}
@media screen and (max-width: 1520px) {
  .inner {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .inner {
    margin: 0 3%;
  }
}

.inner2 {
  max-width: 1200px;
  margin: 0 0 0 5%;
}
@media screen and (max-width: 1300px) {
  .inner2 {
    margin: 0 6%;
  }
}

#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 30px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
  transform: scale(1, -1);
}
@media screen and (max-width: 480px) {
  #page-top a {
    width: 45px;
    height: 45px;
    font-size: 30px;
  }
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (max-width: 480px) {
  #page-top {
    right: 13px;
    bottom: 8px;
  }
}

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

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

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/* fadeIn */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger {
  opacity: 0;
}

.pc_nav ul {
  position: absolute;
  font-family: "Lato", sans-serif;
  color: #FFFFFF;
  display: flex;
  padding: 50px;
  right: 0;
}
@media screen and (max-width: 1300px) {
  .pc_nav ul {
    padding: 40px 0 100px;
  }
}
.pc_nav ul li {
  padding: 0 20px;
}
.pc_nav ul li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .pc_nav ul li {
    padding: 0 22px;
  }
}
@media screen and (max-width: 480px) {
  .pc_nav {
    display: none;
  }
}

.footer {
  display: flex;
  flex-direction: column;
}
.footer .f-list {
  font-family: "Lato", sans-serif;
  display: flex;
  justify-content: right;
  color: #333333;
  padding: 55px 0 60px;
}
@media screen and (max-width: 1300px) {
  .footer .f-list {
    padding: 40px 0 55px;
  }
}
@media screen and (max-width: 884px) {
  .footer .f-list {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .footer .f-list {
    flex-wrap: wrap;
    font-size: 16px;
    gap: 10px;
    padding: 50px 0 30px;
  }
}
.footer .f-list li {
  padding: 0 20px;
}
.footer .f-list li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .footer .f-list li {
    padding: 0 22px;
  }
}
.footer .f-list_sub {
  font-size: 14px;
  padding: 0 0 60px;
}
@media screen and (max-width: 884px) {
  .footer .f-list_sub {
    padding-bottom: 50px;
  }
}
.footer .adress {
  font-family: "Lato", sans-serif;
  display: block;
  margin-left: auto;
  margin-right: 0;
  padding-bottom: 50px;
}
.footer .copy {
  text-align: right;
  padding-bottom: 10px;
}

.btn01 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-right: 0;
}
.btn01::before {
  content: "+";
}

.btn02 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-left: 0;
  position: relative;
  z-index: 100;
}
.btn02::before {
  content: "+";
}

.btn03 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  max-width: 150px;
  margin-right: 0;
  margin-top: 200px;
}
@media screen and (max-width: 884px) {
  .btn03 {
    margin-top: 100px;
  }
}
@media screen and (max-width: 480px) {
  .btn03 {
    margin-top: 80px;
    width: 100px;
  }
}

.title {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .title {
    font-size: 30px;
  }
}

.sub {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  padding: 50px 0 60px;
}
@media screen and (max-width: 480px) {
  .sub {
    padding: 45px 0 30px;
    font-size: 18px;
  }
}

.title-sub {
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .title-sub {
    font-size: 20px;
  }
}

.sub-title {
  font-size: 56px;
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-left: 100px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .sub-title {
    font-size: 40px;
    margin-left: 0;
    line-height: 0.8;
  }
}
.sub-title span {
  font-size: 18px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.sub-top {
  padding-top: 35px;
  background-image: url(../img/sub_kv.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 480px) {
  .sub-top {
    padding-top: 35px;
  }
}

.sub-top h2 {
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 800;
  font-style: normal;
  color: #46573F;
  display: block;
  margin-left: 200px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1700px) {
  .sub-top h2 {
    margin-left: 145px;
    font-size: 48px;
  }
}
@media screen and (max-width: 884px) {
  .sub-top h2 {
    margin-left: 115px;
    margin-top: 4vh;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 480px) {
  .sub-top h2 {
    text-align: center;
    font-size: 38px;
    margin: 2rem auto 5rem;
  }
}
.sub-top h2 span {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.sub-top .pc_nav {
  display: flex;
  justify-content: right;
  padding-bottom: 45px;
}
@media screen and (max-width: 480px) {
  .sub-top .pc_nav {
    justify-content: center;
  }
}
.sub-top .pc_nav ul {
  color: #000000;
  padding: 15px 0 0 0;
}
@media screen and (max-width: 884px) {
  .sub-top .pc_nav nav {
    display: none;
  }
}
.sub-top h3 {
  font-size: 36px;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .sub-top h3 {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
.sub-top .story_box1 {
  padding-left: 0;
  background: none;
}
@media screen and (max-width: 884px) {
  .sub-top .story_box1 {
    margin: 0 auto;
    padding: 8% 0 0;
  }
}
@media screen and (max-width: 480px) {
  .sub-top .story_box1 {
    padding: 0;
    margin: 4rem auto;
    width: 85%;
  }
}

.sub_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
@media screen and (max-width: 884px) {
  .sub_top {
    flex-direction: column;
    align-items: baseline;
  }
}
@media screen and (max-width: 480px) {
  .sub_top {
    margin-top: 0;
  }
}
.sub_top_img {
  width: 60%;
}
@media screen and (max-width: 1300px) {
  .sub_top_img {
    width: 55%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top_img {
    width: 75%;
    margin-left: auto;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .sub_top_img {
    width: 88%;
    margin-bottom: 0;
  }
}
.sub_top .sub-title {
  position: relative;
  display: block;
  text-align: left;
}
.sub_top .sub-title::before {
  content: "";
  background-image: url(../img/light.png);
  position: absolute;
  width: 140px;
  height: 300px;
  top: -343%;
  left: 0;
}
@media screen and (max-width: 1700px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light02.png);
    width: 101px;
    height: 215px;
    top: -305%;
    left: 7%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::before {
    top: -256%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light03.png);
    width: 67px;
    height: 140px;
    top: -300%;
    left: 28%;
  }
}
.sub_top .sub-title::after {
  content: "";
  background-image: url(../img/tree.png);
  background-repeat: no-repeat;
  position: absolute;
  width: 585px;
  height: 235px;
  top: -38%;
  left: -73%;
}
@media screen and (max-width: 1300px) {
  .sub_top .sub-title::after {
    width: 499px;
    height: 235px;
    top: -68%;
    left: -66%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::after {
    background-image: url(../img/tree02.png);
    height: 160px;
    top: -11%;
    left: -46%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::after {
    width: 350px;
    height: 160px;
    top: -70%;
    left: -58%;
  }
}

.topic {
  margin-top: 70px;
  margin-bottom: 70px;
}
@media screen and (max-width: 480px) {
  .topic {
    margin-top: 40px;
    margin-bottom: 45px;
  }
}
.topic li {
  border-top: 1px solid #ECECEC;
  padding: 8% 16%;
}
@media screen and (max-width: 480px) {
  .topic li {
    padding: 8% 3%;
  }
}
.topic li:last-child {
  border-bottom: 1px solid #ECECEC;
}
.topic .date {
  font-family: "Lato", sans-serif;
}
.topic .topic_title {
  font-weight: bold;
  margin: 15px 0;
}

#contact {
  margin-top: 10%;
}

.contact {
  display: flex;
}
@media screen and (max-width: 884px) {
  .contact {
    flex-direction: column;
  }
}
.contact_box01 {
  width: 58%;
  padding: 15% 6%;
  background-image: url(../img/back_img.png);
  color: #FFFFFF;
}
@media screen and (max-width: 884px) {
  .contact_box01 {
    width: 100%;
  }
}
.contact_box01 .sub {
  display: inline-block;
  border-bottom: 1px solid #ECECEC;
  padding-bottom: 5px;
  font-size: 20px;
  padding: 50px 0 0;
}
@media screen and (max-width: 480px) {
  .contact_box01 .sub {
    font-size: 18px;
    padding: 6px 0 0;
  }
}
.contact_box01 .text {
  margin-top: 70px;
}
@media screen and (max-width: 480px) {
  .contact_box01 .text {
    margin-top: 35px;
  }
}
.contact_box02 {
  width: 42%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 884px) {
  .contact_box02 {
    width: 100%;
  }
}
.contact_box02 .tel, .contact_box02 .mail {
  height: 50%;
  padding: 10% 5%;
  text-align: center;
  border-top: 1px solid #ECECEC;
}
@media screen and (max-width: 884px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 5%;
  }
}
@media screen and (max-width: 480px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 10% 5%;
  }
}
.contact_box02 .mail {
  border-bottom: 1px solid #ECECEC;
}
.contact_box02 .contact_contents {
  display: flex;
  margin: 50px auto;
  justify-content: center;
  border: 1px solid #ECECEC;
  width: 70%;
  padding: 10px;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents {
    width: 90%;
    margin: 15px auto;
  }
}
.contact_box02 .contact_contents a {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.contact_box02 .contact_contents a img {
  margin: 0 auto;
  width: 8%;
  height: auto;
  margin-right: 10px;
}
.contact_box02 .contact_contents .number {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .number {
    font-size: 30px;
  }
}
.contact_box02 .contact_contents .mailform {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .mailform {
    font-size: 20px;
  }
}
.contact_box02 .contact_detail {
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .m-c {
    padding: 20px 10px;
  }
}

.tab2 {
  display: none;
}
@media screen and (max-width: 884px) {
  .tab2 {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .tab2 {
    display: none;
  }
}

.booking {
  position: fixed;
  bottom: 3%;
  left: 3%;
  z-index: 9999;
  width: 250px;
  padding: 20px;
  background-color: rgba(249, 249, 249, 0.631372549);
}
@media screen and (max-width: 480px) {
  .booking {
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 10px;
  }
}
.booking a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.booking a .booking-img {
  margin-right: 15px;
}

.topics_text {
  padding: 115px 60px 55px;
}

.topics_title {
  padding-top: 4%;
}
@media screen and (max-width: 1300px) {
  .topics_title {
    padding-top: 2%;
  }
}

.topic_text01 {
  border-top: 1px solid #ECECEC;
  padding: 8% 0;
}
@media screen and (max-width: 480px) {
  .topic_text01 {
    padding: 10% 0 15%;
  }
}

.topic_text02 {
  padding: 8% 0;
}
@media screen and (max-width: 884px) {
  .topic_text02 {
    padding-bottom: 15%;
  }
}
@media screen and (max-width: 480px) {
  .topic_text02 {
    padding: 15% 0 20%;
  }
}

html {
  visibility: hidden;
}

html.wf-active,
html.loading-delay {
  visibility: visible;
}

html {
  scroll-behavior: smooth;
}

a {
  cursor: pointer;
}

body {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 884px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
}

.wrapper {
  max-width: 1670px;
  margin: 0 auto;
}
@media screen and (max-width: 1670px) {
  .wrapper {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .wrapper {
    margin: 0 3%;
  }
}

.inner {
  max-width: 1520px;
  margin: 0 auto;
}
@media screen and (max-width: 1520px) {
  .inner {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .inner {
    margin: 0 3%;
  }
}

.inner2 {
  max-width: 1200px;
  margin: 0 0 0 5%;
}
@media screen and (max-width: 1300px) {
  .inner2 {
    margin: 0 6%;
  }
}

#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 30px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
  transform: scale(1, -1);
}
@media screen and (max-width: 480px) {
  #page-top a {
    width: 45px;
    height: 45px;
    font-size: 30px;
  }
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (max-width: 480px) {
  #page-top {
    right: 13px;
    bottom: 8px;
  }
}

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

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

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/* fadeIn */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger {
  opacity: 0;
}

.pc_nav ul {
  position: absolute;
  font-family: "Lato", sans-serif;
  color: #FFFFFF;
  display: flex;
  padding: 50px;
  right: 0;
}
@media screen and (max-width: 1300px) {
  .pc_nav ul {
    padding: 40px 0 100px;
  }
}
.pc_nav ul li {
  padding: 0 20px;
}
.pc_nav ul li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .pc_nav ul li {
    padding: 0 22px;
  }
}
@media screen and (max-width: 480px) {
  .pc_nav {
    display: none;
  }
}

.footer {
  display: flex;
  flex-direction: column;
}
.footer .f-list {
  font-family: "Lato", sans-serif;
  display: flex;
  justify-content: right;
  color: #333333;
  padding: 55px 0 60px;
}
@media screen and (max-width: 1300px) {
  .footer .f-list {
    padding: 40px 0 55px;
  }
}
@media screen and (max-width: 884px) {
  .footer .f-list {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .footer .f-list {
    flex-wrap: wrap;
    font-size: 16px;
    gap: 10px;
    padding: 50px 0 30px;
  }
}
.footer .f-list li {
  padding: 0 20px;
}
.footer .f-list li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .footer .f-list li {
    padding: 0 22px;
  }
}
.footer .f-list_sub {
  font-size: 14px;
  padding: 0 0 60px;
}
@media screen and (max-width: 884px) {
  .footer .f-list_sub {
    padding-bottom: 50px;
  }
}
.footer .adress {
  font-family: "Lato", sans-serif;
  display: block;
  margin-left: auto;
  margin-right: 0;
  padding-bottom: 50px;
}
.footer .copy {
  text-align: right;
  padding-bottom: 10px;
}

.btn01 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-right: 0;
}
.btn01::before {
  content: "+";
}

.btn02 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-left: 0;
  position: relative;
  z-index: 100;
}
.btn02::before {
  content: "+";
}

.btn03 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  max-width: 150px;
  margin-right: 0;
  margin-top: 200px;
}
@media screen and (max-width: 884px) {
  .btn03 {
    margin-top: 100px;
  }
}
@media screen and (max-width: 480px) {
  .btn03 {
    margin-top: 80px;
    width: 100px;
  }
}

.title {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .title {
    font-size: 30px;
  }
}

.sub {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  padding: 50px 0 60px;
}
@media screen and (max-width: 480px) {
  .sub {
    padding: 45px 0 30px;
    font-size: 18px;
  }
}

.title-sub {
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .title-sub {
    font-size: 20px;
  }
}

.sub-title {
  font-size: 56px;
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-left: 100px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .sub-title {
    font-size: 40px;
    margin-left: 0;
    line-height: 0.8;
  }
}
.sub-title span {
  font-size: 18px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.sub-top {
  padding-top: 35px;
  background-image: url(../img/sub_kv.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 480px) {
  .sub-top {
    padding-top: 35px;
  }
}

.sub-top h2 {
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 800;
  font-style: normal;
  color: #46573F;
  display: block;
  margin-left: 200px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1700px) {
  .sub-top h2 {
    margin-left: 145px;
    font-size: 48px;
  }
}
@media screen and (max-width: 884px) {
  .sub-top h2 {
    margin-left: 115px;
    margin-top: 4vh;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 480px) {
  .sub-top h2 {
    text-align: center;
    font-size: 38px;
    margin: 2rem auto 5rem;
  }
}
.sub-top h2 span {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.sub-top .pc_nav {
  display: flex;
  justify-content: right;
  padding-bottom: 45px;
}
@media screen and (max-width: 480px) {
  .sub-top .pc_nav {
    justify-content: center;
  }
}
.sub-top .pc_nav ul {
  color: #000000;
  padding: 15px 0 0 0;
}
@media screen and (max-width: 884px) {
  .sub-top .pc_nav nav {
    display: none;
  }
}
.sub-top h3 {
  font-size: 36px;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .sub-top h3 {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
.sub-top .story_box1 {
  padding-left: 0;
  background: none;
}
@media screen and (max-width: 884px) {
  .sub-top .story_box1 {
    margin: 0 auto;
    padding: 8% 0 0;
  }
}
@media screen and (max-width: 480px) {
  .sub-top .story_box1 {
    padding: 0;
    margin: 4rem auto;
    width: 85%;
  }
}

.sub_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
@media screen and (max-width: 884px) {
  .sub_top {
    flex-direction: column;
    align-items: baseline;
  }
}
@media screen and (max-width: 480px) {
  .sub_top {
    margin-top: 0;
  }
}
.sub_top_img {
  width: 60%;
}
@media screen and (max-width: 1300px) {
  .sub_top_img {
    width: 55%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top_img {
    width: 75%;
    margin-left: auto;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .sub_top_img {
    width: 88%;
    margin-bottom: 0;
  }
}
.sub_top .sub-title {
  position: relative;
  display: block;
  text-align: left;
}
.sub_top .sub-title::before {
  content: "";
  background-image: url(../img/light.png);
  position: absolute;
  width: 140px;
  height: 300px;
  top: -343%;
  left: 0;
}
@media screen and (max-width: 1700px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light02.png);
    width: 101px;
    height: 215px;
    top: -305%;
    left: 7%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::before {
    top: -256%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light03.png);
    width: 67px;
    height: 140px;
    top: -300%;
    left: 28%;
  }
}
.sub_top .sub-title::after {
  content: "";
  background-image: url(../img/tree.png);
  background-repeat: no-repeat;
  position: absolute;
  width: 585px;
  height: 235px;
  top: -38%;
  left: -73%;
}
@media screen and (max-width: 1300px) {
  .sub_top .sub-title::after {
    width: 499px;
    height: 235px;
    top: -68%;
    left: -66%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::after {
    background-image: url(../img/tree02.png);
    height: 160px;
    top: -11%;
    left: -46%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::after {
    width: 350px;
    height: 160px;
    top: -70%;
    left: -58%;
  }
}

.topic {
  margin-top: 70px;
  margin-bottom: 70px;
}
@media screen and (max-width: 480px) {
  .topic {
    margin-top: 40px;
    margin-bottom: 45px;
  }
}
.topic li {
  border-top: 1px solid #ECECEC;
  padding: 8% 16%;
}
@media screen and (max-width: 480px) {
  .topic li {
    padding: 8% 3%;
  }
}
.topic li:last-child {
  border-bottom: 1px solid #ECECEC;
}
.topic .date {
  font-family: "Lato", sans-serif;
}
.topic .topic_title {
  font-weight: bold;
  margin: 15px 0;
}

#contact {
  margin-top: 10%;
}

.contact {
  display: flex;
}
@media screen and (max-width: 884px) {
  .contact {
    flex-direction: column;
  }
}
.contact_box01 {
  width: 58%;
  padding: 15% 6%;
  background-image: url(../img/back_img.png);
  color: #FFFFFF;
}
@media screen and (max-width: 884px) {
  .contact_box01 {
    width: 100%;
  }
}
.contact_box01 .sub {
  display: inline-block;
  border-bottom: 1px solid #ECECEC;
  padding-bottom: 5px;
  font-size: 20px;
  padding: 50px 0 0;
}
@media screen and (max-width: 480px) {
  .contact_box01 .sub {
    font-size: 18px;
    padding: 6px 0 0;
  }
}
.contact_box01 .text {
  margin-top: 70px;
}
@media screen and (max-width: 480px) {
  .contact_box01 .text {
    margin-top: 35px;
  }
}
.contact_box02 {
  width: 42%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 884px) {
  .contact_box02 {
    width: 100%;
  }
}
.contact_box02 .tel, .contact_box02 .mail {
  height: 50%;
  padding: 10% 5%;
  text-align: center;
  border-top: 1px solid #ECECEC;
}
@media screen and (max-width: 884px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 5%;
  }
}
@media screen and (max-width: 480px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 10% 5%;
  }
}
.contact_box02 .mail {
  border-bottom: 1px solid #ECECEC;
}
.contact_box02 .contact_contents {
  display: flex;
  margin: 50px auto;
  justify-content: center;
  border: 1px solid #ECECEC;
  width: 70%;
  padding: 10px;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents {
    width: 90%;
    margin: 15px auto;
  }
}
.contact_box02 .contact_contents a {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.contact_box02 .contact_contents a img {
  margin: 0 auto;
  width: 8%;
  height: auto;
  margin-right: 10px;
}
.contact_box02 .contact_contents .number {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .number {
    font-size: 30px;
  }
}
.contact_box02 .contact_contents .mailform {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .mailform {
    font-size: 20px;
  }
}
.contact_box02 .contact_detail {
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .m-c {
    padding: 20px 10px;
  }
}

.tab2 {
  display: none;
}
@media screen and (max-width: 884px) {
  .tab2 {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .tab2 {
    display: none;
  }
}

.booking {
  position: fixed;
  bottom: 3%;
  left: 3%;
  z-index: 9999;
  width: 250px;
  padding: 20px;
  background-color: rgba(249, 249, 249, 0.631372549);
}
@media screen and (max-width: 480px) {
  .booking {
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 10px;
  }
}
.booking a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.booking a .booking-img {
  margin-right: 15px;
}

.c-t-t {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 24px;
  display: inline-block;
  padding: 5rem 3rem 1rem 0;
  border-bottom: 1px solid #ECECEC;
  margin-bottom: 2rem;
}
@media screen and (max-width: 884px) {
  .c-t-t {
    font-size: 20px;
  }
}

.c-t-box {
  display: flex;
  align-items: center;
  margin: 2rem 0;
}
@media screen and (max-width: 480px) {
  .c-t-box {
    flex-direction: column;
    margin: 0;
  }
}
.c-t-box .number {
  display: flex;
  justify-content: left;
  padding: 10px;
  width: 30%;
  font-family: "Lato", sans-serif;
  font-size: 36px;
  align-items: center;
}
@media screen and (max-width: 1300px) {
  .c-t-box .number {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .c-t-box .number {
    width: 100%;
    font-size: 32px;
  }
}
.c-t-box .number img {
  width: 25px;
  height: 25px;
  margin-right: 1rem;
}
.c-t-box .contact_detail {
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.contact_tel {
  padding-top: 7rem;
}
@media screen and (max-width: 884px) {
  .contact_tel {
    padding-top: 0;
  }
}

.contact_mail {
  margin-bottom: 12rem;
  padding-top: 5rem;
  padding-bottom: 7rem;
}
@media screen and (max-width: 480px) {
  .contact_mail {
    padding-top: 0;
    margin-bottom: 5rem;
    padding-bottom: 2rem;
  }
}

.mail-form {
  display: flex;
  justify-content: space-between;
  margin-top: 10rem;
  margin-bottom: 10rem;
}
@media screen and (max-width: 480px) {
  .mail-form {
    flex-direction: column;
    margin-bottom: 3rem;
    margin-top: 5rem;
  }
}

form {
  width: 50%;
}
@media screen and (max-width: 480px) {
  form {
    width: 90%;
  }
}
form tr {
  width: 70%;
  display: flex;
  flex-direction: column;
  padding: 3% 0;
}
@media screen and (max-width: 884px) {
  form tr {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  form tr {
    width: 100%;
    margin: 0 auto;
  }
}
form th {
  width: 70%;
  font-weight: normal;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  margin-bottom: 2%;
}
@media screen and (max-width: 884px) {
  form th {
    width: 80%;
  }
}
form td {
  width: 100%;
  border-bottom: 1px solid #ECECEC;
}
form input {
  height: 40px;
  width: 100%;
}
form textarea {
  width: 100%;
}

.submitbtn {
  width: 20%;
  margin-top: 200px;
  padding: 2%;
  border: 1px solid #ECECEC;
  text-align: center;
  line-height: 1.7;
}
@media screen and (max-width: 884px) {
  .submitbtn {
    width: 50%;
    margin-top: 80px;
  }
}
@media screen and (max-width: 480px) {
  .submitbtn {
    margin: 80px auto 80px;
  }
}

.form_img {
  width: 40%;
}
@media screen and (max-width: 480px) {
  .form_img {
    width: 60%;
    margin-left: auto;
  }
}

html {
  visibility: hidden;
}

html.wf-active,
html.loading-delay {
  visibility: visible;
}

html {
  scroll-behavior: smooth;
}

a {
  cursor: pointer;
}

body {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 884px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
}

.wrapper {
  max-width: 1670px;
  margin: 0 auto;
}
@media screen and (max-width: 1670px) {
  .wrapper {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .wrapper {
    margin: 0 3%;
  }
}

.inner {
  max-width: 1520px;
  margin: 0 auto;
}
@media screen and (max-width: 1520px) {
  .inner {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .inner {
    margin: 0 3%;
  }
}

.inner2 {
  max-width: 1200px;
  margin: 0 0 0 5%;
}
@media screen and (max-width: 1300px) {
  .inner2 {
    margin: 0 6%;
  }
}

#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 30px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
  transform: scale(1, -1);
}
@media screen and (max-width: 480px) {
  #page-top a {
    width: 45px;
    height: 45px;
    font-size: 30px;
  }
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (max-width: 480px) {
  #page-top {
    right: 13px;
    bottom: 8px;
  }
}

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

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

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/* fadeIn */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger {
  opacity: 0;
}

.pc_nav ul {
  position: absolute;
  font-family: "Lato", sans-serif;
  color: #FFFFFF;
  display: flex;
  padding: 50px;
  right: 0;
}
@media screen and (max-width: 1300px) {
  .pc_nav ul {
    padding: 40px 0 100px;
  }
}
.pc_nav ul li {
  padding: 0 20px;
}
.pc_nav ul li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .pc_nav ul li {
    padding: 0 22px;
  }
}
@media screen and (max-width: 480px) {
  .pc_nav {
    display: none;
  }
}

.footer {
  display: flex;
  flex-direction: column;
}
.footer .f-list {
  font-family: "Lato", sans-serif;
  display: flex;
  justify-content: right;
  color: #333333;
  padding: 55px 0 60px;
}
@media screen and (max-width: 1300px) {
  .footer .f-list {
    padding: 40px 0 55px;
  }
}
@media screen and (max-width: 884px) {
  .footer .f-list {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .footer .f-list {
    flex-wrap: wrap;
    font-size: 16px;
    gap: 10px;
    padding: 50px 0 30px;
  }
}
.footer .f-list li {
  padding: 0 20px;
}
.footer .f-list li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .footer .f-list li {
    padding: 0 22px;
  }
}
.footer .f-list_sub {
  font-size: 14px;
  padding: 0 0 60px;
}
@media screen and (max-width: 884px) {
  .footer .f-list_sub {
    padding-bottom: 50px;
  }
}
.footer .adress {
  font-family: "Lato", sans-serif;
  display: block;
  margin-left: auto;
  margin-right: 0;
  padding-bottom: 50px;
}
.footer .copy {
  text-align: right;
  padding-bottom: 10px;
}

.btn01 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-right: 0;
}
.btn01::before {
  content: "+";
}

.btn02 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-left: 0;
  position: relative;
  z-index: 100;
}
.btn02::before {
  content: "+";
}

.btn03 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  max-width: 150px;
  margin-right: 0;
  margin-top: 200px;
}
@media screen and (max-width: 884px) {
  .btn03 {
    margin-top: 100px;
  }
}
@media screen and (max-width: 480px) {
  .btn03 {
    margin-top: 80px;
    width: 100px;
  }
}

.title {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .title {
    font-size: 30px;
  }
}

.sub {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  padding: 50px 0 60px;
}
@media screen and (max-width: 480px) {
  .sub {
    padding: 45px 0 30px;
    font-size: 18px;
  }
}

.title-sub {
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .title-sub {
    font-size: 20px;
  }
}

.sub-title {
  font-size: 56px;
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-left: 100px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .sub-title {
    font-size: 40px;
    margin-left: 0;
    line-height: 0.8;
  }
}
.sub-title span {
  font-size: 18px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.sub-top {
  padding-top: 35px;
  background-image: url(../img/sub_kv.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 480px) {
  .sub-top {
    padding-top: 35px;
  }
}

.sub-top h2 {
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 800;
  font-style: normal;
  color: #46573F;
  display: block;
  margin-left: 200px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1700px) {
  .sub-top h2 {
    margin-left: 145px;
    font-size: 48px;
  }
}
@media screen and (max-width: 884px) {
  .sub-top h2 {
    margin-left: 115px;
    margin-top: 4vh;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 480px) {
  .sub-top h2 {
    text-align: center;
    font-size: 38px;
    margin: 2rem auto 5rem;
  }
}
.sub-top h2 span {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.sub-top .pc_nav {
  display: flex;
  justify-content: right;
  padding-bottom: 45px;
}
@media screen and (max-width: 480px) {
  .sub-top .pc_nav {
    justify-content: center;
  }
}
.sub-top .pc_nav ul {
  color: #000000;
  padding: 15px 0 0 0;
}
@media screen and (max-width: 884px) {
  .sub-top .pc_nav nav {
    display: none;
  }
}
.sub-top h3 {
  font-size: 36px;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .sub-top h3 {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
.sub-top .story_box1 {
  padding-left: 0;
  background: none;
}
@media screen and (max-width: 884px) {
  .sub-top .story_box1 {
    margin: 0 auto;
    padding: 8% 0 0;
  }
}
@media screen and (max-width: 480px) {
  .sub-top .story_box1 {
    padding: 0;
    margin: 4rem auto;
    width: 85%;
  }
}

.sub_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
@media screen and (max-width: 884px) {
  .sub_top {
    flex-direction: column;
    align-items: baseline;
  }
}
@media screen and (max-width: 480px) {
  .sub_top {
    margin-top: 0;
  }
}
.sub_top_img {
  width: 60%;
}
@media screen and (max-width: 1300px) {
  .sub_top_img {
    width: 55%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top_img {
    width: 75%;
    margin-left: auto;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .sub_top_img {
    width: 88%;
    margin-bottom: 0;
  }
}
.sub_top .sub-title {
  position: relative;
  display: block;
  text-align: left;
}
.sub_top .sub-title::before {
  content: "";
  background-image: url(../img/light.png);
  position: absolute;
  width: 140px;
  height: 300px;
  top: -343%;
  left: 0;
}
@media screen and (max-width: 1700px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light02.png);
    width: 101px;
    height: 215px;
    top: -305%;
    left: 7%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::before {
    top: -256%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light03.png);
    width: 67px;
    height: 140px;
    top: -300%;
    left: 28%;
  }
}
.sub_top .sub-title::after {
  content: "";
  background-image: url(../img/tree.png);
  background-repeat: no-repeat;
  position: absolute;
  width: 585px;
  height: 235px;
  top: -38%;
  left: -73%;
}
@media screen and (max-width: 1300px) {
  .sub_top .sub-title::after {
    width: 499px;
    height: 235px;
    top: -68%;
    left: -66%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::after {
    background-image: url(../img/tree02.png);
    height: 160px;
    top: -11%;
    left: -46%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::after {
    width: 350px;
    height: 160px;
    top: -70%;
    left: -58%;
  }
}

.topic {
  margin-top: 70px;
  margin-bottom: 70px;
}
@media screen and (max-width: 480px) {
  .topic {
    margin-top: 40px;
    margin-bottom: 45px;
  }
}
.topic li {
  border-top: 1px solid #ECECEC;
  padding: 8% 16%;
}
@media screen and (max-width: 480px) {
  .topic li {
    padding: 8% 3%;
  }
}
.topic li:last-child {
  border-bottom: 1px solid #ECECEC;
}
.topic .date {
  font-family: "Lato", sans-serif;
}
.topic .topic_title {
  font-weight: bold;
  margin: 15px 0;
}

#contact {
  margin-top: 10%;
}

.contact {
  display: flex;
}
@media screen and (max-width: 884px) {
  .contact {
    flex-direction: column;
  }
}
.contact_box01 {
  width: 58%;
  padding: 15% 6%;
  background-image: url(../img/back_img.png);
  color: #FFFFFF;
}
@media screen and (max-width: 884px) {
  .contact_box01 {
    width: 100%;
  }
}
.contact_box01 .sub {
  display: inline-block;
  border-bottom: 1px solid #ECECEC;
  padding-bottom: 5px;
  font-size: 20px;
  padding: 50px 0 0;
}
@media screen and (max-width: 480px) {
  .contact_box01 .sub {
    font-size: 18px;
    padding: 6px 0 0;
  }
}
.contact_box01 .text {
  margin-top: 70px;
}
@media screen and (max-width: 480px) {
  .contact_box01 .text {
    margin-top: 35px;
  }
}
.contact_box02 {
  width: 42%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 884px) {
  .contact_box02 {
    width: 100%;
  }
}
.contact_box02 .tel, .contact_box02 .mail {
  height: 50%;
  padding: 10% 5%;
  text-align: center;
  border-top: 1px solid #ECECEC;
}
@media screen and (max-width: 884px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 5%;
  }
}
@media screen and (max-width: 480px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 10% 5%;
  }
}
.contact_box02 .mail {
  border-bottom: 1px solid #ECECEC;
}
.contact_box02 .contact_contents {
  display: flex;
  margin: 50px auto;
  justify-content: center;
  border: 1px solid #ECECEC;
  width: 70%;
  padding: 10px;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents {
    width: 90%;
    margin: 15px auto;
  }
}
.contact_box02 .contact_contents a {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.contact_box02 .contact_contents a img {
  margin: 0 auto;
  width: 8%;
  height: auto;
  margin-right: 10px;
}
.contact_box02 .contact_contents .number {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .number {
    font-size: 30px;
  }
}
.contact_box02 .contact_contents .mailform {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .mailform {
    font-size: 20px;
  }
}
.contact_box02 .contact_detail {
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .m-c {
    padding: 20px 10px;
  }
}

.tab2 {
  display: none;
}
@media screen and (max-width: 884px) {
  .tab2 {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .tab2 {
    display: none;
  }
}

.booking {
  position: fixed;
  bottom: 3%;
  left: 3%;
  z-index: 9999;
  width: 250px;
  padding: 20px;
  background-color: rgba(249, 249, 249, 0.631372549);
}
@media screen and (max-width: 480px) {
  .booking {
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 10px;
  }
}
.booking a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.booking a .booking-img {
  margin-right: 15px;
}

.product_top {
  margin: 16rem 0;
}
@media screen and (max-width: 884px) {
  .product_top {
    margin: -5rem 0 2rem;
  }
}
@media screen and (max-width: 480px) {
  .product_top {
    margin: 3rem 0 0rem;
  }
}

.product_boxs {
  padding-left: 5%;
  padding-right: 0%;
}
@media screen and (max-width: 884px) {
  .product_boxs {
    padding: 0;
    margin-bottom: 5rem;
  }
}

.product_box {
  margin: 0 0 15rem;
}
@media screen and (max-width: 480px) {
  .product_box {
    margin: 0 0 10rem;
  }
}

#product {
  margin-bottom: 10rem;
}
@media screen and (max-width: 480px) {
  #product {
    margin-bottom: 0;
  }
}
#product h2 {
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #46573F;
  font-size: 36px;
  display: inline-block;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 480px) {
  #product h2 {
    font-size: 30px;
  }
}
#product h2::before {
  content: "";
  background-image: url(../img/chair01.png);
  width: 45px;
  height: 65px;
  position: absolute;
  left: -35%;
}
#product h2::after {
  content: "";
  background-image: url(../img/table01.png);
  width: 40px;
  height: 48px;
  position: absolute;
  right: -35%;
  top: 18%;
}

.product_title {
  font-family: "ta-miyabi", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 884px) {
  .product_title {
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .product_title {
    font-size: 26px;
  }
}

.product_merit {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  margin: 10rem auto 5rem;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .product_merit {
    margin: 3rem auto 3rem;
  }
}

@media screen and (max-width: 480px) {
  .product_merit_title {
    margin-bottom: 10px !important;
    font-size: 18px !important;
  }
}

.product_list {
  padding: 5rem 0 7rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 480px) {
  .product_list {
    padding: 3rem 0 5rem;
    justify-content: center;
  }
}
.product_list .product_item {
  width: 24%;
  margin-bottom: 7%;
}
@media screen and (max-width: 1300px) {
  .product_list .product_item {
    width: 30%;
  }
}
@media screen and (max-width: 884px) {
  .product_list .product_item {
    width: 48%;
  }
}
@media screen and (max-width: 480px) {
  .product_list .product_item {
    width: 80%;
    margin-bottom: 10%;
  }
}

.p_title {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 20px;
  padding: 3% 0 0;
}
@media screen and (max-width: 480px) {
  .p_title {
    font-size: 16px;
  }
}

.price {
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  .price {
    font-size: 16px;
  }
}

.product_detail-top {
  height: 85vh;
}
@media screen and (max-width: 884px) {
  .product_detail-top {
    height: 68vh;
  }
}
@media screen and (max-width: 480px) {
  .product_detail-top {
    height: auto;
  }
}
@media screen and (max-width: 480px) {
  .product_detail-top .sub_top_img {
    display: none !important;
  }
}

#product_detail {
  display: flex;
  justify-content: space-around;
  padding: 10rem 0;
}
@media screen and (max-width: 1300px) {
  #product_detail {
    padding-top: 7rem;
  }
}
@media screen and (max-width: 884px) {
  #product_detail {
    padding: 10rem 0 5rem;
    flex-wrap: wrap;
    align-items: center;
  }
}
@media screen and (max-width: 480px) {
  #product_detail {
    flex-direction: column;
    padding: 5rem 0 3rem;
  }
}
#product_detail .p_title {
  font-size: 24px;
}
#product_detail .price {
  padding: 3% 0;
}
#product_detail .product_detail_box {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
@media screen and (max-width: 884px) {
  #product_detail .product_detail_box {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  #product_detail .product_detail_box {
    font-size: 14px;
  }
}

.product_detail_contents {
  width: 50%;
}
@media screen and (max-width: 884px) {
  .product_detail_contents {
    width: 85%;
  }
}
@media screen and (max-width: 480px) {
  .product_detail_contents {
    width: 85%;
    margin: 0 auto;
  }
}

.product_detail_txt {
  width: 40%;
}
@media screen and (max-width: 884px) {
  .product_detail_txt {
    width: 85%;
    margin: 2rem auto;
  }
}

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

.cartjs_box table {
  margin-left: 0 !important;
}

.cartjs_cart_in {
  text-align: left !important;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

html {
  visibility: hidden;
}

html.wf-active,
html.loading-delay {
  visibility: visible;
}

html {
  scroll-behavior: smooth;
}

a {
  cursor: pointer;
}

body {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 884px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
}

.wrapper {
  max-width: 1670px;
  margin: 0 auto;
}
@media screen and (max-width: 1670px) {
  .wrapper {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .wrapper {
    margin: 0 3%;
  }
}

.inner {
  max-width: 1520px;
  margin: 0 auto;
}
@media screen and (max-width: 1520px) {
  .inner {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .inner {
    margin: 0 3%;
  }
}

.inner2 {
  max-width: 1200px;
  margin: 0 0 0 5%;
}
@media screen and (max-width: 1300px) {
  .inner2 {
    margin: 0 6%;
  }
}

#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 30px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
  transform: scale(1, -1);
}
@media screen and (max-width: 480px) {
  #page-top a {
    width: 45px;
    height: 45px;
    font-size: 30px;
  }
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (max-width: 480px) {
  #page-top {
    right: 13px;
    bottom: 8px;
  }
}

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

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

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/* fadeIn */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger {
  opacity: 0;
}

.pc_nav ul {
  position: absolute;
  font-family: "Lato", sans-serif;
  color: #FFFFFF;
  display: flex;
  padding: 50px;
  right: 0;
}
@media screen and (max-width: 1300px) {
  .pc_nav ul {
    padding: 40px 0 100px;
  }
}
.pc_nav ul li {
  padding: 0 20px;
}
.pc_nav ul li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .pc_nav ul li {
    padding: 0 22px;
  }
}
@media screen and (max-width: 480px) {
  .pc_nav {
    display: none;
  }
}

.footer {
  display: flex;
  flex-direction: column;
}
.footer .f-list {
  font-family: "Lato", sans-serif;
  display: flex;
  justify-content: right;
  color: #333333;
  padding: 55px 0 60px;
}
@media screen and (max-width: 1300px) {
  .footer .f-list {
    padding: 40px 0 55px;
  }
}
@media screen and (max-width: 884px) {
  .footer .f-list {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .footer .f-list {
    flex-wrap: wrap;
    font-size: 16px;
    gap: 10px;
    padding: 50px 0 30px;
  }
}
.footer .f-list li {
  padding: 0 20px;
}
.footer .f-list li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .footer .f-list li {
    padding: 0 22px;
  }
}
.footer .f-list_sub {
  font-size: 14px;
  padding: 0 0 60px;
}
@media screen and (max-width: 884px) {
  .footer .f-list_sub {
    padding-bottom: 50px;
  }
}
.footer .adress {
  font-family: "Lato", sans-serif;
  display: block;
  margin-left: auto;
  margin-right: 0;
  padding-bottom: 50px;
}
.footer .copy {
  text-align: right;
  padding-bottom: 10px;
}

.btn01 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-right: 0;
}
.btn01::before {
  content: "+";
}

.btn02 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-left: 0;
  position: relative;
  z-index: 100;
}
.btn02::before {
  content: "+";
}

.btn03 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  max-width: 150px;
  margin-right: 0;
  margin-top: 200px;
}
@media screen and (max-width: 884px) {
  .btn03 {
    margin-top: 100px;
  }
}
@media screen and (max-width: 480px) {
  .btn03 {
    margin-top: 80px;
    width: 100px;
  }
}

.title {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .title {
    font-size: 30px;
  }
}

.sub {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  padding: 50px 0 60px;
}
@media screen and (max-width: 480px) {
  .sub {
    padding: 45px 0 30px;
    font-size: 18px;
  }
}

.title-sub {
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .title-sub {
    font-size: 20px;
  }
}

.sub-title {
  font-size: 56px;
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-left: 100px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .sub-title {
    font-size: 40px;
    margin-left: 0;
    line-height: 0.8;
  }
}
.sub-title span {
  font-size: 18px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.sub-top {
  padding-top: 35px;
  background-image: url(../img/sub_kv.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 480px) {
  .sub-top {
    padding-top: 35px;
  }
}

.sub-top h2 {
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 800;
  font-style: normal;
  color: #46573F;
  display: block;
  margin-left: 200px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1700px) {
  .sub-top h2 {
    margin-left: 145px;
    font-size: 48px;
  }
}
@media screen and (max-width: 884px) {
  .sub-top h2 {
    margin-left: 115px;
    margin-top: 4vh;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 480px) {
  .sub-top h2 {
    text-align: center;
    font-size: 38px;
    margin: 2rem auto 5rem;
  }
}
.sub-top h2 span {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.sub-top .pc_nav {
  display: flex;
  justify-content: right;
  padding-bottom: 45px;
}
@media screen and (max-width: 480px) {
  .sub-top .pc_nav {
    justify-content: center;
  }
}
.sub-top .pc_nav ul {
  color: #000000;
  padding: 15px 0 0 0;
}
@media screen and (max-width: 884px) {
  .sub-top .pc_nav nav {
    display: none;
  }
}
.sub-top h3 {
  font-size: 36px;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .sub-top h3 {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
.sub-top .story_box1 {
  padding-left: 0;
  background: none;
}
@media screen and (max-width: 884px) {
  .sub-top .story_box1 {
    margin: 0 auto;
    padding: 8% 0 0;
  }
}
@media screen and (max-width: 480px) {
  .sub-top .story_box1 {
    padding: 0;
    margin: 4rem auto;
    width: 85%;
  }
}

.sub_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
@media screen and (max-width: 884px) {
  .sub_top {
    flex-direction: column;
    align-items: baseline;
  }
}
@media screen and (max-width: 480px) {
  .sub_top {
    margin-top: 0;
  }
}
.sub_top_img {
  width: 60%;
}
@media screen and (max-width: 1300px) {
  .sub_top_img {
    width: 55%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top_img {
    width: 75%;
    margin-left: auto;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .sub_top_img {
    width: 88%;
    margin-bottom: 0;
  }
}
.sub_top .sub-title {
  position: relative;
  display: block;
  text-align: left;
}
.sub_top .sub-title::before {
  content: "";
  background-image: url(../img/light.png);
  position: absolute;
  width: 140px;
  height: 300px;
  top: -343%;
  left: 0;
}
@media screen and (max-width: 1700px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light02.png);
    width: 101px;
    height: 215px;
    top: -305%;
    left: 7%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::before {
    top: -256%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light03.png);
    width: 67px;
    height: 140px;
    top: -300%;
    left: 28%;
  }
}
.sub_top .sub-title::after {
  content: "";
  background-image: url(../img/tree.png);
  background-repeat: no-repeat;
  position: absolute;
  width: 585px;
  height: 235px;
  top: -38%;
  left: -73%;
}
@media screen and (max-width: 1300px) {
  .sub_top .sub-title::after {
    width: 499px;
    height: 235px;
    top: -68%;
    left: -66%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::after {
    background-image: url(../img/tree02.png);
    height: 160px;
    top: -11%;
    left: -46%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::after {
    width: 350px;
    height: 160px;
    top: -70%;
    left: -58%;
  }
}

.topic {
  margin-top: 70px;
  margin-bottom: 70px;
}
@media screen and (max-width: 480px) {
  .topic {
    margin-top: 40px;
    margin-bottom: 45px;
  }
}
.topic li {
  border-top: 1px solid #ECECEC;
  padding: 8% 16%;
}
@media screen and (max-width: 480px) {
  .topic li {
    padding: 8% 3%;
  }
}
.topic li:last-child {
  border-bottom: 1px solid #ECECEC;
}
.topic .date {
  font-family: "Lato", sans-serif;
}
.topic .topic_title {
  font-weight: bold;
  margin: 15px 0;
}

#contact {
  margin-top: 10%;
}

.contact {
  display: flex;
}
@media screen and (max-width: 884px) {
  .contact {
    flex-direction: column;
  }
}
.contact_box01 {
  width: 58%;
  padding: 15% 6%;
  background-image: url(../img/back_img.png);
  color: #FFFFFF;
}
@media screen and (max-width: 884px) {
  .contact_box01 {
    width: 100%;
  }
}
.contact_box01 .sub {
  display: inline-block;
  border-bottom: 1px solid #ECECEC;
  padding-bottom: 5px;
  font-size: 20px;
  padding: 50px 0 0;
}
@media screen and (max-width: 480px) {
  .contact_box01 .sub {
    font-size: 18px;
    padding: 6px 0 0;
  }
}
.contact_box01 .text {
  margin-top: 70px;
}
@media screen and (max-width: 480px) {
  .contact_box01 .text {
    margin-top: 35px;
  }
}
.contact_box02 {
  width: 42%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 884px) {
  .contact_box02 {
    width: 100%;
  }
}
.contact_box02 .tel, .contact_box02 .mail {
  height: 50%;
  padding: 10% 5%;
  text-align: center;
  border-top: 1px solid #ECECEC;
}
@media screen and (max-width: 884px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 5%;
  }
}
@media screen and (max-width: 480px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 10% 5%;
  }
}
.contact_box02 .mail {
  border-bottom: 1px solid #ECECEC;
}
.contact_box02 .contact_contents {
  display: flex;
  margin: 50px auto;
  justify-content: center;
  border: 1px solid #ECECEC;
  width: 70%;
  padding: 10px;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents {
    width: 90%;
    margin: 15px auto;
  }
}
.contact_box02 .contact_contents a {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.contact_box02 .contact_contents a img {
  margin: 0 auto;
  width: 8%;
  height: auto;
  margin-right: 10px;
}
.contact_box02 .contact_contents .number {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .number {
    font-size: 30px;
  }
}
.contact_box02 .contact_contents .mailform {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .mailform {
    font-size: 20px;
  }
}
.contact_box02 .contact_detail {
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .m-c {
    padding: 20px 10px;
  }
}

.tab2 {
  display: none;
}
@media screen and (max-width: 884px) {
  .tab2 {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .tab2 {
    display: none;
  }
}

.booking {
  position: fixed;
  bottom: 3%;
  left: 3%;
  z-index: 9999;
  width: 250px;
  padding: 20px;
  background-color: rgba(249, 249, 249, 0.631372549);
}
@media screen and (max-width: 480px) {
  .booking {
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 10px;
  }
}
.booking a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.booking a .booking-img {
  margin-right: 15px;
}

.renovation .sub_top {
  padding-top: 130px;
  padding-bottom: 5rem;
}
@media screen and (max-width: 1300px) {
  .renovation .sub_top {
    padding-top: 40px;
  }
}
@media screen and (max-width: 884px) {
  .renovation .sub_top {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 884px) {
  .renovation .sub_top_img {
    width: 85%;
  }
}
@media screen and (max-width: 480px) {
  .renovation .sub_top_img {
    margin-bottom: 3rem;
  }
}
.renovation .sub-title {
  margin-left: 255px;
}
@media screen and (max-width: 1300px) {
  .renovation .sub-title {
    margin-left: 170px;
  }
}
@media screen and (max-width: 884px) {
  .renovation .sub-title {
    margin-left: 170px;
  }
}
@media screen and (max-width: 480px) {
  .renovation .sub-title {
    margin: 0 5% 0 auto;
  }
}
.renovation .sub-title::before {
  top: -318%;
}
@media screen and (max-width: 480px) {
  .renovation .sub-title::before {
    top: -256%;
    left: 20%;
  }
}
.renovation .sub-title::after {
  content: "";
  background-image: url(../img/tree.png);
  background-repeat: no-repeat;
  position: absolute;
  width: 585px !important;
  height: 235px !important;
  top: -38% !important;
  left: -38% !important;
}
@media screen and (max-width: 884px) {
  .renovation .sub-title::after {
    background-image: url(../img/tree02.png);
    height: 160px !important;
    top: -11% !important;
    left: -32% !important;
  }
}
@media screen and (max-width: 480px) {
  .renovation .sub-title::after {
    width: 350px !important;
    height: 160px !important;
    top: -70% !important;
    left: -31% !important;
  }
}

.sub_top_text {
  font-family: "ta-miyabi", sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 60%;
  font-size: 42px;
  padding-left: 13%;
  padding-bottom: 5%;
  padding-top: 2%;
}
@media screen and (max-width: 1300px) {
  .sub_top_text {
    padding-left: 10%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top_text {
    font-size: 32px;
    text-align: center;
    padding: 0;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .sub_top_text {
    padding-left: 0;
    margin: 0 auto;
    font-size: 20px;
    padding-top: 5rem;
    display: flex;
    justify-content: center;
  }
}

.sub-top_other {
  background-image: url(../img/sub_kv.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.sub-top_other .renovation_img {
  width: 80%;
  margin: 0 auto;
}

#renovation .renovation_detail_box {
  display: flex;
  justify-content: space-between;
  margin: 5rem 0 8rem;
}
@media screen and (max-width: 884px) {
  #renovation .renovation_detail_box {
    flex-direction: column;
  }
}
#renovation .renovation_detail_img {
  width: 35%;
  text-align: center;
  background-image: url(../img/renovation01.png);
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 884px) {
  #renovation .renovation_detail_img {
    width: 85%;
    height: 22vh;
    margin: 0 auto;
    background-position: center;
  }
}
@media screen and (max-width: 480px) {
  #renovation .renovation_detail_img {
    width: 90%;
  }
}
#renovation .renovation_detail_img h3 {
  font-size: 28px;
  color: #FFFFFF;
}
@media screen and (max-width: 480px) {
  #renovation .renovation_detail_img h3 {
    font-size: 20px;
  }
}
#renovation .renovation_detail_img01 {
  background-image: url(../img/renovation02.png);
}
#renovation .renovation_detail_text {
  width: 60%;
  height: auto;
  background-color: #e5e3e1;
  padding: 5% 3%;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
}
@media screen and (max-width: 884px) {
  #renovation .renovation_detail_text {
    width: 85%;
    margin: 0 auto;
    padding-top: 6%;
  }
}
@media screen and (max-width: 480px) {
  #renovation .renovation_detail_text {
    width: 90%;
    padding: 10% 5% 2%;
  }
}
#renovation .renovation_detail_text h4 {
  margin-bottom: 0.5vw;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  #renovation .renovation_detail_text h4 {
    font-size: 16px;
  }
}
#renovation .renovation_detail_text p {
  margin-bottom: 3vw;
}
@media screen and (max-width: 480px) {
  #renovation .renovation_detail_text p {
    margin-bottom: 12vw;
  }
}
#renovation .renovation_detail_text_p {
  margin-bottom: 5rem !important;
}
@media screen and (max-width: 884px) {
  #renovation .renovation_detail_reverse {
    flex-direction: column-reverse;
  }
}

.renovation_title {
  font-family: "ta-miyabi", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-size: 32px;
  margin-top: 7rem;
  line-height: 1.3;
}
@media screen and (max-width: 884px) {
  .renovation_title {
    margin-bottom: 35px;
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .renovation_title {
    margin-top: 5rem;
    margin-bottom: 1rem;
  }
}
.renovation_title span {
  font-family: "ta-miyabi", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
}
@media screen and (max-width: 480px) {
  .renovation_title span {
    font-size: 14px;
  }
}

.renovation_box {
  width: 73%;
  margin: 0 auto 10rem;
  padding: 3% 0;
}
@media screen and (max-width: 884px) {
  .renovation_box {
    width: 85%;
  }
}
@media screen and (max-width: 480px) {
  .renovation_box {
    width: 90%;
    text-align: left;
    margin: 0 auto 6rem;
  }
}

.slider_b-a {
  margin: 15rem 0;
}
@media screen and (max-width: 884px) {
  .slider_b-a {
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 480px) {
  .slider_b-a {
    margin: 3rem 0 5rem;
  }
}

#rent {
  margin-bottom: 12rem;
}
@media screen and (max-width: 884px) {
  #rent {
    margin-bottom: 7rem;
  }
}
#rent .challenge_box1 {
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 884px) {
  #rent .challenge_box1 {
    padding: 0 0 5rem 0;
  }
}
@media screen and (max-width: 480px) {
  #rent .challenge_box1 {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 884px) {
  #rent .reverse {
    flex-direction: column;
  }
}
#rent .rent_box02 {
  width: 40%;
}
@media screen and (max-width: 884px) {
  #rent .rent_box02 {
    width: 85%;
  }
}
#rent .fourchallenge {
  padding: 3% 5% 3% 3%;
  width: 60%;
}
@media screen and (max-width: 884px) {
  #rent .fourchallenge {
    width: 85%;
    padding: 0 0 5rem 0;
  }
}
#rent .renovation_title {
  margin: 1rem auto 2rem;
  font-family: "ta-miyabi", sans-serif;
  font-weight: 400;
  font-style: normal;
}
#rent .rent_box {
  padding: 3% 3% 3% 5%;
}
@media screen and (max-width: 884px) {
  #rent .rent_box {
    padding: 0 0 5rem 0;
  }
}

html {
  visibility: hidden;
}

html.wf-active,
html.loading-delay {
  visibility: visible;
}

html {
  scroll-behavior: smooth;
}

a {
  cursor: pointer;
}

body {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 884px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
}

.wrapper {
  max-width: 1670px;
  margin: 0 auto;
}
@media screen and (max-width: 1670px) {
  .wrapper {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .wrapper {
    margin: 0 3%;
  }
}

.inner {
  max-width: 1520px;
  margin: 0 auto;
}
@media screen and (max-width: 1520px) {
  .inner {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .inner {
    margin: 0 3%;
  }
}

.inner2 {
  max-width: 1200px;
  margin: 0 0 0 5%;
}
@media screen and (max-width: 1300px) {
  .inner2 {
    margin: 0 6%;
  }
}

#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 30px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
  transform: scale(1, -1);
}
@media screen and (max-width: 480px) {
  #page-top a {
    width: 45px;
    height: 45px;
    font-size: 30px;
  }
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (max-width: 480px) {
  #page-top {
    right: 13px;
    bottom: 8px;
  }
}

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

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

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/* fadeIn */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger {
  opacity: 0;
}

.pc_nav ul {
  position: absolute;
  font-family: "Lato", sans-serif;
  color: #FFFFFF;
  display: flex;
  padding: 50px;
  right: 0;
}
@media screen and (max-width: 1300px) {
  .pc_nav ul {
    padding: 40px 0 100px;
  }
}
.pc_nav ul li {
  padding: 0 20px;
}
.pc_nav ul li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .pc_nav ul li {
    padding: 0 22px;
  }
}
@media screen and (max-width: 480px) {
  .pc_nav {
    display: none;
  }
}

.footer {
  display: flex;
  flex-direction: column;
}
.footer .f-list {
  font-family: "Lato", sans-serif;
  display: flex;
  justify-content: right;
  color: #333333;
  padding: 55px 0 60px;
}
@media screen and (max-width: 1300px) {
  .footer .f-list {
    padding: 40px 0 55px;
  }
}
@media screen and (max-width: 884px) {
  .footer .f-list {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .footer .f-list {
    flex-wrap: wrap;
    font-size: 16px;
    gap: 10px;
    padding: 50px 0 30px;
  }
}
.footer .f-list li {
  padding: 0 20px;
}
.footer .f-list li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .footer .f-list li {
    padding: 0 22px;
  }
}
.footer .f-list_sub {
  font-size: 14px;
  padding: 0 0 60px;
}
@media screen and (max-width: 884px) {
  .footer .f-list_sub {
    padding-bottom: 50px;
  }
}
.footer .adress {
  font-family: "Lato", sans-serif;
  display: block;
  margin-left: auto;
  margin-right: 0;
  padding-bottom: 50px;
}
.footer .copy {
  text-align: right;
  padding-bottom: 10px;
}

.btn01 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-right: 0;
}
.btn01::before {
  content: "+";
}

.btn02 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-left: 0;
  position: relative;
  z-index: 100;
}
.btn02::before {
  content: "+";
}

.btn03 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  max-width: 150px;
  margin-right: 0;
  margin-top: 200px;
}
@media screen and (max-width: 884px) {
  .btn03 {
    margin-top: 100px;
  }
}
@media screen and (max-width: 480px) {
  .btn03 {
    margin-top: 80px;
    width: 100px;
  }
}

.title {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .title {
    font-size: 30px;
  }
}

.sub {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  padding: 50px 0 60px;
}
@media screen and (max-width: 480px) {
  .sub {
    padding: 45px 0 30px;
    font-size: 18px;
  }
}

.title-sub {
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .title-sub {
    font-size: 20px;
  }
}

.sub-title {
  font-size: 56px;
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-left: 100px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .sub-title {
    font-size: 40px;
    margin-left: 0;
    line-height: 0.8;
  }
}
.sub-title span {
  font-size: 18px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.sub-top {
  padding-top: 35px;
  background-image: url(../img/sub_kv.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 480px) {
  .sub-top {
    padding-top: 35px;
  }
}

.sub-top h2 {
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 800;
  font-style: normal;
  color: #46573F;
  display: block;
  margin-left: 200px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1700px) {
  .sub-top h2 {
    margin-left: 145px;
    font-size: 48px;
  }
}
@media screen and (max-width: 884px) {
  .sub-top h2 {
    margin-left: 115px;
    margin-top: 4vh;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 480px) {
  .sub-top h2 {
    text-align: center;
    font-size: 38px;
    margin: 2rem auto 5rem;
  }
}
.sub-top h2 span {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.sub-top .pc_nav {
  display: flex;
  justify-content: right;
  padding-bottom: 45px;
}
@media screen and (max-width: 480px) {
  .sub-top .pc_nav {
    justify-content: center;
  }
}
.sub-top .pc_nav ul {
  color: #000000;
  padding: 15px 0 0 0;
}
@media screen and (max-width: 884px) {
  .sub-top .pc_nav nav {
    display: none;
  }
}
.sub-top h3 {
  font-size: 36px;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .sub-top h3 {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
.sub-top .story_box1 {
  padding-left: 0;
  background: none;
}
@media screen and (max-width: 884px) {
  .sub-top .story_box1 {
    margin: 0 auto;
    padding: 8% 0 0;
  }
}
@media screen and (max-width: 480px) {
  .sub-top .story_box1 {
    padding: 0;
    margin: 4rem auto;
    width: 85%;
  }
}

.sub_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
@media screen and (max-width: 884px) {
  .sub_top {
    flex-direction: column;
    align-items: baseline;
  }
}
@media screen and (max-width: 480px) {
  .sub_top {
    margin-top: 0;
  }
}
.sub_top_img {
  width: 60%;
}
@media screen and (max-width: 1300px) {
  .sub_top_img {
    width: 55%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top_img {
    width: 75%;
    margin-left: auto;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .sub_top_img {
    width: 88%;
    margin-bottom: 0;
  }
}
.sub_top .sub-title {
  position: relative;
  display: block;
  text-align: left;
}
.sub_top .sub-title::before {
  content: "";
  background-image: url(../img/light.png);
  position: absolute;
  width: 140px;
  height: 300px;
  top: -343%;
  left: 0;
}
@media screen and (max-width: 1700px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light02.png);
    width: 101px;
    height: 215px;
    top: -305%;
    left: 7%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::before {
    top: -256%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light03.png);
    width: 67px;
    height: 140px;
    top: -300%;
    left: 28%;
  }
}
.sub_top .sub-title::after {
  content: "";
  background-image: url(../img/tree.png);
  background-repeat: no-repeat;
  position: absolute;
  width: 585px;
  height: 235px;
  top: -38%;
  left: -73%;
}
@media screen and (max-width: 1300px) {
  .sub_top .sub-title::after {
    width: 499px;
    height: 235px;
    top: -68%;
    left: -66%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::after {
    background-image: url(../img/tree02.png);
    height: 160px;
    top: -11%;
    left: -46%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::after {
    width: 350px;
    height: 160px;
    top: -70%;
    left: -58%;
  }
}

.topic {
  margin-top: 70px;
  margin-bottom: 70px;
}
@media screen and (max-width: 480px) {
  .topic {
    margin-top: 40px;
    margin-bottom: 45px;
  }
}
.topic li {
  border-top: 1px solid #ECECEC;
  padding: 8% 16%;
}
@media screen and (max-width: 480px) {
  .topic li {
    padding: 8% 3%;
  }
}
.topic li:last-child {
  border-bottom: 1px solid #ECECEC;
}
.topic .date {
  font-family: "Lato", sans-serif;
}
.topic .topic_title {
  font-weight: bold;
  margin: 15px 0;
}

#contact {
  margin-top: 10%;
}

.contact {
  display: flex;
}
@media screen and (max-width: 884px) {
  .contact {
    flex-direction: column;
  }
}
.contact_box01 {
  width: 58%;
  padding: 15% 6%;
  background-image: url(../img/back_img.png);
  color: #FFFFFF;
}
@media screen and (max-width: 884px) {
  .contact_box01 {
    width: 100%;
  }
}
.contact_box01 .sub {
  display: inline-block;
  border-bottom: 1px solid #ECECEC;
  padding-bottom: 5px;
  font-size: 20px;
  padding: 50px 0 0;
}
@media screen and (max-width: 480px) {
  .contact_box01 .sub {
    font-size: 18px;
    padding: 6px 0 0;
  }
}
.contact_box01 .text {
  margin-top: 70px;
}
@media screen and (max-width: 480px) {
  .contact_box01 .text {
    margin-top: 35px;
  }
}
.contact_box02 {
  width: 42%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 884px) {
  .contact_box02 {
    width: 100%;
  }
}
.contact_box02 .tel, .contact_box02 .mail {
  height: 50%;
  padding: 10% 5%;
  text-align: center;
  border-top: 1px solid #ECECEC;
}
@media screen and (max-width: 884px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 5%;
  }
}
@media screen and (max-width: 480px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 10% 5%;
  }
}
.contact_box02 .mail {
  border-bottom: 1px solid #ECECEC;
}
.contact_box02 .contact_contents {
  display: flex;
  margin: 50px auto;
  justify-content: center;
  border: 1px solid #ECECEC;
  width: 70%;
  padding: 10px;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents {
    width: 90%;
    margin: 15px auto;
  }
}
.contact_box02 .contact_contents a {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.contact_box02 .contact_contents a img {
  margin: 0 auto;
  width: 8%;
  height: auto;
  margin-right: 10px;
}
.contact_box02 .contact_contents .number {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .number {
    font-size: 30px;
  }
}
.contact_box02 .contact_contents .mailform {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .mailform {
    font-size: 20px;
  }
}
.contact_box02 .contact_detail {
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .m-c {
    padding: 20px 10px;
  }
}

.tab2 {
  display: none;
}
@media screen and (max-width: 884px) {
  .tab2 {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .tab2 {
    display: none;
  }
}

.booking {
  position: fixed;
  bottom: 3%;
  left: 3%;
  z-index: 9999;
  width: 250px;
  padding: 20px;
  background-color: rgba(249, 249, 249, 0.631372549);
}
@media screen and (max-width: 480px) {
  .booking {
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 10px;
  }
}
.booking a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.booking a .booking-img {
  margin-right: 15px;
}

/* 特商法 */
.tradelaw-top h2 span {
  font-size: 23px;
}

.trade-top .sub-title::after {
  left: -42%;
}
@media screen and (max-width: 884px) {
  .trade-top .sub-title::after {
    left: -30%;
  }
}
@media screen and (max-width: 480px) {
  .trade-top .sub-title::after {
    left: -14%;
  }
}

#tradelaw {
  padding-top: 8rem;
  width: fit-content;
  font-size: 1.3rem;
  margin: 0 auto 10vw;
  border-spacing: 20px 10px;
}
@media screen and (max-width: 1300px) {
  #tradelaw {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 884px) {
  #tradelaw {
    font-size: 1.1rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
@media screen and (max-width: 480px) {
  #tradelaw {
    padding-top: 4rem;
    padding-bottom: 4rem;
    width: 90vw;
    font-size: 0.9rem;
    text-align: left;
    margin: 0 auto 10vw;
    border-spacing: 20px 10px;
  }
}
#tradelaw th {
  width: 15vw;
  padding: 2vw;
  text-align: left;
  font-size: 16px;
}
@media screen and (max-width: 1300px) {
  #tradelaw th {
    width: 18vw;
    padding: 2vw;
    text-align: left;
  }
}
@media screen and (max-width: 884px) {
  #tradelaw th {
    width: 19vw;
    padding: 2vw;
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  #tradelaw th {
    display: block;
    width: 80vw;
    padding: 2vw 1vw;
    text-align: left;
    font-size: 14px;
  }
}
#tradelaw td {
  width: 60vw;
  padding: 2vw;
  text-align: left;
  font-size: 16px;
}
@media screen and (max-width: 1300px) {
  #tradelaw td {
    width: 60vw;
    padding: 2vw;
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  #tradelaw td {
    display: block;
    width: 80vw;
    padding: 2vw;
    text-align: left;
    font-size: 14px;
  }
}

#privacy {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
@media screen and (max-width: 884px) {
  #privacy {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 480px) {
  #privacy {
    padding-bottom: 4rem;
  }
}

#privacy_policy .ttls {
  text-align: center;
  margin: 5vw 0;
}
@media screen and (max-width: 480px) {
  #privacy_policy .ttls {
    margin: 20vw 0 10vw;
  }
}

#privacy h5 {
  font-size: 1.5rem;
  border-bottom: solid 1px #ccc;
  width: 100%;
  padding: 3vw 0;
}
@media screen and (max-width: 480px) {
  #privacy h5 {
    font-size: 18px;
    border-bottom: solid 1px #ccc;
    width: 100%;
    padding: 3vw 0;
  }
}

#privacy p {
  margin: 2vw 0;
}
@media screen and (max-width: 480px) {
  #privacy p {
    margin: 2vw 0;
    font-size: 12px;
  }
}

#privacy li {
  margin: 3vw 0;
}/*# sourceMappingURL=style.css.map */