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

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

@import url("https://fonts.googleapis.com/css2?family=Comfortaa&family=Zen+Kurenaido&display=swap");
:root {
  --theme-color1: #e45c84;
  --theme-color2: #31304f;
  --theme-color3: #43ccc1;
  --color-white: #eee;
  --color-gray: #aaa;
  --bg-color: var(--color-white);
  --text-color: var(--theme-color2);
  --title-color: var(--color-white);
  --title-hover-color: var(--theme-color2);
  --fixed-menu-text-color: var(--theme-color3);
  --form-border-color: var(--theme-color2);
  --form-border-hover-color: var(--theme-color1);
  --theme-font1: "Yu Gothic", Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
  --theme-font1-eigo: "Comfortaa";
}

@media (prefers-color-scheme: dark) {
  :root {
    --theme-color1: #d66084;
    --theme-color2: #c7c7c7;
    --theme-color3: #338881;
    --color-white: #3c3c3c;
    --color-gray: #aaa;
  }
  body#INDEX {
    --theme-color1: #e45c84;
    --theme-color2: #31304f;
    --theme-color3: #43ccc1;
    --color-white: #eee;
    --color-gray: #aaa;
  }
}


/* ----- ▼ リセット　ここから（基本的には触らない方が良い部分） ▼ ----- */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

:focus {
  outline: none;
}

a {
  text-decoration: none;
}

a, a::after, a::before, button, button::after, button::before, input, textarea, select {
  transition: all 0.3s;
}

a img, button img {
  transition-duration: 0.3s;
}

button {
  outline: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  cursor: hand;
}

input, textarea, select {
  font-size: 1.6rem;
}

input, textarea {
  box-shadow: none;
}

select {
  appearance: button;
}

p, dl, ul, form {
  margin: 25px 0;
  word-break: break-all;
}

p:first-child, dl:first-child, ul:first-child, form:first-child {
  margin-top: 0;
}

p:last-child, dl:last-child, ul:last-child, form:last-child {
  margin-bottom: 0;
}

img {
  vertical-align: middle;
}

@media only screen and (max-width: 900px) {
  p:last-child, form:last-child {
    margin-bottom: 0;
  }
}
/* ----- ▲ リセット　ここまで（基本的には触らない方が良い部分） ▲ ----- */

/* ----- ▼ レイアウト　ここから ▼ ----- */
/* 基本 */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--bg-color);
}

body, button, input, textarea, select {
  font: 500 1.6rem/calc(1.6rem + 1.05rem) var(--theme-font1);
  color: var(--text-color);
  background: var(--bg-color);
}

header {
  position: sticky;
  top: calc(-50vh - 30px);
  display: flex;
  flex-direction: column;
  align-items: start;
  height: 50vh;
  transition: all 0.3s;
  background: var(--bg-color);
  z-index: 1;
}

header::before {
  content: "";
  position: absolute;
  right: 0;
  display: block;
  width: 75%;
  height: 100%;
  background: var(--theme-color1) url("../img/layout/bg_header.svg") no-repeat center/cover;
}

header.scroll {
  flex-direction: inherit;
  align-items: end;
  width: 100%;
  transform: translateY(86px);
}

header.scroll::before {
  position: relative;
  left: 0;
  width: 150px !important;
  height: 60px;
  margin-right: 10px;
}

main, footer {
  max-width: 900px;
  margin: 100px auto auto;
}

main {
  padding: 0 50px;
}

article {
  margin: 0 0 200px;
}

footer {
  display: flex;
  justify-content: end;
  align-items: center;
  height: 45px;
  padding: 0 15px;
}

a {
  color: var(--theme-color1);
  border-bottom: 1px dotted var(--theme-color3);
}

a:hover {
  border-color: transparent;
}

a.img {
  border: 0;
}

a.img:hover {
  opacity: 0.6;
}

#INDEX {
  justify-content: center;
  position:relative;
  color: var(--color-white);
  text-shadow: 2px 2px 0 var(--theme-color2);
}

