@charset "UTF-8";

@font-face {
  font-family: 'zenkaku';
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/zenkaku.woff") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: 'GowunDodum';
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/GowunDodum.woff") format("opentype");
  font-display: swap;
}


/*================================================
 *  一般・共通設定
 ================================================*/
:root {
  --color-black: #111;
  --color-brown: #352107;
  --color-green: #8eb2a1;
  --color-red: #ac0d0d;
  --color-white: #fff;
  --color-light: #fcfaf8;
  --color-beige: #a2958b;
  --color-lightgray: #e7e1dd;
  --font-logo: 'GowunDodum';
  --easing: cubic-bezier(.2, 1, .2, 1);
  --transition: .8s var(--easing);
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}

body {
  font-size: 1.5rem;
  font-family: 'zenkaku',
    游ゴシック体,
    "Yu Gothic",
    YuGothic,
    "ヒラギノ角ゴシック Pro",
    "Hiragino Kaku Gothic Pro",
    メイリオ,
    Meiryo,
    Osaka,
    "ＭＳ Ｐゴシック",
    "MS PGothic",
    sans-serif;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: .07em;
  color: var(--color-brown);
  background: var(--color-light);
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

.wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.widewrap {
  max-width: 1150px;
  margin: 0 auto;
}

a {
  color: var(--color-brown);
  text-decoration: none;
}

a:hover {
  opacity: .7;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a.underline {
  text-decoration: underline;
}

p {
  margin: 0 0 0.5em 0;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
  margin: 0;
}

ol li {
  list-style: decimal;
}

/* タイトル */
.headline {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
}


@media screen and (max-width:768px) {
  html {
    font-size: 60%;
  }

  *,
  *:before,
  *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
  }

  .wrap,
  .widewrap {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  h2 {
    font-size: 2rem;
  }
}


/*================================================
 *  コンテンツ
 ================================================*/
header {
  display: flex;
  justify-content: space-between;
  padding: 20px 2%;
  position: fixed;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 99;
  align-items: center;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

header h1 img {
  width: 330px;
}

.nav-button {
  display: none;
}

.nav li {
  display: inline-block;
  margin: 0px 8px 0;
  font-size: 1.4rem;
  position: relative;
}

.nav li a:hover::after {
  position: absolute;
  content: "★";
  top: 2px;
  left: -13px;
  font-size: 1rem;
}

/* sp非表示 */
.nav li.sp {
  display: none;
}

.nav-wrap.open {
  display: block;
}

.nav-wrap.close {
  display: none;
}

/* changeNav */
header.changeNav {
  background: url(../images/bg-pattern.jpg) no-repeat center/cover;
  padding: 10px 2%;
  transition: .5s;
}

header.changeNav::after {
  position: absolute;
  content: "";
  background: rgb(79 144 111 / 50%);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

header.changeNav .nav li {
  margin: 10px;
  font-size: 1.4rem;
}

header.changeNav h1 a,
header.changeNav .nav li a {
  color: var(--color-light);
}

header.changeNav h1 img {
  width: 250px;
  vertical-align: middle;
}

/* ロゴチェンジ */
header h1 img.change {
  display: none;
}

header.changeNav h1 img.change {
  display: block;
}

header.changeNav h1 img.defaults {
  display: none;
}

@media screen and (min-width: 950px) {
  .nav-wrap {
    display: block !important;
  }
}

@media screen and (max-width: 950px) {
  header {
    padding: 27px 15px;
    font-family: 'zenkaku',
        游ゴシック体,
        "Yu Gothic",
        YuGothic,
        "ヒラギノ角ゴシック Pro",
        "Hiragino Kaku Gothic Pro",
        メイリオ,
        Meiryo,
        Osaka,
        "ＭＳ Ｐゴシック",
        "MS PGothic",
        sans-serif;
  }

  header h1 img {
    width: 230px;
  }

  header.changeNav {
    padding: 10px 15px;
  }

  header.changeNav h1 img {
    width: 180px;
  }

  header.changeNav .nav {
    border-bottom: none;
  }

  .nav-button {
    display: block;
    cursor: pointer;
  }

  .nav-wrap {
    background: url(../images/bg-pattern.jpg) no-repeat center / cover;
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    z-index: 10;
    width: 100%;
    height: 100%;
  }

  .nav-wrap::after {
    position: absolute;
    content: "";
    background: rgb(79 144 111 / 50%);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  .nav,
  header.changeNav .nav {
    position: relative;
    overflow-y: auto;
    padding: 60px 30px 50px;
    background: none;
  }

  .nav li {
    display: block;
    margin: 20px 10px 5px;
    text-align: center;
    font-size: 1.5rem;
  }

  header.changeNav .nav li {
    margin: 20px 10px 5px;
  }

  header .nav li a,
  header.changeNav .nav li a {
    color: var(--color-light);
  }

  /* sp表示 */
  .nav li.sp {
    display: block;
  }

  .nav li i {
    display: inline-block;
  }

  /* nav_contact */
  .nav li.nav_contact a {
    width: 90%;
    display: block;
    padding: 15px 0;
    margin: 30px auto 20px;

  }

  .nav li.nav_sns a {
    border: 1px solid;
    width: 90%;
    display: block;
    padding: 15px 0;
    margin: 0px auto;
  }

  .nav_chai {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 150px;
  }

  /*メニューボタンのエフェクト*/
  .nav-button,
  .nav-button span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }

  .nav-button {
    z-index: 20;
    position: relative;
    width: 40px;
    height: 30px;
  }

  .nav-button span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-black);
  }

  header.changeNav .nav-button span {
    background-color: var(--color-white);
  }

  .nav-button span:nth-of-type(1) {
    top: 10px;
  }

  .nav-button span:nth-of-type(2) {
    top: 20px;
  }

  .nav-button:hover {
    opacity: 1;
  }

  .nav-button.active span:nth-of-type(1) {
    -webkit-transform: translateY(6px) rotate(-45deg);
    transform: translateY(6px) rotate(-45deg);
    background: var(--color-light);
  }

  .nav-button.active span:nth-of-type(2) {
    top: 32px;
    -webkit-transform: translateY(-16px) rotate(45deg);
    transform: translateY(-16px) rotate(45deg);
    background: var(--color-light);
  }
}


/* ==================================================
  splash
====================================================*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: var(--color-light);
  display: flex;
}

#splash_logo {
  margin: auto;
  width: 140px;
}

@media screen and (max-width:768px) {
  #splash_logo {
    width: 120px;
  }
}

/* =======================================================
* section・共通
* ======================================================= */
section {
  padding-bottom: 10rem;
  position: relative;
}

.section {
  padding-top: 10rem;
}

/* ボタン */
.linkBtn {
  margin-top: 40px;
}

.linkBtn a {
  display: grid;
  gap: 0px 10px;
  grid-template-columns: 1.5fr 1fr 2fr;
  align-items: center;
  max-width: 370px;
  margin: 0 auto;
  background: var(--color-green);
  border-radius: 30px;
  padding: 5px;
  color: var(--color-light);
}

.linkBtn a span:first-child {
  font-size: 1.5rem;
  font-family: var(--font-logo);
}

.linkBtn a span:nth-child(2) {
  width: 100%;
  height: 1px;
  background: var(--color-light);
  position: relative;
}

.linkBtn a span:last-child {
  font-size: 1.3rem;
}

.linkBtn a:hover i {
  transform: translateX(5px);
  transition: .6s;
}

/* simpleバージョン */
.linkBtn.simple a {
  display: block;
  max-width: 160px;
  font-size: 1.3rem;
  margin: 0 0 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid var(--color-brown);
  color: var(--color-brown);
}

@media screen and (max-width:768px) {
  section {
    padding-bottom: 7rem;
  }

  .section {
    padding-top: 7rem;
  }

  .linkBtn a {
    padding: 8px 20px;
    width: 90%;
  }
}


/* =======================================================
* main
* ======================================================= */
#main {
  height: 90vh;
  position: relative;
  padding-top: 100px;
}

.swiper-wrap {
  overflow: hidden;
  height: 90vh;
  margin: 0px auto;
}

.main_catch {
  position: absolute;
  bottom: 20px;
  left: 50px;
  z-index: 9;
}

.main_catch .ja {
  font-size: 2.8rem;
  letter-spacing: .1em;
}

#main .swiper-pagination-bullet {
  background: none;
  border: 1px solid #fff;
  opacity: 1;
}

