@charset "UTF-8";
/*==========================================================
あすなろ  園での生活   
==========================================================*/
/*
Made by Elly Loel - https://ellyloel.com/
参考記事:
- Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/
- Andy Bell - https://piccalil.li/blog/a-modern-css-reset/
- Adam Argyle - https://unpkg.com/open-props@1.3.16/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE
メモ:
- :where()は簡単に上書きできるように詳細度を低くするために使用しています。
*/
* {
  margin: 0;
  padding: 0;
  /* line-heightをemベースでcalc()で計算。font-sizeを小さくするとline-heightは大きくなり、font-sizeを大きくするとline-heightは小さくなります。参考: https://kittygiraudel.com/2020/05/18/using-calc-to-figure-out-optimal-line-height/ */
  line-height: calc(0.25rem + 1em + 0.25rem);
  font-size: 62.5%;
  font-style: normal;
  font-weight: unset;
}

/* より直感的なボックスサイズのモデルを使用 */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* fieldset, progress, meter以外のすべての要素でボーダーを削除し、背景に適切なデフォルトを設定 */
*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}

html {
  /* アプリケーションでパーセントによる高さを許可する  */
  block-size: 100%;
  /* テキストのサイズはfont-sizeのみで制御されるようにする */
  -webkit-text-size-adjust: none;
}

/* 減速を好まないユーザーのためにスムーズなスクロールを実現 */
@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}
body {
  /* アプリケーションでパーセントによる高さを許可する */
  min-block-size: 100%;
  /* https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-gutter#example_2 */
  /* scrollbar-gutter: stable both-edges; バグが修正されるまで削除: https://bugs.chromium.org/p/chromium/issues/detail?id=1318404#c2 */
}

/* 各メディア要素のデフォルトを改善 */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}

/* ストロークを削除し、fillの塗りつぶしカラーはフォントカラーを継承 */
:where(svg) {
  stroke: none;
  fill: currentColor;
}

/* fill属性のないSVG */
:where(svg):where(:not([fill])) {
  /* fillを取り除き、ストロークのカラーはフォントカラーを継承 */
  stroke: currentColor;
  fill: none;
  /* 丸みを帯びたストローク */
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* width属性のないSVGのサイズを設定 */
:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

/* テキストのオーバーフローを回避 */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

/* リストの役割をするul、ol要素のリストスタイルを削除。デフォルトのスタイルが削除されることを示唆しています */
:where(ul, ol, li)[role=list] {
  list-style: none;
}

ul,
ol,
li {
  list-style: none;
}

/* クラスを持たないアンカータグに、より読みやすい下線スタイルを設定。アンカータグに設定することもできますが、コンフリクトを引き起こす可能性があります */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* インタラクティブな要素は適切なカーソルを設定して操作できることを明確にする */
/* フォーカスのアウトラインをアニメーション化 */
@media (prefers-reduced-motion: no-preference) {
  :focus-visible {
    -webkit-transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    -webkit-transition-duration: 0.25s;
            transition-duration: 0.25s;
  }
}
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

/* ユーザーがボタンのテキストを選択できないようにする */
:where(input[type=file])::-webkit-file-upload-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}
:where(button, button[type], input[type=button], input[type=submit], input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}

/* 無効化されたボタンには無効化されたカーソルを表示 */
:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}

time {
  font-size: 1em;
}

/*==========================================================
	共通設定 (Primary style)
==========================================================*/
html,
body {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 100%;
  overflow-x: hidden;
}

html {
  font-size: 62.5%;
  /* スムーススクロール */
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-size: 1.6em;
}

a {
  color: inherit;
}
a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}

hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

span,
strong,
em,
small,
i,
b {
  font-size: 1em;
}

