@charset "UTF-8";

/* ----------------------------------------
* all
---------------------------------------- */
html {
}
body {
  color: #111;
  text-align: center;
  font-size: 1.4em;
  line-height: 1.75;
  letter-spacing: 0.03em;
  width: 100%;
  min-width: 1000px;
  letter-spacing: 0.05em;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #111;
  text-decoration: none;
  opacity: 1;
  transition-duration: 0.5s;
}
a:hover {
  text-decoration: underline;
  opacity: 0.75;
}
a img {
  /* opacity: 1;
  transition-duration: 0.5s; */
}
a img:hover {
  /* opacity: 0.75; */
}

.kiwi-maru-regular {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
}

.shippori-mincho-regular {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 400;
  font-style: normal;
}

.zen-old-mincho-regular {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

/* all display サイトチューニング
-------------------------------------------------- */
.tel a {
  pointer-events: none;
}
.img_cover {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

/* ----------------------------------------
* header
---------------------------------------- */
#header {
  background: rgba(255,255,255,0.2);
  box-shadow: 0px 0px 17px 1px rgba(0, 0, 0, 0.15);
  width: 100%;
  min-width: 1000px;
  width: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}
#header nav ul {
  display: flex;
}
#header nav li {
  margin-right: 2em;
}
#header nav li a {
  color: #111;
  -moz-text-shadow: 0px 2px 5px rgba(255, 255, 255, 0.8);
  -webkit-text-shadow: 0px 2px 5px rgba(255, 255, 255, 0.8);
  -ms-text-shadow: 0px 2px 5px rgba(255, 255, 255, 0.8);
  text-shadow: 0px 2px 5px rgba(255, 255, 255, 0.8);
}
#header .sns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#header .sns .icon {
  width: 30px;
  margin-left: 1em;
}


/* ----------------------------------------
* footer
---------------------------------------- */

#footer {
  background: #fff;
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
#footer .wrap {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
#footer ul {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2em;
}
#footer li {
  padding: 0 1em;
  border-right: solid 1px #111;
}
#footer li:last-child {
  border-right: none;
}
#footer .copyright {
  width: 100%;
  font-size: 0.85em;
}
#footer .pagetop {
  position: absolute;
  bottom: 62px;
  width: 100%;
}
#footer .pagetop a {
  position: relative;
}
#footer .pagetop a span {
  font-size: 1.2rem;
}
#footer .pagetop a span:after {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -7px;
  transform: translateY(0) rotate(135deg);
  border-left: 1px solid #111;
  border-bottom: 1px solid #111;
  z-index: 2;
}

/* ----------------------------------------
* floating-news
---------------------------------------- */

#news_area {
  background: rgba(255,255,255,0.2);
  box-shadow: 0px 0px 17px 1px rgba(0, 0, 0, 0.1);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  padding: 0.5em 40px;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
}
#news_area h2 {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: normal;
  margin: 0 1em 0 0;
}
#news_area ul {
  display: inline-block;
  width: auto;
}
#news_area li {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  width: auto;
}
#news_area .date {
  font-size: 0.8em;
  margin-right: 1em;
}

/* ----------------------------------------
* scroll_area
---------------------------------------- */
.scroll_area.last {
  display:none;
}
.scroll {
  position: absolute;
  bottom: 62px;
  width: 3em;
  height: 3em;
  z-index: 5;
}
.scroll span {
  width: 1em;
  height: 1em;
  position: absolute;
  top: 25%;
  left: 14px;
  transform: translateY(0) rotate(-45deg);
  border-left: 1px solid #111;
  border-bottom: 1px solid #111;
  z-index: 4;
  animation: popping-arrow 2s infinite ease-out;
}
.scroll:hover span {
  transform: translateY(.5em) rotate(-45deg) ;
  border-left: 1px solid #999;
  border-bottom: 1px solid #999;
  /* animation: paused; */
}

@keyframes popping-arrow {
  0% {
    transform: translateY(0) rotate(-45deg);
  }
  50% {
    transform: translateY(.5em) rotate(-45deg);
  }
  100% {
    transform: translateY(0) rotate(-45deg);
  }

}

/* ----------------------------------------
* content
---------------------------------------- */
#contents {
  width: 100%;
  min-width: 1000px;
}
#contents section {
  background: #fff;
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

