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

  利用規約を遵守の上、ご利用ください。
  二次配布、販売は禁止しています。
  --------------------------------------------------*/
/* ----- ▼ CSS変数設定 ここから ▼ ----- */
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri&display=swap');
@import url("https://fonts.googleapis.com/css2?family=La+Belle+Aurore&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
:root {
  --white: #fff;
  --gray: #ccc;
  --theme-color1-light: #fff9ee;
  --theme-color1-default: #fbfdff;
  --theme-color2-light: #6DBEF4;
  --theme-color2-light-op: rgba(252, 175, 134, 0.65);
  --theme-color2-default: #4682a8;
  --theme-color3-light: #6B859F;
  --theme-color4-light: #81bdfd;
  --theme-color4-default: #66b1ff;
  --text-color: #433c44;
  --bg-color: var(--theme-color1-default);
  --required-color: var(--theme-color4-default);
  --gradient: linear-gradient(to right, var(--theme-color2-light), var(--theme-color3-light));
}

@media (prefers-color-scheme: dark) {
  :root {
    --white: #fff;
    --theme-color1-light: #196064;
    --theme-color1-default: #0d4146;
    --theme-color2-light: #508b97;
    --theme-color2-light-op: rgba(80, 139, 151, 0.65);
    --theme-color2-default: #81aab2;
    --theme-color3-light: #dca456;
    --theme-color4-light: #9484b0;
    --theme-color4-default: #a388d1;
    --text-color: #d8c4ad;
  }
}
/* ----- ▲ CSS変数設定 ここまで ▲ ----- */
/* ----- ▼ リセット　ここから（基本的には触らない方が良い部分） ▼ ----- */
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

/*
  Add by espace
*/
* {
  word-break: break-all;
}

:focus {
  outline: none;
}

html {
  font-size: 62.5%;
}

body {
  word-wrap: break-word;
}

a,
button {
  cursor: pointer;
}

a {
  text-decoration: none;
}

img {
  vertical-align: middle;
}

p,
dl,
ul,
ol,
form {
  margin: 2.5rem 0;
}

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

/* ----- ▲ リセット　ここまで（基本的には触らない方が良い部分） ▲ ----- */
/* ----- ▼ PCレイアウト　ここから ▼ ----- */
/* 基本 */
a,
a::after,
a::before,
button,
button::after,
button::before,
input,
textarea,
select {
  transition: all 0.7s;
}

body,
button,
input,
textarea,
select {
  font: 500 1.6rem/2.65rem "Yu Gothic", Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
  color: var(--text-color);
}

body {
  background: var(--bg-color);
}
body.get-header main {
  margin: 0 auto 0 calc(300px + 20rem);
}

header {
  position: fixed;
  bottom: 10%;
  left: 0;
  width: 300px;
  height: 80%;
  padding: 0 5rem;
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  border-radius: 0 100px;
  z-index: -1;
}

main {
  width: calc(100% - 300px - 40rem);
  margin: 0 auto;
}
main.width-sm > * > *:not(h2):not(h3) {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

article {
  position: relative;
  margin: 100px auto;
}
article::before {
  content: "";
  position: absolute;
  top: 3px;
  left: -10rem;
  display: block;
  width: 1px;
  height: 100%;
  background: var(--theme-color2-light);
}
article > h2:first-child + * {
  margin-top: -33px;
}

footer {
  text-align: right;
  padding: 25px 50px;
}

/* メニュー */
.menu ul li {
  font: 500 1.6rem/1 "Zen Maru Gothic", "La Belle Aurore", "Yu Gothic", Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
  letter-spacing: 0.25rem;
}
.menu ul li a {
  position: relative;
  display: block;
  padding: 1.5rem 0;
  color: var(--white);
}
.menu ul li a::before, .menu ul li a::after {
  content: "";
  position: absolute;
  display: block;
}
.menu ul li a::before {
  top: calc(50% - 5px);
  left: -3rem;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-left-width: 8px;
  border-right-width: 8px;
  border-left-color: var(--white);
  opacity: 0;
}
.menu ul li a::after {
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--white);
}
.menu ul li a:hover::before {
  left: -1.5rem;
  opacity: 1;
}
.menu ul li a:hover::after {
  width: 100%;
}

.manu-toggler {
  display: none;
}

.fixed-menu {
  position: fixed;
  bottom: 2.5rem;
  right: 0;
  z-index: 1;
}
.fixed-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
}
.fixed-menu ul li.next::before {
  content: none;
}
.fixed-menu a,
.fixed-menu button,
.fixed-menu span {
  position: relative;
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--theme-color1-light) !important;
  color: var(--theme-color2-light) !important;
}
.fixed-menu a::before,
.fixed-menu button::before,
.fixed-menu span::before {
  font: 900 14px/1 "font awesome 6 pro";
  transition: none;
}
.fixed-menu a::after,
.fixed-menu button::after,
.fixed-menu span::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 50% 0 0 50%;
  background: var(--gradient);
  z-index: -1;
}
.fixed-menu a:hover,
.fixed-menu button:hover {
  background: transparent !important;
  color: var(--white) !important;
}
.fixed-menu span {
  color: var(--gray) !important;
}
.fixed-menu span::after {
  filter: grayscale(1);
  opacity: 0.5;
}
.fixed-menu li.pagetop a::before,
.fixed-menu li.pagetop button::before,
.fixed-menu li.pagetop span::before {
  content: "\f102";
  font-weight: 900;
}
.fixed-menu li.prev a::before,
.fixed-menu li.prev button::before,
.fixed-menu li.prev span::before {
  content: "\f104";
  font-weight: 900;
}
.fixed-menu li.next a::before,
.fixed-menu li.next button::before,
.fixed-menu li.next span::before {
  content: "\f105";
  font-weight: 900;
}
.fixed-menu li.home a::before,
.fixed-menu li.home button::before,
.fixed-menu li.home span::before {
  content: "\e3af";
  font-weight: 900;
}
.fixed-menu li.toc a::before,
.fixed-menu li.toc button::before,
.fixed-menu li.toc span::before {
  content: "\f0ca";
  font-weight: 900;
}
.fixed-menu li.characters a::before,
.fixed-menu li.characters button::before,
.fixed-menu li.characters span::before {
  content: "\f0c0";
  font-weight: 900;
}
.fixed-menu li.images a::before,
.fixed-menu li.images button::before,
.fixed-menu li.images span::before {
  content: "\e413";
  font-weight: 900;
}

