@charset "utf-8";


/* ================= RESET ==================
============================================== */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  /* スクロールバーによるがたつきを無くすため、常時表示しておく */
  overflow-y: scroll;
  word-wrap:break-word;
}

body {
  margin: 0
}

main {
  display: block
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none
}

dt {
  font-weight: 700
}

dd {
  margin-left: 0
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit
}

pre {
  font-family: monospace, monospace;
  font-size: inherit
}

address {
  font-style: inherit
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit
}

abbr[title] {
  text-decoration: underline dotted
}

b,
strong {
  font-weight: bolder
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit
}

small {
  font-size: 80%
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline
}

sub {
  bottom: -.25em
}

sup {
  top: -.5em
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  outline: none;
}

button:focus,
input:focus,
optgroup:focus,
select:focus,
textarea:focus {
  outline: none;
}

[type="checkbox"] {
  -webkit-appearance: checkbox;
  appearance: checkbox
}

[type="radio"] {
  -webkit-appearance: radio;
  appearance: radio
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer
}

button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
  cursor: default
}

:-moz-focusring {
  outline: auto
}

select:disabled {
  opacity: inherit
}

option {
  padding: 0
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0
}

legend {
  padding: 0
}

progress {
  vertical-align: baseline
}

textarea {
  overflow: auto
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto
}

[type="search"] {
  outline-offset: -2px
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit
}

/* label[for] {
  cursor: pointer
} */

details {
  display: block
}

summary {
  display: list-item
}

[contenteditable]:focus {
  outline: auto
}

table {
  border-color: inherit
}

caption {
  text-align: left
}

td,
th {
  vertical-align: top;
  padding: 0
}

th {
  text-align: left;
  font-weight: 700
}


/* ================= COMMON ==================
============================================== */
body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 12px;
  color: #292724;
  line-height: 1.5;
}

:where(article) img {
  max-width: 100%;
  display: block;
  margin: auto;
  user-select: none; /* Chromeでクリックすると画像が青くなる対策 */
  -webkit-user-select: none;
}
article {
  /* padding: 40px 0 60px; */
  padding: 15px 0 60px;
}
.main_wrap {
  padding: 0 15px;
}
.wrap {
  padding: 0 15px;
}
section.section {
  padding-top: 15px;
}
section.section:not(:last-child) {
  padding-bottom: 25px;
}
.block+.block {
  margin-top: 15px;
}
.is_pc {
  display: none;
}
@media screen and (min-width: 521px) {
  body{
    font-size: 14px;
  }
  a:hover {
    opacity: 0.7;
  }
  article {
    padding: 20px 0 80px;
  }
  .main_wrap {
    width: 100%;
    max-width: 1260px;
    padding: 0 40px;
    margin: auto;
  }
  .wrap {
    width: 100%;
    padding: 0 20px;
    margin: auto;
  }
  section.section {
    padding-top: 20px;
  }
  section.section:not(:last-child) {
    padding-bottom: 30px;
  }
  .block+.block {
    margin-top: 25px;
  }
  .is_sp {
    display: none;
  }
}




/* ================= HEADING & TEXT ==========
============================================== */
.headingH1 {
  padding-bottom: 0;
  margin-bottom: 25px;
}
.headingH1 .headingH1__label {
  font-weight: bold;
  font-size: 20px;
}
.headingH2 {
  margin-bottom: 20px;
  padding: 0 0 8px;
  position: relative;
}
.headingH2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: #eeeeee;
}
.headingH2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 6px;
  background: #fccf00;
}
.headingH2 .headingH2__label {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
}
.headingH3 {
  padding: 0 20px;
  border-left: 20px solid #fccf00;
  background-color: #eeeeee;
  border-radius: 10px;
  margin-bottom: 10px;
  margin-left: 0;
}
.headingH3 .headingH3__label {
  font-size: 18px;
  font-weight: bold;
  padding: 10px 0;
}

.headingH4 {
  margin-bottom: 15px;
}

.headingH4 .headingH4__label {
  font-size: 16px;
  font-weight: bold;
  display: block;
}

.headingH4 .headingH4__label a {
  color: #000;
  text-decoration: none;
  position: relative;
}

.headingH6 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
}
.heading__txt {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 10px;
}
.txt__notes {
  font-size: 11px;
  text-indent: -1em;
  padding-left: 1em;
}
.txt__link {
  text-decoration: underline;
  color: #000;
  word-break: break-all;
}
.txt__thatsall {
  font-size: 12px;
  margin-top: 10px;
}
.txt__follow {
  font-size: 13px;
  margin-top: 40px;
}
.txt-c {
  text-align: center !important;
}
.text01 {
  margin-bottom: 20px;
}
.text01 p+p {
  margin-top: 20px;
}