#INDEX::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--theme-color2) url("../img/layout/bg_header.svg") no-repeat center/cover;
  z-index: -1;
  opacity: .9;
}

#INDEX h1 {
  width: 100%;
  padding-top: 180px;
  margin-bottom: 50px;
  text-align: center;
}

#INDEX footer {
  margin: 0;
}

#INDEX main {
  margin: 0 auto;
}

#INDEX main *:last-child {
  margin-bottom: 0;
}

/* メニュー */
.menu {
  width: 25%;
  height: calc(50vh - 60px);
  margin: 25px 0 0 0;
  padding: 5px 0;
  overflow-y: auto;
  font-weight: 500;
}

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

.menu ul li {
  width: auto;
}

.menu ul li i {
  margin-right: 4px;
}

.menu ul::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.menu ul::-webkit-scrollbar-track {
  background: transparent;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1) inset;
}

.menu ul ::-webkit-scrollbar-thumb {
  background: var(--bg-color);
}

.menu a {
  display: block;
  padding: 5px 10px;
  color: var(--theme-color1);
  border: 0;
}

.menu a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--theme-color1);
}

.menu a:hover::after {
  width: 100%;
}

.scroll .menu {
  width: calc(100% - 380px);
  height: auto;
  margin-left: 0;
}

.scroll .menu ul {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

.scroll .menu ul li {
  white-space: nowrap;
}

.fixed-menu {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1;
}



.fixed-menu ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fixed-menu a, .fixed-menu button, .fixed-menu span {
  position: relative;
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 40px !important;
  height: 40px;
  margin: 0 !important;
  background: var(--bg-color) !important;
  border: 0 !important;
  border-top: 2px solid var(--fixed-menu-text-color) !important;
  border-left: 2px solid var(--fixed-menu-text-color) !important;
  border-radius: 10px 0 0 0 !important;
  color: var(--fixed-menu-text-color) !important;
}

.fixed-menu a::before, .fixed-menu button::before, .fixed-menu span::before {
  position: absolute;
  left: -20;
  font-family: "font awesome 6 pro";
  font-weight: 900;
}

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

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

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

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

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

.fixed-menu li.character a::before, .fixed-menu li.character button::before, .fixed-menu li.character span::before {
  content: "\f0c0";
}

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

.fixed-menu span {
  opacity: 0.6;
}

/* 見出し */
h1 {
  width: 25%;
  height: 60px;
  margin: 0;
  padding: 5px 10px;
  font: 400 50px/1 var(--theme-font1-eigo),  var(--theme-font1);
}

h1 a {
  display: block;
  color: var(--theme-color1);
  border: 0;
}

.scroll h1 {
  width: 230px;
  padding-left: 0;
}

h2, h3, h4, h5 {
  margin: 100px auto;
}

h2 {
  margin: -150px auto 100px auto;
  padding-top: 150px;
  text-align: center;
  font: 400 36px/1 var(--theme-font1-eigo),  var(--theme-font1);
  color: var(--theme-color1);
}

h2 i {
  display: block !important;
  margin: auto auto 16px auto;
  font-size: 24px;
}

h3, h4, h5, h6 {
  position: relative;
  padding-left: 25px;
}

h3::before, h4::before, h5::before, h6::before {
  content: "";
  position: absolute;
}

h3 {
  margin: 100px auto 75px;
  font: 500 20px/1 var(--theme-font1-eigo),  var(--theme-font1);
}

h3::before {
  display: block;
  width: 60px;
  height: 60px;
  background: var(--theme-color3);
  top: calc(50% - 30px);
  left: 0;
  z-index: -1;
}

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

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

h4, h5, h6 {
  font: 600 16px/1 var(--theme-font1-eigo), var(--theme-font1);
}

h4::before, h5::before, h6::before {
  left: 8px;
  font-family: "font awesome 6 pro" !important;
  font-weight: 900;
  color: var(--theme-color3);
}

h4 {
  margin: 75px auto 50px;
}

h4::before {
  content: "\f04b";
}

h5 {
  margin: 50px auto 35px;
}

h5::before {
  content: "\f105";
}

h6 {
  margin: 35px auto 15px;
}

h6::before {
  top: 5px;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--theme-color3);
}

