@charset "UTF-8";

/*
Theme Name: What's New2025
*/

/*
TODO:本体側の更新をこちらにも随時反映させること。
*/


/* ============================================================
  # Root
============================================================ */

:root {
  --link: hsl(150 69% 39%);
  --link-hover: hsl(150 69% 34%);
  --primary: hsl(150 69% 39%);
  /* --primaryhover: hsl(150 43% 51%); */
  /* --brightprimary: hsl(150 34% 53%); */
  --lightprimary: hsl(150 35% 93%);
  --secondary: hsl(124 33% 66%);
  --heading: hsl(124 37% 93%);
  --headinghover: hsl(124 37% 88%);
  --body: #333;
  --white: #fff;
  --border: #999;
  --whitesmoke: #f2f2f2;


  /* 以下2025年度追加 */
  --siteFooter__bg: #97d316;
  --desktopDrawerNav__primary: #fffae1;
  --desktopDrawerNav__secondary: #e9c800;
  --desktopDrawerNav__tertiary: #97d316;

  /* --limeっぽい色2025: #88d73a; */
  --lime2025: #afd223;
  --yellow2025: #e9c800;
  --pink2025: #ec6d81;
  --pink2025_lt: #f5b2bc;
  --pink2025_p: #fadbe0;
  --pink2025_s: #ef8faa;
  --amber2025: #edae27;
  --amber2025_lt: #fbd690;
  --amber2025_p: #fdecca;
  --skyblue2025: #33b1de;
  --blue2025: #1e539e;
  --orange2025: #e98644;
  --green2025: #6eb92b;

  --font-family-courier: "Courier Prime", monospace;
  --border-width: 1px;
  --border-style: solid;
  --border-color: #ccc;
  --black: #000;
  --font-family-sans: "Noto Sans JP", sans-serif;
  --font-family-serif: serif;
  --font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

  --space-g-3: clamp(0.75rem, 0.75rem + 0.333vw, 1rem);
  --space-g-4: clamp(1rem, 1rem + 0.667vw, 1.5rem);
  --space-g-5: clamp(1rem, 1rem + 2.667vw, 3rem);
  --space-g-6: clamp(1rem, 1rem + 4.667vw, 4.5rem);
  --space-m-3: clamp(0.75rem, 0.75rem + 0.333vw, 1rem);
  --space-m-4: clamp(1.25rem, 1.25rem + 0.333vw, 1.5rem);
  --space-m-5: clamp(1.5rem, 1.5rem + 2vw, 3rem);
  --space-m-6: clamp(2.5rem, 2.5rem + 2.667vw, 4.5rem);
  --space-m-7: clamp(3rem, 3rem + 4vw, 6rem);
  --space-m-8: clamp(3rem, 3rem + 6vw, 7.5rem);
  --space-p-3: clamp(0.75rem, 0.75rem + 0.333vw, 1rem);
  --space-p-4: clamp(1rem, 1rem + 0.667vw, 1.5rem);
  --space-p-5: clamp(1rem, 1rem + 2.667vw, 3rem);
  --space-p-6: clamp(1rem, 1rem + 4.667vw, 4.5rem);
  --space-p-7: clamp(1rem, 1rem + 6.667vw, 6rem);
  --space-p-8: clamp(1rem, 1rem + 10.667vw, 9rem);
}




/* ============================================================
  # Content
============================================================ */

