@charset "UTF-8";
/*
Theme Name: Cyg
Theme URI: https://cyg-morioka.mom/
Description: Cyg art gallery
Author: Cyg
Version: 2021_07
*/
/* html5,body,font-size(h1-h6 p li dt dd),table. basic style setting in normalize.css */
/*---------------------------------------------------------------------
 共通レイアウト
---------------------------------------------------------------------*/
#main {
  width: 100%;
}

.inner {
  max-width: 1000px;
  margin: auto;
  padding: 0 20px;
}

header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
}

header .inner {
  max-width: 100%;
  padding-top: 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f1f1f1;
  position: relative;
}

header .site_title {
  line-height: 1;
  margin-bottom: 0;
  padding-bottom: 12px;
  text-align: center;
}

header .site_nav_pc {
  padding-top: 10px;
}

header .site_nav_pc li {
  margin: auto 14px;
  font-size: 1.5rem;
  font-weight: 500;
}

header .motto {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.2rem;
  width: auto;
  letter-spacing: .12em;
}

header #menu-cyg_menu li:not(.current-menu-item) a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

header #menu-cyg_menu li:not(.current-menu-item) a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #000;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}

header #menu-cyg_menu li:not(.current-menu-item) a:hover::after {
  transform: scale(1, 1);
}

header .current-menu-item a,
header .current-page-ancestor a {
  border-bottom: 1px solid #222222;
  margin-bottom: 0.3em;
  padding-bottom: 5px;
}

.categoryid-4 header #menu-item-24 a,
.categoryid-4 header .menu-item-24 a {
  border-bottom: 1px solid #222222;
  margin-bottom: 0.3em;
  padding-bottom: 5px;
}

.categoryid-3 header #menu-item-25 a,
.categoryid-3 header .menu-item-25 a {
  border-bottom: 1px solid #222222;
  margin-bottom: 0.3em;
  padding-bottom: 5px;
}

.categoryid-2 header #menu-item-25 a,
.categoryid-2 header .menu-item-25 a {
  border-bottom: 1px solid #222222;
  margin-bottom: 0.3em;
  padding-bottom: 5px;
}

.new_mark {
  width: 30px;
  height: 30px;
  background: url(img/common/bg_new.svg) no-repeat;
}

.post_line .inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.post_line .inner:after {
  content: "";
  display: block;
  width: 31%;
  height: 0;
}

.post_line article {
  width: calc(33.3333% - 140px / 3);
  margin-bottom: 30px;
}

.post_line article dt {
  margin-bottom: 15px;
  position: relative;
}

.post_line article dt .wall {
  position: absolute;
  bottom: 3%;
  right: 3%;
}

.post_line article dt .plate {
  position: absolute;
  bottom: 3%;
  right: 3%;
}

.post_line article .artist {
  text-align: right;
  margin-bottom: 4px;
}

.post_line article .artist h3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 1.4rem;
}

.post_line article .title {
  text-align: right;
  margin-bottom: 6px;
}

.post_line article .term {
  text-align: right;
  font-size: 1.2rem;
}

.post_line_horizontal article a {
  display: block;
  border-bottom: 1px dotted #e2e2e2;
  padding: 20px 0 15px;
}

.post_line_horizontal article a:hover {
  color: black;
  background: #f4f4f4;
}

.post_line_horizontal article dl {
  margin-bottom: 0;
  display: grid;
  grid-template-columns: 1fr;
}

.post_line_horizontal article dt {
  margin-bottom: 6px;
}

.post_line_horizontal article dd h3 {
  font-size: 1.4rem;
  font-weight: 400;
}

.post_line_horizontal article .new_mark {
  position: absolute;
  top: 5px;
  right: 5px;
  margin: auto;
}

.embed_container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed_container iframe, .embed_container object, .embed_container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #e6e6e6;
  text-align: center;
  color: #fff;
}

#loading_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sns {
  position: absolute;
  top: 380px;
  right: 16px;
}

.sns li {
  margin-bottom: 10px;
  text-align: center;
}

/*---------------------------------------------------------------------
 トップページ
---------------------------------------------------------------------*/
.home #main h2, .page-id-2 #main h2 {
  font-size: 2.8rem;
  margin-bottom: 24px;
}

.home #hero, .page-id-2 #hero {
  background: #F6F4EA;
  padding: 100px 0;
  margin-bottom: 40px;
}

.home #hero .inner, .page-id-2 #hero .inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1240px;
  align-items: center;
  background: white;
}

.home #hero .each, .page-id-2 #hero .each {
  width: 50%;
}

.home #hero .figure, .page-id-2 #hero .figure {
  text-align: center;
  background: white;
}

.home #hero .detail, .page-id-2 #hero .detail {
  background: white;
  padding: 30px 65px;
  display: flex;
  position: relative;
}

.home #hero .detail dl, .page-id-2 #hero .detail dl {
  align-self: center;
  text-align: center;
}

.home #hero .detail dt, .page-id-2 #hero .detail dt {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 10px;
}

.home #hero .detail .title, .page-id-2 #hero .detail .title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 10px;
}

.home #hero .detail .term, .page-id-2 #hero .detail .term {
  margin-bottom: 40px;
  text-align: center;
}

.home #hero .detail .explanation, .page-id-2 #hero .detail .explanation {
  line-height: 2;
}

.home #hero .detail .status, .page-id-2 #hero .detail .status {
  position: absolute;
  top: 20px;
  right: 20px;
  width: auto;
  padding: 5px 20px;
  color: white;
  font-size: 1.5rem;
  background: #000;
  border-radius: 20px;
}

.home #hero .detail .arrow, .page-id-2 #hero .detail .arrow {
  position: absolute;
  bottom: 10px;
  right: 30px;
  width: auto;
  transition: all 0.3s ease;
}

.home #hero .detail .arrow:hover, .page-id-2 #hero .detail .arrow:hover {
  position: absolute;
  bottom: 10px;
  right: 20px;
}

.home #appeal, .page-id-2 #appeal {
  margin-bottom: 110px;
}

.home #appeal .inner, .page-id-2 #appeal .inner {
  max-width: 1480px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.home #appeal dl, .page-id-2 #appeal dl {
  width: calc(25% - 120px / 4);
}

.home #appeal dd, .page-id-2 #appeal dd {
  text-align: center;
  margin-top: 10px;
  font-size: 1.2rem;
}

.home #next, .page-id-2 #next {
  background: linear-gradient(180deg, white 0%, white 20%, #F7F7F7 20%, #F7F7F7 100%);
  margin-bottom: 30px;
  margin-bottom: 80px;
}

.home #next .inner, .page-id-2 #next .inner {
  max-width: 1240px;
}

.home #next h2 span, .page-id-2 #next h2 span {
  padding: 5px 20px;
  color: white;
  font-size: 1.5rem;
  background: #727171;
  border-radius: 20px;
}

.home #wall, .page-id-2 #wall {
  margin-bottom: 80px;
}

.home #calendar, .page-id-2 #calendar {
  margin-bottom: 120px;
}

.home #calendar .fc-toolbar-title, .page-id-2 #calendar .fc-toolbar-title {
  margin-bottom: 0;
  font-size: 2rem;
}

.home #calendar .fc-today-button, .page-id-2 #calendar .fc-today-button {
  background-color: #3f3f3f;
  border-color: white;
}

.home #calendar .fc-button-group .fc-button-primary, .page-id-2 #calendar .fc-button-group .fc-button-primary {
  background-color: #cfcfcf;
  border-color: white;
}

.home #calendar .fc-toolbar.fc-header-toolbar, .page-id-2 #calendar .fc-toolbar.fc-header-toolbar {
  margin-bottom: 10px;
}

.home #calendar .fc-h-event, .page-id-2 #calendar .fc-h-event {
  border-color: white;
}

.home #calendar .fc-event-title, .page-id-2 #calendar .fc-event-title {
  color: #222;
}

.home #calendar .calendar_exhibition, .page-id-2 #calendar .calendar_exhibition {
  background: #e0e0e0;
}

.home #calendar .calendar_close, .page-id-2 #calendar .calendar_close {
  background: #f1f1f1;
}

