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

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

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

html {
  font-size: 1rem;
}

:focus {
  outline: none;
}

a {
  text-decoration: none;
}


button,
button::after,
button::before {
  transition: all 0.3s;
}

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

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

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

input,
textarea {
  box-shadow: none;
  -webkit-appearance: none;
}

select {
  appearance: button;
}

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

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,
  form {
    margin: 0 0 1.7rem;
  }
  p:last-child,
  form:last-child {
    margin-bottom: 0;
  }
}
/* ----- ▲ リセット　ここまで（基本的には触らない方が良い部分） ▲ ----- */

/* ----- ▼ レイアウト　ここから ▼ ----- */
/* 基本 */
body {
  margin: 0;
  padding: 0;
  background: #fff;
  width: 100%;
  position: relative;
}



body,
button,
input,
textarea,
select {
  font: 300 1rem / 1.8 "Noto Sans JP", Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
  color: #222222;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}

header,
main,
footer {
  max-width: 780px;
  margin: auto;
  padding: 0 40px;
}

header {
  position: sticky;
  top: 0;
  padding-top: 30px;
  padding-bottom: 15px;
  text-align: center;
  background: #f7f5f1;
  z-index: 100;
}

img.title {
  max-width: 150px;
  height: auto;
  filter: invert(70%) sepia(7%) saturate(467%) hue-rotate(283deg) brightness(96%) contrast(82%);
}



main *:first-child,
footer *:first-child {
  margin-top: 0;
}

main *:first-child h2:first-child,
footer *:first-child h2:first-child {
  margin-top: -262px;
}

main *:first-child *:not(h2):first-child,
footer *:first-child *:not(h2):first-child {
  margin-top: 0;
}

main {
  padding-top: 100px;
  padding-bottom: 150px;
  background: ;

}

a {
  color: #c78fc2;
}

a:hover {
  opacity: 0.5;
}

/* index */
.fa-exclamation::before {
  content: "\f12a";
  font-size: 2rem;
}

.index {
  line-break: strict;
  text-align: center;
}

/* メニュー */
.menu {
  font: 300 1rem / calc(1rem + 1.05vw) "Noto Sans JP", sans-serif;

}

.menu ul {
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0px 30px;
}

.menu ul li {
  margin: 2px 7px;
}

.menu a {
  display: inline-block;
  min-width: auto;
  padding: 0 2px;
  margin: 0 5px;
  color: #222222;
}

.menu a:hover {
  opacity: 0.5;
}

.menu-toggler {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (max-width: 900px) {
  .menu {
    display: none;
    padding: 7px 0;
    margin: auto;
  }
  .menu ul {
    margin: 0;
    flex-wrap: wrap;
  }
  .menu ul li {
    width: 100%;
  }
  .menu a {
    display: inline-block;
  }
  .manu-toggler {
    display: block;
    width: 40px;
    height: 40px;
    padding: 6px;
    background: #b2a1a8;
  }
  .manu-toggler::after {
    content: "";
    display: block;
    width: 26px;
    height: 1px;
    border: 1px solid #fff;
    transform: rotate(340deg);
  }
  .manu-toggler.open::after {
    content: "";
    display: block;
    width: 26px;
    height: 26px;
    border: 1px solid #fff;
    transform: rotate(0);
  }
  .fixed-menu {
    bottom: 60px;
    right: 50px;
  }
  .fixed-menu ul {
    flex-direction: row;
  }
}

/* スマホでの改行設定 */
@media (width > 768px) {
 .sp_br {
    display: none;
  }
}

/* 見出し */
h1 {
  margin: 0;
  font: 300 3.8rem/1 "Rajdhani", sans-serif;
  color: #a9cae1;
}

h1 a {
  color: #a9cae1;
}

h1 a:hover {
  color: #b866b1;
}

h2,
h3,
h4 {
  font-weight: 400;
}

h2,
h3,
h4 {
  font-size: 1rem;
  color: #a9cae1;
  text-align: center;
}

h2 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -200px;
  padding-top: 200px;
  margin-bottom: 70px;
  letter-spacing: 0.05em;
}

h2::before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 14%;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #4a8ac7;
  border-radius: 7px;
}

h3::after,
h4::after {
  display: block;
  margin: auto;
}

h3 {
  margin: 70px auto 30px;
  line-height: 260%;
}

h3::after {
  content: "";
  width: 10%;
  height: 1px;
  background: #8ebde6;
}

h4 {
  margin: 100px auto 50px;
  line-height: 140%;
}

