@charset "utf-8";
/* CSS Document */
html {
  font-size: 62.5%;
  width: 100%;
  box-sizing: border-box;
}
body {
  background-color: #F3F3F3;
  font-family: "DNP 秀英角ゴシック銀 Std", "DNP ShueiGoGinStd", 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Sans-selif;
  font-weight: 500;
  font-size: 2rem;
  text-align: left;
  line-height: 3.6rem;
  color: #707070;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
a:hover {
  opacity: 0.5;
}
img {
  width: 100%;
}
.br-SP {
  display: none;
}
.none {
  display: none;
}
/*==================================================
ふわっ
===================================*/
/* fadeUp */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger, .fadeLeftTrigger, .fadeRightTrigger {
  opacity: 0;
}
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time05 {
  animation-delay: 0.5s;
}
.delay-time1 {
  animation-delay: 1s;
}
.delay-time2 {
  animation-delay: 2s;
}
/*header*/
.openbtn {
  display: none;
}
.header__sp-menu, .header__SP {
  display: none;
}
.header-content-wrapper {
  margin: 0 auto;
  border-bottom: solid 1px #DED7E9;
  padding: 1% 6.94%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: #f3f3f3;
  box-sizing: border-box;
}
.header__upper-nav {
  display: flex;
  justify-content: flex-end;
  margin-top: 1%;
}
.header__upper-nav img {
  width: 30px;
  height: 32px;
  padding-left: 20px;
}
.header__upper-nav p {
  padding-left: 8px;
  color: #707070;
  font-size: 1.6rem;
}
.header__lower-nav {
  display: flex;
  align-items: center;
  position: relative;
}
.header__logo {
  width: 275px;
  height: 100%;
  display: inline-block;
}
.header__lower-nav nav {
  margin-left: auto;
}
.header__lower-nav nav ul {
  display: flex;
  justify-content: flex-end;
}
.header__lower-nav nav ul li {
  padding: 0px 30px 0 30px;
}
.header__lower-nav nav ul li a {
  color: #897e9c;
  text-decoration: none;
  font-size: 2rem;
  height: 83px;
}
.header nav ul li:last-child {
  padding-right: 0;
}
@media(max-width: 1200px) {
  .header__lower-nav nav ul li {
    padding: 0px 20px 0 20px;
  }
  .header__lower-nav nav ul li a {
    color: #897e9c;
    text-decoration: none;
    font-size: 1.8rem;
    height: 83px;
  }
}
@media(max-width: 1024px) {
  .br-SP {
    display: block;
  }
  .header-content-wrapper {
    display: none;
  }
  .header__SP {
    display: flex;
    width: 100%;
    height: 70px;
    background-color: rgb(255, 255, 255, 0.6);
  }
  .header__SP img {
    width: 120px;
    height: auto;
    padding: 18px 20px;
  }
  /*ハンバーガーボタン*/
  .openbtn {
    display: block;
    position: fixed;
    width: 50px;
    top: 10px;
    right: 15px;
    height: 50px;
    cursor: pointer;
    z-index: 1000;
  }
  /*ボタン内側*/
  .openbtn span {
    display: inline-block;
    transition: all .4s; /*アニメーションの設定*/
    position: absolute;
    left: 13px;
    height: 2px;
    background-color: #897e9c;
  }
  .openbtn span:nth-of-type(1) {
    top: 18px;
    width: 50%;
  }
  .openbtn span:nth-of-type(2) {
    top: 26px;
    width: 30%;
  }
  /*activeクラスが付与されると線が回転して×に*/
  .openbtn.active span:nth-of-type(1) {
    top: 20px;
    left: 16px;
    transform: translateY(6px) rotate(-45deg);
    width: 35%;
  }
  .openbtn.active span:nth-of-type(2) {
    top: 32px;
    left: 16px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
  }
  .header__sp-menu {
    display: none;
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #F3F3F3;
    width: 100%;
    height: 100%;
    padding: 100px 0px 50px;
  }
  .header__sp-menu ul li {
    padding: 15px;
    border-top: solid 0.5px #cadbd5;
    list-style: none;
    text-align: left;
    margin: 0 24px;
  }
  .header__sp-menu ul li:last-child {
    border-bottom: solid 0.5px #cadbd5;
  }
  .header__sp-menu ul li a {
    color: #6A8079;
    font-size: 1.8rem;
  }
  .header__logo {
    width: 160px;
    height: auto;
    display: block;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
  }
  .header__contact {
    text-align: center;
    display: block;
    color: #897e9c;
    margin: 30px auto;
    font-size: 1.8rem;
  }
  .header__contact span {
    font-size: 2.4rem;
  }
  .header__LINE {
    text-align: center;
    margin-bottom: 10px;
  }
  .header__LINE img {
    width: 15%;
    height: auto;
  }
  .header__telephone {
    display: flex;
    justify-content: center;
  }
  .header__tel {
    width: 25px;
    height: 25px;
    margin: 5px;
  }
  .header__telephone {
    color: #897e9c;
  }
  .header__tel-number a {
    color: #897e9c;
  }
  .header__maker-link {
    font-size: 1.8rem;
    padding: 50px 24px;
  }
  .header__maker-link a {
    color: #6A8079;
  }
}
/*お問い合わせ・ご予約*/
.section-contact {
  position: relative;
  max-width: 1700px;
  margin: 50px auto;
  padding: 70px 0;
}
.section-contact h4 {
  color: #897e9c;
  text-transform: uppercase;
  font-family: Baskerville URW, 'Libre Baskerville';
  position: absolute;
  left: 100px;
  writing-mode: vertical-rl;
  line-height: 1;
  top: 72px;
}
.section-contact h4::before {
  content: "";
  width: 1px;
  height: 180px;
  background-color: #897e9c;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
.section-contact h2 {
  font-family: A-OTF Ryumin Pr6N KL, YuMincho, 'Noto Serif JP', "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 3.2rem;
  position: absolute;
  top: 140px;
  left: 170px;
  color: #897e9c;
}
.section-contact__bg {
  width: 100%;
  min-height: 460px;
  margin-top: 180px;
  object-fit: cover;
}
.section-contact__text {
  width: 32%;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 400px;
}
.section-contact__LINE {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 55%;
  left: 32%;
  align-items: center;
}
.section-contact__LINE p {
  color: #707070;
  font-size: 2.4rem;
}
.section-contact__LINE img {
  width: 25%;
  height: auto;
  margin-left: 20px;
}
.section-contact__open {
  width: 25%;
  position: absolute;
  top: 78%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 300px;
}
.section-contact__open a {
  color: #707070;
}
@media(max-width:1024px) {
  .section-contact {
    position: relative;
    margin: 0 auto;
    padding: 100px 0;
    background-image: url("../images/common/sp-contact-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .section-contact h4 {
    position: absolute;
    left: 24px;
    font-size: 1.6rem;
  }
  .section-contact h4::before {
    height: 130px;
    bottom: 0;
    left: 0;
  }
  .section-contact h2 {
    font-size: 2.4rem;
    position: relative;
    top: 0;
    left: 0;
    margin: 25px 0 0 70px;
  }
  .section-contact__bg {
    display: none;
  }
  .section-contact__text {
    width: auto;
    position: relative;
    top: 0%;
    left: 0%;
    transform: translate(0%, 0%);
    font-size: 1.6rem;
    line-height: 2.8rem;
    padding: 60px 50px;
    margin: 0 auto;
  }
  .section-contact__LINE {
    display: flex;
    position: relative;
    top: 0%;
    left: 0%;
    width: 100%;
    height: auto;
    margin: 0 8% 30px;
    min-width: 200px;
  }
  .section-contact__LINE p {
    font-size: 1.8rem;
  }
  .section-contact__LINE img {
    width: 20%;
    height: auto;
    padding-top: 10px;
  }
  .section-contact__open {
    min-width: 220px;
    position: relative;
    top: 0%;
    left: 0%;
    transform: translate(0%, 0%);
    font-size: 1.6rem;
    line-height: 2.8rem;
    margin: 50px auto 0;
  }
  .section-contact__open a {
    color: #707070;
    text-decoration: none;
  }
}
@media(max-width:599px) {
  .section-contact {
    position: relative;
    margin: 0 auto;
    padding: 100px 0;
    background-image: url("../images/common/sp-contact-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .section-contact h4 {
    position: absolute;
    left: 24px;
    font-size: 1.6rem;
  }
  .section-contact h4::before {
    height: 130px;
    bottom: 0;
    left: 0;
  }
  .section-contact h2 {
    font-size: 2.4rem;
    position: relative;
    top: 0;
    left: 0;
    margin: 25px 0 0 70px;
  }
  .section-contact__bg {
    display: none;
  }
  .section-contact__text {
    width: auto;
    position: relative;
    top: 0%;
    left: 0%;
    transform: translate(0%, 0%);
    font-size: 1.6rem;
    line-height: 2.8rem;
    padding: 60px 24px 40px;
    margin: 0 auto;
    min-width: 250px;
  }
  .section-contact__LINE {
    display: block;
    position: relative;
    top: 0%;
    left: 0%;
    width: 100%;
    height: auto;
    margin: 0 auto 30px;
    min-width: 200px;
  }
  .section-contact__LINE p {
    font-size: 1.8rem;

    text-align: center;
  }
  .section-contact__LINE img {
        width: 15%;
    height: auto;
    margin: 0 auto;
    padding-top: 10px;
  }
  .section-contact__open {
    min-width: 220px;
    position: relative;
    top: 0%;
    left: 0%;
    transform: translate(0%, 0%);
    font-size: 1.6rem;
    line-height: 2.8rem;
    margin: 0 auto;
  }
}
/*footer*/
.footer {
  height: 420px;
  background-color: #6a8079;
  color: #FFF;
  position: relative;
}
.footer a {
  color: #FFF;
  text-decoration: none;
}
.site-map__icon {
  display: flex;
  justify-content: flex-end;
  padding: 60px 100px 0 0;
}
.site-map__icon li {
  width: 40px;
  padding-left: 60px;
}
.site-map__links {
  display: flex;
  text-align: left;
  justify-content: left;
  padding: 50px 0 0 100px;
}
.site-map__links li {
  padding-right: 60px;
}
.footer h3 {
  padding: 100px 100px 0 0;
  text-align: right;
}
.footer__copyright {
  padding: 10px 100px 0 0;
  text-align: right;
  font-size: 1.6rem;
}
/*TopPage*/
#page-top {
  bottom: 20px;
  padding: 10px;
  position: fixed;
  right: 20px;
}
#page-top img {
  width: 50px;
}
@media(max-width:1024px) {
  .footer {
    height: 260px;
    background-color: #6a8079;
    color: #FFF;
    position: relative;
  }
  .site-map__icon, .site-map__links {
    display: none;
  }
  .footer h3 {
    padding: 40px 0 80px;
    text-align: center;
  }
  .footer__copyright {
    padding: 0;
    text-align: center;
    font-size: 1.4rem;
  }
}
@media(max-width:599px) {
  .footer {
    height: 260px;
    background-color: #6a8079;
    color: #FFF;
    position: relative;
  }
  .site-map__icon, .site-map__links {
    display: none;
  }
  .footer h3 {
    padding: 40px 0 80px;
    text-align: center;
	  font-weight: normal;
  }
  .footer__copyright {
    padding: 0;
    text-align: center;
    font-size: 1.4rem;
  }
}
/*パソコンで見たときは"pc"のclassがついた画像が表示される*/
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
/*スマートフォンで見たときは"sp"のclassがついた画像が表示される*/
@media only screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}