@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');



/* COMMON SETTING
-------------------------------------------------------------------- */

:root {
  /* 変更する場合common.css側も */
  /* 管理画面表示確認用 */
  --size-12-cms: 0.75rem; /* 12px */
  --size-14-cms: 0.875rem; /* 14px */
  --size-16-cms: 1rem; /* 16px */
  --size-18-cms: 1.125rem; /* 18px */
  --size-20-cms: 1.25rem; /* 20px */
  --size-24-cms: 1.5rem; /* 24px */
  --size-32-cms: 2rem; /* 32px */
  --size-40-cms: 2.5rem; /* 40px */
  --size-48-cms: 3rem; /* 48px */

  --size-base: 1rem; /* 16px想定 */
  --size-12: 0.75rem; /* 12px */
  --size-14: 0.875rem; /* 14px */
  --size-16: 1rem; /* 16px */
  --size-18: 1.125rem; /* 18px */
  --size-20: 1.25rem; /* 20px */
  --size-24: 1.5rem; /* 24px */
  --size-32: 2rem; /* 32px */
  --size-40: 2.5rem; /* 40px */
  --size-48: 3rem; /* 48px */

  --color-skyBlue: #87ceeb;
  --color-base: #FFF;
  --color-main: #52585f;
  --color-main-hover: #444;
  --color-background: #ecf7fc;
  --color-textBlack: #363a3f; /* color-base と4.5:1以上のコントラスト比を確保（WCAG2.2 AA） */
  --color-textWhite: #FFF; /* color-main および color-main-hover と4.5:1以上のコントラスト比を確保（WCAG2.2 AA） */
  --color-ui: #949494;       /* color-base と3:1以上のコントラスト比を確保（WCAG2.2 AA） */
  --color-accent: #2196C4; /* color-base, color-main, color-background と3:1以上のコントラスト比を確保（WCAG2.2 AAA） */
  --color-caution: #A62D35;/* color-base と4.5:1以上のコントラスト比を確保（WCAG2.2 AA） */
  --color-caution--bg: #F3DDDF;

  --contentsWidth: 980px;
  --targetMinHeight: 24px;  /* 24px以上推奨（WCAG2.2 AA） 44px以上推奨（WCAG2.2 AAA） */
}



/* LINK ICON
-------------------------------------------------------------------- */
.p-ico__icomoon {
  margin: 0 4px;
}

:is(
  .p-ico__pdf,
  .p-ico__xlsx,
  .p-ico__ppt,
  .p-ico__word,
  .p-ico__zip,
  .p-ico__file
) {
  margin-left: 0.25em;
  padding-left: 1em;
  background-repeat: no-repeat;
  background-position: left top 0.2em;
  background-size: 0.8em;
}

.p-ico__pdf {
  background-image: url(../img/icon/icoPdf.svg);
}

.p-ico__xlsx {
  background-image: url(../img/icon/icoXls.svg);
}

.p-ico__ppt {
  background-image: url(../img/icon/icoPpt.svg);
}

.p-ico__word {
  background-image: url(../img/icon/icoWord.svg);
}

.p-ico__zip {
  background-image: url(../img/icon/icoZip.svg);
}

.p-ico__file {
  background-image: url(../img/icon/icoFile.svg);
}

.p-ico__blank {
  padding-right: 1.2em;
  background: url(../img/icon/icoBlank.svg) no-repeat right 0.2em top 0.2em/0.75em;
}