/* 見出し */
h1 {
  margin: -14px 0 0 0;
  font: 400 46px/1  'Hind Siliguri' , "Yu Gothic", Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
  text-shadow: 2px 2px 1px var(--theme-color2-light), -2px 2px 1px var(--theme-color2-light), 2px -2px 1px var(--theme-color2-light), -2px -2px 1px var(--theme-color2-light), 2px 0px 1px var(--theme-color2-light), 0px 2px 1px var(--theme-color2-light), -2px 0px 1px var(--theme-color2-light), 0px -2px 1px var(--theme-color2-light);
}
h1 a {
  display: inline-block;
  color: var(--white);
}
h1 a:hover {
  color: var(--white);
  animation: animateh1 0.5s ease-out;
}

@keyframes animateh1 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}
h2,
h3 {
  font: 400 1.6rem/1 Zen Maru Gothic, La Belle Aurore, Yu Gothic, Meiryo, Hiragino Kaku Gothic ProN, sans-serif;
  color: var(--theme-color2-default);
  letter-spacing: 2px;
}

h2 {
  position: sticky;
  top: 0;
  left: 0;
  display: inline-block;
  margin: 0 0 0 calc(-10rem + 14px);
  padding-right: 5px;
  background: var(--bg-color);
  transform: rotate(90deg);
  transform-origin: top left;
}
h2::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--theme-color2-default);
}

h3 {
  position: relative;
  margin: 100px auto;
}
h3:after {
  content: "";
  position: absolute;
  left: -10rem;
  top: 50%;
  display: block;
  width: 9rem;
  height: 1px;
  background-color: var(--theme-color2-light);
  z-index: -1;
}

h4,
h5,
h6 {
  font: 500 2rem/1 "Zen Maru Gothic", "La Belle Aurore", "Yu Gothic", Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
}
h4 span,
h5 span,
h6 span {
  position: relative;
  display: inline-block;
  padding-bottom: 2rem;
}
h4 span::after,
h5 span::after,
h6 span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 6px;
  border-radius: 3px;
}

h4 {
  margin: 8rem auto 6rem;
}
h4 span::after {
  background: var(--gradient);
}

h5,
h6 {
  margin: 6rem auto 4rem;
  font-size: 1.6rem;
}
h5 span::after {
  background: var(--theme-color2-light);
}

h6 span::after {
  background: var(--theme-color3-light);
}

/* リスト */
ul.no-style, ol.no-style {
  padding: 0;
  list-style: none;
}
ul.column, ol.column {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
ul.column > *, ol.column > * {
  margin: 0 !important;
}
ul.column.gap, ol.column.gap {
  gap: 5px 25px;
}
ul.column.column-2 > *, ol.column.column-2 > * {
  width: calc((100% - 25px) / 2) !important;
}
ul.column.column-3 > *, ol.column.column-3 > * {
  width: calc((100% - 50px) / 3) !important;
}
ul .description, ol .description {
  margin-left: 10px;
}
ul .description::before, ol .description::before {
  content: "…";
  margin-right: 10px;
}

dl dd {
  padding-left: 5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
}
dl dd:last-of-type {
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
}
dl.inline {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 0;
}
dl.inline dt, dl.inline dd {
  margin-bottom: 0;
  padding-bottom: 1.25rem;
}
dl.inline dt:last-of-type, dl.inline dd:last-of-type {
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
}
dl.inline dt {
  width: 200px;
}
dl.inline dd {
  width: calc(100% - 200px);
  padding-left: 0;
}

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: var(--theme-color2-light);
}
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 dd {
  border-bottom: 1px solid var(--theme-color2-light);
}
dl.inline dt,
dl.inline dd {
  border-bottom: 1px solid var(--theme-color2-light);
}
dl.border {
  padding: 15px 20px;
  border: 1px solid var(--theme-color2-light);
  border-radius: 25px;
}
dl.timeline {
  display: flex;
  flex-wrap: wrap;
}
dl.timeline dt, dl.timeline dd {
  margin: 0;
  padding: 10px;
  border: 0;
}
dl.timeline dt {
  width: 100px;
  padding-right: 20px;
  text-align: right;
}
dl.timeline dd {
  position: relative;
  width: calc(100% - 100px);
  padding-left: 20px;
  border-left: 3px solid var(--theme-color2-light);
}
dl.timeline dd::before {
  content: "";
  position: absolute;
  top: 18px;
  left: -8px;
  display: block;
  width: 14px;
  height: 14px;
  background: var(--bg-color);
  border: 3px solid var(--theme-color2-light);
  border-radius: 7px;
}

/* フォーム */
.required::after {
  content: "*";
  color: var(--required-color);
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-block dl dt,
.form-block dl dd {
  margin: 0;
  padding: 0;
  border-bottom: 0;
}
.form-block dl dd > * {
  margin: 0;
}
.form-block dl.inline {
  gap: 1.25rem 0;
}
.form-block dl.inline dt {
  width: 130px;
}
.form-block dl.inline dd {
  width: calc(100% - 130px);
}
.form-block > *,
.form-block dl dd > * {
  width: 100%;
}

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

input,
textarea,
select {
  border: 1px solid var(--theme-color4-light);
  background: transparent;
}
input:hover, input:focus,
textarea:hover,
textarea:focus,
select:hover,
select:focus {
  border-color: var(--theme-color2-default);
}

main button:not(.manu-toggler),
main input[type=submit],
main input[type=button] {
  overflow: hidden;
  position: relative;
  border: 1px solid var(--theme-color4-light);
  background: transparent;
  color: var(--theme-color4-default);
  font-weight: bold;
  min-width: 38.5px;
}
main button:not(.manu-toggler)::before,
main input[type=submit]::before,
main input[type=button]::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, var(--theme-color4-light) 0%, var(--theme-color4-light) 50%, transparent 50%, transparent 100%);
  z-index: -1;
}
main button:not(.manu-toggler):hover,
main input[type=submit]:hover,
main input[type=button]:hover {
  color: var(--theme-color1-light);
}
main button:not(.manu-toggler):hover::before,
main input[type=submit]:hover::before,
main input[type=button]:hover::before {
  right: -100%;
}

/* リンク */
a.arrow::before, span.arrow::before {
  content: "\f054";
  margin-right: 5px;
  font-family: "font awesome 6 pro";
  font-weight: 900;
  vertical-align: middle;
}
a.btn, span.btn {
  display: inline-block;
  overflow: hidden;
  padding: 5px 7px;
  font-weight: bold;
  border-radius: 25px;
  border: 1px solid var(--theme-color4-light);
  background: var(--theme-color1-light);
  color: var(--theme-color4-default);
}
a.btn.btn-block, span.btn.btn-block {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
}
a.btn.btn-arrow::after, span.btn.btn-arrow::after {
  content: "\f054" !important;
  margin-left: 5px;
  margin-right: 5px;
  font-family: "font awesome 6 pro";
  font-weight: 900;
  vertical-align: middle;
  height: 0;
}
a.btn.btn-arrow.btn-block, span.btn.btn-arrow.btn-block {
  position: relative;
  padding-right: 30px;
}
a.btn.btn-arrow.btn-block::after, span.btn.btn-arrow.btn-block::after {
  position: absolute;
  right: 10px;
}

