@charset "UTF-8";
/* 変数 */
:root {
  /* color */
  --primary-color: #6a3906; /* 全体 */
  --plaza-color: #de7e38; /* 平野区民センター（コミュニティプラザ平野） */
  --hall-color: #efc729; /* 平野区民ホール */
  --text-color: #333; /* テキスト */
  --link-color: #1076ea; /* リンク */

  --site-color-default: #fff;
  --site-color-blue: #0000bc;
  --site-color-yellow: #ff0;
  --site-color-black: #000;
  --site-color: var(--site-color-default);
  --site-text-color: var(--text-color);

  --main-menu-h: 80px;
  --sub-menu-h: 60px;
  --header-h: 80px;
}

@media (max-width: 1080px) {
  :root {
    --header-h: 55px;
  }
}

/* 色、ボタン、文字、段落、汎用パーツ */
.primary {
  color: var(--primary-color);
}

a.plaza {
  color: var(--plaza-color);
}

a.hall {
  color: var(--hall-color);
}

.wrapper {
  font-size: 1.6rem;
  line-height: normal;
  color: var(--site-text-color);
  font-family: "Zen Maru Gothic", sans-serif;
  box-sizing: border-box;
}
.wrapper * {
  box-sizing: border-box;
}

body[data-sitecolor="2"] {
  --site-color: var(--site-color-blue);
  --site-text-color: #fff;
}
body[data-sitecolor="3"] {
  --site-color: var(--site-color-yellow);
}
body[data-sitecolor="4"] {
  --site-color: var(--site-color-black);
  --site-text-color: #fff;
}
body[data-fontsize="1"] main {
  font-size: 1.4rem;
}
body[data-fontsize="3"] main {
  font-size: 1.8rem;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}
@media screen and (min-width: 769px) {
  a:hover {
    transition: 0.2s ease;
    opacity: 0.7;
  }
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0 auto;
  line-height: normal;
  font-weight: 700;
}

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

ul,
ol,
li,
dl,
dt,
dd,
figure {
  margin: 0;
  padding: 0;
}

section:after,
ul:after,
ol:after,
dl:after {
  content: "";
  clear: both;
  display: block;
}

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

h2,
.h2 {
  font-size: 3rem;
  font-weight: 700;
  position: relative;
  margin: 0 auto 30px;
}
h2 .sub,
.h2 .sub {
  font-size: 1.6rem;
  display: block;
}

h3,
.h3 {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: left;
  margin: 0 0 20px;
  border-bottom: double var(--site-text-color);
  padding-bottom: 5px;
}

h4,
.h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 10px;
  padding: 0 0 0 10px;
  border-left: solid 5px var(--site-text-color);
  border-bottom: none;
}

h5 {
  font-size: 1.6rem;
  margin: 0 0 10px;
}

p {
  margin: 0 0 15px;
  word-break: break-word;
}
p:last-child {
  margin: 0;
}

.fs20 {
  font-size: 2rem;
}

.fs18 {
  font-size: 1.8rem;
}

.fs16 {
  font-size: 1.6rem;
}

.fs14 {
  font-size: 1.4rem;
}

.fs12 {
  font-size: 1.2rem;
}

.fs115 {
  font-size: 115%;
  margin: 0 1px;
}

.fs85 {
  font-size: 85%;
}

.fwn {
  font-weight: 400;
}

.fwb {
  font-weight: 700;
}

.btn {
  text-align: center;
  width: auto;
  min-width: 300px;
  display: table;
  transition: 0.2s ease;
  font-size: 1.8rem;
  font-weight: 700;
  cursor: pointer;
  padding: 10px 20px;
  margin: 30px auto 0;
  border-radius: 50px;
  color: #fff;
  background: var(--primary-color);
  border: solid 2px var(--primary-color);
  transition: 0.1s ease;
}
.btn:hover {
  opacity: 1;
  background: #fff;
  color: var(--primary-color);
}
.btn.mini {
  min-width: 200px;
  font-size: 1.4rem;
  margin: 10px auto 0;
  padding: 5px 10px;
}
.btn.ghost {
  color: #4bacc6;
  background: #fff;
}
.btn.ghost:after {
  border-color: #4bacc6;
}
.btn.ghost:hover {
  color: #fff;
  background: #4bacc6;
}
.btn.ghost:hover:after {
  border-color: #fff;
}
.btn.lg {
  width: min(400px, 100%);
}

.page_ttl {
  height: 200px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  background-color: #fff;
  text-align: center;
  font-weight: 700;
  overflow: hidden;
}
.page_ttl::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  opacity: 0.8;
}
.page_ttl.plaza::before {
  background-color: var(--plaza-color);
}
.page_ttl.hall::before {
  background-color: var(--hall-color);
}
.page_ttl .inner {
  z-index: 2;
}
.page_ttl h1,
.page_ttl .title {
  color: var(--text-color);
  font-size: 3.6rem;
}
.page_ttl h1 br,
.page_ttl .title br {
  display: none;
}
.page_ttl .sub_title img {
  height: 40px;
}
.page_ttl .caption {
  font-size: 1.6rem;
  margin-top: 10px;
}
.page_ttl .bg {
  z-index: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.page_ttl .white {
  display: table;
  text-align: left;
  background: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 20px 20px 20px 0;
}
.page_ttl .white:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 1000px;
  left: -1000px;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
}
.page_ttl .over {
  opacity: 0.5;
  z-index: 1;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  filter: brightness(0.6);
}

