@charset "UTF-8";

/* ------------------------------------------- */
/* root */
/* ------------------------------------------- */
:root {
  --default-text-color: #373232;
}

/* --------------------------------------------------------------- */
/* reset start */
/* --------------------------------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
video {
  display: block;
}

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

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  display: inline-block;
  margin: 0;
  padding: 0;
  color: var(--default-text-color);
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    text-decoration: none;
  }
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 0.1rem dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*:after,
*:before {
  -webkit-appearance: none;
  word-break: break-all;
  box-sizing: border-box;
}

video {
  filter: contrast(1);
}

/* --------------------------------------------------------------- */
/* reset end */
/* --------------------------------------------------------------- */

/* タブレット(1081px以上)のみ非表示 */
@media print, screen and (min-width: 1080.01px) {
  .tab-off {
    display: none !important;
  }
}
/* PC(768px以上)のみ非表示 */
@media print, screen and (min-width: 767.01px) {
  .pc-off {
    display: none !important;
  }
}
/* スマホのみ非表示 */
@media screen and (max-width: 767px) {
  .sp-off {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    color: var(--default-text-color);
  }
}
@media screen and (min-width: 767.01px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}

html {
  font-size: 62.5%;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: none;

  @media screen and (min-width: 1080.01px) and (max-width: 1919.99px) {
    font-size: calc(10 / 1920 * 100 * 1vw);
  }

  /* あまりにも文字サイズが小さくなった場合 */
  @media screen and (min-width: 767.01px) and (max-width: 1080px) {
    overflow-x: auto;
    min-width: 1080px;
    font-size: calc(10 / 1920 * 100 * 10.8px);
  }

  /* スマホ用（デザインサイズが375の場合） */
  @media screen and (max-width: 767px) {
    font-size: calc(10 / 375 * 100 * 1vw);
    min-width: auto;
  }
}

body {
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.04em;
  overflow: hidden;
  @media screen and (max-width: 767px) {
    font-size: 1.4rem;
    overflow: hidden;
  }
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: top;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  @media screen and (max-width: 767px) {
    /* スマホ画像長押し禁止対策 */
    pointer-events: none;
  }
}

/* ------------------------------------------- */
/* 印刷用の設定 */
/* ------------------------------------------- */
@media print {
  html {
    font-size: calc(10 / 1920 * 100 * 14px);
  }
  body {
    -webkit-print-color-adjust: exact;
    position: relative;
    width: 1400px;
    zoom: 70%;
  }
}
@page {
  size: A4;
  margin: 10mm;
}

/* ------------------------------------------- */
/* デバッグ用：スクロールバーを0pxに
/* ------------------------------------------- */
.deve body {
  --sb-track-color: #ddd;
  --sb-thumb-color: #000;
  --sb-size: 0;
  /* scrollbar-color: var(--sb-thumb-color) var(--sb-track-color); */
  overflow-x: hidden;
}
.deve body::-webkit-scrollbar {
  width: var(--sb-size);
}
.deve body::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 1px;
}
.deve body::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 1px;
}

/* --------------------------------------------------------------- */
/* wrapper */
/* --------------------------------------------------------------- */
#wrapper {
  /* overflow: clip; */
}

.menu-active {
  @media screen and (max-width: 767px) {
    overflow: hidden;
  }
}

/* --------------------------------------------------------------- */
/* header */
/* --------------------------------------------------------------- */
#header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;

  @media screen and (max-width: 767px) {
  }

  /* メニューボタン */
  .menu-btn {
    /* position: absolute; */
    display: none;
    top: 0;
    right: 0;
    z-index: 9999;

    @media screen and (max-width: 767px) {
      display: block;
    }

    &:after {
      /* content: "MENU"; */
      content: "";
      position: absolute;
      left: 50%;
      bottom: 1.1rem;
      color: #e90000;
      font-weight: 500;
      letter-spacing: 0.05em;
      font-size: 1.1rem;
      transform: translateX(-50%);
      white-space: nowrap;
    }

    & a {
      position: relative;
      width: 10rem;
      height: 10rem;
      vertical-align: top;
      transition: ease 0.25s all;

      @media screen and (max-width: 767px) {
        width: 6.2rem;
        height: 6.2rem;
      }

      & span {
        position: absolute;
        left: 50%;
        top: 50%;
        display: block;
        margin-left: -1.8rem;
        width: 3.4rem;
        height: 0.2rem;
        background: #e90000;
        border-radius: 0.3rem;

        @media screen and (max-width: 767px) {
          margin-left: -1.4rem;
          width: 2.8rem;
          height: 0.2rem;
        }

        &:before,
        &:after {
          content: "";
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          background: #e90000;
          border-radius: 0.3rem;
          transition: ease 0.25s all;
        }

        &:before {
          margin-top: -1.1rem;
        }
        @media screen and (max-width: 767px) {
          &:before {
            margin-top: -0.7rem;
          }
        }
        &:after {
          margin-top: 1.1rem;
        }
        @media screen and (max-width: 767px) {
          &:after {
            margin-top: 0.7rem;
          }
        }
      }
    }
  }
}

@media screen and (max-width: 767px) {
  .nav {
    position: fixed;
    left: 100%;
    z-index: 999;
    width: 100%;
    pointer-events: none;
  }
}

.menu-active {
  #header {
    .menu-btn {
      /* position: fixed; */
      & a {
        background-color: #fff;
        & span {
          background-color: transparent;
          &:before {
            margin-top: 0;
            transform: rotate(45deg);
            -webkit-transform: rotate(45deg);
          }
          &:after {
            margin-top: 0;
            transform: rotate(-45deg);
            -webkit-transform: rotate(-45deg);
          }
        }
      }
    }

    @media screen and (max-width: 767px) {
      .nav {
        left: 0;
        pointer-events: auto;
      }
    }
  }
}

/* --------------------------------------------------------------- */
/* breadcrumbs */
/* --------------------------------------------------------------- */
#breadcrumbs {
  padding: 2.4rem 0;

  @media screen and (max-width: 767px) {
    display: none;
  }
  & ol {
    display: flex;
    flex-wrap: wrap;
  }
  & li {
    position: relative;
    margin-right: 3.7rem;
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: 0.1em;

    &:last-child {
      margin-right: 0;
      &:after {
        display: none;
      }
    }

    &:after {
      content: "";
      position: absolute;
      right: -2.7rem;
      top: 50%;
      z-index: 0;
      display: block;
      width: 1.4rem;
      height: 1px;
      background: #bcbcbc;
      &:last-child:after {
        display: none;
      }
    }
  }
  & a {
    text-decoration: underline;
    color: #7aa3c6;

    @media (hover: hover) and (pointer: fine) {
      &:hover {
        text-decoration: none;
      }
    }
  }
}

/* --------------------------------------------------------------- */
/* container */
/* --------------------------------------------------------------- */
#container {
}

/* --------------------------------------------------------------- */
/* contents */
/* --------------------------------------------------------------- */
#contents {
}

/* --------------------------------------------------------------- */
/* footer */
/* --------------------------------------------------------------- */
#footer {
}

/* ------------------------------------------- */
/* inner config */
/* ------------------------------------------- */
.inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;

  @media screen and (max-width: 767px) {
    width: calc(100% - 5.4rem);
  }
}

.w960 {
  max-width: 96rem;
}
.w1080 {
  max-width: 108rem;
}
.w1200 {
  max-width: 120rem;
}
.w1280 {
  max-width: 128rem;
}
.w1400 {
  max-width: 140rem;
}
.w1440 {
  max-width: 144rem;
}

