@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: 28em;
}
@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: #ecc2bf;
  --bgColor: #66d8b5;
}

/*==========================================================
  main
==========================================================*/
.container01 {
  margin-top: 1em;
  padding-bottom: 4em;
  padding-inline: 2vw;
}
@media (max-width: 480px) and (orientation: portrait) {
  .container01 {
    padding-inline: 4vw;
  }
}
.container01 > article {
  padding: 3em 2em 5em;
  background-color: #fff;
  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;
  max-width: 110rem;
  border-radius: 3em;
  margin-top: 3em;
}
@media (max-width: 480px) and (orientation: portrait) {
  .container01 > article {
    padding: 8vw 6vw 6vw;
  }
}
.container01 > article::after {
  content: "";
  position: absolute;
  font-size: 1em;
  top: -3em;
  right: 4em;
  width: 12em;
  aspect-ratio: 1.66;
  background: url(../../../assets/img/image_deer.webp) no-repeat center center/contain;
}
@media (max-width: 480px) and (orientation: portrait) {
  .container01 > article::after {
    width: 25vw;
    top: -6vw;
    right: 4vw;
  }
}
.container01 > article > ul {
  position: relative;
  font-size: 1em;
  display: grid;
  grid-auto-flow: row;
}
.container01 > article > ul > li {
  position: relative;
  width: 100%;
  font-size: 1em;
  display: grid;
  grid-template-columns: auto 1fr;
  max-width: 93rem;
  border-bottom: 1px solid #cecece;
  padding-block: 2em;
  margin: 2em 0 2em;
  gap: 0 2em;
}
.container01 > article > ul > li:first-of-type {
  border-top: 1px solid #cecece;
}
@media (max-width: 480px) and (orientation: portrait) {
  .container01 > article > ul > li {
    grid-template-columns: unset;
    grid-auto-flow: row;
    gap: 4vw 0;
  }
}
.container01 > article > ul > li .box_contents_img {
  width: 100%;
  max-width: 37rem;
}
.container01 > article > ul > li .box_contents_img img {
  width: 100%;
}
.container01 > article > ul > li .box_contents_text {
  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;
  gap: 0.3em 0;
}
.container01 > article > ul > li .box_contents_text .head {
  position: relative;
  font-size: 1em;
  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;
  gap: 0 2em;
}
.container01 > article > ul > li .box_contents_text .head time {
  font-size: max(12px, 1.125em);
  letter-spacing: 0.04em;
}
.container01 > article > ul > li .box_contents_text .head span {
  font-size: max(12px, 0.8125em);
  font-weight: 700;
  padding: 0.5em 2em;
}
.container01 > article > ul > li .box_contents_text .head span.type01 {
  background-color: #ff89ad;
}
.container01 > article > ul > li .box_contents_text .head span.type02 {
  background-color: #ecc2bf;
}
.container01 > article > ul > li .box_contents_text .head span.type03 {
  background-color: #00d8ff;
}
.container01 > article > ul > li .box_contents_text .head span.type04 {
  background-color: #89a9ff;
}
.container01 > article > ul > li .box_contents_text .head span.type05 {
  background-color: #fffa89;
}
.container01 > article > ul > li .box_contents_text .head span.type06 {
  background-color: #a0d9c6;
}
.container01 > article > ul > li .box_contents_text h4 {
  font-size: max(12px, 2.25em);
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media (max-width: 480px) and (orientation: portrait) {
  .container01 > article > ul > li .box_contents_text h4 {
    font-size: max(12px, 1.5em);
  }
}
.container01 > article > ul > li .box_contents_text > p {
  font-size: max(12px, 1.125em);
  letter-spacing: 0.03em;
  text-align: justify;
  margin-top: 0.3em;
  line-height: 1.85em;
}
.container01 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;
  width: 100%;
  margin-top: 2em;
  --widthGap: 0.5em;
  --boxWidth: 2.4em;
  gap: 0 var(--widthGap);
}
@media (max-width: 480px) and (orientation: portrait) {
  .container01 nav {
    --boxWidth: 6vw;
    --widthGap: 1vw;
  }
}
.container01 nav button {
  position: relative;
  font-size: 1em;
  background-color: #fff;
  width: var(--boxWidth);
  aspect-ratio: 1;
}
.container01 nav button.btn_prev::before, .container01 nav button.btn_next::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 30%;
  aspect-ratio: 0.85;
  background-color: #000;
}
.container01 nav button.btn_prev::before {
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
.container01 nav button.btn_next::before {
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.container01 nav button.btn_last::before {
  content: "…";
  font-weight: 700;
}
.container01 nav ul {
  position: relative;
  font-size: 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 var(--widthGap);
  counter-reset: number 0;
}
.container01 nav ul li {
  position: relative;
  font-size: 1em;
  width: var(--boxWidth);
  aspect-ratio: 1;
  background-color: #fff;
  display: grid;
  place-items: center;
}
.container01 nav ul li::before {
  content: counter(number);
  counter-increment: number 1;
  font-size: max(12px, 1.125em);
  font-weight: 700;
}
.container01 nav ul li.active {
  background-color: #000;
  color: #fff;
}/*# sourceMappingURL=news.css.map */