.intro {
  text-align: center;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
select,
textarea {
  border: solid 1px #ccc;
  border-radius: 5px;
  height: 50px;
  padding: 10px;
  background-color: #fff;
  cursor: pointer;
}
input[type="text"].error:not(:disabled),
input[type="email"].error:not(:disabled),
input[type="number"].error:not(:disabled),
input[type="tel"].error:not(:disabled),
select.error:not(:disabled),
textarea.error:not(:disabled) {
  background-color: #fff3f2;
  border-color: #f75c4d;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
input[type="number"]::placeholder,
textarea::placeholder {
  color: #ccc;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 30px;
  background: #fff url("../img/select_icon.png") no-repeat center right 10px;
  background-size: 10px 6px;
}

select::-ms-expand {
  display: none;
}

select:-moz-focusring {
  color: transparent;
}

.event_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.event_list::after {
  content: none;
}
.event_list li {
  background-color: var(--site-color);
  position: relative;
}
.event_list li .link {
  display: flex;
  flex-direction: column;
  background-color: var(--site-color);
  height: 100%;
  position: relative;
  color: inherit;
  text-decoration: none;
  border: solid 1px #ccc;
}
.event_list li .link > .tag {
  display: inline-block;
  text-align: center;
  color: #fff;
  background: var(--primary-color);
  width: 80px;
  padding: 2px 5px;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  font-size: 1.2rem;
}
.event_list li .link .picture {
  position: relative;
}
.event_list li .link .picture .img {
  aspect-ratio: 600 / 400;
  background: no-repeat center/cover;
}
.event_list li .link .text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 15px 10px 15px;
  line-height: 1.25;
  border-top: solid 1px #ccc;
}
.event_list li .link .text .detail {
  font-size: 1.3rem;
  margin-bottom: 5px;
}
.event_list li .link .text .title {
  margin-bottom: 5px;
  margin: 0;
  font-weight: 700;
}
.event_list li .link .text .facility {
  margin-top: auto;
  padding-top: 10px;
}
.event_list li .link .text .facility span {
  display: block;
  width: fit-content;
  padding: 3px 10px;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 5px;
}
.event_list li .link .text .facility.plaza span {
  background-color: var(--plaza-color);
}
.event_list li .link .text .facility.hall span {
  background-color: var(--hall-color);
}

.news_list::after {
  content: none;
}
.news_list > li {
  padding: 20px 40px;
  background-color: var(--site-color);
  border: solid #ccc;
  border-width: 1px 0;
}
.news_list > li + li {
  border-top-width: 0;
}
.news_list > li .text {
  display: flex;
  align-items: center;
  gap: 30px;
}
.news_list > li .text time {
  display: block;
  flex-shrink: 0;
  width: 65px;
  font-size: 1.4rem;
  white-space: nowrap;
}
.news_list > li .text .facility span {
  display: block;
  width: 152px;
  padding: 3px 0;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  border-radius: 5px;
}
.news_list > li .text .facility.plaza span {
  background-color: var(--plaza-color);
}
.news_list > li .text .facility.hall span {
  background-color: var(--hall-color);
}
.news_list > li .text .title {
  flex-shrink: 0;
  font-size: 1.6rem;
  font-weight: 700;
}

.dot_list li {
  position: relative;
  padding-left: 15px;
}
.dot_list li:not(:last-child) {
  margin-bottom: 5px;
}
.dot_list li:before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  left: 0;
  top: 9px;
  border-radius: 50%;
  margin: auto;
  background: var(--primary-color);
  z-index: 1;
}
.dot_list.kome li {
  padding-left: 20px;
}
.dot_list.kome li:before {
  content: "※";
  top: 0;
  background: none;
}

.archives_list li:not(:last-child) {
  margin-bottom: 15px;
  border-bottom: solid 1px #eee;
  padding-bottom: 15px;
}
.archives_list li a {
  display: block;
}
.archives_list li a .tag {
  display: inline-block;
  text-align: center;
  color: #fff;
  background: var(--primary-color);
  border-radius: 5px;
  padding: 2px 8px;
  font-weight: 700;
  font-size: 1.4rem;
}
.archives_list li a .tag.plaza {
  background-color: var(--plaza-color);
}
.archives_list li a .tag.hall {
  background-color: var(--hall-color);
}
.archives_list li a time {
  margin: 7px 10px 0 0;
  width: 75px;
  display: inline-block;
  font-size: 1.4rem;
}
.archives_list li a p {
  margin-top: 5px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.doc_list {
  margin: 20px 0;
  display: flex;
  justify-content: center;
}
.doc_list li {
  width: calc(33.33% - 20px);
  margin-right: 30px;
  float: left;
}
.doc_list li:nth-child(3n) {
  margin-right: 0;
}
.doc_list li:nth-child(n + 4) {
  margin-top: 20px;
}
.doc_list li a {
  text-align: center;
  width: 100%;
  border: solid 2px var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 1.6rem;
  padding: 10px;
  color: var(--primary-color);
  background: #fff;
}

.num_list {
  counter-reset: number;
}
.num_list > li {
  position: relative;
  padding-left: 3rem;
}
.num_list > li:not(:last-child) {
  margin-bottom: 5px;
}
.num_list > li:before {
  counter-increment: number;
  content: counter(number) ".";
  display: inline-block;
  position: absolute;
  left: 3px;
  top: 0;
  text-align: right;
}

.table_dl {
  margin-top: 20px;
}
.table_dl dt {
  width: 16rem;
  float: left;
  clear: both;
  font-weight: 700;
  margin-bottom: 10px;
  padding-left: 15px;
  position: relative;
}
.table_dl dt:before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  left: 0;
  top: 9px;
  background: var(--primary-color);
  border-radius: 50%;
  display: inline-block;
}
.table_dl dd {
  display: table;
  float: left;
  width: calc(100% - 16rem);
  margin-bottom: 10px;
}

.pager ul {
  display: flex;
  justify-content: center;
}
.pager ul li {
  margin: 0 5px;
}
.pager ul li a,
.pager ul li span {
  height: 40px;
  min-width: 40px;
  padding: 7px;
  border: solid 1px #666;
  display: block;
  text-align: center;
  border-radius: 5px;
}
.pager ul li .current {
  background: #666;
  color: #fff;
}