/* ELEMENTS
-------------------------------------------------------------------- */
.p-body {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.p-contentsInner {
  width: 100%;
}

.clpg-page-content {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif; /* 管理画面用 */
  overflow-wrap: break-word;
  line-break: strict;
  -webkit-text-size-adjust: 100%; /* For iPhone , iPad */
}

.p-lower__nav .clpg-page-content {
  max-width: var(--contentsWidth);
}

a {
  text-underline-offset: 0.2em;
  text-decoration: none;
}

strong,
strong * {
  font-weight: 700 !important;
}

em,
em * {
  font-style: italic !important;
}



/* COMPONENTS AND UTILITY
-------------------------------------------------------------------- */
.c-inner {
  max-width: var(--contentsWidth);
  margin: 0 auto;
}

@media screen and (max-width: 1023px) {
  .c-inner {
    padding: 0 16px;
  }
}

.c-inner__bg {
  padding: 80px;
  background-color: var(--color-background);
}

@media screen and (max-width: 1023px) {
  .c-inner__bg {
    padding: 48px 0;
  }
}

.c-col {
  display: grid;
  gap: 48px;
}

@media screen and (max-width: 1023px) {
  .c-col {
    gap: 24px;
  }
}

.c-col__bg {
  background-color: var(--color-background);
}

.c-col__border {
  border: var(--color-skyBlue) solid 2px;
}

.c-col:has(> .c-col2__item) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media screen and (max-width: 767px) {
  .c-col:has(> .c-col2__item) {
    grid-template-columns: minmax(0, 1fr);
  }
}

.c-col:has(> .c-col3__item) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media screen and (max-width: 767px) {
  .c-col:has(> .c-col3__item) {
    grid-template-columns: minmax(0, 1fr);
  }
}

.c-col:has(> .c-col3__item-1:first-child) {
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
}

@media screen and (max-width: 767px) {
  .c-col:has(> .c-col3__item-1:first-child) {
    grid-template-columns: minmax(0, 1fr);
  }
}

.c-col:has(> .c-col3__item-2:first-child) {
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}

@media screen and (max-width: 767px) {
  .c-col:has(> .c-col3__item-2:first-child) {
    grid-template-columns: minmax(0, 1fr);
  }
}

.c-col:has(> .c-col4__item) {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media screen and (max-width: 767px) {
  .c-col:has(> .c-col4__item) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.u-pd0 {
  padding: 0 !important;
}

.u-pd8 {
  padding: 8px !important;
}

.u-pd16 {
  padding: 16px !important;
}

.u-pd24 {
  padding: 24px !important;
}

@media screen and (max-width: 1023px) {
  .u-pd24 {
    padding: 16px !important;
  }
}

.u-pd32 {
  padding: 32px !important;
}

@media screen and (max-width: 1023px) {
  .u-pd32 {
    padding: 24px 16px !important;
  }
}

.u-pd48 {
  padding: 48px !important;
}

@media screen and (max-width: 1023px) {
  .u-pd48 {
    padding: 24px 16px !important;
  }
}

.u-pd64 {
  padding: 64px !important;
}

@media screen and (max-width: 1023px) {
  .u-pd64 {
    padding: 32px 16px !important;
  }
}

.u-pd80 {
  padding: 80px !important;
}

@media screen and (max-width: 1023px) {
  .u-pd80 {
    padding: 48px 16px !important;
  }
}

.u-pd-l-0 {
  padding-left: 0 !important;
}

.u-pd-l-8 {
  padding-left: 8px !important;
}

.u-pd-l-16 {
  padding-left: 16px !important;
}

.u-pd-l-24 {
  padding-left: 24px !important;
}

@media screen and (max-width: 1023px) {
  .u-pd-l-24 {
    padding-left: 16px !important;
  }
}

.u-pd-l-32 {
  padding-left: 32px !important;
}

@media screen and (max-width: 1023px) {
  .u-pd-l-32 {
    padding-left: 16px !important;
  }
}

.u-pd-l-48 {
  padding-left: 48px !important;
}

@media screen and (max-width: 1023px) {
  .u-pd-l-48 {
    padding-left: 16px !important;
  }
}

.u-pd-l-80 {
  padding-left: 80px !important;
}

@media screen and (max-width: 1023px) {
  .u-pd-l-80 {
    padding-left: 16px !important;
  }
}

.u-pd-r-0 {
  padding-right: 0 !important;
}

.u-pd-r-8 {
  padding-right: 8px !important;
}

.u-pd-r-16 {
  padding-right: 16px !important;
}

.u-pd-r-24 {
  padding-right: 24px !important;
}

@media screen and (max-width: 1023px) {
  .u-pd-r-24 {
    padding-right: 16px !important;
  }
}

.u-pd-r-32 {
  padding-right: 32px !important;
}

@media screen and (max-width: 1023px) {
  .u-pd-r-32 {
    padding-right: 16px !important;
  }
}

.u-pd-r-48 {
  padding-right: 48px !important;
}

@media screen and (max-width: 1023px) {
  .u-pd-r-48 {
    padding-right: 16px !important;
  }
}

.u-pd-r-80 {
  padding-right: 80px !important;
}

@media screen and (max-width: 1023px) {
  .u-pd-r-80 {
    padding-right: 16px !important;
  }
}

.u-maT0 {
  margin-top: 0 !important;
}

.u-maT8 {
  margin-top: 8px !important;
}

.u-maT16 {
  margin-top: 16px !important;
}

.u-maT24 {
  margin-top: 24px !important;
}

@media screen and (max-width: 1023px) {
  .u-maT24 {
    margin-top: 16px !important;
  }
}

.u-maT32 {
  margin-top: 32px !important;
}

@media screen and (max-width: 1023px) {
  .u-maT32 {
    margin-top: 24px !important;
  }
}

.u-maT48 {
  margin-top: 48px !important;
}

@media screen and (max-width: 1023px) {
  .u-maT48 {
    margin-top: 32px !important;
  }
}

.u-maT80 {
  margin-top: 80px !important;
}

@media screen and (max-width: 1023px) {
  .u-maT80 {
    margin-top: 48px !important;
  }
}



/* KEY VISUAL
-------------------------------------------------------------------- */

.p-kv {
  position: relative;
}

.p-kv img {
  width: 100%;
}

.p-kv__lower {
  background: url(../img/keyvisual-lower.jpg) no-repeat center center/cover;
}

.p-kv__lower img {
  width: 100%;
}

.p-kv__btnArea {
  position: absolute;
  bottom: 3vw;
  left: 4%;
}

.p-kv__btnArea .c-btn:has(.c-btnIcon) {
  background-color: transparent;
  padding-left: 20px;
  padding-right: 56px;
  width: auto;
}

@media screen and (max-width: 1023px) {
  .p-kv__btnArea .c-btn:has(.c-btnIcon) {
    font-size: var(--size-16);
    padding: 6px 32px 6px 8px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .p-kv__btnArea .c-btn:hover {
    background-color: var(--color-skyBlue);
  }
}

.p-kvCtrl {
  padding: 8px 24px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  background-color: var(--color-main);
}

.p-kvCtrl__arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.p-kvCtrl .slick-arrow {
  text-indent: -9999px;
  overflow: hidden;
  width: var(--size-24);
  height: var(--size-24);
  min-width: var(--targetMinHeight);
  min-height: var(--targetMinHeight);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media (hover: hover) and (pointer: fine) {
  .p-kvCtrl .slick-arrow:hover {
    opacity: 0.7;
  }
}

.p-kvCtrl .slick-prev {
  background-image: url(../img/icon/icoPrev.svg);
}

.p-kvCtrl .slick-next {
  background-image: url(../img/icon/icoNext.svg);
}

.p-kvCtrl__btn {
  margin-right: 16px;
  padding-right: 24px;
  position: relative;
}

.p-kvCtrl__btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 100%;
  background-color: var(--color-base);
}

.p-kvCtrl__btn a {
  display: block;
  font-size: 0;
  width: var(--size-24);
  height: var(--size-24);
  min-width: var(--targetMinHeight);
  min-height: var(--targetMinHeight);
  background: url(../img/icon/icoPause.svg) no-repeat center/cover;
}

.p-kvCtrl__btn a.is-kv-stop {
  background-image: url(../img/icon/icoPlay.svg);
}

@media (hover: hover) and (pointer: fine) {
  .p-kvCtrl__btn a:hover {
    opacity: 0.7;
  }
}

.p-kvCtrl__dots .slick-dots {
  position: inherit;
  width: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.p-kvCtrl__dots .slick-dots li {
  width: var(--size-24);
  height: var(--size-24);
  min-width: var(--targetMinHeight);
  min-height: var(--targetMinHeight);
  margin: 0;
}

.p-kvCtrl__dots .slick-dots li button {
  background: none!important;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .3s;
}

@media (hover: hover) and (pointer: fine) {
  .p-kvCtrl__dots .slick-dots li button:hover {
    opacity: 0.7;
  }
}

.p-kvCtrl__dots .slick-dots li button:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 0;
}

.p-kvCtrl__dots .slick-dots li button::before {
  content: "";
  border: 1px solid var(--color-base);
  width: var(--size-14);
  height: var(--size-14);
  border-radius: 9999px;
}

.p-kvCtrl__dots .slick-dots li.slick-active button::before {
  background-color: var(--color-base);
}

.slick-track a {
  position: relative;
}

.slick-track a:focus-visible::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 4px solid  var(--color-accent);
  pointer-events: none;
}



/* MAINAREA
-------------------------------------------------------------------- */
.p-main {
  width: 100%;
}

.p-mainTitle {
  max-width: 980px;
  margin: 0 auto;
  padding: 80px 100px 80px 0;
}

@media screen and (max-width: 1023px) {
  .p-mainTitle {
    font-size: var(--size-24);
    padding: 32px var(--size-16);
  }
}

.p-mainTitle span {
  font-size: var(--size-48);
  font-weight: 600;
  line-height: 1.2;
  background-color: rgba(255, 255, 255, .75);
  padding: 0 8px;
}

@media screen and (max-width: 1023px) {
  .p-mainTitle span {
    font-size: var(--size-24);
  }
}

.p-pageInner {
  width: 100%;
  max-width: var(--contentsWidth);
  margin: 0 auto;
  flex-grow: 2;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 64px;
}

.p-top .p-pageInner {
  padding-bottom: 64px;
  max-width: 100%;
}

@media screen and (max-width: 1023px) {
  .p-top .p-pageInner {
    padding-bottom: 48px;
  }
}

.p-lower__nav .p-pageInner {
  padding: 16px 24px 16px;
}

@media screen and (max-width: 1023px) {
  .p-lower__nav .p-pageInner {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
  }
}

.p-contents {
  flex: 2;
  padding: 80px 0;
}

@media screen and (max-width: 1023px) {
  .p-contents {
    width: 100%;
    padding: 48px 16px;
  }
}

.p-bannerArea {
  width: 100%;
  padding: 0 80px;
}

@media screen and (max-width: 1023px) {
  .p-bannerArea {
    padding: 0 16px;
  }
}

.p-bannerArea__title {
  color: var(--color-main);
  font-size: var(--size-24);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 0.5em;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .p-bannerArea__title {
    font-size: var(--size-18);
  }
}

.p-bannerArea__title::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-skyBlue);
}

.p-banner__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

@media screen and (max-width: 1023px) {
  .p-banner__list {
    gap: 24px;
  }
}

.p-banner__transition {
  display: block;
  transition: opacity .3s;
  overflow: hidden;
  border: var(--color-main) solid 2px;
  border-radius: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .p-banner__transition:hover {
    opacity: 0.8;
  }
}



/* CLPG DEFAULT STYLE
-------------------------------------------------------------------- */
@scope (.clpg-page-content) {
  .p-attachment {
    border-radius: 16px;
    background-color: var(--color-background);
    padding: 24px;
  }

  @media screen and (max-width: 1023px) {
    .p-attachment {
      padding: 16px;
    }
  }
  .p-attachment:not(:last-child) {
    margin-bottom: 16px;
  }

  .p-attachment__text {
    margin: 0;
  }

  .p-attachment__download {
    color: var(--color-main);
    display: block;
    line-height: 1.7;
    padding-left: var(--size-32);
    text-decoration: none;
    text-underline-offset: 0.2em;
  }

  .p-attachment__download[data-icon] {
    background: url(../img/icon/icoFile.svg) no-repeat left top/var(--size-20) var(--size-24);
  }

  .p-attachment__download[data-icon=pdf] {
    background-image: url(../img/icon/icoPdf.svg);
  }

  .p-attachment__download[data-icon=xlsx] {
    background-image: url(../img/icon/icoXls.svg);
  }

  .p-attachment__download[data-icon=ppt] {
    background-image: url(../img/icon/icoPpt.svg);
  }

  .p-attachment__download[data-icon=doc] {
    background-image: url(../img/icon/icoWord.svg);
  }

  .p-attachment__download[data-icon=zip] {
    background-image: url(../img/icon/icoZip.svg);
  }

  @media (hover: hover) and (pointer: fine) {
    .p-attachment__download:hover {
      text-decoration: underline;
    }
  }

  .p-attachment__size {
    top: calc(var(--size-16) * -0.5);
    left: calc(var(--size-16) * -1);
    padding: 8px 16px;
    background-color: var(--color-main);
    color: var(--color-base);
    border-radius: 4px;
    transform: translateY(-100%);
  }

  .p-attachment__size::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 15px;
    aspect-ratio: 1/cos(30deg);
    clip-path: polygon(50% 100%,100% 0,0 0);
    background: var(--color-main);
  }

  .p-attachment__summary {
    margin-top: 16px;
    color: var(--color-main);
    font-size: var(--size-14);
    line-height: 1.75;
  }

  .clpg-search-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 48px 16px;
  }

  .clpg-search-container .p-articleLoop {
    align-items: flex-start!important;
    flex-direction: column;
  }

  .clpg-search-container .p-articleLoop__category {
    padding-right: 8px;
    padding-left: 8px;
  }

  .clpg-entry-container {
    margin-top: 48px;
    display: grid;
    gap: 48px;
  }

  .clpg-entry-container + h2 {
    margin-top: 48px;
  }

  .clpg-entry-container-thumb {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  @media screen and (max-width: 1023px) {
    .clpg-entry-container-thumb {
      gap: 24px;
    }
  }

  @media screen and (max-width: 768px) {
    .clpg-entry-container-thumb {
      grid-template-columns: minmax(0, 1fr);
      max-width: 320px;
      margin-right: auto;
      margin-left: auto;
    }
  }

  .clpg-entry-container-thumb .p-articleLoop {
    padding: 0;
  }

  .clpg-entry-container-thumb .p-articleLoop:not(:last-child) {
    border: none;
  }

  .clpg-entry-container:not(.clpg-entry-container-thumb) .p-articleLoop,
  .clpg-search-container .p-articleLoop,
  .clpg-entry-container-thumb .p-articleLoop__transition {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
  }

  .clpg-entry-container-thumb .p-articleLoop__title {
    width: 100%;
  }

  .clpg-entry-container .c-btnArea {
    width: 100%;
  }

  .clpg-entry-container .c-btnArea .c-btn {
    width: auto;
  }

  .clpg-entry-container-thumb .c-btnArea {
    grid-column: 1/4;
  }

  @media screen and (max-width: 768px) {
    .clpg-entry-container-thumb .c-btnArea {
      grid-column: 1/2;
    }
  }

  .p-articleLoop {
    position: relative;
    width: 100%;
    padding-bottom: 48px;
  }

  .p-articleLoop:not(:last-child) {
    border-bottom: 1px solid var(--color-ui);
  }

  .p-articleLoop__new {
    position: absolute;
    top: -1.5em;
    left: 0;
    color: var(--color-caution);
    font-size: var(--size-16);
    font-weight: 700;
  }

  .p-articleLoop__title {
    font-size: var(--size-20);
    text-underline-offset: 0.2em;
    width: 100%;
  }

  .p-articleLoop__transition {
    font-weight: 500;
  }

  .p-articleLoop__title .p-articleLoop__transition {
    text-decoration: underline;
  }

  @media (hover: hover) and (pointer: fine) {
    .p-articleLoop__transition:hover .p-articleLoop__title,
    .p-articleLoop__title:not(:has(.p-articleLoop__transition)):hover {
      text-decoration: underline;
    }

    .p-articleLoop__title:has(.p-articleLoop__transition):hover .p-articleLoop__transition {
      text-decoration: none;
    }
  }

  .p-articleLoop__title .p-ico__blank {
    background-position-y: bottom calc(var(--size-16) / 4);
    margin-right: 0;
  }

  .p-articleLoop__title.p-ico__blank {
    background-position-y: bottom 8px;
    padding-right: 1em;
  }

  .p-articleLoop__date {
    font-size: var(--size-16);
    font-weight: 500;
    color: var(--color-main);
  }

  .p-articleLoop__summary {
    color: var(--color-main);
    font-size: var(--size-16);
    line-height: 1.75;
    overflow: hidden;
  }

  .p-articleLoop__img {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
  }

  .p-articleLoop__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
  }

  @media (hover: hover) and (pointer: fine) {
    .p-articleLoop__transition:hover .p-articleLoop__img img {
      transform: scale(1.2);
    }
  }

  .p-articleLoop__category {
    color: var(--color-textBlack);
    border: var(--color-skyBlue) solid 2px;
    border-radius: 4px;
    padding: 2px 16px 3px;
    font-size: var(--size-14);
    font-weight: 600;
  }

  .p-articleLoop__transition {
    color: var(--color-main);
    transition: color 0.3s;
  }

  .p-articleLoop__transition--blank {
    margin-left: calc(var(--size-16) / 2);
  }
}

