@charset "UTF-8";
/* CSS Document */
/* --------------------------------------------------

初期設定

-------------------------------------------------- */
/* --------------------------------------------------

hover

-------------------------------------------------- */
/* --------------------------------------------------

スマホサイズのフォント指定

-------------------------------------------------- */
/* --------------------------------------------------

breakpoint

-------------------------------------------------- */
/* header */
#header.fixed-h {
  position: absolute;
  -webkit-box-shadow: none;
          box-shadow: none;
  top: 0;
}

body.fixed-body .wrapper #header .header-contents {
  display: block;
  padding: 30px 11%;
}
@media only screen and (max-width: 1100px) {
  body.fixed-body .wrapper #header .header-contents {
    padding: 30px 5%;
  }
}
body.fixed-body .wrapper #header .header-contents #navi {
  padding: 1em;
}
body #header {
  width: 30vw;
  position: absolute;
  z-index: 20;
  scrollbar-width: none;
  padding-top: 800px;
}
@media only screen and (max-width: 1100px) {
  body #header {
    width: 100%;
    position: relative;
    background: #fff;
    z-index: 20;
    height: auto;
    padding-top: 0;
  }
}
body #header.fixed-h {
  top: 0;
}
@media only screen and (max-width: 1100px) {
  body #header.fixed-h {
    position: fixed;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
            box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  }
}
body #header .header-wrap {
  overflow-y: hidden;
  display: block;
}
@media only screen and (max-width: 1100px) {
  body #header .header-wrap {
    height: 65px;
    overflow-y: visible;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    -ms-grid-columns: auto;
    grid-template-columns: auto;
    background: #fff;
  }
  body #header .header-wrap > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}
body #header .header-wrap .logo-h {
  z-index: 1001;
  padding: 7rem 6rem 4rem;
  margin-inline: auto;
  background: url(../img/top/bg-washi.jpg);
  width: 30vw;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  text-align: center;
}
@media only screen and (max-width: 1100px) {
  body #header .header-wrap .logo-h {
    width: 130px;
    background: #fff;
    padding: 0;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    background: #fff;
    z-index: 2;
    position: fixed;
    border-radius: 0 0 1em;
  }
}
body #header .header-wrap .logo-h > a {
  padding: 1em;
}
@media only screen and (max-width: 1100px) {
  body #header .header-wrap .logo-h > a {
    display: block;
    position: static;
    width: auto;
  }
}
body #header .header-wrap .logo-h > a > img {
  width: 100% !important;
  max-width: 300px;
}
body #header .header-wrap .logo-h.top-only {
  display: block;
}
body #header .header-wrap .logo-h.subpage-only {
  display: none;
}
body #header .header-wrap .btn-menu .btn-s div span {
  background-color: #5C8135;
}
body #header .header-wrap .btn-menu .btn-s div span:nth-of-type(2)::after {
  background-color: #5C8135;
}
body #header .header-wrap .header-contents {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 310px 11% 4em;
  background: url(../img/top/bg-washi.jpg);
  overflow-y: scroll;
  scrollbar-width: none;
  display: block;
}
@media only screen and (max-width: 1100px) {
  body #header .header-wrap .header-contents {
    display: none;
  }
}
body #header .header-wrap #navi {
  position: relative;
  z-index: 1001;
  margin-top: 6rem;
  background: none;
  height: auto;
  width: auto;
}
@media only screen and (max-width: 1100px) {
  body #header .header-wrap #navi {
    width: 100%;
    height: 100%;
    padding: 8em 1em 2em;
    background: #000;
    display: none;
    position: absolute;
    z-index: 1;
  }
}
body #header .header-wrap #navi .gnavi {
  position: relative;
  z-index: 1001;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0;
}
body #header .header-wrap #navi .gnavi > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  border-bottom: 1px solid #999999;
}
body #header .header-wrap #navi .gnavi > li::after {
  content: none;
}
body #header .header-wrap #navi .gnavi > li > a {
  width: 100%;
  color: #323131;
  padding: 0.8em 0 0.8em 3rem;
  margin-left: 1.5em;
  font-size: 2rem;
  font-weight: bold;
  color: #5C8135;
  border-bottom: none;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  background: url(../img/common/ico_hana.svg) no-repeat left center/2rem;
  text-align: left;
  white-space: unset;
}

/* header　上部追従ヘッダー */
#header-fixed-top {
  display: block !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 9999;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}
