@charset "UTF-8";
/* main.scss */
* {
  box-sizing: border-box;
}

body, button, input, select, optgroup, textarea {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 640px) {
  body, button, input, select, optgroup, textarea {
    font-size: 14px;
  }
}

a {
  color: #0051A7;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: #000;
  color: #fff;
  z-index: 10000;
}

br[class^=br-] {
  display: none;
}

@media (min-width: 640px) {
  br.br-sm {
    display: inline;
  }
}
@media (min-width: 800px) {
  br.br-md {
    display: inline;
  }
}
@media (min-width: 1000px) {
  br.br-lg {
    display: inline;
  }
}
@media (max-width: 640px) {
  br.br-only-sm {
    display: inline;
  }
}
.img-sm-only, .img-md-only, .img-lg-only {
  display: none;
}

@media (max-width: 640px) {
  .img-sm-only {
    display: block;
  }
}
@media (min-width: 640px) {
  .img-sm-up {
    display: block;
  }
}
@media (max-width: 800px) {
  .img-md-only {
    display: block;
  }
}
@media (min-width: 800px) {
  .img-md-up {
    display: block;
  }
}
@media (min-width: 1000px) {
  .img-lg-up {
    display: block;
  }
}
p {
  margin: 0.5em auto 1em;
}
p:first-child {
  margin-top: 0;
}

:root {
  --page-padding: 1.5rem;
}

.entry-content {
  max-width: 960px;
  margin-inline: auto;
  padding-inline: var(--page-padding);
  position: relative;
}

.entry-content > .alignwide {
  max-width: 1000px;
  margin-inline: auto;
}

.entry-content > .alignfull {
  width: var(--vw);
  max-width: var(--vw);
  margin-left: 50%;
  transform: translateX(-50%);
  padding-inline: var(--page-padding);
}

body {
  overflow-x: hidden;
}

/* ----------------------------------------
 * WordPress: alignments
 * 画像・figure・ブロック共通
 * -------------------------------------- */
/* 左寄せ：テキスト回り込み */
.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

/* 右寄せ：テキスト回り込み */
.alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

/* 中央寄せ：ブロックとして中央に */
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

img.alignleft,
.wp-block-image .alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

img.alignright,
.wp-block-image .alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

img.aligncenter,
.wp-block-image .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

/* figure 共通の余白調整など */
.wp-block-image,
figure {
  max-width: 100%;
}

.wp-block-image img {
  height: auto;
}

/* キャプション */
.wp-element-caption,
.wp-block-image figcaption {
  font-size: 0.9rem;
  text-align: center;
  margin-top: 0.5em;
  color: #666;
}

