/*
Theme Name: 専用テーマ
Theme URI: 
Author: Bratech
Author URI: https://www.bratech.co.jp/
Description: シン・子育てファミリー・サポートセンター専用テーマです。
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
*/
@charset "UTF-8";

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# foundation
	## reset
	## base
# layout
	## l-main
	## l-header
	## l-footer
# utility
	## u-utility
# component
	## c-btn
	## c-link
	## c-heading
	## c-list
	## c-pagination
	## c-form
	## c-breadcrumb
	## c-table
	## c-backtotop
# projects
	## p-404
	## p-archive
	## p-page
	## p-single
	## p-top
# external
	## e-wordpress
# plugins
	## 
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');

:root {
  --color-primary: #E8768E;
  --color-accent: #91CC20;
  --color-sub: #F59433;
  --color-bg: #FFF0F3;
  --color-bg--light: #FFF9FA;
  --color-bg--gray: #efefef;
  --color-bg--orange: #FCEBDA;
  --color-font: #3D2C2E;
  --color-border: #F6C6D0;
  --color-border--gray: #afafb0;
  --color-link: #D95C76;
  --color-link--hover: #B94A62;
  --color-gray: #afafb0;
  --color-red: #e8383d;
  --color-blue: #6EA6D8;

  --font-english: "Quicksand", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ul[class],
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  color: var(--color-link);
  text-decoration: none;
  transition: color .3s;
}

a:visited {
  color: var(--color-link);
}

a:hover,
a:focus,
a:active {
  color: var(--color-link--hover);
}

a:hover,
a:active {
  outline: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
  width: 100%;
  color: var(--color-font);
}

@media print,
screen and (min-width: 600px) {
  body {
    font-size: 1.6rem;
    line-height: 2;
  }
}

::-moz-selection {
  background: #dcdcdc;
}

::selection {
  background: #dcdcdc;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* iframe */
.p-page .iframe-container {
  aspect-ratio: 16 / 9;
}

.p-page:has(.wp-block-embed__wrapper) .iframe-container {
  aspect-ratio: auto;
}

.iframe-container iframe {
  width: 100%;
  height: 100%;
}

#wrapper {
  overflow-x: hidden;
}

.l-main-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  align-self: stretch;
}

@media (min-width: 768px) {
  .l-main-top {
    align-items: center;
    gap: 80px;
  }
}

@media (min-width: 1024px) {
  .l-main-top {
    gap: 100px;
  }
}

.l-content {
  background-color: var(--color-bg);
}

.l-content__main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 20px 40px;
}

@media print,
screen and (min-width: 600px) {
  .l-content__main {
    padding: 20px 30px 60px;
  }
}

@media (min-width: 1024px) {
  .l-content__main {
    padding: 20px 20px 100px;
  }
}

.l-content__medium {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 20px 40px;
}

@media print,
screen and (min-width: 600px) {
  .l-content__medium {
    padding: 60px 30px 60px;
  }
}

@media (min-width: 1024px) {
  .l-content__medium {
    padding: 60px 20px 60px;
  }
}

@media screen and (min-width: 1400px) {
  .l-content__medium {
    padding: 60px 0 60px;
  }
}

.l-content__large {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px 40px;
}

@media print,
screen and (min-width: 600px) {
  .l-content__large {
    padding: 60px 30px 60px;
  }
}

@media (min-width: 1024px) {
  .l-content__large {
    padding: 60px 20px 60px;
  }
}

@media screen and (min-width: 1400px) {
  .l-content__large {
    padding: 60px 0 60px;
  }
}

.l-header {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  background-color: white;
  z-index: 1;
  padding: 0 16px;
  position: relative;
}

@media (min-width: 768px) {
  .l-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    padding: 0 20px;
  }
}

@media (min-width: 1024px) {
  .l-header {
    height: 120px;
    padding: 0 30px;
  }
}

.l-header__logo img {
  max-width: 260px;
  height: auto;
  display: block;
  vertical-align: middle;
}

.l-header__logo img:hover {
  opacity: .7;
}

@media (min-width: 768px) {
  .l-header__logo img {
    max-width: 300px;
  }
}

@media (min-width: 1024px) {
  .l-header__logo img {
    max-width: 450px;
    display: inline-block;
  }
}

.l-header__logo img:hover {
  opacity: .8;
  transition: .2s ease-in;
}

.l-header__info {
  display: none;
}

@media (min-width: 768px) {
  .l-header__info {
    display: flex;
    flex-direction: column;
    padding-right: 60px;

    span {
      text-align: center;
    }

    span.tel {
      font-size: 2.6rem;
      font-weight: 500;
      font-family: var(--font-english);
      line-height: 1.4;
    }

    span.hour {
      font-weight: 500;
      color: var(--color-primary);
      font-size: 1.4rem;
      line-height: 1.4;
    }
  }
}

@media (min-width: 1024px) {
  .l-header__info {
    padding-right: 160px;

    span.tel {
      font-size: 3.6rem;
      line-height: 40px;
    }

    span.hour {
      font-size: 1.6rem;
    }
  }
}

.l-header__gnav {
  margin-top: 0;
}

.l-gmenu {
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100%;
  pointer-events: none;
  z-index: 98;
}

.l-gmenu * {
  visibility: visible;
}

.l-gmenu .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  background: white;
}

@media (min-width: 1024px) {
  .l-gmenu .bg {
    background: #2b2b2b;
  }
}

.l-gmenu .button {
  position: fixed;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 100;
  -webkit-appearance: none;
  border: 0;
  background-color: var(--color-primary);
  border-radius: 0;
  height: 70px;
  width: 70px;
  border-radius: 0 0 0 20px;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 101;
}

@media (min-width: 1024px) {
  .l-gmenu .button {
    right: 20px;
    top: 20px;
    height: 120px;
    width: 120px;
    border-radius: 60px;
    padding-top: 10px;
  }
}

.l-gmenu .button .text {
  color: white;
  font-size: 1.0rem;
  font-family: var(--font-english);
  font-weight: 500;
  margin-top: 0.6em;
  letter-spacing: .08em;

}

@media (min-width: 1024px) {
  .l-gmenu .button .text {
    font-size: 1.5rem;
    margin-top: .4em;
  }
}

.l-gmenu .icon-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  transition: 0.3s;
}

@media (min-width: 1024px) {
  .l-gmenu .icon-bar {
    width: 50px;
  }
}

.l-gmenu .icon-bar + .icon-bar {
  margin-top: 5px;
}

@media (min-width: 1024px) {
  .l-gmenu .icon-bar + .icon-bar {
    margin-top: 6px;
  }
}

.l-gmenu.is-open .bg {
  visibility: visible;
  opacity: 1;
}

@media (min-width: 1024px) {
  .l-gmenu.is-open .bg {
    opacity: .6;
  }
}

.l-gmenu.is-open .icon-bar:nth-of-type(1) {
  transform: translate3d(0, 0, 0) rotate(45deg);
}

.l-gmenu.is-open .icon-bar:nth-of-type(2) {
  opacity: 0;
  display: none;
}

.l-gmenu.is-open .icon-bar:nth-of-type(3) {
  transform: translate3d(0, -7px, 0) rotate(-45deg);
}

.l-gmenu.is-open .text {
  display: none;
}

.l-gmenu.is-open .l-gmenu__content {
  transform: translateX(0);
}

.l-gmenu__content {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  height: 100vh;
  pointer-events: auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  transform: translateX(100%);
  transition: transform 0.3s;
  will-change: transform;
  contain: paint;
  z-index: 100;
}

@media (min-width: 1024px) {
  .l-gmenu__content {
    background: white;
    height: 100vh;
    width: 400px;
  }
}

.l-gmenu__nav {
  margin-top: 30px !important;
}

.l-gmenu__nav li a {
  display: block;
  padding: 16px 16px 16px 50px;
  color: var(--color-font);
  text-decoration: none;
  position: relative;
  font-size: 1.5rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .l-gmenu__nav li a {
    padding: 16px 16px 16px 50px;
    font-size: 1.6rem;
  }
}

.l-gmenu__nav li a::before {
  content: '\f105';
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  transition: 0.2s ease-in;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .l-gmenu__nav li a::before {
    left: 30px;
  }
}

.l-gmenu__nav .sub-menu {
  padding-left: 20px;
}

.l-gmenu__search {
  padding: 16px;
}

.l-gmenu__button {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.l-gmenu__info {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 5px;

  span {
    text-align: center;
  }

  span.tel {
    font-size: 3.2rem;
    font-weight: 500;
    font-family: var(--font-english);
  }

  span.hour {
    font-weight: 500;
    color: var(--color-primary);
  }
}

@media (min-width: 1024px) {
  .l-gmenu__info {

    span.tel {
      font-size: 3.6rem;
      line-height: 40px;
    }
  }
}

.l-footer {
  margin-top: auto;
  position: relative;
  padding: 40px 16px 90px;
}

.l-footer__inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 768px) {
  .l-footer {
    padding: 40px 40px;
  }
}