/* ------------------------------------------- */
/* align */
/* ------------------------------------------- */
.tar {
  text-align: right;
}
.tal {
  text-align: left;
}
.tac {
  text-align: center;
}

/* --------------------------------------------------------------- */
/* common parts */
/* --------------------------------------------------------------- */

/* ------------------------------------------- */
/* common-area */
/* ------------------------------------------- */
.common-area {
}

/* ------------------------------------------- */
/* common-title */
/* ------------------------------------------- */
.common-title {
}
/* type01 */
.common-title.type01 {
  text-align: center;
}

/* ------------------------------------------- */
/* common-btn */
/* ------------------------------------------- */
.common-btn {
}

/* ------------------------------------------- */
/* common-select */
/* ------------------------------------------- */
.common-select {
}

/* ------------------------------------------- */
/* common-list */
/* ------------------------------------------- */
.common-list {
}

/* ------------------------------------------- */
/* common-text */
/* ------------------------------------------- */
.common-text {
}

/* ------------------------------------------- */
/* common-table */
/* ------------------------------------------- */
.common-table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;

  & p {
    margin-bottom: 2rem;
    &:last-child {
      margin-bottom: 0;
    }
  }
}
/* table-scroll */
@media screen and (max-width: 767px) {
  .table-scroll {
    position: relative;
    padding-bottom: 2rem;
    overflow-x: scroll;
    &:after {
      content: "←";
      position: absolute;
      right: 0;
      bottom: 0;
      z-index: 1;
      margin-left: -1.5rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      width: 3rem;
      height: 3rem;
      border-radius: 1.5rem;
      border: 0.1rem solid #000;
      animation: arrowtable 2s infinite forwards;
    }
    .common-table {
      width: 80rem;
    }
  }
}
@keyframes arrowtable {
  50% {
    opacity: 1;
    right: 0;
  }
  100% {
    opacity: 0;
    right: 100%;
  }
}

/* ------------------------------------------- */
/* アニメーション用 */
/* ------------------------------------------- */
/*
.moveFlag {
	position: relative;
	top: -5rem;
	opacity: 0;
	transition: ease 0.5s top, ease 0.5s opacity;
}
.moveFlag.on {
	top: 0;
	opacity: 1;
}
@media print {
	.moveFlag {
		top: 0;
		opacity: 1;
	}
}
*/

/* --------------------------------------------------------------- */
/*  margin padding */
/* --------------------------------------------------------------- */
.mb0 {
  margin-bottom: 0rem !important;
}
.mb10 {
  margin-bottom: 1rem !important;
}
.mb20 {
  margin-bottom: 2rem !important;
}
.mb30 {
  margin-bottom: 3rem !important;
}
.mb40 {
  margin-bottom: 4rem !important;
}
.mb50 {
  margin-bottom: 5rem !important;
}
.mb60 {
  margin-bottom: 6rem !important;
}
.mb70 {
  margin-bottom: 7rem !important;
}
.mb80 {
  margin-bottom: 8rem !important;
}
.mb90 {
  margin-bottom: 9rem !important;
}
.mb100 {
  margin-bottom: 10rem !important;
}

@media screen and (max-width: 767px) {
  .mb10 {
    margin-bottom: 0.5rem !important;
  }
  .mb20 {
    margin-bottom: 1rem !important;
  }
  .mb30 {
    margin-bottom: 1.5rem !important;
  }
  .mb40 {
    margin-bottom: 2rem !important;
  }
  .mb50 {
    margin-bottom: 2.5rem !important;
  }
  .mb60 {
    margin-bottom: 3rem !important;
  }
  .mb70 {
    margin-bottom: 3.5rem !important;
  }
  .mb80 {
    margin-bottom: 4rem !important;
  }
  .mb90 {
    margin-bottom: 4.5rem !important;
  }
  .mb100 {
    margin-bottom: 5rem !important;
  }
}

.mt0 {
  margin-top: 0rem !important;
}
.mt10 {
  margin-top: 1rem !important;
}
.mt20 {
  margin-top: 2rem !important;
}
.mt30 {
  margin-top: 3rem !important;
}
.mt40 {
  margin-top: 4rem !important;
}
.mt50 {
  margin-top: 5rem !important;
}
.mt60 {
  margin-top: 6rem !important;
}
.mt70 {
  margin-top: 7rem !important;
}
.mt80 {
  margin-top: 8rem !important;
}
.mt90 {
  margin-top: 9rem !important;
}

@media screen and (max-width: 767px) {
  .mt10 {
    margin-top: 0.5rem !important;
  }
  .mt20 {
    margin-top: 1rem !important;
  }
  .mt30 {
    margin-top: 1.5rem !important;
  }
  .mt40 {
    margin-top: 2rem !important;
  }
  .mt50 {
    margin-top: 2.5rem !important;
  }
  .mt60 {
    margin-top: 3rem !important;
  }
  .mt70 {
    margin-top: 3.5rem !important;
  }
  .mt80 {
    margin-top: 4rem !important;
  }
  .mt90 {
    margin-top: 4.5rem !important;
  }
  .mt100 {
    margin-top: 5rem !important;
  }
}

.pb0 {
  padding-bottom: 0 !important;
}
.pb10 {
  padding-bottom: 1rem !important;
}
.pb20 {
  padding-bottom: 2rem !important;
}
.pb30 {
  padding-bottom: 3rem !important;
}
.pb40 {
  padding-bottom: 4rem !important;
}
.pb50 {
  padding-bottom: 5rem !important;
}
.pb60 {
  padding-bottom: 6rem !important;
}
.pb70 {
  padding-bottom: 7rem !important;
}
.pb80 {
  padding-bottom: 8rem !important;
}
.pb90 {
  padding-bottom: 9rem !important;
}
.pb100 {
  padding-bottom: 10rem !important;
}
@media screen and (max-width: 767px) {
  .pb10 {
    padding-bottom: 0.5rem !important;
  }
  .pb20 {
    padding-bottom: 1rem !important;
  }
  .pb30 {
    padding-bottom: 1.5rem !important;
  }
  .pb40 {
    padding-bottom: 2rem !important;
  }
  .pb50 {
    padding-bottom: 2.5rem !important;
  }
  .pb60 {
    padding-bottom: 3rem !important;
  }
  .pb70 {
    padding-bottom: 3.5rem !important;
  }
  .pb80 {
    padding-bottom: 4rem !important;
  }
  .pb90 {
    padding-bottom: 4.5rem !important;
  }
  .pb100 {
    padding-bottom: 5rem !important;
  }
}

.pt0 {
  padding-top: 0 !important;
}
.pt10 {
  padding-top: 1rem !important;
}
.pt20 {
  padding-top: 2rem !important;
}
.pt30 {
  padding-top: 3rem !important;
}
.pt40 {
  padding-top: 4rem !important;
}
.pt50 {
  padding-top: 5rem !important;
}
.pt60 {
  padding-top: 6rem !important;
}
.pt70 {
  padding-top: 7rem !important;
}
.pt80 {
  padding-top: 8rem !important;
}
.pt90 {
  padding-top: 9rem !important;
}
.pt100 {
  padding-top: 10rem !important;
}
@media screen and (max-width: 767px) {
  .pt10 {
    padding-top: 0.5rem !important;
  }
  .pt20 {
    padding-top: 1rem !important;
  }
  .pt30 {
    padding-top: 1.5rem !important;
  }
  .pt40 {
    padding-top: 2rem !important;
  }
  .pt50 {
    padding-top: 2.5rem !important;
  }
  .pt60 {
    padding-top: 3rem !important;
  }
  .pt70 {
    padding-top: 3.5rem !important;
  }
  .pt80 {
    padding-top: 4rem !important;
  }
  .pt90 {
    padding-top: 4.5rem !important;
  }
  .pt100 {
    padding-top: 5rem !important;
  }
}