/* リスト */
ul.column, ol.column {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 25px;
}

ul.column.no-style, ol.column.no-style {
  padding: 0;
  list-style: none;
}

ul.column.column-2 li, ol.column.column-2 li {
  width: calc(50% - 25px/2);
}

ul.column.column-3 li, ol.column.column-3 li {
  width: calc(100%/3 - 17px);
}

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: "\f061";
  margin-right: 5px;
  font: 900 100%/1 "font awesome 6 pro";
}

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

ul.small li {
  display: inline;
}

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: 2px dotted var(--theme-color1);
}

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: 202px;
  padding: 0 30px 10px 0;
  padding-right: 30px;
  border-bottom: 2px dotted var(--theme-color1);
}

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

dl.inline dd {
  width: calc(100% - 204px);
  margin-left: 2px;
}

dl.border {
  padding: 15px 20px;
  border: 2px dotted var(--theme-color1);
  border-radius: 0.5rem;
}

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

.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% - 132px);
}

.form-block dl.inline + button:not(.manu-toggler),
.form-block dl.inline input[type="submit"],
.form-block dl.inline input[type="button"] {
  display: block;
  width: calc(100% - 132px);
  margin: 15px 0 0 auto;
}

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

.form-name {
  display: flex;
  gap: 5px;
}

.form-name button, .form-name input[type="submit"], .form-name input[type="button"] {
  white-space: nowrap;
}

.required::after {
  content: "*";
}

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

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

input, textarea, select {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: 2px dotted var(--form-border-color);
  box-sizing: border-box;
  background: var(--bg-color);
}

input:hover, input:focus, textarea:hover, textarea:focus, select:hover, select:focus {
  border-style: solid;
}

button:not(.manu-toggler), input[type="submit"], input[type="button"] {
  background: var(--form-border-color);
  border: 2px solid var(--form-border-color);
  color: var(--bg-color);
}

button:not(.manu-toggler):hover, input[type="submit"]:hover, input[type="button"]:hover {
  border: 2px solid var(--form-border-hover-color);
  background: var(--form-border-hover-color);
}

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

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

strong {
  background: var(--theme-color3);
}

hr {
  display: flex;
  justify-content: center;
  margin: 15px auto;
  border: 0;
}

hr::before, hr::after {
  content: "";
  display: block;
  height: 15px;
  width: 30px;
}

hr::before {
  background: var(--theme-color3);
  border-radius: 15px 15px 0 0;
}

hr::after {
  background: var(--theme-color2);
  border-radius: 0 0 15px 15px;
}

hr.dot {
  margin: 10px 0;
  border: 0;
  border-bottom: 5px dotted var(--theme-color1-light);
}

hr.dot::before{
  content: none;
}

hr.dot::after{
  content: none;
}
.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;
}

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

a.btn, span.btn {
  overflow: hidden;
  margin: 10px 0;
  padding: 5px 7px;
  border-radius: 0.5rem;
  color: var(--theme-color1);
  font-weight: 600;
  text-align: center;
  line-height: 3rem;
}

a.btn.btn-block, span.btn.btn-block {
  display: block;
}

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

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.btn {
  border: 2px solid var(--theme-color3);
}

a.btn:hover {
  border-style: dotted;
}

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

.column {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin: 25px auto;
}

.column.column-2 > * {
  width: calc(50% - 25px/2);
}

.column.column-3 > * {
  width: calc(100%/3 - 25px);
}

.box {
  margin: 25px auto;
  padding: 15px;
  border: 2px dotted var(--theme-color1);
  border-radius: 0.5rem;
}

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

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

ul.ch-list span {
  position: relative;
}

ul.ch-list span::after {
  content: "▶coming soon";
  font-size: small;
  margin-left: 5px;
}