@media (min-width: 1024px) {
  .l-footer {
    padding: 60px 100px;
  }

  .l-footer__inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.l-footer__left {
  position: relative;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .l-footer__left {
    padding: 0;
    flex: 1;
  }
}

.l-footer__right {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

  img {
    display: none;
    width: 40%;
    height: auto;
  }
}

@media (min-width: 768px) {
  .l-footer__right {
    img {
      width: 160px;
    }
  }
}

@media (min-width: 1024px) {
  .l-footer__right {
    padding: 0;
    width: 320px;
    align-items: flex-start;

    img {
      display: block;
      width: 130px;
    }
  }
}

.l-footer__bottom {
  width: 100%;
}

@media (min-width: 1024px) {
  .l-footer__bottom {
    margin-top: 20px;
  }
}

@media (min-width: 1024px) {
  .l-footer__logo {
    margin-bottom: 20px;
  }
}

.l-footer__logo img {
  width: 280px;
  height: auto;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .l-footer__logo img {
    width: 380px;
  }
}

@media (min-width: 1024px) {
  .l-footer__logo img {
    width: 460px;
    margin: 0;
  }
}

.l-footer__text {
  display: block;

  p {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.8;
  }
}

@media (max-width: 767px) {
  .l-footer__text > :not(.footer-addr) {
    display: none;
  }
}

.l-footer__sitemap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

.l-footer__sitemap li {
  font-size: 1.4rem;
}

.l-footer__sitemap li a {
  font-weight: 500;
  transition: .3s ease-in-out;
  color: var(--color-font);
}

.l-footer__sitemap li a:hover {
  color: var(--color-primary);
}

.l-footer__copyright {
  font-size: 1.1rem;
  margin-top: auto;
  text-align: center;
}

@media (min-width: 768px) {
  .l-footer__sitemap {
    li {
      font-size: 1.5rem;
    }
  }
}

@media (min-width: 1024px) {
  .l-footer__sitemap {
    flex-direction: column;
    gap: 14px;

    li {
      font-size: 1.4rem;
    }
  }

  .l-footer__copyright {
    font-size: 1.2rem;
  }
}

.l-footer__link {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

@media (min-width: 768px) {
  .l-footer__link {
    gap: 30px;
    justify-content: center;

    li {
      img {
        width: 200px;
      }
    }
  }
}

@media (min-width: 1024px) {
  .l-footer__banner {
    margin-left: 40px;
  }

  .l-footer__link {
    flex-direction: column;
    gap: 20px;
    width: 200px;
  }
}


/* ========================================
  Utility
======================================== */
.u-pc {
  display: none;
}

.u-sp {
  display: block;
}

@media (min-width: 768px) {
  .u-pc {
    display: block;
  }

  .u-sp {
    display: none;
  }
}

.u-align--right {
  text-align: right;
}

.u-align--center {
  text-align: center;
}

.u-align--left {
  text-align: left;
}

.u-size--small {
  font-size: 1.3rem;
}

@media print,
screen and (min-width: 600px) {
  .u-size--small {
    font-size: 1.4rem;
  }
}

.u-size--xsmall {
  font-size: 1.2rem;
}

@media print,
screen and (min-width: 600px) {
  .u-size--xsmall {
    font-size: 1.3rem;
  }
}

.u-size--large {
  font-size: 1.6rem;
}

@media (min-width: 768px) {
  .u-size--large {
    font-size: 1.8rem;
  }
}

.u-mt--20 {
  margin-top: 20px;
}

.u-text-center {
  text-align: center;
}

.u-flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}



/* ========================================
  Component
======================================== */
.c-btn {
  position: relative;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: white !important;
  text-decoration: none;
  transition: .2s ease-in-out;
  font-size: 1.5rem;
  font-weight: 500;
  border-radius: 27px;
  display: inline-block;
  padding: 12px 46px 12px 28px;
}

@media (min-width: 1024px) {
  .c-btn {
    font-size: 1.6rem;
    padding: 12px 60px 12px 26px;
    border-radius: 28px;
  }
}

.c-btn:visited,
.c-btn:active {
  color: white !important;
}

.c-btn:hover {
  background-color: var(--color-bg);
  color: var(--color-primary) !important;
}

.c-btn:hover::after {
  color: var(--color-primary);
}

.c-btn::after {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.c-btn__accent {
  background-color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.c-btn__accent:hover {
  background-color: white;
  color: var(--color-accent) !important;
}

.c-btn__accent:hover::after {
  color: var(--color-accent);
}

.c-btn__external {
  margin: 1em 0;
}

.c-btn__external::after {
  content: "\f35d";
}

.c-btn__pdf {
  margin: 1em 0;
}

.c-btn__pdf::after {
  content: "\f1c1";
}

.c-btn__member {
  background-color: white;
  color: var(--color-primary) !important;
}

.c-btn__member:visited,
.c-btn__member:active {
  color: var(--color-primary) !important;
}

.c-btn__phone {
  border: 1px solid rgba(255, 255, 255, 0.30);
  background: rgba(255, 255, 255, 0.20);
  padding: 14px 28px 14px 46px;
}

@media (min-width: 1024px) {
  .c-btn__phone {
    padding: 12px 26px 12px 56px;
  }
}

.c-btn__phone::after {
  content: '\f095';
  right: auto;
  left: 20px;
}

.c-btn__cancel {
  background-color: var(--color-bg);
  color: var(--color-primary) !important;
}

.c-btn__cancel:hover {
  background-color: white;
}

.c-btn__cancel:visited,
.c-btn__cancel:active {
  color: var(--color-primary) !important;
}

.btn--center {
  margin: 0 auto;
}

.btn--small {
  padding: .3em 0;
  width: 200px;
  font-size: 1.2rem;
}

@media print,
screen and (min-width: 600px) {
  .btn--small {
    font-size: 1.3rem;
    padding: .2em 0;
  }
}

.btn--large {
  width: 90%;
  margin: 0 auto;
}

@media print,
screen and (min-width: 600px) {
  .btn--large {
    width: 80%;
  }
}

@media (min-width: 1024px) {
  .btn--large {
    width: 100%;
    font-size: 1.8rem;
  }
}

.c-heading-top h2 {
  text-align: center;
  font-size: 2.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 45px;

  span {
    color: var(--color-primary);
    font-family: Quicksand;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
  }
}

@media (min-width: 1024px) {
  .c-heading-top h2 {
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 45px;
  }
}

.c-heading-top p {
  text-align: center;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 21px;
  margin-top: 30px;
}

@media (min-width: 1024px) {
  .c-heading-top p {
    font-size: 1.8rem;
    margin-top: 40px;
  }
}

.c-heading-page {
  position: relative;
  width: 100%;
  background: var(--color-bg);
  padding: 80px 16px 60px;
  min-height: 180px;
}

.c-heading-page__curve {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  display: block;
}

@media (min-width: 768px) {
  .c-heading-page {
    height: 200px;
  }
}

@media (min-width: 1024px) {
  .c-heading-page {
    padding: 120px 20px 80px;
    height: 300px;
  }

  .c-heading-page__curve {
    height: 100px;
  }
}

.c-heading-page > * {
  font-size: 2.4rem;
  line-height: 1.6;
  text-align: center;
  z-index: 1;
  font-weight: 500;
  letter-spacing: .08em;
}

@media (min-width: 768px) {
  .c-heading-page > * {
    font-size: 2.8rem;
  }
}

@media (min-width: 1024px) {
  .c-heading-page > * {
    font-size: 3.2rem;
  }
}

.c-heading-page span {
  display: block;
  font-size: 1.4rem;
  padding-bottom: .2em;
  color: var(--color-primary);
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .c-heading-page span {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .c-heading-page span {
    font-size: 1.6rem;
    padding-bottom: .4em;
  }
}

.c-heading--accent {
  color: white;
  text-align: center;
  font-family: var(--font-english);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  padding: 15px;
  border-radius: 10px;
  background: var(--color-accent);
  position: relative;
  margin-bottom: 30px;

  span {
    display: block;
    font-size: 1.4rem;
  }
}

.c-heading--accent::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  background-color: var(--color-accent);
  width: 20px;
  height: 20px;
  border-radius: 10px;
}

@media (min-width: 1024px) {
  .c-heading--accent {
    margin-bottom: 50px;
    font-size: 2.0rem;
    padding: 18px 15px;

    span {
      font-size: 1.5rem;
    }
  }

  .c-heading--accent::after {
    bottom: -12px;
    width: 24px;
    height: 24px;
    border-radius: 12px;
  }
}

.c-heading-accent {
  color: white;
  text-align: center;
  font-family: var(--font-english);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  padding: 15px;
  border-radius: 10px;
  background: var(--color-accent);
  position: relative;
  margin-bottom: 30px;

  span {
    display: block;
    font-size: 1.4rem;
  }
}

.c-heading-accent::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  background-color: var(--color-accent);
  width: 20px;
  height: 20px;
  border-radius: 10px;
}

@media (min-width: 1024px) {
  .c-heading-accent {
    margin-bottom: 50px;
    font-size: 2.0rem;
    padding: 18px 15px;

    span {
      font-size: 1.5rem;
    }
  }

  .c-heading-accent::after {
    bottom: -12px;
    width: 24px;
    height: 24px;
    border-radius: 12px;
  }
}


.c-heading--line {
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--color-font);
  padding-left: 12px;
  border-left: 4px solid var(--color-accent);
  margin: 20px 0;
  letter-spacing: .06em;
}

@media (min-width: 1024px) {
  .c-heading--line {
    font-size: 1.9rem;
  }
}

.c-heading--band {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .06em;
  padding: 0 0 6px;
  border-bottom: 2px solid var(--color-accent);
}

@media (min-width: 1024px) {
  .c-heading--band {
    font-size: 1.8rem;
  }
}

.c-heading-line {
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--color-font);
  padding-left: 12px;
  border-left: 4px solid var(--color-accent);
  margin: 20px 0;
  letter-spacing: .06em;
}

@media (min-width: 1024px) {
  .c-heading-line {
    font-size: 1.9rem;
  }
}

.c-heading-band {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .06em;
  padding: 0 0 6px;
  border-bottom: 2px solid var(--color-accent);
}

@media (min-width: 1024px) {
  .c-heading-band {
    font-size: 1.8rem;
  }
}

.c-heading-flag {
  position: relative;
  margin-bottom: 35px !important;
  margin-left: 9px;
  padding: .5em .6em .5em 1.2em;
  background-color: var(--color-accent);
  border-radius: 2px;
  color: white;
  font-weight: 500;
  font-size: 1.8rem !important;

  &::before {
    position: absolute;
    top: 0;
    left: -9px;
    z-index: 1;
    width: 5px;
    height: 135%;
    border-radius: 3px;
    background-color: #600;
    content: '';
  }

  span::before,
  span::after {
    position: absolute;
    left: -9px;
    width: 20px;
    height: 3px;
    border-radius: 3px;
    background-color: #c99;
    content: '';
  }

  span::before {
    top: 44%;
    transform: rotate(-25deg);
  }

  span::after {
    top: 54%;
    transform: rotate(25deg);
  }
}

@media (min-width: 768px) {
  .c-heading-flag {
    font-size: 2.0rem !important;
    padding: .5em 1.2em;
    margin-bottom: 50px !important;
  }
}

@media (min-width: 1024px) {
  .c-heading-flag {
    font-size: 2.4rem !important;
  }
}

.c-heading-highlighter {
  font-weight: 500;
  font-size: 1.7rem !important;

  span {
    background: linear-gradient(transparent 60%, #ff6 60%);
  }
}

@media (min-width: 1024px) {
  .c-heading-highlighter {
    font-size: 2.2rem !important;
  }
}

.c-error-message {
  font-weight: 500;
  color: var(--color-red);
  margin-bottom: 1em;
}

.c-login-message {
  font-weight: 500;
  margin-bottom: 10px;
}

.c-login-message + form:has(input[type="password"]) {
  width: 100%;
  max-width: 550px;
  display: flex;
  gap: 16px;
}

.c-login-message + form > input[type="password"] {
  width: calc(100% - 140px);
}

.c-login-message + form > button {
  white-space: nowrap;
  width: 120px;
}

.l-content__note {
  text-align: center;
  font-size: 22px;
  margin-bottom: 64px;
}

.c-section--panel {
  background-color: white;
  padding: 20px;
  border-radius: 20px;

  * + h3 {
    margin-top: 40px;
  }

  * + h4 {
    margin-top: 40px;
  }

  * + h5 {
    margin-top: 30px;
  }

  * + p,
  * + div,
  * + iframe {
    margin-top: 20px;
  }

  a {
    text-decoration: underline;
    text-underline-offset: 0.15em;
  }
}

@media (min-width: 768px) {
  .c-section--panel {
    padding: 40px;
  }
}

@media (min-width: 1024px) {
  .c-section--panel {
    padding: 80px;
    border-radius: 40px;

    * + h3 {
      margin-top: 80px;
    }

    * + h4 {
      margin-top: 50px;
    }

    * + h5 {
      margin-top: 40px;
    }
  }
}

.c-list-news li {
  position: relative;
  border-bottom: 1px solid #F5E6EA;
  margin: 0;
}

.c-list-news li:hover::after {
  width: 100%;
  transition: ease-in .3s;
}

.c-list-news li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background-color: white;
  transition: ease-in .3s;
  z-index: -1;
}

.c-list-news li a {
  display: flex;
  flex-direction: column;
  padding: 1.2em 0;
}

@media (min-width: 1024px) {
  .c-list-news li a {
    padding: 1.4em 0;
    flex-direction: row;
  }
}

.c-list-news li a:hover,
.c-list-news li a:visited,
.c-list-news li a:active {
  color: var(--color-font);
}

.c-list-news__info {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.c-list-news__date {
  font-size: 1.3rem;
  line-height: 1.4;
  min-width: 80px;
  font-family: var(--font-english);
}

@media (min-width: 768px) {
  .c-list-news__date {
    min-width: 100px;
    font-size: 1.4rem;
  }
}

.c-list-news__tag,
.c-list-news__cat {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 5px;
}

.c-list-news__cat span {
  font-size: 1.1rem;
  line-height: 1.4;
  padding: .2em .6em;
  min-width: 84px;
  text-align: center;
  border-radius: 10px;
}

.c-list-news__tag {
  margin-left: 5px;
}

.c-list-news__tag span {
  font-size: 1.1rem;
  line-height: 1.4;
  padding: .2em .6em;
  min-width: 84px;
  text-align: center;
  border-radius: 10px;
}

.c-list-news__cat span.tag-news {
  color: var(--color-primary);
}

.c-list-news__cat span.tag-event {
  color: var(--color-accent);
}

.c-list-news__cat span.tag-notice {
  color: white;
}

.c-list-news__cat span.tag-member {
  color: #FF9800;
}

@media (min-width: 1024px) {
  .c-list-news__cat,
  .c-list-news__tag {
    min-width: 120px;
  }

  .c-list-news__cat span,
  .c-list-news__tag span {
    font-size: 1.3rem;
  }
}

.c-list-news__title {
  font-size: 1.45rem;
  width: 100%;
  line-height: 1.6;
  font-weight: 500;
  margin-top: 10px;
}

@media (min-width: 1024px) {
  .c-list-news__title {
    font-size: 1.6rem;
    margin-top: 0;
  }
}

.c-list-index {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 !important;
}

.c-list-index li {
  width: 100%;

  position: relative;
  margin: 0;
}

.c-list-index li a {
  display: block;
  transition: ease-in .3s;
  padding: 20px;
  position: relative;
  border-radius: 10px;
  background-color: white;
  color: var(--color-font);
  border: 1px solid white;
}

.c-list-index li a:hover {
  border-color: var(--color-primary);
}

@media (min-width: 768px) {
  .c-list-index li a {
    padding: 20px;
  }
}

@media (min-width: 1024px) {
  .c-list-index li a {
    display: flex;
    flex-direction: row;
    padding: 20px;
    gap: 40px;
  }
}

.c-list-index li a::after {
  content: "\f105";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--color-primary);
}

.c-list-index li a[href$=".pdf"]::after {
  content: "\f1c1";
  font-family: "Font Awesome 5 Free";
}

.c-list-index__info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.single-activities .p-single__posted,
.post-type-archive .c-list-index__info {
  display: none;
}

.c-list-index__date {
  font-size: 1.3rem;
  font-family: var(--font-english);
  font-weight: 500;
}

@media (min-width: 768px) {
  .c-list-index__date {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .c-list-index__date {
    min-width: 80px;
  }
}

.c-list-index__cat {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 5px;
}

.c-list-index__cat span {
  background-color: var(--color-bg);
  color: var(--color-primary);
  font-size: 1.1rem;
  line-height: 1.4;
  padding: .2em .6em .2em;
  min-width: 84px;
  text-align: center;
  border-radius: 10px;
}

.c-list-index__cat span.tag-news {
  color: var(--color-primary);
}

.c-list-index__cat span.tag-event {
  color: var(--color-accent);
}

.c-list-index__cat span.tag-notice {
  color: white;
}

.c-list-index__cat span.tag-member {
  color: #FF9800;
}

.c-list-index__title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 10px;
  width: 100%;
}

@media print,
screen and (min-width: 600px) {
  .c-list-index__title {
    font-size: 1.6rem;
  }
}

@media (min-width: 1024px) {
  .c-list-index__title {
    flex: 1;
    margin-top: 0;
    font-size: 1.7rem;
  }
}

.c-list-link {
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-list-link li {
  position: relative;
  border-top: 1px solid #dcdcdc;
  transition: .2s ease-in;
  font-weight: bold;
}

@media (min-width: 1024px) {
  .c-list-link li {
    font-size: 1.8rem;
  }
}

.c-list-link li:last-child {
  border-bottom: 1px solid #dcdcdc;
}

.c-list-link li:hover {
  background-color: #f5f5f5;
  transition: .2s ease-in;
}

.c-list-link li:hover::before {
  right: -4px;
  transition: .2s ease-in;
}

.c-list-link li:hover::after {
  right: -8px;
  transition: .2s ease-in;
}

.c-list-link li::before {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 16px;
  height: 1px;
  background-color: #2b2b2b;
  transition: .2s ease-in;
  transform: translateY(-50%);
}

.c-list-link li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 49%;
  width: 9px;
  height: 9px;
  border-top: 1px solid #2b2b2b;
  border-right: 1px solid #2b2b2b;
  transform: rotate(45deg) translateY(-50%);
  transition: .2s ease-in;
}