@media (max-width: 768px) {
  .alignleft,
  .alignright,
  img.alignleft,
  img.alignright,
  .wp-block-image .alignleft,
  .wp-block-image .alignright {
    float: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
.entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 {
  color: #0051A7;
  margin: 2em auto 1em;
}
.entry-content h2 {
  font-size: 1.8em;
}
.entry-content h3 {
  font-size: 1.6em;
}
.entry-content h4 {
  font-size: 1.4em;
}
.entry-content h5 {
  font-size: 1.3em;
}
.entry-content h6 {
  font-size: 1.2em;
}

/* =========================================================
   Header (fixed) + SP Menu Button + Mobile Nav
   ========================================================= */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  width: 280px;
  background: #fff;
  z-index: 1000;
  height: 100dvh;
  overflow-y: auto;
  transition: transform 0.3s ease;
  /* -----------------------------------------
     Hamburger Menu Button
     ----------------------------------------- */
}
@media (min-width: 1000px) {
  .header {
    transform: translateX(0);
  }
}
@media (max-width: 1000px) {
  .header {
    transform: translateX(-100%);
  }
  .header.is-open {
    transform: translateX(0);
  }
}
.header__inner {
  height: 100%;
  min-height: 700px;
  display: grid;
  grid-template-rows: 220px 1fr 200px;
  grid-auto-flow: column;
}
.header__branding {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.header__menu-button {
  /* 初期は非表示（PC）。lg以下で表示 */
  display: none;
}
@media (max-width: 1000px) {
  .header__menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* 右上に固定配置 */
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1001;
    /* ボタンスタイル */
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: 0;
    background: #0051A7;
    color: #fff;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  .header__menu-button:hover, .header__menu-button:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.6);
  }
  .header__menu-button[aria-expanded=true] .header__menu-line:nth-child(1) {
    top: 23px;
    transform: rotate(45deg);
  }
  .header__menu-button[aria-expanded=true] .header__menu-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.4);
  }
  .header__menu-button[aria-expanded=true] .header__menu-line:nth-child(3) {
    top: 23px;
    transform: rotate(-45deg);
  }
}
@media (max-width: 1000px) {
  .header__menu-line {
    position: absolute;
    left: 20%;
    width: 60%;
    height: 2px;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
  }
  .header__menu-line:nth-child(1) {
    top: 14px;
  }
  .header__menu-line:nth-child(2) {
    top: 23px;
  }
  .header__menu-line:nth-child(3) {
    top: 32px;
  }
}
.header__branding .site-logo {
  padding: 0.5em 4.5em;
}
.header__branding .site-title {
  font-size: 24px;
  line-height: 1.2;
  color: #0051A7;
  text-align: center;
  font-weight: 600;
}
.header__nav ul#global-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}
.header__nav ul#global-menu li a {
  display: block;
  padding: 1em 10px;
  border-top: 2px dotted;
  font-weight: 600;
  text-align: center;
}
.header__nav ul#global-menu li a:hover {
  background-color: #f5d75a;
}
.header__nav ul#global-menu li:last-child a {
  border-bottom: 2px dotted;
}
.header__widget .contact-circle {
  padding: 1em;
}
.header__widget .contact-circle a {
  background-color: #fc458e;
  color: white;
  display: flex;
  width: 160px;
  height: 160px;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 1.1em;
  font-weight: 600;
  margin: auto;
}
.header__widget .contact-circle a:hover {
  background-color: #0051A7;
}

body {
  background: #008244;
}

#content {
  width: calc(100% - 280px);
  position: relative;
  left: 280px;
}
@media (max-width: 1000px) {
  #content {
    width: 100%;
    position: relative;
    left: auto;
  }
}

.post-header {
  padding: 1em 1em 100px;
  background-color: white;
  position: relative;
}
.post-header::after {
  position: absolute;
  width: 100%;
  height: 100px;
  bottom: 0;
  left: 0;
  background-image: url(/ayase_wp/wp-content/themes/ayase/assets/image/back.webp);
  display: block;
  content: "";
  background-position: top center;
  background-size: cover;
}
.post-header h1 {
  color: #0051A7;
}

article.post-card {
  width: min(960px, 100% - 1em);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.5);
  margin: 3em auto;
}
article.post-card a {
  background-color: white;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 20px;
  align-items: center;
  padding: 1em 3%;
  gap: 1em;
}
article.post-card a span.more {
  position: relative;
  display: block;
  height: 100%;
}
article.post-card a span.more::after {
  position: absolute;
  width: 20px;
  height: inherit;
  top: 0;
  left: 0;
  background-image: url(/ayase_wp/wp-content/themes/ayase/assets/image/tri.svg);
  display: block;
  content: "";
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
article.post-card a .inner .except p:last-child {
  margin: 0;
}
article.post-card a:hover {
  background-color: #bce3e7;
}

.nav-links {
  text-align: center;
  margin: 5em auto;
}
.nav-links a, .nav-links span {
  color: white;
  display: inline-block;
  padding: 0.6em 1em;
  border: 1px solid white;
}
.nav-links span.current, .nav-links a:hover {
  background-color: #0051A7;
}

.entry-content {
  width: min(960px, 100% - 1em);
  background-color: white;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.5);
  padding: 2em 3%;
  margin: 3em auto;
  border-radius: 20px;
}

footer {
  padding: 1em;
  background: #414141;
  margin: 5em 0 0;
  color: white;
}
footer p.site-info {
  text-align: center;
  font-size: 13px;
}