/* ------------------------------------------- */
/* pagination */
/* ------------------------------------------- */
.single-post-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 7rem;

  @media screen and (max-width: 767px) {
    margin-top: 3.5rem;
  }

  .back {
    margin: 0 8.3rem;
    @media screen and (max-width: 767px) {
      margin: 0 1rem;
    }
  }

  .prev,
  .next {
    width: 14rem;
    @media screen and (max-width: 767px) {
      width: 4.6rem;
    }
    & a {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      width: 100%;
      height: 4.6rem;
      font-weight: 500;
      text-decoration: underline;
      letter-spacing: 0.08rem;
      color: #373232;
      box-sizing: border-box;

      @media screen and (max-width: 767px) {
        padding: 0;
        font-size: 0;
        color: transparent;
      }

      @media (hover: hover) and (pointer: fine) {
        &:hover {
          text-decoration: none;
        }
      }

      &:after {
        content: "";
        position: absolute;
        top: 50%;
        margin-top: -2.3rem;
        display: block;
        width: 4.6rem;
        height: 4.6rem;
        border-radius: 2.3rem;
        background-color: #2987d9;
      }
      @media (hover: hover) and (pointer: fine) {
        &:hover:after {
          background-color: #2987d9;
        }
      }
      @media screen and (max-width: 767px) {
        .&:after {
          width: 4.8rem;
          height: 4.8rem;
          margin-top: -2.4rem;
          border-radius: 0;
        }
      }

      &:before {
        content: "";
        position: absolute;
        top: 50%;
        z-index: 1;
        margin-top: -0.4rem;
        display: block;
        width: 0.8rem;
        height: 0.8rem;
        border-top: 0.2rem solid #fff;
        box-sizing: border-box;
        transition: ease 0.25s border;
      }
    }
  }

  .prev {
    & a {
      padding-left: 7.3rem;
      &:after {
        left: 0;
      }
      &:before {
        left: 2.2rem;
        border-left: 0.2rem solid #fff;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
      }
      @media (hover: hover) and (pointer: fine) {
        &:hover:before {
          border-left-color: #fff;
        }
      }
    }
  }
  .next {
    & a {
      padding-right: 7.3rem;
      &:after {
        right: 0;
      }
      &:before {
        right: 2.2rem;
        border-right: 0.2rem solid #fff;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
      }
    }
  }
}

/* navigation pagination */
.navigation.pagination {
  margin: 7rem 0 0;

  @media screen and (max-width: 767px) {
    margin: 3rem 0 0;
  }

  .disable {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

    @media screen and (max-width: 767px) {
      position: relative;
      padding-bottom: 5rem;
    }
  }

  .pager {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0 0.8rem;
    width: 4.4rem;
    height: 5rem;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    letter-spacing: 0.08em;
    color: #2987d9;
    background: #fff;
    text-decoration: none;
    transition: ease 0.25s all;
    /* border-radius: 0.4em; */
    border: 0.1rem solid #2987d9;

    @media screen and (max-width: 767px) {
      width: 3rem;
      height: 3rem;
    }

    @media (hover: hover) and (pointer: fine) {
      &:hover {
        color: #fff;
        background: #2987d9;
        border-color: #2987d9;
      }
    }
  }

  .pager.current {
    color: #fff;
    font-weight: bold;
    background: #2987d9;
    border-color: #2987d9;
  }

  .next,
  .prev {
    @media screen and (max-width: 767px) {
      /*position: absolute;*/
      /*bottom: 0;*/
      /*width: 48%;*/
      /*height: 4rem;*/
    }

    & a {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      width: 4.4rem;
      height: 5rem;
      font-size: 0;
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      letter-spacing: 0.08em;
      text-decoration: none;
      color: #373232;
      background: #fff;
      border: 0.1rem solid #2987d9;
      transition: ease 0.25s background, ease 0.25s color;

      @media screen and (max-width: 767px) {
        width: 2.8rem;
        height: 2.8rem;
      }

      @media (hover: hover) and (pointer: fine) {
        &:hover {
          color: #fff;
          background-color: #2987d9;
          &:after {
            border-top-color: #fff;
          }
        }
      }

      &:after {
        content: "";
        position: absolute;
        top: 50%;
        margin-top: -0.4rem;
        display: block;
        width: 0.8rem;
        height: 0.8rem;
        border-top: 0.1rem solid #2987d9;
        box-sizing: border-box;
        transition: ease 0.25s border;
      }
    }
  }

  .prev {
    @media screen and (min-width: 767.01px) {
      margin-right: 0.8rem;
    }
    @media screen and (max-width: 767px) {
      margin-right: 1rem;
    }
    & a {
      &:after {
        left: 50%;
        margin-left: -0.2rem;
        border-left: 0.1rem solid #2987d9;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
      }
      @media (hover: hover) and (pointer: fine) {
        &:hover:after {
          border-left-color: #fff;
        }
      }
    }
  }
  .next {
    @media screen and (min-width: 767.01px) {
      margin-left: 0.8rem;
    }
    @media screen and (max-width: 767px) {
      margin-left: 1rem;
      /*right: 0;*/
    }
    & a {
      &:after {
        right: 50%;
        margin-right: -0.2rem;
        border-right: 0.1rem solid #2987d9;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
      }
      @media (hover: hover) and (pointer: fine) {
        &:hover:after {
          border-right-color: #fff;
        }
      }
    }
  }
}

/* ------------------------------------------- */
/* wordpress パスワードフォーム調整用 */
/* ------------------------------------------- */

.post-password-form {
  padding: 100px 30px;
  line-height: 1.8;
  text-align: center;
}

/* --------------------------------------------------------------- */
/*  variable */
/* --------------------------------------------------------------- */
:root {
  --color-main: #157c17;
  --color-main-filter: invert(33%) sepia(100%) saturate(702%) hue-rotate(81deg)
    brightness(86%) contrast(90%);
  --color-header: #064907;
  --color-header-filter: invert(20%) sepia(17%) saturate(3528%)
    hue-rotate(81deg) brightness(97%) contrast(100%);
  --color-main02: #61b025;
  --color-main02-filter: invert(53%) sepia(66%) saturate(494%) hue-rotate(51deg)
    brightness(97%) contrast(93%);
  --color-accent: #f2f6ee;
  --color-black: #373232;
  --color-black-filter: invert(16%) sepia(10%) saturate(281%) hue-rotate(314deg)
    brightness(94%) contrast(85%);
  --color-white: #ffffff;
  --color-white-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(10deg)
    brightness(105%) contrast(102%);
  --color-gray: #f6f6f6;
  --color-line: #b4b4b4;
  --color-orange: #edb45f;
  --color-orange-filter: invert(89%) sepia(96%) saturate(1127%)
    hue-rotate(310deg) brightness(96%) contrast(93%);
  --color-orange02: #f6972b;
  --color-orange03: #fff6eb;
  --color-btn-museum: #edb45f;
  --color-btn-museum-filter: invert(94%) sepia(49%) saturate(2685%)
    hue-rotate(311deg) brightness(96%) contrast(93%);
  --color-museum-sub: #308350;
  --color-museum-bg: #e9f7de;
  --icon-gray: #969696;
  --color-news: #edb45f;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;
  --font-en: "Overpass", sans-serif;
}

html {
  overflow-y: scroll;
}