.c-list-link li a {
  display: block;
  border-bottom: none;
  color: #2b2b2b;
  padding: 1em 0;
}

@media (min-width: 1024px) {
  .c-list-link li a {
    padding: 1.6em 0;
  }
}

.c-list-link li a:hover {
  border-bottom: none;
}

.c-list-search li {
  padding: 20px 0;
  border-bottom: 1px solid #dcdcdc;
}

.c-list-search li:first-child {
  border-top: 1px solid #dcdcdc;
}

@media (min-width: 1024px) {
  .c-list-search li {
    padding: 30px;
  }
}

.c-list-search__date {
  font-size: 1.3rem;
  text-align: right;
  font-weight: bold;
  margin-top: 1em;
}

.c-list-search__title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: .5em;
}

@media print,
screen and (min-width: 600px) {
  .c-list-search__title {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

@media (min-width: 1024px) {
  .c-list-search__title {
    font-size: 1.8rem;
    line-height: 2;
  }
}

.c-list-search__txt {
  font-size: 1.2rem;
}

@media print,
screen and (min-width: 600px) {
  .c-list-search__txt {
    font-size: 1.4rem;
  }
}

.c-list-nav {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin: 40px 0 !important;
}

.c-list-nav li {
  text-align: center;
  font-weight: bold;
  padding: 0 !important;
  margin: 0 1em 1em 0 !important;
}

.c-list-nav li::before {
  display: none;
}

.c-list-nav a {
  display: block;
  padding: .8em;
  transition: .2s ease-in;
  border: 1px solid #6f8083;
}

.c-list-nav a:hover {
  background-color: #f5f5f5;
}

.c-list-nav a.current {
  pointer-events: none;
}

.c-list-post ul li {
  border-bottom: 1px solid #dcdcdc;
  padding: .8em 0 !important;
  margin: 0 !important;
}

@media (min-width: 1024px) {
  .c-list-post ul li {
    padding: 1.2em 0 !important;
  }
}

.c-list-post ul li::before {
  display: none;
}

.c-list-post ul li:hover::after {
  width: 100%;
  transition: ease-in .3s;
}

.c-list-post ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #6f8083;
  transition: ease-in .3s;
}

.c-list-post ul li a {
  display: block;
  border-bottom: none !important;
  margin-top: .5em;
}

@media (min-width: 1024px) {
  .c-list-post ul li a {
    display: inline-block;
    margin-top: 0;
  }
}

.c-list-post ul li span {
  display: inline-block;
  margin-right: 1em;
}

.c-list-post ul li span + a.label-15,
.c-list-post ul li span + a.label-16 {
  background-color: #9a5016;
  color: white;
  font-size: 1.2rem;
  padding: .1em .8em;
  display: inline-block;
  font-weight: bold;
}

@media (min-width: 768px) {

  .c-list-post ul li span + a.label-15,
  .c-list-post ul li span + a.label-16 {
    font-size: 1.3rem;
    margin-right: 1em;
  }
}

.c-list-event {
  border-top: 1px solid var(--color-border);
}

.c-list-event__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
  margin: 0 !important;

  dt,
  dd {
    font-weight: 500;
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .c-list-event__item {
    grid-template-columns: 220px 1fr;
    gap: 24px;

    dt,
    dd {
      font-size: 1.8rem;
    }
  }
}

.c-list-guide__item {
  display: grid;
  grid-template-columns: 1fr;

  dt,
  dd {
    font-weight: 500;
    font-size: 1.5rem;
    padding: 10px;
  }

  dt {
    background-color: #CFE99F;
  }

  dd {
    background-color: #F7F7A2;
  }
}

@media (min-width: 1024px) {
  .c-list-guide__item {
    grid-template-columns: 180px 1fr;

    dt,
    dd {
      font-size: 1.8rem;
      padding: 10px 16px;
    }
  }
}

.c-list-guide__item + .c-list-guide__item {
  margin-top: 24px;
}

.c-list-doc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 !important;
}

.c-list-doc li {
  width: 100%;

  position: relative;
  margin: 0;
}

.c-list-doc li a {
  display: block;
  transition: ease-in .3s;
  padding: 10px 20px;
  border-radius: 6px;
  position: relative;
  background-color: var(--color-bg--gray);
  color: var(--color-font);
  border: 1px solid var(--color-bg--gray);
  text-decoration: none;
}

.c-list-doc li a:hover {
  border-color: var(--color-border--gray);
}

@media print,
screen and (min-width: 600px) {
  .c-list-doc li a {}
}

@media (min-width: 1024px) {
  .c-list-doc li a {
    display: flex;
    flex-direction: row;
    gap: 40px;
  }
}

.c-list-doc li a::after {
  content: "\f105";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--color-font);
}

.c-list-doc li a[href$=".pdf"]::after {
  content: "\f1c1";
  font-family: "Font Awesome 5 Free";
}


ol.c-list-number {
  counter-reset: item;
  list-style-type: none;
  margin: 1em 0 !important;
  padding-left: 26px !important;
}

ol.c-list-number li {
  position: relative;
}

ol.c-list-number li:before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: -26px;
  top: 2px;
  color: white;
  /*
  font-family: "Lato", sans-serif;
*/
  width: 21px;
  height: 21px;
  background-color: #6f8083;
  border: 1px solid #6f8083;
  font-size: 1.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media print,
screen and (min-width: 600px) {
  ol.c-list-number li:before {
    top: 6px;
  }
}

ol.c-list-number li ol {
  counter-reset: sub;
  margin: 10px 0 10px 26px !important;
}

ol.c-list-number li ol li {
  position: relative;
}

ol.c-list-number li ol li::before {
  counter-increment: sub;
  content: counter(sub);
  position: absolute;
  left: -26px;
  color: #6f8083;
  background-color: white;
}

.c-list-archives li {
  border-bottom: 1px dotted #dcdcdc;
  padding: .4em 0;
  font-weight: bold;
}

.c-list-archives li span {
  font-size: 1.1rem;
}

@media print,
screen and (min-width: 600px) {
  .c-list-archives li span {
    font-size: 1.3rem;
  }
}

.c-list-archives li span.date {
  font-weight: normal;
  font-size: 1.2rem;
}

@media print,
screen and (min-width: 600px) {
  .c-list-archives li span.date {
    font-size: 1.4rem;
  }
}

.c-list-data {
  border-top: dotted 1px #dcdcdc;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 1.4rem;
}

@media print,
screen and (min-width: 600px) {
  .c-list-data {
    font-size: 1.5rem;
  }
}

.c-list-data dt {
  padding: .6em 0;
  border-bottom: dotted 1px #dcdcdc;
  font-weight: bold;
  width: 7em;
}

.c-list-data dd {
  padding: .6em 0;
  border-bottom: dotted 1px #dcdcdc;
  width: calc(100% - 7em);
}

.c-list-data dd span {
  margin-left: 1em;
}

/* 投稿カテゴリーリスト */
.c-list-category {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 40px !important;

  li a {
    display: block;
    background-color: white;
    padding: 6px 24px;
    color: var(--color-gray);
    border: 1px solid var(--color-gray);
    border-radius: 6px;
    font-size: 1.4rem;
  }

  li a:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
  }

  li.current-cat a {
    color: var(--color-primary);
    border-color: var(--color-primary);
  }
}

@media (min-width: 1024px) {
  .c-list-category {
    margin: 0 0 80px !important;

    li a {
      font-size: 1.6rem;
    }
  }
}

.c-pagination {
  margin-top: 40px;
}

@media (min-width: 1024px) {
  .c-pagination {
    margin-top: 60px;
  }
}

.c-pagination .pagination {
  display: flex;
  justify-content: center;
}


.c-pagination .nav-links {
  display: flex;
}

.c-pagination .nav-links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  text-decoration: none;
  transition: all .3s ease;
  color: var(--color-primary);
  background-color: white;
  border: 1px solid var(--color-primary);
  border-radius: 12px;
  margin-right: 4px;
  font-family: var(--font-english);
  font-size: 1.4rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .c-pagination .nav-links a {
    font-size: 1.5rem;
    margin-right: 6px;
  }
}

.c-pagination .nav-links a:hover {
  background-color: var(--color-bg);
}

.c-pagination .nav-links a.prev,
.c-pagination .nav-links a.next {
  color: var(--color-primary);
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-primary);
}


.c-pagination .nav-links a.prev:hover,
.c-pagination .nav-links a.next:hover {
  background-color: var(--color-bg);
}

.c-pagination .nav-links span.dots {
  color: var(--color-primary);
  width: 42px;
  height: 42px;
}

.c-pagination .nav-links span.current {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1ch;
  width: 42px;
  height: 42px;
  background-color: var(--color-primary);
  border-radius: 12px;
  color: white;
  font-family: var(--font-english);
  font-size: 1.4rem;
  font-weight: 500;
  margin-right: 4px;
}

@media (min-width: 768px) {
  .c-pagination .nav-links span.current {
    font-size: 1.5rem;
    margin-right: 6px;
  }
}

.c-map-area {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;

  iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }
}


input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

.c-form-contact__list li {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  .c-form-contact__list li {
    margin-bottom: 30px;
  }
}

.c-form-contact__list li:last-child {
  border-bottom: none;
}

.c-form-contact__title {
  margin-bottom: 8px;
  font-weight: bold;
}

.c-form-contact__title span {
  margin-left: 10px;
  font-size: 1.1rem;
  color: white;
  background-color: #ba2636;
  border-radius: 2px;
  padding: .2em .6em;
}

@media (min-width: 1024px) {
  .c-form-contact__title span {
    margin-left: 16px;
  }
}

.c-form-contact__input {
  word-wrap: break-word;
}

.c-form-contact__input input[type=text],
.c-form-contact__input input[type=email],
.c-form-contact__input textarea,
.c-form-contact__input select {
  padding: 10px;
  background-color: #f5f5f5;
  border: 1px solid #dcdcdc;
  border-radius: 0;
  font-size: 1.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  caret-color: #6f8083;
  width: 100%;
}

.c-form-contact__input input[type=text]:focus,
.c-form-contact__input input[type=email]:focus,
.c-form-contact__input textarea:focus,
.c-form-contact__input select:focus {
  outline: none;
  border: 1px solid #9a5016;
}

.c-form-contact__input select {
  position: relative;
  display: block;
}

.c-form-contact__input select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #2b2b2b;
  border-right: 1px solid #2b2b2b;
  transform: rotate(45deg) translateY(-50%);
  z-index: 10;
}

.c-form-contact__input ::-moz-placeholder {
  font-size: 1.3rem;
  color: rgba(43, 43, 43, .3);
}

.c-form-contact__input :-ms-input-placeholder {
  font-size: 1.3rem;
  color: rgba(43, 43, 43, .3);
}

.c-form-contact__input ::placeholder {
  font-size: 1.3rem;
  color: rgba(43, 43, 43, .3);
}