.page_controls {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.page_controls li {
  margin: 0 5px;
}
.page_controls li a,
.page_controls li span {
  height: 40px;
  min-width: 40px;
  padding: 7px;
  border: solid 1px #666;
  display: block;
  text-align: center;
  border-radius: 5px;
}
.page_controls li .current {
  background: #666;
  color: #fff;
}

.single .info {
  margin-bottom: 30px;
}
.single .info .tag {
  display: inline-block;
  text-align: center;
  color: #fff;
  background: var(--primary-color);
  border-radius: 5px;
  padding: 2px 8px;
  font-weight: 700;
  font-size: 1.4rem;
  margin-right: 10px;
}
.single .info .tag.plaza {
  background-color: var(--plaza-color);
}
.single .info .tag.hall {
  background-color: var(--hall-color);
}
.single .info h1 {
  width: min(100% - 20px, 800px);
  margin-inline: auto;
  margin-top: 15px;
  padding-bottom: 5px;
  text-align: center;
  border-bottom: solid 1px #ccc;
}

.flexible_content p {
  margin-bottom: 20px;
}
.flexible_content a {
  text-decoration: underline;
}
.flexible_content .gray {
  font-size: 1.2rem;
  color: #999;
}
.flexible_content .red {
  color: red;
}
.flexible_content h2:not(:first-child),
.flexible_content h3:not(:first-child) {
  margin-top: 40px;
}
.flexible_content .img_text {
  margin-bottom: 40px;
}
.flexible_content .img_text .img {
  width: calc(45% - 30px);
  margin-right: 30px;
  float: left;
  text-align: center;
}
.flexible_content .img_text p {
  width: 55%;
  float: right;
}
.flexible_content .img_text:nth-of-type(even) p {
  float: left;
}
.flexible_content .img_text:nth-of-type(even) .img {
  float: right;
  margin: 0 0 0 30px;
}
.flexible_content .img_text:last-child {
  margin-bottom: 0;
}
.flexible_content .img_tex .gray_box {
  background: #eee;
  padding: 15px;
}
.flexible_content .border_box {
  border: solid 1px #ccc;
  padding: 15px;
}
.flexible_content .picture {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.flexible_content .picture:not(:last-child) {
  margin-bottom: 40px;
}
.flexible_content .picture img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.plane_table {
  width: 100%;
  margin: 20px auto;
  word-break: break-all;
}
.plane_table th,
.plane_table td {
  padding: 10px;
  border: solid 1px #ccc;
  background-color: var(--site-color);
}
.plane_table th {
  background-color: #eee;
}
body[data-sitecolor="2"] .plane_table th,
body[data-sitecolor="4"] .plane_table th {
  background-color: #333;
}

.mailat {
  display: inline-block;
}
.mailat:after {
  content: "＠";
}

hr.line {
  border: none;
  height: 25px;
  width: 100%;
  margin: 60px 0 0;
  background-color: var(--primary-color);
  mask: url("../img/line.png") repeat-x center bottom;
  mask-size: 1px 100%;
}
.wrapper.plaza hr.line {
  background-color: var(--plaza-color);
}
.wrapper.hall hr.line {
  background-color: var(--hall-color);
}

.sp {
  display: none;
}

.plaza .table_dl dt:before {
  background: var(--plaza-color);
}
.plaza .btn {
  background: var(--plaza-color);
  border-color: var(--plaza-color);
}
.plaza .btn:hover {
  background: #fff;
  color: var(--plaza-color);
}
.plaza .dot_list:not(.kome) li:before {
  background-color: var(--plaza-color);
}

.hall .table_dl dt:before {
  background: var(--hall-color);
}
.hall .btn {
  background: var(--hall-color);
  border-color: var(--hall-color);
}
.hall .btn:hover {
  background: #fff;
  color: var(--hall-color);
}
.hall .dot_list:not(.kome) li:before {
  background-color: var(--hall-color);
}

@media (max-width: 839px) {
  body.large main {
    font-size: 1.4rem;
  }
  .wrapper {
    font-size: 1.4rem;
  }
  .sp {
    display: inherit;
  }
  .pc {
    display: none;
  }
  h2,
  .h2 {
    font-size: 2.1rem;
  }
  h2 .sub,
  .h2 .sub {
    font-size: 1.4rem;
  }
  h2:before,
  h2:after,
  .h2:before,
  .h2:after {
    top: 17px;
    width: 30px;
  }
  h2.line2:before,
  h2.line2:after,
  .h2.line2:before,
  .h2.line2:after {
    top: 30px;
  }
  h2:before,
  .h2:before {
    left: -45px;
  }
  h2:after,
  .h2:after {
    right: -45px;
  }
  h2 + p,
  .h2 + p {
    text-align: left;
  }
  h3,
  .h3 {
    font-size: 1.8rem;
    margin: 0 0 15px;
  }
  h3 + .sub,
  .h3 + .sub {
    font-size: 2rem;
  }
  .btn {
    min-width: 140px;
    margin: 20px auto 0;
    padding: 8px 10px;
    border-width: 2px;
  }
  .btn.mini {
    min-width: 120px;
    font-size: 1.2rem;
    margin: 10px auto 0;
  }
  .page_ttl {
    height: 160px;
  }
  .page_ttl h1,
  .page_ttl .title {
    font-size: 2.6rem;
  }
  .page_ttl h1 br,
  .page_ttl .title br {
    display: inline;
  }
  .page_ttl .caption {
    font-size: 1.2rem;
    margin-top: 5px;
  }
  .intro {
    text-align: left;
  }
  .intro br {
    display: none;
  }
  .table_dl dt {
    width: 12rem;
  }
  .table_dl dd {
    width: calc(100% - 12rem);
  }
  hr.line {
    margin: 30px 0 0;
  }
  .pager ul li {
    margin: 0 3px;
  }
  .pager ul li a,
  .pager ul li span {
    height: 32px;
    min-width: 32px;
    padding: 5px;
  }
  .event_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .event_list li .link .text .detail {
    font-size: 1.2rem;
  }
  .event_list li .link .text .facility span {
    padding: 3px 8px;
    font-size: 1.1rem;
  }
  .news_list > li {
    padding: 20px;
  }
  .news_list > li .text {
    flex-wrap: wrap;
    gap: 2px 15px;
  }
  .news_list > li .text time {
    margin-bottom: 2px;
  }
  .news_list > li .text .facility span {
    font-size: 1.1rem;
  }
  .news_list > li .text .title {
    width: 100%;
  }
  .dot_list li {
    width: 100%;
    float: none;
  }
  .dot_list li:nth-child(n + 2) {
    margin-top: 5px;
  }
  .dot_list li:before {
    top: 5px;
  }
  .archives_list li a time {
    font-size: 1.2rem;
  }
  .archives_list li a .tag {
    padding: 2px 4px;
    font-size: 1.2rem;
  }
  .flexible_content .img_text {
    margin-bottom: 30px;
  }
  .flexible_content .img_text .img {
    width: calc(45% - 15px);
    margin-right: 15px;
  }
  .flexible_content .img_text:nth-of-type(even) .img {
    margin: 0 0 0 15px;
  }
  .flexible_content .picture:not(:last-child) {
    margin-bottom: 30px;
  }
  .flexible_content .picture img {
    width: auto;
    height: auto;
  }
  .plane_table th,
  .plane_table td {
    padding: 10px 5px;
    font-size: 1.2rem;
    min-width: 60px;
  }
}
/* header,footer,section等 */
body.lock {
  position: fixed;
  width: 100%;
}

html,
body {
  height: 100%;
}

body {
  background-color: var(--site-color);
}

.wrapper {
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--main-menu-h) + var(--sub-menu-h));
  min-height: 100%;
  position: relative;
}

.wrapper #header .sub-menu {
  display: flex;
  justify-content: center;
  align-items: center;
}

.anker {
  margin-top: -130px;
  padding-top: 130px;
}

