@charset "UTF-8";
/* ------cssリセット------ */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  font-weight: normal;
  line-height: 1.3;
  letter-spacing: 0.1em;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.07em;
  width: 100%;
  max-height: 100%;
}

p {
  font-size: 1.4rem;
  color: var(--blue);
  line-height: 1.7;
  max-height: 100%;
}

h1 {
  font-size: 1.8rem;
}

h2 {
  font-size: 1.6rem;
}

.p-breadcrumb {
  display: none;
}

main {
  padding-bottom: 20px;
}

.pc-none {
  display: block;
}

.ip-none {
  display: block;
}

.sp-none {
  display: none;
}

/* **********************
ハンバーガー
********************** */
/* ==============================
  ハンバーガーボタン
============================== */
.hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 4px;
  background: #333;
  margin: 6px 0;
  transition: 0.3s;
}

/* ×に変形 */
.hamburger.is-active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
  background-color: #fff;
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
  background-color: #fff;
}

/* ==============================
  オーバーレイ
============================== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1000;
}

.overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* ==============================
  ドロワーメニュー
============================== */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100vh;
  background: #C37C89;
  transform: translateX(100%);
  transition: 0.3s;
  z-index: 1002;
  padding: 120px 0px;
}

.drawer.is-active {
  transform: translateX(0);
}

.drawer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.drawer__list li {
  margin-bottom: 40px;
  text-align: center;
}

.drawer__list a {
  text-decoration: none;
  font-size: 1.4rem;
  color: #fff;
}

header {
  padding-top: 20px;
}
header .title {
  margin-bottom: 0px;
  padding-bottom: 30px;
}
header .title h1 {
  font-size: 2.3rem;
}

footer {
  margin-top: 20px;
  margin-bottom: 20px;
}

.under_page_body {
  width: 100%;
  padding-right: 0px;
  padding-left: 0px;
  margin: 20px auto 20px;
}
.under_page_body .under_page_h2 {
  width: 95%;
}
.under_page_body .under_page_h2 h2 {
  color: #C37C89;
  border-bottom: 1px solid #B66277;
  margin: 15px auto;
  padding-bottom: 5px;
  font-weight: bold;
  font-weight: bold;
  font-size: 2rem;
  margin-left: 5%;
}
.under_page_body .white_back {
  background-color: #fff;
  width: 90%;
  padding: 20px 5%;
  height: auto;
  margin: 20px auto 20px;
}

.top_flex {
  display: block;
}
.top_flex .top_dialy {
  width: 90%;
  margin-bottom: 20px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 20px;
}
.top_flex .top_dialy ul li a .thumb {
  width: 40%;
  display: block;
  margin-right: 3%;
}
.top_flex .top_dialy ul li a .thumb img {
  width: 100% !important;
}
.top_flex .top_dialy ul li a .outline {
  width: 100%;
  margin-left: 0px;
}
.top_flex .top_dialy .top_list {
  padding: 7px;
}
.top_flex .top_scedule {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}
.top_flex .top_scedule h2 {
  text-align: left;
}

.top_introduction {
  width: 85.5%;
  padding: 20px 2.5%;
}
.top_introduction h2 {
  margin-left: 0px;
}
.top_introduction .pattern-switcher {
  padding-top: 5px;
  padding-left: 0px;
}
.top_introduction .pattern-switcher #pattern-select {
  border-radius: 2px;
  background-color: #fff;
}
.top_introduction .patterns-content {
  text-align: center;
}
.top_introduction .patterns-content .pattern-section.is-active {
  width: 100%;
  text-align: center;
}
.top_introduction .patterns-content .grid-container {
  display: block;
  text-align: center;
}
.top_introduction .patterns-content .grid-container .grid-item {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0px;
  padding-left: 0px;
}
.top_introduction .patterns-content .grid-container .grid-item .item-text {
  text-align: center;
}

