@charset "UTF-8";
/*=======全ページ共通のレイアウト=======*/
html {
  color: #333;
  font-size: 62.5%;
  margin: 0;
  padding: 0;
  position: relative;
  word-break: break-word;
  font-family: var(--font-chugothic-m);
  font-weight: 400;
}

body {
  margin: 0;
  padding: 0;
  position: relative;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 2;
}

address {
  font-style: normal;
}

table, tr, td, th {
  border-collapse: collapse;
  margin: 0;
}

table {
  margin: 10px 0;
}

.wp-block-table thead {
  border-bottom: none;
}

thead th {
  background-color: var(--brown2);
}

td {
  padding: 3.5px 10px;
}

th {
  padding: 5px 10px;
  font-weight: normal;
}

img {
  align-self: flex-start;
  border: none;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  transition: 0.15s;
  text-decoration: none;
}
a:hover, a:active, a:hover img, a:active img {
  opacity: 0.8;
}
main p a,
main td a {
  color: var(--blue1);
}
main p a:hover,
main td a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4, h5 {
  font-weight: normal;
  font-family: var(--font-reimin-r);
  font-weight: var(--fw-font-reimin-r);
}

ol, ul {
  margin: 20px 0;
  padding-left: 28px;
}

li > ul, li > ol {
  margin-top: 0;
  margin-bottom: 0;
}

p {
  margin: 0 0 1.25em 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  transition: opacity 0.15s;
}
button:hover, button:active {
  opacity: 0.8;
}

* {
  box-sizing: border-box;
}
::selection{
background-color:#b3d4fc;
}

/* =======================================
コンテンツ共通
========================================*/

/* header
===============================*/
header ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.l-header {
  position: relative;
}
.l-header * {
  letter-spacing: 0;
  line-height: 1.75;
  font-family: var(--font-chugothic-m);
}
.l-header a:hover,
.l-header a:active {
  color: var(--brown1);
}
.l-header .headerBtn {
  position: fixed;
}
.l-header .headerBtn:hover {
  opacity: 0.8;
}
.l-header .headerBtn:before,
.l-header .headerBtn:after {
  content: "";
  display: block;
  position: absolute;
  background-color: #333;
  transition: 0.15s;
}
.l-header.active .headerBtn:before {
  top: 50%;
  transform: rotate(25deg);
}
.l-header.active .headerBtn:after {
  top: 50%;
  transform: rotate(-25deg);
}
.l-header .headerLogo {
  display: block;
}
.l-header__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-header__pullDown {
  position: fixed;
  z-index: 20000;
  background-color: rgba(255, 255, 255, 0.9);
  width: 100%;
  display: none;
  left: 0;
  right: 0;
}
.l-header__pullDown .searchBox form {
  display: flex;
}
.l-header__pullDown .searchBox .searchInput {
  display: inline-block;
  background-color: #f2f2f2;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  border-left: 1px solid #333;
  border-right: none;
  outline: none;
}
.l-header__pullDown .searchBox .searchSubmit {
  display: inline-block;
  background-color: #333;
  background-image: url(../img/icon-research.png);
  background-repeat: no-repeat;
  background-position: center;
}
.l-header__pullDown .headerPulldownList > ul > li > a {
  font-family: var(--font-midashi);
  font-weight: var(--fw-font-midashi);
}
.l-header__pullDown .headerPulldownList .link-sns {
  display: flex;
  flex-wrap: wrap;
}
.l-header__pullDown .headerPulldownList .link-sns a {
  width: 60px;
}
.l-header__pullDown .headerPulldownList .link-sns a:nth-child(n+2) {
  margin-left: 20px;
}
/* footer
===============================*/
footer {
  background-color: var(--brown2);
}
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer a:hover,
footer a:active {
  color: var(--brown1);
}
.l-footer__link .link-sns {
  display: flex;
  flex-wrap: wrap;
}
.l-footer__link .link-sns a {
  display: block;
  width: 60px;
}
.l-footer__link .link-sns a:nth-child(n+2) {
  margin-left: 20px;
}
footer .xo-months .xo-month-wrap .month-header {
  background-color: #fff;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  margin: 0;
}
footer .xo-months .xo-month-wrap thead th {
  background-color: #333;
  color: #fff!important;
  border-bottom: 1px solid var(--brown1);
}
footer .xo-event-calendar table.xo-month .month-dayname td div.today {
  color: var(--blue1);
}
footer .xo-event-calendar table.xo-month {
  margin-bottom: 2px;
}
footer .footerFoot {
  text-align: center;
  letter-spacing: 0;
}
footer .footerFoot .footerLogo {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
footer .footerFoot .footerLogo img {
  display: block;
}
footer .footerFoot .ft-address .mapLink {
  color: #fff;
  display: inline-block;
  background-color: #333;
  font-size: 1.2rem;
  width: 40px;
  text-align: center;
}
footer .footerFoot .ft-contact .fax a {
  pointer-events: none;
}
footer .footerFoot .copyright {
  font-size: 1.2rem;
}
.c-mapWrap {
  margin: 50px 0 40px;
}
.c-mapWrap,
.c-mapWrap iframe {
  width: 100%;
}
.l-fixedBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
}
.l-fixedBanner img {
  display: block;
}
.l-fixedBanner-button {
  width: 30px;
  height: 30px;
  background-color: #fff;
  position: relative;
  border-top-right-radius: 10px;
  display: block;
}
.l-fixedBanner-button:before,
.l-fixedBanner-button:after {
  position: absolute;
  content: "";
  display: block;
  width: 15px;
  height: 2px;
  background-color: #333;
  top: 50%;
}
.l-fixedBanner-button:before {
  left: 6px;
  transform: rotate(-45deg);
}
.l-fixedBanner-button:after {
  right: 9px;
  transform: rotate(45deg);
}