@media screen and (min-width: 521px) {
  .headingH1 .headingH1__label{
    font-size: 24px;
  }
  .headingH2 {
    margin-bottom: 30px;
    padding-bottom: 15px;
  }
  .headingH2 .headingH2__label {
    font-size: 22px;
  }
  .headingH2::after {
    width: 94px;
    background: #fccf00;
  }
  .headingH3 {
    padding: 10px 20px;
  }
  .headingH3 .headingH3__label {
    font-size: 20px;
    padding: 0;
  }
  .text__lead{
    font-size: 14px;
  }
  .headingH6 {
    font-size: 16px;
  }
  .heading__txt {
    font-size: 14px;
  }
  .txt__notes {
    font-size: 12px;
  }
  .txt__thatsall {
    text-align: right;
    margin-top: 20px;
  }
  .txt__follow {
    font-size: 15px;
    margin-top: 80px;
  }
}



/* ================= GRID ====================
============================================== */
.grid {
  overflow: hidden;
}

.grid .grid__wrap {
  display: flex;
  flex-wrap: wrap;
}

.grid .grid__img {
  margin-bottom: 10px;
}

.grid .grid__text {
  padding: 0 10px;
}

.grid .grid__text .headingH4 a {
  display: inline-block;
  padding-left: 15px;
}

/* @media screen and (min-width: 768px) {
  .grid .grid__wrap {
    margin-left: -40px;
    margin-top: -40px;
  }

  .grid .grid__wrap>.grid04-pc {
    width: calc(33.3333333333% - 40px);
    margin-top: 40px;
    margin-left: 40px;
  }
} */

@media screen and (max-width: 767px) {
  .grid .grid__wrap {
    margin-left: -4.5%;
    margin-top: -25px;
  }

  .grid .grid__wrap>[class*="-pc"] {
    width: 95.5%;
    margin-top: 25px;
    margin-left: 4.5%;
  }

  .grid .grid__wrap>.grid06-sp {
    width: 45.5%;
    margin-top: 25px;
    margin-left: 4.5%;
  }
}


/* ================= TABLE & FRAME ====================
============================================== */
dl.frame01 {
  border: 3px solid #eee;
  border-radius: 5px;
}

dl.frame01 dt {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  background: #eeeeee;
  padding: 8px;
}

dl.frame01 dd {
  padding: 15px;
}

.text01~dl.frame01 {
  margin-top: 25px;
}

.table01 table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
  table-layout: fixed;
}

.table01 table tr:nth-child(even) {
  background: #fffae5;
}

.table01 table th,
.table01 table td {
  padding: 15px;
  border: 1px solid #eeeeee;
}

.table01 table th {
  width: 180px;
  font-weight: bold;
  background-color: #fccf00;
}

@media screen and (min-width: 768px) {
  .table01 table td {
    padding-left: 50px;
  }
}

@media screen and (max-width: 767px) {
  dl.frame01 dt {
    font-size: 14px;
  }

  .table01 table th {
    width: 40%;
  }
}

/* ================= LIST ====================
============================================== */
.notes__num li {
  color: #000;
  position: relative;
  padding-left: 2.1em;
  counter-increment: notes__num;
}

.notes__num li::before {
  content: "※" counter(notes__num);
  position: absolute;
  top: 0;
  left: 0;
}

.notes__num li+li {
  margin-top: 7px;
}

.list__disc {
  margin-bottom: 20px;
}

.list__disc li {
  position: relative;
}

.list__disc li::before {
  content: '・';
}

.list__num li {
  counter-increment: list__num;
  position: relative;
  padding-left: 2.6em;
  font-size: 14px;
}

.list__num li::before {
  content: counter(list__num) ".";
  position: absolute;
  top: 0;
  left: 0;
}

.list__num02 {
  font-size: 14px;
}

.list__num02--privacy li {
  word-break: break-all;
}

.list__num02--privacy li a {
  text-decoration: underline;
}

.list__num02--privacy li a::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 11px;
  background: url(/resources/top/img/icon_tab.svg) center/contain no-repeat;
  vertical-align: -2px;
  margin-left: 5px;
}

.list__num02 li {
  text-indent: -2.5em;
  padding-left: 2.5em;
}

.list__space li+li {
  margin-top: 20px;
}

.list__notes {
  margin-bottom: 20px;
}

.list__notes li {
  position: relative;
  color: rgba(0, 0, 0, 0.7);
}

.list__notes li::before {
  content: '※';
}