@scope (.clpg-page-content) to (.clpg-search-container, .clpg-entry-container, .p-pager, .p-bannerArea, .p-snsArea__list) {
  h1 {
    color: var(--color-accent);
    font-size: var(--size-48);
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
  }

  @media screen and (max-width: 1023px) {
    h1 {
      font-size: var(--size-24);
    }
  }

  h1 + :where(h2, h3, h4, h5, h6) {
    margin-top: 80px;
  }

  @media screen and (max-width: 1023px) {
    h1 + :where(h2, h3, h4, h5, h6) {
      margin-top: 48px;
    }
  }

  h1 + :where(p, table, ul, ol, .p-attachment) {
    margin-top: 48px;
  }

  @media screen and (max-width: 1023px) {
    h1 + :where(p, table, ul, ol, .p-attachment) {
      margin-top: 24px;
    }
  }

  h2 {
    background: url(../img/icon_church.svg) no-repeat left 0.25em center/1.25em;
    color: var(--color-main);
    font-size: var(--size-32);
    font-weight: 600;
    line-height: 1.2;
    padding: 0.5em 0.5em 0.5em 2em;
  }

  @media screen and (max-width: 1023px) {
    h2 {
      font-size: var(--size-24);
    }
  }

  h2 .c-sub {
    display: block;
    font-size: var(--size-20);
    font-weight: 600;
  }

  @media screen and (max-width: 1023px) {
    h2 .c-sub {
      font-size: var(--size-18);
    }
  }

  h2 + :where(h3, h4, h5, h6, p, table, ul, ol, .p-attachment) {
    margin-top: 24px;
  }

  h3:not(:has(.p-articleLoop__transition)) {
    background: var(--color-background);
    border-left: var(--color-skyBlue) solid 4px;
    font-size: var(--size-24);
    font-weight: 600;
    line-height: 1.2;
    padding: 16px 24px;
  }

  @media screen and (max-width: 1023px) {
    h3:not(:has(.p-articleLoop__transition)) {
      font-size: var(--size-20);
    }
  }

  .c-inner__bg h3 {
    background-color: var(--color-base);
  }

  h3 + :where(h4, h5, h6, p, table, ul, ol, .p-attachment) {
    margin-top: var(--size-24);
  }

  h4 {
    color: var(--color-main);
    font-weight: 500;
    font-size: var(--size-20);
    line-height: 1.2;
    padding-bottom: 0.5em;
    position: relative;
  }

  @media screen and (max-width: 1023px) {
    h4 {
      font-size: var(--size-18);
    }
  }
  
  h4::after {
    content: "";
    width: 80px;
    height: 2px;
    display: block;
    background: var(--color-skyBlue);
    position: absolute;
    bottom: 0;
    left: 0;
  }

  h4 + :where(h5, h6, p, table, ul, ol, .p-attachment) {
    margin-top: var(--size-16);
  }

  h5 {
    border-left: 4px solid var(--color-skyBlue);
    font-size: var(--size-20);
    font-weight: normal;
    line-height: 1.2;
    padding: 8px 0 8px 0.5em;
  }

  @media screen and (max-width: 1023px) {
    h5 {
      font-size: var(--size-18);
    }
  }

  h5 + :where(h6, p, table, ul, ol, .p-attachment) {
    margin-top: var(--size-16);
  }

  h6 {
    color: var(--color-main);
    font-size: var(--size-18);
    font-weight: 600;
    line-height: 1.2;
  }

  @media screen and (max-width: 1023px) {
    h6 {
      font-size: var(--size-16);
    }
  }

  h6 + :where(p, table, ul, ol, .p-attachment) {
    margin-top: calc(var(--size-16) / 2);
  }

  p {
    font-size: var(--size-18);
    line-height: 1.8;
  }

  @media screen and (max-width: 1023px) {
    p {
      font-size: var(--size-16);
    }
  }

  p + :where(h1, h2) {
    margin-top: 80px;
  }

  @media screen and (max-width: 1023px) {
    p + :where(h1, h2) {
      margin-top: 48px;
    }
  }

  p + h3 {
    margin-top: var(--size-32);
  }

  p + :where(h4, h5, h6, table, ul, ol, .p-attachment) {
    margin-top: var(--size-24);
  }

  p + p {
    margin-top: var(--size-24);
  }

  a {
    color: var(--color-textBlack);
    text-decoration: underline;
  }

  @media (hover: hover) and (pointer: fine) {
    a:hover {
      text-decoration: none;
    }
  }

  table {
    width: 100%;
  }

  table + :where(h1, h2) {
    margin-top: 80px;
  }

  @media screen and (max-width: 1023px) {
    table + :where(h1, h2) {
      margin-top: 48px;
    }
  }

  table + h3 {
    margin-top: var(--size-32);
  }

  table + :where(h4, h5, h6, p, table, ul, ol, .p-attachment) {
    margin-top: var(--size-24);
  }

  th,
  td {
    border: 1px solid var(--color-ui);
    font-size: var(--size-18);
    padding: 24px;
    text-align: left;
  }

  @media screen and (max-width: 1023px) {
    th,
    td {
      font-size: var(--size-16);
      padding: 16px;
    }
  }

  th {
    background: var(--color-main);
    color: var(--color-base);
    font-weight: 400;
  }

  :is(ul, ol) li {
    font-size: var(--size-18);
  }

  @media screen and (max-width: 1023px) {
    :is(ul, ol) li {
      font-size: var(--size-16);
    }
  }

  :is(ul, ol) li:not(:last-child) {
    margin-bottom: 1em;
  }

  :is(ul, ol) + :where(h1, h2) {
    margin-top: 80px;
  }

  @media screen and (max-width: 1023px) {
    :is(ul, ol) + :where(h1, h2) {
      margin-top: 48px;
    }
  }

  :is(ul, ol) + h3 {
    margin-top: var(--size-32);
  }

  :is(ul, ol) + :where(h4, h5, h6, p, table, ul, ol, .p-attachment) {
    margin-top: var(--size-24);
  }

  ul {
    list-style: none;
  }

  ul li {
    position: relative;
    padding-left: 1em;
  }

  ul li::before {
    content: "";
    display: block;
    position: absolute;
    top: 0.6em;
    left: 0;
    width: calc(var(--size-16) / 2);
    height: calc(var(--size-16) / 2);
    border-radius: 9999px;
    background: var(--color-accent);
  }

  @media screen and (max-width: 1023px) {
    ul.p-sitemap__list li::before {
      top: calc(var(--size-16) + 0.4em);
    }
  }

  ul ul li::before {
    height: 3px;
    top: 0.7em;
  }

  ul ul ul li::before {
    width: calc(var(--size-16) / 4);
    height: calc(var(--size-16) / 4);
  }

  ol li {
    list-style: decimal;
    margin: 0 0 0.85em 1em;
  }

  iframe {
    max-width: 100%!important;
  }

  @media screen and (max-width: 1023px) {
    iframe {
      max-height: 240px;
    }
  }
}