.annual-schedule {
  margin: 40px 0px 0px;
  display: block;
}
.annual-schedule .schedule_flex {
  min-width: 0px;
  margin-left: 0px;
}
.annual-schedule__heading {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: left;
  margin-bottom: 40px;
}
.annual-schedule__month {
  margin-bottom: 50px;
}
.annual-schedule__month-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-right: 5%;
  margin-bottom: 20px;
  padding-left: 10px;
  border-left: 5px solid #C37C89;
  padding-bottom: 5px;
  border-bottom: 1px solid #aaa;
}
.annual-schedule__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.annual-schedule__item {
  display: flex;
  gap: 8px;
  padding: 5px 0px 5px 15px;
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 8px;
  align-items: flex-start;
}
.annual-schedule__date {
  font-size: 13px;
  min-width: 80px;
  width: -moz-max-content;
  width: max-content;
  color: #333;
  font-weight: bold;
}
.annual-schedule__content {
  flex: 1;
}
.annual-schedule__event {
  font-size: 13px;
}
.annual-schedule__tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 12px;
  color: #fff;
}

.top_footer_flex {
  width: 90%;
  display: block;
}
.top_footer_flex .top_footer {
  width: 90%;
  margin-top: 40px;
  margin-right: 4%;
  margin-left: 4%;
}
.top_footer_flex .top_footer a h3 {
  font-size: 1.7rem;
  padding: 10px 7%;
}
.top_footer_flex .top_footer a p {
  padding: 3px 0px;
  font-size: 1.4rem;
}

.item-img img {
  width: 290px;
  height: 190px;
}

.item-text {
  margin-top: 5px;
  margin-bottom: 20px;
}

.how .org_h3 {
  font-size: 1.8rem;
}
.how .org_p {
  margin-top: 20px;
}
.how .org_flex {
  display: block;
}
.how .org_flex .squair {
  width: 80%;
  margin-bottom: 40px;
  margin-right: auto;
  margin-left: auto;
}
.how .org_flex .squair img {
  width: 40%;
}
.how .org_flex .squair p {
  padding-left: 5%;
  padding-right: 5%;
}

.under_page_body .white_back.org_soshikizu {
  width: 100%;
  padding-left: 0px;
}
.under_page_body .white_back.org_soshikizu img {
  width: 85%;
  margin-right: auto;
  margin-left: auto;
}
.under_page_body .white_back.org_soshikizu .kaiinsu {
  margin-left: 7%;
  width: 45%;
}
.under_page_body .white_back.org_soshikizu .pdf_link {
  margin: 40px 5% 20px auto;
  margin-right: 8%;
}

.aisatu .org_under_flex {
  display: block;
}
.aisatu .org_under_flex .left_img {
  width: 100%;
  margin-right: 0px;
  text-align: center;
}
.aisatu .org_under_flex .left_img img {
  width: 60%;
}
.aisatu .org_under_flex .text {
  width: 100%;
  margin-top: 20px;
}
.aisatu .org_under_flex .text p.last span {
  font-size: 2rem;
}

.activity_1 .flex_container {
  display: block;
  text-align: center;
}
.activity_1 .flex_container img {
  width: 290px;
  height: 190px;
  -o-object-fit: cover;
     object-fit: cover;
}

.activity_2 .patterns-content {
  padding-right: 0px;
  padding-left: 0px;
}
.activity_2 p {
  margin-bottom: 30px;
}

.under_page_body .white_back.activity_3 {
  width: 95%;
  padding: 20px 2.5%;
}

.activity_3 .annual-schedule {
  margin: 0px 1.5% 0px;
}

.joinig_1 .facility-item {
  width: 80%;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 50px;
}
.joinig_1 .facility-list {
  display: block;
  gap: 70px 5%;
}

.archive {
  padding: 20px 5% 40px;
}

.single {
  padding: 60px 4% 0px;
}

.single__title {
  font-size: 1.9rem;
}

.single__content {
  padding: 32px 0px;
  font-size: 16px;
  line-height: 1.9;
  color: #333;
}
.single__content p {
  padding: 0px 32px;
}

.single__pager {
  border-top: 1px solid #eee;
  margin-top: 48px;
  padding: 32px 4%;
}

_::-webkit-full-page-media,
_:future,
:root .top_introduction .pattern-switcher #pattern-select {
  font-size: 1.5rem;
  border: 1px solid #333;
}/*# sourceMappingURL=sp.css.map */