@charset "utf-8";

/*-----初期設定-----*/

html {
  min-width: 320px;
  background-color: #fff; /*ページ全体の背景色*/
  font-size: 100%; /* 16px */
}
body {
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: center;
  font-family: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN",
    "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", sans-serif; /*フォントの設定*/
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6;
  color: #000000;
  letter-spacing: 0.05em;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  text-decoration: none;
}
li {
  list-style: none;
}
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}

/*-----ページの枠組み-----*/
.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#wrapper {
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  background: #fff;
}

section#top {
  margin: 0;
  padding: 0;
}
.other {
  margin: 0;
  padding: 0 80px;
  background-image: url("../items/images/washi.jpg");
}
.other .other_block {
  padding: 100px 80px 100px;
  background-color: #fff;
  margin: 0;
}

/*--------------------------------------------------ローダー-----*/

.start {
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9000;
}
.start p {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
  width: 280px;
}
.intersecting-circles-spinner {
  box-sizing: border-box;
}

.intersecting-circles-spinner {
  height: 100vh;
  width: 100%;
  position: fixed;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #000;
}

.intersecting-circles-spinner .spinnerBlock {
  animation: intersecting-circles-spinners-animation 1200ms linear infinite;
  transform-origin: center;
  display: block;
  height: 35px;
  width: 35px;
  display: block;
  align-items: center;
  justify-content: center;
  position: relative;
}

.intersecting-circles-spinner .circle {
  display: block;
  border: 2px solid #a6936a;
  border-radius: 50%;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.intersecting-circles-spinner .circle:nth-child(1) {
  left: 0;
  top: 0;
}

.intersecting-circles-spinner .circle:nth-child(2) {
  left: calc(35px * -0.36);
  top: calc(35px * 0.2);
}

.intersecting-circles-spinner .circle:nth-child(3) {
  left: calc(35px * -0.36);
  top: calc(35px * -0.2);
}

.intersecting-circles-spinner .circle:nth-child(4) {
  left: 0;
  top: calc(35px * -0.36);
}

.intersecting-circles-spinner .circle:nth-child(5) {
  left: calc(35px * 0.36);
  top: calc(35px * -0.2);
}

.intersecting-circles-spinner .circle:nth-child(6) {
  left: calc(35px * 0.36);
  top: calc(35px * 0.2);
}

.intersecting-circles-spinner .circle:nth-child(7) {
  left: 0;
  top: calc(35px * 0.36);
}

.loaded {
  opacity: 0;
}

@keyframes intersecting-circles-spinners-animation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------ヘッダー-----*/

header {
  max-width: 100%;
  height: 90px;
  background-color: #000;
  display: flex;
  align-items: center;
}

header h1 a {
  display: block;
  padding-left: 20px;
}
header h1 a img {
  height: 50px;
}
/*バーガーメニュー*/

.burger {
  width: 40px;
  height: 40px;
  background-color: #fff;
  background-image: url("../items/images/menu.svg");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 20px 0 auto;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.burger:hover {
  background-color: #ddd;
}
.burger.is-active {
  background-image: url("../items/images/close.svg");
  background-repeat: no-repeat;
}
.burger_menu {
  color: #000;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  display: none;
}
.burger_menu.is-active {
  display: flex;
}
.burger_menu .menu_list {
  font-size: 25px;
  line-height: 3em;
  letter-spacing: 0.2em;
  list-style: none;
}

.burger_menu .menu_list li a {
  color: #ddd;
  text-decoration: none;
  position: relative;
  display: inline-block;
  line-height: 1;
}
.burger_menu .menu_list li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #ddd;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}

.burger_menu .menu_list li a:hover::after {
  transform: scale(1, 1);
}

/*--------------------------------------------------メインビジュアル（slider）--------*/

#key_visual #slider img {
  width: 100%;
  height: auto;
  margin-top: 20px;
}

#slider {
  visibility: hidden;
}
#slider.slick-initialized {
  visibility: visible;
}
.slick-prev,
.slick-next {
  z-index: 1;
}
.slick-prev {
  left: 10px;
}
.slick-next {
  right: 10px;
}