span.btn, span.btn-block {
  opacity: 0.5;
}

a.btn, a.btn-block {
  position: relative;
  background: transparent;
}
a.btn::before, a.btn-block::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, var(--theme-color4-light) 0%, var(--theme-color4-light) 50%, var(--theme-color1-light) 50%, var(--theme-color1-light) 100%);
  z-index: -1;
}
a.btn:hover, a.btn-block:hover {
  color: var(--theme-color1-light);
}
a.btn:hover::before, a.btn-block:hover::before {
  right: -100%;
}

main a:not(.btn):not(.img), footer a:not(.btn):not(.img) {
  display: inline-block;
  position: relative;
  color: var(--theme-color4-default);
}
main a:not(.btn):not(.img):hover, footer a:not(.btn):not(.img):hover {
  color: var(--theme-color2-default);
}
main a.img:hover, footer a.img:hover {
  opacity: 0.75;
}

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

em {
  font-style: normal;
  background: linear-gradient(transparent 50%, var(--theme-color2-light) 50%);
}

strong {
  background: var(--theme-color2-light);
}

hr {
  margin: 100px auto;
  width: 100px;
  height: 5px;
  border: 0;
  border-radius: 5px;
  background: var(--gradient);
}

.box {
  padding: 25px;
  border: 1px solid var(--theme-color2-light);
  border-radius: 25px;
}

/* nvl */
.nvl {
  display: flex;
  flex-direction: column;
  gap: 66px;
}
.nvl > div {
  position: relative;
  padding: 15px 25px;
  border: 1px solid var(--theme-color2-light);
  border-radius: 25px;
}
.nvl > div[data-title]::after {
  content: attr(data-title);
  position: absolute;
  top: -13px;
  left: 20px;
  padding: 0 5px;
  background: var(--bg-color);
  color: var(--theme-color2-light);
}
.nvl > div p {
  margin: 15px auto;
}
.nvl > div hr {
  margin: 50px auto;
}
.nvl > div dl dt, .nvl > div dl dd {
  margin-bottom: 15px;
}
.nvl > div dl dt {
  display: inline-block;
  width: auto;
  border-bottom: 2px solid var(--theme-color2-light);
}
.nvl > div dl dt::before {
  font-family: "font awesome 6 pro";
  font-weight: 900;
  margin-right: 10px;
}
.nvl > div dl.nvl-ic-character > dt::before {
  content: "\f007";
}
.nvl > div dl.nvl-ic-bookmark > dt::before {
  content: "\f02e";
}
.nvl > div dl.inline {
  width: calc(100% - 5rem);
}
.nvl > div dl.inline .nvl-toc {
  margin: 0 !important;
}
.nvl > div dl.inline dt, .nvl > div dl.inline dd {
  padding-bottom: 25px;
}
.nvl > div dl.inline dt:last-of-type, .nvl > div dl.inline dd:last-of-type {
  margin-bottom: 0;
}
.nvl > div dl.inline dt {
  width: 200px;
  border-bottom-width: 1px;
}
.nvl-tags, .nvl-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  list-style: none;
}
.nvl-tags {
  justify-content: end;
  margin: 0;
  font-size: 1.2rem;
}
.nvl-tags li {
  padding: 0 7px;
  border: 1px solid var(--theme-color2-light);
  border-radius: 15px;
}
.nvl-toc a {
  position: relative;
  display: block !important;
  min-width: 30px;
  padding: 0 7px;
  text-align: center;
  border: 1px solid var(--theme-color2-light);
  border-radius: 25px;
  overflow: hidden;
}
.nvl-toc a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, var(--theme-color2-light) 0%, var(--theme-color2-light) 50%, var(--bg-color) 50%, var(--bg-color) 100%);
  z-index: -1;
}
.nvl-toc a:hover {
  color: var(--bg-color) !important;
}
.nvl-toc a:hover::before {
  left: 0;
}
.nvl-toc a:hover span {
  border-color: var(--bg-color);
}
.nvl-toc a span {
  border-left: 1px solid var(--theme-color2-light);
  margin-left: 7px;
  padding-left: 7px;
  font-size: 1.2rem;
  color: var(--text-color);
  transition: all 0.7s;
}

.column {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin: 2.5rem auto;
}
.column > * {
  margin: 0 !important;
}
.column.column-2 > * {
  width: calc((100% - 25px) / 2) !important;
}
.column.column-3 > * {
  width: calc((100% - 50px) / 3) !important;
}

.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;
}
.text-large {
  font-size: larger;
}

[data-tc-content] > * {
  transition: all 0.7s;
  filter: blur(10px);
}
[data-tc-content].tc-yes > * {
  filter: none;
}

.tc-modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: var(--theme-color2-light-op);
  transition: all 0.7s;
  z-index: 99;
}
.tc-modal.open {
  visibility: visible;
  opacity: 1;
}
.tc-modal .tc-modal-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 300px;
  max-width: 500px;
  margin: 0 30px;
  padding: 25px;
  border-radius: 25px;
  background: var(--bg-color);
  text-align: center;
}
.tc-modal .tc-modal-inner .tc-btn-area {
  display: flex;
  gap: 15px;
  justify-content: center;
}
.tc-modal .tc-modal-inner .tc-btn-area .tc-btn {
  display: block;
  box-sizing: border-box;
  width: 30%;
  padding: 10px 15px;
  border: 0;
  border-radius: 25px;
  color: var(--bg-color);
  line-height: 1;
  cursor: pointer;
  transition: all 0.7s;
}
.tc-modal .tc-modal-inner .tc-btn-area .tc-btn:hover {
  opacity: 0.5;
}
.tc-modal .tc-modal-inner .tc-btn-area .tc-btn.tc-btn-yes {
  background: var(--theme-color4-light);
}
.tc-modal .tc-modal-inner .tc-btn-area .tc-btn.tc-btn-no {
  background: var(--theme-color2-light);
}

@media only screen and (max-width: 550px) {
  .tc-modal .tc-modal-inner {
    padding: 25px 0;
  }
}
/* インデックス */
/* インデックス */
#INDEX main,
#INDEX footer {
  width: auto;
  max-width: 500px;
  margin: 0 auto;
}
#INDEX main h1,
#INDEX footer h1 {
  text-align: center;
}
#INDEX main h1 a,
#INDEX footer h1 a {
  color: var(--white);
}
#INDEX main h1 a:hover,
#INDEX footer h1 a:hover {
  color: var(--white);
}
#INDEX footer {
  text-align: center;
}
#INDEX article::before {
  content: none;
}