.home #calendar .fc-col-header-cell, .page-id-2 #calendar .fc-col-header-cell {
  padding: 4px;
  font-weight: normal;
}

.home #calendar .fc-event.fc-event-draggable, .page-id-2 #calendar .fc-event.fc-event-draggable {
  pointer-events: none;
}

.home .to_access {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
  line-height: 2.6;
}

.home .to_access a {
  border-bottom: 1px solid gray;
  padding: 0 4px 4px;
  font-size: 1.2rem;
}

.home #archive {
  background: #F7F7F7;
  padding: 100px 0;
  margin-bottom: 120px;
}

.home #archive .inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.home #archive h2 {
  width: 16%;
}

.home #archive .archive_line {
  width: 75%;
}

.home #archive .archive_line article {
  background: white;
  margin-bottom: 3px;
}

.home #archive .archive_line article a {
  padding: 20px;
  display: block;
}

.home #archive .archive_line article dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.home #archive .archive_line article dt {
  width: 18%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.2rem;
}

.home #archive .archive_line article dd {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.2rem;
}

.home #archive .archive_line article .title {
  width: 58%;
}

.home #archive .archive_line article .title h3 {
  font-size: 1.4rem;
}

.home #archive .archive_line article .title h3 span {
  font-size: 1rem;
  padding: 2px 6px;
  margin-right: 4px;
  background: #ececec;
  letter-spacing: .02em;
}

.home #archive .archive_line article .title br {
  display: none;
}

.home #archive .archive_line article .term {
  width: 18%;
  text-align: right;
  color: gray;
}

.home #archive .archive_line .arrow {
  text-align: right;
  margin-top: 30px;
}

.home #access_about {
  padding: 0 0 80px;
}

.home #access_about .inner {
  max-width: 1180px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.home #access_about .each {
  width: calc(50% - 100px / 2);
}

.home #access_about dt {
  margin-bottom: 24px;
}

.home #access_about dd {
  text-align: center;
}

.home #access_about .arrow {
  text-align: right;
  margin-bottom: 60px;
}

.home #access_about #access dd {
  font-size: 1.3rem;
  line-height: 1.6;
}

.home #access_about #about .info {
  font-size: 1.5rem;
  letter-spacing: .18em;
  line-height: 1.8;
}

.home #news_blog {
  background: #F7F7F7;
  margin-bottom: 90px;
  padding: 80px 0 60px;
}

.home #news_blog .inner {
  max-width: 1180px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.home #news_blog .each {
  width: calc(50% - 100px / 2);
}

.home #news_blog .arrow {
  margin-top: 30px;
  text-align: right;
}

.home #news_blog h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.home #news_blog article a {
  background: white;
  margin-bottom: 3px;
  padding: 25px;
  display: block;
}

.home #news_blog article dl {
  margin-bottom: 0;
}

.home #news_blog article dt {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.home #news_blog article dd h3 {
  font-size: 1.4rem;
}

.home #news_blog #blog #note h3 {
  font-size: 1.4rem;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home #news_blog #blog #note h3 small {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 6px;
}

.home #news_blog #blog .past_blog {
  margin-top: 10px;
  font-size: 1rem;
}

.home #news_blog #blog .arrow {
  margin-top: 0;
}

.home #link .inner {
  max-width: 1180px;
}

.home #link ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.home #link li {
  width: calc(25% - 140px / 4);
}

/*---------------------------------------------------------------------
 固定ページ共通
---------------------------------------------------------------------*/
#title_head {
  width: 100%;
}

#title_head h1 {
  padding: 76px 0 30px;
  text-align: center;
  line-height: 1;
  margin-bottom: 0;
  letter-spacing: .14em;
}

/*---------------------------------------------------------------------
 個別ページ
---------------------------------------------------------------------*/
.page-id-2 #wall {
  margin-bottom: 60px;
}

.page-id-2 #wall h2 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.page-id-2 #wall h2 span {
  font-size: 1.4rem;
  margin-left: 10px;
}

.page-id-12 .archive_wrap .each:nth-child(odd) {
  background: #F7F7F7;
}

.page-id-12 .each {
  padding: 80px 0 40px;
}

.page-id-12 .each .inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1180px;
}

.page-id-12 .each h3 {
  font-size: 2.6rem;
}

.page-id-12 .each .year {
  width: 10%;
}

.page-id-12 .each .post_line {
  width: 85%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.page-id-12 .each .post_line:after {
  content: "";
  display: block;
  width: 30%;
  height: 0;
}

.page-id-12 .each article {
  width: calc(33.3333% - 100px / 3);
}

.page-id-14 #lead {
  background: #F7F7F7;
  padding: 50px 0;
  margin-bottom: 110px;
}

.page-id-14 #lead .inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1180px;
  padding: 60px;
  background: white;
}

.page-id-14 #lead .figure {
  width: 50%;
}

.page-id-14 #lead .detail {
  width: 50%;
  padding: 50px 80px;
}

.page-id-14 #lead .detail h3 {
  font-size: 1.8rem;
  margin-bottom: 50px;
}

.page-id-14 #lead .detail dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.page-id-14 #lead .detail dt {
  width: 20%;
}

.page-id-14 #lead .detail dd {
  width: 75%;
}

.page-id-14 #lead .detail .gmap {
  font-size: 1.2rem;
  margin-top: 50px;
}

.page-id-14 #lead .detail .note {
  font-size: 1.2rem;
}

.page-id-14 #lead .way {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 60px;
}

.page-id-14 #lead .way dl:nth-child(1) {
  width: 25%;
}

.page-id-14 #lead .way dl:nth-child(2) {
  width: 25%;
}

.page-id-14 #lead .way dl:nth-child(3) {
  width: 40%;
}

.page-id-14 #lead .way dt {
  border-bottom: 1px solid gray;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.page-id-14 #lead .way dd {
  line-height: 1.8;
}

.page-id-14 #lead .way dd a {
  text-decoration: underline;
}

.page-id-14 #far .inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 800px;
}

.page-id-14 #far .figure {
  width: 40%;
}

.page-id-14 #far .detail {
  width: 50%;
}

.page-id-14 #far .detail h3 {
  margin-bottom: 70px;
  font-size: 1.8rem;
  margin-top: 40px;
}

.page-id-14 #far .detail dl {
  margin-bottom: 70px;
}

.page-id-14 #far .detail dt {
  font-size: 1.6rem;
  border-bottom: 1px solid gray;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.page-id-14 #far .detail dd {
  line-height: 2;
}

.page-id-14 #far .detail dd a {
  text-decoration: underline;
}

.page-id-16 #lead {
  padding-top: 80px;
  margin-bottom: 60px;
}

.page-id-16 #lead .inner {
  max-width: 1360px;
}

.page-id-16 #lead h3 {
  text-align: center;
  margin-bottom: 70px;
  font-size: 2rem;
  letter-spacing: .14em;
}

.page-id-16 #lead .origin {
  text-align: center;
  line-height: 2.4;
  margin-bottom: 80px;
}

.page-id-16 #lead .figure {
  text-align: center;
}

.page-id-16 .in_page_links {
  margin-bottom: 50px;
}

.page-id-16 .in_page_links .inner {
  max-width: 840px;
}

.page-id-16 .in_page_links ul {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.page-id-16 .in_page_links li {
  font-size: 1.6rem;
}

.page-id-16 #features .inner {
  max-width: 1080px;
}

.page-id-16 #features h3 {
  font-size: 2rem;
  letter-spacing: .14em;
  padding-bottom: 8px;
}

.page-id-16 #features hr {
  max-width: 200px;
}

.page-id-16 #able {
  background: #F7F7F7;
  padding: 80px 0 20px;
  margin-bottom: 100px;
}

.page-id-16 #able hr {
  margin-bottom: 50px;
}

.page-id-16 #able dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 60px;
  background: white;
}

.page-id-16 #able dt {
  width: 50%;
}

.page-id-16 #able dd {
  width: 50%;
  padding: 44px 50px;
}

.page-id-16 #able dd h4 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.page-id-16 #able dd p {
  line-height: 2;
  margin-bottom: 0;
}