/* 管理画面用 */
@scope (.mceContentBody.clpg-page-content) {
  h1, h2 {
    font-size: var(--size-48-cms);
  }

  @media screen and (max-width: 1023px) {
    h1 {
      font-size: var(--size-24-cms);
    }
  }

  h3:not(:has(.p-articleLoop__transition)) {
    font-size: var(--size-24-cms);
  }

  @media screen and (max-width: 1023px) {
    h3:not(:has(.p-articleLoop__transition)) {
      font-size: var(--size-20-cms);
    }
  }

  h3 + :where(h4, h5, h6, p, table, ul, ol, .p-attachment) {
    margin-top: var(--size-24-cms);
  }

  h4, h5 {
    font-size: var(--size-20-cms);
  }

  @media screen and (max-width: 1023px) {
    h4, h5 {
      font-size: var(--size-18-cms);
    }
  }

  h4 + :where(h5, h6, p, table, ul, ol, .p-attachment),
  h5 + :where(h6, p, table, ul, ol, .p-attachment) {
    margin-top: var(--size-16-cms);
  }

  h6, p {
    font-size: var(--size-18-cms);
  }

  @media screen and (max-width: 1023px) {
    h6, p {
      font-size: var(--size-16-cms);
    }
  }

  h6 + :where(p, table, ul, ol, .p-attachment) {
    margin-top: calc(var(--size-16-cms) / 2);
  }

  p + h3 {
    margin-top: var(--size-32-cms);
  }

  p + :where(h4, h5, h6, p, table, ul, ol, .p-attachment) {
    margin-top: var(--size-24-cms);
  }

  table + h3 {
    margin-top: var(--size-32-cms);
  }

  table + :where(h4, h5, h6, p, table, ul, ol, .p-attachment) {
    margin-top: var(--size-24-cms);
  }

  th,
  td {
    font-size: var(--size-18-cms);
  }

  @media screen and (max-width: 1023px) {
    th,
    td {
      font-size: var(--size-16-cms);
    }
  }

  :is(ul, ol) li {
    font-size: var(--size-18-cms);
  }

  @media screen and (max-width: 1023px) {
    :is(ul, ol) li {
      font-size: var(--size-16-cms);
    }
  }

  :is(ul, ol) + h3 {
    margin-top: var(--size-32-cms);
  }

  :is(ul, ol) + :where(h4, h5, h6, p, table, ul, ol, .p-attachment) {
    margin-top: var(--size-24-cms);
  }

  ul li::before {
    width: calc(var(--size-16-cms) / 2);
    height: calc(var(--size-16-cms) / 2);
  }

  @media screen and (max-width: 1023px) {
    ul.p-sitemap__list li::before {
      top: calc(var(--size-16-cms) + 0.4em);
    }
  }
}