.c-form-contact__btn {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.c-form-contact__input input[type=text].tel-area {
  width: auto;
}

@media print,
screen and (min-width: 600px) {
  .c-form-contact__btn {
    flex-direction: row;
  }
}

.c-form-contact__btn .btn {
  position: relative;
  display: inline-block;
  padding: 1.2em 2em;
  background-color: #6f8083;
  color: white;
  text-decoration: none;
  text-align: center;
  transition: .3s ease-in-out;
  font-size: 1.5rem;
  font-weight: bold;
  width: 100%;
  border-bottom: none !important;
}

@media print,
screen and (min-width: 600px) {
  .c-form-contact__btn .btn {
    width: auto;
    font-size: 1.6rem;
    padding: 1em 4em;
  }
}

.c-form-contact__btn .btn:visited,
.c-form-contact__btn .btn:active {
  color: #2b2b2b !important;
}

.c-form-contact__btn .btn:hover {
  background-color: #4682b4;
  color: white !important;
}

.c-form-contact__btn .btn--back {
  background-color: #ebebeb;
  color: #6f8083;
}

.c-form-contact__confirm p {
  text-align: center;
}

.c-form-contact__confirm p.tel {
  margin-top: 1em;
  font-size: 1.8rem;
  /*
  font-family: "Lato", sans-serif;
*/
}

@media print,
screen and (min-width: 600px) {
  .c-form-contact__confirm p.tel {
    font-size: 2.4rem;
  }
}

.contact_caution {
  margin-top: 20px;
  color: #9a5016;
  font-weight: bold;
}

.btn_confirm {
  text-align: center;
}

.c-form-search {
  position: relative;
  width: 100%;
  height: 56px;
}

.c-form-search__box {
  height: 56px;
  width: 100%;
  padding: 0 10px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0;
  outline: 0;
  background: white;
  border: none;
  -webkit-appearance: none;
}

.c-form-search__submit {
  height: 56px;
  width: 56px;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0 28px 28px 0;
  background: white;
  border-top: 1px solid var(--color-primary);
  border-right: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  border-left: none;

  i {
    color: var(--color-primary);
  }
}

.c-form-search__submit:hover {
  cursor: pointer;
}

.c-form-search button {
  padding: 0;
}

.c-form-search input[type=text] {
  border: 1px solid var(--color-primary);
  padding: 0 20px;
  border-radius: 28px;
}

.c-form-application .title {
  font-weight: bold;
  font-size: 1.7rem;
  margin: 4em 0 0;
  border-bottom: 1px dotted #dcdcdc;
  padding-bottom: .8em;
}

.c-form-application .title span {
  font-size: 1.2rem;
  display: block;
  margin-top: .5em;
}

@media print,
screen and (min-width: 600px) {
  .c-form-application .title span {
    display: inline;
    font-size: 1.4rem;
    margin-left: 2em;
    margin-top: 0;
  }
}

.c-form-application input[type=text],
.c-form-application input[type=email],
.c-form-application textarea,
.c-form-application select {
  padding: 3px 6px;
  background-color: #f5f5f5;
  border: 1px solid #dcdcdc;
  border-radius: 0;
  font-size: 1.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  caret-color: #6f8083;
  max-width: 100%;
}

.c-form-application input[type=text]:focus,
.c-form-application input[type=email]:focus,
.c-form-application textarea:focus,
.c-form-application select:focus {
  outline: none;
  border: 1px solid #9a5016;
}

.c-form-application input[type=text].full,
.c-form-application input[type=email].full {
  width: 100%;
}

.c-form-application textarea {
  width: 100%;
}

.c-form-application textarea.exhibition_detail,
.c-form-application textarea.purpose_other {
  margin-top: .5em;
}

@media (min-width: 1024px) {
  .c-form-application select {
    font-size: 1.5rem;
  }
}

.c-form-application select.purpose_school {
  margin: .6em 0 0 1.6em;
  padding: 3px 10px;
}

.c-form-application dl {
  display: flex;
  flex-wrap: wrap;
}

.c-form-application dl dt {
  position: relative;
  width: 100%;
  padding: 1em 0 0;
  font-weight: bold;
}

@media print,
screen and (min-width: 600px) {
  .c-form-application dl dt {
    border-bottom: 1px dotted #dcdcdc;
    width: 30%;
    padding: 1em;
    background-color: #f5f5f5;
    font-size: 1.4rem;
  }
}

@media (min-width: 1024px) {
  .c-form-application dl dt {
    font-size: 1.5rem;
  }
}

.c-form-application dl dt span {
  margin-left: 10px;
  font-size: 1.1rem;
  line-height: 11px;
  color: white;
  background-color: #ba2636;
  border-radius: 2px;
  padding: .2em .3em;
}

@media print,
screen and (min-width: 600px) {
  .c-form-application dl dt span {
    position: absolute;
    top: 25px;
    right: 20px;
    line-height: 11px;
  }
}

.c-form-application dl dd {
  width: 100%;
  padding: .5em 0 1em;
  border-bottom: 1px dotted #dcdcdc;
}

@media print,
screen and (min-width: 600px) {
  .c-form-application dl dd {
    width: 70%;
    padding: 1em 0 1em 1em;
    font-size: 1.4rem;
  }
}

@media (min-width: 1024px) {
  .c-form-application dl dd {
    font-size: 1.5rem;
  }
}

.c-form-application dl dd ul.number li {
  margin-bottom: .6em;
  font-size: 1.4rem;
}

.c-form-application dl dd ul.number li:last-child {
  margin-bottom: 0;
}

.c-form-application dl dd ul.number li label {
  display: inline-block;
  width: 6em;
}

.c-form-application dl dd ::-moz-placeholder {
  font-size: 1.3rem;
  color: rgba(43, 43, 43, .3);
}

.c-form-application dl dd :-ms-input-placeholder {
  font-size: 1.3rem;
  color: rgba(43, 43, 43, .3);
}

.c-form-application dl dd ::placeholder {
  font-size: 1.3rem;
  color: rgba(43, 43, 43, .3);
}

.c-form-application dl dd .sub_area {
  margin: 10px 0 0 29px;
  font-size: 1.5rem;
}

.c-form-application dl dd .sub_area p {
  font-size: 1.4rem;
}

.c-form-application dl dd .note_area {
  margin: 10px 0 0;
}

.c-form-application dl dd .note_area p {
  font-size: 1.2rem;
  margin: 0 !important;
  line-height: 1.6;
  color: #696969;
}

@media print,
screen and (min-width: 600px) {
  .c-form-application dl dd .note_area p {
    font-size: 1.3rem;
    line-height: 1.8;
  }
}

.c-breadcrumb {
  width: 100%;
  margin: 0 auto;
  padding: 20px 16px;
  background-color: var(--color-bg--light);
}

.c-breadcrumb__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.c-breadcrumb-list {
  margin: 0;
  list-style: none;
  line-height: 1.1;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

@media (min-width: 768px) {
  .c-breadcrumb {
    padding: 20px 40px;
  }

  .c-breadcrumb-list {
    line-height: 1.3;
  }
}

@media (min-width: 1024px) {
  .c-breadcrumb {
    padding: 20px;
  }

  .c-breadcrumb-list {
    white-space: normal;
  }
}

.c-breadcrumb-list li {
  display: inline;
  list-style: none;
  font-size: 1.1rem;
  letter-spacing: .04em;
  position: relative;
  padding-right: 12px;
  margin-right: 8px;
  font-weight: 500;
}

@media print,
screen and (min-width: 600px) {
  .c-breadcrumb-list li {
    font-size: 1.2rem;
  }
}

.c-breadcrumb-list li:last-child::after {
  display: none;
}

.c-breadcrumb-list li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  width: 6px;
  height: 6px;
  border-right: 1px solid #2b2b2b;
  border-bottom: 1px solid #2b2b2b;
  transform: rotate(-45deg);
}

.c-breadcrumb-list li a {
  text-decoration: none;
  transition: ease-in .2s;
  color: var(--color-font);
}

.c-breadcrumb-list li a:hover {
  color: var(--color-primary);
}

.c-breadcrumb-list li br {
  display: none;
}

.c-breadcrumb span {
  font-size: 1.4rem;
}

.c-txt--right {
  text-align: right;
}

.c-txt--center {
  text-align: center;
}

.c-txt--sign {
  text-align: right;
  margin-top: 2em;
}

.c-txt--small {
  font-size: 1.3rem;
}

@media (min-width: 768px) {
  .c-txt--small {
    font-size: 1.4rem;
  }
}

.c-text--red {
  color: #ba2636;
}

.c-table-wrap {
  overflow-x: auto;
  display: block;
  margin-bottom: 50px;
}

.c-table--stack {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  background: white;
  margin: 20px 0;

  caption {
    font-weight: 500;
    font-size: 1.5rem;
  }

  th,
  td {
    display: block;
    width: 100%;
    font-size: 1.5rem;
    padding: 15px;
    vertical-align: top;
    box-sizing: border-box;
    border: 1px solid white;
  }

  th {
    font-weight: 500;
    background: var(--color-primary);
    color: white;
    text-align: center;
  }

  td {
    font-weight: 500;
    background-color: var(--color-bg);
    text-align: left;
  }
}


@media (min-width: 768px) {
  .c-table--stack {
    caption {
      font-size: 1.8rem;
    }

    th,
    td {
      display: table-cell;
      font-size: 1.8rem;
      border: 2px solid white;
    }

    th {
      width: 220px;
    }
  }
}

/* 料金表 */
.c-table-fee {
  width: 100%;

  caption {
    caption-side: bottom;
    text-align: left;
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 5px;
  }

  tr.tooltip {
    td {
      background-color: transparent;
      padding-top: 30px;

      span {
        position: relative;
        color: white;
        background-color: var(--color-accent);
        display: block;
        border-radius: 10px;
        padding: 10px 8px;
      }

      span::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -16px;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-style: solid;
        border-right: 10px solid transparent;
        border-left: 10px solid transparent;
        border-top: 16px solid var(--color-accent);
        border-bottom: 0;
      }

      span.payer {
        background-color: #F9A03F;

        &::after {
          border-top: 16px solid #F9A03F;
        }
      }

      span.payee {
        background-color: #32CDFF;

        &::after {
          border-top: 16px solid #32CDFF;
        }
      }
    }
  }

  th {
    background-color: var(--color-primary);
    color: white;
    padding: 10px 16px;
    width: 33.33%;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: .08em;
  }

  td {
    background-color: white;
    text-align: center;
    padding: 8px 16px;
    font-weight: 500;
    font-size: 1.6rem;
  }

  td.price {
    font-size: 1.4rem;

    span {
      font-size: 2.2rem;
    }
  }
}

@media (min-width: 1024px) {
  .c-table-fee {
    tr.tooltip {
      td {
        background-color: transparent;

        span {
          font-size: 1.8rem;
        }
      }
    }

    th {
      font-size: 1.8rem;
    }

    td {
      font-size: 1.8rem;
    }

    td.price {
      font-size: 1.6rem;

      span {
        font-size: 2.6rem;
      }
    }
  }
}

/* 保険 */
.c-table-insurance {
  border-collapse: collapse;
  width: 100%;
  min-width: 800px;

  caption {
    position: relative;
    font-weight: 500;
    font-size: 1.7rem;
    text-align: left;
    padding-left: 24px;
  }

  caption::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 16px;
    height: 16px;
    border-radius: 8px;
    background-color: var(--color-primary);
  }

  th,
  td {
    border: 1px solid var(--color-border);
    padding: .6em 1em;
    font-weight: 500;
    white-space: nowrap;
    text-align: center;
    line-height: 1.7;
    -webkit-text-size-adjust: 100%;
  }

  th {
    text-align: center;
    background-color: var(--color-primary);
    color: white;
  }

  td.text {
    white-space: wrap;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .c-table-insurance {
    caption {
      font-size: 2.0rem;
      margin: 20px 0 10px;
    }

    th,
    td {
      font-size: 1.7rem;
    }
  }
}

.c-table-survey {
  border-collapse: collapse;
  margin-bottom: 40px;
}

.c-table-survey th,
.c-table-survey td {
  border: 1px solid #6f8083;
  padding: 10px;
  font-size: 1.4rem;
}

@media (min-width: 1024px) {

  .c-table-survey th,
  .c-table-survey td {
    padding: 12px 14px;
    font-size: 1.6rem;
  }
}

.c-table-survey th {
  background-color: #f5f5f5;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .c-table-survey th {
    padding: 12px 20px;
  }
}




#page_top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 20;
}

@media print,
screen and (min-width: 600px) {
  #page_top {
    right: 20px;
    bottom: 20px;
  }
}

.c-page-top {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 1.4;
  transition: ease-in .3s;
  background-color: var(--color-primary);
  border-radius: 30px;
  color: white;
  position: relative;
}

.c-edit-link {
  text-align: center;

  a {
    display: inline-block;
    background-color: var(--color-primary);
    color: white;
    font-weight: 500;
    font-size: 1.3rem;
    padding: 10px 20px;
    border-radius: 21px;
  }
}

.p-top-eyecatch {
  position: relative;
  background: #FFF0F3;
  min-height: 300px;
  width: 100%;
  padding: 40px 20px 80px;
}

@media (min-width: 768px) {
  .p-top-eyecatch {
    padding: 60px 40px 80px;
  }
}

@media (min-width: 1024px) {
  .p-top-eyecatch {
    padding: 40px 20px 80px;
  }
}

.p-top-eyecatch__curve {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  display: block;
}

@media (min-width: 1024px) {
  .p-top-eyecatch__curve {
    height: 100px;
  }
}

.p-top-eyecatch__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 40px 0 0;
}

@media (min-width: 1024px) {
  .p-top-eyecatch {
    padding: 60px 20px 100px;

    h2 {
      font-size: 3.8rem;
      line-height: 52px;
    }
  }

  .p-top-eyecatch__inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 80px;
    padding: 50px 0 40px;
  }
}

.p-top-eyecatch__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
}

.p-top-eyecatch__wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wave-inner {
  animation: waveMove 12s linear infinite;
}

.p-top-eyecatch__wave path {
  fill: #fff;
}

@keyframes waveMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-1440px);
  }
}

.p-top-eyecatch__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;

  h2 {
    font-size: clamp(2.6rem, 7vw, 3.4rem);
    font-weight: 500;
    line-height: 1.6;

    span {
      color: var(--color-primary);
    }
  }

  p {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 26px;

    span {
      color: var(--color-primary);
      font-size: 1.3rem;
      font-weight: 500;
      line-height: 18px;
      display: inline;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.80);
      padding: 6px 20px;
    }
  }
}

@media (min-width: 768px) {
  .p-top-eyecatch__text {
    h2 {
      line-height: 1.6;
    }

    p {
      font-size: 2.0rem;
      line-height: 36px;

      span {
        font-size: 1.6rem;
      }
    }
  }
}

@media (min-width: 1024px) {
  .p-top-eyecatch__text {
    width: calc(60% - 40px);
    gap: 25px;

    p {
      font-size: 1.8rem;
      line-height: 34px;

      span {
        font-size: 1.6rem;
        line-height: 20px;
      }
    }
  }
}

.p-top-eyecatch__image {
  position: relative;
  width: 100%;
  padding-bottom: 140px;

  img {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .p-top-eyecatch__image {
    padding-bottom: 40px;

    img {
      width: 70%;
    }
  }
}

@media (min-width: 1024px) {
  .p-top-eyecatch__image {
    width: calc(40% - 40px);
    padding-bottom: 40px;

    img {
      width: 100%;
    }
  }
}

.p-top-eyecatch__badge {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  background-image: url(img/bg-badge.png);
  background-size: 300px 200px;
  width: 300px;
  height: 200px;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;

  span {
    font-size: 1.9rem;
    font-weight: 500;
    text-align: center;
    color: white;
  }

  a {
    color: #000;
    font-weight: 500;
  }

}

@media (min-width: 768px) {
  .p-top-eyecatch__badge {
    transform: translateX(0);
    left: auto;
    right: 0;
    bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .p-top-eyecatch__badge {
    right: -100px;
    bottom: 0;

    span {
      font-size: 2.2rem;
      line-height: 32px;
    }

    a {
      line-height: 22px;
    }
  }
}

.p-top-eyecath__menu {
  width: 100%;
}

.p-top-eyecath__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-top: 30px;

  a i {
    margin-right: 10px;
  }

  .c-btn {
    width: 80%;
    padding: 20px 46px 20px 28px;
    border-radius: 33px;
    letter-spacing: .08em;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .p-top-eyecath__button {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
  }
}

@media (min-width: 1024px) {
  .p-top-eyecath__button {
    flex-direction: row;
    justify-content: center;
    gap: 60px;
    margin-top: 0;

    .c-btn {
      width: 400px;
      padding: 20px 46px 20px 28px;
      font-size: 2.0rem;
      border-radius: 43px;
    }
  }
}

.p-top-menu__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;

  li {
    position: relative;
  }

  li::before {
    font-family: "Font Awesome 6 Free";
    content: "\f105";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 900;
    color: white;
  }

  li a {
    display: block;
    padding: 15px 20px;
    border: 1px solid var(--color-primary);
    border-right: 40px solid var(--color-primary);
    background-color: white;
    font-weight: 500;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
    transition: .3s ease-in;
  }

  li a:hover {
    background-color: var(--color-bg);
  }
}

@media (min-width: 768px) {
  .p-top-menu__list {
    li a {
      font-size: 1.8rem;
    }
  }
}

@media (min-width: 1024px) {
  .p-top-menu {
    padding: 0 20px 40px;
  }

  .p-top-menu__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;

    li {
      width: calc(33.33% - 40px);
    }

    li::before {
      right: 18px;
      font-size: 2.4rem;
    }

    li a {
      display: block;
      padding: 20px 30px;
      border-right: 50px solid var(--color-primary);
      font-size: 2.0rem;
    }
  }
}