ul.ch-list span.btn-block::before {
  content: "coming soon";
  position: absolute;
  font-size: small;
  left: 0;
  top: -5px;
  transform: rotate(-8deg);
}

ul.ch-list.ch-list-column-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

ul.ch-list.ch-list-column-2 li {
  width: calc(50% - 20px/2);
}

.ch {
  position: relative;
}

.ch .ch-text,
.ch .ch-img {
  margin: 25px 0;
}

.ch .ch-img {
  text-align: center;
  font-size: small;
}

.ch .ch-img img {
  display: block;
  max-width: 100%;
  max-height: 350px;
  margin: auto;
}

/* 表示・非表示 */
.collapse .toggler {
  margin-bottom: 5px;
}

.collapse .toggler::before {
  content: "\f107";
  margin: 0 5px 0 3px;
  font-size: 1rem;
  font-family: "font awesome 6 pro";
  font-weight: 900;
}

.collapse .toggler-block {
  display: block;
  width: 100%;
  text-align: left;
}

.collapse .collapse-body {
  display: none;
  padding-bottom: 15px;
}

body#INDEX {
  flex-direction: column;
  min-height: 100vh;
}

/* ダークモード */
@media (prefers-color-scheme: dark) {
  /* メニュー */
  .menu a.active {
    color: var(--theme-color1);
  }
  .ch.ch-lost::before {
    background: url(../img/layout/bg_black_header.svg) center/contain no-repeat;
  }

  /*:root {
    --theme-color1-light: #f77e2d;
    --theme-color1: #31304f;
    --theme-color2: #e45c84;
    --theme-color3: #518385;
    --color-white: #fafafa;
    --color-gray: #aaa;
    --bg-color: #333;
    --text-color: var(--color-white);
    --title-color: var(--theme-color1);
    --title-hover-color: var(--theme-color2);
    --fixed-menu-text-color: var(--theme-color3);
    --form-border-color: var(--theme-color2);
    --form-border-hover-color: var(--theme-color1);
    --ch-history-border-color:#072c4e;
  } */
} 