.page-id-16 #able dd p a {
  text-decoration: underline;
}

.page-id-16 #space hr {
  margin-bottom: 30px;
}

.page-id-16 #space p {
  margin-bottom: 100px;
  text-align: center;
}

.page-id-16 #info, .page-id-16 #operation {
  background: #F7F7F7;
  padding: 80px 0 80px;
}

.page-id-16 #info .inner, .page-id-16 #operation .inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.page-id-16 #info .title, .page-id-16 #operation .title {
  width: 26%;
}

.page-id-16 #info .info_detail, .page-id-16 #operation .info_detail {
  width: 70%;
}

.page-id-16 #info .info_detail dl, .page-id-16 #operation .info_detail dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 3px;
  background: white;
  padding: 20px;
}

.page-id-16 #info .info_detail dt, .page-id-16 #operation .info_detail dt {
  width: 16%;
}

.page-id-16 #info .info_detail dd, .page-id-16 #operation .info_detail dd {
  width: 80%;
}

.page-id-16 #info .info_detail dd h4, .page-id-16 #operation .info_detail dd h4 {
  font-size: 1.4rem;
}

.page-id-16 #info .info_detail dd a, .page-id-16 #operation .info_detail dd a {
  text-decoration: underline;
}

.page-id-16 #operation {
  padding: 0 0 120px;
}

.page-id-19 #form_wrap {
  background: #F7F7F7;
  padding: 50px 0 70px;
}

.page-id-19 #form_wrap .inner {
  max-width: 720px;
  background: white;
  padding: 40px 40px 5px;
}

.page-id-19 #form_wrap .request {
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 26px;
  margin-bottom: 30px;
}

.page-id-19 #form_wrap .request dt {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.page-id-19 #form_wrap .request dd {
  font-size: 1.1rem;
}

.page-id-197 #link {
  background: #F7F7F7;
  padding: 60px 0 40px;
}

.page-id-197 #link .inner {
  max-width: 640px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.page-id-197 #link .wrap {
  width: 48%;
}

.page-id-197 #link dl {
  margin-bottom: 30px;
}

.page-id-197 #link dt {
  margin-bottom: 6px;
}

.page-id-197 #link dt a {
  font-size: 1.6rem;
  text-decoration: underline;
  background: url(img/page/sitemap_arrow.svg) no-repeat 0 10px;
  padding-left: 13px;
}

.page-id-197 #link dd {
  padding-left: 13px;
  font-size: 1.2rem;
}

.page-id-199 #privacy {
  background: #F7F7F7;
  padding: 60px 0 40px;
}

.page-id-199 #privacy .inner {
  max-width: 640px;
}

.page-id-199 #privacy p {
  margin-bottom: 40px;
  line-height: 1.8;
}

.page-id-199 #privacy dl {
  margin-bottom: 40px;
}

.page-id-199 #privacy dt {
  font-weight: 500;
  margin-bottom: 6px;
}

.page-id-201 #title_head h1 {
  font-size: 2.2rem;
}

.page-id-201 #newsletter {
  background: #F7F7F7;
  padding: 60px 0;
}

.page-id-201 #newsletter .inner {
  max-width: 640px;
}

.page-id-201 #newsletter p {
  line-height: 1.8;
  margin-bottom: 30px;
}

.page-id-201 #newsletter dd input {
  padding: 4px 8px;
}

.page-id-201 #newsletter ul {
  display: flex;
  flex-wrap: wrap;
}

.page-id-201 #newsletter li {
  margin-right: 20px;
}

.page-id-1338 #title_head h1 {
  padding: 100px 0 100px;
}

.page-id-1338 .in_page_links {
  margin-bottom: 80px;
}

.page-id-1338 .in_page_links .inner {
  max-width: 460px;
}

.page-id-1338 .in_page_links ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.page-id-1338 .in_page_links li {
  font-size: 1.6rem;
}

.page-id-1338 #news {
  margin-bottom: 100px;
}

.page-id-1338 #news .inner {
  max-width: 680px;
}

.page-id-1338 #news h2 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.page-id-1338 #news dt {
  font-size: 1.2rem;
}

.page-id-1338 #news dd h3 {
  font-size: 1.2rem;
}

.page-id-1338 #news .arrow {
  text-align: right;
  margin-top: 30px;
}

.page-id-1338 #wall {
  margin-bottom: 60px;
}

.page-id-1338 #wall h2 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.page-id-1338 #wall h2 span {
  font-size: 1.4rem;
  margin-left: 10px;
}

.page-id-1338 .each_wrap {
  padding: 50px 0;
}

.page-id-1338 .each_wrap .inner {
  max-width: 680px;
}

.page-id-1338 .each_wrap h2 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.page-id-1338 #summary {
  background: #F7F7F7;
  margin-bottom: 50px;
}

.page-id-1338 #terms h2 {
  margin-bottom: 60px;
}

.page-id-1338 #terms dl {
  margin-bottom: 76px;
}

.page-id-1338 #terms dt {
  border-bottom: 1px solid silver;
  margin-bottom: 12px;
  padding-bottom: 6px;
  font-weight: 500;
}

.page-id-1338 #terms ul {
  margin-bottom: 10px;
}

.page-id-1338 #terms caption {
  font-size: 1.4rem;
  font-weight: 500;
}

.page-id-1338 #terms .fee_table {
  margin-bottom: 20px;
}

.page-id-1338 #terms .fee_table_02 thead th {
  width: 33%;
}

.page-id-1338 #form {
  background: #EFEFEF;
}

.page-id-1338 #form h2 {
  margin-bottom: 40px;
}

.page-id-1338 #form p {
  text-align: center;
}

.page-id-1338 #form a {
  padding: 12px 60px;
  font-weight: 500;
  font-size: 1.6rem;
  background: white;
  display: inline-block;
}

.page-id-1338 #form a:hover {
  color: white;
  background: #222;
  opacity: 1;
}

/*---------------------------------------------------------------------
 フォーム
---------------------------------------------------------------------*/
.mw_wp_form b {
  font-size: .9rem;
  background: red;
  color: white;
  padding: 1px 4px;
  margin-left: 8px;
  font-weight: 400;
  display: inline-block;
}

.mw_wp_form dl {
  width: 100%;
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 30px;
  padding-bottom: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.mw_wp_form dt {
  width: 100%;
  padding-top: 10px;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.mw_wp_form dd {
  width: 100%;
  position: relative;
}

.mw_wp_form .questions dt {
  width: 100%;
}

.mw_wp_form .questions dd {
  width: 100%;
}

.mw_wp_form .address .zip input {
  width: 150px;
}

.mw_wp_form .address .note {
  font-size: 1.2rem;
  padding: 15px 0;
  font-weight: normal;
}

.mw_wp_form p.note {
  color: gray;
  margin-top: 20px;
  font-size: 1.2rem !important;
}

.mw_wp_form label {
  display: inline-block;
  margin-right: 20px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}

.mw_wp_form label input {
  margin-right: 3px;
  font-weight: 400;
}

.mw_wp_form dd input, .mw_wp_form dd textarea {
  font-size: 1.6rem;
  padding: 10px;
  font-weight: 400;
  width: 100%;
  background: #fbfbfb;
  border: 1px solid #dedede;
}

.mw_wp_form dd textarea {
  line-height: 1.6;
}

.mw_wp_form dd input:focus, .mw_wp_form dd textarea:focus {
  outline: none;
  background: #F6F4EA;
}

.mw_wp_form .mwform-radio-field input, .mw_wp_form .horizontal-item input {
  width: auto;
}

.mw_wp_form .mwform-radio-field-text {
  font-weight: normal;
}

.mw_wp_form .mwform-checkbox-field label {
  width: 45%;
  margin-bottom: 10px;
}

.mw_wp_form .mwform-checkbox-field {
  margin-left: 0 !important;
}

.mw_wp_form select {
  width: 200px;
  padding: 2px 5px;
  font-weight: normal;
  height: 40px;
}

.mw_wp_form input::placeholder, .mw_wp_form textarea::placeholder {
  font-weight: normal;
  color: silver;
}

.mw_wp_form span.error {
  color: red;
  font-weight: normal;
  font-size: 1rem;
  position: absolute;
  top: 12px;
  right: 4px;
  padding: 1px 6px;
  letter-spacing: 0;
  border-radius: 50px;
  border: 1px solid red;
  background: white;
}

.mw_wp_form #submit {
  clear: both;
  text-align: center;
  padding-top: 25px;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 60px;
}

.mw_wp_form #submit input {
  padding: 15px 50px;
  border: 1px solid #222222;
  background: #222222 !important;
  font-size: 1.6rem;
  transition: all 0.3s ease;
  font-weight: 400;
  color: white;
}