/* ## Reboot
======================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}
::selection {
  background: hsla(60, 65%, 65%, 0.5);
  text-shadow: none;
}
body {
  background-color: var(--white);
  color: var(--body);
  font-family: var(--font-family-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  text-align: left;
}
hr {
  background-color: currentColor;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  color: inherit;
  margin: 1.5rem 0;
}
hr:not([size]) {
  height: 1px;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0.5rem;
  text-wrap: balance;
}
h1, .h1 {
  font-size: 2rem;
}
h2, .h2 {
  font-size: 1.5rem;
}
h3, .h3 {
  font-size: 1.25rem;
}
h4, .h4,
h5, .h5,
h6, .h6 {
  font-size: 1.125rem;
}
@media (min-width: 576px) {
  h1, .h1 {
    font-size: 3rem;
  }
  h2, .h2 {
    font-size: 1.75rem;
  }
  h3, .h3 {
    font-size: 1.375rem;
  }
  h4, .h4,
  h5, .h5,
  h6, .h6 {
    font-size: 1.25rem;
  }
}
p {
  font-size: clamp(0.875rem, 0.8rem + 0.25vw, 0.938rem);
  line-height: 1.8;
  margin-top: 0;
  margin-bottom: 1.5rem;
  text-wrap: pretty;
}
abbr[title],
abbr[data-bs-original-title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}
address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}
/* ol, ul {
  padding-left: 2rem;
} */
ol, ul, dl {
  margin-top: 0;
  margin-bottom: 1.5rem;
}
ol ol, ul ul, ol ul, ul ol {
  margin-bottom: 0;
}
dt {
  font-weight: 700;
}
dd {
  margin-left: 0;
  margin-bottom: 0.5rem;
}
li, dt, dd {
  font-size: clamp(0.875rem, 0.8rem + 0.25vw, 0.938rem);
}
blockquote {
  margin: 0 0 1.125rem;
}
b, strong {
  font-weight: bolder;
}
small, .small {
  font-size: 80%;
  font-weight: 400;
}
mark, .mark {
  background-color: #ff0;
  color: #000;
  padding: 0.2em;
}
sub, sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
a {
  color: var(--link);
  text-decoration: none;
}
a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}
a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}
pre, code, kbd, samp {
  font-family: var(--font-monospace);
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override;
}
pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}
code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}
figure {
  margin: 0 0 1.5rem;
}
img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
svg {
  vertical-align: middle;
}
table {
  border-collapse: collapse;
  caption-side: bottom;
}
caption {
  color: hsla(150, 5%, 45%, 1);
  caption-side: bottom;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  text-align: left;
}
th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}
thead, tbody, tfoot, tr, td, th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}
label {
  display: inline-block;
}
button {
  border-radius: 0;
}
button:focus:not(:focus-visible) {
  outline: 0;
}
input, button, select, optgroup, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}
button, select {
  text-transform: none;
}
[role="button"] {
  cursor: pointer;
}
select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}
[list]::-webkit-calendar-picker-indicator {
  display: none;
}
button,
[type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}
::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
textarea {
  overflow: auto;
  resize: vertical;
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  color: inherit;
  display: block;
  font-size: 1.5rem;
  line-height: inherit;
  margin-bottom: 0.5rem;
  max-width: 100%;
  padding: 0;
  white-space: normal;
  width: 100%;
}
[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}
::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-color-swatch-wrapper {
  padding: 0;
}
::file-selector-button {
  font: inherit;
}
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
output {
  display: inline-block;
}
iframe {
  border: 0;
}
summary {
  display: list-item;
  cursor: pointer;
}
progress {
  vertical-align: baseline;
}
[hidden] {
  display: none !important;
}



/* ## Typography
======================================== */

/* ### Lead
---------------------------------------- */

.lead {
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 1.875rem;
}

/* ### hr
---------------------------------------- */

hr {
  background-color: transparent;
  border: none;
  border-top: 1px solid #e4e4e4;
}


/* ### Inline text elements
---------------------------------------- */


/* ### Lists
---------------------------------------- */

.list-unstyled {
  padding-left: 0;
  list-style: none;
}



/* ============================================================
  # Layout
============================================================ */

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 1040px) {
  .container {
    max-width: 1000px;
  }
}

.container-fluid {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}

