@charset "UTF-8";
/* --------------------------------------------------
   Template by espace（https://espace.monbalcon.net/）
   Copyright: 2020 espace.

   利用規約を遵守の上、ご利用ください。
   二次配布、販売は禁止しています。
   --------------------------------------------------*/

/* ----- ▼ レイアウト　ここから ▼ ----- */
/* TOP画像 */
.full {
  padding-top: calc(0 / 8000 * 100%);
  background: url("../images/bg.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
.wf-sawarabimincho {
  font-family: "Sawarabi Mincho";
  font-size: 4rem;
}
/* 基本 */
html::before,
html::after,
body::before,
body::after {
  content: "";
  display: block;
  position: fixed;
  background: #324015;
  z-index: 2;
}

html::before,
html::after {
  width: 1px;
  height: calc(100% - 90px);
  top: 45px;
}

html::before {
  left: 45px;
}

html::after {
  right: 45px;
}

body {
  margin: 0;
  padding: 0;
  background: #d7d7d7;
}

body::before,
body::after {
  width: calc(100% - 90px);
  height: 1px;
  left: 45px;
}

body::before {
  top: 45px;
}

body::after {
  bottom: 45px;
}

body,
button,
input,
textarea,
select {
  font: 500 1.4rem / calc(1.4rem + 1.05rem) "Noto Serif JP", "Yu Mincho",
    "HiraMinProN-W6", serif;
  color: #676965;
  letter-spacing: 0.08rem;
  overflow-x: hidden;
}

header,
footer,
main {
  width: calc(100% - 300px);
  margin: auto;
}

header,
footer {
  text-align: center;
}

header {
  position: sticky;
  top: -90px;
  padding-top: 18px;
  height: 90px;
  transition: 0.3s;
}

header.scroll {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: calc(100% - 150px);
  z-index: 2;
  transform: translateY(68px);
}

main {
  width: calc(100% - 300px);
  max-width: 650px;
  min-height: calc(100vh - 395px);
  margin-top: 50px;
}

main.no_header {
  min-height: calc(100vh - 305px);
}

main > :first-child > h2:first-child,
main > :first-child h3:first-child,
main > :first-child h4:first-child {
  margin-top: 0;
}

footer {
  width: calc(100% - 300px);
  min-height: 105px;
  margin-top: 150px;
  padding: 15px;
  background: #324015;
}

footer a {
  color: #fff;
}

a {
  color: #bf0000;
}

a:hover {
  opacity: 0.5;
}

/* メニュー */
.menu ul {
  display: flex;
  justify-content: space-around;
  padding: 0;
  list-style: none;
}

.menu ul a {
  display: inline-block;
  min-width: 125px;
  padding: 10px 0;
  background: #324015;
  color: #fff;
  opacity: 1;
  letter-spacing: 0.5rem;
}

/* .menu ul a:hover {
  background: #b0e2dd;
} */

.manu-toggler {
  display: none;
}

.fixed-menu {
  position: fixed;
  bottom: 49px;
  right: 49px;
}

.fixed-menu ul {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fixed-menu a,
.fixed-menu button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #324015;
  color: #fff;
}

.fixed-menu a::before,
.fixed-menu button::before {
  font: 900 16px/1 "Font Awesome 5 Free";
}

.fixed-menu a:hover,
.fixed-menu button:hover {
  opacity: 0.5;
}

.fixed-menu .pagetop a::before,
.fixed-menu .pagetop button::before {
  content: "\f106";
}

.fixed-menu .prev a::before,
.fixed-menu .prev button::before {
  content: "\f104";
}

.fixed-menu .next::before {
  content: none;
}

.fixed-menu .next a::before,
.fixed-menu .next button::before {
  content: "\f105";
}

.fixed-menu .toc a::before,
.fixed-menu .toc button::before {
  content: "\f0ca";
}

.fixed-menu .home a::before,
.fixed-menu .home button::before {
  content: "\f015";
}

/* ボタン */
.border {
  border: solid 2px #324015;
  outline: solid 1px #324015;
  outline-offset: 2px;
  margin: 4px;
  display: inline-block;
  padding: 0.5rem;
  padding-right: 1rem;
  background-color: #324015;
}

.border:hover {
  background-color: #fff;
  transition: 1s;
}

.border a:hover {
  color: #324015 !important;
}

/* イラスト */
.illust {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  margin: 0 calc(50% - 50vw);
  margin-top: 6.6vmax;
  /* background: #d6d1cb; */
  background-size: cover;
  background-image: url("../images/img-test01.jpg");
  background-position: center;
  z-index: -3;
}
/* .illust .inside {
  width: calc(100% - 300px);
    max-width: 650px;
    margin: 0 auto;
} */

/* その場でフェードイン */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 下から */

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media only screen and (max-width: 900px) {
  .full {
    background-size: 100vh;
  }
  .menu,
  .manu-toggler {
    position: fixed;
    transition: 0.3s;
    z-index: 2;
  }

  .menu {
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0;
    transform: scale(0);
  }

  .menu ul {
    display: block;
  }

  .menu ul a {
    width: calc(100vw - 150px);
  }

  .menu.open {
    opacity: 1;
    transform: scale(1);
  }

  .manu-toggler {
    display: block;
    width: 40px;
    height: 40px;
    top: 25px;
    right: 25px;
    background: #324015;
  }

  .manu-toggler::before,
  .manu-toggler::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 20px;
    width: 30px;
    height: 1px;
    background: #fff;
  }

  .manu-toggler.open::before {
    transform: rotate(-45deg);
  }

  .manu-toggler.open::after {
    transform: rotate(45deg);
  }

  .fixed-menu {
    bottom: 60px;
    right: 25px;
  }

  .fixed-menu ul {
    flex-direction: row;
  }
}

/* 見出し */
h1 {
  margin: 0;
  font: 500 italic 5rem/1 "Oranienbaum", serif;
}

h1 a {
  color: #324015;
}

h2,
h3 {
  text-align: center;
}

h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 6.6vmax auto 100px;
  padding: 6.6vmax 0 0 0;
  font-size: 2.2rem;
  color: #324015;
  letter-spacing: 10px;
}