@media only screen and (max-width: 1280px) {
  body.get-header main {
    margin: 0 auto 0 calc(300px + 10rem);
  }
  main {
    width: calc(100% - 300px - 20rem);
  }
  article::before {
    left: -5rem;
  }
  h2 {
    margin: 0 0 0 calc(-5rem + 14px);
  }
  h3 {
    margin: 5rem 0;
  }
  h3:after {
    left: -5rem;
    width: 4.5rem;
  }
}
/* ----- ▲ PCレイアウト　ここまで ▲ ----- */
/* ----- ▼ SPレイアウト　ここから ▼ ----- */
@media only screen and (max-width: 1024px) {
  /* 基本 */
  body,
button,
input,
textarea {
    font-size: 1.6rem;
    line-height: 2.65rem;
  }
  body.get-header main {
    margin: auto 4rem auto;
  }
  header {
    position: relative;
    bottom: auto;
    width: calc(100% - 4rem);
    height: auto;
    margin: 2rem auto;
    padding: 0;
  }
  header::before {
    border-radius: 0 50px;
  }
  main {
    width: calc(100% - 8rem);
    margin: auto;
  }
  article::before {
    left: -2rem;
  }
  article > h2:first-child + * {
    margin-top: -25px;
  }
  /* メニュー */
  /* メニュー */
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 2rem;
    text-align: center;
    background: var(--theme-color2-light-op);
    transition: all 0.7s;
    visibility: hidden;
    opacity: 0;
    z-index: 0;
  }
  .menu ul {
    width: 100%;
  }
  .menu ul li a {
    font-size: 2rem;
    text-shadow: 2px 2px 3px var(--theme-color2-light), -2px 2px 3px var(--theme-color2-light), 2px -2px 3px var(--theme-color2-light), -2px -2px 3px var(--theme-color2-light), 2px 0px 3px var(--theme-color2-light), 0px 2px 3px var(--theme-color2-light), -2px 0px 3px var(--theme-color2-light), 0px -2px 3px var(--theme-color2-light);
  }
  .menu ul li a::before, .menu ul li a::after {
    content: none;
  }
  .menu.open {
    visibility: visible;
    opacity: 1;
    z-index: 98;
  }
  .manu-toggler {
    position: fixed;
    top: calc(2rem + 23px);
    right: calc(2rem - 15px);
    display: block;
    gap: 5px;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    background: transparent;
    filter: drop-shadow(0 0 2px var(--theme-color3-light));
    z-index: 99;
  }
  .manu-toggler span {
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.7s;
  }
  .manu-toggler span:nth-child(1) {
    top: 6px;
    width: 100%;
  }
  .manu-toggler span:nth-child(2) {
    top: 13px;
    width: 80%;
  }
  .manu-toggler span:nth-child(3) {
    top: 20px;
    width: 60%;
  }
  .manu-toggler.open span:nth-child(1), .manu-toggler.open span:nth-child(3) {
    top: 13px;
    width: 100%;
  }
  .manu-toggler.open span:nth-child(1) {
    transform: rotate(45deg);
  }
  .manu-toggler.open span:nth-child(3) {
    transform: rotate(-45deg);
  }
  .manu-toggler.open span:nth-child(2) {
    display: none;
  }
  .manu-toggler.scroll {
    filter: drop-shadow(0 0 2px var(--theme-color2-default));
  }
  /* 見出し */
  h1 {
    margin: auto;
    padding: 2rem 0 1rem;
  }
  h2 {
    margin: 0 0 0 calc(-2rem + 14px);
  }
  h3:after {
    left: -2rem;
    width: 1.8rem;
  }
  /* リスト */
  ul.no-style, ol.no-style {
    padding: 0;
    list-style: none;
  }
  ul.column, ol.column {
    display: flex;
    flex-direction: column;
  }
  ul.column.column-2 > *, ul.column.column-3 > *, ol.column.column-2 > *, ol.column.column-3 > * {
    width: 100% !important;
  }
  ul .description, ol .description {
    display: block;
    margin-left: 10px;
  }
  ul .description::before, ol .description::before {
    content: "└";
    margin-right: 10px;
  }
  dl.border, dl.inline {
    display: block;
  }
  dl.border dt, dl.border dd, dl.inline dt, dl.inline dd {
    width: 100%;
  }
  dl.border dt, dl.inline dt {
    padding-bottom: 0;
    border-bottom: 0;
  }
  dl.border dd, dl.inline dd {
    padding-left: 5rem;
    margin-bottom: 1.25rem;
  }
  dl.border dd:last-of-type, dl.inline dd:last-of-type {
    margin-bottom: 0;
  }
  /* フォーム */
  .form-inline input {
    width: 40%;
  }
  .form-block dl {
    flex-direction: column;
  }
  .form-block dl.inline dt, .form-block dl.inline dd {
    width: 100%;
  }
  /* リンク */
  /* 装飾 */
  .nvl > div dl.inline dt {
    display: inline-block;
    width: auto !important;
    padding-bottom: 0;
    padding-right: 0;
    border-bottom: 2px solid var(--theme-color2-light) !important;
    margin-bottom: 15px;
  }
  .nvl > div dl.inline dt:last-of-type {
    margin-bottom: 15px;
  }
  .column.column-sp-1 > * {
    width: 100% !important;
  }
  .column.column-sp-2 > * {
    width: calc((100% - 25px) / 2) !important;
  }
  .column.column-sp-3 > * {
    width: calc((100% - 50px) / 3) !important;
  }
  /* インデックス */
  /* インデックス */
  #INDEX main,
#INDEX footer {
    width: calc(100% - 50px);
  }
}
/* ----- ▲ SPレイアウト　ここまで ▲ ----- */

/* -- 以下、ｃｃss追加 --*/

.fixed-menu .clap a::before, .fixed-menu .clap button::before {
  content: "\f004";
}

.fixed-menu .set a::before, .fixed-menu .set button::before {
  content: "\f013";
}

.area.area-diary .fld
{text-align:right;
 font-size:1.2rem}


.area.area-diary .fld::before
{content:"\f07b";margin-right:3px;font-family:"font awesome 6 pro";font-weight:500}