/* スマホ設定 */
@media only screen and (max-width: 900px) {
  body, button, input, textarea {
    font-size: 1.6rem;
    line-height: calc(1.6rem + 1.05rem);
  }
  body main:first-child {
    margin-top: 50px;
  }
  main {
    overflow-x: hidden;
    padding: 0 45px;
  }
  header {
    height: 60vw;
    top: calc(-60vw - 30px);
  }
  header::before {
    content: "";
    position: absolute;
    right: 0;
    display: block;
    width: 60vw;
    height: 60vw;
  }
  header.scroll {
    transform: translateY(90px);
  }
  header.scroll::before {
    width: 60px !important;
  }
  header.scroll h1 {
    display: none;
    height: 110px;
  }
  footer {
    margin-top: 0;
    justify-content: start;
  }
  /* メニュー */
  .menu {
    width: 40vw;
    height: calc(60vw - 120px);
    margin-top: 10px;
  }
  .scroll .menu {
    width: calc(100% - 70px);
    height: auto;
    margin-left: 0;
  }
  .fixed-menu {
    bottom: 0;
    background: var(--bg-color);
    border: 2px solid var(--theme-color3);
    border-bottom: 0;
    border-right: 0;
    border-radius: 10px 0 0 0;
    overflow: hidden;
  }
  .fixed-menu ul {
    flex-direction: row;
    gap: 0;
  }
  .fixed-menu a,
  .fixed-menu button,
  .fixed-menu span {
    border: 0 !important;
    border-radius: 0 !important;
  }
  /* 見出し */
  h1 {
    width: 40vw;
    height: 110px;
  }
  h1 a {
    overflow-wrap: break-word;
  }
  /* リスト */
  ul.column.column-2 li, ul.column.column-3 li, ol.column.column-2 li, ol.column.column-3 li {
    width: calc(100%);
  }
  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: 100%;
    padding-left: 40px;
  }
  .form-block dl.inline + button:not(.manu-toggler),
  .form-block dl.inline input[type="submit"],
  .form-block dl.inline input[type="button"] {
    display: block;
    width: calc(100% - 40px);
    margin: 15px 0 0 auto;
  }
  .form-block > *, .form-block dl dd > * {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 5px;
  }
  /* 装飾 */
  .column.column-sp-1 {
    display: block;
  }
  .column.column-sp-1 > * {
    width: 100%;
  }
  .column.column-sp-2 > * {
    width: calc(50% - 25px/2);
  }
  .column.column-sp-3 > * {
    width: calc(100%/3 - 25px*2/2);
  }
  ul.ch-list.ch-list-column-2 {
    display: block;
  }
  ul.ch-list.ch-list-column-2 li {
    width: 100%;
  }
  ul.ch-list li {
    width: 100%;
  }
  .ch.ch-lost::before {
    top: -330px;
    right: -50px;
    transform: scale(3) rotate(20deg);
  }
  .ch dl.ch-data:not(.ch-data-inline):not(.ch-history).ch-data-column-2 dt {
    width: 30%;
  }
  .ch dl.ch-data:not(.ch-data-inline):not(.ch-history).ch-data-column-2 dd {
    width: 70%;
  }
  .ch dl.ch-data:not(.ch-data-inline):not(.ch-history).ch-data-column-3 dt, .ch dl.ch-data:not(.ch-data-inline):not(.ch-history).ch-data-column-4 dt {
    width: 20%;
  }
  .ch dl.ch-data:not(.ch-data-inline):not(.ch-history).ch-data-column-3 dd, .ch dl.ch-data:not(.ch-data-inline):not(.ch-history).ch-data-column-4 dd {
    width: 30%;
  }
  .ch dl.ch-data:not(.ch-data-inline):not(.ch-history).ch-data-number dd {
    width: 60px;
  }
  .ch dl.ch-data:not(.ch-data-inline):not(.ch-history).ch-data-number.ch-data-column-2 dt {
    width: calc(100% - 60px);
  }
  .ch dl.ch-data:not(.ch-data-inline):not(.ch-history).ch-data-number.ch-data-column-3 dt, .ch dl.ch-data:not(.ch-data-inline):not(.ch-history).ch-data-number.ch-data-column-4 dt {
    width: calc(50% - 60px);
  }
  .ch dl.ch-history.ch-history-nodt dd {
    width: 100%;
  }
  .ch dl.ch-history dt {
    width: 30%;
  }
  .ch dl.ch-history dd {
    width: 70%;
  }

  .area .title {
    font-weight: bold;
  }
  .area.area-border > div {
    padding: 10px;
  }
  .area.area-block.area-block-3 > div {
    width: calc(50% - 10px);
  }
  .area.area-block.area-block-3 > div:nth-child(1n) {
    margin-left: 0;
  }
  .area.area-block.area-block-3 > div:nth-child(2n) {
    margin-right: 0;
  }
  .area.area-list .body img {
    width: 120px;
  }
}
/* ----- ▲ レイアウト　ここまで ▲ ----- */

/* -- 以下、css追加 --*/

.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-log{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;
}
 


.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{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0,0,0,50%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
}

/* モーダルの擬似要素の指定 */
.modal:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-left: -0.2em;
}

/* クラスが追加された時の指定 */
.modal.is-active{
  opacity: 1;
  visibility: visible;
}

/* モーダル内側の指定 */
.modal-container{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 600px;
  width: 90%;
}

/* モーダルを閉じるボタンの指定 */
.modal-close{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  color: var(--color-white);
  background: #000;
  border-radius: 50%;
  cursor: pointer;
}

/* モーダルのコンテンツ部分の指定 */
.modal-content{
  background: var(--bg-color);
  color:var(--text-color);
  text-align: left;
  line-height: 1.8;
  padding: 20px;
}

/* モーダルのコンテンツ部分のテキストの指定 */
.modal-content p{
  margin: 1em 0;
}



@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;
}

/* 日記部分 */
.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-color1);
}

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