.mw_wp_form #submit input:focus {
  outline: solid 1px #000;
}

.mw_wp_form #submit input:hover {
  background: gray !important;
  color: white;
  border: 1px solid gray;
}

.mw_wp_form #submit input[type="button"], .mw_wp_form #submit input[type="text"], .mw_wp_form #submit input[type="submit"], .mw_wp_form #submit input[type="image"], .mw_wp_form #submit textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

.mw_wp_form_preview dl {
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 20px;
  font-weight: normal;
}

.mw_wp_form_preview dt {
  margin-bottom: 0.3em;
  padding-bottom: 0.2em;
  padding-top: 0;
}

.mw_wp_form_preview dd {
  font-size: 1.6rem;
  font-weight: 500;
  padding-top: 0 !important;
}

.mw_wp_form_preview li.note {
  display: none;
}

.mw_wp_form_preview li {
  font-size: 1.6rem;
}

.mw_wp_form_preview #submit input:first-child {
  background: silver !important;
  color: white;
  border-color: silver;
}

.mw_wp_form_preview .questions dd {
  padding-bottom: 20px;
}

.mw_wp_form_complete {
  text-align: center;
  margin: 60px auto 80px;
  font-size: 2rem;
}

/*---------------------------------------------------------------------
 アーカイブ カテゴリ ニュース共通
---------------------------------------------------------------------*/
.page-id-860 #news {
  background: #F7F7F7;
  padding: 60px 0;
}

.page-id-860 #news .inner {
  max-width: 640px;
}

.page-id-860 #news article a {
  background: white;
  margin-bottom: 3px;
  padding: 25px;
  display: block;
}

.page-id-860 #news article dl {
  margin-bottom: 0;
}

.page-id-860 #news article dt {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.category #news {
  background: #F7F7F7;
  padding: 60px 0;
}

.category #news .inner {
  max-width: 640px;
}

.category #news article a {
  background: white;
  margin-bottom: 3px;
  padding: 25px;
  display: block;
}

.category #news article dl {
  margin-bottom: 0;
}

.category #news article dt {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.wp-pagenavi {
  text-align: center;
  padding-bottom: 40px;
  background: #F7F7F7;
  margin-top: -26px;
}

.wp-pagenavi a {
  background: #f2f2f2;
  color: #7f7f7f;
}

.wp-pagenavi span.current {
  font-weight: 500;
  color: #ffffff;
  background: #222;
  border: none;
}

.wp-pagenavi span.pages {
  display: none !important;
}

#main .wp-pagenavi a, #main .wp-pagenavi span {
  border: none;
  font-size: 1.5rem;
  padding: 0.6em 1.05em;
  margin: 5px;
  border-radius: 70px;
  display: inline-block;
}

#main .wp-pagenavi a:hover {
  background: #222;
  color: white;
  opacity: 1;
}

/*---------------------------------------------------------------------
 投稿ページ共通
---------------------------------------------------------------------*/
.categoryid-2 #title_head, .categoryid-3 #title_head, .categoryid-4 #title_head, .categoryid-10 #title_head {
  display: none;
}

.categoryid-2 #hero, .categoryid-3 #hero, .categoryid-4 #hero, .categoryid-10 #hero {
  padding: 100px 0;
  margin-bottom: 80px;
}

.categoryid-2 #hero .inner, .categoryid-3 #hero .inner, .categoryid-4 #hero .inner, .categoryid-10 #hero .inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1240px;
}

.categoryid-2 #hero .figure, .categoryid-3 #hero .figure, .categoryid-4 #hero .figure, .categoryid-10 #hero .figure {
  position: relative;
}

.categoryid-2 #hero .mark_rental, .categoryid-3 #hero .mark_rental, .categoryid-4 #hero .mark_rental, .categoryid-10 #hero .mark_rental {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.categoryid-2 #hero .each, .categoryid-3 #hero .each, .categoryid-4 #hero .each, .categoryid-10 #hero .each {
  width: 50%;
}

.categoryid-2 #hero .detail, .categoryid-3 #hero .detail, .categoryid-4 #hero .detail, .categoryid-10 #hero .detail {
  background: white;
  padding: 0 65px;
  display: flex;
  position: relative;
}

.categoryid-2 #hero .detail .wrap, .categoryid-3 #hero .detail .wrap, .categoryid-4 #hero .detail .wrap, .categoryid-10 #hero .detail .wrap {
  align-self: center;
  width: 100%;
}

.categoryid-2 #hero .detail h2, .categoryid-3 #hero .detail h2, .categoryid-4 #hero .detail h2, .categoryid-10 #hero .detail h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.categoryid-2 #hero .detail p, .categoryid-3 #hero .detail p, .categoryid-4 #hero .detail p, .categoryid-10 #hero .detail p {
  text-align: center;
}

.categoryid-2 #hero .detail .title, .categoryid-3 #hero .detail .title, .categoryid-4 #hero .detail .title, .categoryid-10 #hero .detail .title {
  font-size: 2.4rem;
}

.categoryid-2 #hero .detail .term, .categoryid-3 #hero .detail .term, .categoryid-4 #hero .detail .term, .categoryid-10 #hero .detail .term {
  position: absolute;
  bottom: 20px;
  right: 0;
  text-align: center;
}

.categoryid-2 #summary_kotoba .inner, .categoryid-3 #summary_kotoba .inner, .categoryid-4 #summary_kotoba .inner, .categoryid-10 #summary_kotoba .inner {
  max-width: 600px;
}

.categoryid-2 #summary_kotoba .each, .categoryid-3 #summary_kotoba .each, .categoryid-4 #summary_kotoba .each, .categoryid-10 #summary_kotoba .each {
  margin-bottom: 80px;
}

.categoryid-2 #summary_kotoba h3, .categoryid-3 #summary_kotoba h3, .categoryid-4 #summary_kotoba h3, .categoryid-10 #summary_kotoba h3 {
  font-size: 1.6rem;
  padding-bottom: 8px;
}

.categoryid-2 #summary_kotoba hr, .categoryid-3 #summary_kotoba hr, .categoryid-4 #summary_kotoba hr, .categoryid-10 #summary_kotoba hr {
  text-align: left;
  margin-bottom: 10px;
}

.categoryid-2 #summary_kotoba p, .categoryid-3 #summary_kotoba p, .categoryid-4 #summary_kotoba p, .categoryid-10 #summary_kotoba p {
  line-height: 2.4;
}

.categoryid-2 #entry_content, .categoryid-3 #entry_content, .categoryid-4 #entry_content, .categoryid-10 #entry_content {
  padding: 60px 0 80px;
}

.categoryid-2 #entry_content .inner, .categoryid-3 #entry_content .inner, .categoryid-4 #entry_content .inner, .categoryid-10 #entry_content .inner {
  max-width: 860px;
}

.categoryid-2 #entry_content .artist, .categoryid-3 #entry_content .artist, .categoryid-4 #entry_content .artist, .categoryid-10 #entry_content .artist {
  font-size: 2rem;
  margin-bottom: 6px;
}

.categoryid-2 #entry_content h2, .categoryid-3 #entry_content h2, .categoryid-4 #entry_content h2, .categoryid-10 #entry_content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.categoryid-2 #entry_content .wrap, .categoryid-3 #entry_content .wrap, .categoryid-4 #entry_content .wrap, .categoryid-10 #entry_content .wrap {
  background: white;
  padding: 40px 28px;
}