body {
  line-height: 1;
  font-family: var(--font-sans);
}

* {
  transition: background-color ease 1s;
}

svg {
  width: 100%;
  height: 100%;
}

a {
  text-decoration: none;
  transition: ease 0.25s opacity;
  @media (hover: hover) and (pointer: fine) {
    &:hover {
      opacity: 0.6;
    }
  }
}

#container {
  margin-top: 14rem;
  @media screen and (max-width: 767px) {
    margin-top: 7.3rem;
  }
}

.pdf,
.arrow {
  display: inline-flex;
  align-items: center;
  &::after {
    content: "";
    display: inline-block;
    filter: var(--color-main-filter);
  }
}

.pdf {
  &::after {
    width: 1.5rem;
    aspect-ratio: 15/23;
    background: url(../../common/img/icon-pdf.svg) no-repeat center
      center/contain;
      @media screen and (max-width: 767px) {
        width: 1.3rem;
      }
  }
}

.arrow {
  &::after {
    width: 1rem;
    aspect-ratio: 10/23;
    background: url(../../common/img/icon-arrow.svg) no-repeat center
      center/contain;
  }
}

.indent {
  text-indent: -1em;
  padding-left: 1em;
  display: inline-block;
  & a {
    margin-left: 1em;
  }
}

/* btn-main */

.blank {
  aspect-ratio: 18/21;
}

.btn-main {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  justify-items: center;
  padding: 1rem 2.6rem;
  width: 40rem;
  max-width: 100%;
  height: 9.2rem;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-main);
  text-align: center;
  border: 0.1rem solid var(--color-main);
  @media screen and (max-width: 767px) {
    /* padding: 2.7rem 2.3rem; */
    font-size: 1.4rem;
    height: 7.6rem;
  }
  & .arrow,
  & .pdf {
    &::after {
      filter: var(--color-main-filter);
    }
  }
  & .arrow {
    width: 1.2rem;
    aspect-ratio: 12/28;
  }
  @media (hover: hover) and (pointer: fine) {
    &:hover {
      opacity: 1;
      color: var(--color-white);
      background-color: var(--color-main);
      & .arrow,
      & .pdf {
        &::after {
          filter: var(--color-white-filter);
        }
      }
    }
  }
}

/* btn-museum */
.btn-museum {
  /* padding: 2.1rem 2rem 2rem; */
  font-weight: 500;
  color: var(--color-black);
  border-color: var(--color-btn-museum);
  border-radius: 0.5rem;
  @media screen and (max-width: 767px) {
    /* padding: 1.7rem 2.3rem; */
    padding: 1rem 2rem;
  }
  & .arrow {
    &::after {
      filter: var(--color-btn-museum-filter);
      width: 100%;
    }
  }
  @media (hover: hover) and (pointer: fine) {
    &:hover {
      color: var(--color-white);
      background-color: var(--color-btn-museum);
      & .arrow {
        &::after {
          filter: var(--color-white-filter);
        }
      }
    }
  }
}

.btn-museum.btn-museum01 {
  width: 128rem;
  height: 12.6rem;
  font-size: 2.2rem;
  border-width: 0.2rem;
  @media screen and (max-width: 767px) {
    border-width: 0.1rem;
    height: auto;
  }
  & .arrow {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    @media screen and (max-width: 767px) {
      width: 1.8rem;
      height: 1.8rem;
    }
    &::after {
      background: url(../../img/museum/btn-circle.svg) no-repeat center
        center/contain;
      filter: var(--color-btn-museum-filter);
      transform: scaleX(-1);
    }
  }
  @media (hover: hover) and (pointer: fine) {
    &:hover {
      & .arrow {
        background-color: var(--color-white);
        border: 0.1rem solid var(--color-white);
        transition: none;
        &::after {
          filter: var(--color-btn-museum-filter);
        }
      }
    }
  }
}

.btn-museum.btn-museum02,
.btn-museum.btn-museum03 {
  & .arrow::after {
    width: 0.7rem;
    height: 1.2rem;
    background-image: url(../img/icon-arrow02.svg);
  }
}

.btn-museum.btn-museum02 {
  padding-right: 1.7rem;
  width: 52rem;
  height: 7.5rem;
  font-size: 1.8rem;
  @media screen and (max-width: 767px) {
    height: auto;
    width: 23.5rem;
    font-size: 1.3rem;
  }
}

.btn-museum.btn-museum03 {
  padding-right: 2.6rem;
  width: 32rem;
  height: 6.2rem;
  @media screen and (max-width: 767px) {
    padding-right: 1.2rem;
    height: auto;
    width: 23.5rem;
    font-size: 1.3rem;
  }
}

/* --------------------------------------------------------------- */
/*  header */
/* --------------------------------------------------------------- */
#header {
  width: 100%;
  background-color: var(--color-white);
  @media print {
    position: absolute;
  }
}
.scroll-now #header {
  box-shadow: 0 .3rem .6rem rgba(21, 124, 23, 0.05);
}
.scroll-now .museum #header {
  box-shadow: 0 .3rem .6rem rgba(97, 176, 37, 0.05);
}
#header .inner {
  padding: 2.2rem 1.6rem 2rem 4.3rem;
  display: flex;
  justify-content: space-between;
  @media screen and (max-width: 767px) {
    padding: 1.5rem 0.7rem 1.4rem 1rem;
    height: 100%;
  }
}

#header .logomark {
  display: flex;
  align-items: center;
}

#header .logomark a {
  color: var(--color-header);
}

#header .logomark .img-bill {
  width: 42.1rem;
  aspect-ratio: 421/71;
  @media screen and (max-width: 767px) {
    width: 20.7rem;
  }
}

#header .logomark .img-museum {
  width: 16.8rem;
  aspect-ratio: 168/55;
  @media screen and (max-width: 767px) {
    width: 12.4rem;
  }
}

.btn-to-museum {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 3.7rem 2.1rem;
  width: 39.8rem;
  color: var(--color-white);
  background-color: var(--color-main02);
  border: 0.1rem solid var(--color-main02);
  z-index: 999;
  transition-property: background-color, color;
  transition-duration: .3s;
  transition-timing-function: ease;
  @media screen and (max-width: 767px) {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    margin: 0 calc(50% - 50vw) 0;
    padding: 1.4rem 2.8rem 1.3rem 8.4rem;
  }
  &::before {
    content: "";
    position: absolute;
    top: -1rem;
    left: 0.3rem;
    display: block;
    width: 8.8rem;
    aspect-ratio: 88/69;
    background: url(../../img/bill/header-mayurun.png) no-repeat center
      center/contain;
    @media screen and (max-width: 767px) {
      top: -1.2rem;
      left: 1.4rem;
    }
  }
}

.btn-to-museum .sub {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  @media screen and (max-width: 767px) {
    font-size: 1.3rem;
  }
}

.btn-to-museum .main {
  display: inline-flex;
  column-gap: 0.7rem;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transform: translate(1.2rem, -0.6rem);
  @media screen and (max-width: 767px) {
    font-size: 1.8rem;
    transform: translate(1.2rem, -0.6rem);
  }
}

.btn-to-museum .blank {
  width: 1.8rem;
  filter: var(--color-white-filter);
  transform: translateY(.2rem);
  @media screen and (max-width: 767px) {
    width: 1.5rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .btn-to-museum:hover {
    background-color: var(--color-main02-filter);
    opacity: 1;
    & .sub,
    & .main {
      color: var(--color-main02);
    }
    & .blank {
      filter: var(--color-main02-filter);
    }
  }
}

/* nav bill */
#header .nav {
  transition: all ease 0.25s;
  &::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0%;
    background-color: var(--color-black);
    z-index: -1;
    opacity: 0;
    transition: all ease 0.25s;
    pointer-events: none;
  }
}