section .wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 0 auto;
  *zoom: 1;
  position: absolute;
  z-index: 2;
  text-align: left;
}
.jarallax {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.jarallax:after {
  content: '';
  background: rgba(255,255,255,0.5);
  width: 100%;
  height: 100%;
  position:absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
section .row {
  height: auto;
  align-items: center;
}
section .img {
  max-width: 594px;
  width: 55%;
  height: auto;
}
section .text {
  width: 40%;
  max-width: 416px;
  text-align: left;
  padding: 0 0 20px;
  /* text-shadow: 2px 3px 2px rgba(255, 255, 255, 0.4); */
  -moz-text-shadow: 0px 2px 5px rgba(255, 255, 255, 0.8);
  -webkit-text-shadow: 0px 2px 5px rgba(255, 255, 255, 0.8);
  -ms-text-shadow: 0px 2px 5px rgba(255, 255, 255, 0.8);
  text-shadow: 0px 2px 5px rgba(255, 255, 255, 0.8);
}
section h2.sec_ttl {
  font-size: 36px;
  margin-bottom: 25px;
}
section h3 {
  margin-bottom: 0.5em;
}
section p {
  text-align: left;
  line-height: 2;
}
section .btn a {
  display: inline-block;
  width: 100%;
  border: solid 1px #111;
  padding: 0.5em 1em;
  display: flex;
  align-items: center;
  position: relative;
}
section .btn a:hover {
  background: rgba(255,255,255,0.8);
  text-decoration: none;
}
section .btn a:after {
  content: '';
  width: 14px;
  height: 14px;
  background: url(../img/arrow.png)no-repeat center;
  background-size: 100%;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  transition-duration: 0.5s;
}
section .btn a:hover::after {
  right: 6px;
}

#mv {
  background: url(../img/hachiya_0001.jpg) no-repeat center;
  background-size:cover;
  -webkit-backdrop-filter: blur(1rem);
    backdrop-filter: blur(1rem);
}
#mv h1.title {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
}
#mv h1.title span {
  font-size: 48px;
  font-weight: normal;
  color: #111;
  /* writing-mode: vertical-rl; */
  letter-spacing: 10px;
  -moz-text-shadow: 2px 4px 10px rgba(255, 255, 255, 0.8);
  -webkit-text-shadow: 2px 4px 10px rgba(255, 255, 255, 0.8);
  -ms-text-shadow: 2px 4px 10px rgba(255, 255, 255, 0.8);
  text-shadow: 2px 4px 10px rgba(255, 255, 255, 0.8);
}
#mv h1.title img {
  filter: drop-shadow(2px 2px 2px rgba(255, 255, 255, 0.8));
  filter: drop-shadow(4px 4px 4px #fff);
}

#block_01 {

}
#block_01 .img img {
  aspect-ratio: 16 / 9;
}
#block_01 .text .btn {
  margin-top: 3em;
}

#block_02 {
}
#block_02 .flexslider {
  width: 594px;
  height: 334px;
}
/* #block_02 .img {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#block_02 .img .box {
  width: calc(50% - 10px);
  max-height: 162px;
  border: solid 0px #fff;
  margin-bottom: 20px;
}
#block_02 .img .box img {
  aspect-ratio: 16 / 9;
} */
#block_02 .text {
  padding-bottom: 40px;
}
#block_02 .btn {
  margin-top: 3em;
}

#block_access {

}
#block_access .text {
}

#block_access .img {

}
#block_access .img {
  border: solid 1px #fff;
}

#block_access .img iframe {
  width: 100%;
  height: 350px;
}
#block_04 {
}
#block_04 .text .btns {
  margin-top: 3em;
}
#block_04 .text .btns .btn {
  margin-top: 1em;
}
#block_05 {
  background: #fff;
}

#about_01 {

}
#about_01 .row {
  align-items: flex-start;
  flex-direction: row-reverse;
}
#about_01 .text {

}
#about_01 .text h3 {
  font-size: 2em;
  margin-bottom: 1em;
}
#about_01 .text h3 span {

}
#about_01 .text p {
  margin-bottom: 1em ;
}
#about_01 .text .sns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 2em;
}
#about_01 .text .sns .icon {
  width: 30px;
  margin-left: 1em;
}
#about_01 .img img {
  aspect-ratio: 4 / 3;
}
#block_archive {
  padding: 132px 0;
  height: auto!important;
}
#block_archive .wrap {
  position: static;
}
#block_archive ul {
  display: flex;
  flex-wrap: wrap;
}
#block_archive li {
  width: calc(100% / 3);
  position: relative;
  border: solid 5px #fff;
}
#block_archive li .date {
  width: 100%;
  padding: 0.3em 0.5em;
  text-align: left;
  position: absolute;
  left: 0;
  top: 0;
  -moz-text-shadow: 2px 4px 5px rgba(255, 255, 255, 0.8);
  -webkit-text-shadow: 2px 4px 5px rgba(255, 255, 255, 0.8);
  -ms-text-shadow: 2px 4px 5px rgba(255, 255, 255, 0.8);
  text-shadow: 2px 4px 5px rgba(255, 255, 255, 0.8);
}
#block_archive li .ttl {
  background: rgba(255,255,255,0.5);
  width: 100%;
  padding: 0.3em 0.5em;
  text-align: left;
  position: absolute;
  left: 0;
  bottom: 0;
}