h4::after {
  content: "\f0d7\f0d7\f0d7";
  margin-left: 3px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  letter-spacing: 3px;
}

h5 {
  font-size: 1rem;
  font-weight: 500;
  color: #4a8ac7;
  padding-top: 20px;
  margin-bottom: 0px;
}

h6 {
  font-size: 1rem;
  font-weight: 400;
  color: #a9cae1;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.05em;
}
h6::before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 14%;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #4a8ac7;
  border-radius: 7px;
}

/* メイン */
:root {
  /** PC設定 **/
  /* 1行に表示する枚数 */
  --emg-count-pc: 5;
  --r18emg-count-pc: 7;
  /* 画像間のスペース */
  --emg-gap-pc: 20px;

  /** スマホ設定 **/
  /* 1行に表示する枚数 */
  --emg-count-sp: 3;
  --r18emg-count-sp: 5;
  /* 画像間のスペース */
  --emg-gap-sp: 10px;

  /** 装飾設定 **/
  /* 角丸 */
  --emg-radius: 10px;
  /* 線幅 */
  --emg-border-width: 1px;
  /* 線色 */
  --emg-border-color: #333;
  /* 影色 */
  --emg-shadow-color: rgba(51, 51, 51, 0.25);

  /** 新着マーク設定 **/
  /* 背景色 */
  --emg-new-bg-color: #333;
  /* 文字色 */
  --emg-new-text-color: #fff;

  /** キャプション設定 **/
  /* 背景色 */
  --emg-caption-bg-color: rgba(0, 0, 0, 0.2);
  /* 文字色 */
  --emg-caption-text-color: #fff;
}