h2::before,
h2::after {
  content: "";
  display: block;
  width: 150px;
  height: 3px;
  background: #324015;
  transform: rotate(-5deg);
  z-index: -1;
}

h2::before {
  margin-bottom: 30px;
}

h2::after {
  margin-top: 30px;
}

h3 {
  position: relative;
  margin: 100px auto 85px;
  color: #324015;
  font-size: 1.6rem;
  letter-spacing: 5px;
  z-index: -1;
}

h3::before {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 80px;
  background: #f2f2f2;
  top: calc(50% - 40px);
  left: calc(50% - 40px);
  z-index: -1;
}

h3:nth-of-type(odd)::before {
  border-radius: 50% 70% 50% 80%;
}

h3:nth-of-type(even)::before {
  border-radius: 70% 50% 60% 50%;
}

h4 {
  margin: 70px auto 30px;
  border-bottom: 3px solid #f2f2f2;
  font-size: 1.4rem;
  color: #324015;
}

h5 {
  font-size: 1.4rem;
  color: #324015;
}

/* リスト */
ul .description,
ol .description {
  margin-left: 10px;
}

ul .description::before,
ol .description::before {
  content: "…";
  margin-right: 10px;
}

ul li.next {
  list-style: none;
}

ul li.next::before {
  content: "→";
  margin-right: 5px;
  font-size: 120%;
}

ul.small {
  list-style: none;
  padding-left: 0;
}

ul.small li {
  display: inline;
}

ul.small li::before {
  color: #f759a5;
}

ul.small li:not(:first-child):not(.next)::before {
  margin: 0 5px 0 2px;
  content: ":";
  font-weight: 900;
}

ul.small li.next::before {
  margin: 0 7px 0 2px;
}

dl {
  margin: 10px 0;
}

dl dd {
  margin: 0 0 15px;
  padding: 0 0 15px 40px;
  border-bottom: 1px dotted #324015;
}

dl dd:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

dl.inline {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

dl.inline dt,
dl.inline dd {
  vertical-align: top;
  margin: 0 0 15px 0;
  padding: 0 0 15px;
}

dl.inline dt:last-of-type,
dl.inline dd:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
}

dl.inline dt {
  width: 200px;
  padding: 0 30px 10px 0;
  padding-right: 30px;
  border-bottom: 1px dotted #324015;
}

dl.inline dt:last-of-type {
  border-bottom: 0;
}

dl.inline dd {
  width: calc(100% - 200px - 30px);
}

dl.border {
  padding: 15px 20px;
  border: 1px solid #bddceb;
  border-radius: 0.25rem;
}

/* フォーム */
.form-inline > *,
.form-block > * {
  margin-bottom: 5px;
}

.form-block dl dt,
.form-block dl dd {
  border-bottom: 0;
}