.categoryid-2 #entry_content .wrap h2, .categoryid-3 #entry_content .wrap h2, .categoryid-4 #entry_content .wrap h2, .categoryid-10 #entry_content .wrap h2 {
  border-left: 2px solid silver;
  padding-left: 14px;
  margin-bottom: 28px;
}

.categoryid-2 #entry_content .wrap ul, .categoryid-3 #entry_content .wrap ul, .categoryid-4 #entry_content .wrap ul, .categoryid-10 #entry_content .wrap ul {
  margin-bottom: 1em;
}

.categoryid-2 #entry_content .wrap li, .categoryid-3 #entry_content .wrap li, .categoryid-4 #entry_content .wrap li, .categoryid-10 #entry_content .wrap li {
  font-size: 1.2rem;
}

.categoryid-2 #entry_content .wp-block-columns, .categoryid-3 #entry_content .wp-block-columns, .categoryid-4 #entry_content .wp-block-columns, .categoryid-10 #entry_content .wp-block-columns {
  border-bottom: 1px solid silver;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.categoryid-2 #entry_content .wp-block-columns .wp-block-columns, .categoryid-3 #entry_content .wp-block-columns .wp-block-columns, .categoryid-4 #entry_content .wp-block-columns .wp-block-columns, .categoryid-10 #entry_content .wp-block-columns .wp-block-columns {
  border: none;
  margin: 0;
  padding: 0;
}

.categoryid-2 #entry_content .wp-block-columns .wp-block-column:first-child, .categoryid-3 #entry_content .wp-block-columns .wp-block-column:first-child, .categoryid-4 #entry_content .wp-block-columns .wp-block-column:first-child, .categoryid-10 #entry_content .wp-block-columns .wp-block-column:first-child {
  flex-basis: 20%;
}

.categoryid-2 #entry_content .wp-block-columns .wp-block-column:first-child p, .categoryid-3 #entry_content .wp-block-columns .wp-block-column:first-child p, .categoryid-4 #entry_content .wp-block-columns .wp-block-column:first-child p, .categoryid-10 #entry_content .wp-block-columns .wp-block-column:first-child p {
  text-align: left;
}

.categoryid-2 #entry_content .wp-block-columns .wp-block-column:last-child, .categoryid-3 #entry_content .wp-block-columns .wp-block-column:last-child, .categoryid-4 #entry_content .wp-block-columns .wp-block-column:last-child, .categoryid-10 #entry_content .wp-block-columns .wp-block-column:last-child {
  flex-basis: 80%;
}

.categoryid-2 #entry_content .wp-block-columns .wp-block-column:last-child p, .categoryid-3 #entry_content .wp-block-columns .wp-block-column:last-child p, .categoryid-4 #entry_content .wp-block-columns .wp-block-column:last-child p, .categoryid-10 #entry_content .wp-block-columns .wp-block-column:last-child p {
  line-height: 2;
}

.categoryid-2 #entry_content .wp-block-columns .wp-block-column:last-child p a, .categoryid-3 #entry_content .wp-block-columns .wp-block-column:last-child p a, .categoryid-4 #entry_content .wp-block-columns .wp-block-column:last-child p a, .categoryid-10 #entry_content .wp-block-columns .wp-block-column:last-child p a {
  text-decoration: underline;
}

.categoryid-2 #entry_content .wp-block-columns .wp-block-column .wp-block-column, .categoryid-3 #entry_content .wp-block-columns .wp-block-column .wp-block-column, .categoryid-4 #entry_content .wp-block-columns .wp-block-column .wp-block-column, .categoryid-10 #entry_content .wp-block-columns .wp-block-column .wp-block-column {
  flex-basis: auto;
  margin-bottom: 10px;
  padding: 0;
}

.categoryid-2 #entry_content .wp-block-columns .wp-block-column figure, .categoryid-3 #entry_content .wp-block-columns .wp-block-column figure, .categoryid-4 #entry_content .wp-block-columns .wp-block-column figure, .categoryid-10 #entry_content .wp-block-columns .wp-block-column figure {
  padding: 0;
  margin: 0 0 16px 0;
}

.categoryid-2 #entry_content .wp-block-columns p.has-background, .categoryid-3 #entry_content .wp-block-columns p.has-background, .categoryid-4 #entry_content .wp-block-columns p.has-background, .categoryid-10 #entry_content .wp-block-columns p.has-background {
  padding: 1em;
}

.categoryid-2 #entry_content .wp-block-columns figcaption, .categoryid-3 #entry_content .wp-block-columns figcaption, .categoryid-4 #entry_content .wp-block-columns figcaption, .categoryid-10 #entry_content .wp-block-columns figcaption {
  font-size: 1rem;
}

.categoryid-2 #entry_content table tr, .categoryid-3 #entry_content table tr, .categoryid-4 #entry_content table tr, .categoryid-10 #entry_content table tr {
  border-bottom: 1px solid #efefef;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.categoryid-2 #entry_content table tr:first-child, .categoryid-3 #entry_content table tr:first-child, .categoryid-4 #entry_content table tr:first-child, .categoryid-10 #entry_content table tr:first-child {
  border-top: 1px solid #efefef;
}

.categoryid-2 #entry_content table th, .categoryid-2 #entry_content table td, .categoryid-3 #entry_content table th, .categoryid-3 #entry_content table td, .categoryid-4 #entry_content table th, .categoryid-4 #entry_content table td, .categoryid-10 #entry_content table th, .categoryid-10 #entry_content table td {
  font-size: 1.2rem;
}

.categoryid-2 #entry_content table td, .categoryid-3 #entry_content table td, .categoryid-4 #entry_content table td, .categoryid-10 #entry_content table td {
  padding: 10px;
}

.categoryid-2 #entry_content table td a, .categoryid-3 #entry_content table td a, .categoryid-4 #entry_content table td a, .categoryid-10 #entry_content table td a {
  text-decoration: underline;
}

.categoryid-2 #entry_content table td:first-child, .categoryid-3 #entry_content table td:first-child, .categoryid-4 #entry_content table td:first-child, .categoryid-10 #entry_content table td:first-child {
  width: 15%;
  vertical-align: top;
}

.single #entry_content #covid_19 {
  background: rgba(255, 255, 255, 0.6);
  padding: 30px 30px 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
}

.single #entry_content #covid_19 .title {
  width: 10%;
}

.single #entry_content #covid_19 .request {
  width: 88%;
}

.single #entry_content #covid_19 dl {
  margin-bottom: 28px;
}

.single #entry_content #covid_19 dt {
  border-bottom: 1px solid silver;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.single #entry_content #covid_19 li, .single #entry_content #covid_19 p {
  font-size: 1.2rem;
}

.categoryid-1 #title_head a, .categoryid-9 #title_head a {
  pointer-events: none;
}

.categoryid-1 #main, .categoryid-9 #main {
  background: #F7F7F7;
  padding: 50px 0;
}

.categoryid-1 #main .inner, .categoryid-9 #main .inner {
  max-width: 780px;
  background: white;
  padding: 50px 50px 10px;
}

.categoryid-1 #main .entry_title, .categoryid-9 #main .entry_title {
  line-height: 1.4;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 14px;
  font-weight: 500;
}

.categoryid-1 #main .entry_meta .date, .categoryid-9 #main .entry_meta .date {
  margin-bottom: 30px;
  text-align: center;
}

.categoryid-1 .entry_content, .categoryid-9 .entry_content {
  word-wrap: break-word;
}

.categoryid-1 .entry_content h2, .categoryid-9 .entry_content h2 {
  font-size: 1.6rem;
  border-left: 2px solid #222222;
  padding-left: 10px;
  margin-bottom: 12px;
  line-height: 2;
  font-weight: 500;
}

.categoryid-1 .entry_content h3, .categoryid-9 .entry_content h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 500;
}

.categoryid-1 .entry_content a img, .categoryid-9 .entry_content a img {
  pointer-events: none;
}

.categoryid-1 .entry_content figure, .categoryid-9 .entry_content figure {
  margin: 0 0 30px;
}