/* 管理画面用（画面幅で小さくする場合はmax-width: 1023pxで指定したサイズと同じものを記載） */
@scope(td.clpg-page-content) {
  h1, h2, h3 {
    font-size: var(--size-24-cms);
  }

  h4, h5 {
    font-size: var(--size-20-cms);
  }

  h6 {
    font-size: var(--size-18-cms);
  }

  p, th, td, :where(ul, ol) li {
    font-size: var(--size-16-cms);
  }
}



/* PAGER
-------------------------------------------------------------------- */
.p-pager {
  font-size: var(--size-18);
  margin-top: 80px;
}

@media screen and (max-width: 1023px) {
  .p-pager {
    margin-top: 48px;
  }
}

.p-pager__list {
  flex-wrap: wrap;
  gap: 24px;
}

.p-pager__item {
  line-height: 1;
}

.p-pager__transition {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: var(--size-48);
  height: var(--size-48);
  border-radius: 9999px;
  font-size: var(--size-24);
  color: var(--color-main);
  transition: background-color 0.3s, color 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .p-pager__transition:hover {
    background-color: var(--color-main);
    color: var(--color-base);
  }
}

@media screen and (max-width: 1023px) {
  .p-pager__transition {
    font-size: var(--size-20);
  }
}

.is-pagerCurrent .p-pager__transition {
  background-color: var(--color-main);
  color: var(--color-base);
}