.emg-base {
  display: flex;
  flex-wrap: wrap;
  gap: var(--emg-gap-pc);
}
.emg-base > * {
  position: relative;
  width: calc((100% - (var(--emg-count-pc) - 1) * var(--emg-gap-pc)) / var(--emg-count-pc));
  padding-top: calc((100% - (var(--emg-count-pc) - 1) * var(--emg-gap-pc)) / var(--emg-count-pc));
  box-sizing: border-box;
  overflow: hidden;
}
.emg-base > *.new::before {
  content: "new";
  position: absolute;
  box-sizing: border-box;
  top: 0;
  left: 0;
  padding: 5px;
  background: var(--emg-new-bg-color);
  color: var(--emg-new-text-color);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  z-index: 1;
}
.emg-base > * img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: none;
}
.emg-base.emg-center {
  justify-content: center;
}
.emg-base.emg-right {
  justify-content: flex-end;
}
.emg-base.emg-evenly {
  justify-content: space-evenly;
}
.emg-base.emg-between {
  justify-content: space-between;
}
.emg-base.emg-border > * {
  border: var(--emg-border-width) solid var(--emg-border-color);
}
.emg-base.emg-shadow > * {
  box-shadow: 2px 2px 5px var(--emg-shadow-color);
}
.emg-base.emg-rounded > * {
  border-radius: var(--emg-radius);
}
.emg-base.emg-rounded > *.new::before {
  border-bottom-right-radius: var(--emg-radius);
}
.emg-base.emg-circle > * {
  border-radius: 50%;
}
.emg-base.emg-circle > *.new::before {
  width: 100%;
}
.emg-base.emg-caption > *::after {
  content: attr(data-text);
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 0 5px;
  background: var(--emg-caption-bg-color);
  color: var(--emg-caption-text-color);
  font-size: 12px;
  line-height: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.emg-base.emg-caption-circle > *::after {
  padding: 0 26%;
}

@media (width < 768px) {
  .emg-base {
    gap: var(--emg-gap-sp);
  }
  .emg-base > * {
    width: calc((100% - (var(--emg-count-sp) - 1) * var(--emg-gap-sp)) / var(--emg-count-sp));
    padding-top: calc((100% - (var(--emg-count-sp) - 1) * var(--emg-gap-sp)) / var(--emg-count-sp));
  }
}

/* メインr18 */
.r18 {
  margin-top: 30px;
}

.r18 .emg-base {
  display: flex;
  flex-wrap: wrap;
  gap: var(--emg-gap-pc);
}
.r18 .emg-base > * {
  position: relative;
  width: calc((100% - (var(--r18emg-count-pc) - 1) * var(--emg-gap-pc)) / var(--r18emg-count-pc));
  padding-top: calc((100% - (var(--r18emg-count-pc) - 1) * var(--emg-gap-pc)) / var(--r18emg-count-pc));
  box-sizing: border-box;
  overflow: hidden;
}
.r18 .emg-base > *.new::before {
  content: "new";
  position: absolute;
  box-sizing: border-box;
  top: 0;
  left: 0;
  padding: 5px;
  background: var(--emg-new-bg-color);
  color: var(--emg-new-text-color);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  z-index: 1;
}
.r18 .emg-base > * img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: none;
  filter: blur(7px);
}
.r18 .emg-base.emg-center {
  justify-content: center;
}
.r18 .emg-base.emg-right {
  justify-content: flex-end;
}
.r18 .emg-base.emg-evenly {
  justify-content: space-evenly;
}
.r18 .emg-base.emg-between {
  justify-content: space-between;
}
.r18 .emg-base.emg-border > * {
  border: var(--emg-border-width) solid var(--emg-border-color);
}
.r18 .emg-base.emg-shadow > * {
  box-shadow: 2px 2px 5px var(--emg-shadow-color);
}
.r18 .emg-base.emg-rounded > * {
  border-radius: var(--emg-radius);
}
.r18 .emg-base.emg-rounded > *.new::before {
  border-bottom-right-radius: var(--emg-radius);
}
.r18 .emg-base.emg-circle > * {
  border-radius: 50%;
}
.r18 .emg-base.emg-circle > *.new::before {
  width: 100%;
}
.r18 .emg-base.emg-caption > *::after {
  content: attr(data-text);
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 0 5px;
  background: var(--emg-caption-bg-color);
  color: var(--emg-caption-text-color);
  font-size: 12px;
  line-height: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.r18 .emg-base.emg-caption-circle > *::after {
  padding: 0 26%;
}

@media (width < 768px) {
  .r18 .emg-base {
    gap: var(--emg-gap-sp);
  }
  .r18 .emg-base > * {
    width: calc((100% - (var(--r18emg-count-sp) - 1) * var(--emg-gap-sp)) / var(--r18emg-count-sp));
    padding-top: calc((100% - (var(--r18emg-count-sp) - 1) * var(--emg-gap-sp)) / var(--r18emg-count-sp));
  }
}




/* イラストページ */
.no_header {
  padding-bottom: 10px;
}
.illust_header {
  padding-bottom: 20px;
  max-width: 780px;
  margin: auto;
}
.main_header {
  padding-bottom: 20px;
  max-width: 780px;
  margin: auto;
}

.work_header {
  padding-bottom: 20px;
  max-width: 780px;
  margin: auto;
}

.illust {
  text-align: center;
  padding: 10px;
  max-width: 1000px;
  margin: auto;
}
.main {
  text-align: center;
  padding: 10px;
  max-width: 1000px;
  margin: auto;
}

.illust img {
  max-width: 100%;
  height: auto;
}
.main img {
  max-width: 100%;
  height: auto;
}

.illust_memo {
  max-width: 780px;
  margin: auto;
  padding: 30px 40px 50px;
  text-align: center;
}

.cap {
  max-width: 780px;
  margin: auto;
  padding: 30px 40px 50px;
  text-align: center;
}


.page_navi {
  display: flex;
  justify-content: space-around;
  padding: 0 50px 70px;
  margin: auto;
  max-width: 780px;
}

.fa-chevron-left::before {
  content: "\f053";
}
.fa-chevron-left::before {
  font: 900 1.5rem/1 "Font Awesome 5 Free";
}

.fa-ellipsis-v::before {
  content: "\f142";
}
.fa-ellipsis-v::before {
  font: 900 1.2rem/1 "Font Awesome 5 Free";
}

.fa-chevron-right::before {
  content: "\f054";
}
.fa-chevron-right::before {
  font: 900 1.5rem/1 "Font Awesome 5 Free";

}

/* まんがページ */
.no_header_comic {
  padding: 10px;
}
.comic {
  text-align: center;
  padding: 10px;
  max-width: 1000px;
  margin: auto;
}
.comic img {
  max-width: 100%;
  height: auto;
}
.comic_memo {
  max-width: 780px;
  margin: auto;
  padding: 10px;
}

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

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

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

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

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

ul.small li {
  display: inline;
}

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

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

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

dl {
  margin: 10px 0;
}

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

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

dl.inline {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 120px;
  margin: auto;
  margin-bottom: 30px;
  overflow: auto;
  box-sizing: border-box;
}

dl.inline2 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  margin: auto;
  margin-bottom: 30px;
  box-sizing: border-box;
}