.categoryid-1 .entry_content figcaption, .categoryid-9 .entry_content figcaption {
  margin-top: 6px;
  text-align: right;
  font-size: 1.1rem;
}

.categoryid-1 .entry_content p, .categoryid-9 .entry_content p {
  margin-bottom: 26px;
  line-height: 1.8;
}

.categoryid-1 .entry_content p a, .categoryid-9 .entry_content p a {
  color: #222222;
  border-bottom: 1px solid #222222;
}

.categoryid-1 .entry_content ul, .categoryid-9 .entry_content ul {
  margin-bottom: 30px;
}

.categoryid-1 .entry_content p a[href$=".pdf"], .categoryid-9 .entry_content p a[href$=".pdf"] {
  display: inline-block;
  padding-left: 26px;
  background: url(img/post/icon_pdf_18.svg) no-repeat left center;
}

.categoryid-1 .entry_content p a[href$=".doc"], .categoryid-9 .entry_content p a[href$=".doc"] {
  display: inline-block;
  padding-left: 26px;
  background: url(img/post/icon_doc_18.svg) no-repeat left center;
}

.categoryid-1 .entry_content .wp-block-columns p, .categoryid-9 .entry_content .wp-block-columns p {
  margin-bottom: 15px;
}

.categoryid-1 .entry_content .wp-block-columns p:last-child, .categoryid-9 .entry_content .wp-block-columns p:last-child {
  margin-bottom: 30px;
}

.categoryid-1 .entry_content .wp-block-columns ul, .categoryid-9 .entry_content .wp-block-columns ul {
  margin-bottom: 15px;
}

.categoryid-1 .entry_content .wp-block-columns ul:last-child, .categoryid-9 .entry_content .wp-block-columns ul:last-child {
  margin-bottom: 30px;
}

.categoryid-1 .entry_content .wp-block-gallery ul, .categoryid-9 .entry_content .wp-block-gallery ul {
  margin-bottom: 0;
}

.categoryid-1 .entry_content .wp-embedded-content, .categoryid-9 .entry_content .wp-embedded-content {
  margin: 0;
}

.categoryid-1 .entry_content .embed-container, .categoryid-9 .entry_content .embed-container {
  margin-bottom: 30px;
}

.categoryid-1 .entry_content table tr, .categoryid-9 .entry_content table tr {
  border-bottom: 1px solid #efefef;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.categoryid-1 .entry_content table tr:first-child, .categoryid-9 .entry_content table tr:first-child {
  border-top: 1px solid #efefef;
}

.categoryid-1 .entry_content table th, .categoryid-1 .entry_content table td, .categoryid-9 .entry_content table th, .categoryid-9 .entry_content table td {
  font-size: 1.2rem;
}

.categoryid-1 .entry_content table td, .categoryid-9 .entry_content table td {
  padding: 10px;
}

.categoryid-1 .entry_content table td a, .categoryid-9 .entry_content table td a {
  text-decoration: underline;
}

.categoryid-1 .entry_content table td:first-child, .categoryid-9 .entry_content table td:first-child {
  width: 15%;
  vertical-align: top;
}

.wp-block-embed-youtube .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.wp-block-embed-youtube .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.single #single_page_nav {
  width: 100%;
}

.single #single_page_nav ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.single #single_page_nav li {
  margin-bottom: 20px;
}

.single #single_page_nav li a {
  display: inline-block;
  padding: 12px 35px;
  font-size: 1.2rem;
}

.single #single_page_nav #previous .box_btn {
  background: silver url(img/post/arrow_previous.svg) left 16px no-repeat;
  padding: 12px 16px 12px 40px;
}

.single #single_page_nav #next .box_btn {
  background: silver url(img/post/arrow_next.svg) right 16px no-repeat;
  padding: 12px 40px 12px 16px;
}

.single #single_page_nav li#previous {
  margin-left: 6px;
}

/*---------------------------------------------------------------------
 Not 404
---------------------------------------------------------------------*/
.error404 #title_head {
  display: none;
}

.error404 #breadcrumb p {
  margin: 10px auto;
}

.error404 #main {
  background: #F7F7F7;
  min-height: 60vh;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}

.error404 #main dt {
  text-align: center;
  font-size: 3rem;
}

.error404 #main dd {
  text-align: center;
  font-size: 1.3rem;
}

/*---------------------------------------------------------------------
 footer
---------------------------------------------------------------------*/
footer {
  width: 100%;
  padding: 100px 0 80px;
}

footer .inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1180px;
}

footer .primary {
  width: 70%;
  order: 2;
}

footer .primary dt {
  margin-bottom: 25px;
  text-align: right;
  letter-spacing: .12em;
  font-size: 1.3rem;
}

footer .primary dd {
  font-size: 1.3rem;
  text-align: right;
  margin-bottom: 5px;
}

footer .secondary {
  width: 30%;
  order: 1;
}

footer .secondary h2 {
  margin-bottom: 24px;
}

footer .secondary ul {
  display: flex;
  flex-wrap: wrap;
}

footer .secondary li {
  font-size: 1.1rem;
  margin-bottom: 18px;
}

footer .secondary li:after {
  content: "/";
  padding: 0 10px;
}

footer .secondary li:last-child:after {
  content: "";
}

footer .secondary p {
  font-size: .9rem;
  color: #727171;
}

footer small {
  font-size: 1rem;
  margin-left: 20px;
}

p.pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  opacity: 0;
  transform: scale(1.5);
  transition: all 0.5s;
  text-align: right;
  width: auto;
}

p.pagetop a {
  display: block;
}

p.pagetop.show {
  opacity: 1;
  transform: scale(1);
}

/*---------------------------------------------------------------------
 Edge hack
---------------------------------------------------------------------*/
/*---------------------------------------------------------------------
 print
---------------------------------------------------------------------*/
@media print {
  body {
    -webkit-print-color-adjust: exact;
  }
  a[href]:after {
    content: "" !important;
  }
  abbr[title]:after {
    content: "" !important;
  }
  .show-for-small-only {
    display: none !important;
  }
  .pagetop.show {
    display: none !important;
  }
  body, h1, h2, h3, h4, h5, h6, li, dt, dd, p, th, td, .mincho {
    font-family: sans-serif !important;
  }
}

/*---------------------------------------------------------------------
 jquery js 関連 css
---------------------------------------------------------------------*/
.button_container {
  position: fixed;
  top: 18px;
  right: 13px;
  height: 27px;
  width: 35px;
  cursor: pointer;
  z-index: 200;
}

.button_container:after {
  content: "";
  position: absolute;
  top: -18px;
  right: -13px;
  z-index: -1;
  width: 58px;
  height: 58px;
  background: rgba(255, 255, 255, 0.5);
}

.button_container:hover {
  opacity: .8;
}

.button_container.active .top {
  transform: translateY(11px) translateX(0) rotate(45deg);
  background: #222;
  z-index: 200;
}

.button_container.active .middle {
  opacity: 0;
  background: #222;
}

.button_container.active .bottom {
  transform: translateY(-11px) translateX(0) rotate(-45deg);
  background: #222;
  z-index: 200;
}

.button_container span {
  background: #222;
  border: none;
  height: 1px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.35s ease;
  cursor: pointer;
}

.button_container span:nth-of-type(2) {
  top: 11px;
}

.button_container span:nth-of-type(3) {
  top: 22px;
}

.overlay {
  position: fixed;
  background: rgba(226, 226, 226, 0.98);
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  overflow: auto;
  z-index: 99;
}

.overlay .overlay-menu {
  width: 90%;
  margin: auto;
}

.overlay h2 {
  text-align: center;
  margin: 9px auto 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #a5a5a5;
}

.overlay h2 img {
  width: 46px;
}

.overlay .menu-cyg_menu-container li {
  margin-bottom: 20px;
  position: relative;
  opacity: 0;
  text-align: center;
}

.overlay .menu-cyg_menu-container li a {
  color: #000;
  font-size: 1.8rem;
  padding: 0 16px 8px;
}

.overlay .sns_sp {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 16px 0 34px;
}

.overlay .sns_sp li {
  margin: auto 10px;
  align-items: center;
}

.overlay .motto_sp {
  text-align: center;
  width: 100%;
}