#header-fixed-top .header-fixed-logo-h {
  position: absolute;
  width: 170px;
  background: #FFF;
  padding: 0.9rem;
  border-radius: 0 0 12px 0;
  -webkit-transition: width 0.3s ease-out, padding 0.2s ease-out, background 0.2s ease-out;
  transition: width 0.3s ease-out, padding 0.2s ease-out, background 0.2s ease-out;
  z-index: 5;
  top: -5em;
}
@media only screen and (max-width: 1100px) {
  #header-fixed-top .header-fixed-logo-h {
    width: 22%;
    padding: 3%;
    position: relative;
    z-index: 1;
  }
}
#header-fixed-top .header-fixed-logo-h a {
  display: block;
  padding: 1em;
}
@media only screen and (max-width: 1100px) {
  #header-fixed-top .header-fixed-logo-h a {
    display: block;
    position: static;
    padding: 0;
  }
}
#header-fixed-top .header-fixed-logo-h a img {
  width: 160px;
}
#header-fixed-top .header-fixed-logo-h.top-only {
  display: none;
}
#header-fixed-top.show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
#header-fixed-top.show #navi-fixed {
  background: #fff;
}
#header-fixed-top.show .header-fixed-logo-h {
  top: 0;
}
@media only screen and (max-width: 1100px) {
  #header-fixed-top.show {
    display: none !important;
  }
}

/* ttl-top */
.ttl-top {
  font-size: 5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
}
@media only screen and (max-width: 768px) {
  .ttl-top {
    font-size: 3.2rem;
  }
}
.ttl-top span {
  background: #fff;
  border: 2px solid #0D0D0D;
  margin: 0 -0.02em -0.04em;
  display: inline-block;
  width: 1.5em;
  height: 1.6em;
  line-height: 1.5;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .ttl-top span {
    margin: 0 -0.03em -0.04em;
  }
}
.ttl-top .sp-only {
  display: none;
}
@media only screen and (max-width: 768px) {
  .ttl-top .sp-only {
    display: block;
  }
}

/* ttl-sakuhin */
.ttl-sakuhin {
  font-size: 2.5rem;
  font-weight: bold;
  padding: 1rem 2rem;
  text-align: center;
  background: #C7D5C6;
  width: 6em;
  margin: 0 auto 1em;
  outline: 2px solid #FFFFFF;
  outline-offset: -5px;
}

.image {
  overflow: hidden;
  aspect-ratio: 1/1;
  margin-bottom: 1em;
  -o-object-fit: contain !important;
     object-fit: contain !important;
  position: relative;
  background: #fff;
}
.image > img {
  width: 100%;
  height: 100%;
  max-width: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -o-object-fit: contain;
  object-fit: contain;
}

/* ttl-about */
.ttl-about {
  font-size: 3.5rem;
  font-weight: bold;
  margin: 1em 0;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .ttl-about {
    font-size: 3rem;
  }
}