#header .nav .list-wrapper {
  background-color: var(--color-white);
  transition: right ease 0.25s;
}

#header .nav .main-list {
  display: flex;
  align-items: center;
  column-gap: 5.2rem;
}

#header .nav .link {
  display: inline-flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

#header .nav .arrow {
  margin-left: 0.7rem;
  transform: rotate(90deg);
  @media screen and (max-width: 767px) {
    transform: none;
  }
  &::after {
    filter: var(--color-black-filter);
  }
}

#header .nav .current .arrow {
  transform: rotate(0);
  @media screen and (max-width: 767px) {
    transform: none;
  }
}

.menu-active #header .nav {
  z-index: 1;
  &::before {
    opacity: 0.2;
    pointer-events: auto;
  }
}

/* nav museum */
.museum #header .inner {
  padding: 4.6rem 3.6rem 2rem 4.3rem;
  width: 100%;
  @media screen and (max-width: 767px) {
    padding: 0rem 1.7rem 0.8rem 2.1rem;
  }
}

.museum #header .nav {
  /* position: fixed;
  top: 19rem;
  right: -100%; */
  /* position: relative; */
}

.menu-active .museum #header .nav {
  /* right: 0; */
}

.museum #header .nav .list-wrapper {
  position: fixed;
  top: 19rem;
  right: -100%;
  padding: 4rem;
}

.menu-active .museum #header .nav .list-wrapper {
  right: 0;
  padding: 8rem 7rem;
  @media screen and (max-width: 767px) {
    padding: 3rem 5rem 11rem;
  }
}

.museum #header .main-list {
  flex-direction: column;
  column-gap: 2.1rem;
}

.museum #header .main-list li {
  border-bottom: 2px solid var(--color-line);
  width: 100%;
  & .link {
    padding-top: 1.8rem;
    padding-bottom: 2.1rem;
    font-size: 2rem;
    @media screen and (max-width: 767px) {
      font-size: 1.5rem;
    }
  }
}

.museum #header .nav .link {
  width: 100%;
  justify-content: space-between;
}

.museum .nav-item {
  display: inline-flex;
  align-items: center;
  column-gap: 0.3rem;
}

.museum .nav-item a {
  padding-top: 2rem;
  padding-bottom: 0;
  font-weight: 500;
}

/* nav sp */

@media screen and (max-width: 767px) {
  #header {
    height: 7.3rem;
  }
  .nav {
  }
  #header .nav .list-wrapper {
    overflow-y: auto;
    position: fixed;
    top: 7.3rem;
    right: -100%;
    padding: 3rem 5rem 11rem;
    width: 100%;
    height: 100%;
  }
 .museum #header .nav .list-wrapper {
    top: 7.3rem;
  }
  .menu-active .nav {
    
  }
  .menu-active #header .nav .list-wrapper {
    right: 0;
  }
  .main-list {
    flex-direction: column;
    column-gap: 2.1rem;
  }
  .main-list li {
    width: 100%;
    border-bottom: 2px solid var(--color-line);
  }
  .main-list .link {
    justify-content: space-between;
    padding-top: 1.8rem;
    padding-bottom: 2.1rem;
    width: 100%;
    text-align: left;
  }
}

/* --------------------------------------------------------------- */
/*  museum icon */
/* --------------------------------------------------------------- */
.museum #header .icon-wrapper {
  margin-left: auto;
  display: flex;
  align-items: center;
  column-gap: 1.5rem;
  @media screen and (max-width: 767px) {
    column-gap: .7rem;
  }
}

.museum #header .icon-wrapper .icon {
  width: 5rem;
  aspect-ratio: 1/1;
  @media screen and (max-width: 767px) {
    width: 3.5rem;
  }
}

/* --------------------------------------------------------------- */
/*  menu-btn */
/* --------------------------------------------------------------- */
.museum #header .menu-btn {
  display: block;
  order: 3;
  margin-left: 2.6rem;
  @media screen and (max-width: 767px) {
    margin-top: 1rem;
    margin-left: 1.3rem;
  }
}

#header .menu-btn {
  top: 3.5rem;
  right: 3.1rem;
  background-color: transparent;
  @media screen and (max-width: 767px) {
    top: 0.7rem;
    right: 0.6rem;
  }
  & a {
    width: 7rem;
    height: 7rem;
    border-radius: 0.5rem;
    background-color: var(--color-main02);
    @media screen and (max-width: 767px) {
      width: 4.4rem;
      height: 4.4rem;
      border-radius: 0.6rem;
    }
    & span {
      margin-left: -2.1rem;
      width: 2.9rem;
      height: 0.3rem;
      background-color: var(--color-white);
      transform: translateX(0.3rem);
      border-radius: 0;
      @media screen and (max-width: 767px) {
        margin-left: -1.4rem;
        width: 1.8rem;
        height: 0.2rem;
      }
      &:before,
      &:after {
        border-radius: 0;
        background-color: var(--color-white);
      }
      &:before {
        width: 3.6rem;
        @media screen and (max-width: 767px) {
          width: 2.2rem;
        }
      }
      &:after {
        width: 2.2rem;
        @media screen and (max-width: 767px) {
          width: 1.3rem;
        }
      }
    }
  }
}

.menu-active #header {
  & .menu-btn {
    & a {
      background-color: var(--color-main02);
      & span {
        margin-left: -1.9rem;
        @media screen and (max-width: 767px) {
          margin-left: -1.3rem;
        }
        &:before,
        &:after {
          width: 3.4rem;
          @media screen and (max-width: 767px) {
            width: 2rem;
          }
        }
      }
    }
  }
}

/* --------------------------------------------------------------- */
/*  common-title */
/* --------------------------------------------------------------- */

.common-title {
  padding: 10.5rem 0 9rem;
  width: 100%;
  text-align: center;
  @media screen and (max-width: 767px) {
    padding: 4rem 0 4.7rem;
  }
}
.common-title.type01 {
  background-color: var(--color-main);
}
.common-title.type02 {
  background-color: var(--color-main02);
}

.common-title.type03 {
  padding: 8rem 0;
  font-size: 3.2rem;
  line-height: 1.9;
  font-weight: 700;
  @media screen and (max-width: 767px) {
    font-size: 2rem;
    padding: 5rem 0 3rem;
  }
}

.common-title .title-sub {
  font-size: 3.8rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-white);
  @media screen and (max-width: 767px) {
    font-size: 2rem;
  }
}

/* --------------------------------------------------------------- */
/*  link */
/* --------------------------------------------------------------- */
.common-link-wrapper {
  display: flex;
  column-gap: 4rem;
  margin-top: 1.2rem;
  @media screen and (max-width: 767px) {
    flex-direction: column;
    row-gap: 1.6rem;
    margin-top: 1.6rem;
  }
}

.common-link {
  color: var(--color-main02);
  text-decoration: underline;
  font-weight: 700;
  & .pdf {
    margin-left: .9rem;
    display: inline-block;
    filter: var(--color-main02-filter);
    transform: translateY(.4rem);
    @media screen and (max-width: 767px) {
      margin-left: .6rem;
      transform: translateY(.5rem);
    }
  }
  @media (hover:hover) and (pointer: fine) {
    &:hover {
    text-decoration: underline;
    }
  }
}


