@charset "utf-8";
/*********************************

  Reset Css

*********************************/
/* A Modern CSS Reset (2020/11/6) 一部追加・変更 */
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default margin */
:where(body, h1, h2, h3, h4, h5, h6, p, figure, figcaption, blockquote) {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
:where(ul, ol)[role="list"] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased; /* from Josh's Custom CSS Reset */
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
:where(img, svg, picture) {
  block-size: auto;
  max-inline-size: 100%;
}

/* Inherit fonts for inputs and buttons */
:where(input, button, textarea, select) {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* 追加 */
table {
  border-collapse: collapse;
}

/* 参考：ざっくりつかむCSS設計 P69*/
:where(ul, ol, li, dl, dd) {
  margin: 0;
  padding: 0;
}

:where(h1, h2, h3, h4, h5, h6) {
  font-size: inherit;
  font-weight: inherit;
}

/*--------------------------------
  Josh's Custom CSS Reset / EllyLoel/reset.css から追加
--------------------------------*/
/* テキストのオーバーフロー回避 */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word; /* from Josh's Custom CSS Reset */
}

/* 要素のボーダーを削除、背景プロパティのデフォルト値設定 */
*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}

/* textareaのサイズ変更は垂直のみ、ブラウザがサポートしている場合にのみblock */
:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
/* 操作可能な要素のカーソルをポインター表示に */
:where(a[href], area, button, label[for], select, summary, [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

/* ボタンのテキスト選択不可 */
:where(input[type="file"])::-webkit-file-upload-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  text-align: center;
}
:where(button, button[type], input[type="button"], input[type="submit"], input[type="reset"]),
:where(input[type="file"])::-webkit-file-upload-button,
:where(input[type="file"])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  text-align: center;
}

/* 無効化されたボタンのカーソルを無効化表示に */
:where(button, button[type], input[type="button"], input[type="submit"], input[type="reset"])[disabled] {
  cursor: not-allowed;
}

/* ストロークを削除し、fillの塗りつぶしカラーはフォントカラーを継承 */
:where(svg) {
  stroke: none;
  fill: currentColor;
}

/* fill属性のないSVG */
:where(svg):where(:not([fill])) {
  /* fillを取り除き、ストロークのカラーはフォントカラーを継承 */
  stroke: currentColor;
  fill: none;
  /* 丸みを帯びたストローク */
  stroke-linecap: round;
  stroke-linejoin: round;
}
/*********************************

  foundation

*********************************/
html {
  font-size: 62.5%;
  height: 100%;
  /* visibility: hidden; */
}
/* html.wf-active {
  visibility: visible;
} */

body {
  position: relative;
  color: #333;
  font-size: 1.4rem;
  font-display: block;
  font-family: YakuHanJPs, "Open Sans", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  width: 100%;
  min-width: 350px;
  overflow-x: hidden;
  background-color: #fff;
  line-height: 1.5;
  /* background-color: #dcd3b2; */
}

a {
  color: #666655;
  font-weight: bold;
}

a:visited,
A:active {
  color: #aa9966;
}

a:hover {
  color: #ccccbb;
}

p {
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0;
}

/*********************************

  レイアウト

*********************************/

.l-header,
.l-main,
.l-footer {
  max-width: 750px;
  margin: 0 auto;
}

.container {
  padding: 12px 12px 36px;
}

.l-header {
  margin: 6px auto 6px;
}

.l-main {
  padding: 0 12px;
}

.bl-section__header {
  margin: 0 -12px;
  background-color: #fff;
  padding: 0px 12px;
  border-color: #000;
  border-style: solid;
  border-width: 2px 0;
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width: 480px) {
  .bl-section__header {
    font-size: 1.6rem;
    text-align: center;
  }
}

.bl-section__title {
  padding: 15px 0;
}

.bl-section__leadText {
  padding: 32px 0;
}

.bl-section__content {
}

.bl-section__footer {
  margin: 36px -12px 0;
  background-color: #fff;
  padding: 0px 12px;
  border-color: #000;
  border-style: solid;
  border-width: 2px 0;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}

.bl-section__footer > a {
  color: #000;
}

.bl-section__footer > a:hover {
  color: #999;
}

/*********************************

  フッター

*********************************/
.l-footer {
  padding: 24px 0px;
  /* font-size: 1.2rem; */
  text-align: right;
  color: #666;
}

.bl-footerCredit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-end;
}
@media screen and (max-width: 599px) {
  .bl-footerCredit {
    display: block;
  }
}
.bl-footerCredit__item {
  padding: 0 10px;
  display: inline-block;
}
.bl-footerCredit__item a {
  color: #666;
}

.bl-footerCredit__item a:hover {
  color: #999;
}

.bl-footerCredit__item:not(:first-child) {
  border-left: 1px solid #ccc;
}
@media screen and (max-width: 599px) {
  .bl-footerCredit__item {
    display: block;
    text-align: center;
  }
  .bl-footerCredit__item:not(:first-child) {
    padding-top: 10px;
    border-left-width: 0;
  }
}

.l-footer__toTopBtn {
  position: fixed;
  width: 50px;
  height: 50px;
  right: 20px;
  bottom: 20px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 999;
}
@media screen and (max-width: 599px) {
  .l-footer__toTopBtn {
    right: 5px;
    bottom: 5px;
  }
}