/* 展示リスト */
.list, .list-ss{list-style: none;padding: 0;}
.list li a{margin-right: 10px;margin-left: 3px;}
.list-caption dd{margin-left: 1.5em;color: #666;}
.list-slash dt {float: left;width: 8em;height:auto;}
.list-slash dd {margin: 0 0 5px 8em;padding-left: 1em;}
.list-ss li{display: inline;margin-right: 10px;margin-left: 3px;}
.list-ss li:last-child{border: none;}

ins {text-decoration: none;}
ins a{
  text-decoration: none;
}
ins::after {content: "new!";background-color: var(--theme-color1); color:var(--color-white); margin-left: 0.3em;}

.l1::before{
  content:"\f004";
  margin-left:5px;
  color: #ffd000;
  font-family:"font awesome 6 pro";
  font-weight:900
}

.l1::after{
  content:"1";
  color: #ffd000;
}

.l0::before{
  content:"\f7a9";
  margin-left:5px;
  color: #808ab3;
  font-family:"font awesome 6 pro";
  font-weight:900
}

.l0::after{
  content:"0";
  color: #808ab3;
}

.l2::before{
  content:"\f004";
  margin-left:5px;
  color: #ffa399;
  font-family:"font awesome 6 pro";
  font-weight:900
}

.l2::after{
  content:"2";
  color: #ffa399;
}

.l3::before{
  content:"\f004";
  margin-left:5px;
  color: #ff1a00;
  font-family:"font awesome 6 pro";
  font-weight:900
}

.l3::after{
  content:"3";
  color: #ff1a00;
}

.l4::before{
  content:"\f004";
  margin-left:5px;
  color: #660a00;
  font-family:"font awesome 6 pro";
  font-weight:900
}

.l4::after{
  content:"4";
  color: #660a00;
}

.g1::before{
  content:"\f043";
  margin-left:5px;
  color: #8ae68a;
  font-family:"font awesome 6 pro";
  font-weight:900
}

.g1::after{
  content:"1";
  color: #8ae68a;
}

.g2::before{
  content:"\f043";
  margin-left:5px;
  color: #2ee6d6;
  font-family:"font awesome 6 pro";
  font-weight:900
}

.g2::after{
  content:"2";
  color: #2ee6d6;
}

.g3::before{
  content:"\f043";
  margin-left:5px;
  color: #0026e6;
  font-family:"font awesome 6 pro";
  font-weight:900
}

.g3::after{
  content:"3";
  color: #0026e6;
}

.g4::before{
  content:"\f043";
  margin-left:5px;
  color: #1a0000;
  font-family:"font awesome 6 pro";
  font-weight:900
}

.g4::after{
  content:"4";
  color: #1a0000;
}

.end::before{
  content:"FIN!";
  margin-left:1em;
  color: var(--theme-color1);
}


.novel{font-size: 1.5rem;
  line-height: 2.3em;
  white-space: pre-wrap;}


  /* 装飾ボックス */


body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
}
 
/* モーダル関係スタイリング */
#modal {
  background: #fff;
  display: none;
  padding: 10px;
  position: fixed;
  text-align: left;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 840px;
  z-index: 1;
}

#close__btn {
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translate(-50%, 100%);
  text-align: center;
  line-height: 40px;
  height: 40px;
  width: 40px;
}
#close__btn:hover {
  opacity: .8;
}

.required::after {
  content: "*";
  color: var(--theme-color1);
}

/*日記部分まとめ*/

.area.area-diary.deco-border
>div,.area.area-diary.deco-bg
>div{padding:15px 20px;border-radius:4px}

.area.area-diary.deco-border
>div:not(:last-child)::after,.area.area-diary.deco-bg
>div:not(:last-child)::after{content:none}