button {
  border: none;
  text-decoration: none;
  background-color: transparent;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

/*==========================================================
	formタグ
==========================================================*/
/* フォーム内のタイポグラフィのスタイルを削除 */
:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

/* textareaのサイズ変更は垂直のみにし、ブラウザがサポートしている場合にのみblockにします */
/*==========================================================
	ウィンドウ・フォントサイズ設定
==========================================================*/
/*==========  サイズ設定 END  =============================*/
/*==========================================================
	レスポンシブ設定
==========================================================*/
/*==========================================================
	ホバー処理
==========================================================*/
/*==========================================================
	フォント読み込み
==========================================================*/
@font-face {
  font-display: swap;
  font-family: "PoppinsSemiBold";
  src: url("../fonts/PoppinsSemiBold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "PoppinsRegular";
  src: url("../fonts/PoppinsRegular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Din2014_regular";
  src: url("../fonts/DIN-2014_Regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Din2014_Bold";
  src: url("../fonts/DIN-2014_Bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Din2014_Demi";
  src: url("../fonts/DIN-2014_Demi.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Jost-ExtraLight";
  src: url("../fonts/Jost-ExtraLight.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Jost-Light";
  src: url("../fonts/Jost-Light.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Jost-Medium";
  src: url("../fonts/Jost-Medium.woff2") format("woff2");
}
/*==========================================================
	フォント指定
==========================================================*/
body {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #000000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 1;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: clamp(1.2rem, 0.4036326942vw + 10.4863773966px, 1.6rem);
}
@media (max-width: 834px) and (orientation: portrait) {
  body {
    font-size: 1.4vw;
    border: unset;
    font-family: sans-serif;
  }
}
@media (max-width: 480px) and (orientation: portrait) {
  body {
    font-size: 3.6vw;
  }
}
body img {
  width: 100%;
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  pointer-events: none;
}
@media (min-width: 768px) {
  body a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media (max-width: 480px) and (orientation: portrait) {
  body br.pc {
    display: none;
  }
}
body br.sp {
  display: none;
}
@media (max-width: 480px) and (orientation: portrait) {
  body br.sp {
    display: inline;
  }
}

/*==========================================================
	共通
==========================================================*/
main {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1em;
  width: 100%;
}

section,
article {
  width: 100%;
  position: relative;
  font-size: 1em;
}

svg {
  fill: transparent;
  stroke: transparent;
}

/*==========================================
	ハンバーガーメニュー
==========================================*/
.hamburger-button {
  position: fixed;
  --boxSize: 8vw;
  width: var(--boxSize);
  right: 2vw;
  top: 2vw;
  aspect-ratio: 1;
  z-index: 100;
  -webkit-transition: 0.8s ease-out;
  transition: 0.8s ease-out;
  font-size: 1em;
  border-radius: 0.5rem;
  display: none;
}
@media (max-width: 480px) and (orientation: portrait) {
  .hamburger-button {
    display: block;
  }
}
.hamburger-button span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 2px;
  background-color: #000000;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.hamburger-button span:nth-of-type(1) {
  -webkit-transform: translate(-50%, calc(-50% - 2vw));
          transform: translate(-50%, calc(-50% - 2vw));
}
.hamburger-button span:nth-of-type(2) {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.hamburger-button span:nth-of-type(3) {
  -webkit-transform: translate(-50%, calc(-50% + 2vw));
          transform: translate(-50%, calc(-50% + 2vw));
}
.hamburger-button.active span {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.hamburger-button.active span:nth-of-type(1) {
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
          transform: translate(-50%, -50%) rotate(135deg);
}
.hamburger-button.active span:nth-of-type(2) {
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  opacity: 0;
}
.hamburger-button.active span:nth-of-type(3) {
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
          transform: translate(-50%, -50%) rotate(-135deg);
}

.hamburger-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: #faf9f6;
  z-index: 5;
  display: none;
  place-items: center;
  translate: 100vw;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
  opacity: 0;
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
}
.hamburger-menu.active {
  translate: 0;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  opacity: 1;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
@media (max-width: 480px) and (orientation: portrait) {
  .hamburger-menu {
    display: grid;
  }
}
.hamburger-menu > nav {
  position: relative;
  font-size: 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.hamburger-menu > nav > a, .hamburger-menu > nav > div {
  font-size: max(12px, 1.3125em);
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-block: 4vw;
}
.hamburger-menu > nav > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.hamburger-menu > nav > div span {
  font-size: inherit;
}
.hamburger-menu > nav > div nav {
  font-size: inherit;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2vw 0;
  margin-top: 2vw;
}
.hamburger-menu > nav > div nav a {
  font-size: max(12px, 0.875em);
}

/*==========================================================
    footer(フッター)
==========================================================*/
footer {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1em;
  padding: 5em 2vw;
  --maxWidth: 100rem;
  background-color: #fff;
}
@media (max-width: 480px) and (orientation: portrait) {
  footer {
    padding: 8vw 12vw 12vw;
  }
}
footer .block_footer-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: var(--maxWidth);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 480px) and (orientation: portrait) {
  footer .block_footer-head {
    max-width: unset;
    -webkit-box-pack: unset;
    -webkit-justify-content: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
footer .block_footer-head .box_logo {
  position: relative;
  font-size: 1em;
  width: 23em;
}
@media (max-width: 480px) and (orientation: portrait) {
  footer .block_footer-head .box_logo {
    width: 50vw;
  }
}
footer .block_footer-head .box_link {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  font-size: 1em;
}
footer .block_footer-head a {
  position: relative;
  font-size: max(12px, 1.125em);
  font-weight: 700;
  padding: 1.4em 6em;
  border-radius: 1.4em;
}
@media (max-width: 480px) and (orientation: portrait) {
  footer .block_footer-head a {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 100vmax;
    margin-top: 6vw;
  }
}
footer nav {
  position: relative;
  font-size: 1em;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: var(--maxWidth);
  gap: 0 2em;
  margin-top: 2em;
}
@media (max-width: 480px) and (orientation: portrait) {
  footer nav {
    display: none;
  }
}
footer nav a {
  font-size: max(12px, 1em);
  letter-spacing: 0.08em;
}

.footer_shop-list {
  position: relative;
  font-size: 1em;
  width: 100%;
  max-width: var(--maxWidth);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
  margin-top: 7em;
}
@media (max-width: 480px) and (orientation: portrait) {
  .footer_shop-list {
    grid-template-columns: unset;
    grid-auto-flow: row;
    gap: 6vw 0;
    margin-top: 14vw;
  }
}
.footer_shop-list li {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1em;
  border: 1px solid #bababa;
  border-radius: 1rem;
  color: #443f3d;
}
.footer_shop-list li img {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  aspect-ratio: 1.97;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer_shop-list li .wrap_contents {
  position: relative;
  font-size: 1em;
  padding: 0.8em 1em 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer_shop-list li .head {
  font-size: max(12px, 0.875em);
}
.footer_shop-list li .name {
  font-size: max(12px, 1.125em);
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0.2em 0 0.3em;
}
.footer_shop-list li .tel {
  font-size: max(12px, 0.875em);
}
.footer_shop-list li .tel::before {
  content: "TEL";
  margin-right: 0.5em;
}
.footer_shop-list li .fax {
  font-size: max(12px, 0.875em);
}
.footer_shop-list li .fax::before {
  content: "FAX";
  margin-right: 0.5em;
}
.footer_shop-list li address {
  font-size: max(12px, 0.875em);
  margin-top: 0.5em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.3em 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

/*==========================================================
   変数指定
==========================================================*/
body {
  background-color: #f0efea;
  --buttonColor: unset;
}

/*==========================================================
  共通
==========================================================*/
h1 {
  width: 100%;
  max-width: 110rem;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  color: #646464;
  font-size: max(12px, 1.125em);
  letter-spacing: 0.12em;
}
@media (max-width: 480px) and (orientation: portrait) {
  h1 {
    font-size: max(12px, 0.875em);
    padding-left: 4vw;
  }
}

section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
section h2,
section h3 {
  position: relative;
  font-size: max(12px, 2.25em);
  letter-spacing: 0.2em;
  font-weight: 700;
}
@media (max-width: 480px) and (orientation: portrait) {
  section h2,
  section h3 {
    font-size: max(12px, 1.5em);
  }
}
section .h2_sidebar,
section .h3_sidebar {
  font-family: "PoppinsSemiBold";
  font-weight: normal;
  font-style: normal;
  font-size: max(12px, 1em);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-top: 1em;
}
@media (max-width: 480px) and (orientation: portrait) {
  section .h2_sidebar,
  section .h3_sidebar {
    font-size: max(12px, 0.875em);
    margin-top: 2vw;
  }
}

.link_info {
  position: fixed;
  top: 10em;
  right: 0;
  width: 3.6em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: inherit;
  padding: 4em 1em 1.4em;
  border-top-left-radius: 0.8rem;
  border-bottom-left-radius: 0.8rem;
  -webkit-box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
          box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
  background-color: #ece6bf;
  z-index: 10;
}
@media (max-width: 480px) and (orientation: portrait) {
  .link_info {
    display: none;
  }
}
.link_info div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: max(12px, 1em);
  letter-spacing: 0.36em;
  font-weight: 700;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
  color: #06c755;
  height: 7em;
}
.link_info div::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 0.8em);
  width: 2.4em;
  left: 50%;
  translate: -50%;
}
.link_info div i {
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
  text-orientation: mixed;
  display: inline-block;
  -webkit-transform-origin: center;
          transform-origin: center;
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0.15em;
  margin-top: 0.2em;
}

.btn_link {
  position: relative;
  background-color: var(--buttonColor);
  font-size: 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 26em;
  height: 5em;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 2em;
  border-radius: 100vmax;
}
@media (max-width: 480px) and (orientation: portrait) {
  .btn_link {
    width: 70vw;
    max-width: unset;
    height: 4em;
  }
}
.btn_link span {
  position: relative;
  width: 100%;
  font-size: max(12px, 1.125em);
  font-weight: 700;
  letter-spacing: 0.12em;
}
.btn_link span::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 0;
  width: 0.7em;
  aspect-ratio: 0.85;
  background-color: #000000;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.containerHeadImage {
  margin-bottom: 3em;
}
.containerHeadImage .block_head-image {
  position: relative;
  font-size: 1em;
  margin-top: 1em;
  padding-top: 2em;
}
@media (max-width: 480px) and (orientation: portrait) {
  .containerHeadImage .block_head-image {
    margin-top: unset;
    padding-top: unset;
  }
}
.containerHeadImage .block_head-image .box_image {
  -webkit-clip-path: url(#maskHeadImage02);
          clip-path: url(#maskHeadImage02);
  aspect-ratio: 1427/400;
}
@media (max-width: 480px) and (orientation: portrait) {
  .containerHeadImage .block_head-image .box_image {
    -webkit-clip-path: url(#maskHeadImage);
            clip-path: url(#maskHeadImage);
    aspect-ratio: 1366/785;
  }
}
.containerHeadImage .block_head-image .box_image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1427/400;
}
@media (max-width: 480px) and (orientation: portrait) {
  .containerHeadImage .block_head-image .box_image img {
    aspect-ratio: 1366/785;
  }
}
.containerHeadImage .block_head-image .image_cactus {
  position: absolute;
  top: 0;
  left: 8vw;
  width: 8vw;
}
@media (max-width: 480px) and (orientation: portrait) {
  .containerHeadImage .block_head-image .image_cactus {
    top: 4vw;
  }
}
.containerHeadImage .block_head-image .image_cactus::after {
  content: "";
  position: absolute;
  width: 80%;
  left: 70%;
  top: 25%;
  aspect-ratio: 1;
}
.containerHeadImage .block_head-image .image_zebra {
  position: absolute;
  top: 0;
  right: 14vw;
  width: 18vw;
}
@media (max-width: 480px) and (orientation: portrait) {
  .containerHeadImage .block_head-image .image_zebra {
    top: 4vw;
  }
}
.containerHeadImage .block_head-image .image_zebra::before, .containerHeadImage .block_head-image .image_zebra::after {
  content: "";
  aspect-ratio: 1.5;
  position: absolute;
}
.containerHeadImage .block_head-image .image_zebra::before {
  width: 45%;
  top: 10%;
  right: 100%;
}
.containerHeadImage .block_head-image .image_zebra::after {
  width: 30%;
  top: -10%;
  left: 100%;
}
.containerHeadImage .block_head-image .image_lion {
  position: absolute;
  top: 55%;
  left: 4vw;
  width: 22vw;
}
.containerHeadImage .block_head-image .image_koala {
  font-size: 1em;
  position: absolute;
  bottom: -3em;
  right: 0;
  width: 8vw;
}
@media (max-width: 480px) and (orientation: portrait) {
  .containerHeadImage .block_head-image .image_koala {
    bottom: -2vw;
  }
}
.containerHeadImage .block_head-image .image_koala::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 100%;
  width: 180%;
  aspect-ratio: 1.1243;
}

/*==========================================================
    header(ヘッダー)
==========================================================*/
header {
  position: relative;
  font-size: 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media (max-width: 480px) and (orientation: portrait) {
  header {
    padding-bottom: 4vw;
  }
}
header .block_nav {
  position: relative;
  font-size: 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 110rem;
  padding-inline: 2vw;
  gap: 0 3em;
  padding: 1em;
}
header .block_nav .box_logo {
  font-size: 1em;
  width: 21em;
  background-color: #f0efea;
}
@media (max-width: 480px) and (orientation: portrait) {
  header .block_nav .box_logo {
    width: 45vw;
  }
}
header .block_nav .box_logo img {
  mix-blend-mode: multiply;
}
header .block_nav .box_logo.asunaro {
  display: grid;
  gap: 0 1em;
  grid-template-columns: 45% 55%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 28em;
}
@media (max-width: 480px) and (orientation: portrait) {
  header .block_nav .box_logo.asunaro {
    width: 80vw;
    gap: 0 2vw;
  }
}
header .block_nav > nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 1em;
  gap: 0 2em;
}
@media (max-width: 480px) and (orientation: portrait) {
  header .block_nav > nav {
    display: none;
  }
}
header .block_nav > nav > a {
  position: relative;
  font-size: max(12px, 1em);
  letter-spacing: 0.12em;
}
header .block_nav > nav > div {
  position: relative;
  font-size: inherit;
  padding-right: 1em;
  cursor: pointer;
}
header .block_nav > nav > div span {
  position: relative;
  font-size: max(12px, 1em);
  letter-spacing: 0.12em;
  padding-right: 1em;
}
header .block_nav > nav > div span::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 0;
  width: 0.8em;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 9"  fill="%23777777"> <polygon points="10.49 9 6.36 5.13 2.62 8.95 0 6.37 6.26 0 13 6.32 10.49 9"/></svg>');
  aspect-ratio: 13/9;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  scale: 1 -1;
}
header .block_nav > nav > div .modal-sub-box_menu {
  position: absolute;
  top: calc(100% + 1em);
  left: 0;
  font-size: inherit;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #ece6bf;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  z-index: 9;
  padding-top: 0.5em;
  -webkit-box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
          box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  opacity: 0;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
}
header .block_nav > nav > div .modal-sub-box_menu::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 30%;
  width: 1em;
  aspect-ratio: 1/0.75;
  -webkit-clip-path: polygon(50% 0, 0 100%, 100% 100%);
          clip-path: polygon(50% 0, 0 100%, 100% 100%);
  background-color: #ece6bf;
}
header .block_nav > nav > div .modal-sub-box_menu a {
  font-size: max(12px, 1em);
  padding: 0.5em 1em;
  letter-spacing: 0.08em;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
header .block_nav > nav > div .modal-sub-box_menu.is-active {
  opacity: 1;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
header .block_nav > nav > div .modal-sub-box_menu.yamanami a:not(:first-of-type) {
  border-top: 1px solid #66d8b5;
}
@media (hover: hover) {
  header .block_nav > nav > div .modal-sub-box_menu.yamanami a:where(:-webkit-any-link, :enabled, summary):hover {
    background-color: #66d8b5;
  }
  header .block_nav > nav > div .modal-sub-box_menu.yamanami a:where(:-moz-any-link, :enabled, summary):hover {
    background-color: #66d8b5;
  }
  header .block_nav > nav > div .modal-sub-box_menu.yamanami a:where(:any-link, :enabled, summary):hover {
    background-color: #66d8b5;
  }
}
header .block_nav > nav > div .modal-sub-box_menu.gocho a:not(:first-of-type) {
  border-top: 1px solid #7ca0e2;
}
@media (hover: hover) {
  header .block_nav > nav > div .modal-sub-box_menu.gocho a:where(:-webkit-any-link, :enabled, summary):hover {
    background-color: rgba(124, 160, 226, 0.6);
  }
  header .block_nav > nav > div .modal-sub-box_menu.gocho a:where(:-moz-any-link, :enabled, summary):hover {
    background-color: rgba(124, 160, 226, 0.6);
  }
  header .block_nav > nav > div .modal-sub-box_menu.gocho a:where(:any-link, :enabled, summary):hover {
    background-color: rgba(124, 160, 226, 0.6);
  }
}
header .block_nav > nav > div .modal-sub-box_menu.asunaro a:not(:first-of-type) {
  border-top: 1px solid #f08fb9;
}
@media (hover: hover) {
  header .block_nav > nav > div .modal-sub-box_menu.asunaro a:where(:-webkit-any-link, :enabled, summary):hover {
    background-color: rgba(240, 143, 185, 0.6);
  }
  header .block_nav > nav > div .modal-sub-box_menu.asunaro a:where(:-moz-any-link, :enabled, summary):hover {
    background-color: rgba(240, 143, 185, 0.6);
  }
  header .block_nav > nav > div .modal-sub-box_menu.asunaro a:where(:any-link, :enabled, summary):hover {
    background-color: rgba(240, 143, 185, 0.6);
  }
}
header .hamburger-menu::before, header .hamburger-menu::after {
  content: "";
  aspect-ratio: 1.5;
  position: absolute;
}
header .hamburger-menu::before {
  width: 22vw;
  top: 16vw;
  left: -6vw;
}
header .hamburger-menu::after {
  width: 16%;
  top: 6vw;
  left: 14vw;
}
header .hamburger-menu nav::before {
  content: "";
  position: absolute;
  right: calc(100% + 8vw);
  top: calc(100% - 30vw);
  width: 50vw;
  aspect-ratio: 1.178;
}
header .hamburger-menu nav::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: calc(100% + 6vw);
  width: 45vw;
  aspect-ratio: 1/1.9657;
  z-index: 1;
}
header .hamburger-menu nav .modal-sub-box_menu {
  font-size: inherit;
  display: grid;
  grid-template-rows: 0fr;
  z-index: 9;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  opacity: 0;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
}
header .hamburger-menu nav .modal-sub-box_menu div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4vw 0;
  overflow: hidden;
}
header .hamburger-menu nav .modal-sub-box_menu a {
  font-size: 12px;
  letter-spacing: 0.08em;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
header .hamburger-menu nav .modal-sub-box_menu.is-active {
  opacity: 1;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
  grid-template-rows: 1fr;
}

/*==========================================================
    footer(フッター)
==========================================================*/
footer {
  padding-top: 8em;
}
@media (max-width: 480px) and (orientation: portrait) {
  footer {
    padding-top: 8vw;
  }
}
footer .block_footer-head a {
  background-color: var(--buttonColor);
}
footer .block_footer-head a::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 60%;
  width: 60%;
  aspect-ratio: 1/1.9657;
  z-index: 1;
}
@media (max-width: 480px) and (orientation: portrait) {
  footer .block_footer-head a::after {
    left: 90%;
    width: 35vw;
  }
}

/*==========================================================
   変数指定
==========================================================*/
.hamburger-button span {
  background-color: #0c9743;
}

.link_info.asunaro div::before {
  width: 2em;
  background: url(../img/logo-mark-asunaro.webp) no-repeat center center/contain;
  aspect-ratio: 190/205;
  mix-blend-mode: multiply;
}

/*==========================================================
    header(ヘッダー)
==========================================================*/
header .block_head-image .image_cactus::after {
  background: url(../../../assets/img/image_cactus02.webp) no-repeat center center/contain;
}
header .block_head-image .image_zebra::before, header .block_head-image .image_zebra::after {
  background: url(../../../assets/img/image_cloud.webp) no-repeat center center/contain;
}
header .block_head-image .image_koala::after {
  background: url(../img/image_three.webp) no-repeat center center/contain;
}
header .hamburger-menu::before, header .hamburger-menu::after {
  background: url(../img/image_cloud.webp) no-repeat center center/contain;
}
header .hamburger-menu nav::before {
  background: url(../img/image_lion.webp) no-repeat center center/contain;
}
header .hamburger-menu nav::after {
  background: url(../img/image_giraffe.webp) no-repeat center center/contain;
}

/*==========================================================
    footer(フッター)
==========================================================*/
footer .block_footer-head a::after {
  background: url(../img/image_giraffe.webp) no-repeat center center/contain;
}

.containerHeadImage {
  z-index: -1;
}
.containerHeadImage .block_head-image .image_cactus::after {
  background: url(../../../assets/img/image_cactus02.webp) no-repeat center center/contain;
}
.containerHeadImage .block_head-image .image_zebra::before, .containerHeadImage .block_head-image .image_zebra::after {
  background: url(../../../assets/img/image_cloud.webp) no-repeat center center/contain;
}
.containerHeadImage .block_head-image .image_koala::after {
  background: url(../img/image_three.webp) no-repeat center center/contain;
}

/*==========================================================
    変数指定
----------------------------------------------------------*/
body {
  --buttonColor: #B4B4E5;
  --bgColor: #F08FB9;
}

/*==========================================================
  main
==========================================================*/
.container01 {
  padding: 3em 0 6em;
}
@media (max-width: 480px) and (orientation: portrait) {
  .container01 {
    padding: 8vw 0 8vw;
  }
}
.container01::before {
  content: "";
  font-size: 1em;
  position: absolute;
  left: 20%;
  bottom: 8em;
  width: 12em;
  aspect-ratio: 1.1;
  background: url(../../../assets/img/image_fox.webp) no-repeat center center/contain;
  z-index: 1;
}
@media (max-width: 480px) and (orientation: portrait) {
  .container01::before {
    left: 8vw;
    width: 26vw;
    bottom: 0;
  }
}
.container01 > article {
  margin-top: 4em;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4em 0 14em;
}
@media (max-width: 480px) and (orientation: portrait) {
  .container01 > article {
    padding: 8vw 0 16vw;
    margin-top: 4vw;
  }
}
.container01 > article::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ECE7BF;
  z-index: -1;
  -webkit-clip-path: polygon(0 10%, 25% 0, 80% 2%, 100% 20%, 100% 80%, 85% 95%, 50% 100%, 0 90%);
          clip-path: polygon(0 10%, 25% 0, 80% 2%, 100% 20%, 100% 80%, 85% 95%, 50% 100%, 0 90%);
}
@media (max-width: 480px) and (orientation: portrait) {
  .container01 > article::after {
    aspect-ratio: 1/1.2;
  }
}
.container01 > article > dl {
  position: relative;
  font-size: 1em;
  display: grid;
  grid-template-columns: auto 1fr;
  padding-inline: 2vw;
  max-width: 110rem;
  width: 100%;
  padding-left: 40%;
  gap: 1em 0;
  margin-top: 5em;
}
@media (max-width: 480px) and (orientation: portrait) {
  .container01 > article > dl {
    padding-left: 34vw;
    margin-top: 8vw;
  }
}
.container01 > article > dl::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: calc(100% + 2em);
  width: 14em;
  aspect-ratio: 1.1864;
  background: url(../../../assets/img/image_zebra.webp) no-repeat center center/contain;
}
@media (max-width: 480px) and (orientation: portrait) {
  .container01 > article > dl::before {
    width: 30vw;
    bottom: 94%;
  }
}
.container01 > article > dl > div {
  grid-column: span 2;
  display: grid;
  grid-template-columns: subgrid;
  font-size: 1em;
  gap: 0 2em;
  z-index: 1;
}
@media (max-width: 480px) and (orientation: portrait) {
  .container01 > article > dl > div {
    gap: 0 2vw;
  }
}
.container01 > article > dl > div:not(:last-of-type) > dt::after {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50%;
  top: 100%;
  width: 5px;
  height: 1.3em;
  background-color: #000;
  z-index: -1;
}
.container01 > article > dl > div.box_07 > dt .wrap_photo, .container01 > article > dl > div.box_10 > dt .wrap_photo, .container01 > article > dl > div.box_12 > dt .wrap_photo {
  bottom: calc(100% + 4em);
}
.container01 > article > dl > div.box_07 > dt .wrap_photo::before, .container01 > article > dl > div.box_12 > dt .wrap_photo::before {
  top: 130%;
  width: 11em;
  left: calc(100% - 4em);
  rotate: 60deg;
}
.container01 > article > dl > div.box_10 > dt .wrap_photo::before {
  top: 120%;
  width: 11em;
  left: calc(100% - 4em);
  rotate: 60deg;
}
.container01 > article > dl > div.box_01 > dt .wrap_photo {
  top: -8em;
}
.container01 > article > dl > div.box_01 > dt .wrap_photo::before {
  top: 100%;
  rotate: 45deg;
}
.container01 > article > dl > div.box_02 > dt .wrap_photo {
  top: -1em;
}
.container01 > article > dl > div.box_02 > dt .wrap_photo::before {
  top: 45%;
  rotate: -8deg;
}
@media (max-width: 480px) and (orientation: portrait) {
  .container01 > article > dl > div.box_02 > dt .wrap_photo {
    top: 0;
  }
}
.container01 > article > dl > div > dt {
  position: relative;
  font-size: 1em;
  display: grid;
  place-items: center;
  width: 9em;
  aspect-ratio: 1;
  border: solid 2px #000;
  border-radius: 50%;
  background-color: var(--bgColor);
}
@media (max-width: 480px) and (orientation: portrait) {
  .container01 > article > dl > div > dt {
    width: 18vw;
  }
}
.container01 > article > dl > div > dt .wrap_photo {
  position: absolute;
  right: calc(100% + 4em);
  font-size: 1em;
  width: 16em;
}
@media (max-width: 480px) and (orientation: portrait) {
  .container01 > article > dl > div > dt .wrap_photo {
    width: 24vw;
    right: calc(100% + 8vw);
  }
}
.container01 > article > dl > div > dt .wrap_photo::before {
  content: "";
  position: absolute;
  left: calc(100% - 1em);
  translate: 0 -50%;
  height: 4px;
  width: 8em;
  background-size: 10px 4px;
  background-image: -webkit-linear-gradient(left, #000000 5px, transparent 5px);
  background-image: linear-gradient(to right, #000000 5px, transparent 5px);
  background-repeat: repeat-x;
  background-position: left bottom;
  z-index: -1;
}
@media (max-width: 480px) and (orientation: portrait) {
  .container01 > article > dl > div > dt .wrap_photo::before {
    width: 20vw;
    height: 2px;
    background-size: 6px 2px;
    background-image: -webkit-linear-gradient(left, #000000 3px, transparent 3px);
    background-image: linear-gradient(to right, #000000 3px, transparent 3px);
  }
}
.container01 > article > dl > div > dt .wrap_photo img {
  width: 100%;
  aspect-ratio: 1.5;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-clip-path: url(#maskNewsImage);
          clip-path: url(#maskNewsImage);
}
.container01 > article > dl > div > dt .wrap_photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
  z-index: -1;
  -webkit-clip-path: url(#maskNewsImage);
          clip-path: url(#maskNewsImage);
  translate: 0.5em 0.5em;
}
.container01 > article > dl > div > dt .month {
  font-size: max(12px, 2.25em);
  font-weight: 700;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 480px) and (orientation: portrait) {
  .container01 > article > dl > div > dt .month {
    font-size: max(12px, 1.3125em);
  }
}
.container01 > article > dl > div > dt .month span {
  font-family: "PoppinsSemiBold";
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  display: inline-block;
  margin-right: 0.02em;
  line-height: 0.8em;
}
.container01 > article > dl > div > dd {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1em;
  gap: 0.2em 0;
  padding-top: 1em;
}
@media (max-width: 480px) and (orientation: portrait) {
  .container01 > article > dl > div > dd {
    padding-top: inherit;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: unset;
  }
}
.container01 > article > dl > div > dd > div {
  font-size: max(12px, 1.125em);
  letter-spacing: 0.12em;
}
@media (max-width: 480px) and (orientation: portrait) {
  .container01 > article > dl > div > dd > div {
    font-size: max(12px, 0.875em);
    letter-spacing: 0.04em;
  }
}
.container01 > article .notice {
  font-size: max(12px, 1em);
  line-height: 1.6em;
  margin-top: 4em;
}
@media (max-width: 480px) and (orientation: portrait) {
  .container01 > article .notice {
    margin-top: 4vw;
  }
}

.container02 {
  padding: 3em 2vw;
}
@media (max-width: 480px) and (orientation: portrait) {
  .container02 {
    padding: 4vw 6vw;
  }
}
.container02 > article {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 110rem;
  gap: 0 1em;
  margin-top: 2em;
}
@media (max-width: 480px) and (orientation: portrait) {
  .container02 > article {
    grid-template-columns: unset;
    grid-auto-flow: row;
    max-width: unset;
    gap: 8vw 0;
  }
}
.container02 > article .block_inner_01,
.container02 > article .block_inner_02 {
  background-color: #fff;
  border-radius: 4em;
  font-size: 1em;
  padding: 3em 3em 4em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em 0;
}
@media (max-width: 480px) and (orientation: portrait) {
  .container02 > article .block_inner_01,
  .container02 > article .block_inner_02 {
    padding: 6vw 4vw;
  }
}
.container02 > article .block_inner_01 > p,
.container02 > article .block_inner_02 > p {
  font-size: max(12px, 1em);
  letter-spacing: 0.04em;
  line-height: 1.6em;
}
.container02 > article .block_inner_01 > a,
.container02 > article .block_inner_02 > a {
  font-size: 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #F0EFEA;
  padding: 1em 2em;
  gap: 0.2em 0;
}
.container02 > article .block_inner_01 > a h4,
.container02 > article .block_inner_02 > a h4 {
  font-size: max(12px, 0.875em);
  font-weight: 700;
  color: #F08FB9;
}
.container02 > article .block_inner_01 > a > p,
.container02 > article .block_inner_02 > a > p {
  font-size: 12px;
}
.container02 > article .block_inner_01 .box_image,
.container02 > article .block_inner_02 .box_image {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.container02 > h3 {
  font-size: max(12px, 1.75em);
  margin-top: 1em;
}
@media (max-width: 480px) and (orientation: portrait) {
  .container02 > h3 {
    margin-top: 6vw;
  }
}
.container02 > ul {
  font-size: 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 1em;
}
@media (max-width: 480px) and (orientation: portrait) {
  .container02 > ul {
    padding-left: 2vw;
  }
}
.container02 > ul > li {
  font-size: max(12px, 1em);
  letter-spacing: 0.04em;
  line-height: 1.6em;
  position: relative;
}
@media (max-width: 480px) and (orientation: portrait) {
  .container02 > ul > li {
    font-size: max(12px, 0.875em);
  }
}
.container02 > ul > li::before {
  content: "";
  position: absolute;
  right: calc(100% + 0.1em);
  width: 0.8em;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #000000;
  top: 0.4em;
}

.container03 {
  padding: 3em 2vw 8em;
}
@media (max-width: 480px) and (orientation: portrait) {
  .container03 {
    padding: 10vw 4vw 14vw;
  }
}
.container03::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 100%;
  height: 40%;
  background-color: var(--bgColor);
  z-index: -1;
}
.container03 > article {
  max-width: 110rem;
  background-color: #fff;
  border-radius: 4em;
  padding: 3em 3em 8em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em 0;
}
@media (max-width: 480px) and (orientation: portrait) {
  .container03 > article {
    max-width: unset;
    padding: 8vw 6vw 14vw;
    gap: 2vw 0;
  }
}
.container03 > article::before {
  content: "";
  position: absolute;
  bottom: -3em;
  right: 75%;
  width: 24em;
  background: url(../../../assets/img/image_mushrooms.webp) no-repeat center center/contain;
  aspect-ratio: 2.3661;
}
@media (max-width: 480px) and (orientation: portrait) {
  .container03 > article::before {
    width: 36vw;
    bottom: -2vw;
  }
}
.container03 > article h2 {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}
.container03 > article > p {
  font-size: max(12px, 1em);
  letter-spacing: 0.04em;
  text-align: justify;
  line-height: 1.8em;
  max-width: 89rem;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  margin-top: 2em;
}
.container03 > article > ul {
  position: relative;
  font-size: 1em;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 1em;
  max-width: 89rem;
  align-self: center;
}
@media (max-width: 480px) and (orientation: portrait) {
  .container03 > article > ul {
    grid-template-columns: unset;
    grid-auto-flow: row;
    gap: 20vw 0;
    max-width: unset;
    margin-top: 8vw;
  }
}
.container03 > article > ul > li {
  position: relative;
  font-size: 1em;
  grid-row: span 3;
  display: grid;
  grid-template-rows: subgrid;
}
@media (max-width: 480px) and (orientation: portrait) {
  .container03 > article > ul > li {
    gap: 0;
  }
}
.container03 > article > ul > li .wrap_phase01 {
  position: relative;
  font-size: 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.container03 > article > ul > li .wrap_phase01::after {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50%;
  top: 100%;
  width: 2em;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 27 33"  fill="%23F08FB9"><path d="M15.91,24.82V0h-4.83v24.82c-2.58-2.63-5.52-4.88-8.73-6.7l-2.36,3.28c5.08,3.13,9.64,7.05,13.5,11.6,3.86-4.55,8.42-8.47,13.5-11.6l-2.35-3.28c-3.21,1.82-6.15,4.07-8.73,6.7Z"/></svg>');
  aspect-ratio: 27/33;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.container03 > article > ul > li .wrap_phase01 p {
  font-size: max(12px, 2.4375em);
  text-align: center;
}
.container03 > article > ul > li .wrap_phase02 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1em;
  margin-top: 3em;
}
.container03 > article > ul > li .wrap_phase02 h3 {
  font-size: max(12px, 1.125em);
  text-align: center;
  letter-spacing: 0.04em;
  padding-block: 1.2em;
}
.container03 > article > ul > li .wrap_phase02 > div {
  border-left: 2px solid;
  border-right: 2px solid;
  border-bottom: 2px solid;
  font-size: 1em;
  padding: 2.4em 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 8em;
}
.container03 > article > ul > li .wrap_phase02 > div span {
  position: relative;
  font-size: max(12px, 2.25em);
}
.container03 > article > ul > li .wrap_phase02 > div span::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: calc(100% + 0.3em);
  width: 3em;
  aspect-ratio: 1.34;
  background: url(../img/image_children.webp) no-repeat center center/contain;
}
.container03 > article > ul > li > p {
  font-size: max(12px, 1em);
  letter-spacing: 0.04em;
  line-height: 1.6em;
  margin-top: 0.5em;
}
.container03 > article > ul > li.box01 .wrap_phase01 {
  background-color: var(--bgColor);
  padding-block: 1em;
}
.container03 > article > ul > li.box01 .wrap_phase01 p {
  color: #fff;
}
.container03 > article > ul > li.box01 .wrap_phase02 h3 {
  background-color: var(--bgColor);
  color: #fff;
}
.container03 > article > ul > li.box01 .wrap_phase02 > div {
  border-color: var(--bgColor);
}
.container03 > article > ul > li.box02 .wrap_phase01 {
  padding-block: 1em;
  border: 2px solid var(--bgColor);
  padding-left: 4em;
}
.container03 > article > ul > li.box02 .wrap_phase01 p {
  position: relative;
  display: inline-block;
  font-size: max(12px, 2.25em);
}
.container03 > article > ul > li.box02 .wrap_phase01 p::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: calc(100% + 0.3em);
  width: 2em;
  aspect-ratio: 1/1.1583;
  background: url(../img/image_baby.webp) no-repeat center center/contain;
}
.container03 > article > ul > li.box02 .wrap_phase02 h3 {
  background-color: #E4B9CF;
  color: #443F3D;
}
.container03 > article > ul > li.box02 .wrap_phase02 > div {
  border-color: #E4B9CF;
}
.container03 > article > .box_pdf {
  font-size: 1em;
  align-self: center;
  background-color: #F0EFEA;
  padding: 2em 3em;
  gap: 0.2em 0;
  width: 100%;
  max-width: 89rem;
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3em 1em;
}
@media (max-width: 480px) and (orientation: portrait) {
  .container03 > article > .box_pdf {
    margin-top: 6vw;
    grid-template-columns: unset;
    grid-auto-flow: row;
    max-width: unset;
    padding: 4vw 4vw;
  }
}
.container03 > article > .box_pdf .head {
  font-size: max(12px, 1.125em);
  font-weight: 700;
}
.container03 > article > .box_pdf h4 {
  font-size: max(12px, 0.875em);
  font-weight: 700;
  color: #F08FB9;
}
.container03 > article > .box_pdf > p {
  font-size: max(12px, 1em);
  grid-column: span 2;
}
@media (max-width: 480px) and (orientation: portrait) {
  .container03 > article > .box_pdf > p {
    grid-column: unset;
    display: block;
    word-break: break-all;
  }
}

/*==========================================================
	赤ちゃん情報ボックス
==========================================================*/
.baby-info-box {
  background-color: var(--bgColor);
  padding: 20px 30px;
  text-align: center;
  margin: 10px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  max-width: none;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
  font-weight: 400;
  color: white;
  font-size: 36px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-sizing: border-box;
  width: 100%;
}

@media (max-width: 834px) and (orientation: portrait) {
  .baby-info-box {
    font-size: 28px;
    padding: 16px 24px;
    gap: 10px;
  }
  
  .baby-info-image {
    width: 3em;
    height: 3em;
  }
}

@media (max-width: 768px) {
  .baby-info-box {
    font-size: 24px;
    padding: 14px 20px;
    gap: 8px;
  }
  
  .baby-info-image {
    width: 2.5em;
    height: 2.5em;
  }
}

/*==========================================================
	新しいテーブルCSS（上と左右を分けて作成）
==========================================================*/

/* 上部のbaby-info-box */
.baby-info-box {
  background-color: var(--bgColor);
  padding: 20px 30px;
  text-align: center;
  margin: 10px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  max-width: none;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
  font-weight: 400;
  color: white;
  font-size: 36px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-sizing: border-box;
  width: 100%;
}

.baby-info-text {
  flex-shrink: 1;
  min-width: 0;
}

.baby-info-image {
  width: 3.5em;
  height: 3.5em;
  flex-shrink: 0;
}

/*==========================================================
	テーブルCSS（整理版）
==========================================================*/

/* テーブル基本設定 */
.container03 table {
  width: 100%;
  max-width: 89rem;
  margin: 0 auto;
  table-layout: fixed;
}

.container03 table td {
  width: 50%;
  vertical-align: top;
}



/* 左右のコンテンツ */
.container03 table td .wrap_phase02 {
  position: relative;
  display: flex;
  flex-direction: column;
  font-size: 1em;
}

/* 矢印 */
.container03 table td .arrow-svg {
  width: 1.5em;
  height: 1.8em;
  margin: 3em auto 22em auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}



/* 左側のコンテンツ */
.container03 table td .wrap_phase02.left-content {
  margin-right: 2em;
}

/* 右側のコンテンツ */
.container03 table td .wrap_phase02.right-content {
  margin-left: 2em;
}

.container03 table td .wrap_phase02 h3 {
  font-size: max(16px, 1.5em);
  text-align: center;
  letter-spacing: 0.04em;
  padding-block: 1.2em;
  background-color: var(--bgColor);
  color: #fff;
}

.sp-only {
  display: none;
}

.container03 table td .wrap_phase02 > div {
  border-left: 2px solid var(--bgColor);
  border-right: 2px solid var(--bgColor);
  border-bottom: 2px solid var(--bgColor);
  font-size: 1em;
  padding: 15em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container03 table td .wrap_phase02 > div span {
  position: relative;
  font-size: 28px;
  display: flex;
  align-items: center;
  margin-left: 3em;
}

.container03 table td .wrap_phase02 > div span::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: calc(100% + 0.3em);
  width: 3em;
  aspect-ratio: 1.34;
  background: url(../img/image_children.webp) no-repeat center center/contain;
}

.container03 table td > p {
  font-size: max(12px, 1em);
  letter-spacing: 0.04em;
  line-height: 1.6em;
  margin-top: 0.5em;
}

/* レスポンシブ対応 */
@media (max-width: 834px) and (orientation: portrait) {
  .baby-info-box {
    font-size: 28px;
    padding: 16px 24px;
    gap: 10px;
  }
  .baby-info-image {
    width: 3em;
    height: 3em;
  }
}

@media (max-width: 768px) {
  .baby-info-box {
    font-size: 24px;
    padding: 14px 20px;
    gap: 8px;
  }
  .baby-info-image {
    width: 2.5em;
    height: 2.5em;
  }
}

@media (max-width: 480px) and (orientation: portrait) {
  .baby-info-box {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: normal;
    padding: 12px 16px;
    gap: 6px;
    flex-direction: column;
    white-space: normal;
  }
  
  .baby-info-image {
    display: none;
  }
  
  .baby-info-text:first-child {
    margin-bottom: 4px;
  }
  
  .baby-info-text:last-child::before {
    content: "";
    display: inline-block;
    width: 38px;
    height: 38px;
    background: url(../img/image_baby.webp) no-repeat center center/contain;
    margin-right: 6px;
    vertical-align: middle;
  }
  
  /* スマホ版テーブル */
  .container03 table td .wrap_phase02 h3 {
    font-size: max(12px, 1em);
    padding-block: 1em;
  }
  
  .container03 table td .wrap_phase02.left-content h3 {
    padding-block: 0.3em;
  }
  
  .sp-only {
    display: inline;
  }
  
  .container03 table td .wrap_phase02 > div {
    padding: 8em;
  }
  
  .container03 table td .wrap_phase02 > div span {
    font-size: 18px;
  }
  
  .container03 table td .wrap_phase02 > div span::before {
    width: 3em;
    height: 4em;
    right: calc(100% + 0.2em);
  }
  
  .container03 table td:first-child > p {
    font-size: max(12px, 0.9em);
    margin-top: 0.3em;
    margin-left: 0.2em;
    margin-right: 0.8em;
    font-feature-settings: "palt";
    text-align: justify;
    text-align-last: left;
  }
  
  .container03 table td:last-child > p {
    font-size: max(12px, 0.9em);
    margin-top: 0.3em;
    margin-left: 0.8em;
    margin-right: 0.2em;
    font-feature-settings: "palt";
    text-align: justify;
    text-align-last: left;
  }
  
  /* スマホ版矢印 */
  .container03 table td .arrow-svg {
    width: 1.5em;
    height: 1.8em;
    margin: 1em auto 12em auto;
  }
  
  .container03 table td .arrow-svg object {
    width: 20px;
    height: 25px;
  }
}