/* --------------------------------------------------------------- */
/*  sidebar */
/* --------------------------------------------------------------- */
.sidebar {
  position: sticky;
  top: 32.2rem;
  width: 32.2rem;
  margin: 0 auto;
  padding-bottom: 13.7rem;
  @media screen and (max-width: 767px) {
    width: calc(100% - 3rem);
    top: 0;
    padding-bottom: 0;
  }
}
.sidebar .title {
  padding-bottom: 1.9rem;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-main);
  font-family: var(--font-en);
  border-bottom: 0.1rem solid var(--color-line);
}

.sidebar .side-menu {
  margin-top: 3.6rem;
  display: flex;
  flex-direction: column;
  row-gap: 1.1rem;
}
.sidebar .side-menu .item {
}
.sidebar .side-menu .item .link {
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.875;
}
.sidebar .side-menu .item .link .arrow::after {
  filter: var(--color-black-filter);
  @media screen and (max-width: 767px) {
    transform: rotate(90deg);
  }
}

/* --------------------------------------------------------------- */
/*  pageup */
/* --------------------------------------------------------------- */
.pageup {
  position: fixed;
  bottom: 8rem;
  right: 8rem;
  width: 10rem;
  aspect-ratio: 1/1;
  z-index: 998;
  @media screen and (max-width: 767px) {
    display: none !important;
  }
  & svg {
    width: 100%;
    height: 100%;
    fill: var(--color-white);
  }
}

/* --------------------------------------------------------------- */
/*  footer */
/* --------------------------------------------------------------- */
#footer {
  padding: 6.8rem 0 7.1rem;
  color: var(--color-white);
  text-align: center;
  background-color: var(--color-header);
  @media screen and (max-width: 767px) {
    margin-bottom: 7.3rem;
    padding: 6rem 0 6.5rem;
  }
}

.museum #footer {
  margin-top: 13rem;
  background-color: var(--color-main02);
  @media screen and (max-width: 767px) {
    margin-top: 4rem;
    margin-bottom: 0;
  }
}

#footer .logo {
}

#footer .logo .sub {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  @media screen and (max-width: 767px) {
    font-size: 1.1rem;
  }
}

#footer .logo .main {
  margin-top: 0.9rem;
  font-size: 2.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  @media screen and (max-width: 767px) {
    font-size: 2.1rem;
  }
}

#footer .logo .en {
  margin-top: 2rem;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  @media screen and (max-width: 767px) {
    font-size: 1rem;
  }
}

#footer .menu-list {
  margin-top: 5.2rem;
  display: flex;
  justify-content: center;
  column-gap: 6rem;
  @media screen and (max-width: 767px) {
    margin: 6.7rem 3rem 0;
    flex-direction: column;
    align-items: baseline;
    row-gap: 4.6rem;
  }
}

#footer .menu-list li {
  text-align: left;
}

#footer .child-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 2.4rem;
  margin-top: 3.2rem;
  margin-left: 1.5rem;
  @media screen and (max-width: 767px) {
    row-gap: 1.8rem;
    margin-left: 1.5rem;
    margin-top: 2.8rem;
  }
}
#footer li a {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-white);
  display: inline-flex;
  align-items: flex-start;
  column-gap: 0.7rem;
  @media screen and (max-width: 767px) {
  }
  & .pdf {
    width: 1.2rem;
    filter: var(--color-white-filter);
  }
  & .blank {
    filter: var(--color-white-filter);
    width: 1.6rem;
  }
}

#footer .copyright {
  display: inline-block;
  margin-top: 3.9rem;
  font-size: 1.2rem;
  @media screen and (max-width: 767px) {
    margin-top: 8.7rem;
  }
}

/* bill-table */
.bill-table {
  border-collapse: separate;
  border-spacing: 0 2.6rem;
  table-layout: auto;
  @media screen and (max-width: 767px) {
    border-spacing: 0 2rem;
  }
}

.bill-table th,
.bill-table td {
  padding-bottom: 2.9rem;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-align: left;
  border-bottom: 0.1rem solid var(--color-line);
  @media screen and (max-width: 767px) {
    display: block;
  }
}

.bill-table.modal th {
  text-decoration: underline;
}

.bill-table th {
  padding-right: 4.5rem;
  width: 1%;
  white-space: nowrap;
  @media screen and (max-width: 767px) {
    padding-bottom: 0;
    width: 100%;
    font-size: 1.6rem;
    font-weight: 500;
    border: none;
  }
}

.bill-table td {
  @media screen and (max-width: 767px) {
    padding-bottom: 1.7rem;
    width: 100%;
    font-size: 1.4rem;
    font-weight: 400;
    margin-top: 0.9rem;
    line-height: 1.78;
  }
}

/* bill-table02 */
.table-wrapper {
  margin-top: 3.1rem;
  @media screen and (max-width: 767px) {
    overflow-x: auto;
  }
}
.bill-table02 {
  width: 100%;
}
/* 線 */
.bill-table02 tr:first-child {
  border-top: 0.1rem solid var(--color-line);
}
.bill-table02 tr {
  border-bottom: 0.1rem solid var(--color-line);
}
/* テキスト設定 */
.bill-table02 th,
.bill-table02 td {
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  @media screen and (max-width: 767px) {
    font-size: 16px;
  }
}
/* 左の列 */
.bill-table02 tr *:first-child {
  padding-top: 0.9rem;
  padding-bottom: 1.2rem;
  padding-left: 2.1rem;
  font-weight: 500;
  text-align: left !important;
  background-color: #efefef;
  @media screen and (max-width: 767px) {
    padding-right: 2rem;
  }
}