#main .swiper-pagination-bullet-active {
  background: #fff;
}

@keyframes zoom-in {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.07);
  }
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  animation: zoom-in 10s linear 0s 1 normal both;
  height: 90vh;
}

.slide-img.slide01 {
  background: url(../images/main01.jpg) no-repeat center /cover;
}

.slide-img.slide02 {
  background: url(../images/main02.jpg) no-repeat center bottom/cover;
}

.slide-img.slide03 {
  background: url(../images/main03.jpg) no-repeat center bottom/cover;
}


@media screen and (max-width:768px) {
  #main {
    padding-top: 90px;
  }

  .main_catch {
    bottom: 10px;
    left: 20px;
    font-size: 1.2rem;
  }

  .main_catch .ja {
    font-size: 2.3rem;
  }

  .swiper-wrap,
  .swiper-slide-active .slide-img,
  .swiper-slide-duplicate-active .slide-img,
  .swiper-slide-prev .slide-img {
    height: 50vh;
  }

  #main .swiper-pagination-bullet {
    display: none;
  }
}


/* =======================================================
* intro
* ======================================================= */
.intro_top__left {
  width: 40%;
}

.intro_top__right {
  width: 50%;
  margin: 120px 10px 100px;
}

.intro_txt {
  line-height: 2.3;
}