.overlay .current-menu-item a {
  border-color: #656565;
}

.overlay.open {
  opacity: .96;
  visibility: visible;
  height: 100%;
}

.overlay.open .menu-cyg_menu-container li {
  animation: fadeInRight 0.5s ease forwards;
  animation-delay: .35s;
}

.overlay.open .menu-cyg_menu-container li:nth-of-type(2) {
  animation-delay: .40s;
}

.overlay.open .menu-cyg_menu-container li:nth-of-type(3) {
  animation-delay: .45s;
}

.overlay.open .menu-cyg_menu-container li:nth-of-type(4) {
  animation-delay: .50s;
}

.overlay.open .menu-cyg_menu-container li:nth-of-type(5) {
  animation-delay: .55s;
}

.overlay.open .menu-cyg_menu-container li:nth-of-type(6) {
  animation-delay: .60s;
}

.overlay.open .menu-cyg_menu-container li:nth-of-type(7) {
  animation-delay: .65s;
}

.overlay.open .menu-cyg_menu-container li:nth-of-type(8) {
  animation-delay: .70s;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

/*---------------------------------------------------------------------
 メディアクエリー Foundation 6 に準拠
---------------------------------------------------------------------*/
@media only screen and (min-device-width: 320px) and (max-device-width: 639px) {
  .no_br_sp br {
    display: none !important;
  }
  .single .wp-caption {
    max-width: 100%;
  }
  .mw_wp_form dt, .mw_wp_form dd {
    width: 100%;
  }
  header .inner {
    padding: 16px 0 4px;
  }
  header .site_title img {
    width: 46px;
  }
  .post_line article {
    width: calc(50% - 26px / 2);
  }
  .post_line article .artist h3 {
    font-size: 1.2rem;
  }
  .post_line article dd {
    font-size: 1rem;
  }
  .post_line article .term {
    font-size: 1rem;
  }
  .post_line article dt .wall {
    max-width: 70px;
  }
  .home #hero, .page-id-2 #hero {
    padding: 50px 0;
    position: relative;
  }
  .home #hero .each, .page-id-2 #hero .each {
    width: 100%;
  }
  .home #hero .detail, .page-id-2 #hero .detail {
    padding: 50px 30px;
    position: inherit;
  }
  .home #hero .detail .status, .page-id-2 #hero .detail .status {
    position: absolute;
    top: 36px;
    right: 20px;
  }
  .home #appeal dl {
    width: calc(50% - 18px / 2);
    margin-bottom: 20px;
  }
  .home #appeal dd {
    font-size: .8rem;
  }
  .home #archive h2 {
    width: 100%;
  }
  .home #archive .archive_line {
    width: 100%;
  }
  .home #archive .archive_line article dt {
    width: 100%;
    margin-bottom: 6px;
  }
  .home #archive .archive_line article .title {
    width: 100%;
  }
  .home #archive .archive_line article .term {
    width: 100%;
    text-align: left;
  }
  .home #access_about .each {
    width: 100%;
  }
  .home #access_about #access {
    margin-bottom: 50px;
  }
  .home #access_about #access dd {
    text-align: left;
    font-size: 1.1rem;
  }
  .home #access_about #about .info {
    font-size: 1.3rem;
  }
  .home #news_blog .each {
    width: 100%;
    margin-bottom: 30px;
  }
  .home #news_blog #news {
    margin-bottom: 60px;
  }
  .home #news_blog article a {
    padding: 20px;
  }
  .home #news_blog {
    margin-bottom: 60px;
  }
  .home #news_blog #blog #note h3 {
    font-size: 1.2rem;
  }
  .home #link li {
    width: calc(50% - 12px / 2);
    margin-bottom: 20px;
  }
  #title_head h1 {
    padding: 50px 0 40px;
  }
  .page-id-12 .each .year {
    width: 100%;
    margin-bottom: 12px;
  }
  .page-id-12 .each .post_line {
    width: 100%;
  }
  .page-id-12 .each article {
    width: calc(50% - 18px / 2);
    margin-bottom: 26px;
  }
  .page-id-14 #lead {
    margin-bottom: 70px;
  }
  .page-id-14 #lead .inner {
    padding: 30px;
  }
  .page-id-14 #lead .figure {
    width: 100%;
    margin-bottom: 10px;
  }
  .page-id-14 #lead .detail {
    width: 100%;
    padding: 25px 0;
  }
  .page-id-14 #lead .detail h3 {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
  .page-id-14 #lead .detail .gmap {
    margin-top: 28px;
  }
  .page-id-14 #lead .detail .note {
    font-size: 1rem;
  }
  .page-id-14 #lead .way {
    padding-top: 10px;
  }
  .page-id-14 #lead .way dl {
    width: 100% !important;
    margin-bottom: 30px;
  }
  .page-id-14 #far .figure {
    width: 100%;
    order: 2;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
  }
  .page-id-14 #far .figure img {
    max-width: 240px;
  }
  .page-id-14 #far .detail {
    width: 100%;
    order: 1;
  }
  .page-id-14 #far .detail h3 {
    margin: 0 auto 40px;
    font-size: 1.6rem;
  }
  .page-id-14 #far .detail dl {
    margin-bottom: 30px;
  }
  .page-id-14 #far .detail dt {
    font-size: 1.2rem;
  }
  .page-id-16 #lead {
    padding-top: 10px;
    margin-bottom: 60px;
  }
  .page-id-16 #lead h3 {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }
  .page-id-16 #lead .origin {
    margin-bottom: 40px;
  }
  .page-id-16 .in_page_links {
    margin-bottom: 40px;
  }
  .page-id-16 .in_page_links li {
    font-size: 1.1rem;
  }
  .page-id-16 #able dt {
    width: 100%;
  }
  .page-id-16 #able dd {
    width: 100%;
    padding: 25px 20px;
  }
  .page-id-16 #able dd h4 {
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
  .page-id-16 #features h3 {
    font-size: 1.8rem;
  }
  .page-id-16 #info .title, .page-id-16 #operation .title {
    width: 100%;
    margin-bottom: 20px;
  }
  .page-id-16 #info .info_detail, .page-id-16 #operation .info_detail {
    width: 100%;
  }
  .page-id-16 #info .info_detail dt, .page-id-16 #operation .info_detail dt {
    width: 100%;
    margin-bottom: 6px;
  }
  .page-id-16 #info .info_detail dd, .page-id-16 #operation .info_detail dd {
    width: 100%;
  }
  .categoryid-2 #hero, .categoryid-3 #hero, .categoryid-4 #hero {
    padding: 50px 0;
  }
  .categoryid-2 #hero .each, .categoryid-3 #hero .each, .categoryid-4 #hero .each, .categoryid-10 #hero .each {
    width: 100%;
  }
  .categoryid-2 #hero .detail, .categoryid-3 #hero .detail, .categoryid-4 #hero .detail, .categoryid-10 #hero .detail {
    width: 100%;
    min-height: 280px;
    padding: 0 26px;
  }
  .categoryid-2 #hero .detail h2, .categoryid-3 #hero .detail h2, .categoryid-4 #hero .detail h2 {
    font-size: 1.8rem;
  }
  .categoryid-2 #hero .detail .title, .categoryid-3 #hero .detail .title, .categoryid-4 #hero .detail .title {
    font-size: 1.6rem;
  }
  .categoryid-2 #hero .detail .term, .categoryid-3 #hero .detail .term, .categoryid-4 #hero .detail .term {
    bottom: 5px;
    font-size: 1rem;
  }
  .categoryid-2 #entry_content .artist, .categoryid-3 #entry_content .artist, .categoryid-4 #entry_content .artist {
    font-size: 1.6rem;
  }
  .categoryid-2 #summary_kotoba h3, .categoryid-3 #summary_kotoba h3, .categoryid-4 #summary_kotoba h3 {
    font-size: 1.4rem;
  }
  .categoryid-2 #entry_content h2, .categoryid-3 #entry_content h2, .categoryid-4 #entry_content h2 {
    font-size: 1.6rem;
  }
  .categoryid-2 #entry_content .wp-block-columns .wp-block-column:first-child, .categoryid-3 #entry_content .wp-block-columns .wp-block-column:first-child, .categoryid-4 #entry_content .wp-block-columns .wp-block-column:first-child {
    padding-left: 0;
  }
  .categoryid-2 #entry_content table td, .categoryid-3 #entry_content table td, .categoryid-4 #entry_content table td {
    font-size: 1rem;
  }
  .categoryid-2 #entry_content table td:first-child, .categoryid-3 #entry_content table td:first-child, .categoryid-4 #entry_content table td:first-child {
    padding-left: 0;
    padding-right: 0;
  }
  .page-id-197 #link dt a {
    font-size: 1.3rem;
    background: url(img/page/sitemap_arrow.svg) no-repeat 0 6px;
    padding-left: 10px;
  }
  .page-id-197 #link dd {
    font-size: 1.1rem;
  }
  .page-id-1338 .in_page_links li {
    font-size: 1.4rem;
  }
  .single #entry_content #covid_19 {
    padding: 24px 16px 2px;
  }
  .single #entry_content #covid_19 .title {
    width: 14%;
  }
  .single #entry_content #covid_19 .request {
    width: 80%;
  }
  .single #entry_content #covid_19 dt {
    font-size: 1rem;
  }
  .single #entry_content #covid_19 li, .single #entry_content #covid_19 p {
    font-size: 1rem;
  }
  .categoryid-1 #main .inner {
    padding: 25px 25px 15px;
  }
  footer {
    padding: 60px 0 30px;
  }
  footer .primary {
    order: 1;
    width: 100%;
    border-top: 1px solid silver;
    padding-top: 40px;
  }
  footer .secondary {
    order: 2;
    width: 100%;
  }
  footer .secondary {
    display: flex;
    flex-wrap: wrap;
  }
  footer .secondary h2 {
    order: 2;
  }
  footer .secondary h2 img {
    width: 50px;
  }
  footer .secondary ul {
    order: 1;
    margin-bottom: 10px;
  }
  footer .secondary p {
    order: 3;
  }
  footer .primary {
    margin-bottom: 20px;
  }
  footer .primary dt {
    text-align: left;
    font-size: 1.2rem;
  }
  footer .primary dd {
    text-align: left;
    font-size: 1.2rem;
  }
  footer .pagetop img {
    width: 50px;
  }
  .simcal-event-details {
    display: block !important;
  }
  .simcal-event-title {
    cursor: default !important;
  }
  .fc-view-harness {
    height: 600px !important;
  }
  /* fullカレンダー スマホ時のたかさ */
}