/* main-area-top */
.main-area-top {
  width: 69vw;
  -webkit-margin-start: 30vw;
          margin-inline-start: 30vw;
  background: url(../img/top/fv-bg.jpg) no-repeat center center/cover;
  margin-bottom: 8rem;
}
@media only screen and (max-width: 1100px) {
  .main-area-top {
    width: 100%;
    -webkit-margin-start: auto;
            margin-inline-start: auto;
    padding-top: 65px;
    margin-bottom: 4rem;
  }
}
.main-area-top .main-deco {
  position: relative;
  padding-top: 800px;
}
@media only screen and (max-width: 1100px) {
  .main-area-top .main-deco {
    width: 100%;
    height: 0;
    padding-top: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .main-area-top .main-deco {
    width: 100%;
    height: 0;
    padding-top: 105%;
  }
}
.main-area-top .main-deco span {
  position: absolute;
  bottom: 0;
  left: 0;
  padding-left: 10%;
}
@media only screen and (max-width: 1100px) {
  .main-area-top .main-deco span {
    left: auto;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
}
.main-area-top .main-deco span.sp-only {
  display: none;
}
@media only screen and (max-width: 1100px) {
  .main-area-top .main-deco span.pc-only {
    display: none;
  }
  .main-area-top .main-deco span.sp-only {
    display: block;
  }
}
.main-area-top .main-deco span > img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
}
@media only screen and (max-width: 1100px) {
  .main-area-top .main-deco span > img {
    max-width: 100%;
  }
}
.main-area-top .main-deco > p {
  text-align: center;
  position: absolute;
  bottom: 1em;
  left: 5%;
}

/* about-area-top */
.about-area-top {
  position: relative;
}
.about-area-top .deco span {
  position: absolute;
  z-index: -1;
}
.about-area-top .deco span:first-child {
  top: 25%;
  right: -3em;
}
@media only screen and (max-width: 768px) {
  .about-area-top .deco span:first-child {
    top: 50%;
    width: 50%;
  }
}
.about-area-top .deco span:nth-child(2) {
  top: 40%;
  left: -3em;
}
@media only screen and (max-width: 768px) {
  .about-area-top .deco span:nth-child(2) {
    width: 60%;
  }
}
.about-area-top .deco span:nth-child(3) {
  bottom: 20%;
  right: -3em;
}
@media only screen and (max-width: 768px) {
  .about-area-top .deco span:nth-child(3) {
    width: 60%;
  }
}
.about-area-top .deco span:last-child {
  bottom: 3rem;
  left: -3em;
}
@media only screen and (max-width: 768px) {
  .about-area-top .deco span:last-child {
    width: 60%;
  }
}
.about-area-top .inner .about-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 8%;
}
.about-area-top .inner .about-contents .about-txt {
  width: 50%;
  font-size: 2rem;
  font-weight: bold;
}
@media only screen and (max-width: 1100px) {
  .about-area-top .inner .about-contents .about-txt {
    width: 100%;
  }
}
.about-area-top .inner .about-contents .about-txt p {
  margin-bottom: 2em;
}
.about-area-top .inner .about-contents .about-img {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media only screen and (max-width: 1100px) {
  .about-area-top .inner .about-contents .about-img {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.about-area-top .inner .about-contents .about-img .btn-name {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #fff;
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  border: none;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  padding: 2rem 1rem 7rem;
  position: relative;
  min-width: 72px;
  letter-spacing: 0.5rem;
}
.about-area-top .inner .about-contents .about-img .btn-name::after {
  content: "";
  background: url(../img/top/ico-plus.svg) no-repeat center center;
  width: 1.3em;
  height: 1.3em;
  display: inline-block;
  position: absolute;
  bottom: 2rem;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
.about-area-top .inner .about-contents .about-img .btn-name.btn-ahiru {
  background: #D09922;
  margin-right: 1em;
}
@media only screen and (max-width: 768px) {
  .about-area-top .inner .about-contents .about-img .btn-name.btn-ahiru {
    margin-right: 0.5em;
  }
}
.about-area-top .inner .about-contents .about-img .btn-name.btn-ahiru span {
  color: #9D581B;
}
.about-area-top .inner .about-contents .about-img .btn-name.btn-neko {
  background: #5ED2D2;
  margin-left: 1em;
}
@media only screen and (max-width: 768px) {
  .about-area-top .inner .about-contents .about-img .btn-name.btn-neko {
    margin-left: 0.5em;
  }
}
.about-area-top .inner .about-contents .about-img .btn-name.btn-neko span {
  color: #166969;
}
@media only screen and (max-width: 768px) {
  .about-area-top .inner .about-contents .about-img > img {
    width: 50%;
  }
}
.about-area-top .inner .about-contents .about-img .modal__container {
  max-width: 900px;
  border-radius: 2rem;
}
.about-area-top .inner .about-contents .about-img .modal__container .modal__close {
  background: #0D0D0D;
  border-radius: 50%;
  width: 64px;
  height: 64px;
}
@media only screen and (max-width: 768px) {
  .about-area-top .inner .about-contents .about-img .modal__container .modal__close {
    width: 50px;
    height: 50px;
  }
}
.about-area-top .inner .about-contents .about-img .modal__container.ahiru {
  background: #FCE8BB;
  border: 5px solid #D09922;
}
@media only screen and (max-width: 768px) {
  .about-area-top .inner .about-contents .about-img .modal__container.ahiru {
    padding: 15px;
  }
}
.about-area-top .inner .about-contents .about-img .modal__container.ahiru .modal-inner-block > h4 {
  background: #D09922;
}
.about-area-top .inner .about-contents .about-img .modal__container.ahiru .modal-inner-block > h4 span {
  color: #9D581B;
}
.about-area-top .inner .about-contents .about-img .modal__container.neko {
  background: #D4F0F0;
  border: 5px solid #5ED2D2;
}
@media only screen and (max-width: 768px) {
  .about-area-top .inner .about-contents .about-img .modal__container.neko {
    padding: 15px;
  }
}
.about-area-top .inner .about-contents .about-img .modal__container.neko .modal-inner-block > h4 {
  background: #5ED2D2;
}
.about-area-top .inner .about-contents .about-img .modal__container.neko .modal-inner-block > h4 span {
  color: #166969;
}
.about-area-top .inner .about-contents .about-img .modal__container .modal-inner-block > h4 {
  font-size: 5rem;
  width: 65%;
  color: #fff;
  padding: 1rem;
  margin: 0 auto 2rem;
  border-radius: 1rem;
  outline: 2px solid #FFFFFF;
  outline-offset: -5px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .about-area-top .inner .about-contents .about-img .modal__container .modal-inner-block > h4 {
    font-size: 4rem;
    width: 100%;
  }
}
.about-area-top .inner .about-contents .about-img .modal__container .modal-inner-block > h4 span rt {
  font-size: 1.2rem;
}
@media only screen and (max-width: 768px) {
  .about-area-top .inner .about-contents .about-img .modal__container .modal__content {
    margin-bottom: 0;
  }
}
.about-area-top .inner .about-contents .about-img .modal__container .modal__content .profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .about-area-top .inner .about-contents .about-img .modal__container .modal__content .profile .ilst {
    margin: 0 auto;
  }
}
.about-area-top .inner .about-contents .about-img .modal__container .modal__content .profile .txt {
  width: 60%;
  background: #fff;
  padding: 2em;
  border-radius: 1rem;
}
@media only screen and (max-width: 768px) {
  .about-area-top .inner .about-contents .about-img .modal__container .modal__content .profile .txt {
    width: 100%;
    padding: 1em;
  }
}
.about-area-top .inner .about-contents .about-img .modal__container .modal__content .profile .txt > p {
  margin-bottom: 2rem;
}
.about-area-top .inner .ttl-about {
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
}
@media only screen and (max-width: 768px) {
  .about-area-top .inner .ttl-about {
    font-size: 2.5rem;
  }
}
.about-area-top .inner .iframe-area {
  position: relative;
  z-index: 2;
}
.about-area-top .inner .iframe-area::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: solid 3px #D09922;
  top: 1em;
  left: 1em;
  display: block;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .about-area-top .inner .iframe-area::after {
    top: 0.3m;
    left: 0.3em;
  }
}
.about-area-top {
  margin-bottom: 8rem;
}

/* touku-area-top */
.touku-area-top {
  padding: 8% 0;
  background: url(../img/top/bg-washi.jpg);
  position: relative;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  .touku-area-top {
    padding: 20% 0;
  }
}
.touku-area-top .deco span {
  position: absolute;
  z-index: -1;
}
.touku-area-top .deco span:first-child {
  top: -2%;
  right: -3em;
}
@media only screen and (max-width: 768px) {
  .touku-area-top .deco span:first-child {
    top: -1%;
    width: 50%;
  }
}
.touku-area-top .deco span:nth-child(2) {
  top: 20%;
  left: -9em;
}
@media only screen and (max-width: 768px) {
  .touku-area-top .deco span:nth-child(2) {
    width: 60%;
  }
}
.touku-area-top .deco span:nth-child(3) {
  top: 40%;
  right: -15em;
}
@media only screen and (max-width: 768px) {
  .touku-area-top .deco span:nth-child(3) {
    width: 60%;
    right: -5em;
  }
}
.touku-area-top .deco span:nth-child(4) {
  bottom: 15%;
  left: -1em;
}
@media only screen and (max-width: 768px) {
  .touku-area-top .deco span:nth-child(4) {
    width: 60%;
  }
}
.touku-area-top .deco span:last-child {
  bottom: 3rem;
  right: -3em;
}
@media only screen and (max-width: 768px) {
  .touku-area-top .deco span:last-child {
    width: 60%;
  }
}
.touku-area-top .txt {
  font-size: 2rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 2em;
}
.touku-area-top .horizontal-list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  margin: 0 auto 3em;
}
@media only screen and (max-width: 768px) {
  .touku-area-top .horizontal-list dl {
    width: 100%;
  }
}
.touku-area-top .horizontal-list dl dt {
  width: 7em;
  text-align: center;
  color: #fff;
  background: #D09922;
  float: left;
  margin-right: 2.4rem;
  display: inline-block;
  padding: 0.8rem 1.6rem;
}
.touku-area-top .horizontal-list dl dd {
  width: calc(100% - 7em - 2.4rem);
  padding: 0.8rem 0;
  margin-bottom: 0.8rem;
}
.touku-area-top .horizontal-list dl dd > a {
  text-decoration: underline;
}
.touku-area-top .preparation {
  background: #c7c7c7;
  padding: 2em;
  margin-bottom: 4em;
  outline: 2px solid #FFFFFF;
  outline-offset: -5px;
}
.touku-area-top .preparation > p {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
}
.touku-area-top .touku-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 4em;
}
@media only screen and (max-width: 768px) {
  .touku-area-top .touku-contents {
    margin-bottom: 2em;
  }
}
.touku-area-top .touku-contents > div {
  width: 48%;
}
@media only screen and (max-width: 768px) {
  .touku-area-top .touku-contents > div {
    width: 100%;
  }
  .touku-area-top .touku-contents > div:first-child {
    margin-bottom: 4em;
  }
}
.touku-area-top .touku-contents > div > p {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}