/* セルの余白 */
.bill-table02 th {
  padding-top: 0.9rem;
  padding-bottom: 1.2rem;
  @media screen and (max-width: 767px) {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.bill-table02 td {
  padding-top: 1.8rem;
  padding-bottom: 2rem;
}

/* スクロール設定 */
.table-wrapper th,
.table-wrapper td {
  white-space: nowrap;
}
.table-wrapper:has(.bill-table02) {
  @media screen and (max-width: 767px) {
    overflow-x: auto;
  }
}

.table-wrapper:has(iframe) {
  aspect-ratio: 1080/644;
  overflow: visible;
  @media screen and (max-width: 767px) {
    aspect-ratio: 1;
    overflow-x: auto;
    overflow-y: hidden;
  }
  & iframe {
    width: 100%;
    height: 100%;
    @media screen and (max-width: 490px) {
      width: 120%;
    }
  }
}

.scroll-area {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 100vh; /* 必要に応じて調整 */
  position: relative;
}

/* kaigit */
table.kaigit {
  width: 100%;
  font-size: 16px;
  @media screen and (max-width: 490px) {
    font-size: 14px;
  }
}

table.kaigit tr:first-child,
table.kaigit tr.bt {
  border-top: 1px solid var(--color-line);
}

table.kaigit tbody tr:first-child,
table.kaigit tbody tr:nth-child(3n + 1),
table.kaigit  tr.bb {
  border-bottom: 1px solid var(--color-line);
}

table.kaigit tr th:first-child,
table.kaigit td[rowspan="3"] {
  padding-top: 9px;
  padding-bottom: 12px;
  padding-left: 21px;
  padding-right: 10px;
  font-weight: 500;
  text-align: left;
  background-color: #efefef;
  width: 155px;
  @media screen and (max-width: 490px) {
    padding-left: 12px;
    width: fit-content;
  }
}

table.kaigit tr:nth-child(3n-1) td {
  padding-top: 29px;
}
table.kaigit tr:nth-child(3n) td {
  padding-top: 14px;
  padding-bottom: 14px;
}
table.kaigit tr:nth-child(3n-2) td {
  padding-bottom: 22px;
}
table.kaigit th {
  padding-top: 29px;
  padding-bottom: 22px;
}

table.kaigit th,
table.kaigit td {
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}

/* ヘッダー固定 */
table.kaigit .sticky {
  position: sticky;
  top: -1px;
  z-index: 999;
  background-color: var(--color-white);
  box-shadow: 0 1px var(--color-line);
  border-bottom: none !important;
   will-change: transform;
}


/* --------------------------------------------------------------- */
/*  museum single */
/* --------------------------------------------------------------- */
.single h2,
.common-sub-title {
  text-indent: -1.4em;
  padding-left: 1em;
  margin-top: 6.9rem;
  padding-bottom: 3.3rem;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 0.1rem solid var(--color-line);
  @media screen and (max-width: 767px) {
    margin-top: 4.5rem;
    padding-bottom: 1.8rem;
    font-size: 1.8rem;
  }
  &::before {
    content: "";
    display: inline-block;
    margin-right: 1.8rem;
    width: 1.8rem;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: var(--color-white);
    border: 0.5rem solid var(--color-main02);
    @media screen and (max-width: 767px) {
      margin-right: 1.2rem;
      width: 1.4rem;
      border-width: .4rem;
    }
  }
}

.single h3,
.common-sub-title02 {
  margin-top: 4.6rem;
  font-size: 2rem;
  line-height: 1.9;
  font-weight: 700;
  @media screen and (max-width: 767px) {
    font-size: 1.6rem;
    margin-top: 2.6rem;
  }
  &::before {
    content: "";
    display: inline-block;
    margin-right: 1.2rem;
    width: 1.1rem;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: var(--color-main02);
    transform: translateY(-0.2rem);
    @media screen and (max-width: 767px) {
      transform: none;
    }
  }
}

.single h4,
.common-sub-title03 {
  margin-top: 1.9rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.9;
  @media screen and (max-width: 767px) {
    font-size: 1.6rem;
  }
}

.single h5,
.single h6,
.common-sub-title04 {
  margin-top: 1em;
  font-weight: 700;
  line-height: 1.9;
}

.single .article-area {
  ul {
    & li {
      line-height: 1.9;
      padding-left: 1em;
      text-indent: -0.8em;
      &::before {
        content: "";
        margin-right: 0.5em;
        display: inline-block;
        width: 0.5rem;
        aspect-ratio: 1/1;
        border-radius: 50%;
        background-color: var(--color-black);
        transform: translateY(-0.3rem);
      }
    }
  }
  ol {
    & li {
      margin-left: .87em;
      line-height: 1.9;
      padding-left: 1em;
      text-indent: -1em;
      list-style: auto;
      @media screen and (max-width: 767px) {
        margin-left: 1.3em;
        padding-left: .75em;
      }
      a {
        display: inline;
      }
    }
  }
}

.single p {
  margin-top: 3.5rem;
  line-height: 1.9;
  @media screen and (max-width: 767px) {
    margin-top: 1.5rem;
  }
}
.single .wp-block-heading + p {
  margin-top: 1.6rem;
}

.common-text {
  margin-top: 1rem;
  line-height: 1.9;
}
.common-sub-title + .common-text {
  margin-top: 3.1rem;
}

.single .article-area a,
.common-link {
  color: var(--color-main02);
  text-decoration: underline;
  font-weight: 700;
  @media screen and (max-width: 767px) {
    font-weight: 600;
  }
}

.single .btn-wrapper {
  margin-top: 9.9rem;
  display: grid;
  place-content: center;
  @media screen and (max-width: 767px) {
    margin-top: 2.9rem;
  }
}

/* --------------------------------------------------------------- */
/*  museum-table */
/* --------------------------------------------------------------- */
.museum-table {
  & th,
  & td {
    width: 18.4rem;
    height: 6.1rem;
    line-height: 1.4;
    text-align: center;
    font-weight: 400;
    border: .1rem solid var(--color-line);
  }
  & tr *:first-child {
    padding-left: 2.3rem;
    text-align: left;
    font-weight: 500;
    background-color: #efefef;
    @media screen and (max-width: 767px) {
      padding-left: 1.3rem;
    }
  }
  & tr *:not(:first-child) {
    background-color: var(--color-white);
  }
}


/* --------------------------------------------------------------- */
/* exhibition */
/* --------------------------------------------------------------- */
.exhibition .item {
  display: flex;
  justify-content: right;
  align-items: center;
  column-gap: 5rem;
  @media screen and (max-width: 767px) {
    flex-direction: column;
    column-gap: 2rem;
  }
  & .text-area {
    position: relative;
    width: 48rem;
    margin-top: 2rem;
    @media screen and (max-width: 767px) {
      margin-top: 0;
      width: 100%;
    }
    &::before {
      content: "";
      display: block;
      border-radius: 50%;
      position: absolute;
      z-index: -1;
      top: -5rem;
      left: 1rem;
      transform: translate(-50%, -50%);
      width: 16rem;
      aspect-ratio: 160/156;
      background: url(../../img/museum/deco-1f.png) no-repeat center
        center/contain;
        @media screen and (max-width: 767px) {
          top: -12rem;
          left: 50%;
          transform: translateX(-50%);
          width: 16rem;
        }
    }
  }
  &:nth-child(even) {
    justify-content: left;
    flex-direction: row-reverse;
    column-gap: 11.8rem;
    @media screen and (max-width: 767px) {
      row-gap: 2rem;
      flex-direction: column;
    }
    & .text-area {
      &::before {
        background: url(../../img/museum/deco-2f.png) no-repeat center
          center/contain;
      }
    }
  }
  &:not(:first-child) {
    margin-top: 13.7rem;
    @media screen and (max-width: 767px) {
      margin-top: 15.7rem;
    }
  }
}

.exhibition .item .text-area {
  z-index: 10;
}

.exhibition .item .head {
  font-size: 3rem;
  @media screen and (max-width: 767px) {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}

.exhibition .item .text {
  margin-top: 3rem;
  line-height: 2.5;
  @media screen and (max-width: 767px) {
    margin-top: 1.4rem;
    line-height: 1.85;
  }
}

/* swiper */
.swiper {
  position: relative;
  padding-bottom: 7rem;
  margin: 0;
  @media screen and (max-width: 767px) {
    margin-top: 2rem;
    padding-bottom: 0;
  }
  &:before,
  &:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 2.5rem;
    height: 100%;
    background: var(--color-white);
    /* background: red; */
    z-index: 2;
    @media screen and (max-width: 767px) {
      display: none;
    }
  }
  &:before {
    left: -3px;
  }
  &:after {
    right: -3px;
  }
}

.swiper-area {
  width: 68.6rem;
  height: 34.3rem;
  position: relative;
  @media screen and (max-width: 767px) {
    width: 34.5rem;
    height: auto;
  }
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  @media screen and (max-width: 767px) {
    max-height: 17.4rem;
  }
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 16.5rem;
  width: 7.3rem;
  height: 7.3rem;
  border-radius: 50%;
  background-image: radial-gradient(
    var(--color-white),
    var(--color-white) 50%,
    transparent 50% 100%
  );
  @media screen and (max-width: 767px) {
    top: 8.5rem;
    width: 4rem;
    height: 4rem;
  }
  &::after {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../../img/museum/btn-circle.svg) no-repeat center
      center/contain;
    filter: var(--color-black-filter);
  }
}
.swiper-button-next {
  transform: scaleX(-1);
  right: 0.2rem;
  @media screen and (max-width: 767px) {
    right: 0;
  }
}
.swiper-button-prev {
  left: 0.2rem;
  @media screen and (max-width: 767px) {
    left: 0;
  }
}

.swiper-pagination {
  position: static;
  margin-top: 5.2rem;
  @media screen and (max-width: 767px) {
    margin-top: 2rem;
  }
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 0.9rem;
  width: 1.5rem;
  height: 1.5rem;
  transition: none;
  @media screen and (max-width: 767px) {
    margin: 0 .9rem;
    width: 1.4rem;
    height: 1.4rem;
  }
}

.swiper-pagination-bullet-active {
  background: var(--color-main02);
}

/* --------------------------------------------------------------- */
/*  news */
/* --------------------------------------------------------------- */
.tab-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.tab {
  padding: 2.5rem 0 2.7rem;
  width: 32.8rem;
  font-size: 1.8rem;
  border-radius: 0.8rem 0.8rem 0 0;
  text-align: center;
  background-color: #edb45f;
  border: 0.1rem solid #edb45f;
  color: var(--color-black);
  cursor: pointer;
  @media screen and (max-width: 767px) {
    padding: .6rem 1.1rem;
    width: fit-content;
    font-size: 1.3rem;
  }
  @media (hover:hover) and (pointer: fine) {
    &:hover {
      opacity: 0.8;
    }
  }
  &.active {
    border-bottom-width: 0.9rem;
    @media screen and (max-width: 767px) {
      border-bottom-width: .4rem;
    }
  }
  &:nth-child(2) {
    background-color: #a9ca70;
    border-color: #a9ca70;
  }
  &:nth-child(3) {
    background-color: #73aadd;
    border-color: #73aadd;
  }
  &:nth-child(4) {
    background-color: #dd73a1;
    border-color: #dd73a1;
  }
}

.tab-area {
  display: none;
}
.tab-area.show {
  display: block;
}

.tab-area {
  margin-top: -0.1rem;
  padding: 4rem 0 5.5rem;
  border: 0.4rem solid #edb45f;
  @media screen and (max-width: 767px) {
    border-width: .3rem;
    padding-top: 2rem;
    padding-bottom: 4.5rem;
  }
  &:nth-child(3) {
    border-color: #a9ca70;
  }
  &:nth-child(4) {
    border-color: #73aadd;
  }
  &:nth-child(5) {
    border-color: #dd73a1;
  }
}

.tab-pane {
  margin: 0 auto;
  width: 120rem;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.news-item {
  width: 100%;
  border-bottom: 0.1rem solid var(--color-line);
  @media screen and (max-width: 767px) {
    width: 30.2rem;
    margin: 0 auto;
  }
  & .link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 0 2.4rem;
    @media screen and (max-width: 767px) {
      padding: 1.1rem 0 1.2rem;
      @media screen and (max-width: 767px) {
        /* flex-direction: column; */
      }
    }
  }
  &.empty a {
    pointer-events: none;
  }
  & .text-area {
    display: flex;
    align-items: center;
    column-gap: 7rem;
    @media screen and (max-width: 767px) {
      flex-direction: column;
      align-items: baseline;
    }
  }
  & .list-date {
    width: 9rem;
    @media screen and (max-width: 767px) {
      font-size: 1.2rem;
      line-height: 2.16;
    }
  }
  & .list-title {
    flex: 1;
    font-size: 1.8rem;
    line-height: 1.7;
    @media screen and (max-width: 767px) {
      font-size: 1.4rem;
      line-height: 1.85;
    }
  }
  & .arrow-news::after {
    background: url(../../img/museum/btn-circle.svg) no-repeat center
      center/contain;
    filter: var(--color-btn-museum-filter);
    width: 3rem;
    height: 3rem;
    transform: scaleX(-1);
    @media screen and (max-width: 767px) {
      width: 1.8rem;
      height: 1.8rem;
    }
  }
}

/* --------------------------------------------------------------- */
/*  anchor */
/* --------------------------------------------------------------- */
.anchor {
  padding: 5.8rem 0 5.7rem;
  background-color: var(--color-gray);
  @media screen and (max-width: 767px) {
    padding: 3rem 0 3rem 0;
  }
}

.anchor .inner {
}

.anchor .link-list {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 6.6rem;
  @media screen and (max-width: 767px) {
    flex-direction: column;
    justify-content: initial;
    align-items: baseline;
    flex-wrap: wrap;
    row-gap: 2.1rem;
    column-gap: 2.4rem;
    max-height: 12rem;
  }
}
.anchor .link-list .item {
}

.anchor .link-list .item a {
  display: flex;
  align-items: center;
  column-gap: 0.8rem;
  font-size: 1.7rem;
  font-weight: 700;
  @media screen and (max-width: 767px) {
    font-size: 1.4rem;
  }
  & .arrow {
    filter: var(--color-main02-filter);
    transform: rotate(90deg) translateX(0.2rem);
  }
}

/* --------------------------------------------------------------- */
/*  modal */
/* --------------------------------------------------------------- */
html.is-modal-open,
body.modal-open {
  /* overflow: hidden; */
}

.is-modal-open #header {
  position: absolute;
}

