@charset "UTF-8";
@keyframes SlideToTop {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

html {
  font-size: 62.5%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

body {
  font-size: 1.8rem;
  line-height: 2;
  color: #4e3a27;
}

a {
  cursor: pointer;
}

button {
  padding: 0;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  object-fit: cover;
}

h1, h2, h3, h4, h5 {
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

h1::before, h1::after, h2::before, h2::after, h3::before, h3::after, h4::before, h4::after, h5::before, h5::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}

h1::before, h2::before, h3::before, h4::before, h5::before {
  margin-top: calc((1 - 2) * 0.5em);
}

h1::after, h2::after, h3::after, h4::after, h5::after {
  margin-bottom: calc((1 - 2) * 0.5em);
}

/*================================
	ロード画面
=================================*/
.loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh,1vh)*100);
  transition: display 0.5s;
}

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

.loading.loaded {
  display: none;
}

.container {
  opacity: 0;
  transition: opacity 0.5s;
}

.container.loaded {
  opacity: 1;
}

/*================================
	全体共通
=================================*/
.inner {
  max-width: 1080px;
  margin: 0 auto;
}

.img-box {
  width: 100%;
  max-height: 400px;
  background-color: gray;
  overflow: hidden;
}

.letter-margin {
  margin-right: 1rem;
}

.br-tablet {
  display: none;
}

.color-green {
  color: #2e9648;
}

.color-red {
  color: #ea553a;
}

.flex-box {
  display: flex;
  align-items: center;
}

.sub-title {
  font-size: 3.6rem;
  font-weight: bold;
  color: #2e9648;
  margin-bottom: 50px;
}

/*:: header :::::::::::::::::::::::*/
.header {
  max-width: 1200px;
  margin: 0 auto;
}

.header-box {
  justify-content: space-between;
  align-items: center;
  padding: 30px;
}

.main-title img {
  max-width: 355px;
  vertical-align: middle;
}