.footer-before-area {
  margin: 5em auto;
}

div#contact {
  width: min(640px, 100% - 1em);
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  padding: 1em 3%;
  color: white;
}
div#contact h2 {
  margin: 0;
}
div#contact .inner-white {
  border-radius: 20px;
  overflow: hidden;
  padding: 1em 3%;
  color: #333;
}

div#page_top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  cursor: pointer;
}
div#page_top.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.breadcrumbs {
  background: #04522d;
  color: white;
  font-size: 14px;
  padding: 0.25em 1em;
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}
.breadcrumbs li + li::before {
  content: ">";
  margin-right: 0.5rem;
  color: #999;
}
.breadcrumbs a {
  color: white;
}

.wp-block-button .wp-block-button__link:hover {
  background-color: black !important;
  color: white;
  border-color: black;
}

.is-provider-youtube .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.is-provider-youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

figure.wp-block-embed.aligncenter.is-type-video.is-provider-youtube.wp-block-embed-youtube {
  text-align: center;
}

.fv {
  height: 100dvh;
  position: relative;
  overflow: hidden;
}
.fv .wp-block-image {
  height: 100%;
}
.fv .wp-block-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.fv .fusen {
  position: absolute;
  z-index: 2; /* 必要なら調整 */
  pointer-events: none;
  will-change: transform;
}
.fv .fusen img {
  display: block;
  width: var(--fusen-size, 120px);
  height: auto;
}
.fv::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #22b8f2;
  display: block;
  content: "";
  z-index: -3;
}
.fv::after {
  position: absolute;
  width: 100%;
  height: 100px;
  bottom: 0;
  left: 0;
  background-image: url(/ayase_wp/wp-content/themes/ayase/assets/image/back.webp);
  display: block;
  content: "";
  background-position: top center;
  background-size: cover;
}
@media (max-width: 640px) {
  .fv {
    height: 60dvh;
  }
}
.fv .fv-inner {
  height: calc(100% - 100px);
}
.fv .fv-inner::after, .fv .fv-inner::before {
  content: "";
  display: block;
  position: absolute;
  width: 40%;
  height: 120px;
  top: 0;
}
.fv .fv-inner::after {
  background-image: url(/ayase_wp/wp-content/themes/ayase/assets/image/garland-right.svg);
  background-position: top right;
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
}
.fv .fv-inner::before {
  background-image: url(/ayase_wp/wp-content/themes/ayase/assets/image/garland-left.svg);
  background-position: top left;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
}

/* 上下ふわふわ */
@keyframes fv-float-y {
  0%, 100% {
    transform: translate3d(0, calc(var(--float-amp, 14px) * -1), 0);
  }
  50% {
    transform: translate3d(0, var(--float-amp, 14px), 0);
  }
}
/* アニメを適用（個別に振れ幅/速度/遅延を変える） */
.fv .fusen {
  animation: fv-float-y var(--float-dur, 5.5s) ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
}

/* 動きを減らす設定 */
@media (prefers-reduced-motion: reduce) {
  .fv .fusen {
    animation: none;
  }
}
@media (max-width: 640px) {
  .fusen.fusen-red {
    width: 80px;
  }
  .fusen.fusen-yellow {
    width: 70px;
  }
  .fusen.fusen-blue {
    width: 50px;
  }
}
.front-entry_content section {
  width: min(960px, 100% - 1em);
  background-color: white;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.5);
  padding: 2em 3%;
  margin: 3em auto;
  border-radius: 20px;
}
.front-entry_content section > h2 {
  color: #0051A7;
  margin: 10px auto 20px;
}
.front-entry_content section > h3 {
  color: #008244;
  margin: 20px auto;
  font-size: 1.4em;
}
.front-entry_content section .smb-box h4 {
  font-size: 1.3em;
  color: #008244;
  margin-bottom: 1em;
}

.ac-area .wp-block-accordion-item h3 {
  padding: 0.5em 1em;
}
.ac-area .wp-block-accordion-panel {
  padding: 1em 3%;
  border: 1px solid #ccc;
}/*# sourceMappingURL=main.css.map */