.is-modal-open #footer {
  position: relative;
  z-index: -1;
}


.smallarticle-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

.modal-area {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.modal-content {
  position: relative;
  padding: 4rem 5.3rem 6.1rem;
  width: 96rem;
  background-color: var(--color-white);
  box-shadow: .4rem .4rem 1.4rem rgba(0, 0, 0, 0.11);
  overflow-y: auto;
  @media screen and (max-width: 767px) {
    padding: 6rem 2.3rem 3.1rem;
    width: calc(100% - 4rem);
    height: 60vh;
  }
}

.modal-content .modal-close {
  position: absolute;
  top: 1.4rem;
  right: 3.3rem;
  padding: 2rem;
  font-size: 2.4rem;
  line-height: 1.6;
  border: none;
  background-color: transparent;
  cursor: pointer;
  @media screen and (max-width: 767px) {
    top: -0.6rem;
    right: 0;
  }
  @media (hover:hover) and (pointer: fine) {
    &:hover {
      opacity: 0.8;
    }
  }
}

.modal-content .body {
  display: flex;
  column-gap: 6rem;
  margin-top: 3.5rem;
  @media screen and (max-width: 767px) {
    flex-direction: column;
    column-gap: 2.4rem;
    margin-top: 2rem;
  }
}

.modal-content .text-area {
  width: 60.3rem;
  @media screen and (max-width: 767px) {
    width: 100%;
  }
}

.modal-content .title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.9;
  @media screen and (max-width: 767px) {
    font-size: 2rem;
  }
}

.modal-content .head {
  font-weight: 700;
  line-height: 1.9;
  color: var(--color-main);
  &.mt {
    margin-top: 3.5rem;
    @media screen and (max-width: 767px) {
      margin-top: 2rem;
    }
  }
}

.modal-content .list {
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  @media screen and (max-width: 767px) {
    margin-top: 0.5rem;
  }
}

.modal-content .item {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 1.2rem 0 1.3rem;
  line-height: 1.9;
  border-bottom: 0.1rem solid var(--color-line);
  @media screen and (max-width: 767px) {
    padding: 1rem 0;
  }
}

.modal-content .td,
.modal-content .th {
  @media screen and (max-width: 767px) {
    font-size: 1.3rem;
  }
}

.modal-content .img-area {
  margin-top: 2.6rem;
  flex: 1;
}

.modal-content .text {
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.9;
}

.modal-content .img02 {
  margin-top: 2.1rem;
}

.modal-content .img-area .note {
  margin-top: 1rem;
  font-size: 1.2rem;
  line-height: 1.6;
  letter-spacing: .1em;
}