/*--------------------------------------------------サブコンテンツ1--------*/

.latest {
  padding: 68px 0;
  margin: 0;
  background: #f2f2f2;
}
.latest .latestblock {
  max-width: 1000px;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 15px 0px 100px;
  position: relative;
}
.latest h3 {
  font-size: 35px;
  margin: 0;
  padding: 10px 0 50px 0;
  line-height: 0;
  text-align: center;
}

.latest .latestblock dl {
  margin: 0 0 14px;
  padding: 0 0 14px 100px;
  text-align: left;
  min-height: 26px;
  font-size: 13px;
  line-height: 2em;
  border-bottom: #ccc solid 1px;
}

.latest .latestblock dl dt {
  float: left;
  width: 74px;
  height: 22px;
  color: #fff;
  font-size: 10px;
  background: #a6936a;
  text-align: center;
  border-bottom: #ccc solid 1px;
}

.latest .latestblock dl span {
  display: block;
  float: left;
  padding: 0 50px;
  color: #bebebe;
}
.latest .latestblock dl dd {
  padding-left: 100px;
  display: block;
}

/*--------------------------------------------------メインコンテンツ（Gnavi）-----*/

.contentsMenu {
  margin: 80px auto 0;
  padding: 0;
}
.contentsMenu ul {
  margin: 0;
  padding: 0;
  line-height: 0;
  background: #fff;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
}

.contentsMenu ul li {
  float: left;
  text-align: center;
  width: 33.33333333%;
  margin: 0;
  padding: 0;
  position: relative;
  height: 300px;
  list-style: none;
  overflow: hidden;
  background: #fff;
}

.contentsMenu ul li h3 {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  /*bottom: 30px;*/
  text-align: center;
  padding: 0;
  margin: 0;
  transform: translate(0, 125px);
  /*opacity: 0;*/
}
.contentsMenu ul li .acv h3 {
  opacity: 1;
  transform: translate(0, 0);
}
.contentsMenu ul li h3 img {
  border: 0;
  height: 25px;
}
.contentsMenu ul li h3 span {
  display: block;
  line-height: 1;
  color: #d8d8d8;
  font-weight: 400;
  text-align: center;
}
.contentsMenu ul li a img {
  height: 300px;
  text-align: center;
  border-radius: 1px;
  transition-duration: 0.5s;
}
.contentsMenu ul li a img:hover {
  border-radius: 50%;
  box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
}

/*------------------------------------------------サブコンテンツ2--------*/

.news_page {
  padding: 70px 50px;
  text-align: center;
  margin: 0;
  background: #fff;
  height: 400px;
}
.news_page .news_pageInfo {
  margin: 0 auto 20px;
  padding: 0;
  text-align: center;
  max-width: 972px;
  height: 157px;
  line-height: 0;
}
.news_page .news_pageInfo h3 {
  padding: 50px 0 0 0;
  text-align: center;
}
/*--------------------------------------------------アバウトページ--------*/

.title .index_title {
  font-size: 20px;
  color: #333333;
  text-align: center;
  background-color: #a6936a;
  padding: 50px 0;
  margin: 30px 50px;
}
.title .index_title .index_subtitle {
  position: absolute;
}

.about_page {
  width: auto;
  padding: 50px 100px;
}

.about_page .about_title h2 {
  font-size: 1.3rem;
  padding-top: 20px;
  padding-bottom: 100px;
}
.about_text {
  font-size: 1rem;
  line-height: 2.2em;
}

.about_flex {
  display: flex;
  margin: 100px auto 200px;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  flex-flow: wrap;
  justify-content: space-around;
}