@media all and (min-width: 768px) {
  body {
    min-width: 1060px;
  }
  .goTop {
    position: fixed;
    bottom: 0;
    right: 0;
    cursor: pointer;
  }
  .goTop img {
    display: block;
  }
/* header
  ===============================*/
  .l-header .headerBtn {
    top: 0;
    right: 0;
    width: 90px;
    height: 90px;
    z-index: 20001;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
  }
  .l-header.active .headerBtn {
    background-color: transparent;
  }
  .l-header .headerBtn:before,
  .l-header .headerBtn:after {
    width: 40px;
    height: 2px;
    left: 25px;
  }
  .l-header .headerBtn:before {
    top: calc(50% - 6px);
  }
  .l-header .headerBtn:after {
    top: calc(50% + 6px);
  }
  .l-header .headerLogo {
    width: 156px;
  }
  .l-header__head {
    height: 90px;
    padding-left: 20px;
    padding-right: 130px;
    transition: opacity 0.2s;
    background-color: rgba(255, 255, 255, 0.9);
  }
  .l-header.active .l-header__head {
    opacity: 0;
  }
  .l-header__head .headerNavList a {
    margin-left: 30px;
  }
  .l-header__pullDown {
    top: 0;
    padding-top: 100px;
    height: 100vh;
    min-width: 1080px;
  }
  .l-header__pullDown .headerLogo {
    position: absolute;
    top: 16.5px;
    left: 20px;
  }
  .l-header__pullDown .searchBox {
    width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
  }
  .l-header__pullDown .searchBox .searchInput {
    width: 370px;
    height: 30px;
  }
  .l-header__pullDown .searchBox .searchSubmit {
    width: 30px;
    height: 30px;
    background-size: 20px auto;
  }
  .l-header__pullDown .headerPulldownList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  .l-header__pullDown .headerPulldownList > ul {
    width: 270px;
  }
  .l-header__pullDown .headerPulldownList > ul > li:nth-child(n+2) {
    margin-top: 15px;
  }
  .l-header__pullDown .headerPulldownList > ul > li > a {
    font-size: 1.8rem;
  }
  .l-header__pullDown .headerPulldownList .child {
    margin-left: 16px;
  }
  .l-header__pullDown .headerPulldownList .child > li {
    margin-top: 5px;
  }
  /* footer
  ===============================*/
  footer {
    padding: 50px 0 26px;
  }
  footer .inner {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
  }
  .l-footer__link {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
  }
  .l-footer__link > ul {
    padding: 0 30px;
    width: calc(100% / 3);
  }
  .l-footer__link .left {
    padding-left: 0;
    border-right: 1px solid var(--brown1);
  }
  .l-footer__link .right {
    padding-right: 0;
    border-left: 1px solid var(--brown1);
  }
  .l-footer__link > ul > li:nth-child(n+2) {
    margin-top: 10px;
  }
  .l-footer__link > ul > li > a {
    font-size: 1.8rem;
  }
  .l-footer__link > ul .child {
    margin-left: 16px;
  }
  footer .xo-months {
    display: flex;
    justify-content: space-between;
    position: relative;
  }
  footer .xo-months .xo-month-wrap {
    width: calc(50% - 10px);
  }
  footer .xo-event-calendar table.xo-month {
    margin-bottom: 2px;
  }
  footer .xo-event-calendar table.xo-month .month-next {
    position: absolute;
    top: 4px;
    right: 0;
    z-index: 10000;
  }
  footer .footerFoot {
    margin-top: 45px;
  }
  footer .footerFoot .footerLogo {
    width: 156px;
    margin-bottom: 35px;
  }
  footer .footerFoot .ft-name {
    font-size: 2.4rem;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }
  footer .footerFoot .ft-address .mapLink {
    margin-left: 12px;
  }
  footer .footerFoot .ft-contact {
    font-size: 2.4rem;
  }
  footer .footerFoot .ft-contact .tel a {
    pointer-events: none;
  }
  footer .footerFoot .ft-contact .fax {
    margin-left: 40px;
  }
  footer .footerFoot .copyright {
    margin-top: 10px;
  }

}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
  body.notScroll {
    overflow: hidden;
  }
  main {
    line-height: 1.714;
    letter-spacing: 0.05em;
  }
  /* header
  ===============================*/
  .l-header .headerBtn {
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    z-index: 20001;
  }
  .l-header .headerBtn:before,
  .l-header .headerBtn:after {
    width: 20px;
    height: 1px;
    right: 20px;
  }
  .l-header .headerBtn:before {
    top: calc(50% - 3px);
  }
  .l-header .headerBtn:after {
    top: calc(50% + 3px);
  }
  .l-header .headerLogo {
    width: 125px;
    margin-top: 10px;
  }
  .l-header__head {
    position: fixed;
    top: 0;
    left: 0;
    height: 60px;
    width: 100%;
    padding-left: 20px;
    padding-right: 60px;
    background-color: #fff;
    z-index: 20000;
  }
  .l-header__head .linkContact {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
  }
  .l-header__head .linkContact img {
    align-self: center;
    width: 23px;
  }
  .l-header__pullDown {
    top: 60px;
    left: 0!important;
    height: calc(100vh - 60px);
    height: calc(100dvh - 60px);
    padding: 10px 20px 50px;
    overflow-y: scroll;
  }
  .l-header__pullDown .headerLogo {
    display: none;
  }
  .l-header__pullDown .searchBox {
    width: 100%;
    margin-bottom: 20px;
  }
  .l-header__pullDown .searchBox .searchInput {
    width: calc(100% - 25px);
    height: 25px;
  }
  .l-header__pullDown .searchBox .searchSubmit {
    width: 25px;
    height: 25px;
    background-size: 18px auto;
  }
  .l-header__pullDown .headerPulldownList > ul:nth-child(n+2) {
    margin-top: 10px;
  }
  .l-header__pullDown .headerPulldownList > ul > li:nth-child(n+2) {
    margin-top: 10px;
  }
  .l-header__pullDown .headerPulldownList .hasChild {
    position: relative;
  }
  .l-header__pullDown .headerPulldownList .hasChild .childBtn {
    position: absolute;
    top: 0;
    right: 0;
    width: 25.5px;
    height: 25.5px;
    cursor: pointer;
  }
  .l-header__pullDown .headerPulldownList .hasChild .childBtn:before,
  .l-header__pullDown .headerPulldownList .hasChild .childBtn:after {
    content: "";
    display: block;
    width: 15px;
    height: 2px;
    background-color: #333;
    position: absolute;
    top: 50%;
    left: 5.25px;
    transition: 0.15s;
  }
  .l-header__pullDown .headerPulldownList .hasChild .childBtn:after {
    transform: translateY(-50%) rotate(-90deg);
  }
  .l-header__pullDown .headerPulldownList .hasChild .childBtn.active:after {
    transform: translateY(-50%) rotate(0);
  }
  .l-header__pullDown .headerPulldownList .child {
    display: none;
    margin-left: 16px;
  }
  .l-header__pullDown .headerPulldownList .child > li {
    margin-top: 5px;
  }
  .l-header__pullDown .headerPulldownList .albumst {
    max-width: 335px;
    margin:  40px auto 30px;
  }
  .l-header__pullDown .headerPulldownList .albumst img {
    display: block;
  }
  .l-header__pullDown .headerPulldownList .link-sns {
    justify-content: center;
  }
  .l-header__pullDown .headerPulldownList .link-sns img {
    display: block;
  }
  /* footer
  ===============================*/
  footer {
    background-color: var(--brown2);
    padding: 100px 0 26px;
  }
  footer .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .l-footer__link {
    max-width: 335px;
    margin: 0 auto 40px;
  }
  .l-footer__link > ul:nth-child(n+2) {
    margin-top: 10px;
  }
  .l-footer__link > ul > li:nth-child(n+2) {
    position: relative;
    margin-top: 10px;
  }
  .l-footer__link .hasChild {
    position: relative;
  }
  .l-footer__link .hasChild .childBtn {
    position: absolute;
    top: 0;
    right: 0;
    width: 28px;
    height: 28px;
    cursor: pointer;
  }
  .l-footer__link .hasChild .childBtn:before,
  .l-footer__link .hasChild .childBtn:after {
    content: "";
    display: block;
    width: 15px;
    height: 2px;
    background-color: #333;
    position: absolute;
    top: 50%;
    right: 6.5px;
    transition: 0.15s;
  }
  .l-footer__link .hasChild .childBtn:after {
    transform: translateY(-50%) rotate(-90deg);
  }
  .l-footer__link .hasChild .childBtn.active:after {
    transform: translateY(-50%) rotate(0);
  }
  .l-footer__link > ul .child {
    display: none;
    margin-left: 16px;
  }
  .l-footer__link .albumst {
    max-width: 335px;
    margin: 40px auto 30px;
  }
  .l-footer__link .albumst img {
    display: block;
  }
  .l-footer__link .link-sns {
    justify-content: center;
  }
  .l-footer__link .link-sns img {
    display: block;
  }
  footer .xo-event-calendar {
    position: relative;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column-reverse;
  }
  footer .xo-event-calendar .holiday-titles {
    margin-bottom: 10px;
    text-align: right;
  }
  footer .xo-event-calendar .holiday-title {
    font-size: 1.05rem;
  }
  footer .xo-event-calendar table.xo-month:first-child {
    margin-bottom: 20px;
  }
  footer .footerFoot {
    margin-top: 45px;
  }
  footer .footerFoot .footerLogo {
    width: 180px;
    margin-bottom: 25px;
  }
  footer .footerFoot .ft-name {
    font-size: 2rem;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
  }
  footer .footerFoot .ft-address .mapLink {
    margin-left: 12px;
  }
  footer .footerFoot .ft-contact {
    font-size: 2rem;
    margin-top: 10px;
    margin-bottom: 5px;
  }
  footer .footerFoot .ft-contact > span {
    display: block;
    line-height: 1.5;
  }
  footer .footerFoot .ft-contact .tel a {
    pointer-events: none;
  }
  footer .footerFoot .copyright {
    margin-top: 35px;
  }

}