main {
  position: relative;
}
main > section {
  padding: 80px 0 0;
}
main > section:last-of-type {
  padding-bottom: 80px;
}
main > section > section {
  padding: 40px 0 0;
}
main > section > section:first-of-type {
  padding-top: 0;
}
main .breadcrumb {
  margin-top: 15px;
}
main .breadcrumb br {
  display: none;
}

.inner {
  max-width: 1230px;
  width: 100%;
  padding-left: 15px !important;
  padding-right: 15px !important;
  margin: auto;
  position: relative;
}

.inner_s {
  max-width: 990px;
  width: 100%;
  padding-left: 15px !important;
  padding-right: 15px !important;
  margin: auto;
  position: relative;
}

@keyframes fadeinmenu {
  0% {
    height: 0;
  }
  100% {
    height: 40px;
  }
}
#header {
  height: var(--header-h);
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--site-color);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
#header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
}
#header .inner {
  height: 100%;
}
#header.plaza:before {
  background-color: var(--plaza-color);
}
#header.hall:before {
  background-color: var(--hall-color);
}
#header .menu-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  height: 100%;
}
#header .logo {
  display: inline-block;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--primary-color);
}
body[data-sitecolor="2"] #header .logo,
body[data-sitecolor="4"] #header .logo {
  color: var(--site-text-color);
}
#header .logo > span {
  display: block;
}
#header .logo > span > span {
  font-size: 1.4rem;
}
#header .logo img {
  height: 40px;
  width: auto;
}
#header .main-nav {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 40px;
}
#header .main-nav .menu-wrap {
  position: relative;
}
#header .main-nav .menu {
  position: relative;
  display: flex;
  gap: 15px;
}
#header .main-nav .menu:after {
  content: "";
  position: absolute;
  inset-block: 0;
  right: 0;
  width: 1px;
  height: 20px;
  margin-block: auto;
}
#header .main-nav .menu .menu-item {
  font-size: 1.6rem;
}
#header .main-nav .menu .menu-item a {
  display: block;
  padding: 0.2em 0.5em;
  color: var(--text-color);
}
#header .main-nav .menu #menu-item-1063 a {
  background: var(--plaza-color);
  color: #fff;
}
#header .main-nav .menu #menu-item-1065 a {
  background: var(--hall-color);
  color: #fff;
}
#header .sub-menu {
  position: fixed;
  top: 80px;
  left: 0;
  display: none;
  width: 100%;
  height: 60px;
  background-color: #fff;
}
#header .sub-menu::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  content: "";
  z-index: -1;
  opacity: 0.2;
}
#header.plaza .sub-menu::before {
  background-color: var(--plaza-color);
}
#header.hall .sub-menu::before {
  background-color: var(--hall-color);
}
#header .sub-menu .menu {
  margin-right: 15px;
  padding-right: 15px;
  position: relative;
}
#header .sub-menu .menu:after {
  content: "";
  position: absolute;
  inset-block: 0;
  right: 0;
  width: 1px;
  height: 20px;
  margin-block: auto;
}
#header .sub-menu .menu > li {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.25;
  text-align: center;
}
#header .site-setting {
  display: flex;
  align-items: center;
  gap: 10px;
}
#header .site-setting-label {
  font-size: 1.4rem;
}
#header .site-setting-list {
  display: flex;
  align-items: center;
  gap: 10px;
}
#header .site-setting-list > li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding-bottom: 1px;
  background-color: #fff;
  color: var(--text-color);
  font-size: 1.3rem;
  line-height: 1;
  white-space: nowrap;
  border: solid 1px #ccc;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
#header .site-setting-list > li:hover {
  opacity: 0.7;
}
#header .site-setting-list > li.active {
  font-weight: 700;
}
#header .sitecolor .site-setting-list > li {
  width: fit-content;
  min-width: 24px;
  padding: 0 4px;
}
#header .sitecolor .site-setting-list > li:nth-child(2) {
  background-color: var(--site-color-blue);
  color: #fff;
}
#header .sitecolor .site-setting-list > li:nth-child(3) {
  background-color: var(--site-color-yellow);
}
#header .sitecolor .site-setting-list > li:nth-child(4) {
  background-color: var(--site-color-black);
  color: #fff;
}
#header .fontsize .site-setting-list > li {
  border-radius: 50%;
}
#header .fontsize .site-setting-list > li.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}
#header.plaza .fontsize .site-setting-list > li.active {
  background-color: var(--plaza-color);
  border-color: var(--plaza-color);
}
#header.hall .fontsize .site-setting-list > li.active {
  background-color: var(--hall-color);
  border-color: var(--hall-color);
}
#header .sns {
  display: flex;
  position: relative;
}
#header .sns li:not(:last-child) {
  margin-right: 10px;
}
#header .sns li img {
  width: 32px;
  height: auto;
}

#menu_btn {
  display: none;
  cursor: pointer;
  cursor: pointer;
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 5px 17px;
  z-index: 101;
  text-align: center;
  font-size: 10px;
  border-radius: 30px;
  background-color: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
  transition: 0.3s ease;
  font-weight: 700;
  line-height: 1.25;
}
#header.plaza #menu_btn {
  background-color: var(--plaza-color);
  border: 1px solid var(--plaza-color);
}
#header.hall #menu_btn {
  background-color: var(--hall-color);
  border: 1px solid var(--hall-color);
}
#menu_btn:before,
#menu_btn:after,
#menu_btn .border {
  /* content: ""; */
  display: block;
  background: #000;
  position: relative;
  width: 20px;
  transition: 0.3s ease;
  height: 2px;
}
#menu_btn:before {
  top: 11px;
}
#menu_btn .border {
  top: 15px;
}
#menu_btn:after {
  top: 19px;
}
#menu_btn .close {
  display: none;
}
#menu_btn.open:before {
  transform: translateY(7px) rotate(145deg);
}
#menu_btn.open:after {
  transform: translateY(-5px) rotate(-145deg);
}
#menu_btn.open .border {
  background: none;
}
#menu_btn.open .close {
  display: block;
}
#menu_btn.open {
  background: #fff !important;
  color: var(--primary-color);
}
#header.plaza #menu_btn.open {
  color: var(--plaza-color);
}
#header.hall #menu_btn.open {
  color: var(--hall-color);
}