.area.area-diary.deco-border>div{border:1px solid #c4dbf0}

.area.area-diary.deco-bg>div{background:#e8ebf4}

.area.area-diary>div{margin-bottom:30px;padding:15px 0}.area.area-diary>div:not(:last-child)::after{content:"";display:block;height:1px;margin:45px 0 0;border-bottom:1px dashed #ddd}




.area.area-diary .title{font-weight:600}

.area.area-diary .date{text-align:right;
font-size:1.2rem}

.area.area-diary .date::before{content:"\f017";
margin-right:3px;
font-family:"font awesome 6 pro";
font-weight:500}

.area.area-diary .fld
{text-align:right;
 font-size:1.2rem}

.area.area-diary .fld::before
{content:"\f07b";
margin-right:3px;
font-family:"font awesome 6 pro";
font-weight:500}

.readmorebutton {   border: 1px solid var(--theme-color1);
  border-radius: 0.25rem;
  padding:5px;
  background: var(--theme-color1);
  color: var(--color-white); }

  /* キャラクター展示 */
.list-image > *, .list-content > * {
  border-top: 5px solid var(--theme-color3);
  background: var(--bg-color);
}

.list-image a, .list-image span{
  display: inline-block;
  width: 100px;
  color: var(--theme-color3);
  vertical-align: top;
}

.list-image a:hover {
  border-top: 5px solid var(--theme-color1-light);
  background: #fafafa;
}

.list-image a:hover img {
  opacity: 1;
}

.list-image > * {
  margin: 0 7px 11px 0;
  padding: 5px 5px 0 5px;
}

.list-image > *:nth-child(6n) {
  margin-right: 0;
}

.list-content > * {
  margin: 10px 0 100px 0;
  padding: 20px;
}

.list-content .head {
  display: flex;
  align-items: flex-start;
}

.list-content .head > :not(:last-child) {
  margin-right: 20px;
}

.list-content .head + * {
  margin-top: 20px;
}

.list-content .head.image-block {
  display: block;
}

.list-content .head.image-block img {
  display: block;
  width: 250px;
  margin: 10px auto 20px;
}

.list-content a{
  color: var(--theme-color3);
}

.list-content .head.image-block .link {
  display: block;
  width: 250px;
  margin: 10px auto 20px;
}

.list-content .head.image-block .w-sm, .list-content .head.image-block .w-lg, .list-content .head.image-block .w-xl, .list-content .head.image-block .w-wide {
  width: 100%;
}

.list-content .head.image-block .w-sm {
  max-width: 200px;
}

.list-content .head.image-block .w-lg {
  max-width: 300px;
}

.list-content .head.image-block .w-xl {
  max-width: 500px;
}

.list-content .head img {
  width: 120px;
  height: auto;
  right: 5px;
  background: #fff;
}

.list-content .line p {
  background: linear-gradient(#fff 0 1px, transparent 1px calc(1.6rem + 1.05rem)) bottom/auto calc(1.6rem + 1.05rem);
}

.list-content dl {
  display: flex;
  flex-flow: row wrap;
  align-content: flex-start;
}

.list-content dl dt, .list-content dl dd {
  padding: 7px 0 0 0;
  border-bottom: 1px solid #fff;
  line-height: 130%;
}

.list-content dl dt {
  width: 150px;
}

.list-content dl dd {
  width: calc(100% - 150px);
  margin: 0;
  padding-left: 15px;
  box-sizing: border-box;
  border-bottom: 1px solid #fff !important;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: var(--color-gray);
}
::-webkit-scrollbar-thumb {
  background: var(--theme-color3);
}

/* コンテンツエリア */
.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: var(--bg-color);
  border-radius: 5px;
  color: var(--theme-color2);
  border:2px solid var(--theme-color3);
}

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

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

.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 .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: "";
}

.area .pawoo:before{
  content: url('data:image/svg+xml;UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1072 1024" role="img"><path d="M558.652 601.142c0 71.962-46.057 130.285-102.853 130.285a82.797 82.797 0 01-29.8-5.553 43.423 43.423 0 009.223.982c30.298 0 54.865-31.114 54.865-69.487 0-38.373-24.567-69.488-54.865-69.488s-54.854 31.115-54.854 69.488c0 21.323 7.578 40.397 19.5 53.137-28.238-23.23-46.933-63.532-46.933-109.364 0-71.95 46.058-130.285 102.864-130.285 56.796 0 102.853 58.334 102.853 130.285zM654.66 128c-288.003 0-425.154 231.525-425.154 384v148.412c0 32.145-22.283 44.222-62.48 40.314-39.414-3.836-63.259-32.452-89.188-51.384a45.585 45.585 0 00-61.898 65.9C102.82 821.658 300.84 896 531.23 896c78.7 0 146.578-9.555 204.06-26.545a221.548 221.548 0 01-24.568-21.56c-25.728-25.941-42.138-61.579-50.13-108.926-6.642-39.226-6.31-80.108-6.038-112.964.047-6.322.106-86.572.106-86.572a13.71 13.71 0 1127.422 0s-.048 80.415-.107 86.797c-.52 64.361-1.231 152.485 48.224 202.354 9.815 9.898 22.27 24.272 33.02 31.766 24.403 13.77 56.062 21.94 97.146 21.94 13.722 0 205.717 13.71 205.717-274.293 0-27.421 27.432-479.997-411.422-479.997z"/></svg>');
  display: inline-block;
  width: 1.35em;
  height: 1.35em;
  vertical-align: middle;
}

/* illust-area */
.area.area-thumbnail {
  display: flex;
  flex-wrap: wrap;
}

.area.area-thumbnail.area-center {
  justify-content: center;
}

.area.area-thumbnail.thumb-rounded div {
  border-radius: 8px;
}

.area.area-thumbnail.thumb-circle div {
  border-radius: 50%;
}

.area.area-thumbnail.thumb-circle div.new::after {
  width: calc(100% - 10px);
  text-align: center;
}

.area.area-thumbnail.thumb-border div {
  border: 1px solid var(--theme-color3);
}

.area.area-thumbnail div {
  width: 100px;
  height: 100px;
  margin: 5px;
  overflow: hidden;
  object-fit: cover;
}

.area.area-thumbnail div a {
  width: 100%;
  height: 100%;
}

.area.area-thumbnail div img {
  object-fit: cover;
  min-height: 100%;
}

.area.area-thumbnail div.new {
  position: relative;
}

.area.area-thumbnail div.new::after {
  content: "new";
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px;
  line-height: 1;
  font-weight: 600;
  background: var(--theme-color1);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 600;
}

.lb-container a,
.lb-data a {
  border: 0;
}

/* モーダル２ */

.modal_open{
  display: inline-block;
  margin: 3vw;
}

.modal_box {
  position: fixed;
  z-index: 7777;
  display: none;
  width: 80%;
  max-width: 840px;
  margin: 0;
  padding: 60px 2vw 80px;
  border: 2px solid #aaa;
  text-align: center;
  background: #fff;
  box-sizing: border-box;
}

.modal_close {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 62px;
  font-size: 46px;
  color: #000;
  line-height: 62px;
  text-align: center;
  background: #e6e6e6;
}

.modal_close i {
  line-height: 62px;
  vertical-align: bottom;
}

.modal_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6666;
  display: none;
  width: 100%;
  height: 120%;
  background-color: rgba(0,0,0,0.7);
}

.link_area {
  overflow: hidden;
  max-width: 410px;
  margin: 60px auto 0;
  text-align: center;
}

.link_area .modal_link {
  display: inline;
}

.link_area .modal_link a {
  display: inline-block;
  width: 180px;
  color: #000;
  line-height: 2.5;
  text-decoration: none;
  margin: 0 10px;
  background: #e6e6e6;
}

.link-area ul li.modal_link:first-child a {
  float: left;
}

.link-area ul li.modal_link:last-child a {
  float: right;
}


@media screen and (max-width: 769px) {

/*  ウィンドウサイズ769px以下の時のスタイル  */

.modal_box {
    padding: 50px 2vw 40px;
}

.modal_close {
    width: 40px;
    line-height: 40px;
    font-size: 30px;
}

.modal_close i {
    line-height: 44px;
}

.link_area {
    margin: 25px auto 0;
}

.link_area .modal_link a {
    margin: 15px auto 0;
}

.link_area ul li.modal_link:first-child a {
    float: none;
    margin-top: 0;
}

.link_area ul li.modal_link:last-child a {
    float: none;
}

}

.gothic{font-family: "Yu Gothic", Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;}
.mincho{font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'HiraMinProN-W3', '游明朝', 'Yu Mincho', '游明朝体', 'YuMincho', 'HGS明朝E', 'HG明朝E', 'ＭＳ 明朝', 'MS Mincho', serif;}

/* newiine-app */

/* iOSでのデフォルトスタイルをリセット */
button {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
button::-webkit-search-decoration {
  display: none;
}
button::focus {
  outline-offset: -2px;
}

button.newiine_btn {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  position: relative;
  cursor: pointer;
  background: transparent;
  border: 1px solid;
  color: var(--color-gray);
  font-size: 13px;
  border-radius: 20px;
  padding: 3px 13px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-right: 10px;
}

button.newiine_btn:hover {
  background: var(--color-white);
}

button.newiine_btn span.material-icons-round {
  font-size: 18px;
  vertical-align: sub;
}

button.newiine_btn.newiine_clickedtoday {
  color: var(--theme-color1);
  border-color: var(--theme-color1);
}

button.newiine_btn.newiine_clickedtoday:hover {
  background: #fff3f5;
}

button.newiine_btn.newiine_clicked {
  color: #ffffff;
  background: var(--theme-color1);
  border-color: var(--theme-color1);
}

button.newiine_btn.newiine_clicked:hover {
  background: #fd7f96;
  border-color: #fd7f96;
}

button.newiine_btn:before {
  position: absolute;
  content: "";
  display: block;
  margin: auto;
  visibility: hidden;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  -webkit-transition: all ease-out 0.5s;
  transition: all ease-out 0.5s;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  background: #fd7f96;
}

button.newiine_btn:active {
  -webkit-transform: scale(0.92);
  transform: scale(0.92);
}

button.newiine_btn.newiine_animate:before {
  z-index: 1;
  -webkit-animation: newiine_animation ease-out 0.5s forwards;
  animation: newiine_animation ease-out 0.5s forwards;
}

div.newiine_thanks img {
  max-width: 100%;
}

button.newiine_btn div.newiine_thanks {
  /* ※ ↓お礼メッセージの吹き出しのサイズを変えたい場合はここを調整 */
  min-width: 300px;
  background: white;
  color: #333;
  text-align: left;
  font-size: 15px;
  border: 1px solid #efefef;
  border-radius: 10px;
  padding: 10px;
  filter: drop-shadow(0 2px 8px #cccccc7d);
  position: absolute;
  opacity: 0;
  transition: 0.3s;
  animation-duration: .5s;
  animation-fill-mode: both;
  z-index: 5;
}

button.newiine_btn div.newiine_thanks:after {
  content: '';
  width: 0px;
  height: 0px;
  position: absolute;
  left: 20px;
}

button.newiine_btn div.newiine_thanks_up {
  bottom: 140%;
  animation-name: newiine_thanks-up;
}

button.newiine_btn div.newiine_thanks_up:after {
  border-bottom: 10px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid white;
  top: calc(100% - 1px);
}

button.newiine_btn div.newiine_thanks_down {
  top: 140%;
  animation-name: newiine_thanks-down;
}

button.newiine_btn div.newiine_thanks_down:after {
  border-top: 10px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
  bottom: calc(100% - 1px);
}

button.newiine_btn div.newiine_thanks p {
  margin: 10px auto;
}

.newiine_fadeout {
  animation : newiine_fadeOut 1s !important;
  animation-fill-mode: both;
}

/* newiine_type02 */

button.newiine_btn.newiine_type02 {
  text-align: center;
  word-break: keep-all;
  height: 60px;
  width: 60px;
  padding: 3px;
  border-radius: 30px;
  background: var(--bg-color);
  border: 1px solid var(--theme-color1);
}

button.newiine_btn.newiine_type02:hover {
  color: #fd7f96;
}

button.newiine_btn.newiine_type02.newiine_clickedtoday {
  color: #fd7f96;
  background: #fff3f5;
}

button.newiine_btn.newiine_type02.newiine_clicked {
  background: #fd7f96;
  color: #ffffff;
}

button.newiine_btn.newiine_type02.newiine_clicked:hover {
  color: #fff3f5;
}

button.newiine_btn.newiine_type02.newiine_animate:before {
  z-index: 1;
  -webkit-animation: newiine_animation_type02 ease-out 0.5s forwards;
  animation: newiine_animation_type02 ease-out 0.5s forwards;
}

@-webkit-keyframes newiine_animation {
  0% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    visibility: hidden;
  }
}

@keyframes newiine_animation {
  0% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    visibility: hidden;
  }
}

@-webkit-keyframes newiine_animation_type02 {
  0% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
    visibility: hidden;
  }
}