/* haiku-area-top */
.haiku-area-top {
  padding: 0 0 8%;
  background: url(../img/top/bg-washi.jpg);
  position: relative;
  z-index: 0;
}
.haiku-area-top .deco span {
  position: absolute;
  z-index: -1;
}
.haiku-area-top .deco span:first-child {
  top: 15%;
  right: -3em;
}
@media only screen and (max-width: 768px) {
  .haiku-area-top .deco span:first-child {
    top: -1%;
    width: 50%;
  }
}
.haiku-area-top .deco span:nth-child(2) {
  top: 40%;
  left: -9em;
}
@media only screen and (max-width: 768px) {
  .haiku-area-top .deco span:nth-child(2) {
    width: 60%;
  }
}
.haiku-area-top .deco span:nth-child(3) {
  bottom: 30%;
  right: -15em;
}
@media only screen and (max-width: 768px) {
  .haiku-area-top .deco span:nth-child(3) {
    width: 60%;
    right: -5em;
  }
}
.haiku-area-top .deco span:nth-child(4) {
  bottom: -2%;
  left: 3%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media only screen and (max-width: 768px) {
  .haiku-area-top .deco span:nth-child(4) {
    width: 29%;
    left: 0;
  }
}
.haiku-area-top .deco span:last-child {
  bottom: -1%;
  right: -3%;
}
@media only screen and (max-width: 768px) {
  .haiku-area-top .deco span:last-child {
    width: 50%;
    right: -10%;
  }
}
.haiku-area-top .haiku-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5em;
}
.haiku-area-top .haiku-contents.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  .haiku-area-top .haiku-contents {
    margin-bottom: 2em;
  }
}
.haiku-area-top .haiku-contents > div {
  width: 48%;
}
@media only screen and (max-width: 768px) {
  .haiku-area-top .haiku-contents > div {
    width: 100%;
    margin-bottom: 3em;
  }
}
.haiku-area-top .haiku-contents > div > p {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
.haiku-area-top .haiku-contents .haiku-parts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.haiku-area-top .haiku-contents .haiku-parts .haiku-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 32%;
  background: #fff;
  border: 3px solid #D09922;
  padding: 2em 1em;
  max-height: 570px;
}
@media only screen and (max-width: 768px) {
  .haiku-area-top .haiku-contents .haiku-parts .haiku-txt {
    height: 80vh;
  }
}
@media only screen and (max-width: 768px) and (max-width: 420px) {
  .haiku-area-top .haiku-contents .haiku-parts .haiku-txt {
    height: 60vh;
  }
}
.haiku-area-top .haiku-contents .haiku-parts .haiku-txt > p {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
}
.haiku-area-top .haiku-contents .haiku-parts .haiku-txt .haiku {
  font-size: 2.5rem;
  font-weight: bold;
  margin-right: 3rem;
  letter-spacing: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .haiku-area-top .haiku-contents .haiku-parts .haiku-txt .haiku {
    font-size: 2rem;
  }
}
.haiku-area-top .haiku-contents .haiku-parts .haiku-txt .name {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media only screen and (max-width: 768px) {
  .haiku-area-top .haiku-contents .haiku-parts .haiku-txt .name {
    font-size: 1.8rem;
  }
}

/* tenhaiku-area-top */
.tenhaiku-area-top {
  padding: 8rem 2em 0 2em;
  position: relative;
  z-index: 0;
}
.tenhaiku-area-top::after {
  content: "";
  position: absolute;
  background: url(../img/top/bg-juu.png) no-repeat;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: -2;
}
.tenhaiku-area-top::before {
  content: "";
  position: absolute;
  background: url(../img/top/bg-juu.png) no-repeat;
  bottom: -8rem;
  right: 0;
  width: 100%;
  height: 50%;
  z-index: -2;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.tenhaiku-area-top .deco span {
  position: absolute;
  z-index: -1;
}
.tenhaiku-area-top .deco span:first-child {
  top: 15%;
  left: -10%;
}
@media only screen and (max-width: 768px) {
  .tenhaiku-area-top .deco span:first-child {
    top: -1%;
    width: 50%;
  }
}
.tenhaiku-area-top .deco span:nth-child(2) {
  top: 25%;
  right: -15%;
}
@media only screen and (max-width: 768px) {
  .tenhaiku-area-top .deco span:nth-child(2) {
    width: 60%;
  }
}
.tenhaiku-area-top .deco span:nth-child(3) {
  top: 50%;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .tenhaiku-area-top .deco span:nth-child(3) {
    width: 60%;
    right: -5em;
  }
}
.tenhaiku-area-top .deco span:nth-child(4) {
  bottom: 15%;
  right: -1em;
}
@media only screen and (max-width: 768px) {
  .tenhaiku-area-top .deco span:nth-child(4) {
    width: 60%;
  }
}
.tenhaiku-area-top .deco span:last-child {
  bottom: 3rem;
  left: -5%;
}
@media only screen and (max-width: 768px) {
  .tenhaiku-area-top .deco span:last-child {
    width: 60%;
  }
}
.tenhaiku-area-top {
  margin-bottom: 16rem;
}
.tenhaiku-area-top .inner {
  position: relative;
}
.tenhaiku-area-top .inner .tenhaiku-txt-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  margin-left: auto;
  margin-bottom: 15em;
}
@media only screen and (max-width: 768px) {
  .tenhaiku-area-top .inner .tenhaiku-txt-part {
    margin-bottom: 0;
  }
}
.tenhaiku-area-top .inner .tenhaiku-txt-part .deco {
  position: absolute;
  top: -8rem;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .tenhaiku-area-top .inner .tenhaiku-txt-part {
    display: block;
  }
}
.tenhaiku-area-top .inner .tenhaiku-txt-part .ttl-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  .tenhaiku-area-top .inner .tenhaiku-txt-part .ttl-top {
    text-align: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.tenhaiku-area-top .inner .tenhaiku-txt-part .ttl-top .separator {
  background: none;
  border: none;
}
@media only screen and (max-width: 768px) {
  .tenhaiku-area-top .inner .tenhaiku-txt-part .ttl-top .separator {
    width: auto;
    height: auto;
  }
}
.tenhaiku-area-top .inner .tenhaiku-txt-part .ttl-top .separator:last-child {
  margin-top: calc(1.5em + 3px);
  margin-right: -3px;
}
@media only screen and (max-width: 768px) {
  .tenhaiku-area-top .inner .tenhaiku-txt-part .ttl-top .separator:last-child {
    margin-top: 0;
    margin-right: -1px;
  }
}
.tenhaiku-area-top .inner .tenhaiku-txt-part > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-right: 10%;
}
@media only screen and (max-width: 768px) {
  .tenhaiku-area-top .inner .tenhaiku-txt-part > div {
    margin-right: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.tenhaiku-area-top .inner .tenhaiku-txt-part > div > p {
  font-size: 2rem;
  letter-spacing: 0.5rem;
  line-height: 1.5;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  margin-right: 2em;
}
@media only screen and (max-width: 768px) {
  .tenhaiku-area-top .inner .tenhaiku-txt-part > div > p {
    line-height: 1.4;
    margin-right: 1em;
  }
}
.tenhaiku-area-top .inner .tenhaiku-txt-part > div > p:first-child {
  margin-right: 0;
}
.tenhaiku-area-top .inner .tenhaiku-txt-part > div > p > span {
  font-size: 2.4rem;
  font-weight: bold;
}
.tenhaiku-area-top .inner .pct-part {
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 1100px) {
  .tenhaiku-area-top .inner .pct-part {
    position: static;
    margin-top: -13em;
    margin-bottom: 5em;
  }
}
@media only screen and (max-width: 768px) {
  .tenhaiku-area-top .inner .pct-part {
    margin-top: 0;
  }
}
.tenhaiku-area-top .inner .tenhaiku-contents, .tenhaiku-area-top .inner .tenhaiku-contents-theme1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 7em;
}
.tenhaiku-area-top .inner .tenhaiku-contents > div, .tenhaiku-area-top .inner .tenhaiku-contents-theme1 > div {
  width: 36%;
  margin-right: 2%;
}
@media only screen and (max-width: 1100px) {
  .tenhaiku-area-top .inner .tenhaiku-contents > div, .tenhaiku-area-top .inner .tenhaiku-contents-theme1 > div {
    width: 100%;
  }
}
.tenhaiku-area-top .inner .tenhaiku-contents > div > p, .tenhaiku-area-top .inner .tenhaiku-contents-theme1 > div > p {
  text-align: center;
}
@media only screen and (max-width: 1100px) {
  .tenhaiku-area-top .inner .tenhaiku-contents > div > p, .tenhaiku-area-top .inner .tenhaiku-contents-theme1 > div > p {
    margin-bottom: 2em;
  }
}
.tenhaiku-area-top .inner .tenhaiku-contents .slider-block, .tenhaiku-area-top .inner .tenhaiku-contents-theme1 .slider-block {
  width: 60%;
}
@media only screen and (max-width: 1100px) {
  .tenhaiku-area-top .inner .tenhaiku-contents .slider-block, .tenhaiku-area-top .inner .tenhaiku-contents-theme1 .slider-block {
    width: 100%;
  }
}
.tenhaiku-area-top .inner .tenhaiku-contents .slider-block, .tenhaiku-area-top .inner .tenhaiku-contents-theme1 .slider-block {
  margin-bottom: 4.8rem;
}
.tenhaiku-area-top .inner .tenhaiku-contents .slider-block .swiper, .tenhaiku-area-top .inner .tenhaiku-contents-theme1 .slider-block .swiper {
  width: calc(50vw + (100vw - 60px) * 0.333);
  max-width: calc(50vw + 426px);
}
.tenhaiku-area-top .inner .tenhaiku-contents .slider-block .haiku-part, .tenhaiku-area-top .inner .tenhaiku-contents-theme1 .slider-block .haiku-part {
  position: relative;
}
.tenhaiku-area-top .inner .tenhaiku-contents .slider-block .haiku-part .haiku-txt, .tenhaiku-area-top .inner .tenhaiku-contents-theme1 .slider-block .haiku-part .haiku-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  background: url(../img/top/bg-washi.jpg);
  border: 3px solid #D09922;
  padding: 2em 1em;
  width: 130px;
  position: absolute;
  top: -2em;
  right: 0;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .tenhaiku-area-top .inner .tenhaiku-contents .slider-block .haiku-part .haiku-txt, .tenhaiku-area-top .inner .tenhaiku-contents-theme1 .slider-block .haiku-part .haiku-txt {
    height: 420px;
    min-height: 20em;
  }
}
.tenhaiku-area-top .inner .tenhaiku-contents .slider-block .haiku-part .haiku-txt > p, .tenhaiku-area-top .inner .tenhaiku-contents-theme1 .slider-block .haiku-part .haiku-txt > p {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
}
.tenhaiku-area-top .inner .tenhaiku-contents .slider-block .haiku-part .haiku-txt .haiku, .tenhaiku-area-top .inner .tenhaiku-contents-theme1 .slider-block .haiku-part .haiku-txt .haiku {
  font-size: 2rem;
  font-weight: bold;
  margin-right: 3rem;
  letter-spacing: 0.5rem;
}
.tenhaiku-area-top .inner .tenhaiku-contents .slider-block .haiku-part .haiku-txt .name, .tenhaiku-area-top .inner .tenhaiku-contents-theme1 .slider-block .haiku-part .haiku-txt .name {
  font-weight: bold;
  letter-spacing: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.tenhaiku-area-top .inner .tenhaiku-contents .slider-block .txt-part, .tenhaiku-area-top .inner .tenhaiku-contents-theme1 .slider-block .txt-part {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  border: 3px solid #D09922;
  padding: 2em 110px 7.5em 0;
  margin: 2em 2em 0 0;
  max-height: 34em;
  min-height: 25em;
}
@media only screen and (max-width: 768px) {
  .tenhaiku-area-top .inner .tenhaiku-contents .slider-block .txt-part, .tenhaiku-area-top .inner .tenhaiku-contents-theme1 .slider-block .txt-part {
    height: 450px;
  }
}
.tenhaiku-area-top .inner .tenhaiku-contents .slider-block .txt-part > p, .tenhaiku-area-top .inner .tenhaiku-contents-theme1 .slider-block .txt-part > p {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  margin-left: 1em;
}
.tenhaiku-area-top .inner .tenhaiku-contents .slider-block .txt-part .btn-wakaru, .tenhaiku-area-top .inner .tenhaiku-contents-theme1 .slider-block .txt-part .btn-wakaru {
  color: #0D0D0D;
  background: #fff;
  border-radius: 50%;
  border: none;
  text-align: center;
  word-break: keep-all;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0.8rem 0 0 0;
  margin-top: auto;
  position: absolute;
  bottom: 1em;
  left: 1em;
}
.tenhaiku-area-top .inner .tenhaiku-contents .slider-block .txt-part .btn-wakaru .icon, .tenhaiku-area-top .inner .tenhaiku-contents-theme1 .slider-block .txt-part .btn-wakaru .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border: 1px solid #0D0D0D;
}
.tenhaiku-area-top .inner .tenhaiku-contents .slider-block .txt-part .btn-wakaru .icon > img, .tenhaiku-area-top .inner .tenhaiku-contents-theme1 .slider-block .txt-part .btn-wakaru .icon > img {
  width: 3rem;
}
.tenhaiku-area-top .inner .tenhaiku-contents .swiper-button-next, .tenhaiku-area-top .inner .tenhaiku-contents-theme1 .swiper-button-next {
  top: auto;
  bottom: -9rem;
}
@media only screen and (max-width: 768px) {
  .tenhaiku-area-top .inner .tenhaiku-contents .swiper-button-next, .tenhaiku-area-top .inner .tenhaiku-contents-theme1 .swiper-button-next {
    right: -2rem;
    bottom: -7rem;
  }
}
.tenhaiku-area-top .inner .tenhaiku-contents .swiper-button-next::before, .tenhaiku-area-top .inner .tenhaiku-contents-theme1 .swiper-button-next::before {
  background: #0D0D0D;
}
@media only screen and (max-width: 768px) {
  .tenhaiku-area-top .inner .tenhaiku-contents .swiper-button-next::before, .tenhaiku-area-top .inner .tenhaiku-contents-theme1 .swiper-button-next::before {
    width: 7rem;
    height: 7rem;
  }
}
.tenhaiku-area-top .inner .tenhaiku-contents .swiper-button-prev, .tenhaiku-area-top .inner .tenhaiku-contents-theme1 .swiper-button-prev {
  top: auto;
  bottom: -9rem;
  right: 14rem;
  left: auto;
}
@media only screen and (max-width: 768px) {
  .tenhaiku-area-top .inner .tenhaiku-contents .swiper-button-prev, .tenhaiku-area-top .inner .tenhaiku-contents-theme1 .swiper-button-prev {
    right: 8rem;
    bottom: -7rem;
  }
}
.tenhaiku-area-top .inner .tenhaiku-contents .swiper-button-prev::before, .tenhaiku-area-top .inner .tenhaiku-contents-theme1 .swiper-button-prev::before {
  background: #0D0D0D;
}
@media only screen and (max-width: 768px) {
  .tenhaiku-area-top .inner .tenhaiku-contents .swiper-button-prev::before, .tenhaiku-area-top .inner .tenhaiku-contents-theme1 .swiper-button-prev::before {
    width: 7rem;
    height: 7rem;
  }
}

/* item-area-top */
.item-area-top {
  position: relative;
  z-index: 0;
}
.item-area-top .deco span {
  position: absolute;
  z-index: -1;
}
.item-area-top .deco span:first-child {
  top: 0;
  right: -10%;
}
@media only screen and (max-width: 768px) {
  .item-area-top .deco span:first-child {
    width: 50%;
  }
}
.item-area-top .deco span:last-child {
  bottom: 3%;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .item-area-top .deco span:last-child {
    bottom: -5%;
  }
}
.item-area-top .item-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
}
.item-area-top .item-contents > div {
  width: 49%;
  border-bottom: 2px solid #0D0D0D;
}
@media only screen and (max-width: 768px) {
  .item-area-top .item-contents > div {
    width: 100%;
    margin-bottom: 2em;
  }
}
@media only screen and (max-width: 768px) {
  .item-area-top .item-contents > div > img {
    width: 100%;
  }
}
.item-area-top .item-contents > div > h3 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}
.item-area-top .item-contents > div .picture {
  text-align: center;
  margin-bottom: 2rem;
}
.item-area-top .item-contents > div > p {
  margin-bottom: 2rem;
}
.item-area-top {
  margin-bottom: 8rem;
}