#footer {
  margin-top: auto;
  padding: 60px 0;
  background: var(--text-color);
  color: #fff;
  font-size: 1.4rem;
}
#footer .inner {
  display: grid;
  grid-template:
    "logo .. nav1 nav1 nav1"
    "logo .. nav2 nav2 nav2"
    ".... .. .... .... ...."
    "address address address copyright copyright"
    / auto 20px auto auto auto;
}
#footer .logo {
  grid-area: logo;
  font-size: 2rem;
  font-weight: 900;
}
#footer .logo > a > span {
  display: block;
}
#footer .logo > a > span > span {
  font-size: 1.4rem;
}
#footer .logo img {
  height: 50px;
  width: auto;
}
#footer .address {
  grid-area: address;
  margin-top: 30px;
}
#footer .address tr {
  display: grid;
  grid-template-columns: 15em 1fr;
}
#footer .address tr + tr {
  margin-top: 20px;
}
#footer .address th,
#footer .address td {
  display: flex;
  align-items: center;
}
#footer .address th {
  text-align: left;
}
#footer .address td {
  padding-left: 10px;
}
#footer .nav-1 {
  grid-area: nav1;
}
#footer .nav-2 {
  grid-area: nav2;
}
#footer nav #footer_menu1 {
  display: flex;
  justify-content: flex-end;
}
#footer nav #footer_menu1 > li {
  position: relative;
}
#footer nav #footer_menu1 > li:not(:last-child) {
  margin-right: 15px;
  padding-right: 15px;
}
#footer nav #footer_menu1 > li:not(:last-child):after {
  content: "/";
  position: absolute;
  right: 0;
}
#footer nav #footer_menu2 {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
}
#footer nav #footer_menu2 > li {
  padding-left: 15px;
  position: relative;
}
#footer nav #footer_menu2 > li:before {
  content: ">";
  position: absolute;
  left: 0;
}
#footer nav #footer_menu2 > li:not(:last-child) {
  margin-right: 15px;
}
#footer .licence {
  grid-area: copyright;
  align-self: end;
  justify-self: end;
}

@media (min-width: 1081px) {
  #header .main-nav #menu {
    display: block !important;
  }
}
@media (max-width: 1080px) {
  .wrapper {
    padding-top: var(--header-h);
  }
  #header {
    padding: 10px 0;
  }
  #header .logo {
    font-size: 1.2rem;
  }
  #header .logo > span > span {
    font-size: 1rem;
  }
  #header #menu_btn {
    display: block;
    margin-right: 15px;
  }
  #header .main-nav #menu {
    overflow: auto;
    overscroll-behavior-y: contain;
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100%;
    height: 100vh - var(--header-h);
    height: 100svh - var(--header-h);
    margin-right: 0;
    background: #fff;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
  }
  #header .main-nav .menu {
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
  }
  #header .main-nav .menu .menu-item {
    font-size: 1.4rem;
    text-align: center;
  }
  #header .main-nav .menu .menu-item a {
    display: inline;
    padding: 0;
  }
  #header .main-nav .menu .menu-item a br {
    display: none;
  }
  #header .main-nav .sitecolor,
  #header .main-nav .fontsize {
    display: none;
  }
  #header .sub-menu {
    position: static;
    top: initial;
    left: initial;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 30px 20px;
    background-color: transparent;
  }
  #header .sub-menu .menu {
    margin-right: 0;
    padding: 0;
  }
  #header .sub-menu .menu::after {
    display: none;
  }
  #header .sub-menu .menu > li {
    display: block;
    line-height: 1.5;
  }
  #header .sub-menu .sns {
    margin-top: 30px;
  }
  #footer {
    padding: 30px 0;
    font-size: 1.2rem;
  }
  #footer .inner {
    display: block;
  }
  #footer .logo {
    font-size: 1.8rem;
  }
  #footer .logo > a > span > span {
    font-size: 1.2rem;
  }
  #footer nav #footer_menu1,
  #footer nav #footer_menu2 {
    display: block;
    margin-top: 0;
    justify-content: flex-start;
  }
  #footer nav #footer_menu1 li,
  #footer nav #footer_menu2 li {
    width: 50%;
    float: left;
  }
  #footer nav #footer_menu1 li:not(:last-child),
  #footer nav #footer_menu2 li:not(:last-child) {
    margin-right: 0;
  }
  #footer nav #footer_menu1 {
    margin-top: 20px;
  }
  #footer nav #footer_menu1 > li {
    padding-left: 15px;
    position: relative;
  }
  #footer nav #footer_menu1 > li:before {
    content: ">";
    position: absolute;
    left: 0;
  }
  #footer nav #footer_menu1 > li:not(:last-child):after {
    content: none;
  }
  #footer .licence {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 30px;
  }
  #footer .address tr {
    grid-template-columns: 12em 1fr;
  }
  #footer .address tr + tr {
    margin-top: 15px;
  }
}
@media (max-width: 839px) {
  .anker {
    margin-top: -95px;
    padding-top: 95px;
  }
  main > section {
    padding: 40px 0 0;
  }
  main > section:last-of-type {
    padding-bottom: 40px;
  }
  main > section > section {
    padding: 30px 0 0;
  }
}
/* 固有 */
#top section {
  padding: 40px 0 80px;
}
#top > .mainvisual {
  position: relative;
  padding: 0;
  height: 460px;
  margin-bottom: 60px;
}
#top > .mainvisual .slider:not(.slick-initialized) {
  visibility: hidden;
}
#top > .mainvisual .slider,
#top > .mainvisual .slider .slick-list {
  height: 100%;
}
#top > .mainvisual .slick-prev,
#top > .mainvisual .slick-next {
  top: auto;
  bottom: -40px;
  left: auto;
  right: 72px;
  width: 42px;
  height: 12px;
}
#top > .mainvisual .slick-prev:before,
#top > .mainvisual .slick-next:before {
  content: "";
  background-repeat: no-repeat;
  background-size: 42px 12px;
  display: block;
  width: 42px;
  height: 12px;
}
#top > .mainvisual .slick-prev {
  right: 72px;
}
#top > .mainvisual .slick-prev:before {
  background-image: url("../img/top/control_l.png");
}
#top > .mainvisual .slick-next {
  right: 20px;
}
#top > .mainvisual .slick-next:before {
  background-image: url("../img/top/control_r.png");
}
#top > .mainvisual #slider_box .slick-dots {
  bottom: -35px;
  right: 145px;
  width: auto;
}
#top > .mainvisual h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 0 15px;
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
#top > .mainvisual h1 span {
  pointer-events: auto;
}
#top .linkbtn {
  padding: 0 0 80px;
}
#top .linkbtn .linkbtn-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 0;
}
#top .linkbtn .linkbtn-list a {
  margin: 0 20px;
  padding-right: 20px;
  position: relative;
}
#top .linkbtn .linkbtn-list a:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 15px;
  width: 10px;
  height: 10px;
  margin: auto;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