.intro_top__right .intro_foot {
  position: absolute;
  top: -260px;
  right: 120px;
  width: 170px;
  opacity: 0.2;
  transform: rotate(-145deg);
}

.intro_bottom__right {
  width: 75%;
  margin: 0 0 70px auto;
  background: url(../images/main02.jpg) no-repeat center/cover;
  height: 400px;
  background-attachment: fixed;
}

.intro_bottom__left {
  position: absolute;
  top: -70px;
  left: -250px;
  width: 300px;
}

@media screen and (max-width:768px) {
  .intro_top__right .intro_foot {
    top: 20px;
    right: auto;
    left: 60px;
    width: 25%;
    transform: rotate(125deg);
    opacity: 0.4;
  }

  .intro_top__left {
    width: 70%;
    margin: 0 0 0 auto;
  }

  .intro_top__right {
    width: 100%;
    margin: 50px 20px 20px;
  }

  .intro_txt {
    line-height: 2;
  }

  .intro_bottom__right {
    width: 85%;
    margin: 0 0 80px 0px;
    background-attachment: unset;
    height: 270px;
  }

  .intro_bottom__left {
    top: auto;
    left: auto;
    width: 170px;
    bottom: -50px;
    right: -40px;
  }
}

/*================================================
 *  sevice
 ================================================*/
#sevice {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1fr;
  padding-top: 5rem;
}

.sevice_ph {
  background: url(../images/bg-service.jpg) no-repeat center bottom 30%/cover;
  height: 100vh;
  position: sticky;
  top: 0;
}

.service_detail {
  margin-top: 100px;
  padding: 50px;
  position: relative;
}

.service_detail .detailCard {
  margin-bottom: 50px;
}

.service_detail .detailCard iframe {
  width: 100%;
  height: 300px;
  margin-top: 30px;
}

.sevice_foot {
  position: absolute;
  top: -260px;
  right: 160px;
  opacity: 0.3;
  transform: rotate(125deg);
  width: 120px;
}

@media screen and (max-width:768px) {
  #sevice {
    grid-template-columns: 1fr;
    padding-top: 0rem;
  }

  .service_detail {
    margin-top: 0;
    padding: 0 20px;
  }

  .service_detail .detailCard {
    background: rgb(252 250 248 / 80%);
    padding: 30px 20px;
    border-radius: 5px;
  }

  .sevice_foot {
    top: auto;
    right: auto;
    left: 60px;
    opacity: 0.6;
    transform: rotate(-56deg);
    width: 80px;
    bottom: -130px;
  }
}


/*================================================
 *  gallery
 ================================================*/
#gallery {
  padding-top: 5rem;
}

#gallery .gallery_txt {
  padding: 0 50px;
}

#gallery .swiper-wrapper {
  transition-timing-function: linear !important
}