.form-block dl.inline dt {
  width: 130px;
}

.form-block dl.inline dd {
  width: calc(100% - 130px - 30px);
}

.form-block > *,
.form-block dl dd > * {
  width: 100%;
  box-sizing: border-box;
}

.required::after {
  content: "*";
  color: #f759a5;
}

input,
textarea,
select,
button:not(.manu-toggler),
input[type="submit"],
input[type="button"] {
  border-radius: 0.25rem;
}

input::placeholder,
textarea::placeholder,
select::placeholder,
button:not(.manu-toggler)::placeholder,
input[type="submit"]::placeholder,
input[type="button"]::placeholder {
  color: #bddceb;
}

input,
textarea,
select {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: 1px solid #324015;
  box-sizing: border-box;
  background: transparent;
}

input:hover,
input:focus,
textarea:hover,
textarea:focus,
select:hover,
select:focus {
  border: 1px solid #bddceb;
}

button:not(.manu-toggler),
input[type="submit"],
input[type="button"] {
  background: #324015;
  border: 1px solid #324015;
  color: #fff;
}

button:not(.manu-toggler):hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  border-color: #bddceb;
  background: #bddceb;
}

/* 装飾 */
b,
em,
strong {
  font-weight: bold;
}

em {
  font-style: normal;
  background: linear-gradient(transparent 50%, #c8bea1 50%);
}

strong {
  background: #feee7d;
}

hr {
  width: 50%;
  height: 3px;
  margin: 100px auto;
  border: 0;
  background: #324015;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-bold {
  font-weight: bold;
}

.text-small {
  font-size: smaller;
}

/* コンテンツエリア */
.area.area-icon {
  margin: 15px auto;
  width: 150px;
  height: 150px;
  overflow: hidden;
  object-fit: cover;
}

.area.area-icon img {
  object-fit: cover;
  max-width: 100%;
  min-height: 100%;
}

.area.area-icon.type-circle {
  border-radius: 50%;
}

.area.area-icon.type-rounded {
  border-radius: 8px;
}

.area.area-icon.size-sm {
  width: 100px;
  height: 100px;
}

.area.area-icon.size-lg {
  width: 200px;
  height: 200px;
}

.area.area-link a {
  display: inline-block;
  margin: 3px 1px;
  padding: 7px 10px;
  background: #f2f2f2;
  border-radius: 5px;
  color: #324015;
}

.area.area-link a::before {
  margin-right: 5px;
  font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands";
  font-weight: 900;
}

.area.area-link a i {
  margin-right: 5px;
}

.area.area-link a hr {
  margin: 5px 0;
  width: 100%;
  height: 1px;
  background: #ddd;
  border: 0;
}

.area.area-link.link-icon a,
.area.area-link.link-icon-circle a {
  width: 38px;
  text-align: center;
}

.area.area-link.link-icon a::before,
.area.area-link.link-icon-circle a::before {
  margin-right: 0;
}

.area.area-link.link-icon a i,
.area.area-link.link-icon-circle a i {
  margin-right: 0;
}

.area.area-link.link-icon-circle a {
  border-radius: 50%;
}

.area.area-link.link-block a {
  display: block;
  margin: 6px 1px;
}

.area.area-link.link-block + .link-column {
  margin-top: -3px;
}

.area.area-link.link-column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.area.area-link.link-column a {
  width: calc(50% - 4px);
}

.area.area-link.link-column + .link-block {
  margin-top: -3px;
}

.area.area-link.link-color a {
  color: #fff;
  background: #555;
}

.area.area-link.link-color a.twitter {
  background: #1da1f2;
}

.area.area-link.link-color a.facebook {
  background: #1877f2;
}

.area.area-link.link-color a.instagram {
  background: #e4405f;
}

.area.area-link.link-color a.tumblr {
  background: #39475d;
}

.area.area-link.link-color a.pinterest {
  background: #bd081c;
}

.area.area-link.link-color a.youtube {
  background: #da1725;
}

.area.area-link.link-color a.skype {
  background: #00b0f0;
}

.area.area-link.link-color a.discord {
  background: #5865f2;
}

.area.area-link.link-color a.steam {
  background: #1dafec;
}

.area.area-link.link-color a.marshmallow {
  background: #eb5158;
}

.area.area-link.link-color a.pixiv {
  background: #0096fa;
}

.area.area-link.link-color a hr {
  background: rgba(255, 255, 255, 0.3);
}

.area .web::before {
  content: "\f0ac";
}

.area .heart::before {
  content: "\f004";
}

.area .star::before {
  content: "\f005";
}

.area .bookmark::before {
  content: "\f02e";
}

.area .book::before {
  content: "\f02d";
}

.area .image::before {
  content: "\f03e";
}

.area .twitter::before,
.area .facebook::before,
.area .instagram::before,
.area .tumblr::before,
.area .pinterest::before,
.area .youtube::before,
.area .skype::before,
.area .discord::before,
.area .steam::before {
  font-weight: 400 !important;
}

.area .twitter::before {
  content: "\f099";
}

.area .facebook::before {
  content: "\f09a";
}

.area .instagram::before {
  content: "\f16d";
}

.area .tumblr::before {
  content: "\f173";
}

.area .pinterest::before {
  content: "\f0d2";
}

.area .youtube::before {
  content: "\f167";
}

.area .skype::before {
  content: "\f17e";
}

.area .discord::before {
  content: "\f392";
}

.area .steam::before {
  content: "\f1b6";
}

.area .marshmallow::before,
.area .pixiv::before {
  font-family: "icon-sns-espace" !important;
  font-weight: normal !important;
}

.area .marshmallow:before {
  content: "";
}

.area .pixiv:before {
  content: "";
}

/* スマホ設定 */
@media only screen and (max-width: 900px) {
  html::before,
  html::after {
    height: calc(100% - 40px);
    top: 20px;
  }

  html::before {
    left: 20px;
  }

  html::after {
    right: 20px;
  }

  body {
    margin: 0;
    padding: 0;
  }

  body::before,
  body::after {
    width: calc(100% - 40px);
    left: 20px;
  }

  body::before {
    top: 20px;
  }

  body::after {
    bottom: 20px;
  }

  body,
  button,
  input,
  textarea,
  select {
    font-size: 1.4rem;
    line-height: calc(1.4rem + 1.05rem);
  }

  header {
    width: calc(100% - 80px);
    height: auto;
  }

  main {
    width: calc(100% - 90px);
  }

  footer {
    width: calc(100% - 100px);
    min-height: 45px;
    padding: 0;
  }

  /* 見出し */
  h1 {
    position: fixed;
    top: -2px;
    left: 0;
    width: 100%;
    font-size: 4.2rem;
  }

  h2 {
    margin: 100px auto;
    padding: 100px 0 0 0;
    font-size: 2rem;
  }

  /* リスト */
  ul .description,
  ol .description {
    display: block;
    margin-left: 10px;
  }

  ul .description::before,
  ol .description::before {
    content: "└";
    margin-right: 10px;
  }

  dl.border dt,
  dl.border dd,
  dl.inline dt,
  dl.inline dd {
    display: block;
  }

  dl.border dt,
  dl.inline dt {
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }

  dl.border dd,
  dl.inline dd {
    width: 100%;
    padding-left: 40px;
  }

  /* フォーム */
  .form-inline input {
    width: 45%;
  }

  .form-block dl.inline dt {
    width: 100%;
  }

  .form-block dl.inline dd {
    width: calc(100% - 40px);
    padding-left: 40px;
  }

  .form-block > *,
  .form-block dl dd > * {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 5px;
  }
}

/* ----- ▲ レイアウト　ここまで ▲ ----- */

/* モーダルCSS */
.modalArea {
  display: none;
  position: fixed;
  z-index: 10;
  /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 500px;
  padding: 10px 30px;
  background-color: #fff;
}

.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}

.sample001 a img:hover {
  cursor: pointer;
}

.modalArea img {
  width: 100%;
  max-width: 100%;
}

.topimage {
  width: 100%;
  height: 100vw;
  background: url("/wanilo/common/images/test_img.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 10%;
  background-attachment: fixed;
}

/* メンバー */
.member em {
  font-size: 1.2em;
}

.member {
  text-align: center;
}

.sns-box {
  display: flex;
  justify-content: center;
}

.membaer .area.area-link a {
  background: #000 !important;
  color: #fff !important;
  font-size: 1.3em;
}

.member p {
  margin-top: 25px !important;
}

/* .wrapper {
  position: relative;
  height: 400px;
}

.inside {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
} */

/* #wl-top p {
  padding: 5%;
}

#wl-top button {
  margin-bottom: 5%;
  margin-left: 5%;
}

#wl-top .wrapper {
  background: #d7d7d7;
  border-radius: 8px;
  margin: 5% 0;
}

#wl-top .empty {
  padding: 1em;
} */