#top .linkbtn .linkbtn-list a.reserve:after {
  transform: rotate(45deg) translate(1px, -3px);
}
#top .linkbtn .linkbtn-list a.reserve:hover:after {
  border-color: var(--primary-color);
}
#top .linkbtn .linkbtn-list a.doc {
  color: var(--primary-color);
  background: #fff;
}
#top .linkbtn .linkbtn-list a.doc:after {
  transform: rotate(-45deg);
  border-color: var(--primary-color);
}
#top .linkbtn .linkbtn-list a.doc:hover {
  color: #fff;
  background: var(--primary-color);
  border-color: var(--primary-color);
}
#top .linkbtn .linkbtn-list a.doc:hover:after {
  border-color: #fff;
}

/*ここから新規*/
#top .facility-header {
  width: 100%;
  height: 460px;
}
#top .facility-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#top .facility-header .slider,
#top .facility-header .slider .slick-list,
#top .facility-header .slider .slick-track {
  height: 100%;
}
#top .facility-header .slick-prev,
#top .facility-header .slick-next {
  top: auto;
  bottom: -40px;
  left: auto;
  right: 72px;
  width: 42px;
  height: 12px;
}
#top .facility-header .slick-prev:before,
#top .facility-header .slick-next:before {
  content: "";
  background-repeat: no-repeat;
  background-size: 42px 12px;
  display: block;
  width: 42px;
  height: 12px;
}
#top .facility-header .slick-prev {
  right: 72px;
}
#top .facility-header .slick-prev:before {
  background-image: url("../img/top/control_l.png");
}
#top .facility-header .slick-next {
  right: 20px;
}
#top .facility-header .slick-next:before {
  background-image: url("../img/top/control_r.png");
}
#top .facility-header #slider_box .slick-dots {
  bottom: -35px;
  right: 145px;
  width: auto;
}
#top .facility-header + .event {
  margin-top: 100px;
}
#top .facility-btn {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}
#top .facility-btn .btn {
  margin: 0;
}

@media (max-width: 839px) {
  #top .linkbtn .linkbtn-list {
    flex-direction: column;
    gap: 20px;
  }
  #top .linkbtn .linkbtn-list a {
    min-width: 280px;
    margin: auto;
  }
  #top .linkbtn .linkbtn-list .reserve {
    margin-bottom: 10px;
  }
  #top .facility-btn {
    margin-top: 20px;
  }
}

#top > .news .inner {
  display: flex;
}
#top > .news .inner > div {
  width: calc(100% - 130px);
}
#top > .news h2 {
  margin-right: 30px;
}
#top > .lead p {
  font-size: 1.8rem;
  line-height: 1.75;
  text-align: center;
}
#top > .pickup {
  padding-top: 20px;
}
#top > .pickup ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}
#top > .pickup ul::after {
  content: none;
}
#top > .pickup ul li {
  position: relative;
  z-index: 1;
}
#top > .pickup ul li::before {
  content: "";
  display: block;
  position: relative;
  z-index: -1;
  aspect-ratio: 560 / 220;
  margin-bottom: calc(60 / 560 * -100%);
  background: no-repeat center;
  background-size: cover;
}
#top > .pickup ul li.plaza::before {
  background-image: url("../img/top/infomation_bg_plaza.jpg");
}
#top > .pickup ul li.hall::before {
  background-image: url("../img/top/infomation_bg_hall.jpg");
}
#top > .pickup ul li a {
  width: calc(100% - 100px);
  min-height: 175px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background-color: var(--site-color);
  border: solid 5px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
#top > .pickup ul li.plaza a {
  border-color: var(--plaza-color);
}
#top > .pickup ul li.hall a {
  border-color: var(--hall-color);
}
#top > .pickup ul li a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
#top > .pickup ul li.plaza a::after {
  background-color: var(--plaza-color);
}
#top > .pickup ul li.hall a::after {
  background-color: var(--hall-color);
}
#top > .pickup ul li a:hover {
  opacity: 1;
}
#top > .pickup ul li a:hover::after {
  opacity: 0.3;
}
#top > .pickup ul li a h3 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
  line-height: 1;
}
#top > .pickup ul li a h3 .sm-txt {
  font-size: 2rem;
}
#top > .event {
  position: relative;
  z-index: 1;
}
#top > .event::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 200px;
  background-color: var(--primary-color);
}
#top > .event::after {
  content: "";
  position: absolute;
  top: 200px;
  right: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 25px;
  background-color: var(--primary-color);
  mask: url("../img/line.png") repeat-x center bottom;
  mask-size: 1px 100%;
  transform: scaleY(-1);
}
.wrapper.plaza #top > .event::before,
.wrapper.plaza #top > .event::after {
  background-color: var(--plaza-color);
}
.wrapper.hall #top > .event::before,
.wrapper.hall #top > .event::after {
  background-color: var(--hall-color);
}
#top > .event h2 {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
#top > .about {
  display: flex;
}
#top > .about > img {
  width: calc(100% - 680px);
  height: auto;
}
#top > .about .text {
  width: 620px;
  margin-left: 60px;
}
#top > .about .text .table_dl dt {
  width: 12rem;
}
#top > .about .text .table_dl dd {
  width: calc(100% - 12rem);
}
#top > .about .text .qr img {
  width: 150px;
  height: 150px;
  border: solid 1px #ccc;
}
#top #reserve {
  background: #eee;
}
#top #reserve .reserve-btn {
  display: flex;
}

@media (min-width: 840px) and (max-width: 1200px) {
  #top > .pickup ul {
    gap: 60px;
  }
}

@media (max-width: 839px) {
  #top > .mainvisual {
    height: auto;
  }
  #top #reserve .reserve-btn {
    display: block;
    text-align: center;
  }
  #top #reserve .reserve-btn .manual {
    margin: 10px auto;
  }
  #top #reserve .reserve-btn a {
    min-width: 280px;
  }
}

#top #reserve .reserve-btn a {
  padding: 12px 20px;
  line-height: 1.8;
}
#top #reserve .reserve-btn .manual {
  font-size: 1.5rem;
  line-height: 1.2;
}

.faq_list {
  border-top: 1px solid var(--site-text-color);
}
.faq_list dt,
.faq_list dd {
  position: relative;
}
.faq_list dt:before,
.faq_list dd:before {
  font-size: 1.8rem;
  content: "Q";
  position: absolute;
  left: 0;
  top: 28px;
  font-weight: 700;
}
.faq_list dt {
  padding: 30px 0 5px 30px;
}
.faq_list dd {
  padding: 5px 0 30px 30px;
  position: relative;
  border-bottom: 1px solid var(--site-text-color);
}
.faq_list dd:before {
  content: "A";
  color: var(--primary-color);
  top: 5px;
}
.wrapper.plaza .faq_list dd:before {
  color: var(--plaza-color);
}
.wrapper.hall .faq_list dd:before {
  color: var(--hall-color);
}