.container-breakout {
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

.col-full {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 1040px) {
  .col-full {
    padding-left: 0;
    padding-right: 0;
  }
}


/* ## Site content
======================================== */

.site-content {
  margin-bottom: 6rem;
}



/* ============================================================
  # Components
============================================================ */

/* ## Site header
======================================== */
/*
ヘッダーとメニューボタンの大きさは768pxで区切る
出るメニューの機能は1040pxで区切る→表示するボタン自体の区切り
*/

.siteHeader {
  background-color: var(--white);
  display: flex;
  align-items: center;
  height: 50px;
  width: 100%;
  padding-left: 15px;
}
@media (min-width: 768px) {
  .siteHeader {
    height: 100px;
  }
}


/* ### Logo
---------------------------------------- */

.siteHeader__logo {
  display: block;
  margin-right: auto;
  padding-right: 15px;/*gap用*/
  width: calc(180px + 15px);
}
@media (min-width: 400px) {
  .siteHeader__logo {
    width: calc(240px + 15px);
  }
}
@media (min-width: 460px) {
  .siteHeader__logo {
    width: calc(280px + 15px);
  }
}
@media (min-width: 768px) {
  .siteHeader__logo {
    width: auto;
  }
}


/* ### ブログボタン・資料請求ボタン
---------------------------------------- */

.siteHeader__blogBtn {
  background-color: #ffa63d;
  color: var(--white);
  font-size: 11px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: filter 0.15s;
  height: 50px;
  width: 120px;
}
.siteHeader__requestBtn {
  background-color: #afd223;
  color: var(--white);
  font-size: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  transition: filter 0.15s;
  height: 50px;
  width: 50px;
}
@media (min-width: 768px) {
  .siteHeader__blogBtn {
    font-size: 14px;
    height: 100px;
    width: 170px;
  }
  .siteHeader__requestBtn {
    font-size: 14px;
    gap: 8px;
    height: 100px;
    width: 100px;
  }
}
@media not all and (min-width: 768px) {
  .siteHeader__blogBtn {
    display: none;
  }
  .siteHeader__requestBtnIcon {
    height: 22px;
    width: 26px;
  }
}
@media (hover: hover) {
  .siteHeader__blogBtn:hover,
  .siteHeader__requestBtn:hover {
    color: var(--white);
    filter: brightness(1.1);
    text-decoration: none;
  }
}
.siteHeader__blogBtn:focus,
.siteHeader__requestBtn:focus {
  color: var(--white);
  filter: brightness(1.1);
}


/* ### Nav btn
スタイルはデスクトップとモバイルと基本は共通
---------------------------------------- */

.siteHeader__navBtn {
  background-color: #fc6992;
  border: none;
  cursor: pointer;
  margin: 0;
  height: 50px;
  width: 50px;
  user-select: none;
  z-index: 100;
  transition: filter 0.15s;
  /* ↓内部レイアウト用 */
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
}
@media (min-width: 768px) {
  .siteHeader__navBtn {
    gap: 9px;
    height: 100px;
    width: 100px;
  }
}
@media (hover: hover) {
  .siteHeader__navBtn:hover {
    filter: brightness(1.1);
  }
}
.siteHeader__navBtn:focus,
.siteHeader__navBtn.focus {
  filter: brightness(1.1);
}
.siteHeader__navBtn.is-open:focus,
.siteHeader__navBtn.is-open {
  filter: brightness(1.1);
}
.navBtn__bar {
  background-color: var(--white);
  height: 2px;
  width: 22px;
  transition: opacity 0.15s, transform 0.15s;
}
@media (min-width: 768px) {
  .navBtn__bar {
    height: 3px;
    width: 34px;
  }
}
.siteHeader__navBtn.is-open .navBtn__bar {
  background-color: var(--white);
}
.siteHeader__navBtn.is-open .navBtn__bar:nth-of-type(1) {
  transform: translateY(7px) rotate(-45deg);
}
.siteHeader__navBtn.is-open .navBtn__bar:nth-of-type(3) {
  transform: translateY(-7px) rotate(45deg);
}
.siteHeader__navBtn.is-open .navBtn__bar:nth-of-type(2) {
  opacity: 0;
}
@media (min-width: 768px) {
  .siteHeader__navBtn.is-open .navBtn__bar:nth-of-type(1) {
    transform: translateY(12px) rotate(-45deg);
  }
  .siteHeader__navBtn.is-open .navBtn__bar:nth-of-type(3) {
    transform: translateY(-12px) rotate(45deg);
  }
}

/* ボタン自体の表示切り替え用
（押したときどちらのメニューが出るかの切り替えポイント） */
@media (min-width: 1040px) {
  .siteHeader__mobileNavBtn {
    display: none;
  }
}
@media not all and (min-width: 1040px) {
  .siteHeader__desktopNavBtn {
    display: none;
  }
}


/* ## Drawer nav（mobile）
======================================== */

@media (min-width: 1040px) {
  .drawerNav {
    display: none;
  }
}
.drawerNav {
  background-color: rgba(255, 255, 255, 0.8);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: 100;
}
.drawerNav {/* スクロールバー非表示（FireFox） */
  scrollbar-width: none;
}
.drawerNav::-webkit-scrollbar {/* スクロールバー非表示（Chromium系、Safari） */
  display: none;
}
.drawerNav__row {
  background-color: var(--desktopDrawerNav__primary);
  display: flex;
  flex-wrap: wrap;
}

.drawerNavAccordion__btn {
  background-color: var(--desktopDrawerNav__primary);
  border: none;
  color: var(--body);
  display: block;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 0.5em 1rem;
  transition: 0.15s;
  user-select: none;
  width: 40px;
  position: relative;
}
@media (hover: hover) {
  .drawerNavAccordion__btn:hover,
  .drawerNavAccordion__btn.hover {
    filter: brightness(1.1);
  }
}
.drawerNavAccordion__btn:focus,
.drawerNavAccordion__btn.focus {
  filter: brightness(1.1);
  /* outline: 0; */
}
.drawerNavAccordionBtn__bar {
  background-color: var(--body);
  height: 2px;
  width: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  transition: opacity 0.15s, transform 0.15s;
}
.drawerNavAccordionBtn__bar:nth-of-type(2) {
  height: 20px;
  width: 2px;
}
.drawerNavAccordion__btn.is-open .drawerNavAccordionBtn__bar:nth-of-type(2) {
  opacity: 0;
  transform: translateY(-10px) rotate(-90deg);
}

.drawerNav__catLink {
  flex: 1;
}
.drawerNav__catLink,
.drawerNav__link {
  background-color: var(--desktopDrawerNav__primary);
  color: var(--body);
  display: block;
  font-size: 0.875rem;
  padding: 0.75rem 2rem 0.75rem 1rem;
  text-decoration: none;
  transition: 0.15s;
}
.drawerNav__link_accent {
  background-color: var(--lime2025);
  color: var(--white);
}
.drawerNav__link_secondary {
  background-color: var(--desktopDrawerNav__secondary);
  color: var(--white);
}
.drawerNav__link_tertiary {
  background-color: var(--desktopDrawerNav__tertiary);
  color: var(--white);
}
@media (hover: hover) {
  .drawerNav__catLink:hover,
  .drawerNav__link:hover {
    color: var(--body);
    filter: brightness(1.1);
  }
  .drawerNav__link_accent:hover,
  .drawerNav__link_secondary:hover,
  .drawerNav__link_tertiary:hover {
    color: var(--white);
  }
}
.drawerNav__catLink:focus,
.drawerNav__link:focus {
  color: var(--body);
  filter: brightness(1.1);
}
.drawerNav__link_accent:focus,
.drawerNav__link_secondary:focus,
.drawerNav__link_tertiary:focus {
  color: var(--white);
}

.drawerNav__row + .drawerNav__row,
.drawerNav__link,
.drawerNav__link + .drawerNav__row {
  border-top: 1px solid var(--white);
}

/*半分幅のところ*/
.drawerNav__half {
  background-color: var(--siteFooter__bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.drawerNav__half .drawerNav__link {
  font-size: 0.75rem;
  padding: 0.75rem 1rem;
}
.drawerNav__half .drawerNav__link:nth-child(odd) {
  border-right: 1px solid var(--white);
}
.drawerNav__half .drawerNav__link:nth-last-child(2),
.drawerNav__half .drawerNav__link:nth-last-child(1) {
  border-bottom: 1px solid var(--white);
}

/*Accordion*/
.drawerNavAccordion__body {
  width: 100%;
}
.drawerNavAccordion__body {
  /* 閉じている状態 */
  padding-top: 0;
  padding-bottom: 0;
  /* 閉じるアニメーション */
  transition:
    line-height    0.3s,
    padding-top    0.3s,
    padding-bottom 0.3s;
}
.drawerNavAccordion__body.is-open {
  /* 開いている状態 */
  padding-top: 0;
  padding-bottom: 0;
  /* 開くアニメーション */
  transition:
    line-height    0.3s,
    padding-top    0.3s,
    padding-bottom 0.3s;
}

.drawerNavAccordion__body .drawerNav__link {
  background-color: var(--desktopDrawerNav__tertiary);
  color: var(--white);
}
.drawerNavAccordion__body .drawerNav__link {
  /* 閉じている状態 */
  border: none;
  line-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  visibility: hidden;
  /* 閉じるアニメーション */
  transition:
    line-height 0.3s,
    opacity     0.1s,
    visibility  0.1s;
}
.drawerNavAccordion__body.is-open .drawerNav__link {
  /* 開いている状態 */
  border-top: 1px solid #ddd;
  line-height: 1.5;
  opacity: 1;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  visibility: visible;
  /* 開くアニメーション */
  transition:
    line-height 0.3s,
    opacity     0.2s 0.1s,
    visibility  0.1s 0.1s;
}

/*下段*/
.mobileDrawerNavSeparateList {
  background-color: var(--siteFooter__bg);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
.mobileDrawerNavSeparateList__item {
  border-right: 1px solid var(--white);
  padding-right: 0.5rem;
}
.mobileDrawerNavSeparateList__item:first-child {
  border-left: 1px solid var(--white);
  padding-left: 0.5rem;
}


/* ## Drawer nav（desktop）
======================================== */

/*nav*/.desktopDrawerNav {
  background-color: rgba(255, 255, 255, 0.8);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: 100;
}
.desktopDrawerNav {/* スクロールバー非表示（FireFox） */
  scrollbar-width: none;
}
.desktopDrawerNav::-webkit-scrollbar {/* スクロールバー非表示（Chromium系、Safari） */
  display: none;
}
@media not all and (min-width: 1040px) {
  /*nav*/.desktopDrawerNav {
    display: none;
  }
}

.desktopDrawerNav__primary {
  background-color: var(--desktopDrawerNav__primary);
}
.desktopDrawerNav__secondary {
  background-color: var(--desktopDrawerNav__secondary);
}
.desktopDrawerNav__tertiary {
  background-color: var(--desktopDrawerNav__tertiary);
}

.desktopDrawerNav__container {
  margin-left: auto;
  margin-right: auto;
  width: min(100% - 15px * 2, 1000px);
}

/*ul*/.globalNavMain {
  border-bottom: 2px solid var(--white);
  display: flex;
  list-style: none;
  margin-bottom: 2rem;
  padding-left: 0;
  padding-bottom: 1rem;
}

/*li*/.globalNavMain__item {
  border-left: 1px solid #bcbb9e;
  flex: 1;
}
/*li*/.globalNavMain__item:last-child {
  flex: 0 0 180px;
  max-width: 180px;
  padding-left: 20px;
  /* 中のボタン幅160px固定 */
}

/*a*/.globalNavMain__link {
  color: var(--body);
  align-items: center;
  display: flex;
  justify-content: center;
  height: 100%;
}

/*a*/.globalNavMain__link.active,
/*a*/.globalNavMain__link:hover,
/*a*/.globalNavMain__link:focus {
  background-color: hsl(-17 96% 70% / 0.2);
  color: var(--body);
  text-decoration: none;
}

/*下層に出てくるメニュー*/
.globalNavMainChild__wrap:not(.active) {
  display: none;
}
.globalNavMainChild__wrap {
  opacity: 0;
  transition: opacity 0.5s;
}
.globalNavMainChild__wrap.active {
  opacity: 1;
}

/*ul*/.globalNavMainChild {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

/*li*/.globalNavMainChild__item {
  width: calc((100% - 2.5rem * 3) / 4);
}

/*a*/.globalNavMainChild__link {
  display: block;
}
/*a*/.globalNavMainChild__link:hover,
/*a*/.globalNavMainChild__link:focus {
  text-decoration: none;
}

.globalNavMainChild__linkText {
  color: var(--body);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
.globalNavMainChild__linkText::before {
  border-color: currentColor currentColor transparent transparent;
  border-width: 2px 2px 0 0;
  border-style: solid;
  color: #88d73a;
  content: "";
  display: inline-block;
  height: 0.45em;
  width: 0.45em;
  margin-right: 0.75em;
  transform: rotate(45deg) translateY(-2px);
  vertical-align: middle;
}

/*下３段分の横並びリスト*/
.desktopDrawerNavList {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
.desktopDrawerNavList__separateItem {
  border-right: 1px solid var(--white);
  padding-right: 0.5rem;
}
.desktopDrawerNavList__separateItem:first-child {
  border-left: 1px solid var(--white);
  padding-left: 0.5rem;
}
.desktopDrawerNavList + .desktopDrawerNavList {
  margin-top: 0.5rem;
}


/* ## Visual
======================================== */

.page-visual__fluid {
  background-color: var(--white);
  display: block;
  margin-bottom: 1rem;
}

.page-visual {
  margin: 0 auto;
  max-width: 2250px;
}



/* ## Breadcrumb
======================================== */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin-top: 0.75rem;
  margin-bottom: 1.125rem;
  padding-left: 0;
}
.breadcrumb__item {
  display: flex;
  font-size: 0.75rem;
}
.breadcrumb__item + .breadcrumb__item {
  padding-left: 0.5em;
}
.breadcrumb__item + .breadcrumb__item::before {
  color: #666;
  content: ">\00a0";
  display: inline-block;
  padding-right: 0.5em;
}
.breadcrumb__item + .breadcrumb__item:hover::before {
  text-decoration: underline;
}
.breadcrumb__item + .breadcrumb__item:hover::before {
  text-decoration: none;
}
.breadcrumb__item--current {
  color: #666;
}



/* ## Heading
======================================== */


/* ## Unordered list
======================================== */

.ul-circle-icon {
  padding-left: 1.5rem;
  list-style: none;
}
.ul-circle-icon li {
  padding-left: 0.75rem;
  text-indent: -0.75rem;
}
.ul-circle-icon li::before {
  color: var(--secondary);
  content: "\f111";
  display: inline-block;
  font-family: FontAwesome;
  padding-right: 0.5em;
}
.ul-circle-icon--gold li::before {
  color: #e0bd24;
}
.ul-circle-icon--purple li::before {
  color: #9175ae;
}
.ul-circle-icon--pink li::before {
  color: #eb5683;
}
.ul-circle-icon--pink2025 li::before {
  color: var(--pink2025);
}
.ul-circle-icon--softpink2025 li::before {
  color: var(--pink2025_s);
}
.ul-circle-icon--amber2025 li::before {
  color: var(--amber2025);
}



/* ## Buttons
======================================== */

.btn {
  background-color: var(--white);
  border: 1px solid var(--primary);
  color: var(--primary);
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 0.75em 1rem;
  position: relative;
  transition: background-color 0.15s, border 0.15s, color 0.15s, opacity 0.15s, filter 0.15s;
  user-select: none;
  vertical-align: middle;
}
@media (hover: hover) {
  .btn:hover {
    background-color: var(--heading);
    text-decoration: none;
  }
}
.btn:focus, .btn.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  outline: 0;
}
.btn.disabled, .btn:disabled {
  opacity: 0.65;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn--right-icon {
  padding-right: 2.5rem;
}
.btn--right-icon::after {
  color: var(--primary);
  content: "\f054";
  font-family: FontAwesome;
  font-size: 0.75rem;
  position: absolute;
    right: 0.75rem;
    top: 50%;
  transform: translateY(-50%);
}

.btn--primary {
  background-color: var(--heading);
  border-color: transparent;
}
.btn--primary:hover,
.btn--primary:focus, .btn--primary.focus {
  background-color: var(--headinghover);
  border-color: transparent;
}
.btn--primary.btn--right-icon::after {
  color: var(--primary);
}

.btn--primary_border {
  background-color: var(--heading);
  border-color: var(--primary);
}
.btn--primary_border:hover,
.btn--primary_border:focus, .btn--primary_border.focus {
  background-color: var(--headinghover);
  border-color: var(--primary);
}
.btn--primary_border.btn--right-icon::after {
  color: var(--primary);
}

.btn--rose_border {
  background-color: #fce9e8;
  border-color: #ed7385;
  color: #ed7385;
}
.btn--rose_border:hover,
.btn--rose_border:focus, .btn--rose_border.focus {
  background-color: #fadbdc;
  border-color: #ed7385;
  color: #ed7385;
}
.btn--rose_border.btn--right-icon::after {
  color: #ed7385;
}

.btn--rose {
  background-color: #e78897;
  border-color: transparent;
  color: var(--white);
}
.btn--rose:hover,
.btn--rose:focus, .btn--rose.focus {
  background-color: #e27384;
  border-color: transparent;
  color: var(--white);
}
.btn--rose.btn--right-icon::after {
  color: var(--white);
}

.btn--accent {
  background-color: var(--lime2025);
  border-color: transparent;
  color: var(--white);
}
@media (hover: hover) {
  .btn--accent:hover {
    background-color: var(--lime2025);
    border-color: transparent;
    color: var(--white);
    filter: brightness(1.1);
  }
}
.btn--accent:focus,
.btn--accent.focus {
  background-color: var(--lime2025);
  border-color: transparent;
  color: var(--white);
  filter: brightness(1.1);
}
.btn--accent.btn--right-icon::after {
  color: var(--white);
}

.btn--white_border {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn--white_border:hover,
.btn--white_border:focus, .btn--white_border.focus {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}


.btn--block {
  display: block;
  width: 100%;
}

.btn--lg {
  font-size: 1.25rem;
  padding: 0.5em 2rem;
}
.btn--lg.btn--right-icon {
  padding-right: 4rem;
}

/*ページ内リンク*/
.btn--bottom-icon {
  padding: 0.5em 0.5rem 2em;
  text-align: center;
}
.btn--bottom-icon::after {
  color: var(--primary);
  content: "\f078";
  font-family: FontAwesome;
  font-size: 0.75rem;
  position: absolute;
    left: 50%;
    bottom: 0.25rem;
  transform: translateX(-50%);
}


/* ### 丸ボタン
---------------------------------------- */

.btnCircle {
  background-color: #666;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.15s;
  height: 50px;
  width: 50px;
}
@media (hover: hover) {
  .btnCircle:hover {
    color: var(--white);
    filter: brightness(1.1);
  }
}
.btnCircle:focus {
  color: var(--white);
  filter: brightness(1.1);
}
.btnCircleIcon {
  border-color: currentColor currentColor transparent transparent;
  border-style: solid;
  border-width: 4px 4px 0 0;
  border-radius: 0 4px 0 0;
  color: currentcolor;
  display: inline-block;
  height: 12px;
  width: 12px;
  transform: translateX(-2px) rotate(45deg);
}




/* ## Center btn wrap
======================================== */

.center-btn-wrap {
  margin: 0 auto;
  max-width: 300px;
  width: 100%;
}
.center-btn-wrap--wide {
  max-width: 500px;
}




/* ## Site footer (Site info)
======================================== */

.siteFooter {
  background-color: var(--siteFooter__bg);
  color: var(--white);
}

.siteFooterContainer {
  margin-left: auto;
  margin-right: auto;
  width: min(100% - 15px * 2, 1280px);
}

.siteFooterLinkIconNav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.siteFooterGrid01 {
  display: flex;
  justify-content: space-between;
  gap: clamp(1rem, 1rem + 2.667vw, 3rem);
}
.siteFooterGrid01__primary,
.siteFooterGrid01__secondary {
  flex: 1;
}
@media not all and (min-width: 1040px) {
  .siteFooterGrid01__primary {
    text-align: center;
  }
  .siteFooterGrid01__secondary {
    display: none;
  }
}

.siteFooterGrid02 {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1rem + 2.667vw, 3rem);
}
@media (min-width: 1040px) {
  .siteFooterGrid02 {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footerNav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}
.footerNav__col {
  flex: 1;
}

.footerNavList01 {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
.footerNavList01__item {
  font-size: 0.875rem;
  margin-bottom: 0.875rem;
}
.footerNavList01__link:hover,
.footerNavList01__link:focus,
.footerNavList01__link {
  color: var(--white);
}
.footerNavList01__link::before {
  border-color: currentColor currentColor transparent transparent;
  border-width: 2px 2px 0 0;
  border-style: solid;
  color: inherit;
  content: "";
  display: inline-block;
  height: 0.45em;
  width: 0.45em;
  margin-right: 0.75em;
  transform: rotate(45deg) translateY(-2px);
  vertical-align: middle;
}

.footerNavList02 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
@media (min-width: 1040px) {
  .footerNavList02 {
    justify-content: flex-start;
  }
}
.footerNavList02__item {
  font-size: 0.875rem;
}
.footerNavList02__link:hover,
.footerNavList02__link:focus,
.footerNavList02__link {
  color: var(--white);
}



/* ## Go top
======================================== */

.gotopTarget {
  height: 300px;/*出現までのスクロール量*/
  position: absolute;
  visibility: hidden;
}

.gotop {
  opacity: 0;
  position: fixed;
  right: clamp(16px, 12.8px + 0.9vw, 24px);
  bottom: clamp(16px, 12.8px + 0.9vw, 24px);
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 90;
  --gotop-themeColor: #97d316;
}
.gotop.scrolled {
  opacity: 1;
  pointer-events: auto;
}

.gotop__link {
  background-color: rgb(255 255 255 / 0.9);
  border: 2px solid var(--gotop-themeColor);
  border-radius: 50%;
  color: var(--gotop-themeColor);
  display: inline-block;
  padding-top: 6px;
  text-align: center;
  text-decoration: none;
  transition: padding-top 0.15s;
  height: 44px;
  width: 44px;
}
@media (hover: hover) {
  .gotop__link:hover {
    border: 2px solid var(--gotop-themeColor);
    color: var(--gotop-themeColor);
    padding-top: 4px;
  }
}
.gotop__link:focus {
  border: 2px solid var(--gotop-themeColor);
  color: var(--gotop-themeColor);
  padding-top: 4px;
}

.gotop__icon {
  border-color: currentColor currentColor transparent transparent;
  border-style: solid;
  border-width: 3px 3px 0 0;
  border-radius: 0 3px 0 0;
  color: currentcolor;
  display: inline-block;
  height: 8px;
  width: 8px;
  transform: rotate(-45deg);
}



/* ============================================================
  # Utilities(Helper)
============================================================ */

/* 2025年度からutilities.cssへ移動 */




/* ============================================================
  # Extend
============================================================ */

/* ## newsページ（ブログ）
======================================== */

.news_heading {
  border-top: 2px solid #9f0c3e;
  border-bottom: 1px solid #cecece;
  padding: 0.75rem 0;
}

.news_listItem {
  background-color: var(--white);
  color: var(--body) !important;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  text-decoration: none;
}
.news_listItem:hover {
  text-decoration: none;
}

@media (min-width: 768px) {
  .news_listItem {
    flex-direction: row;
    gap: 2.5rem;
  }
}

.news_listItem:nth-of-type(odd) {
  background-color: #f7ecf0;
}

.news_listItem__date {
  font-size: 0.875rem;
}

/* .news_listItem__body {} */

.news_listItem__title {
  font-size: 0.875rem;
  margin: 0;
}

.news_listItem__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
.news_listItem__tag {
  color: #9f0c3e;
  font-size: 0.75rem;
}
.news_listItem__tag::before {
  content: "# ";
}


/* ### Posts
---------------------------------------- */

.post {
  margin-bottom: 1.5rem;
}

.post h1 {
  font-size: 1.5rem;
}
.post h2 {
  font-size: 1.25rem;
}
.post h3 {
  font-size: 1.125rem;
}
.post h4,
.post h5,
.post h6 {
  font-size: 1rem;
}
@media (min-width: 576px) {
  .post h1 {
    font-size: 1.75rem;
  }
  .post h2 {
    font-size: 1.375rem;
  }
  .post h3 {
    font-size: 1.25rem;
  }
  .post h4,
  .post h5,
  .post h6 {
    font-size: 1.125rem;
  }
}

.post h1 {
  border-top: 2px solid #9f0c3e;
  border-bottom: 1px solid #cecece;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  padding: 0.75rem 0;
}
.post h2 {
  background-color: #f6f4ed;
  background-image: url("./img/heading_corner.svg");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  margin-top: 2rem;
  margin-bottom: 1.125rem;
  padding: 0.75em 1rem 0.75em 1.5rem;
}
.post h3 {
  border-left: 5px solid #9f0c3e;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  padding: 0.125rem 0 0.125rem 0.75rem;
}
.post h4,
.post h5,
.post h6 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.post__tags {
  border-top: 1px solid #cecece;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding-left: 0;
}
.post__tagsLink {
  background-color: #e9e9e9;
  border-radius: 50em;
  color: #9f0c3e;
  display: block;
  font-size: 0.75rem;
  padding: 0.25em 0.75em;
}
.post__tagsLink:hover,
.post__tagsLink:focus {
  color: #9f0c3e;
}
.post__tagsLink::before {
  content: "# ";
}


/* ### Captions
---------------------------------------- */

.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-right: auto;
	margin-left: auto;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}
.wp-caption-text {
	text-align: center;
}


/* ### pagination
---------------------------------------- */

/* .pagination {} */
.pagination .nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.875rem;
  gap: 0.5rem;
  justify-content: center;
  margin: 4.5rem 0 3rem;
}
.pagination .page-numbers,
.pagination .current {
  background-color: var(--white);
  border: 1px solid #e4e4e4;
  border-radius: 0.25rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  transition: background-color 0.15s, border 0.15s, color 0.15s;
}
.pagination .next,
.pagination .prev {
  color: #848484;
}
.pagination a.page-numbers:hover,
.pagination .current {
  background-color: #006835;
  border: 1px solid #006835;
  color: var(--white);
}



/* ## Utilities
======================================== */

/* ### Accessibility
---------------------------------------- */

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}


/* ### Alignments
TODO:ブロックエディタを使用するのでこれは不要か？
---------------------------------------- */

.post::after {
  clear: both;
  content: "";
  display: block;
}
.post img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}
.post .alignnone,
.post img.alignnone {
  display: inline;
}
.post .aligncenter,
.post img.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.75rem;
}
.post .alignright,
.post img.alignright,
.post .alignleft,
.post img.alignleft {
  display: block;
}
@media (min-width: 768px) {
  .post .alignright,
  .post img.alignright {
    display: inline;
    float: right;
    margin: 0 0 0.75rem 1.125rem;
  }
  .post .alignleft,
  .post img.alignleft {
    display: inline;
    float: left;
    margin: 0 1.125rem 0.75rem 0;
  }
}