/* BUTTON
-------------------------------------------------------------------- */
.c-btnArea {
  margin-top: 80px;
  gap: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 1023px) {
  .c-btnArea {
    margin-top: 48px;
  }
}

.c-btn,
.c-btn--back {
  width: calc(100% / 3);
  padding: 16px;
  border-radius: 4px !important;
  color: var(--color-textBlack) !important;
  text-decoration: none !important;
  text-align: center;
  font-size: var(--size-24);
  font-weight: 500;
  cursor: pointer;
  position: relative;
}

.c-btn:has(.c-btnIcon),
.c-btn--back:has(.c-btnIcon) {
  padding-right: var(--size-40);
}

.c-btn {
  background-color: var(--color-base);
  border: 2px solid var(--color-accent);
  transition: background-color .3s, border-color .3s;
}

.c-btn--back {
  background: #DDD;
  border: 2px solid var(--color-ui);
  transition: background-color .3s;
}

.c-col .c-btn,
.c-col .c-btn--back {
  width: auto;
}

@media (hover: hover) and (pointer: fine) {
  .c-btn:hover {
    background-color: var(--color-skyBlue);
  }

  .c-btn--back:hover {
    background-color: transparent;
  }
}

@media screen and (max-width: 479px) {
  .c-btn,
  .c-btn--back {
    font-size: var(--size-18);
    width: 100%;
  }
}

.c-btnIcon {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform .3s;
}

@media (hover: hover) and (pointer: fine) {
  .c-btn:hover .c-btnIcon {
    transform: translate(4px, -50%);
  }
}



/* FORM
-------------------------------------------------------------------- */
.p-stepper {
  display: flex;
  margin-bottom: var(--size-24);
}