.linkIcon .linkPdf {
  display: inline-block;
  position: relative;
  text-decoration: underline;
  padding-right: 24px;
  color: #000;
}

@media screen and (min-width: 768px) {
  .linkIcon .linkPdf::after {
    content: "";
    position: absolute;
    top: 1px;
    right: 0;
    background: url(/assets/img/icon_pdf.png) no-repeat;
    background-size: 100% 100%;
    width: 14.5px;
    height: 17px;
  }
}

@media screen and (max-width: 767px) {

  .list__num02,
  .list__notes {
    font-size: 12px;
  }

  .linkIcon .linkPdf::after {
    content: "";
    position: absolute;
    top: -2px;
    right: 0;
    background: url(/assets/img/icon_pdf-sp.png) no-repeat;
    width: 19px;
    height: 19px;
    background-size: 100% 100%;
  }
}



/* ================= NEWS ====================
============================================== */
.news__list dl {
  display: flex;
  flex-wrap: wrap;
  padding: 13px 0;
  border-bottom: 1px solid #e6e6e6;
  font-size: 14px;
}

.news__list dl:first-child {
  border-top: 1px solid #e6e6e6;
}

.news__list dl:nth-child(even) {
  background: #fffae5;
}

.news__list dl dt {
  width: 200px;
  font-weight: normal;
  text-align: center;
  padding: 0 10px;
}

.news__list dl dd {
  width: calc(100% - 200px);
  padding: 0 15px;
}

.news__list dl dd a {
  font-weight: bold;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .news__list dl {
    font-size: 11px;
  }

  .news__list dl dt {
    width: 35%;
    text-align: left;
    padding: 0 15px;
  }

  .news__list dl dd {
    width: 65%;
    padding: 0 15px;
  }
}


/* ================= PAGE NAV ====================
============================================== */
.pagination {
  margin-top: 40px;
}

.pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination__list li+li {
  margin-left: 20px;
}

.pagination__list li a {
  font-size: 14px;
  font-weight: bold;
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: block;
  text-align: center;
  border-radius: 8px;
}

.pagination__list li.current a,
.pagination__list li:not(.prev, .next) a:hover {
  background: #000000;
  color: #fff;
}

.pagination__list li.next a,
.pagination__list li.prev a {
  font-size: 0;
  color: transparent;
}

.pagination__list li.next a::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #000;
}

.pagination__list li.prev a::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 8px 6px 0;
  border-color: transparent #000 transparent transparent;
}

@media screen and (max-width: 767px) {
  .pagination {
    margin-top: 30px;
  }

  .pagination__list li a {
    font-size: 12px;
  }
}



/* ================= btn ====================
============================================== */

:where(article) .btnWrap {
  margin: 10px 0;
  padding-top: 10px;
}

:where(article) .btn_black {
  width: 100%;
  max-width: 345px;
  background: #000000;
  border-radius: 1.6em;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  display: inline-block;
  padding: 10px;
}

:where(article) .btn_list,
:where(article) .btn_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 10px;
}

:where(article) .btn_list a {
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #000;
  border-radius: 30px;
  padding: 6px 15px;
  transition: 0.3s;
  display: flex;
}
:where(article) .btn_list a:hover,
:where(article) .btn_list a:active{
  opacity: 0.8;
}

:where(article) .link__arrow,
:where(article) .link__list li a {
  position: relative;
  padding-left: 15px;
  color: #000;
}

:where(article) .link__arrow:before,
:where(article) .link__list li a:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent #000;
  position: absolute;
  top: 0.5em;
  left: 0;
}

:where(article) .link__list li+li {
  margin-top: 15px;
}

:where(article) .link__list li a {
  font-size: 13px;
}

@media screen and (min-width: 768px) {
  :where(article) .btn_black:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  :where(article) .btn_black {
    width: 100%;
    font-size: 14px;
  }
}

:where(article) .grid01 img {
  width: 100%;
}

/* @media screen and (min-width: 768px) {
  :where(article) .grid01+.grid01 {
    margin-top: 40px;
  }

  :where(article) .grid01 {
    display: flex;
    flex-wrap: wrap;
  }
} */

@media screen and (max-width: 767px) {
  :where(article) .grid01+.grid01 {
    margin-top: 20px;
  }
}


/* ================= 404 ====================
============================================== */
.block__404 {
  text-align: center;
}

.block__404 .heading__txt {
  font-size: 24px;
  margin-bottom: 40px;
}

.block__404 .image01 {
  margin-bottom: 30px;
}

.block__404 .image01 .__text {
  color: rgba(0, 0, 0, 0.5);
  margin-top: 15px;
}

.block__404 .text01 {
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .block__404 .heading__txt {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