.c-btn-toTop {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 10px;
  border: 2px solid transparent;
  /* background-color: #ba8b40; */
  background: rgb(186 139 64 / 0.85);
  z-index: 2;
  text-decoration: none;
  color: #fff;
}
.c-btn-toTop::before {
  content: "";
  border-color: #fff;
  border-style: solid;
  border-width: 3px 0 0 3px;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 15.34314576px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.c-btn-toTop__text {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  display: block;
  width: 100%;
  position: absolute;
  bottom: 8px;
}
.c-btn-toTop:hover {
  border-color: rgb(186 139 64);
  background: #fff;
  color: rgb(186 139 64);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.c-btn-toTop:hover::before {
  border-color: rgb(186 139 64);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

/*********************************

  汎用パーツ

*********************************/
.c-list-bullet__title {
  font-size: 1.4rem;
  margin-bottom: 6px;
  font-weight: bold;
}

.c-list-bullet {
  margin-bottom: 32px;
}
.c-list-bullet > *:last-child {
  margin-bottom: 0;
}
.c-list-bullet > li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 0.4em;
}
.c-list-bullet > li::before {
  content: "";
  position: absolute;
  top: calc(0.5em + 2px);
  left: 0.4em;
  display: block;
  width: 0.3em;
  height: 0.3em;
  line-height: 1;
  background-color: currentColor;
  border-radius: 50%;
}

.c-text:not(:last-child) {
  margin-bottom: 12px;
}

.c-pager {
  display: flex;
  justify-content: space-between;
}

.c-pager__item {
  width: 100%;
  min-width: 100px;
  padding: 15px 12px;
}

.c-pager__item > a,
.c-pager__item > span {
  font-size: 1.4rem;
}

.c-pager__item--prev {
  text-align: right;
}

.c-pager__item--back {
  text-align: center;
}

.c-pager__item--next {
  text-align: left;
}

.c-pager__item--last {
  color: #ffffff;
}

/*********************************

  メニュー

*********************************/
/*------ グローバルメニュー -------*/
.l-globalNav {
  display: flex;
  justify-content: flex-end;
}
.l-globalNav__list {
  display: flex;
}

.l-globalNav__item:not(:first-child) {
  border-left: 1px solid #ccc;
}

.l-globalNav__item > a {
  display: block;
  padding: 3px 24px;
  color: #666;
  font-weight: bold;
  font-size: 1.4rem;
}

.l-globalNav__item > a:hover {
  color: #ccc;
}

@media screen and (max-width: 480px) {
  .l-globalNav {
    display: flex;
    justify-content: center;
  }
  .l-globalNav__list {
    width: 100%;
    justify-content: space-between;
  }

  .l-globalNav__item {
    width: 100%;
  }

  .l-globalNav__item > a {
    text-align: center;
    padding: 0;
  }
}

/*********************************

  絵置き場用設定

*********************************/
.bl-section__leadText--illust {
  padding-bottom: 0;
}

.bl-illust__wrapper {
  padding: 32px 0px 0;
  border-top: 2px dotted #bbbb99;
  margin-top: 32px;
}

.bl-illust__wrapper:first-of-type {
  border: none;
  margin-top: 0px;
}

.bl-illust__wrapper--noBorder {
  border: none;
}

.c-illust__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin: 0 auto 2em;
}

.c-illust {
  display: block;
  margin: 0 auto 2em;
}

.c-illust--border {
  border: 1px solid #ccc;
}

.c-illust--border999 {
  border: 1px solid #999;
}

.c-illust--border666 {
  border: 1px solid #666;
}

.c-illust--borderBK {
  border: 1px solid #333;
}

.c-illust--multi {
  margin: 0;
}

.c-illust--marginBottomL {
  margin-bottom: 6em;
}

.p-illust__note + .c-illust,
.bl-illust__text + .c-illust,
.bl-illust__title + .c-illust {
  padding-top: 32px;
}

.bl-illust__title,
.bl-illust__text,
.bl-illust__footer {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}

.bl-illust__title {
  font-weight: bold;
  font-size: 1.4rem;
  margin-top: 24px;
  margin-bottom: 1em;
}

.bl-illust__title--sub{display: flex;}

.bl-illust__title--sub::before {
  content: "";
  display: block;
  background-color: #333;
  width: 11px;
  margin-right: 0.1em;
  /* height: 1.5em; */
  mask: url(../img/symbol_caret-double.gif) left center no-repeat;
}

.bl-illust__text {
  line-height: 1.5;
  margin-bottom: 1em;
}

.bl-illust__text:first-of-type {
  margin-top: 1em;
}

.bl-illust__text--hidden {
  color: #f9f9f9;
}

.p-illust__noteSub,
.bl-illust__text--quote {
  color: #cc6666;
}
.bl-illust__text--quoteBlue {
  color: #668888;
}

.bl-illust__footer{
  color:#888;
  margin-top: 1.5em;
}
.bl-illust__footer::before{
  content: "□";
  font-weight: bold;
}

img.ar {
  width: 11px;
  height: 11px;
  vertical-align: middle;
}

.footer {
  text-align: right;
  color: #666655;
  max-width: 650px;
}

.title {
  text-align: left;
  color: #666655;
  font-weight: bold;
  margin-top: 3em;
}

span.ar {
  color: #ffffff;
}

@media screen and (max-width: 650px), handheld {
  /* �X�}�[�g�t�H���p */

  .for_pc {
    display: none;
  }

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

  /* �X�}�[�g�t�H���p�����܂� */
}