@keyframes newiine_animation_type02 {
  0% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
    visibility: hidden;
  }
}


@keyframes newiine_fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes newiine_thanks-up {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes newiine_thanks-down {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* koibumi */

/* --------------------------------------------------
個人サイト向けひとことフォーム コイブミ Ver1.3.1
製作者    ：ガタガタ
サイト    ：https://do.gt-gt.org/
ライセンス：MITライセンス
全文      ：https://ja.osdn.net/projects/opensource/wiki/licenses%2FMIT_license
公開日    ：2020.09.13
最終更新日：2022.05.11
このプログラムはどなたでも無償で利用・複製・変更・
再配布および複製物を販売することができます。
ただし、上記著作権表示ならびに同意意志を、
このファイルから削除しないでください。
-------------------------------------------------- */

div#koibumi_wrap {
  position: relative;
}

div#koibumi_thanks {
    position: absolute;
    margin-top: 14px;
    opacity: 0;
    animation-name: koibumi_thanks-down;
    animation-duration: .5s;
    animation-fill-mode: both;
}


div#koibumi_wrap p.attention {
    font-size: 10px;
    opacity: .5;
}

.koibumifadeout {
  animation : koibumifadeout 1s !important;
  animation-fill-mode: both;
}

p#koibumi_alert {
    padding: 10px;
    font-size: 14px;
    border-radius: 3px;
    position: absolute;
    z-index: 10;
    width: 100%;
    top: 100%;
    background: #fcfcfc;
    box-shadow: 0 2px 6px #00000014;
}
p#koibumi_alert.success {
    background: #d4effc;
    color: #0f286a;
}
p#koibumi_alert.alert {
    background: #ffe2e5;
    color: #610b34;
}

div#koibumi_thanks p {
    margin-bottom: 0;
}