.about_flex .single {
  width: 340px;
  /*max-width: calc((100% - 40px) / 4);*/
}
.about_flex .single .profile {
  opacity: 1;
  transition: opacity 0.7s ease 1.2s;
  border: solid 4px #a6936a;
  position: relative;
  padding: 35px 18px;
  height: 550px;
}
.about_flex .single .profile .imagearea {
  transform: none;
  transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.2s;
  margin: 0 auto 45px;
}
.about_flex .single .profile .imagearea img {
  height: 250px;
  border-radius: 50%;
  display: block;
  margin: auto;
}
.about_flex .single .profile ul {
  list-style: none;
}
.about_flex .single .profile ul li {
  font-size: 14px;
  line-height: 35px;
  padding: 0 0 0 20px;
  position: relative;
}
.about_flex .single .profile ul li::before {
  display: block;
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 16px;
  height: 16px;
  border-left: 3px solid #a6936a;
}

/*--------------------------------------------------ギャラリーページ------*/
.gallery_nav {
  margin: 0 auto;
  padding: 0 80px;
  max-width: 1000px;
  height: 54px;
}
.gallery_nav ul {
  height: 54px;
  box-sizing: border-box;
  border-top: #c8c8c8 solid 1px;
  border-bottom: #c8c8c8 solid 1px;
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: wrap;
  justify-content: space-around;
}
.gallery_nav ul li {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  list-style: none;
  height: 54px;
}
.gallery_nav ul li a {
  color: #b2b2b2;
  margin: 0;
  padding: 0;
  display: block;
  height: 54px;
  line-height: 54px;
  font-size: 14px;
  text-decoration: none;
  position: relative;
}
.gallery_nav ul li a.on {
  color: #9e781a;
}
.gallery_nav ul li a.on::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #9e781a;
}
.gallery_nav ul li a span {
  display: inline-block;
  margin: 0;
  padding: 0 10px 0 16px;
  height: 54px;
}
.photolist {
  margin: 0 auto;
  padding: 100px 80px 0;
  line-height: 0;
  max-width: 1530px;
}
.photolist ul {
  margin: 0 0 0 -1px;
  padding-bottom: 500px;
  line-height: 0;
}
.photolist ul li {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  padding: 0 0 1px 1px;
  margin: 0;
  list-style: none;
  line-height: 0;
  position: relative;
}
.photolist ul li img {
  width: 100%;
  height: auto;
}

/*--------------------------------------------------コンタクトページ------*/
.contact_text {
  padding: 10px;
  margin: 70px 30px;
  font-size: 13px;
  text-align: center;
  line-height: 2em;
}
.contact_form {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #e6e6e6;
  padding: 50px 30px;
}
form {
  width: 700px;
  margin: 0 auto;
}
.item {
  overflow: hidden;
  margin-bottom: 40px;
}
.label {
  float: left;
  margin-right: 20px;
  width: 135px;
  padding-left: 10px;
  line-height: 50px;
  font-size: 14px;
}
.contact_form .label2 {
  display: block;
}
.inputs {
  width: 500px;
  padding: 10px;
}
input[type="text"],
input[type="email"],
input[type="tel"] {
  border: solid 1px #aaa;
  border-radius: 5px;
  padding: 10px;
}
textarea {
  border: solid 1px #aaa;
  border-radius: 5px;
  padding: 10px;
  height: 160px;
  width: 300px;
  font-size: 15px;
}
.button-area {
  text-align: center;
}

input[type="submit"] {
  background-color: #a6936a;
  border: none;
  padding: 10px 80px;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  border-radius: 5px;
  margin: 10px 0;
  cursor: pointer;
}
.alert-danger {
  clear: both;
}

/*---------------------------------------プライバシーポリシー------*/

.privacy_page {
  margin: 80px auto;
  padding: 0;
  max-width: 800px;
  font-size: 15px;
  line-height: 30px;
}
.privacy_text {
  margin: 0;
  padding: 40px 0;
}
.privacy_page dl {
  margin: 0;
  padding: 0;
}
.privacy_page dl dt {
  font-weight: bold;
}
.privacy_page dl dd {
  margin-bottom: 30px;
  padding: 0;
  font-size: 13px;
}

