@charset "utf-8";
@import 'https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap';
@import 'https://fonts.googleapis.com/css2?family=Italianno&display=swap';
/*-- templale by Luca --*/
/*-- https://as.lclla.com.com/ --*/
/*-- template name Overture --*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: 300;
  font-style: normal;
}
*::before, *::after {
  box-sizing: border-box;
}
*:focus {
  outline: none;
}
:root {
  --font-color: #747472;
  --sub-color: #4b534d;
  --point-color: #fff;
}
a {
  color: #d19775;
  text-decoration: none;
}
html {
  font-size: 62.5%;
  scrollbar-width: thin;
  scrollbar-color: rgba(117, 99, 67, 0.34) transparent;
}
html, body {
  height: 100%;
}
body {
  font: 1.3em/2.2 "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background: #f1ece9;
  color: var(--font-color);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  letter-spacing: 1.5px;
  user-select: none;  /* コピペ防止 */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background-color: transparent;
  border: none;
}
::-webkit-scrollbar-thumb {
  background: rgba(117, 99, 67, 0.34);
  box-shadow: none;
}
/* 重要性 */
strong {
  background: linear-gradient(transparent 80%, rgba(177, 118, 105, 0.59) 20%);
  font-weight: bold;
}
/* 画像 */
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
/* 水平線 */
hr {
  border-top: 1px dotted;
  margin: 10px 0;
}
/* 強調 */
em {
  background-color: #BA7788;
  color: var(--point-color);
  padding: 1px 2px;
}
/* newマーク */
.mark::after {
  content: "New";
  font-family: 'Noto Serif JP', serif;
  color: #D07B84;
  border-radius: 5px;
  padding: 0 5px;
  margin-left: 10px;
  font-size: .9em;
}
/* 日付 */
.dating {
  margin-right: 10px;
  background: rgba(255, 255, 255, 0.50);
}
/* サイト名 */
h1 {
  font: 2em 'Italianno', cursive;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(65, 64, 64, 0.25);
  box-shadow: 0px 0px 9px 4px rgba(79, 69, 56, 0.35) inset;
  border: 1px solid rgba(207, 207, 207, 0.72);
  margin-top: -50px;
  height: 200px;
  width: 200px;
}
h1 a {
  color: var(--point-color);
}
/* 見出し */
h2 {
  font: 1.5em 'Noto Serif JP', serif;
  text-align: center;
  position: relative;
  display: inline-block;
  margin: 50px 0;
  color: #766c60;
  z-index: -1;
}
h2::before {
  content: "◇";
  font-size: 2em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .2;
}
h3 {
  font: 1.8em 'Italianno', cursive;
  color: #908685;
  position: relative;
  width: 200px;
  text-align: center;
  background: #D5D5CC;
  border-left: 3px solid;
  border-right: 3px solid;
}
h3::before, h3::after {
  content: '';
  background: #908685;
  display: block;
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
}
h3::before {
  left: 3px;
}
h3::after {
  right: 3px;
}
h4 {
  font-weight: normal;
  display: inline-block;
  background: #716F6D;
  color: var(--point-color);
  line-height: 1.5;
  padding: 3px 8px;
  margin: 10px 0;
}
/* 全体 */
.all {
  padding: 0 4%;
}
/* ヘッダー */
header {
  position: fixed;
  background: #4b534d;
  height: 100%;
}
header::after, header::before {
  content: "";
  background: var(--sub-color);
  display: block;
  position: absolute;
  width: 1px;
  height: 75%;
  animation: Shutter_01 1.6s forwards;
}
header::after {
  top: 0;
  left: -10px;
  background: linear-gradient(to top, rgba(241, 236, 233, 0.42) 20%, #657369 100%);
}
header::before {
  bottom: 0;
  right: -10px;
  background: linear-gradient(to bottom, rgba(241, 236, 233, 0.42) 20%, #657369 100%);
}
.head_inner {
  background: url(annie-spratt.jpg) no-repeat top center/cover;
  filter: saturate(150%) contrast(110%);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 300px;
  height: 100%;
  margin: 0 25px;
}
.head_inner::after, .head_inner::before {
  content: "";
  background: #EADDCF;
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  animation: Shutter_02 1.6s forwards;
}
.head_inner::after {
  top: 0;
  left: -13px;
  background: linear-gradient(to top, rgba(251, 251, 251, 0.34) 20%, #F1ECE9 100%);
}
.head_inner::before {
  bottom: 0;
  right: -13px;
  background: linear-gradient(to bottom, rgba(251, 251, 251, 0.34) 20%, #F1ECE9 100%);
}
/* ヘッダー　アニメーション */
@keyframes Shutter_01 {
  0% {
    height: 0%;
  }
  75% {
    height: 75%;
  }
}
@keyframes Shutter_02 {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
/* メニュー */
.menu {
  list-style: none;
  bottom: 20px;
  position: absolute;
  width: 100%;
}
.menu li {
  display: flex;
  align-items: center;
  margin: 3px 10px;
  padding: 2px 5px;
  background: rgba(65, 64, 64, 0.25);
  box-shadow: 0px 0px 9px 4px rgba(79, 69, 56, 0.35) inset;
  border: 1px solid rgba(207, 207, 207, 0.72);
}
.menu li::before {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: rgba(207, 207, 207, 0.72);
}
.menu li a {
  color: #fff;
  line-height: 1;
  font-size: 1em;
  font-family: 'Noto Serif JP', serif;
  padding: 8px 9px;
}
/* メインコンテンツレイアウト */
.wrapper {
  margin-left: 400px;
  text-align: center;
}
section {
  margin: 50px auto;
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
}
section > .inner {
  flex: 1 0 50%;
  text-align: left;
}
.inner {
  width: 100%;
  min-width: 340px;
  padding: 0 10px;
  word-wrap: break-word;
}
.contents {
  margin: 20px 0;
}
/* 更新履歴*/
.update {
  display: grid;
  grid-template-columns: auto 1fr;
  overflow-y: scroll;
  width: 100%;
  height: 90px;
  border: 1px solid rgba(117, 99, 67, 0.20);
  scrollbar-width: thin;
  scrollbar-color: rgba(117, 99, 67, 0.34) transparent;
}
.update dt {
  padding-left: 8px;
}
.update dt::after {
  content: "─";
  margin: 0 15px;
  opacity: .4;
  letter-spacing: 0;
}
.update dd {}
/* 展示リスト 縦並び */
.main01 li {
  display: block;
}
/* 展示リスト 横並び */
.main02 {
  list-style: none;
}
.main02 li {
  display: inline;
}
.main02 li:not(:last-child):after {
  content: "|";
  padding: 0 2px 0 8px;
  opacity: .5;
  position: relative;
  top: -1px;
}
/* 展示リスト　番号付き */
ol {
  list-style-type: decimal-leading-zero;
  list-style-position: inside;
}
/* モーダルウィンドウ */
.modal_content_01, .modal_content_02 {
  list-style: none;
  margin-bottom: 10px;
}
.modal_content_01 li {
  color: #d19775;
  display: block;
  cursor: pointer;
  margin: 3px 0;
}
.modal_content_02 li {
  display: inline-block;
  margin: 5px 3px;
  cursor: pointer;
}
.modal_content_02 li img {
  height: 60px;
  width: 60px;
  object-fit: cover;
}
.modal {
  display: none;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
.modal_bg {
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
}
.img_content img {
  max-height: 75%;
  max-width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  vertical-align: initial;
}
/* アバウトリンク */
.link_list {
  display: grid;
  grid-template-columns: auto 1fr;
  margin-bottom: 20px;
  line-height: 2.5;
}
.link_list dt {
  margin-bottom: 8px;
  padding: 0 8px;
  background: #E4E1DF;
}
.link_list dd {
  margin-left: 20px;
}
.link li {
  display: inline-block;
  margin: 5px 2px;
}
.link li a {
  border-bottom: 1px solid;
}
/* 名前変換 + フォーム */
.name_change {
  text-align: left;
  width: 100%;
  padding-left: 10px;
  margin-bottom: 20px;
}
.name_change h4 {
  text-align: center;
  display: table;
  margin-bottom: 10px;
}
.name_change input[type="text"] {
  width: 100px;
}
.name_change input[type="submit"], .name_change input[type="reset"] {
  width: 75px;
  cursor: pointer;
}
.name_change input[type="submit"]:hover, .name_change input[type="reset"]:hover {
  background: #dfe0dd;
  transition: .6s;
}
form p {
  display: inline-block;
  font-size: .85em;
  margin-bottom: 10px;
  padding: 0 5px;
  background: #E4E1DF;
}
input[type="text"], input[type="submit"], input[type="reset"], textarea, button {
  font-family: inherit;
  letter-spacing: 2px;
  height: initial;
  width: 25%;
  margin-bottom: 20px;
  color: var(--sub-color);
  padding: 6px;
  border: 1px solid;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  box-shadow: none;
  background: #F1ECE9;
}
textarea {
  scrollbar-width: thin;
  scrollbar-color: rgba(117, 99, 67, 0.34) transparent;
}
input::placeholder, textarea::placeholder {
  font-family: inherit;
  letter-spacing: 2px;
  color: rgba(89, 73, 66, 0.50);
  letter-spacing: 1px;
}
input:focus::placeholder, textarea:focus::placeholder {
  color: transparent;
  transition: 0.4s;
}
.name, .mail, .comment {
  width: 100%;
}
.comment {
  height: 90px;
  display: block;
}
.btn {
  width: 100%;
  cursor: pointer;
}
.btn:hover {
  background: var(--sub-color);
  color: var(--point-color);
  transition: .6s;
}
.radioArea {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
}
.radioArea input[type="radio"] {
  height: 13px;
  display: none;
}
/*  チェックボックス直後のlabel */
.radioArea input[type="radio"] + label {
  width: calc(100% / 3);
  text-align: center;
  padding: 2px 5px;
  margin-right: 8px;
  border: 1px solid var(--sub-color);
  cursor: pointer;
}
.radioArea input[type="radio"] + label:last-child {
  margin-right: initial;
}
/* チェックボックス直後 */
.radioArea input[type="radio"]:checked + label {
  background: var(--sub-color);
  color: var(--point-color);
}
/* チェックボックス hover*/
.radioArea input[type="radio"]:not(:checked) + label:hover {
  background: #dfe0dd;
  color: var(--sub-color);
  transition: .6s;
}
/* 装飾ボックス */
.box {
  background: rgba(227, 224, 224, 0.52);
  box-shadow: 0px 0px 10px 4px rgba(79, 69, 56, 0.19) inset;
  border: 1px solid rgba(167, 151, 151, 0.70);
  padding: 10px;
  margin: 10px 0;
  width: inherit;
}
/* topへ戻るボタン */
#top-btn a {
  position: fixed;
  display: block;
  bottom: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  margin: 10px;
  border-top: 4px solid #7B877E;
  border-left: 4px solid #7B877E;
  transform: rotate(45deg);
}
/* フッター */
footer {
  text-align: center;
  padding: 20px;
}
footer li {
  display: inline-block;
}
footer a {
  margin: 0 5px;
}
@media screen and (min-width:821px) and (max-width: 1024px) {
  .head_inner {
    width: 230px;
  }
  .wrapper {
    margin-left: 320px;
  }
}
/* メディアクエリ ＋　タブレット*/
@media screen and (max-width: 820px) {
  body {
    font-size: 1.5em;
  }
  .all {
    padding: initial;
    position: relative;
  }
  .header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    margin: 20px;
    height: 90vh;
    bottom: 80px;
  }
  .header::before, .header::after {
    content: '';
    animation: unset;
    display: none;
  }
  .head_inner {
    background-position: center 50%;
    width: 400px;
    height: 400px;
    box-shadow: 0 0 8px rgba(100, 63, 42, 0.81);
  }
  .head_inner::before, .head_inner::after {
    content: '';
    animation: unset;
    display: none;
  }
  .menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    top: 110%;
    width: 400px;
  }
  .menu li {
    display: block;
    text-align: center;
    box-shadow: initial;
    margin: 5px;
    width: 200px;
  }
  .menu li a {
    display: block;
    letter-spacing: 1px;
  }
  .menu li::before {
    content: '';
    display: none;
  }
  h1 {
    padding: 5px;
    margin: 10px 0;
    height: 180px;
    width: 180px;
  }
  h3 {
    width: 250px;
  }
  .wrapper {
    margin: 100px 0 0 0;
    padding: 0 15px;
  }
}
/* メディアクエリ　＋　スマホ */
@media screen and (max-width: 600px) {
  body {
    font-size: 1.3em;
  }
  .header {
    display: flex;
    justify-content: center;
    align-items: baseline;
    top: 60px;
  }
  .head_inner {
    width: 250px;
    height: 250px;
  }
  .menu {
    width: 200px;
  }
  section {
    margin: 50px auto 10px;
  }
  .inner {
    padding: 0 5px;
  }
  .contents {
    margin: 20px 5px;
  }
  h1 {
    height: 130px;
    width: 130px;
  }
  h3 {
    width: 100%;
  }
}
@media (orientation: landscape) and (max-width: 823px) {
  body {
    font-size: 1.3em;
  }
  .wrapper {
    margin: 150px 0 0 0;
  }
  .header {
    bottom: 50px;
  }
  .head_inner {
    width: 200px;
    height: 200px;
  }
  h1 {
    height: 120px;
    width: 120px;
  }
}

.book {
    font-family: "Noto Serif JP", "Cormorant Garamond", "Cormorant Garamond", serif;
    font-size: 16px;
    font-weight: normal;
    margin: 0 auto;
    max-width: 100%;
    width: 90%;
}

.book p {
    font-size: 15px;
    margin-bottom: 25px;
}

.ft {
    text-align: center;
    margin-bottom: 20px;
}

.ft span {
    text-decoration: line-underline;
    padding: 2px 5px;
    margin: 0 5px;
}

summary {
  list-style: none; /* 三角を非表示 */
  cursor: pointer;
  position: relative;
  padding: 10px 35px 10px 20px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before {
  content: "";
  width: 14px;
  height: 0;
  border-top: solid 2px #cbb994;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

summary::after {
  content: "";
  width: 0;
  height: 14px;
  border-right: solid 2px #cbb994;
  position: absolute;
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
}

details[open] summary::after {
  opacity: 0;
}

.details_content {
  padding: 0 20px 10px;
}

img[src="key.png"] {
    vertical-align: middle !important; /* 文字の中央に揃える */
    margin: 0 2px; /* テキストとの間隔 */
}

img[src="icon-fountain-pen.png"] {
    vertical-align: middle !important; /* 文字の中央に揃える */
    margin: 0 2px; /* テキストとの間隔 */
}

.newiine_btn {
    min-width: 70px !important; /* PCでの最小幅 */
    max-width: 70px !important; /* PCでの最大幅 */
}

/* スマホ対応（max-width: 600px以下）- 幅を広げる */
@media screen and (max-width: 600px) {
    .newiine_btn {
        min-width: 70px !important; /* スマホで幅を広げる */
        max-width: 70px !important; /* 最大幅も広めに */
    }
}

/* 更に小さい画面用（max-width: 480px以下）*/
@media screen and (max-width: 480px) {
    .newiine_btn {
        min-width: 70px !important; /* 小さい画面でも十分な幅 */
        max-width: 70px !important;
    }
}

.ft {
    width: 100% !important;
    max-width: none !important;
}

.block {
    width: 100% !important;
    max-width: none !important;
}

.newiine_btn {
    height: auto !important;
    width: 50px !important;
    cursor: pointer !important;
    background: #d19775 !important;
    border: solid 1px #d19775 !important;
    color: #F1ECE9 !important;
    font-weight: 200 !important;
    font-family: 'Dosis', 'Noto Sans JP', 'メイリオ', sans-serif !important;
    padding: 5px 10px !important;
    margin: 3px 0 !important;
    text-align: center !important;
    display: inline-block !important;
    border-radius: 5px !important;
    -webkit-transition: all 0.3s ease !important;
    transition: all 0.3s ease !important;
}

.newiine_btn:hover {
    background: #d19775 !important;
    color: #fff !important;
    -webkit-transition: all 0.3s ease !important;
    transition: all 0.3s ease !important;
}

.newiine_btn,
.newiine_btn * {
    background: #d19775 !important;
    border-color: #d19775 !important;
    color: #F1ECE9 !important;
}