@keyframes koibumifadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes koibumi_thanks-up {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes koibumi_thanks-down {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* slick-slider */

.slick-slider {
  margin-left: 3rem;
  margin-right: 3rem;}

.slick-dots
{
  position: absolute;
  bottom: -1%;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li.slick-active button:before
{
  opacity: .75;
  color: var(--color-white);
}


.prev-arrow ::before{
  content: "\f105";
  margin-left: -25px;

  font-family: "font awesome 6 pro";
  font-weight: 900;
}
.next-arrow {
  content: "\f105";
  margin-right: -25px;
  font-family: "font awesome 6 pro";
  font-weight: 900;
}

.slick-arrow {
  display: block;
  position: absolute;
  top: -80%;
  bottom: 0;
  margin: auto;
  padding: 0;
  color: transparent;
  transition: opacity 0.5s;
}

/* 共通設定 */

.slick-next::before,
.slick-next::after {
  content: "\f105";
  font-family: "font awesome 6 pro";
  font-weight: 900;
}

.slick-prev::before,
.slick-prev::after {
  content: "\f104";
  font-family: "font awesome 6 pro";
  font-weight: 900;
}


/* next */

.slick-next {
  right: -25px;
}

/* prev */

.slick-prev {
  left: -25px;
}


.btn.btn-color1 {
  background: #dce4ec !important;
}

.btn.btn-color2 {
  background: #e4e4ec !important;
}

.btn:hover {
  opacity: 0.6;
}

.btn.btn-sm {
  padding: 2px 5px;
  font-size: 90%;
}

.btn.btn-lg, .btn.btn-block {
  padding: 10px 12px;
  font-size: 130%;
}

.btn.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  margin: 15px 0;
}

.btn-group > .btn {
  display: block;
  width: 100%;
  max-width: 50%;
  margin-top: 0;
  margin-bottom: 1px;
  text-align: center;
  word-break: break-all;
}

.btn-group > .btn:not(:first-child):not(:nth-child(2n + 1)) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group > .btn:not(:last-child):not(:nth-child(2n)) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 1px solid #fff !important;
}

/* コンテンツエリア */
.area .title {
  font-weight: bold;
}

.area .body > * {
  margin-bottom: 10px;
}

.area .body .btn-group {
  margin: 0;
}

.area > div .title.new::before,
.area > div .body.new::before,
.area > div .thumbnail.new::before {
  content: "NEW";
  background: #ccc4cc;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.area > div .thumbnail.new {
  position: relative;
  overflow: hidden;
  min-height: 50px;
}

.area > div .thumbnail.new::before {
  display: block;
  position: absolute;
  top: -10px;
  left: -25px;
  width: 70px;
  padding: 16px 0 0;
  transform: rotate(-45deg);
  text-align: center;
}

.area > div .title.new::before,
.area > div .body.new::before {
  display: inline-block;
  margin-right: 7px;
  padding: 5px 4px 3px;
  line-height: 1;
}

.area.area-border {
  margin-bottom: 0 !important;
}

.area.area-border > div {
  padding: 15px;
  border: 1px solid #dce4ec;
  border-radius: 5px;
}

.area.area-block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.area.area-block > div {
  width: calc(50% - 10px);
  margin: 0 10px 25px 10px;
}

.area.area-block > div:first-child, .area.area-block > div:nth-child(1n) {
  margin-left: 0;
}

.area.area-block > div:last-child, .area.area-block > div:nth-child(2n) {
  margin-right: 0;
}

.area.area-block.area-block-3 > div {
  width: calc(33.3% - 20px);
  margin: 0 10px 25px 10px;
}

.area.area-block.area-block-3 > div:first-child, .area.area-block.area-block-3 > div:nth-child(3n + 1) {
  margin-left: 0;
}

.area.area-block.area-block-3 > div:last-child, .area.area-block.area-block-3 > div:nth-child(3n) {
  margin-right: 0;
}

.area.area-list > div {
  clear: both;
  margin-bottom: 25px;
  overflow: auto;
}

.area.area-list + * {
  clear: both;
}

.area.area-list .thumbnail {
  width: 200px;
  margin-right: 10px;
  float: left;
}

.grow-wrap {
  /* easy way to plop the elements on top of each other and have them both sized based on the tallest one's height */
  display: grid;
}
.grow-wrap::after {
  /* Note the weird space! Needed to preventy jumpy behavior */
  content: attr(data-replicated-value) " ";

  /* This is how textarea text behaves */
  white-space: pre-wrap;

  /* Hidden from view, clicks, and screen readers */
  visibility: hidden;
}
.grow-wrap > textarea {
  /* You could leave this, but after a user resizes, then it ruins the auto sizing */
  resize: none;

  /* Firefox shows scrollbar on growth, you can hide like this. */
  overflow: hidden;
}
.grow-wrap > textarea,
.grow-wrap::after {
  /* Identical styling required!! */
  padding: 0.5rem;
  font: inherit;

  /* Place on top of each other */
  grid-area: 1 / 1 / 2 / 2;
}

#notice {
	position: fixed;
	top: 10px;
	right: 10px;
	padding: 10px;
	color: #fff;
	background: rgba(0,0,0,0.7);
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}

a.arrow::before, span.arrow::before {
  content: "\f105";
  margin-right: 5px;
  font-family: "font awesome 6 pro";
  font-weight: 900;
}

a.open-article, span.open-article {
  padding: 3px 5px 2px;
  border-radius: 5px;
  vertical-align: middle;
  font-size: 14px;
}

a.open-article::before, span.open-article::before {
  content: "\f1ea";
  font-family: "font awesome 6 pro";
  font-weight: 900;
}

a.open-article::after, span.open-article::after {
  content: "記事";
  margin-left: 5px;
  font-family: "BIZ UDPGothic", "Yu Gothic", Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
}

a.btn, a.read-more, span.btn, span.read-more {
  overflow: hidden;
  margin-bottom: 8px;
  color: var(--text-color);
  border-radius: 1rem;
}

a.read-more, span.read-more {
  padding: 3px 7px 2px;
  font-size: 1.2rem;
}

a.read-more::before, span.read-more::before {
  content: "\f107";
  margin-right: 7px;
  font-family: "font awesome 6 pro";
  font-weight: 900;
}

a.read-more::after, span.read-more::after {
  content: "Read more";
  font-family: "BIZ UDPGothic", "Yu Gothic", Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
}

a.readmorebutton .readmoreclose {
  overflow: hidden;
  margin-bottom: 8px;
  color: var(--text-color);
  border-radius: 1rem;
}

a.readmorebutton .readmoreclose {
  padding: 3px 7px 2px;
  font-size: 1.2rem;
}

a.btn, span.btn {
  padding: 8px 12px;
  text-align: center;
  font-weight: 600;
  line-height: 3rem;
}

a.btn.btn-block, span.btn.btn-block {
  display: block;
  margin: 15px 0;
}

a.btn.btn-arrow::after, span.btn.btn-arrow::after {
  content: "\f105";
  margin-left: 5px;
  font-family: "font awesome 6 pro";
  font-weight: 900;
  color: var(--theme-color3-light);
}

a.btn.btn-arrow.btn-block, span.btn.btn-arrow.btn-block {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 30px;
}

a.btn.btn-arrow.btn-block::after, span.btn.btn-arrow.btn-block::after {
  position: absolute;
  right: 10px;
}

a {
  display: inline-block;
}

a.btn, a.read-more {
  background: var(--bg-color);
  border: 2px solid var(--theme-color3-light);
  box-shadow: 0 2px var(--theme-color3-light);
}

a.btn:hover, a.read-more:hover {
  background: var(--bg-color) !important;
  box-shadow: none;
  transform: translateY(2px);
}

span.btn {
  border: 2px solid var(--color-gray);
  color: var(--theme-color1);
  opacity: 0.5;
}

.box {
  margin: 25px auto;
  padding: 15px;
  border: 2px solid var(--theme-color3-light);
  border-radius: 1rem;
}

.box.box-sm {
  width: 80%;
}

.box > *:first-child {
  margin-top: 0;
}

.info {
  margin-top: 25px;
  padding-top: 25px;
}

.info ul {
  display: flex;
  justify-content: end;
  gap: 1.4rem;
  padding: 0;
  list-style: none;
  font-size: 1.4rem;
  color: var(--theme-color3-light);
}

.info ul li::before {
  margin-right: 5px;
  font-family: "font awesome 6 pro";
  font-weight: 900;
}

.info ul li.date::before {
  content: "\f303";
}

.info ul li.category::before {
  content: "\f07b";
}