.p-stepper__item {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

.p-stepper__item::before {
  content: "";
  display: block;
  width: var(--size-32);
  height: var(--size-32);
  border-radius: 9999px;
  background-color: var(--color-ui);
  margin: 0 auto var(--size-16);
}

@media screen and (max-width: 1023px) {
  .p-stepper__item::before {
    width: var(--size-24);
    height: var(--size-24);
  }
}

.p-stepper__item.is-stepperCurrent::before,
.p-stepper__item.is-stepperCurrent::after {
  background-color: var(--color-main) !important;
}

.p-stepper__item:not(:last-child)::after {
  content: "";
  position: relative;
  top: calc(var(--size-32) / 2);
  width: 100%;
  left: 50%;
  height: 2px;
  background-color: var(--color-ui);
  order: -1;
  z-index: -1;
}

@media screen and (max-width: 1023px) {
  .p-stepper__item:not(:last-child)::after {
    top: calc(var(--size-24)/ 2);
  }
}

.p-stepper__title {
  color: var(--color-main);
  font-size: var(--size-14);
  margin-bottom: calc(var(--size-16) / 4);
}

@media screen and (max-width: 1023px) {
  .p-stepper__title {
    font-size: var(--size-12);
  }
}

.p-stepper__desc {
  font-size: var(--size-18);
  font-weight: 600;
}

@media screen and (max-width: 1023px) {
  .p-stepper__desc {
    font-size: var(--size-14);
  }
}

@scope (.clpg-form-container) {
  input[type=text],
  textarea,
  select {
    font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    padding: 8px 16px;
    border: 1px solid var(--color-ui);
    border-radius: 4px;
    background-color: var(--color-background);
    font-size: var(--size-18);
  }

  @media screen and (max-width: 1023px) {
    input[type=text],
    textarea,
    select {
      font-size: var(--size-16);
    }
  }

  .c-note {
    font-size: var(--size-14);
    margin: 0.5em 0;
  }

  .c-caution {
    margin: 0 0.5em;
    color: var(--color-caution);
    font-size: var(--size-18);
    vertical-align: middle;
  }

  .c-err input[type=text],
  .c-err select,
  .c-err textarea {
    border: var(--color-caution) solid 2px;
    background-color: var(--color-caution--bg);
  }

  .c-err--msg {
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--color-caution);
  }

  @media screen and (max-width: 1023px) {
    tr:not(:last-child) {
      border-bottom: 1px solid var(--color-ui);
    }
  }

  th {
    width: 30%;
    border: none;
    border-bottom: 1px solid var(--color-ui);
    vertical-align: top;
    color: var(--color-main);
    font-weight: 600;
    background: none;
  }

  @media screen and (max-width: 1023px) {
    th {
      width: 100%;
      border: none;
      padding-bottom: 0;
    }
  }

  td {
    border-top: none;
    border-right: none;
    border-bottom: 1px solid var(--color-ui);
    border-left: none;
  }

  @media screen and (max-width: 1023px) {
    td {
      border: none;
    }
  }
}

.p-agreement {
  margin-top: 48px;
  padding: 24px;
  background-color: var(--color-background);
}

.p-agreement__check {
  margin-top: 1em;
  font-size: var(--size-18);
  text-align: center;
}

.p-agreement.c-err {
  background-color: var(--color-caution--bg);
}



/* SITEMAP
-------------------------------------------------------------------- */
.p-sitemap__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 48px;
}

@media screen and (max-width: 1023px) {
  .p-sitemap__list {
    gap: 0;
  }
}

.p-sitemap__list + .p-sitemap__list {
  margin-top: 48px;
}

@media screen and (max-width: 1023px) {
  .p-sitemap__list + .p-sitemap__list {
    margin-top: 0;
  }
}

@media screen and (max-width: 1023px) {
  .p-sitemap__item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
}

.p-sitemap__transition,
.p-sitemapChild__transition,
.p-sitemapGrandchild__transition {
  color: var(--color-main);
  display: block;
  min-height: var(--targetMinHeight);
  text-decoration: none;
  text-underline-offset: 0.2em;
}

@media (hover: hover) and (pointer: fine) {
  .p-sitemap__transition:hover,
  .p-sitemapChild__transition:hover,
  .p-sitemapGrandchild__transition:hover {
    text-decoration: underline;
  }
}

.p-sitemap__transition {
  font-weight: 500;
}

@media screen and (max-width: 1023px) {
  .p-sitemap__transition {
    padding: var(--size-16) 0;
    flex: 1 1 auto;
  }
}

@media screen and (max-width: 1023px) {
  .p-sitemapChild {
    display: none;
    width: 100%;
  }
}

.p-sitemapChild__item {
  margin-top: 24px;
}

@media screen and (max-width: 1023px) {
  .p-sitemapChild__item {
    margin-top: 0;
  }
}

@media screen and (max-width: 1023px) {
  .p-sitemapChild__transition {
    display: block;
    padding: 16px 0;
  }
}

.p-sitemapChildOpenBtn {
  display: none;
  flex: 0 0 auto;
}

@media screen and (max-width: 1023px) {
  .p-sitemapChildOpenBtn {
    display: block;
  }
}

.p-sitemapChildOpenIcon {
  color: var(--color-base);
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: var(--size-48);
  height: var(--size-48);
  font-size: var(--size-24);
}

.clpg-page-content .p-sitemapChildOpenIcon {
  color: var(--color-main);
}

.p-sitemapGrandchild__item {
  margin-top: 24px;
}

@media screen and (max-width: 1023px) {
  .p-sitemapGrandchild__item {
    margin-top: 0;
  }
}

@media screen and (max-width: 1023px) {
  .p-sitemapGrandchild__transition {
    display: block;
    padding: 16px 0;
  }
}

@scope (.p-footer) {
  .p-sitemap__list {
    flex-direction: row;
    justify-content: flex-end;
  }

  .p-sitemap__item {
    font-size: var(--size-14);
  }

  .p-sitemap__transition,
  .p-sitemapChild__transition,
  .p-sitemapGrandchild__transition {
    color: var(--color-base);
  }
}