/*-------------------------------------------------お知らせ-------*/
.infomation {
  margin: 150px auto 100px;
  padding: 0;
  text-align: center;
  max-width: 860px;
}
.infomation .infomation_text {
  margin: 0;
  padding: 0;
  font-size: 15px;
  display: inline-block;
}

/*------------------------------------------------クレジット------*/
.credit {
  max-width: 860px;
  margin: 120px auto 50px;
  text-align: center;
}
.credit_box {
  display: inline-block;
}
.credit dl {
  margin: 0 0 20px;
  padding: 0 0 0 100px;
  position: relative;
  font-size: 15px;
}
.credit dl dt {
  position: absolute;
  top: 0;
  left: 0;
}
.credit dl dd {
  color: #828282;
}

/*--------------------------------------------------フッター------*/

footer {
  width: 100%;
  margin-top: auto;
  background: #000;
  padding-top: 37px;
  padding-bottom: 25px;
  position: relative;
  z-index: 2;
}
.crunchify-top:hover {
  color: #fff !important;
  background-color: #9e781a;
  text-decoration: none;
}

.crunchify-top {
  display: none;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 3.2rem;
  height: 3.2rem;
  line-height: 3.2rem;
  font-size: 1.4rem;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.3);
  text-decoration: none;
  border-radius: 3.2rem;
  text-align: center;
  cursor: pointer;
}

footer .footerBlock {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}
footer .footerBlock .logo {
  text-align: center;
  line-height: 0;
  margin: 0 0 30px;
}
footer .footerBlock .logo img {
  height: 50px;
  width: auto;
  opacity: 0.4;
}
footer nav {
  display: block;
  margin: 0 0 15px;
  padding: 0 0 22px;
  text-align: left;
  border-bottom: #595959 solid 1px;
  line-height: 0;
}
footer nav ul {
  display: inline-block;
  margin: 0;
  padding: 0;
  /*line-height: 0;*/
}
footer nav ul li {
  float: left;
  margin: 0;
  padding: 0 20px;
  border-right: #6f6f6f solid 1px;
  font-size: 11px;
  font-family: "Times New Roman", Times, "serif";
  font-weight: 400;
  line-height: 1;
}
footer nav ul li:last-child {
  border: none;
}
footer nav ul li a {
  outline: none;
  color: #979797;
  text-decoration: none;
}
footer .copyBox {
  margin: 0;
  padding: 0;
  font-size: 10px;
  font-family: "Times New Roman", Times, "serif";
  font-weight: 400;
  line-height: 1;
}
footer .copyBox ul {
  margin: 0;
  padding: 0;
  list-style: none;
  float: left;
}
footer .copyBox ul li {
  margin: 0 17px 0 0;
  padding: 0;
  float: left;
}
footer .copyBox ul li a {
  color: #979797;
  text-decoration: none;
}
footer .copyBox p.copyraight {
  float: right;
  margin: 0;
  padding: 0;
  color: #aeaeae;
}

/*--------------------------------------------------------*/

/*タブレット*/
@media screen and (max-width: 1024px) {
  .latest .latestblock {
    border-left: none;
    border-right: none;
    padding: 0;
  }
  /*各ページタイトル*/
  .other {
    padding: 0 40px;
  }
  .other .other_block {
    padding: 50px 0px;
    margin: 0 auto;
  }
  .title {
    margin: 0 0 30px;
  }
  .title .index_title {
    margin: 10px 20px;
    padding: 40px 0;
  }
  /*アバウトページ*/
  .about_page {
    padding: 5px 50px;
  }
  .about_page .about_title h2 {
    padding-bottom: 50px;
  }
  .about_flex {
    margin: 20px;
    gap: none;
    flex-flow: wrap;
    justify-content: space-around;
  }
  /*プライバシーポリシー*/
  .privacy_page {
    margin: 20px 0;
  }
  .privacy_text {
    padding: 20px 0;
  }
  .privacy_page dl {
    margin: 0 25px;
  }
  /*クレジット*/
  .credit {
    padding-bottom: 175px;
  }
}

