@charset "UTF-8";
/* stylelint-disable-next-line scss/dollar-variable-pattern */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* もちろん、より直感的なbox-sizingに設定 */
  padding: 0; /* パディングも常に0に */
  margin: 0; /* マージンは0に */
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important; /* hiddenは非表示を意味します */
}

:where(html) {
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none; /* iOSのランドスケープでテキストが調整されないようにする */
  color-scheme: dark light; /* ユーザーがダークテーマを好む場合、自動的にダークテーマになる */
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
:where(body) { /* サファリ以外のブラウザのフォールバック */
  block-size: 100dvb; /* 1dvbは動的ビューポートの長さの1%、100dvbで高さいっぱいに */
  font-family: system-ui, sans-serif; /* timeの代わりにシステムフォントを使用 */
  line-height: 1.5; /* アクセシブルな行の高さ */
  -webkit-font-smoothing: antialiased; /* テキストのレンダリングを改善 */
}

:where(input, button, textarea, select) {
  font: inherit; /* フォーム コントロールは親フォントを継承 */
  color: inherit; /* カラーも継承 */
}

:where(textarea) { /* テキストエリアの水平リサイズを無効に */
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer; /* インタラクティブなものにカーソルを合わせる */
}

:where(:disabled) {
  cursor: not-allowed; /* フォームコントロール無効時のカーソルを許可しない */
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed; /* ラベルにもカーソルを許可しない */
}

:where(button) {
  border-style: solid; /* ボタンのボーダーのスタイルを設定しやすくする */
}

:where(a) {
  text-underline-offset: 0.2em; /* 下線の上にスペースを追加する */
}

:where(ul, ol) {
  list-style: none; /* ビュレットを削除、必要に応じて手動で追加する */
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block; /* 置換された要素をより予測可能にする */
}

:where(p, h1, h2, h3, h4, h5, h6) {
  font-size: 1em;
  overflow-wrap: break-word; /* 長い単語は改行 */
}

:where(hr) { /* より一貫性のある、スタイリッシュなhr */
  block-size: 0;
  overflow: visible;
  color: inherit;
  border: none;
  -webkit-border-before: #cbcbcb 1px solid;
          border-block-start: #cbcbcb 1px solid;
}

:where(:focus-visible) { /* より一貫性のある、カスタマイズ可能なフォーカスのアウトライン */
  outline: 2px solid var(--color-primary, #5387EB);
  outline-offset: 2px;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes up-motion {
  0% {
    opacity: 0;
    -webkit-transform: translateY(1rem);
            transform: translateY(1rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes up-motion {
  0% {
    opacity: 0;
    -webkit-transform: translateY(1rem);
            transform: translateY(1rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes image {
  0% {
    -webkit-filter: blur(5px);
            filter: blur(5px);
    opacity: 0;
    -webkit-transform: scale(1.1) translateY(0.5rem);
            transform: scale(1.1) translateY(0.5rem);
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}
@keyframes image {
  0% {
    -webkit-filter: blur(5px);
            filter: blur(5px);
    opacity: 0;
    -webkit-transform: scale(1.1) translateY(0.5rem);
            transform: scale(1.1) translateY(0.5rem);
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}
* {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; /* animation時のにじみ防止 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased; /* animation時の文字にじみ防止 */
  -moz-osx-font-smoothing: grayscale; /* animation時の文字にじみ防止 */
}

:root {
  --font-size: 62.5;
  --color-base-bg: #fff;
  --color-base-text: #000;
  --color-primary: #094;
  --color-secondary: #f2faf5;
  --color-red: #F00;
  --color-link: #000;
  --color-link-hover: #094;
  --font-serif:Noto Serif, serif;
  --font-jp:Noto Sans JP, sans-serif;
  --font-size1014:clamp(1rem, 0.818rem + 0.78vw, 1.4rem);
  --font-size1113:clamp(1.1rem, 1.009rem + 0.39vw, 1.3rem);
  --font-size1213:clamp(1.2rem, 1.155rem + 0.19vw, 1.3rem);
  --font-size1214:clamp(1.2rem, 1.109rem + 0.39vw, 1.4rem);
  --font-size1215:clamp(1.2rem, 1.091rem + 0.55vw, 1.5rem);
  --font-size1416:clamp(1.4rem, 1.309rem + 0.39vw, 1.6rem);
  --font-size1418:clamp(1.4rem, 1.218rem + 0.78vw, 1.8rem);
  --font-size1517:clamp(1.5rem, 1.409rem + 0.39vw, 1.7rem);
  --font-size1618:clamp(1.6rem, 1.509rem + 0.39vw, 1.8rem);
  --font-size1820:clamp(1.8rem, 1.709rem + 0.39vw, 2rem);
  --font-size2022:clamp(2rem, 1.909rem + 0.39vw, 2.2rem);
  --font-size2024:clamp(2rem, 1.818rem + 0.78vw, 2.4rem);
  -webkit-font-variant-ligatures: none;
          font-variant-ligatures: none; /* CJK言語（中国語、日本語、韓国語）での句読点の間隔を変更。 */
}

html {
  height: -webkit-fill-available;
  height: -moz-available;
  height: fill-available;
  font-size: calc(var(--font-size) * 0.9%);
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  scroll-padding-top: 0;
  background: #fff;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: rgba(12, 106, 238, 0.2);
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

html,
body {
  width: 100%;
  min-height: -webkit-fill-available;
  min-height: -moz-available;
  min-height: fill-available;
  padding: 0;
  margin: 0;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.3rem, 1.164rem + 0.58vw, 1.6rem);
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 1;
  color: var(--color-base-text);
  overflow-wrap: anywhere;
  background: #fff;
  -webkit-animation: fadein ease-out 0.3s both 0.1s;
          animation: fadein ease-out 0.3s both 0.1s;
}
body.is-gnav-open {
  height: 100%;
  overflow: hidden;
}

:where(section),
:where(article) {
  position: relative;
  text-align: left;
  letter-spacing: 0.02em;
}

:where(p, dl, dt, dd, ol, ul, li) {
  padding: 0;
  margin: 0;
}

:where(img) {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

:where(strong) {
  font-weight: 700;
}

:where(sup) {
  font-size: 70%;
  vertical-align: super;
}

:where(sub) {
  font-size: 70%;
  vertical-align: sub;
}

.l-main a[href^="tel:"] {
  font-weight: 700;
}
:where(.l-main a:not([class])) {
  font-weight: 500;
  color: #000;
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

:where(hr) {
  position: relative;
  width: 100%;
  height: 100px;
  clear: both;
  border: none;
  outline: none;
}
:where(hr)::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: #999;
}

:where(address) {
  font-style: normal;
}

img.is-loaded {
  -webkit-animation: fadein 0.7s ease-out 0.1s both;
          animation: fadein 0.7s ease-out 0.1s both;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

:where(.c-button01) {
  width: min(84.5vw, 29rem);
  min-height: 4.5rem;
}

:where(.c-button01) > span {
  font-size: clamp(1.3rem, 1.255rem + 0.19vw, 1.4rem);
}

.c-button01 {
  position: relative;
  z-index: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 3em;
  padding-left: 1em;
  overflow: hidden;
  color: #fff;
  text-decoration: none !important;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background: transparent;
  background-color: #094;
  border: none;
  border-radius: 3rem;
  outline: none;
}
.c-button01 > span {
  position: relative;
  z-index: 2;
  padding: 0.25em 0;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.25;
  text-align: center;
  text-indent: 0.015em;
  letter-spacing: 0.015em;
}
.c-button01.is-disabled, .c-button01:disabled {
  pointer-events: none;
  opacity: 0.5;
}
.c-button01 > i {
  position: absolute;
  top: 50%;
  z-index: 2;
  font-size: 1em;
}
.c-button01 > i:first-child {
  left: 0;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.c-button01 > i:last-child {
  right: min(2vw, 1.5rem);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-button01 .u-ic-arrow-w {
  width: 2rem;
  height: 2rem;
}
.c-button01 .u-ic-dl-w {
  width: 1.5em;
  height: 1.5em;
}
.c-button01__dl span {
  padding-right: 1.5em;
}
.c-button01:focus-visible {
  background-color: rgb(0, 119, 54);
  outline: 2px solid #094;
  outline-offset: 1px;
}

:where(.c-button02) {
  width: min(84.5vw, 30rem);
  min-height: 6rem;
}

:where(.c-button02) > span {
  font-size: clamp(1.3rem, 1.164rem + 0.58vw, 1.6rem);
}

.c-button02 {
  position: relative;
  z-index: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 1em;
  padding-left: 1em;
  overflow: hidden;
  color: #fff;
  text-decoration: none !important;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 4rem;
  outline: none;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}
.c-button02 > span {
  position: relative;
  z-index: 2;
  padding: 0.25em 0;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.25;
  text-align: center;
  text-indent: 0.015em;
  letter-spacing: 0.015em;
}
.c-button02 > i {
  position: absolute;
  top: 50%;
  z-index: 2;
  font-size: 1em;
}
.c-button02 > i:first-child {
  left: 0;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.c-button02 > i:last-child {
  right: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-button02 .u-ic-arrow-w {
  width: 1.4rem;
  height: 1.4rem;
}
.c-button02 span .u-ic-arrow-w {
  margin-left: 1rem;
}
.c-button02--more .u-ic-arrow-w {
  -webkit-transform: translate(-50%, -50%) rotate(90deg) !important;
          transform: translate(-50%, -50%) rotate(90deg) !important;
}
.c-button02:focus-visible {
  color: #094;
  background-color: #fff;
  outline: 2px solid #094;
  outline-offset: 1px;
}

:where(.c-button03) {
  width: min(84.5vw, 30rem);
  min-height: 6rem;
}

:where(.c-button03) > span {
  font-size: clamp(1.3rem, 1.164rem + 0.58vw, 1.6rem);
}

.c-button03 {
  position: relative;
  z-index: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 1em;
  padding-left: 1em;
  overflow: hidden;
  color: #094;
  text-decoration: none !important;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background: transparent;
  border: 1px solid #094;
  border-radius: 4rem;
  outline: none;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}
.c-button03 > span {
  position: relative;
  z-index: 2;
  padding: 0.25em 0;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.25;
  text-align: center;
  text-indent: 0.015em;
  letter-spacing: 0.015em;
}
.c-button03 > i {
  position: absolute;
  top: 50%;
  z-index: 2;
  font-size: 1em;
}
.c-button03 > i:first-child {
  left: 0;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.c-button03 > i:last-child {
  right: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-button03 .u-ic-arrow-link {
  width: 1.4rem;
  height: 1.4rem;
}
.c-button03 span .u-ic-arrow-link {
  margin-left: 1rem;
}
.c-button03--more {
  width: 15rem;
  min-height: 4.5rem;
}
.c-button03--more span .u-ic-arrow-link {
  -webkit-transform: rotate(90deg) !important;
          transform: rotate(90deg) !important;
}
.c-button03:focus-visible {
  color: #fff;
  background-color: #094;
  outline: 2px solid #094;
  outline-offset: 1px;
}

:where(.c-inner01) {
  width: min(84%, 120rem);
  margin-right: auto;
  margin-left: auto;
}

.p-contact .l-main {
  width: 100%;
  padding: clamp(7rem, 12vw, 12rem) 0;
  margin-right: auto;
  margin-left: auto;
}
.p-contact .c-title01 {
  text-align: center;
}
.p-contact form {
  width: min(84%, 60rem);
  margin-right: auto;
  margin-left: auto;
}
.p-contact__lead {
  width: 84%;
  margin: 2em auto clamp(2rem, 4vw, 4rem);
  font-size: clamp(1.3rem, 1.164rem + 0.58vw, 1.6rem);
  line-height: 1.769;
  color: #000;
  text-align: center;
}
.p-contact__button-area {
  margin-top: clamp(2rem, 4vw, 4rem);
  text-align: center;
}
.p-contact__block {
  position: relative;
  margin-top: clamp(1.5rem, 3vw, 3rem);
}
.p-contact__label {
  display: block;
  width: 100%;
  text-align: left;
}
.p-contact__required {
  display: inline-block;
  margin-left: 0.5em;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #d03c3c;
}
.p-contact__button {
  position: relative;
  z-index: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-height: 8rem;
  padding-right: 1em;
  padding-left: 1em;
  overflow: hidden;
  color: #fff;
  text-decoration: none !important;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background: transparent;
  background-color: #094;
  border: none;
  border-radius: 0.4rem;
  outline: none;
}
.p-contact__button > span {
  position: relative;
  z-index: 2;
  padding: 0.25em 0;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.25;
  text-align: center;
  text-indent: 0.03em;
  letter-spacing: 0.03em;
}
.p-contact__button svg {
  width: 5rem;
  height: 1.1rem;
  margin-left: 1.5em;
}
.p-contact__button:focus-visible {
  background-color: rgb(0, 119, 54);
  outline: 2px solid #094;
  outline-offset: 1px;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=date],
textarea {
  width: 100%;
  padding: 0.5em 1em;
  margin-top: 0.5em;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  background: #fff;
  border: #C8C8C8 solid 1px;
  border-radius: 0.4rem;
  outline: none;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=date]:focus,
textarea:focus {
  border: #094 solid 1px;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=date] {
  height: clamp(4.2rem, 5vw, 5.2rem);
}

textarea {
  height: 20rem;
  resize: vertical;
}

textarea::-webkit-input-placeholder, input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=date]::-webkit-input-placeholder {
  font-size: 80%;
  color: rgba(0, 0, 0, 0.5);
}

textarea::-moz-placeholder, input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=date]::-moz-placeholder {
  font-size: 80%;
  color: rgba(0, 0, 0, 0.5);
}

textarea:-ms-input-placeholder, input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=date]:-ms-input-placeholder {
  font-size: 80%;
  color: rgba(0, 0, 0, 0.5);
}

textarea::-ms-input-placeholder, input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, input[type=date]::-ms-input-placeholder {
  font-size: 80%;
  color: rgba(0, 0, 0, 0.5);
}

textarea::placeholder,
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=date]::placeholder {
  font-size: 80%;
  color: rgba(0, 0, 0, 0.5);
}

select {
  display: block;
  width: 100%;
  height: clamp(4.2rem, 5vw, 5.2rem);
  padding: 0.25em 40px 0.25em 1em;
  margin-top: 0.25em;
  font-size: 1.6rem;
  color: #000;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #f8f8f8 url("data:image/svg+xml;charset=utf8,%3Csvg%20height%3D%226%22%20viewBox%3D%220%200%2012%206%22%20width%3D%2212%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m9%2013.5%206%206%206-6z%22%20transform%3D%22translate(-9%20-13.5)%22%2F%3E%3C%2Fsvg%3E") no-repeat right 10px center/12px 6px;
  border: #C8C8C8 solid 1px;
  border-radius: 0.4rem;
  outline: none;
}
select:invalid {
  color: #000;
}
select option {
  color: #000;
}
select:focus {
  background-color: #fff;
  border: #094 solid 1px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.p-contact--thanks .l-main {
  width: min(84%, 60rem);
  margin-right: auto;
  margin-left: auto;
}
.p-contact--thanks .p-contact__button {
  width: min(100%, 36rem);
  margin-top: clamp(8rem, 12vh, 12rem);
}
@media screen and (width >= 375px){
  html {
    font-size: calc(var(--font-size) * 1%);
  }
}
@media screen and (width >= 768px){
  html,
  body {
    min-width: 768px;
  }
  body.is-gnav-open {
    height: auto;
    overflow: visible;
  }
  :where(.c-button01) {
    min-height: 5.4rem;
  }
  .c-button01 > i:first-child {
    left: min(0.2vw, 0.5rem);
  }
  .c-button02 > i:first-child {
    left: min(0.2vw, 0.5rem);
  }
  .c-button02 > i:last-child {
    right: min(0.2vw, 0.5rem);
  }
  .c-button02 .u-ic-arrow-w {
    vertical-align: -0.25em;
  }
  .c-button03 > i:first-child {
    left: min(0.2vw, 0.5rem);
  }
  .c-button03 > i:last-child {
    right: min(0.2vw, 0.5rem);
  }
  .c-button03 .u-ic-arrow-link {
    vertical-align: -0.25em;
  }
  .p-contact__lead {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    line-height: 2.2;
    text-align: left;
  }
  .p-contact__button {
    min-height: 9rem;
    border-radius: 0.6rem;
  }
  .p-contact__button svg {
    width: 7.3rem;
    height: 1.5rem;
  }
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=date],
  textarea {
    border-radius: 0.6rem;
  }
  textarea {
    height: 18rem;
  }
  select {
    padding-left: 1em;
    background-position: right 13px center;
    background-size: 12px 8px;
    border-radius: 0.6rem;
  }
  .p-contact--thanks .p-contact__lead {
    text-align: center;
  }
}
@media (hover: hover) and (pointer: fine){
  :where(.l-main a:not([class])) {
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  :where(.l-main a:not([class])):hover {
    color: #094;
  }
  .c-button01 {
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
  }
  .c-button01:hover {
    background-color: rgb(0, 119, 54);
  }
  .c-button02 {
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
  }
  .c-button02:hover {
    color: #094;
    background-color: #fff;
  }
  .c-button02:hover .u-ic-arrow-link {
    background: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2017%2017%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22m3.772%2016.5%209.456-8-9.456-8%22%2F%3E%3Cpath%20d%3D%22m3.772%2016.5%209.456-8-9.456-8%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center center/contain;
  }
  .c-button02:hover .u-ic-arrow-w {
    background: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2017%2017%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23094%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22m3.772%2016.5%209.456-8-9.456-8%22%2F%3E%3Cpath%20d%3D%22m3.772%2016.5%209.456-8-9.456-8%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center center/contain;
  }
  .c-button03 {
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
  }
  .c-button03:hover {
    color: #fff;
    background-color: #094;
  }
  .c-button03:hover .u-ic-arrow-link {
    background: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2017%2017%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22m3.772%2016.5%209.456-8-9.456-8%22%2F%3E%3Cpath%20d%3D%22m3.772%2016.5%209.456-8-9.456-8%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center center/contain;
  }
  .p-contact__button {
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
  }
  .p-contact__button:hover {
    background-color: rgb(0, 119, 54);
  }
}
@media (pointer: fine), (hover: hover){
  .l-main a[href^="tel:"] {
    color: #000;
    text-decoration: none;
    pointer-events: none;
  }
}
@media (prefers-reduced-motion: no-preference){
  :where(html:focus-within) {
    scroll-behavior: smooth; /* 何かにフォーカスがある場合のみスムーズスクロール */
  }
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none){
  :where(.l-main a:not([class])) {
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  :where(.l-main a:not([class])):hover {
    color: #094;
  }
  .c-button01 {
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
  }
  .c-button01:hover {
    background-color: rgb(0, 119, 54);
  }
  .c-button02 {
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
  }
  .c-button02:hover {
    color: #094;
    background-color: #fff;
  }
  .c-button02:hover .u-ic-arrow-link {
    background: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2017%2017%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22m3.772%2016.5%209.456-8-9.456-8%22%2F%3E%3Cpath%20d%3D%22m3.772%2016.5%209.456-8-9.456-8%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center center/contain;
  }
  .c-button02:hover .u-ic-arrow-w {
    background: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2017%2017%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23094%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22m3.772%2016.5%209.456-8-9.456-8%22%2F%3E%3Cpath%20d%3D%22m3.772%2016.5%209.456-8-9.456-8%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center center/contain;
  }
  .c-button03 {
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
  }
  .c-button03:hover {
    color: #fff;
    background-color: #094;
  }
  .c-button03:hover .u-ic-arrow-link {
    background: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2017%2017%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22m3.772%2016.5%209.456-8-9.456-8%22%2F%3E%3Cpath%20d%3D%22m3.772%2016.5%209.456-8-9.456-8%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center center/contain;
  }
  .p-contact__button {
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
  }
  .p-contact__button:hover {
    background-color: rgb(0, 119, 54);
  }
}
@media print{
  html {
    font-size: calc(var(--font-size) * 1%);
  }
  html,
  body {
    min-width: 768px;
  }
  body.is-gnav-open {
    height: auto;
    overflow: visible;
  }
  :where(.l-main a:not([class])) {
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  :where(.l-main a:not([class])):hover {
    color: #094;
  }
  :where(.c-button01) {
    min-height: 5.4rem;
  }
  .c-button01 > i:first-child {
    left: min(0.2vw, 0.5rem);
  }
  .c-button01 {
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
  }
  .c-button01:hover {
    background-color: rgb(0, 119, 54);
  }
  .c-button02 > i:first-child {
    left: min(0.2vw, 0.5rem);
  }
  .c-button02 > i:last-child {
    right: min(0.2vw, 0.5rem);
  }
  .c-button02 .u-ic-arrow-w {
    vertical-align: -0.25em;
  }
  .c-button02 {
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
  }
  .c-button02:hover {
    color: #094;
    background-color: #fff;
  }
  .c-button02:hover .u-ic-arrow-link {
    background: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2017%2017%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22m3.772%2016.5%209.456-8-9.456-8%22%2F%3E%3Cpath%20d%3D%22m3.772%2016.5%209.456-8-9.456-8%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center center/contain;
  }
  .c-button02:hover .u-ic-arrow-w {
    background: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2017%2017%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23094%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22m3.772%2016.5%209.456-8-9.456-8%22%2F%3E%3Cpath%20d%3D%22m3.772%2016.5%209.456-8-9.456-8%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center center/contain;
  }
  .c-button03 > i:first-child {
    left: min(0.2vw, 0.5rem);
  }
  .c-button03 > i:last-child {
    right: min(0.2vw, 0.5rem);
  }
  .c-button03 .u-ic-arrow-link {
    vertical-align: -0.25em;
  }
  .c-button03 {
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
  }
  .c-button03:hover {
    color: #fff;
    background-color: #094;
  }
  .c-button03:hover .u-ic-arrow-link {
    background: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2017%2017%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22m3.772%2016.5%209.456-8-9.456-8%22%2F%3E%3Cpath%20d%3D%22m3.772%2016.5%209.456-8-9.456-8%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center center/contain;
  }
  .p-contact__lead {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    line-height: 2.2;
    text-align: left;
  }
  .p-contact__button {
    min-height: 9rem;
    border-radius: 0.6rem;
  }
  .p-contact__button svg {
    width: 7.3rem;
    height: 1.5rem;
  }
  .p-contact__button {
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
  }
  .p-contact__button:hover {
    background-color: rgb(0, 119, 54);
  }
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=date],
  textarea {
    border-radius: 0.6rem;
  }
  textarea {
    height: 18rem;
  }
  select {
    padding-left: 1em;
    background-position: right 13px center;
    background-size: 12px 8px;
    border-radius: 0.6rem;
  }
  .p-contact--thanks .p-contact__lead {
    text-align: center;
  }
}