@media (max-width: 839px) {
  #top section {
    padding: 20px 0 40px;
  }
  #top > .mainvisual .slider .image {
    padding-top: 200px;
  }
  #top > .mainvisual h1 {
    font-size: 1.6rem;
  }
  #top > .news .inner {
    display: block;
  }
  #top > .news .inner > div {
    width: 100%;
  }
  #top > .news h2 {
    margin-right: 0;
  }
  #top > .lead p {
    font-size: 1.6rem;
  }
  #top > .pickup ul {
    grid-template-columns: 100%;
    gap: 40px;
  }
  #top > .pickup ul li a {
    width: calc(100% - 40px);
    min-height: 120px;
    padding: 20px;
  }
  #top > .pickup ul li a h3 {
    font-size: 2.2rem;
  }
  #top > .pickup ul li a h3 .sm-txt {
    font-size: 1.6rem;
  }
  #top > .event::before {
    height: 160px;
  }
  #top > .event::after {
    top: 160px;
  }
  #top > .about {
    display: grid;
  }
  #top > .about img {
    order: 2;
    width: 80%;
    max-width: 500px;
    margin: auto;
  }
  #top > .about .text {
    order: 1;
    width: 100%;
    margin: 0 0 20px;
  }
}

#sitemap .root .main {
  display: none;
}
#sitemap ul.under {
  display: flex;
  position: relative;
  margin-top: 30px;
  padding-top: 30px;
}
#sitemap ul.under li:first-child {
  position: absolute;
  font-weight: 700;
  top: 0;
}
#sitemap ul.under li:not(:last-child) {
  margin-right: 20px;
}
#sitemap ul.under li:nth-child(n + 2) a:before {
  content: none;
}

@media (max-width: 839px) {
  #sitemap .root {
    margin-top: 5px;
  }
  #sitemap ul.under {
    display: block;
    position: relative;
    margin-top: 20px;
    padding-top: 20px;
  }
  #sitemap ul.under li {
    width: 100%;
  }
  #sitemap ul.under li:not(:last-child) {
    margin-right: 0;
  }
  #sitemap ul.under li:nth-child(n + 4) {
    margin-top: 5px;
  }
}

#privacy_policy iframe {
  width: 100%;
  height: 1000px;
  border: solid 1px var(--text-color);
}
@media (max-width: 839px) {
  #privacy_policy iframe {
    height: 800px;
  }
}

#circle .plane_table td:nth-child(1) {
  width: 35%;
}
#circle .plane_table td:nth-child(2) {
  width: 25%;
}
#circle .plane_table td:nth-child(3) {
  width: 15%;
}
#circle .plane_table td:nth-child(4) {
  width: 15%;
  text-align: center;
}
#circle .plane_table td:nth-child(5) {
  width: 10%;
  text-align: center;
}

.image_list {
  display: flex;
}
.image_list li {
  width: 50%;
  padding-right: 10px;
}

.gallery .caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  line-height: 3rem;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
  font-size: 1.2rem;
}

.plane_table td.gallery {
  text-decoration: underline;
}
.plane_table td.gallery:hover {
  background: #eee;
  transition: 0.2s ease;
  cursor: pointer;
}

.plane_table.price tbody tr td {
  position: relative;
}
.plane_table.price tbody tr td:nth-child(1) {
  width: 120px;
}
.plane_table.price tbody tr td:nth-last-child(3) {
  width: 110px;
}
.plane_table.price tbody tr td:nth-last-child(-n + 2) {
  width: 150px;
}
.plane_table.price tbody tr td.docking {
  width: 40px;
  min-width: 34px;
  text-align: center;
  line-height: 1.2;
}
.plane_table.price tbody tr td a.gallery {
  display: flex;
  width: 100%;
  height: 100%;
  text-decoration: underline;
  position: absolute;
  left: 0;
  top: 0;
  align-items: center;
  padding-left: 10px;
}
.plane_table.price tbody tr td a.gallery:hover {
  background: #eee;
  transition: 0.2s ease;
  cursor: pointer;
}

@media (max-width: 839px) {
  .plane_table.price tbody tr td:nth-child(1),
  .plane_table.price tbody tr td:nth-last-child(3),
  .plane_table.price tbody tr td:nth-last-child(-n + 2) {
    width: auto;
  }
}
@media (min-width: 840px) {
  #plaza .plane_table tbody tr th {
    min-width: 100px;
  }
  #plaza .plane_table.price tbody tr td:nth-child(1) {
    width: 90px;
  }
}

/* ここから新規 */
.page-header {
  position: relative;
  height: 495px;
}