@media only screen and (min-device-width: 320px) and (max-device-width: 1023px) {
  .no_br br {
    display: none !important;
  }
}

@media only screen and (max-device-width: 320px) {
  .inner {
    padding-left: .6em;
    padding-right: .6em;
  }
}

@media only screen and (min-device-width: 320px) {
  table tr th, table tr td {
    padding: 0.4em 0.8em;
    font-size: 1rem;
  }
}

@media only screen and (min-device-width: 640px) and (max-device-width: 1023px) {
  .no-br-tb br {
    display: none !important;
  }
  .post_line article {
    width: calc(33.3333% - 80px / 3);
  }
  header .inner {
    padding: 20px 0 10px;
  }
  .home #hero, .page-id-2 #hero {
    padding: 50px 0;
  }
  .home #hero .inner, .page-id-2 #hero .inner {
    position: relative;
  }
  .home #hero .each, .page-id-2 #hero .each {
    width: 100%;
  }
  .home #hero .detail, .page-id-2 #hero .detail {
    position: inherit;
    padding: 60px 40px;
  }
  .home #appeal dl, .page-id-2 #appeal dl {
    width: calc(25% - 80px / 4);
  }
  .home #access_about .each {
    width: calc(50% - 36px / 2);
  }
  .home #news_blog .each {
    width: calc(50% - 36px / 2);
  }
  .home #link li {
    width: calc(25% - 60px / 4);
  }
  #title_head h1 {
    padding: 50px 0 30px;
  }
  .categoryid-2 #hero, .categoryid-3 #hero, .categoryid-4 #hero {
    padding: 50px 0;
  }
  .categoryid-2 #hero .detail h2, .categoryid-3 #hero .detail h2, .categoryid-4 #hero .detail h2 {
    font-size: 2rem;
  }
  .categoryid-2 #hero .detail .title, .categoryid-3 #hero .detail .title, .categoryid-4 #hero .detail .title {
    font-size: 1.8rem;
  }
  .categoryid-2 #hero .detail .term, .categoryid-3 #hero .detail .term, .categoryid-4 #hero .detail .term {
    bottom: 10px;
  }
  .categoryid-2 #entry_content .wp-block-columns .wp-block-column:first-child, .categoryid-3 #entry_content .wp-block-columns .wp-block-column:first-child, .categoryid-4 #entry_content .wp-block-columns .wp-block-column:first-child {
    flex-basis: 100% !important;
  }
  .categoryid-2 #entry_content .wp-block-columns .wp-block-column:last-child, .categoryid-3 #entry_content .wp-block-columns .wp-block-column:last-child, .categoryid-4 #entry_content .wp-block-columns .wp-block-column:last-child {
    flex-basis: 100% !important;
    margin-left: 10px;
  }
  .page-id-12 .each .year {
    width: 100%;
    margin-bottom: 12px;
  }
  .page-id-12 .each .post_line {
    width: 100%;
  }
  .page-id-14 #lead .inner {
    padding: 40px 30px;
  }
  .page-id-14 #lead .figure {
    width: 40%;
  }
  .page-id-14 #lead .detail {
    width: 55%;
    padding: 0;
  }
  .page-id-14 #lead .detail h3 {
    font-size: 1.6rem;
    margin-bottom: 26px;
  }
  .page-id-14 #lead .detail dt {
    font-size: 1.2rem;
  }
  .page-id-14 #lead .detail dd {
    font-size: 1.2rem;
  }
  .page-id-14 #lead .detail .gmap {
    margin-top: 20px;
    font-size: 1rem;
  }
  .page-id-14 #lead .detail .note {
    font-size: 1rem;
  }
  .page-id-14 #lead .way dt, .page-id-14 #lead .way dd {
    font-size: 1.2rem;
    text-align: left;
  }
  .page-id-14 #far .detail h3 {
    font-size: 1.6rem;
  }
  .page-id-14 #far .detail dt {
    font-size: 1.4rem;
  }
  .page-id-14 #far .detail dd {
    font-size: 1.2rem;
  }
  .page-id-16 #lead {
    padding-top: 40px;
    margin-bottom: 60px;
  }
  .page-id-16 #able dt {
    width: 35%;
    align-self: center;
  }
  .page-id-16 #able dd {
    width: 65%;
    padding: 20px 35px;
  }
  .page-id-16 #able dd h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .page-id-16 #able dd p {
    font-size: 1.2rem;
  }
  .page-id-16 #info .title, .page-id-16 #operation .title {
    width: 100%;
    margin-bottom: 12px;
  }
  .page-id-16 #info .info_detail, .page-id-16 #operation .info_detail {
    width: 100%;
  }
  footer .primary {
    width: 65%;
  }
  footer .primary dt {
    font-size: 1.2rem;
  }
  footer .primary dd {
    font-size: 1.2rem;
  }
  footer .secondary {
    width: 35%;
  }
  .overlay h2 {
    margin: 20px auto 30px;
  }
  .overlay h2 img {
    width: 70px;
  }
}

@media only screen and (min-width: 640px) {
  .logged-in header {
    padding-top: 32px;
    margin-top: -32px;
  }
  table tr th, table tr td {
    font-size: 1.4rem;
  }
  .post_line_horizontal article dl {
    display: grid;
    grid-template-columns: 140px 75%;
  }
  .post_line_horizontal article .new_mark {
    position: absolute;
    top: 20px;
  }
  footer .primary .address br:nth-child(2) {
    display: none;
  }
}

@media only screen and (min-width: 1024px) {
  .mw_wp_form .no_requir dt {
    padding-left: 42px;
  }
}