.p-top-members {
  width: 100%;
}

.p-top-members__inner {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.p-top-members__contents {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-top-members__card {
  display: flex;
  padding: 40px 20px;
  flex-direction: column;
  align-items: center;
  justify-content: stretch;
  gap: 20px;
  border-radius: 24px;
  background: var(--color-bg--light);

  h3 {
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    text-align: center;
    margin: 0!important;

    span {
      color: var(--color-primary);
      font-size: 1.5rem;
      font-weight: 500;
      line-height: 19.5px;
      display: block;
      margin-top: 10px;
    }
  }

  p {
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    width: 100%;
  }

  ul {
    list-style: none;
    margin: 0;
    padding: 0 !important;
    width: 100%;
  }

  ul li {
    position: relative;
    font-weight: 500;
    font-size: 1.5rem !important;
    padding-left: 1.4em !important;
    line-height: 24px !important;
    ;
    margin-bottom: 12px;

    span {
      display: block;
      font-size: 1.3rem;

    }
  }

  ul li::before {
    font-family: "Font Awesome 6 Free";
    content: "\f058";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
  }

  .image {
    margin-top: auto;
  }

  img {
    width: 160px;
  }
}

@media (min-width: 768px) {

  .p-top-members__contents {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
  }


  .p-top-members__card {
    padding: 40px;
    width: calc(50% - 20px);
  }

  .p-top-members__card:last-of-type {
    width: 100%;

    p {
      text-align: center;
    }
  }
}

@media (min-width: 1024px) {
  .p-top-members__contents {
    gap: 40px;
  }

  .p-top-members__card {
    display: flex;
    padding: 40px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    align-self: stretch;

    ul li {
      font-size: 1.6rem !important;
    }

    img {
      width: 250px;
    }
  }
}

/* ご利用の流れ */
.p-top-flow {
  position: relative;
  width: 100%;
  background: var(--color-bg);
  padding: 100px 16px 60px;
}

.p-top-flow__curve {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  display: block;
}

@media (min-width: 768px) {
  .p-top-flow {
    padding: 100px 40px 60px;
  }
}

@media (min-width: 1024px) {
  .p-top-flow {
    padding: 120px 20px 80px;
  }

  .p-top-flow__curve {
    height: 100px;
  }
}

.p-top-flow__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
  align-self: stretch;
}

.p-top-flow__contents {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
  align-self: stretch;

}

.p-top-flow__card {
  position: relative;
  display: flex;
  padding: 40px 24px 30px 24px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  background-color: white;
  border-radius: 24px;

  img {
    width: 40%;
  }

  h3 {
    text-align: center;
    font-size: 2.0rem !important;
    ;
    font-style: normal;
    font-weight: 500;
    line-height: 25.5px;
    margin: 0 !important;
  }

  p {
    text-align: center;
    font-size: 1.3rem !important;
    ;
    font-style: normal;
    font-weight: 400;
    line-height: 21.125px;
  }
}

@media (min-width: 768px) {
  .p-top-flow__contents {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 40px;
  }

  .p-top-flow__card {
    width: calc(50% - 20px);
    gap: 30px;

    p {
      font-size: 1.5rem;
      line-height: 24px;
    }
  }
}

@media (min-width: 1024px) {
  .p-top-flow__contents {
    gap: 30px;
  }

  .p-top-flow__card {
    padding: 50px 24px 40px 24px;
    gap: 20px;
    width: calc(25% - 25px);

    img {
      width: 50%;
    }

    p {
      font-size: 1.4rem !important;
      ;
      line-height: 24px !important;
      ;
    }
  }
}

.p-top-flow__number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  width: 50px;
  height: 50px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 25px;
  background: var(--color-primary);

  span {
    font-family: var(--font-english);
    color: #FFF;
    text-align: center;
    font-family: Quicksand;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
  }
}

/* 援助活動の内容 */
.p-top-service {
  width: 100%;
  padding: 0 16px;
}

.p-top-service__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  align-self: stretch;
}

@media (min-width: 768px) {
  .p-top-service {
    padding: 0 40px;
  }

  .p-top-service__inner {
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .p-top-service {
    padding: 0;
  }

  .p-top-service__inner {
    flex-direction: row;
    align-items: center;
    gap: 80px;

    .c-heading-top h2 {
      text-align: left;
    }
  }
}

.p-top-service__image {
  width: 200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .p-top-service__text {
    display: flex;
    flex-direction: column;

    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .p-top-service__image {
    width: 280px;
    order: 1;
  }

  .p-top-service__text {
    align-items: flex-start;
    order: 2;
    gap: 60px;
  }
}

.p-top-service__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-top-service__list li {
  position: relative;
  padding-left: 52px;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.p-top-service__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 40px;
  height: 40px;
  background-color: var(--color-bg);
  border-radius: 20px;
  font-family: "Font Awesome 6 Free";
  font-size: 18px;
  font-style: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-primary)
}

.p-top-service__list li:first-of-type::before {
  content: '\f133';
}

.p-top-service__list li:nth-of-type(2)::before {
  content: '\f017';
}

.p-top-service__list li:nth-of-type(3)::before {
  content: '\f500';
  font-weight: 900;
}

.p-top-service__list li:nth-of-type(4)::before {
  content: '\f004';
}

@media (min-width: 768px) {
  .p-top-service__list {
    gap: 30px;
  }

  .p-top-service__list li {
    padding-left: 56px;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
  }

  .p-top-service__list li::before {
    top: -6px;
  }
}

@media (min-width: 1024px) {
  .p-top-service__list {
    gap: 40px;
  }

  .p-top-service__list li {
    padding-left: 66px;
    font-size: 1.9rem;
  }

  .p-top-service__list li::before {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    top: -12px;
  }
}

/* 利用料金 */
.p-top-price {
  position: relative;
  width: 100%;
  background: var(--color-bg);
  padding: 100px 16px 60px;

  .c-heading-top {
    margin-bottom: 30px;
  }
}

.p-top-price__curve {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  display: block;
}

@media (min-width: 768px) {
  .p-top-price {
    padding: 100px 40px 60px;
  }
}

@media (min-width: 1024px) {
  .p-top-price {
    padding: 120px 20px 80px;

    .c-heading-top {
      margin-bottom: 50px;
    }
  }

  .p-top-price__curve {
    height: 100px;
  }
}

.p-top-price__inner {
  max-width: 880px;
  margin: 0 auto;
}

.p-top-price table {
  width: 100%;
  min-width: 880px;

  caption {
    caption-side: bottom;
    text-align: left;
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 5px;
  }

  tr.tooltip {
    td {
      background-color: transparent;

      span {
        position: relative;
        color: white;
        background-color: var(--color-accent);
        display: block;
        border-radius: 10px;
        padding: 6px;
      }

      span::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -16px;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-style: solid;
        border-right: 10px solid transparent;
        border-left: 10px solid transparent;
        border-top: 16px solid var(--color-accent);
        border-bottom: 0;
      }
    }
  }

  th {
    background-color: var(--color-primary);
    color: white;
    padding: 16px;
    width: 33.33%;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: .08em;
  }

  td {
    background-color: white;
    text-align: center;
    padding: 8px 16px;
    font-weight: 500;
    font-size: 1.6rem;
  }

  td.price {
    font-size: 1.4rem;

    span {
      font-size: 2.2rem;
    }
  }
}

@media (min-width: 1024px) {
  .p-top-price table {

    th {
      font-size: 1.8rem;
    }

    td {
      font-size: 1.8rem;
    }

    td.price {
      font-size: 1.6rem;

      span {
        font-size: 2.6rem;
      }
    }
  }
}

.p-top-price__option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .p-top-price__option {
    flex-direction: row;
  }
}

.p-top-price__support,
.p-top-price__subsidy {
  display: flex;
  padding: 40px 30px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 30px;
  align-self: stretch;
  border-radius: 24px;
  background: #FFF;
  box-shadow: 0 1px 2px -1px rgba(0, 0, 0, 0.10);
}

.p-top-price__support {
  border-radius: 24px 24px 0 0;
  border-bottom: 1px solid #F5E6EA;
}

.p-top-price__subsidy {
  border-radius: 0 0 24px 24px;
}

@media (min-width: 768px) {

  .p-top-price__support,
  .p-top-price__subsidy {
    display: flex;
    width: 50%;
    padding: 40px 30px;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    flex-shrink: 0;
  }

  .p-top-price__support {
    border-radius: 24px 0 0 24px;
    border-right: 1px solid #F5E6EA;
    border-bottom: none;
  }

  .p-top-price__subsidy {
    border-radius: 0 24px 24px 0;
  }
}

@media (min-width: 1024px) {

  .p-top-price__support,
  .p-top-price__subsidy {
    align-items: flex-start;
    padding: 40px;
  }
}

.p-top-price__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;

  img.money {
    width: 52px;
  }

  img.paper {
    width: 37px;
  }

  p {
    font-size: 1.8rem;
    font-weight: 500;
  }
}

@media (min-width: 768px) {
  .p-top-price__title {
    p {
      font-size: 2.0rem;
      font-weight: 500;
    }
  }
}

@media (min-width: 1024px) {
  .p-top-price__title {
    flex-direction: row;

    p {
      font-size: 1.8rem;
      font-weight: 500;
    }
  }
}

.p-top-price__text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;

  span {
    color: var(--color-primary);
  }
}

@media (min-width: 768px) {
  .p-top-price__text {
    font-size: 1.6rem;
  }
}

@media (min-width: 1024px) {
  .p-top-price__text {
    font-size: 1.6rem;
  }
}

.p-top-price__contact {
  color: var(--color-primary);
  white-space: nowrap;
  font-size: clamp(1.1rem, 7vw, 1.3rem);
  font-weight: 500;
  line-height: 19.5px;
  /* 150% */
  background-color: var(--color-bg);
  padding: 16px 10px;
  width: 100%;
  text-align: center;
  border-radius: 26px;
}

@media (min-width: 1024px) {
  .p-top-price__contact {
    font-size: 1.5rem;
  }
}

.p-top-support,
.p-top-safe {
  position: relative;
  max-width: 960px;
  padding: 40px 20px 20px;
  border-radius: 24px;
  margin: 0 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  background-color: white;

  h3 {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.0rem;
    font-weight: 500;
    line-height: 34px;
    background-color: white;
    padding: 0 10px;
    white-space: nowrap;
  }

  p {
    font-size: 1.4rem;
    line-height: 24px;
  }

  img {
    margin: 0 auto;
  }
}

.p-top-support {
  border: 4px solid var(--color-primary);

  img {
    width: 120px;
  }
}

.p-top-safe {
  border: 4px solid var(--color-accent);

  img {
    width: 80px;
  }
}

@media (min-width: 768px) {

  .p-top-support,
  .p-top-safe {
    margin: 0 40px;
    padding: 40px;
    gap: 30px;

    h3 {
      font-size: 2.4rem;
    }

    p {
      font-size: 1.6rem;
      line-height: 1.8;
      font-weight: 500;
    }
  }
}

@media (min-width: 1024px) {

  .p-top-support,
  .p-top-safe {
    flex-direction: row;
    padding: 60px;
    gap: 80px;

    h3 {
      font-size: 2.8rem;
      padding: 0 20px;
    }

    p {
      font-size: 1.7rem;
    }
  }

  .p-top-support {
    img {
      width: 200px;
    }
  }

  .p-top-safe {
    img {
      width: 150px;
    }
  }
}

.p-top-news {
  width: 100%;
  padding: 60px 20px 120px 20px;
  background-image: linear-gradient(#FCEEF1 1px, transparent 1px), linear-gradient(90deg, #FCEEF1 1px, transparent 1px);
  background-size: 5px 5px;
  background-color: #FFF9FA;
}

.p-top-news__inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;

  .c-heading-top h2 {
    text-align: left;
  }
}