/* questionnaire-area-top */
.questionnaire-area-top {
  position: relative;
  padding: 10% 0;
  background: url(../img/top/bg-questionnaire.jpg) no-repeat center center/cover;
}
.questionnaire-area-top::after {
  content: "";
  background: url(../img/top/ilst-footer_ahiru.png) no-repeat center center/contain;
  width: 223px;
  height: 283.55px;
  display: inline-block;
  position: absolute;
  bottom: -2em;
  right: 10vw;
}
@media only screen and (max-width: 768px) {
  .questionnaire-area-top::after {
    width: 40%;
    height: 36%;
  }
}
@media only screen and (max-width: 1100px) {
  .questionnaire-area-top {
    padding-bottom: 30%;
  }
}
.questionnaire-area-top .txt-questionnaire {
  text-align: center;
  font-size: 3.4rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .questionnaire-area-top .txt-questionnaire {
    font-size: 2.4rem;
  }
}

#footer {
  position: relative;
}
#footer::before {
  content: "";
  background: url(../img/top/ilst-footer_neko.png) no-repeat center center/contain;
  width: 169px;
  height: 225.55px;
  display: inline-block;
  position: absolute;
  top: -12em;
  left: 10vw;
}
@media only screen and (max-width: 768px) {
  #footer::before {
    width: 30%;
    height: 50%;
    top: -8em;
  }
}

.fixed-navi {
  position: fixed;
  top: 10rem;
  right: 0;
  z-index: 2;
  width: 10rem;
  border-radius: 5px 0 0 5px;
  background: #D09922;
  border-right: none;
  border-radius: 1em 0 0 1em;
}
@media only screen and (max-width: 768px) {
  .fixed-navi {
    border-radius: 1em 1em 0 0;
    top: auto;
    bottom: 0;
    width: 100vw;
    padding: 0.2em 0;
  }
}
.fixed-navi nav ul li {
  padding: 1rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .fixed-navi nav ul li {
    padding: 0.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .fixed-navi nav ul li dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.fixed-navi nav ul li dl dt {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 768px) {
  .fixed-navi nav ul li dl dt {
    margin-bottom: 0;
    margin-right: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .fixed-navi nav ul li dl dt > img {
    width: 70%;
  }
}
.fixed-navi nav ul li dl dd {
  color: #fff;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .fixed-navi nav ul li dl dd .sp-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}
/*# sourceMappingURL=top.css.map */