@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

*********************************/
@media screen and (min-width: 481px) {
  /* .for_sp{display: none;} */
}

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

p:not(:last-child) {
  margin-bottom: 12px;
}

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

  レイアウト

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

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

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

  フッター

*********************************/
.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,
.l-globalNav__item--current > span {
  display: block;
  padding: 3px 24px;
  font-weight: bold;
  font-size: 1.4rem;
}
.l-globalNav__item > a {
  color: #666;
}

.l-globalNav__item--current > span {
  color: #cc9900;
  font-weight: bold;
}

.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,
  .l-globalNav__item > span {
    text-align: center;
    padding: 0;
  }

  .for_pc {
    display: none;
  }
}

/*--------------------------------

			セクション

--------------------------------*/
/*------ セクション見出し -------*/
.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__title--main {
  font-size: 1.8rem;
}
@media screen and (max-width: 599px) {
  .bl-section__title--main {
    text-align-last: left;
    font-size: 1.6rem;
  }
}

.bl-section__title--main::after {
  content: "●●●";
  letter-spacing: 2px;
  margin-left: 5px;
  background-image: linear-gradient(90deg, #cc9900 0%, #cc9900 33%, #cc6600 33%, #cc6600 66%, #cc3300 66%, #cc3300 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* h1 img {
  margin-left: 0.5em;
  vertical-align: middle;
} */
/*------ セクションコンテンツ -------*/
.bl-section__leadText {
  padding: 32px 0;
}

.bl-section__header + .bl-section__content {
  margin-top: 12px;
}

/*------ セクションフッター -------*/
.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;
}

/*--------------------------------

			サブセクション

--------------------------------*/
.bl-subsection {
  margin-top: 48px;
}

.bl-subsection:first-child {
  margin-top: 0px;
}

.bl-subsection__title {
  color: #ffffff;
  background-color: #994444;
  font-weight: bold;
  padding: 8px 12px;
  margin: 0px -12px 12px;
  /* font-size: 1.6rem; */
}

.bl-subsection__titleInner {
  display: flex;
  align-items: center;
}
.bl-subsection__titleInner::before {
  content: "";
  display: inline-block;
  height: 0.8em;
  width: 0.6em;
  margin-right: 0.2em;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* h2,
h3 {
  padding: 3px 0px;
  margin: 0.5em 0em;
  width: 100%;
} */

/* h2 div,
h3 div {
  padding-left: 16px;
} */

/* h4 {
  padding-left: 5px;
} */
/*--------------------------------

      トピック

--------------------------------*/
.bl-topic:not(:first-of-type) {
  border-top: 1px dotted #999999;
  padding-top: 24px;
  margin-top: 24px;
}

.bl-topic__title {
  font-weight: bold;
  margin-bottom: 6px;
  color: #994444;
}

.bl-topic__title:not(:first-of-type) {
  margin-top: 32px;
}

.bl-topic__title::before {
  content: "■";
  margin-right: 0.2em;
}

/*--------------------------------

      サブメニュー

--------------------------------*/
.c-submenu {
  padding: 24px 12px;
  border-top: 1px dotted #999;
  margin: 0 -12px;
}

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

.c-submenu__item {
  /* border-left: 1px solid #000; */
  width: 100%;
}

.c-submenu__item a {
  text-align: center;
  display: block;
  padding: 2px 4px;
  width: 100%;
}

.c-submenu__item a::before {
  content: "-";
  display: inline-block;
  margin-right: 0.2em;
}

.c-submenu__item--label a::before {
  content: ">";
}

/*------ 旧設定 -------*/

/* table {
  border-collapse: collapse;
  border: none;
  border-spacing: 0;
}

th,
td {
  vertical-align: top;
}

th {
  text-align: center;
}

ul,
ol,
dl {
  list-style: none;
}

li,
dt {
  display: list-item;
}

img,
a img {
  border: none;
} */

.red {
  color: #990000;
}

.pale2 {
  color: #ffffff;
}

small {
  font-weight: normal;
  font-size: 0.83em;
}

img.l {
  width: 750px;
  height: 3px;
}