@media (min-width: 768px) {
  .p-top-news {
    padding: 80px 40px 200px 40px;
  }

  .p-top-news__inner {
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .p-top-news {
    padding: 80px 0 200px 0;
  }
}

.p-top-news__btn {
  position: absolute;
  top: 0;
  right: 0;
  text-align: right;
}


.p-top-heart {
  display: flex;
  width: 100%;
  padding: 80px 16px 50px 16px;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  background: linear-gradient(180deg, #E8768E 0%, #D8607A 100%);
  position: relative;

  h2 {
    color: #FFF;
    text-align: center;
    font-family: "Zen Kaku Gothic New";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    /* 266.667% */
  }

  p {
    color: rgba(255, 255, 255, 0.80);
    font-size: 17px;
    text-align: center;
    font-family: "Zen Kaku Gothic New";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24.375px;
    /* 174.107% */
  }
}

@media (min-width: 768px) {
  .p-top-heart {
    padding: 100px 20px 60px;
    gap: 40px;

    h2 {
      font-size: 2.6rem;
      margin-bottom: 20px;
    }

    p {
      line-height: 30px;
      font-size: 1.7rem;
      line-height: 32px;
    }
  }
}

@media (min-width: 1024px) {
  .p-top-heart {
    padding: 140px 20px 60px;

    h2 {
      font-size: 3.2rem;
      margin-bottom: 22px;
    }
  }
}

.p-top-heart__illust {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);

  img {
    width: 100px;
  }
}

@media (min-width: 1024px) {
  .p-top-heart__illust {
    top: -100px;

    img {
      width: 140px;
    }
  }
}

.p-top-heart__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

@media print,
screen and (min-width: 600px) {
  .p-top-heart__button {
    flex-direction: row;
  }
}

.p-top-link {
  width: 100%;
  background-color: var(--color-bg);
  padding: 50px 0;
}

@media (min-width: 768px) {
  .p-top-link {
    padding: 50px 40px;
  }
}

@media (min-width: 1024px) {
  .p-top-link {
    padding: 50px 20px;
  }
}

.p-top-link__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.p-top-link__list {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  list-style: none;

  li {
    width: 50%;
  }

  li:hover {
    opacity: .7;
  }
}

@media print,
screen and (min-width: 600px) {
  .p-top-link__list li {
    width: calc((100% / 3) - 20px);
  }
}

@media (min-width: 1024px) {
  .p-top-link {
    padding: 100px 0;
  }

  .p-top-link__list {
    gap: 20px;
  }

  .p-top-link__list li {
    width: calc((100% / 5) - 20px);
  }
}

.p-page {
  section + section {
    margin-top: 40px;
  }

  h2,
  h3,
  h4 {
    margin-bottom: 40px;
    font-size: 1.8rem;
  }

  * + h2,
  * + h3,
  * + h4 {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  p {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.8;
  }

  ul {
    padding-left: 20px;

    li {
      font-size: 1.5rem;
      font-weight: 500;
      line-height: 27px;
    }
  }

  ol {
    padding-left: 20px;

    li {
      font-size: 1.5rem;
      font-weight: 500;
      line-height: 27px;
    }
  }
}

@media (min-width: 768px) {
  .p-page {
    section + section {
      margin-top: 80px;
    }

    p {
      font-size: 1.7rem;
    }
  }
}

@media (min-width: 1024px) {
  .p-page {
    section + section {
      margin-top: 100px;
    }

    h2,
    h3,
    h4 {
      margin-bottom: 40px;
      font-size: 2.4rem;
    }

    p {
      font-size: 1.8rem;
      letter-spacing: 0.08px;
    }

    ul {
      li {
        font-size: 1.8rem;
        line-height: 38px;
        letter-spacing: 0.08px;
      }
    }

    ol {
      li {
        font-size: 1.8rem;
        line-height: 38px;
        letter-spacing: 0.08px;
      }
    }
  }
}

/* ファミサポとは？ */
.p-about__heading {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 5px;

  span {
    background-color: white;
    display: inline-block;
    font-size: 2.0rem;
    padding: 2px 6px;
    opacity: 0;
    transform: translateY(30px);
  }
}

@media (min-width: 768px) {
  .p-about__heading {
    gap: 8px;

    span {
      font-size: 2.6rem;
      padding: 4px 10px;
    }
  }
}

@media (min-width: 1024px) {
  .p-about__heading {

    span {
      font-size: 3.2rem;
    }
  }
}

.p-about-head {
  position: relative;
  padding: 80px 0 0;
}

.p-about-illust {
  width: 100%;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;

  img {
    width: 60%;
  }
}

@media print,
screen and (min-width: 600px) {
  .p-about-head {
    padding: 130px 0 0;
  }

  .p-about-illust {
    top: -70px;

    img {
      width: 40%;
    }
  }
}

@media (min-width: 1024px) {
  .p-about-head {
    padding: 150px 0 0;
  }

  .p-about-illust {
    top: -100px;

    img {
      width: 40%;
    }
  }
}

.p-about-case {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0 !important;
  margin: 20px 0 0 !important;
  gap: 20px;

  li {
    position: relative;
    background-color: white;
    padding: 16px;
    border-radius: 10px;
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    justify-content: top;

    img {
      width: 60%;
      margin: 0 auto;
    }

    p {
      font-size: 1.4rem;
      line-height: 22px;
    }
  }

  li:before {
    content: '';
    position: absolute;
    top: -3px;
    left: -13px;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-bottom: 20px solid var(--color-primary);
    border-top: 0;
    transform: rotate(315deg);
  }
}

@media (min-width: 768px) {
  .p-about-case {
    flex-direction: row;
    margin: 30px 0 0 !important;
    gap: 30px;

    li {
      width: calc(50% - 15px);
      padding: 20px 30px 30px;

      img {
        width: 40%;
      }

      p {
        font-size: 1.6rem;
        line-height: 25px;
      }
    }
  }
}

@media (min-width: 1024px) {
  .p-about-case {
    li {
      width: calc(25% - 30px);
      padding: 20px;

      img {
        width: 60%;
      }

      p {
        font-size: 1.6rem;
        line-height: 25px;
      }
    }
  }
}

.p-about-fee {
  img {
    margin: 0 0 30px;
  }
}

.p-about-service {
  margin: 0 auto;
  padding: 40px 20px 20px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  background-color: white;
  padding: 30px 20px;

  h3 {
    position: relative;
    color: var(--color-font);
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 34px;
    text-align: center;
    padding: 0 0 20px;
    margin: 0 0 20px;

    span {
      display: block;
      font-size: 1.6rem;
      color: var(--color-primary);
    }
  }

  h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--color-primary);
  }

  p {
    font-size: 1.5rem;
    line-height: 28px;
  }

  p + p {
    margin-top: 20px;
  }

  p.button {
    text-align: center;
  }

  .image {
    text-align: center;
  }

  img {
    width: 30%;
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .p-about-service {
    flex-direction: row;
    align-items: center;
    padding: 40px;
    gap: 40px;

    .text {
      flex: 1;
    }

    .image {
      width: 20%;
    }

    h3 {
      text-align: left;
      font-size: 2.0rem;
    }

    h3::after {
      left: 0;
      transform: translateX(0);
      width: 80px;
    }

    p.button {
      text-align: left;
    }

    img {
      width: 100%;
    }
  }
}

@media (min-width: 1024px) {
  .p-about-service {
    padding: 50px;
    gap: 60px;

    h3 {
      text-align: left;
      font-size: 2.6rem;
      padding: 0 0 30px;
      margin: 0 0 30px;

      span {
        font-size: 2.0rem;
        margin-bottom: 10px;
      }
    }

    h3::after {
      width: 100px;
    }

    p {
      font-size: 1.7rem;
      line-height: 34px;
    }

    p + p {
      margin-top: 30px;
    }

    .image {
      width: 200px;
    }
  }
}

.p-about-button {
  text-align: center;

  .c-btn {
    width: 80%;
    padding: 20px 46px 20px 28px;
    border-radius: 33px;
    letter-spacing: .08em;
  }
}

@media (min-width: 1024px) {
  .p-about-button {
    .c-btn {
      width: 400px;
      padding: 20px 46px 20px 28px;
      font-size: 2.2rem;
      border-radius: 43px;
    }
  }
}

/* 事業概要 */
.p-overview {
  position: relative;
  margin-bottom: 80px;
  padding: 20px 20px 110px;
}

.p-overview__accent {
  width: 100%;
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);

  img {
    display: block;
    margin: 0 auto;
    width: 280px;
  }
}

@media (min-width: 1024px) {
  .p-overview {
    padding: 80px 80px 180px;
    margin-bottom: 180px;
  }

  .p-overview__accent {
    bottom: -100px;

    img {
      width: 400px;
    }
  }
}

.p-overview__table {
  width: 100%;
  min-width: 840px;
  border: 1px solid white;
  border-collapse: collapse;

  caption {
    color: var(--color-font);
    text-align: left;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
  }

  th,
  td {
    text-align: center;
    font-weight: 500;
    padding: 8px 0;
    width: 11%;
    border-bottom: 1px solid var(--color-bg);
    border-right: 1px solid var(--color-bg);
    font-size: 1.5rem;
    letter-spacing: 1.2px;
  }

  th {
    background: #CFE99F;
  }

  td {
    background-color: white;
  }

  td.total {
    background-color: #F7F7A2;
    border-color: white;
  }
}

@media (min-width: 1024px) {
  .p-overview__table {
    caption {
      font-size: 2.2rem;
      margin-bottom: 30px;
    }

    th,
    td {
      padding: 10px 0;
      font-size: 1.7rem;
    }
  }
}

/* ご利用案内 */
.p-guide__table {
  width: 100%;
  min-width: 800px;
  border: 1px solid white;
  border-collapse: collapse;

  th,
  td {
    text-align: center;
    font-weight: 500;
    padding: 8px;
    border-bottom: 1px solid white;
    border-right: 1px solid white;
    font-size: 1.5rem;
  }

  th {
    background: #CFE99F;
  }

  td {
    background-color: var(--color-bg);
  }

  td.case {
    background-color: #F7F7A2;
    border-color: white;
  }
}

@media (min-width: 1024px) {
  .p-guide__table {

    th,
    td {
      padding: 12px 10px;
      font-size: 1.7rem;
      line-height: 1.7;
    }
  }
}

.p-guide__nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 !important;
  margin: 0 0 40px !important;

  li {
    width: calc(50% - 10px);
  }

  li a {
    display: block;
    background-color: white;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
    border: 2px solid white;
    transition: .2s ease-in;
    font-weight: 500;
    font-size: 1.3rem;
  }

  li a:hover {
    border: 2px solid var(--color-primary);
    background-color: var(--color-bg--light);
  }

  li.current_page_item a {
    border: 2px solid var(--color-primary);
  }
}

@media (min-width: 768px) {
  .p-guide__nav {
    margin: 0 0 60px !important;

    li a {
      font-size: 1.6rem;
    }
  }
}

@media (min-width: 1024px) {

  .p-guide__nav {
    margin: 0 0 100px !important;

    li {
      width: calc(33.33% - 10px);
    }

    li a {
      font-size: 1.7rem;
    }
  }
}

/* よくある質問 */
.p-faq__list dt {
  position: relative;
  padding: 16px 38px 16px 56px;
  background-color: white;
  font-weight: 500;
  cursor: pointer;
  border-radius: 12px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .p-faq__list dt {
    padding: 30px 60px 30px 76px;
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .p-faq__list dt {
    padding: 40px 80px 40px 100px;
    margin-bottom: 30px;
    font-size: 1.8rem;
  }
}

.p-faq__list dt::before {
  content: "Q";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  background-color: var(--color-primary);
  width: 28px;
  height: 28px;
  text-align: center;
  border-radius: 50%;
  font-size: 1.6rem;
  font-family: var(--font-english);
  font-weight: 600;
}

@media (min-width: 768px) {
  .p-faq__list dt::before {
    left: 30px;
  }
}

@media (min-width: 1024px) {
  .p-faq__list dt::before {
    left: 40px;
    width: 40px;
    height: 40px;
    font-size: 2.0rem;
  }
}

.p-faq__list dt::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  color: white;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .p-faq__list dt::after {
    width: 12px;
    height: 12px;
    right: 40px;
    font-size: 2.6rem;
  }
}

.p-faq__list dt.open {
  background-color: white;
}

.p-faq__list dt.open::after {
  transform: translateY(-50%) rotate(225deg);
}

.p-faq__list dd {
  display: none;
  padding: 20px;
  margin-bottom: 10px;
  border: 3px solid var(--color-primary);
  border-radius: 12px;
  background-color: white;
  font-weight: 500;
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .p-faq__list dd {
    padding: 30px;
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .p-faq__list dd {
    padding: 40px;
    margin-bottom: 30px;
    font-size: 1.8rem;
  }
}

.p-faq__list dd p {
  margin-bottom: 0;
  letter-spacing: 0.08em;
  font-weight: 500;
}

@media (min-width: 768px) {
  .p-faq__list dd p {
    font-size: 1.8rem;
    line-height: 2;
  }
}

.p-faq__list dd p + p {
  margin-top: 10px;
}

/* よくある質問 カテゴリーグループ */
.p-faq__group + .p-faq__group {
  margin-top: 40px;
}

.p-faq__group-title {
  padding-left: 12px;
  border-left: 4px solid var(--color-accent);
}

@media (min-width: 768px) {
  .p-faq__group + .p-faq__group { margin-top: 60px; }
}

@media (min-width: 1024px) {
  .p-faq__group + .p-faq__group { margin-top: 80px; }
}

/* 施設預かり */
.p-facility__header {
  display: flex;
  flex-direction: column;
  gap: 20px;

  h5 {
    font-size: 1.8rem;
    font-weight: 500;
    margin: 0 0 20px;
    position: relative;
  }

  h5::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--color-primary);
  }
}

.p-facility__info {
  p {
    margin: 0;
  }
}

@media (min-width: 1024px) {
  .p-facility__header {
    flex-direction: row;
    justify-content: space-between;

    h5 {
      font-size: 2.8rem;
    }

    h5::after {
      bottom: -16px;
      width: 80px;
      height: 5px;
    }
  }
}

.p-facility__sns {
  display: flex;
  gap: 10px;
  padding: 0 !important;

  li a {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-primary);
    width: 44px;
    height: 44px;
    border-radius: 22px;
    text-decoration: none;
    background-color: var(--color-bg--light);
  }

  li a:hover {
    background-color: var(--color-bg);
  }
}