dl.inline dt,
dl.inline dd,
dl.inline2 dt,
dl.inline2 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,
dl.inline2 dt:last-of-type,
dl.inline2 dd:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
}


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


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


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


dl.border {
  padding: 15px 20px;
  border: 1px dotted #dcc6ab;
  border-radius: 4px;
}

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

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

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

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

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

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

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

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

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

input:hover,
input:focus,
textarea:hover,
textarea:focus,
select:hover,
select:focus {
  border: 1px solid #ac9c8c;
 opacity: 0.5;
}

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

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


.form input {
  background-color: #b2a1a8;
  border-color: #b2a1a8;
}

/* フォームメーラー */
.form-text {
}
#form {
  max-width: 680px;
  padding-bottom: 40px;
}
.form textarea{
  width: 100%;
  padding: 10px;
}
input[type="text"]{
    color: red;
}

.thankyou {
  text-align: center;
}
.thankyou img {
  max-width: 100%;
  margin: auto;
}

/* 元々のフォーム隠し */
.form-block {
  display: none;
}

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

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

strong {
  background: #dcc6ab;
}

hr {
  border: 0;
}

hr::before {
  content: "■■■";
  display: block;
  margin: 75px 0;
  padding-left: 5px;
  text-align: center;
  letter-spacing: 5px;
  font-size: 1.2rem;
  color: #8ebde6;
}

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

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

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

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

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

.area.area-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 > div hr {
  border: 0;
  height: 1px;
  background: #c4dbf0;
}

.area.area-diary > div hr::before {
  content: none;
}

.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 5 Free";
  font-weight: 500;
}

.area.area-diary .more input[type="checkbox"],
.area.area-diary .more input[type="radio"] {
  display: none;
}

.area.area-diary .more input[type="checkbox"] + label,
.area.area-diary .more input[type="radio"] + label {
  display: block;
  text-align: center;
  color: #4a8ac7;
  cursor: pointer;
}

.area.area-diary .more input[type="checkbox"] + label::before,
.area.area-diary .more input[type="radio"] + label::before {
  content: "\f0d7 more";
  margin: 0 5px;
  font: 900 1.2rem/1 "Font Awesome 5 Free", "Yu Gothic", Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
}

.area.area-diary .more input[type="checkbox"] + label + *,
.area.area-diary .more input[type="radio"] + label + * {
  line-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}

.area.area-diary .more input[type="checkbox"] + label + * *,
.area.area-diary .more input[type="radio"] + label + * * {
  transition: all 0.2s;
}

.area.area-diary .more input[type="checkbox"]:not(:checked) + label + * *,
.area.area-diary .more input[type="radio"]:not(:checked) + label + * * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  line-height: 0;
}

.area.area-diary .more input[type="checkbox"]:not(:checked) + label + * *::before,
.area.area-diary .more input[type="checkbox"]:not(:checked) + label + * *::after,
.area.area-diary .more input[type="radio"]:not(:checked) + label + * *::before,
.area.area-diary .more input[type="radio"]:not(:checked) + label + * *::after {
  content: none;
}

.area.area-diary .more input[type="checkbox"]:checked + label::before,
.area.area-diary .more input[type="radio"]:checked + label::before {
  content: "\f0d8 more";
}

.area.area-diary .more input[type="checkbox"]:checked + label + *,
.area.area-diary .more input[type="radio"]:checked + label + * {
  margin: 10px 0 20px;
  line-height: 1.6;
  opacity: 1;
  visibility: visible;
  transition: line-height 0.3s ease-out, opacity 0.1s linear 0.1s, visibility 0.1s linear 0.1s;
}

/* スマホ設定 */
@media (width < 900px) {
  body,
  button {
    font-size: 0.9375rem;
    line-height: 1.8;
  }
  body::before {
    content: none;
  }
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  /* リスト */
  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
  dl.inline2 dt,
  dl.inline2 dd {
    display: block;
  }
  dl.border dt,
  dl.inline dt,
  dl.inline2 dt {
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
  dl.border dd,
  dl.inline dd,
  dl.inline2 dd {
    width: calc(100% - 40px);
    padding-left: 40px;
  }
  /* フォーム */
  .form-inline input {
    width: 45%;
  }
  .form-block dl.inline dt {
    width: 100%;
    padding: 0;
  }
  .form-block dl.inline dd {
    width: 100%;
  }
  .form-block > *,
  .form-block dl dd > * {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 5px;
  }
}
/* ----- ▲ レイアウト　ここまで ▲ ----- */