#gallery .swiper-wrapper img {
  border-radius: 5px;
}

@media screen and (max-width:768px) {
  #gallery {
    padding-top: 3rem;
  }

  #gallery .gallery_txt {
    padding: 0 20px;
    margin-bottom: 30px;
  }
}

/*================================================
 *  news
 ================================================*/
#news iframe {
  width: 100%;
  height: 200px;
  overflow: scroll;
}


/*================================================
 *  contact
 ================================================*/
#contact {
  background: url(../images/bg-contact.jpg) no-repeat center / cover;
  height: 60vh;
  margin: 0 2%;
  position: relative;
  z-index: 1;
  display: flex;
  padding-bottom: 0;
  color: var(--color-white);
}

#contact a {
  color: var(--color-white);
}

#contact::after {
  position: absolute;
  content: "";
  background: rgba(1, 1, 1, 0.6);
  width: 100%;
  top: 0;
  z-index: -1;
  height: 100%;
  left: 0;
}

#contact .wrap {
  margin: auto;
}

#contact h2 small {
  display: block;
  font-size: 1.4rem;
}

#contact .contact_mail {
  margin: 40px 0;
}

#contact .contact_mail a {
  border: 1px solid;
  padding: 20px 120px;
  font-family: var(--font-logo);
  font-size: 3rem;
  letter-spacing: .1em;
  background: #fff;
  color: var(--color-brown);
}

@media screen and (max-width:768px) {
  #contact .contact_mail a {
    padding: 20px 10px;
    font-size: 2.5rem;
    display: block;
    text-align: center;
  }
}


/*================================================
 *  sub_main
 ================================================*/
#sub_main {
  padding-top: 100px;
}

.sub_ttl {
  width: 30%;
  font-size: 2.3rem;
  text-align: center;
}

.sub_ttl span {
  display: block;
  font-size: 1.3rem;
}

.sub_img {
  width: 70%;
}

@media screen and (max-width:768px) {
  .sub_ttl {
    width: 100%;
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .sub_img {
    width: 100%;
  }
}

/*================================================
 *  footer
 ================================================*/
footer {
  background: url(../images/bg-pattern.jpg) no-repeat center / cover;
  padding: 5em 0;
  color: var(--color-light);
  margin-top: 5rem;
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
}

footer::after {
  position: absolute;
  content: "";
  background: rgb(53 33 6 / 40%);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

footer .widewrap {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr 1fr;
}

footer a {
  color: var(--color-light);
}

footer h5 {
  border-bottom: 1px dotted;
  padding: 0 0 0px 5px;
  margin-bottom: 15px;
  font-size: 1.3rem;
  letter-spacing: .15em;
}

/* footer_logo */
.footer_logo .footer_logo__img {
  width: 90%;
  margin-bottom: 30px;
}

.footer_logo .footer_logo__reserve a {
  border: 1px solid;
  display: block;
  padding: 15px 0;
  text-align: center;
  width: 90%;
}

.footer_logo .footer_logo__reserve a:hover {
  background: var(--color-light);
  color: var(--color-brown);
}

/* footer_menu */
.footer_menu li {
  margin-bottom: 10px;
}

.copyright {
  text-align: center;
  font-size: 1.1rem;
  margin-top: 50px;
  letter-spacing: .15em;
}

@media screen and (max-width:768px) {
  footer {
    padding: 3em 0;
  }

  footer .widewrap {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .footer_logo .footer_logo__img {
    width: 65%;
    margin: 0 auto 25px;
  }

  .footer_logo .footer_logo__reserve a {
    padding: 10px 0;
    width: 70%;
    margin: 0 auto;
  }

  .footer_address p {
    padding-left: 10px;
    font-size: 1.3rem;
  }

  .footer_menu li {
    padding-left: 10px;
  }
}


/*================================================
 *  pagetop
 ================================================*/
#pagetop {
  position: fixed;
  right: 15px;
  bottom: 10px;
  cursor: pointer;
  overflow: visible !important;
  z-index: 98;
}

#pagetop .arrow-up {
  width: 15px;
  height: 15px;
  border: 1px solid;
  border-color: var(--color-red) var(--color-red) transparent transparent;
  transform: rotate(-45deg);
}