@media (min-width: 1024px) {
  .p-facility__sns {
    li a {
      width: 60px;
      height: 60px;
      border-radius: 30px;
    }
  }
}

.p-facility__image {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

@media (min-width: 1024px) {
  .p-facility__image {
    gap: 20px;
    justify-content: space-between;

    img {
      width: calc(33.33% - 15px);
    }
  }
}

.p-facility__detail {
  display: flex;
  flex-direction: column;
  margin-top: 20px;

  dt,
  dd {
    width: 100%;
    font-weight: 500;
  }

  dt {
    background-color: var(--color-bg);
    padding: 10px;
    border-top: 2px solid var(--color-border);
  }

  dd {

    padding: 15px 0;
  }
}

@media (min-width: 1024px) {
  .p-facility__detail {
    flex-direction: row;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--color-border);

    dt,
    dd {
      font-size: 1.8rem;
    }

    dt {
      width: 140px;
      padding: 18px 0;
      background-color: transparent;
    }

    dd {
      border-top: 2px solid var(--color-border);
      width: calc(100% - 140px);
      padding: 18px 0;
    }
  }
}

.p-facility__days {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 !important;
  margin: 0;
  list-style: none;
}

.p-facility__days li {
  min-width: 2.5em;
  padding: 0.2em 0.7em;
  border-radius: 2px;
  background: var(--color-primary);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}

.p-facility__days .is-holiday {
  background: #eeeaec;
  color: #b4aeb1;
}

ul.p-facility__supplies {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 !important;
  margin: 0;
}

ul.p-facility__supplies li {
  padding: 2px 10px;
  border-radius: 8px;
  font-size: 1.4rem;
  background-color: var(--color-accent);
  color: white;
}

ul.p-facility__supplies .is-none {
  background: #eeeaec;
  color: #b4aeb1;
}

@media (min-width: 1024px) {
  ul.p-facility__supplies li {
    padding: 2px 14px;
    font-size: 1.5rem;
  }
}

/* 入会手続き */
.p-join-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;

  a {
    text-decoration: none;
  }

  a:hover,
  a:focus,
  a:visited {
    color: white !important;
  }
}

.p-join-nav__button {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 120px;
  padding: 24px 32px;
  background: #E87698;
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  transition: .3s;
}

.p-join-nav__button:hover {
  opacity: .9;
  transform: translateY(-3px);
}

.p-join-nav__illust {
  flex-shrink: 0;
  margin-right: 10px;

  img {
    width: 60px;
  }
}

.p-join-nav__text {
  flex: 1;
  font-size: 1.6rem;
  font-weight: 500;
}

.p-join-nav__arrow {
  font-size: 2rem;
}

.p-join-tel {
  padding: 20px;
  background: #FFF0F3;
  border-radius: 20px;
  text-align: center;

  a {
    text-decoration: none;
  }
}

.p-join-tel__title {
  margin-bottom: 10px;
  font-size: 1.3rem !important;
  color: var(--color-font);
}

.p-join-tel__number {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--color-primary);
  font-weight: 500;
  line-height: 1;
  font-family: var(--font-english);
  font-size: 2.8rem;
  margin: 0 !important;
}

.p-join-tel__icon {
  font-size: .8em;
}

@media (min-width: 768px) {
  .p-join-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-join-nav__illust {
    img {
      width: 60px;
    }
  }

  .p-join-nav__text {
    font-size: 2.0rem;
  }
}

@media (min-width: 1024px) {
  .p-join-nav__illust {
    img {
      width: 90px;
    }
  }

  .p-join-nav__text {
    font-size: 2.2rem;
  }

  .p-join-tel__title {
    font-size: 1.5rem !important;
  }

  .p-join-tel__number {
    font-size: 3.4rem;
  }
}

ol.p-join-flow {
  padding: 0;
  margin-top: 60px;

  li {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  li::before {
    content: '\f103';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--color-primary);
    font-size: 3.0rem;
  }

  li:last-of-type::before {
    display: none;
  }
}

@media (min-width: 1024px) {
  ol.p-join-flow {
    margin-top: 80px;

    li {
      flex-direction: row;
    }

    li::before {
      bottom: -20px;
      left: 140px;
      transform: translateX(0);
    }
  }
}

.p-join-flow__step {
  background-image: linear-gradient(135deg, transparent 18.75%, #EB899E 0 31.25%, transparent 0), repeating-linear-gradient(45deg, #EB899E -6.25% 6.25%, #E8768E 0 18.75%);
  background-size: 10px 10px;
  background-color: var(--color-primary);
  border-radius: 10px 10px 0 0;
  padding: 16px;

  h5 {
    text-align: center;
    color: white;
    font-weight: 500;
    font-size: 1.7rem;
    margin: 0;

    span {
      display: block;
      font-family: var(--font-english);
      text-transform: uppercase;
      line-height: 1.6;
      font-size: 1.4rem;
      letter-spacing: .08em;
    }
  }
}

@media (min-width: 768px) {
  .p-join-flow__step {
    padding: 20px;

    h5 {
      font-size: 1.9rem;

      span {
        font-size: 1.5rem;
      }
    }
  }
}

@media (min-width: 1024px) {
  .p-join-flow__step {
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px 0 0 10px;

    h5 {
      font-size: 2.0rem;

      span {
        font-size: 1.7rem;
        line-height: 1.4;
      }
    }
  }
}

.p-join-flow__text {
  background-color: white;
  padding: 20px;
  border: 0 0 10px 10px;

  a {
    position: relative;
    background-color: var(--color-primary);
    color: white;
    text-decoration: none;
    transition: .2s ease-in-out;
    font-size: 1.5rem;
    font-weight: 500;
    border-radius: 27px;
    display: inline-block;
    padding: 10px 28px;

    i {
      margin-right: 6px;
    }
  }

  a:visited,
  a:active {
    color: white !important;
  }

  a:hover {
    opacity: .7;
  }

  .button {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
}

@media (min-width: 768px) {
  .p-join-flow__text {
    padding: 30px;
  }
}

@media (min-width: 1024px) {
  .p-join-flow__text {
    flex: 1;
    padding: 20px 30px;
    border-radius: 0 10px 10px 0;

    a {
      padding: 6px 28px;
    }

    .button {
      margin-top: 10px;
      flex-direction: row;
      justify-content: flex-end;
      gap: 30px;
    }

    .button .tel {
      font-size: 2.2rem;
    }

    .button .tel i {
      margin-right: 5px;
    }
  }
}

.p-join-flow__line {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  border: 2px solid #06C755;

  h5 {
    position: relative;
    margin: 0 0 20px;
    padding: 0 0 20px;
    font-size: 1.7rem;
  }

  h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #06C755;
    width: 100px;
    height: 4px;
  }

  a {
    position: relative;
    background-color: #06C755;
    color: white;
    text-decoration: none;
    transition: .2s ease-in-out;
    font-size: 1.5rem;
    font-weight: 500;
    border-radius: 27px;
    display: inline-block;
    padding: 10px 28px;
  }

  a:visited,
  a:active {
    color: white !important;
  }

  a:hover {
    opacity: .7;
  }

  p.button {
    margin-top: 20px;
    text-align: right;
  }
}

@media (min-width: 768px) {
  .p-join-flow__line {
    padding: 30px;

    h5 {
      font-size: 1.9rem;
    }
  }
}

@media (min-width: 1024px) {
  .p-join-flow__line {
    padding: 40px;

    h5 {
      font-size: 2.0rem;
    }
  }
}

.p-join-flow__button {
  text-align: center;
  margin-top: 60px;

  .c-btn {
    width: 80%;
    padding: 20px 46px 20px 28px;
    border-radius: 33px;
    letter-spacing: .08em;
  }
}

@media (min-width: 1024px) {
  .p-join-flow__button {
    margin-top: 80px;

    .c-btn {
      width: 400px;
      padding: 20px 46px 20px 28px;
      font-size: 2.2rem;
      border-radius: 43px;
    }
  }
}

/* LINE申し込み */
ol.p-line-flow {
  padding: 0;
  margin-top: 20px;

  li {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 54px;
    background-color: white;
    border-radius: 10px;
  }

  li::before {
    content: '\f103';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--color-primary);
    font-size: 3.0rem;
  }

  li:last-of-type::before {
    display: none;
  }
}

@media (min-width: 768px) {
  ol.p-line-flow {
    li {
      flex-direction: row;
    }
  }
}

@media (min-width: 1024px) {
  ol.p-line-flow {
    margin-top: 30px;

    li {
      margin-bottom: 80px;
    }

    li::before {
      bottom: -60px;
    }
  }
}

.p-line-flow__head {
  padding: 30px 20px;

  h3 {
    text-align: center;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 3.2rem;
    margin: 0;
    font-family: var(--font-english);

    span {
      display: block;
      text-transform: uppercase;
      line-height: 1.6;
      font-size: 1.4rem;
    }
  }
}

@media (min-width: 768px) {
  .p-line-flow__head {
    width: 120px;
    display: flex;
    align-items: flex-start;
    justify-content: center;

    h3 {
      font-size: 3.2rem;

      span {
        font-size: 1.5rem;
      }
    }
  }
}

@media (min-width: 1024px) {
  .p-line-flow__head {
    width: 180px;
    display: flex;
    padding: 50px 20px;

    h3 {
      font-size: 4.2rem;

      span {
        font-size: 1.7rem;
        line-height: 1.6;
      }
    }
  }
}

.p-line-flow__content {
  padding: 0 26px 26px;

  h4 {
    position: relative;
    margin: 0 0 20px;
    font-size: 1.7rem;
    font-weight: 500;
    padding-bottom: 20px;
  }

  h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: var(--color-primary);
  }

  h5 {
    margin: 0 0 10px;
    font-size: 1.5rem;
    font-weight: 500;
  }

  p {
    font-weight: 500;
    margin-bottom: 20px;
  }

  img.code {
    width: 100px;
  }

  .button {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
}

@media (min-width: 768px) {
  .p-line-flow__content {
    padding: 30px 30px 30px 0;

    h4 {
      font-size: 1.8rem;
    }

    h5 {
      font-size: 1.7rem;
    }

    p {
      font-size: 1.5rem;
    }
  }
}

@media (min-width: 1024px) {
  .p-line-flow__content {
    flex: 1;
    padding: 50px 50px 50px 0;


    h4 {
      font-size: 2.2rem;
      margin: 0 0 20px;
    }

    h4::after {
      width: 80px;
    }

    h5 {
      font-size: 1.8rem;
      margin: 0 0 20px;
    }

    p {
      font-size: 1.8rem;
      margin-bottom: 20px;
    }

    img {
      width: 300px;
    }

    .button {
      margin-top: 10px;
      flex-direction: row;
      justify-content: flex-end;
      gap: 30px;
    }

    .button .tel {
      font-size: 2.2rem;
    }

    .button .tel i {
      margin-right: 5px;
    }
  }
}

.p-page__footer {
  padding: 60px 0 0;
  margin: 0;
}

@media (min-width: 1024px) {
  .p-page__footer {
    padding: 100px 0 0;
  }
}

.p-page__edit a {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  background-color: white;
  padding: .8em 1em;
  font-size: 1.3rem;
}

@media (min-width: 768px) {
  .p-page__edit a {
    font-size: 1.4rem;
  }
}

.p-page__edit a:hover {
  background-color: var(--color-bg--light);
}

.p-page-subnav {
  margin-bottom: 40px;
}