/*スマホ*/
@media screen and (max-width: 599px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  /*header*/
  #header {
    width: 100%;
  }
  /*wrapper*/
  #wrapper {
    width: 100%;
    display: inline;
  }
  /*ニュース*/
  .latest {
    padding: 30px 20px;
  }
  .latest .latestblock {
    border-left: none;
    border-right: none;
    padding: 0;
  }
  .latest .latestblock dl {
    margin: 0 0 14px;
    padding: 0 0 10px;
  }
  .latest .latestblock dl dt {
    margin-top: 0;
    top: 0;
    left: 0;
  }
  .latest .latestblock dl dd {
    margin: 0;
    padding: 0;
  }
  .latest .latestblock dl dd span {
    position: static;
    display: block;
    padding: 0 0 0 20px;
    top: 0;
    left: 100px;
    color: #828282;
  }
  .latest .latestblock dl dd a {
    display: block;
    clear: both;
  }
  /*コンテンツメニュー*/
  .contentsMenu ul li {
    height: 360px;
    width: 100%;
  }
  .contentsMenu ul li a img {
    border-radius: 50%;
  }
  /*お知らせ*/
  .news_page {
    height: 120px;
    padding: 50px;
  }
  .news_page .news_pageInfo h3 {
    padding: 0;
  }
  /*フッター*/
  footer {
    padding-top: 37px;
    padding-bottom: 25px;
  }
  .footerBlock nav ul {
    display: flex;
    justify-content: space-around;
  }
  footer .copyBox ul {
    padding-left: 20px;
  }
  footer .copyBox p.copyright {
    display: block;
    clear: both;
    float: left;
    padding-left: 20px;
  }

  /*---------------------各ページタイトル*/
  .other {
    padding: 0 10px;
    background: none;
  }
  .other .other_block {
    padding: 50px 0px;
    margin: 0 auto;
  }
  .title {
    margin: 0 0 30px;
  }
  .title .index_title {
    margin: 10px 20px;
    padding: 20px 0;
  }
  /*---------------------アバウト*/
  .about_page {
    padding: 0 20px;
    height: auto;
  }
  .about_page .about_title {
    height: 80px;
  }
  .about_flex {
    flex-direction: column;
    gap: 0;
    margin: 0 auto;
  }
  .about_flex .single {
    width: 100%;
  }
  .about_flex .single .profile {
    border: none;
    padding: 0 18x;
  }
  .about_text {
    line-height: 1.5rem;
  }

  /*-----------------------ギャラリー*/
  .gallery_nav {
    padding: 0 20px;
    height: auto;
  }
  .gallery_nav ul {
    height: auto;
    border-top: #c8c8c8 dotted 1px;
    border-bottom: none;
    margin: 0;
    gap: 0;
    display: block;
  }
  .gallery_nav ul li {
    margin: 0;
    float: none;
    width: 100%;
    box-sizing: border-box;
    border-bottom: #c8c8c8 dotted 1px;
    height: 44px;
  }
  .gallery_nav ul li a.on span {
    display: block;
    height: 44px;
  }
  .gallery_nav ul li a.on::after {
    bottom: 8px;
  }
  .photolist {
    padding: 30px 20px 0;
  }
  .photolist ul {
    margin: 0;
    padding: 0;
    line-height: 0;
  }
  .photolist ul li {
    float: none;
    width: 100%;
    padding: 0 0 10px;
    margin: 0;
  }
  /*-----------------------コンタクトフォーム*/

  .contact_text {
    margin: 0;
    text-align: left;
  }
  .contact_form {
    padding: 0;
    display: flex;
    flex-direction: column;
    border: none;
  }
  form {
    width: 85%;
    padding-top: 20px;
  }
  .item {
    margin-bottom: 0;
    padding-bottom: 30px;
    overflow: visible;
  }
  .label {
    line-height: 20px;
  }
  .inputs {
    width: 90%;
  }

  /*-----------------------プライバシーポリシー*/
  .privacy_page {
    margin: 20px 0;
  }
  .privacy_text {
    padding: 20px 0;
  }
  .privacy_page dl {
    margin: 0 25px;
  }
}