/*================================
	nav
=================================*/
.nav-list {
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

.nav-list__item {
  margin-left: 30px;
}

.nav-list__link {
  border: none;
  display: block;
  box-sizing: border-box;
  width: 200px;
  padding: 0;
  background-color: #2e9648;
  color: #ffffff;
  min-width: 150px;
  font-size: 3rem;
  letter-spacing: 0.075em;
  text-align: center;
  transition: all 0.3s;
}

.nav-list__link:hover {
  filter: brightness(1.2);
}

.nav-list__link:active {
  transform: scale(0.8);
}

.hero {
  position: relative;
  background-image: url(../images/main.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  margin-bottom: 100px;
  height: 680px;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  background-image: linear-gradient(to bottom, white 0%, transparent 15%, transparent 85%, white 100%);
}

.hero .hero-title {
  width: 100%;
  font-size: clamp(1.6rem, calc(1.6rem + 28 * (100vw - 280px) / 1000), 4.8rem);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 0.075em;
  opacity: 0;
  transition: opacity 1s;
}

.hero .hero-title.fade {
  opacity: 1;
}

.hero .column {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 15px 40px;
}

.hero .column:not(:last-child) {
  margin-bottom: 50px;
}

/*:: 各section共通 :::::::::::::::::::::::*/
.section {
  text-align: center;
}

.section-title {
  box-sizing: border-box;
  padding: 30px;
  font-size: 3.6rem;
  letter-spacing: 0.05rem;
  color: #ffffff;
  background-color: #2e9648;
}

/*:: section introduction :::::::::::::::::::::::*/
/*================================
	contents
=================================*/
.contents {
  background-color: #f3ece7;
  padding: 50px 30px;
}

.contents .flex-box {
  opacity: 0;
  margin-bottom: 50px;
}

.contents .flex-box:nth-of-type(2n+1) {
  flex-direction: row-reverse;
}

.contents .flex-box.inview {
  animation: SlideToTop 1s forwards;
}

.contents .txt-box {
  box-sizing: border-box;
  flex-basis: 50%;
  text-align: left;
  padding: 0 50px;
}

.contents .img-box {
  flex-basis: 50%;
}

.contents .order-link {
  padding: 20px;
  background-color: #ffffff;
  margin-top: 20px;
  text-align: center;
}

.contents .order-link .txt {
  margin-bottom: 10px;
}

.contents .order-link .link-btn {
  border: none;
}

.contents .order-link .link {
  border: none;
  display: block;
  box-sizing: border-box;
  width: 100px;
  padding: 10px 20px;
  background-color: #ea553a;
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 0.075em;
  transition: all 0.3s;
}

.contents .order-link .link:hover {
  filter: brightness(1.2);
}

.contents .order-link .link:active {
  transform: scale(0.8);
}

/*================================
	gallery
=================================*/
.gallery {
  margin-bottom: 50px;
}

.gallery .sub-title {
  color: #4e3a27;
  text-decoration: none;
  margin: 50px 0;
}

.slick-img {
  display: inline-block;
  margin: 0 25px;
  border-radius: 50%;
}

.slick-dots {
  position: static;
}

.slick-dots li button:before {
  font-size: 50px;
}

.slick-arrow {
  display: none !important;
}

/*================================
	sns
=================================*/
.sns {
  background-color: #f3ece7;
  padding: 50px 30px 100px;
}

.sns .flex-box {
  align-items: center;
}

.sns .txt-box {
  flex-basis: 60%;
}

.sns .txt {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 50px;
}

.sns .link-btn {
  border: none;
}

.sns .link {
  border: none;
  display: block;
  box-sizing: border-box;
  width: 200px;
  padding: 20px 40px;
  background-color: #49a7ff;
  color: #ffffff;
  border-radius: 15px;
  font-size: 2.4rem;
  transition: all 0.3s;
}

.sns .link:hover {
  filter: brightness(1.2);
}

.sns .link:active {
  transform: scale(0.8);
}

.twitter-page {
  flex-basis: 40%;
  max-height: 500px;
  overflow: scroll;
}

/*:: section access :::::::::::::::::::::::*/
.access {
  margin-bottom: 70px;
}

.access .section-title {
  margin-bottom: 50px;
}

.access .table {
  table-layout: fixed;
  border-spacing: 0;
  display: inline-block;
  text-align: left;
}

.access .table-box:nth-child(2n+1) {
  background-color: #f3ece7;
}

.access .table-title {
  white-space: nowrap;
  font-size: 2.4rem;
  padding: 10px 40px 10px 20px;
}

.access .table-txt {
  font-size: 2.4rem;
  text-align: left;
  padding: 10px 20px 10px 0;
}

.map-box {
  margin: 0 auto 50px;
}

.map {
  width: 100%;
}

/*:: トップページに戻る :::::::::::::::::::::::*/
.page-top {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.page-top:hover {
  transform: scale(1.2);
}

.page-top::before {
  content: "\02227";
  position: absolute;
  top: -70%;
  left: 50%;
  transform: translateX(-50%);
}

/*:: footer :::::::::::::::::::::::*/
.footer {
  position: relative;
  height: 100px;
  background-color: #2e9648;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

.footer .txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
~768px タブレットサイズ
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
@media screen and (max-width: 768px) {
  .container {
    overflow: hidden;
  }
  .inner {
    margin: 0 15px;
  }
  .br-tablet {
    display: block;
  }
  /*:: header :::::::::::::::::::::::*/
  .header-box {
    position: relative;
    height: 100px;
    box-sizing: border-box;
    padding: 0 20px;
  }
  /*================================
	nav
    =================================*/
  .nav-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background-color: #2e9648;
    margin: 20px 15px 0 0;
    z-index: 100;
  }
  .nav-btn__bar {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 10px;
    width: 40px;
    height: 5px;
    background-color: #ffffff;
    border-radius: 5px;
    transition: all 0.5s;
  }
  .nav-btn__bar:nth-child(1) {
    top: 15px;
  }
  .nav-btn__bar:nth-child(2) {
    top: 30px;
  }
  .nav-btn__bar:nth-child(3) {
    top: 45px;
  }
  .nav-btn.active .nav-btn__bar:nth-of-type(1) {
    transform: translateY(15px) rotate(-315deg);
  }
  .nav-btn.active .nav-btn__bar:nth-of-type(2) {
    opacity: 0;
  }
  .nav-btn.active .nav-btn__bar:nth-of-type(3) {
    transform: translateY(-15px) rotate(315deg);
  }
  .nav-list {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateY(-120%);
    z-index: 1;
    transition: all 0.5s;
  }
  .nav-list__content {
    flex-direction: column;
    background-color: #2e9648;
    padding-top: 40px;
  }
  .nav-list__item {
    box-sizing: border-box;
    width: 100vw;
    height: auto;
    margin-left: 0;
  }
  .nav-list__item:not(:last-child) {
    margin-bottom: 0;
    border-bottom: 1px solid white;
  }
  .nav-list__link {
    width: 100%;
    padding: 20px;
  }
  .nav-list.click {
    transform: translate(-50%, 0);
  }
  /*:: section introduction :::::::::::::::::::::::*/
  /*================================
    	contents
    =================================*/
  .contents {
    padding: 50px 0;
  }
  .contents .flex-box {
    max-width: 600px;
    margin: 0 auto 50px;
    flex-direction: column-reverse;
  }
  .contents .flex-box:nth-of-type(2n+1) {
    flex-direction: column-reverse;
  }
  .contents .flex-box:last-child {
    margin-bottom: 0;
  }
  .contents .txt-box {
    margin-bottom: 50px;
    padding: 0;
  }
  .contents .sub-title {
    text-align: center;
    margin-bottom: 30px;
  }
  .contents .img-box {
    margin-bottom: 30px;
  }
  /*================================
    	sns
    =================================*/
  .sns {
    padding: 50px 0;
  }
  .sns .flex-box {
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
  }
  .sns .txt-box {
    margin-bottom: 30px;
  }
  .sns .txt {
    margin: 0 20px 30px 20px;
    text-align: left;
  }
  .sns .link {
    font-size: 1.8rem;
    padding: 10px 10px;
  }
  .twitter-page {
    margin-bottom: 30px;
  }
  /*:: section access :::::::::::::::::::::::*/
  .access .table-title {
    padding-right: 20px;
  }
  .access .table-title {
    font-size: 1.8rem;
  }
  .access .table-txt {
    font-size: 1.8rem;
  }
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
~540px スマホ
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
@media screen and (max-width: 540px) {
  .hero {
    height: 400px;
  }
  .hero .hero-title {
    letter-spacing: 0;
  }
  .hero .column {
    padding: 10px 20px;
  }
  .main-title img {
    width: 200px;
  }
  /*:: 各section共通 :::::::::::::::::::::::*/
  .section-title {
    font-size: 2.4rem;
  }
  .sub-title {
    font-size: 2.4rem;
  }
  /*================================
    	gallery
    =================================*/
  .slick-prev {
    left: 0;
    width: 0;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 20px solid #4e3a27;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
  }
  .slick-prev::before {
    display: none;
  }
  .slick-next {
    right: 0;
    width: 0;
    height: 0;
    border-right: 0 solid transparent;
    border-left: 20px solid #4e3a27;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
  }
  .slick-next::before {
    display: none;
  }
  .slick-arrow {
    display: block !important;
    z-index: 1000;
  }
  /*================================
    	sns
    =================================*/
  .sns .txt {
    font-size: 1.8rem;
  }
  .sns .link-btn {
    font-size: 1.8rem;
  }
  /*:: section access :::::::::::::::::::::::*/
  .access .table-title {
    font-size: 1.4rem;
  }
  .access .table-txt {
    font-size: 1.4rem;
  }
}