@media print,
screen and (min-width: 600px) {
  .p-page-subnav {
    margin-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .p-page-subnav {
    margin-bottom: 60px;
  }
}

.p-page-subnav__list {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
}

@media print,
screen and (min-width: 600px) {
  .p-page-subnav__list {
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .p-page-subnav__list {
    gap: 40px;
  }
}

.p-page-subnav__list li {
  padding: 0 !important;
  margin: 0 !important;
}

@media (min-width: 1024px) {
  .p-page-subnav__list li {
    width: calc(50% - 20px);
  }
}

.p-page-subnav__list li::before {
  display: none;
}

.p-page-subnav__list li::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 1px solid #2b2b2b;
  border-top: 1px solid #2b2b2b;
  transform: rotate(45deg) translateY(-50%);
}

.p-page-subnav__list li a {
  border: 1px solid #dcdcdc !important;
  padding: 14px 20px;
  display: block;
  transition: .3s ease-in;
  font-weight: bold;
  font-size: 1.4rem;
  letter-spacing: .08em;
  color: #2b2b2b;
}

@media (min-width: 1024px) {
  .p-page-subnav__list li a {
    padding: 40px 20px;
    font-size: 1.8rem;
  }
}

.p-page-subnav__list li a:hover {
  background-color: #f5f5f5;
  color: #2b2b2b;
  transition: .3s ease-in;
}

.p-page-nav {
  margin-bottom: 40px;
}

@media print,
screen and (min-width: 600px) {
  .p-page-nav {
    margin-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .p-page-nav {
    margin-bottom: 60px;
  }
}

.p-page-nav__list {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
}

@media print,
screen and (min-width: 600px) {
  .p-page-nav__list {
    justify-content: center;
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .p-page-nav__list {
    gap: 10px;
  }
}

.p-page-nav__list li {
  padding: 0 !important;
  margin: 0 !important;
}

.p-page-nav__list li::before {
  display: none;
}

.p-page-nav__list li a {
  border: 1px solid #dcdcdc !important;
  padding: 8px 16px;
  display: block;
  transition: .3s ease-in;
  font-weight: bold;
  font-size: 1.4rem;
  color: #2b2b2b;
}

@media (min-width: 1024px) {
  .p-page-nav__list li a {
    padding: 10px 20px;
    font-size: 1.5rem;
  }
}

.p-page-nav__list li a:hover {
  background-color: #f5f5f5;
  color: #2b2b2b;
  transition: .3s ease-in;
}

.p-page-nav__list li a.current {
  background-color: #6f8083;
  color: white;
  pointer-events: none;
}

.p-page-anchor {
  margin-bottom: 40px;
}

@media print,
screen and (min-width: 600px) {
  .p-page-anchor {
    margin-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .p-page-anchor {
    margin-bottom: 80px;
  }
}

.p-page-anchor__list {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 !important;
}

.p-page-anchor__list li {
  padding: 0 !important;
  margin: 0 !important;
}

.p-page-anchor__list li::before {
  display: none;
}

.p-page-anchor__list li a {
  display: block;
  transition: .3s ease-in;
  font-weight: bold;
  font-size: 1.3rem;
  color: #2b2b2b;
  position: relative;
  border-bottom: none !important;
  background-color: #6f8083;
  color: white;
  padding: .4em 1.2em;
  border-radius: 20px;
}

@media (min-width: 1024px) {
  .p-page-anchor__list li a {
    padding: .2em 1.2em;
    font-size: 1.5rem;
  }
}

.p-page-anchor__list li a:hover {
  background-color: #4682b4;
  transition: .3s ease-in;
  color: white;
}

@media (min-width: 1024px) {
  .p-single {
    background-color: white;
    padding: 80px;
    border-radius: 40px;
  }
}

.p-single-head {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 0;
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 1024px) {
  .p-single-head {
    margin-bottom: 60px;
  }
}

.p-single__title {
  font-weight: normal;
  font-size: 2.0rem;
  width: 100%;
  margin-bottom: 20px;
  word-wrap: break-word;
  font-weight: 500;
}

@media (min-width: 1024px) {
  .p-single__title {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }
}

.p-single__info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.p-single__posted {
  font-size: 1.3rem;
  margin-right: 1em;
  font-weight: 500;
}

@media print,
screen and (min-width: 600px) {
  .p-single__posted {
    font-size: 1.5rem;
    margin-right: 2em;
  }
}

@media print,
screen and (min-width: 600px) {

  .p-single__tag a,
  .p-single__cat a {
    font-size: 1.3rem;
    padding: 0 1em;
  }
}

.p-single__content p {
  line-height: 2;
  margin-bottom: 1em;
  word-wrap: break-word;
}

@media print,
screen and (min-width: 600px) {
  .p-single__content p {
    line-height: 2.2;
  }
}

.p-single__content p strong {
  font-weight: bold;
}

.p-single__content p strong.red {
  color: #ba2636;
}

.p-single__content p a {
  border-bottom: 1px solid var(--color-link);
  transition: ease-in .2s;
}

.p-single__content p a:hover {
  border-bottom: none;
}

.p-single__content img {
  max-width: 100%;
  height: auto;
}

.p-single__content h1,
.p-single__content h2,
.p-single__content h3,
.p-single__content h4,
.p-single__content h5,
.p-single__content h6 {
  margin: 1em 0;
}

.p-single__content h1 {
  font-size: 1.7rem;
}

@media print,
screen and (min-width: 600px) {
  .p-single__content h1 {
    font-size: 2.4rem;
  }
}

.p-single__content h2 {
  font-size: 1.6rem;
}

@media print,
screen and (min-width: 600px) {
  .p-single__content h2 {
    font-size: 2.2rem;
  }
}

.p-single__content h3 {
  font-size: 1.5rem;
}

@media print,
screen and (min-width: 600px) {
  .p-single__content h3 {
    font-size: 2rem;
  }
}

.p-single__content a[target=_blank]::after {
  content: "\f35d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: .3em;
}

.p-single__content a[href$=".pdf"]::after {
  content: "\f1c1";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: .2em;
}

.p-single__content a[href*=".docx"]::after {
  content: "\f1c2";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: .2em;
}

.p-single__content a[href*=".xlsx"]::after {
  content: "\f1c3";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: .3em;
}

.p-single-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  justify-content: center;
  margin-top: 60px !important;
}

@media (min-width: 768px) {
  .p-single-nav {
    gap: 80px;
    margin-top: 100px !important;
  }
}

.p-single-nav li:hover {
  transition: .3s ease-in;
}

.p-single-nav li a {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--color-link);
}

@media (min-width: 768px) {
  .p-single-nav li a {
    font-size: 1.6rem;
  }
}

.p-single-nav li a:hover {
  color: var(--color-link--hover);
}


.p-single-nav li.prev a {
  position: relative;
  padding: 0 0 0 1.8em;
}


.p-single-nav li.next a {
  position: relative;
  padding: 0 1.8em 0 0;
}


.p-single-nav li.prev a::before,
.p-single-nav li.next a::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: -2px;
  color: var(--color-primary);
  font-size: 1.8rem;
}

.p-single-nav li.prev a::before {
  content: '\f137';
  left: 0;
}

.p-single-nav li.next a::before {
  content: '\f138';
  right: 0;
}

@media (min-width: 768px) {
  .p-single-nav li.prev a {
    padding: 0 0 0 2.0em;
  }


  .p-single-nav li.next a {
    padding: 0 2.0em 0 0;
  }

  .p-single-nav li.prev a::before,
  .p-single-nav li.next a::before {
    top: -7px;
    font-size: 2.4rem;
  }
}

.p-single-footer {
  padding: 60px 0 0;
}

@media (min-width: 1024px) {
  .p-single-footer {
    padding: 80px 0 0;
  }
}

.p-404-head h3 {
  font-size: 4rem;
  text-align: center;
  margin: 20px;
}

@media print,
screen and (min-width: 600px) {
  .p-404-head h3 {
    font-size: 6rem;
  }
}

@media (min-width: 1024px) {
  .p-404-head h3 {
    font-size: 8rem;
    margin: 20px;
  }
}

.p-404-content p {
  margin-bottom: 1em;
}

.p-members-news {
  h2 {
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 2.2rem;
  }
}

.p-members-news__button {
  text-align: center;
  margin-top: 20px;
}

@media (min-width: 1024px) {

  .p-members-news {
    h2 {
      font-size: 2.8rem;
    }
  }

  .p-members-news__button {
    margin-top: 40px;
  }
}

.p-faq-list dt {
  position: relative;
  padding: 16px 38px 16px 56px;
  background-color: #ebebeb;
  cursor: pointer;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  line-height: 1.6;
  font-size: 1.4rem;
  font-weight: bold;
}

@media print,
screen and (min-width: 600px) {
  .p-faq-list dt {
    padding: 20px 60px 20px 64px;
    font-size: 1.6rem;
  }
}

@media (min-width: 1024px) {
  .p-faq-list dt {
    padding: 20px 70px 20px 74px;
  }
}

.p-faq-list dt::before {
  content: "Q";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  background-color: #696969;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 50%;
  font-size: 1.4rem;
}

@media print,
screen and (min-width: 600px) {
  .p-faq-list dt::before {
    font-size: 1.5rem;
    left: 20px;
  }
}

@media (min-width: 1024px) {
  .p-faq-list dt::before {
    font-size: 1.8rem;
    left: 20px;
    width: 36px;
    height: 36px;
    line-height: 36px;
  }
}

.p-faq-list dt::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid #696969;
  border-bottom: 2px solid #696969;
  color: white;
  transition: .3s;
}

@media print,
screen and (min-width: 600px) {
  .p-faq-list dt::after {
    width: 10px;
    height: 10px;
    right: 30px;
  }
}

.p-faq-list dt.open::after {
  transform: translateY(-50%) rotate(225deg);
}

.p-faq-list dd {
  display: none;
  padding: 10px 0;
  margin-bottom: 10px;
}

@media print,
screen and (min-width: 600px) {
  .p-faq-list dd {
    padding: 20px 0;
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .p-faq-list dd {
    margin-bottom: 20px;
  }
}

.p-faq-list dd hr {
  border: 0;
  margin: 1em 0;
  border-top: 1px dotted #dcdcdc;
}

@media print,
screen and (min-width: 600px) {
  .p-faq-list dd hr {
    margin: 1.6em 0;
  }
}

.p-faq-list dd a[target=_blank]::after {
  content: "\f35d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: .3em;
}

.p-faq-list dd p {
  margin-bottom: 1em;
  font-size: 1.3rem;
}

@media print,
screen and (min-width: 600px) {
  .p-faq-list dd p {
    font-size: 1.5rem;
    line-height: 2;
  }
}

.p-faq-list dd p:last-of-type {
  margin-bottom: 0;
}

.p-faq-list dd p span {
  display: block;
  color: white;
  width: 80px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 1em;
}

.p-faq-list dd p span.honkan {
  background-color: #6f8083;
}

.p-faq-list dd p span.bunkan {
  background-color: #9a5016;
}

/* 会員専用ページ */
.l-main-member {
  .c-heading-page {
    background-color: var(--color-bg--orange);

    span {
      color: var(--color-sub);
    }
  }

  .l-content {
    background-color: var(--color-bg--orange);
  }
}

.post-password-form input[type=password] {
  padding: .2em .8em;
  background-color: white;
  border: 1px solid #6f8083;
  border-radius: 0;
  font-size: 1.6rem;
  -webkit-appearance: none;
}

.post-password-form input[type=password]:focus {
  outline: none;
  border: 1px solid #9a5016;
}

.post-password-form input[type=submit] {
  background-color: #6f8083;
  color: white;
  padding: .2em .8em;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  font-size: 1.6rem;
}

.post-password-form input[type=submit]::-webkit-search-decoration {
  display: none;
}

.post-password-form input[type=submit]:focus {
  outline-offset: -2px;
}

/* block editer */
.p-page__content p {
  margin: 1em 0;
}

ol[class="wp-block-list"],
ul[class="wp-block-list"] {
  list-style: auto;
  padding-left: 40px;
  margin: 16px 0;
}

[class="wp-block-list"] ul {
  list-style-type: circle;
}

[class="wp-block-list"] ul ul {
  list-style-type: square;
}

[class="wp-block-list"] ol,
[class="wp-block-list"] ul {
  padding-left: 40px;
}

/*
.wp-block-image {
  margin: 2em 0 !important;
}
*/

.wp-block-button__link {
  color: #fff;
  background-color: #32373c;
  border-radius: 9999px;
  box-shadow: none;
  text-decoration: none;
  padding: calc(.667em + 2px) calc(1.333em + 2px);
  font-size: 1.125em;
}

.wp-block-button__link:hover {
  opacity: .8;
}

.wp-block-separator {
  margin: 2em 0;
}

.wp-element-caption {
  text-align: center;
  color: var(--color-gray);
}

/* Snow Monkey Forms */
@media screen and (min-width: 768px) {
  .snow-monkey-form {
    width: 700px;
    margin: 0 auto;
  }
}

[data-screen=input] .smf-progress-tracker__item--input .smf-progress-tracker__item__number {
  background-color: var(--color-primary);
}

[data-screen=input] .smf-progress-tracker__item--input .smf-progress-tracker__item__text {
  color: var(--color-font);
}

.smf-form {
  margin-top: 20px;
}

.smf-item__label__text {
  font-weight: 500;
  font-size: 1.5rem;
}

@media print,
screen and (min-width: 600px) {
  .smf-item__label__text {
    font-size: 1.8rem;
  }
}

.smf-form .smf-text-control__control,
.smf-form .smf-textarea-control__control {
  padding: 12px 14px;
  border-color: var(--color-gray);
  border-radius: 6px;

  &:focus {
    border-color: var(--color-primary);
  }
}

.smf-action .smf-button-control__control {
  background: none;
  border-radius: 0;
  display: inline-block;
  padding: 1em 2em;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: white !important;
  text-decoration: none;
  text-align: left;
  transition: .3s ease-in-out;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: .06em;
  border-radius: 28px;

  &:visited,
  &:active {
    color: white !important;
  }

  &:hover {
    opacity: .7;
  }

  &[data-action="back"] {
    background-color: #bfbec5;
    border-color: #bfbec5;
  }
}

@media (min-width: 768px) {
  .smf-action .smf-button-control__control {
    font-size: 1.8rem;
    padding: .8em 3em;
    border-radius: 33px;
  }
}

.smf-button-control:has([data-action="back"]) {
  &::before {
    right: auto;
    left: 48px;
  }

  &::after {
    right: auto;
    left: 18px;
    transform: rotate(180deg);
    margin-top: -16px;
  }
}

.smf-complete-content {
  text-align: center;
}

.smf-complete-content > h2 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 5vw;
}

.smf-complete-content .smf-action {
  margin-top: 5vw;
}

/* widget */
.widget_block {
  margin-bottom: 40px;
}

.widget_block h2 {
  margin-bottom: 15px;
}

.wp-block-categories li,
.wp-block-archives li {
  border-bottom: 1px solid #eee;
}

.wp-block-categories li:first-of-type,
.wp-block-archives li:first-of-type {
  border-top: 1px solid #eee;
}

.wp-block-categories li a,
.wp-block-archives li a {
  display: block;
  padding: 15px 0;
}

.wp-block-categories li a::before,
.wp-block-archives li a::before {
  font: var(--fa-font-solid);
  content: "\f105";
  padding-right: 7px;
}

.wp-calendar-table caption {
  font-weight: 700;
  font-size: 2rem;
}

.qr_babyroom {
  margin-top: 20px;
}

.c-section--panel .c-table-fee {
  border-spacing: 0;
}

.c-section--panel .u-sp .c-table-fee tr:nth-child(2) th {
  border: 2px solid #FFF0F3;
}

.c-section--panel .u-sp .c-table-fee tr:nth-child(n+3) td {
  border: 2px solid #FFF0F3;
}

.c-section--panel .u-pc .c-table-fee tr:nth-child(2) th {
  border: 2px solid #FFF0F3;
}

.c-section--panel .u-pc .c-table-fee tr:nth-child(n+3) td {
  border: 2px solid #FFF0F3;
}