/* SEARCH
-------------------------------------------------------------------- */
.clpg-searchbox-input {
  font-size: 1em;
  padding: 8px;
  border: none;
  background: none;
}

.clpg-searchbox-input::placeholder {
  color: var(--color-main);
}

.p-search__form {
  padding: 8px 16px;
  background-color: var(--color-base);
  border-radius: 9999px;
  width: 100%;
  max-width: 20em;
}

@scope(.p-header) {
  .p-search__form {
    flex: 0 1 auto;
    padding: calc(var(--size-16) / 4) calc(var(--size-16) / 2);
  }
}

.p-search__icon {
  font-size: var(--size-24);
}

.p-search--resultPage {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.p-search--resultPage form {
  display: contents;
}

.p-search--resultPage .clpg-searchbox-input {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  width: 100%;
}

.p-topSection .c-col {
  gap: 24px;
}

@media screen and (max-width: 1023px) {
  .c-col:has(> .c-col4__item) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.p-topSection > .c-col:not(.p-topSection__split) {
  align-items: center;
}

.p-topSection .c-col.p-topSection__split {
  gap: 0;
}

.p-topSection--about,
.p-topSection--movie,
.p-topSection--contact {
  background-color: var(--color-main);
}

.p-topSection__lead {
  font-size: var(--size-16);
}

.p-topSection__btnArea {
  justify-content: flex-start;
}

@media screen and (max-width: 1023px) {
  .p-topSection__btnArea {
    justify-content: center;
  }
}

.p-topCard {
  background-color: var(--color-background);
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 16px;
  text-align: center;
  text-decoration: none;
  transition: box-shadow .3s;
}

@media (hover: hover) and (pointer: fine) {
  .p-topCard:hover {
    box-shadow: 0px 4px 16px 0px rgba(135, 206, 235, .4);
  }
}

.p-topCard--newHere,
.p-topCard--youth {
  padding: 24px 8px;
}

@media screen and (max-width: 1023px) {
  .p-topCard--newHere,
  .p-topCard--youth {
    padding: 16px 8px;
  }
}

.p-topCard--newHere img,
.p-topCard--youth img {
  margin-left: auto;
  margin-right: auto;
}

.p-topCard--service {
  background-color: var(--color-base);
  justify-content: stretch;
}

.p-topCard--link {
  background-color: var(--color-skyBlue);
  text-align: center;
  grid-template-rows: auto;
  text-decoration: none;
  transition: box-shadow .3s;
  padding: 24px 8px;
}

.p-topCard__content--service {
  padding: 0 16px;
}

@media screen and (max-width: 1023px) {
  .p-topCard__content--service {
    padding: 0 8px;
  }
}

.p-topCard__icon--service {
  padding: 24px 8px 0;
}

@media screen and (max-width: 1023px) {
  .p-topCard__icon--service {
    padding: 16px 8px 0;
  }
}

.p-topCard__desc--service {
  background-color: var(--color-skyBlue);
  padding: 8px;
}

@media screen and (max-width: 1023px) {
  .p-topCard__desc--service {
    padding: 8px;
  }
}

.p-topCard__desc p {
  font-size: var(--size-14);
  letter-spacing: 0.025em;
}

.p-topCard__ja {
  font-size: var(--size-16);
  font-weight: 600;
  letter-spacing: 0.025em;
}

.p-topCard__en {
  font-size: var(--size-16);
  letter-spacing: 0.025em;
}

@scope(.p-topSection) {
  .c-btn {
    background-color: transparent;
    font-size: var(--size-16);
    padding: var(--size-12) 16px;
  }

  @media screen and (max-width: 1023px) {
    .c-btn {
      padding-top: calc(var(--size-12) /2);
      padding-bottom: calc(var(--size-12) /2);
    }
  }

  h2 {
    padding: 0 0 0.5em;
    background-image: none;
    font-weight: 600;
    position: relative;
  }

  h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--color-skyBlue);
  }
}

@scope(.p-topSection--about, .p-topSection--movie, .p-topSection--contact) {
  h2,
  p,
  .c-btn {
    color: var(--color-base)!important;
  }
  .c-btn {
    border-color: var(--color-base)!important;
  }
}

@media (hover: hover) and (pointer: fine) {
  @scope(.p-topSection--about, .p-topSection--movie, .p-topSection--contact) {
    .c-btn:hover {
      background-color: #6D757F!important;
    }
  }
}

.p-topSection.p-topSection--about img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-topSection--access iframe {
  width: 100%;
  height: 100%;
}

.p-topSection--sunday .p-articleLoop__summary {
  font-size: var(--size-18);
}

@media screen and (max-width: 1023px) {
  .p-topSection--sunday .p-articleLoop__summary {
    font-size: var(--size-16);
  }
}

.p-details {
  margin: 1em 0;
}

.p-details__summary {
  border: var(--color-accent) solid 1px;
  border-radius: 4px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  transition: .3s;
  width: 100%;
  text-align: left;
}

.p-details__summary span:not(.p-ico__icomoon) {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-main);
}

.p-details__summary:hover {
  background-color: var(--color-background);
  cursor: pointer;
}

.p-details__summary.is-open {
  background-color: var(--color-background);
}

.p-details__summary.is-open .icon-plus {
  display: none;
}

.p-details__summary.is-open .icon-minus {
  display: block;
}

.p-details__summary .icon-plus {
  display: block;
}

.p-details__summary .icon-minus {
  display: none;
}

.p-details__summary .p-ico__icomoon {
  font-size: 1.5em;
}

.p-details__contents {
  background-color: var(--color-background);
  display: none;
  padding: 16px;
}