.about-head {
  margin-bottom: 60px;
}
.about-head_ttl {
  text-align: center;
  font-size: 3.2rem;
}
.about-head_lead {
  font-size: 1.8rem;
  line-height: 2;
}
.about-map {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 40px;
}
.about-map_label {
  margin-bottom: 5px;
  font-size: 1.8rem;
  font-weight: 700;
}
.about-map_image {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 416 / 300;
}
.about-service {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.about-service > li {
  width: 120px;
}
.about-service_icon {
  width: 80px;
  margin: 0 auto 10px;
}
.about-service_label {
  font-size: 1.4rem;
  line-height: 1.25;
  text-align: center;
}
.about-ul > li,
.about-ol > li {
  padding-left: 1em;
  text-indent: -1em;
}
.about-ul > li::before {
  content: "・";
}
.about-btn .btn {
  display: inline-block;
  margin: 10px 0 0;
}
.about-ul .about-btn,
.about-ol .about-btn {
  text-indent: 0;
}
.about-ul .about-btn .btn,
.about-ol .about-btn .btn {
  margin: 5px 0 10px;
}
.about-table table {
  width: 100%;
}
.about-table th,
.about-table td {
  padding: 10px;
  background-color: #fff;
  border: solid 1px #ccc;
  font-size: 1.6rem;
}
.about-table th {
  background-color: #eee;
  font-weight: 700;
  text-align: center
}
@media (max-width: 839px) {
  .about-map {
    flex-direction: column;
    gap: 40px;
    max-width: 416px;
    margin: 20px auto 0;
  }
  .about-map_label {
    font-size: 1.6rem;
  }
  .about-map_image {
    aspect-ratio: auto;
  }
  .about-service {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .about-service > li {
    width: auto;
  }
  .about-service_icon {
    width: 60px;
  }
  .about-service_label {
    font-size: 1.2rem;
  }
  .about-btn .btn {
    font-size: 1.2rem;
  }
  .about-table {
    overflow-x: auto;
  }
  .about-table table {
    width: 1200px;
  }
}

.page-content {
  padding-block: 80px;
}

.page-lead p {
  margin: 0;
}

.page-content-ttl {
  width: min(100%, 400px);
  margin: 50px auto 30px;
  font-size: 20px;
  text-align: center;
}

.page-btn-group {
  display: grid;
  gap: 20px;
  margin-top: 10px;
}

.page-btn-group .btn {
  margin-top: 0;
}

.form_row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 15px;
  padding: 30px 0;
  border: solid #ccc;
  border-width: 1px 0;
}
.form_row + .form_row {
  border-top-width: 0;
}

.form_input input[type="text"],
.form_input input[type="email"],
.form_input input[type="tel"] {
  width: 100%;
  height: 40px;
  padding: 1em;
  background-color: var(--site-color);
  border: 1px solid #bbbcbc;

  &::placeholder {
    color: #bbbcbc;
  }
}

.form_input textarea {
  width: 100%;
  height: 200px;
  padding: 1em;
  resize: vertical;
  border: 1px solid #bbbcbc;
  line-height: 1.5;
  background-color: var(--site-color);

  &::placeholder {
    color: #bbbcbc;
  }
}

.form_input input[type="checkbox"],
.form_input input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);

  + label {
    cursor: pointer;
  }
}

.form_radio {
  display: grid;
}
.form_radio label {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  position: relative;
}
.form_radio label input[type="radio"] {
  position: relative;
  top: 1px;
  border: 1px solid #9e9e9f;
  border-radius: 50%;
  background-color: var(--site-color);
  width: 18px;
  height: 18px;
  appearance: none;
}
.form_radio label input[type="radio"]:checked::before {
  background-color: var(--primary-color)
}
.form_radio label input[type="radio"]::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: transparent;
  width: 10px;
  height: 10px;
  margin: auto;
}
@media (max-width: 839px) {
  .form_radio label input[type="radio"] {
    width: 16px;
    height: 16px;
  }
  .form_radio label input[type="radio"]::before {
    width: 8px;
    height: 8px;
  }
}

.form_checkbox {
  display: grid;
}
.form_checkbox label {
  position: relative;
}
.form_checkbox label input[type="checkbox"] {
  position: relative;
  top: -1px;
  border: 1px solid #9e9e9f;
  background-color: var(--site-color);
  width: 18px;
  height: 18px;
  margin: 0 5px 0 0;
  vertical-align: middle;
  appearance: none;
}
.form_checkbox label input[type="checkbox"]:checked {
  background-color: var(--primary-color)
}
.form_checkbox label input[type="checkbox"]:checked::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  top: -3px;
  left: -1px;
  width: 11px;
  height: 6px;
  margin: auto;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
@media (max-width: 839px) {
  .form_checkbox label input[type="checkbox"] {
    top: 0;
    width: 16px;
    height: 16px;
  }
  .form_checkbox label input[type="checkbox"]:checked::before {
    top: -3px;
    left: 0;
    width: 10px;
    height: 5px;
  }
}


.form_label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form_label-text {
  font-weight: 700;
}

.form_label-text a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.form_required {
  border: 1px solid red;
  background-color: red;
  padding: 0.2em 0.5em;
  font-size: 1rem;
  line-height: 1;
  color: #fff;
}

.form_privacy-policy {
  margin-top: 50px;
  text-align: center;
}

.form_submit {
  margin-top: 40px;
  text-align: center;
}

.form_submit.is-disabled {
  pointer-events: none;
  opacity: 0.3;
}

.form_submit-btn {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 200px;
  height: 40px;
  border: 1px solid var(--primary-color);
  border-radius: 100vmax;
  transition: 0.3s;
  transition-property: background, color;
}

.form_submit-btn:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.form_submit-btn input {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.wpcf7-list-item {
  margin-left: 0 !important;
}

.wpcf7-spinner {
  position: absolute !important;
  left: 50%;
  transform: translateX(-50%);
  margin: 70px 0 0 !important;
}

.wpcf7-list-item + .wpcf7-list-item {
  margin-top: 10px !important;
}

.wpcf7-not-valid-tip {
  margin-top: 5px;
}

.wpcf7 form.invalid .wpcf7-response-output {
  border-color: red !important;
}

@media (max-width: 839px) {
  .form_row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.editor {
  width: min(100% - 20px, 800px);
  margin-top: 50px;
  margin-inline: auto;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.alignright {
  display: block;
  margin-left: auto;
}
.alignleft {
  display: block;
}

html :where(img[class*="wp-image-"]) {
  width: revert-layer;
}

.link {
  color: var(--link-color);
  text-decoration: underline;
}
.link[target="_blank"]:after {
  content: url(../img/blank.png);
  margin-left: 5px;
}

.access-dl {
  display: grid;
  grid-template-columns: auto 1fr;
  margin-bottom: 15px;
}
.access-dl dt::after {
  content: "：";
  margin: 0 10px;
}
@media (max-width: 839px) {
  .access-dl dt::after {
    margin: 0;
  }
}

.document-dl > dd {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}
.document-dl > dd .btn {
  margin: 0;
}
.document-dl > dd ~ dt {
  margin-top: 60px;
}
@media (max-width: 839px) {
  .document-dl > dd {
    gap: 20px;
  }
  .document-dl > dd ~ dt {
    margin-top: 40px;
  }
}

.news_column {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 60px;
  align-items: flex-start;
}
.news_side h3 {
  margin-bottom: 20px;
}
.news_side ul > li {
  padding: 10px 0;
  font-size: 1.6rem;
  text-align: center;
  border: solid #ccc;
  border-width: 1px 0;
}
.news_side ul > li + li {
  border-top-width: 0;
}
@media (max-width: 839px) {
  #news_archive > section.inner {
    display: flex;
    flex-direction: column;
  }
  #news_archive > section.inner .news_list {
    order: 1;
  }
  #news_archive > section.inner .news_side {
    order: 3;
  }
  #news_archive > section.inner .pager {
    order: 2;
  }
  .news_column {
    display: contents;
  }
  .news_side {
    margin-top: 40px;
  }
}

body:not(.recaptcha) .grecaptcha-badge {
  visibility: hidden;
}
