@charset "UTF-8";
/*=================================================================================

　変数定義

=================================================================================*/
/*—————————————————————————————————————————————————————
　横幅／高さ／余白設定
—————————————————————————————————————————————————————*/
:root {
  /* 横幅【PC幅のみ】 */
  --width-contents_max_s: 1000px;
  --width-contents_max_m: 1200px;
  --width-contents_max_l: 1260px;
  --width-modal_max: 900px;
  /* 高さ【ヘッダのみ】 */
  --height-header: 80px;
  --height-header_l: 48px;
}

/*—————————————————————————————————————————————————————
　カラー設定
—————————————————————————————————————————————————————*/
:root {
  --color-key: #C7E5C6;
  --color-key_l: #8D8D8D;
  --color-body_bg: #FFF;
  --color-head_bg: #FFF;
  --color-foot_bg: #171717;
  --color-head_bg_l: #303030;
  /* テキスト */
  --color-txt: #141414;
  --color-txt_sub: #333333;
  --color-txt_l: #6B6B6B;
  /* リンク */
  --color-link: #C7E5C6;
  /* 画像のMIX */
  --color-img_mix: #91C2EA;
  /* 罫線 */
  --color-border: #C7E5C6;
  --color-border_l: #C7C7C7;
  /* フォームカラー */
  --color-form-txt: #141414;
  --color-form-border: #e2e2e2;
  --color-form-placeholder: #848484;
  /* ボタンやアラートなどエレメントカラー */
  --color-default: #FFFFFF;
  --color-primary: #C7E5C6;
  --color-disable: #888888;
  /* テーブル */
  --color-table_border: #1D71C6;
  --color-table_border_tr: #CCCCCC;
  --color-table_thead_bg: #1D71C6;
  --color-table_txt: #333333;
  /* オーバーレイ（モーダルやドロワーの背景） */
  --color-overlay-bg: rgba(0, 0, 0, 0.8);
  --color-overlay-bg_l: rgba(0, 0, 0, 0.4);
  /* モーダルウィンドウのコンテンツ背景 */
  --color-modal-bg: #FFFFFF;
  /* その他ベーシックな色 */
  --color_black: #000000;
  --color_white: #FFFFFF;
  --color_darkgray: #333333;
  --color_gray: #969696;
  --color_red: #EB2D2D;
  --color_blue: #0059ff;
  /* グラデーション */
  --color-main-visual: linear-gradient(135deg, #8AC7F0 0%, #3A9BDD 38%, #0062B0 100%);
  --color-gradation-header: linear-gradient(90deg, #1785D0 0%, #1786D0 9%, #1786D0 20%, #1889D0 31%, #198DCF 41%, #1B99CB 51%, #1EA3C9 61%, #21B5C4 72%, #23BEC2 83%, #24C1C1 92%, #24C1C1 100%);
  --color-gradation-btn: linear-gradient(136deg, #388FD5 0%, #0062B0 47%, #002E80 100%);
  --color-gradation-btn_l: linear-gradient(136deg, #38BFF7 0%, #1D98DC 47%, #087BCA 100%);
  --color-gradation-btn_s: linear-gradient(146deg, #91C2EA 0%, #4189D3 47%, #0062B0 100%);
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  word-break: break-all;
}

:root {
  --txt-color: ;
  --main-color: ;
  --sub-color: ;
  --main--bg: ;
  --white: ;
}

address {
  font-style: normal;
}

body {
  overflow-x: hidden;
  color: var(--color-txt);
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-family: "Noto Sans Jp", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.05em;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

a[href^="tel:"] {
  pointer-events: none;
  cursor: default;
}
@media screen and (max-width: 600px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-top: var(--height-header) !important;
}
@media screen and (max-width: 600px) {
  main {
    margin-top: var(--height-header_l) !important;
  }
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
@media (hover: hover) {
  a:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.5;
  }
}
a:focus:not(:focus-visible) {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}

code,
kbd,
pre,
samp {
  font-size: inherit;
  font-family: monospace, sans-serif;
}

ul,
ol {
  list-style: none;
}

table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

th,
td {
  padding: 0.25rem 0.375rem;
  vertical-align: top;
  text-align: left;
}

blockquote,
q {
  quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
  content: "";
  content: none;
}

form {
  margin: 0;
  padding: 0;
}

form button {
  display: inline-block;
  margin: 0;
  padding: 0.6em 2em;
  width: auto;
  border: none;
  border-radius: 0;
  background-color: var(--color-key);
  background-image: none;
  -webkit-box-shadow: 0.0625em 0.0625em 0.1875em 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0.0625em 0.0625em 0.1875em 0 rgba(0, 0, 0, 0.16);
  color: var(--color_white);
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-appearance: none;
}

form button:focus:not(:focus-visible) {
  outline: none;
}

form button:hover {
  opacity: 0.6;
  outline: none;
}

form button ::-moz-focus-inner {
  padding: 0;
  border: none;
}

input,
textarea {
  padding: 1.125rem 1.875rem;
  width: 100%;
  border: 1px solid #878787;
  border-radius: 0.25rem;
  background-image: none;
  background-color: #F0F0F0;
  font-size: 1em;
  font-family: inherit;
  -webkit-appearance: none;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: var(--color-form-placeholder);
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6875;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--color-form-placeholder);
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6875;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: var(--color-form-placeholder);
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6875;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: var(--color-form-placeholder);
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6875;
}
input::placeholder,
textarea::placeholder {
  color: var(--color-form-placeholder);
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6875;
}
@media screen and (max-width: 600px) {
  input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    font-size: 0.875rem;
  }
  input::-moz-placeholder, textarea::-moz-placeholder {
    font-size: 0.875rem;
  }
  input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    font-size: 0.875rem;
  }
  input::-ms-input-placeholder, textarea::-ms-input-placeholder {
    font-size: 0.875rem;
  }
  input::placeholder,
  textarea::placeholder {
    font-size: 0.875rem;
  }
}

textarea:hover,
textarea:focus {
  outline: none;
}

textarea:focus {
  outline: none;
  border-color: var(--color-form-border);
  -webkit-box-shadow: none;
          box-shadow: none;
}

textarea ::-moz-focus-inner {
  padding: 0;
  border: none;
}

input::-webkit-input-placeholder {
  color: var(--color-form-placeholder);
}

input::-moz-placeholder {
  color: var(--color-form-placeholder);
}

input::-ms-input-placeholder {
  color: var(--color-form-placeholder);
}

input:-ms-input-placeholder {
  color: var(--color-form-placeholder);
}

input::placeholder {
  color: var(--color-form-placeholder);
}

input:focus {
  outline: none;
  border-color: var(--color-form-border);
  -webkit-box-shadow: none;
          box-shadow: none;
}

input[type=submit],
input[type=button] {
  display: block;
  margin: 0;
  background-image: none;
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  /* 150% */
  letter-spacing: 0.1em;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-appearance: none;
  border-radius: 2.46875rem;
  border: 0.25rem solid #C7E5C6;
  background: #FFF;
  width: clamp(15.625rem, 13.9563106796rem + 7.1197411003vw, 22.5rem);
  padding: clamp(0.9375rem, 0.7858009709rem + 0.6472491909vw, 1.5625rem);
}

input[type=submit]:hover,
input[type=submit]:focus,
input[type=button]:hover,
input[type=button]:focus {
  outline: none;
}

input[type=submit]:hover,
input[type=button]:hover {
  opacity: 0.6;
}

input[type=submit] ::-moz-focus-inner,
input[type=button] ::-moz-focus-inner {
  padding: 0;
  border: none;
}

input[type=radio] {
  display: none;
}

input[type=radio] + span {
  position: relative;
  display: inline-block;
  margin: 0 1rem 0 0;
  padding: 0 0 0 30px;
  cursor: pointer;
}

input[type=radio] + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 1.375rem;
  height: 1.375rem;
  border: 1px solid var(--color-form-border);
  border-radius: 50%;
  background: var(--color_white);
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

input[type=radio] + span::after {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

input[type=radio]:checked + span::after {
  position: absolute;
  top: 50%;
  left: 0.1875rem;
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--color-key);
  content: "";
  opacity: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox] + span {
  position: relative;
  display: inline-block;
  margin: 0 1rem 0 0;
  padding: 0 0 0 1.875rem;
  cursor: pointer;
  -webkit-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
}

input[type=checkbox] + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid #878787;
  border-radius: 0.125rem;
  background: var(--color_white);
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

input[type=checkbox] + span::after {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

input[type=checkbox]:checked + span::after {
  position: absolute;
  top: 50%;
  left: 0.3125rem;
  display: block;
  margin-top: -0.2em;
  width: 1rem;
  height: 0.5625rem;
  border-bottom: 0.125rem solid #000;
  border-left: 0.125rem solid #000;
  content: "";
  opacity: 1;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

select {
  padding: 0.625rem 2.4375rem 0.625rem 0.75rem;
  border: 1px solid var(--color-form-border);
  border-radius: 0.125rem;
  background-image: url(../img/common/icon_select_arrow.svg);
  background-position: right 0.6875rem top 55%;
  background-size: 0.8125rem;
  background-repeat: no-repeat;
  background-color: var(--color_white);
  color: var(--color-txt);
  font-family: inherit;
  cursor: pointer;
  position: relative;
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select:focus {
  outline: none;
  border-color: var(--color-form-border);
  -webkit-box-shadow: none;
          box-shadow: none;
}

option {
  color: var(--color-txt);
}

.grecaptcha-badge {
  display: none;
}

input[type=date]::-webkit-date-and-time-value {
  text-align: left;
  color: var(--color-txt);
}

@font-face {
  font-family: "Noto Sans Jp";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSansJP-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Sans Jp";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/NotoSansJP-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Sans Jp";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/NotoSansJP-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Zen Maru Gothic";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/ZenMaruGothic-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Zen Maru Gothic";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/ZenMaruGothic-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Zen Maru Gothic";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/ZenMaruGothic-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Zen Maru Gothic";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/ZenMaruGothic-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Zen Maru Gothic";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/ZenMaruGothic-Black.ttf") format("truetype");
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Outfit-VariableFont_wght.ttf") format("truetype");
}
@font-face {
  font-family: "Sanchez";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Sanchez-Regular.ttf") format("truetype");
}
.p-editorContents {
  margin-top: 5rem;
}
@media screen and (max-width: 600px) {
  .p-editorContents {
    margin-top: 2.5rem;
  }
}
.p-editorContents h2.wp-block-heading {
  font-size: clamp(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem);
  font-weight: 700;
}
.p-editorContents h3.wp-block-heading {
  font-size: clamp(1.125rem, 1.0946601942rem + 0.1294498382vw, 1.25rem);
  font-weight: 700;
  position: relative;
}
.p-editorContents * + * {
  margin-top: 16px;
}
.p-editorContents * + h2.wp-block-heading {
  margin-top: clamp(1.875rem, 1.4199029126rem + 1.9417475728vw, 3.75rem);
}
.p-editorContents * + h3.wp-block-heading {
  margin-top: clamp(1.875rem, 1.4805825243rem + 1.6828478964vw, 3.5rem);
}
.p-editorContents * + p {
  margin-top: 16px;
}
.p-editorContents * + .wp-block-image {
  margin-top: 32px;
}
.p-editorContents ul,
.p-editorContents ol {
  padding-left: 32px;
}
.p-editorContents * + ul,
.p-editorContents * + ol {
  margin-top: 32px;
}
.p-editorContents ul {
  list-style: disc;
}
.p-editorContents ol {
  list-style: trad-chinese-informal;
}
.p-editorContents li {
  position: relative;
}
.p-editorContents * + li {
  margin-top: 16px;
}
.p-editorContents * + .wp-block-table {
  margin-top: 16px;
}
.p-editorContents figcaption {
  font-size: 0.75rem;
  color: #787878;
  margin-top: 16px;
}
.p-editorContents .wp-block-table table th {
  border: unset;
  padding: 24px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  width: 21%;
}
.p-editorContents .wp-block-table table td {
  border: unset;
  padding: 24px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  width: 79%;
}

.attachment-post-thumbnail {
  width: 100%;
  aspect-ratio: 332/187;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.c-pagePostTitle {
  font-size: 2rem;
  font-weight: 700;
}

.wp-block-gallery {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
}
@media screen and (max-width: 600px) {
  .wp-block-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.wp-block-gallery {
  width: 100% !important;
}
.wp-block-gallery .wp-block-image {
  aspect-ratio: 1/1;
  width: 100% !important;
}

.l-inner {
  margin: 0 auto;
  width: 90%;
  max-width: var(--width-contents_max_m);
}
@media screen and (max-width: 600px) {
  .l-inner {
    width: 100%;
    padding: 0 1rem;
  }
}
.l-inner--l {
  max-width: var(--width-contents_max_l);
}
.l-inner--xl {
  max-width: var(--width-contents_max_xl);
}
.l-inner__mv {
  max-width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: clamp(1.875rem, 1.2075242718rem + 2.8478964401vw, 4.625rem);
  padding-bottom: clamp(12.5rem, 11.286407767rem + 5.1779935275vw, 17.5rem);
}
@media screen and (max-width: 600px) {
  .l-inner__mv {
    max-width: clamp(15.75rem, 14.2633495146rem + 6.3430420712vw, 21.875rem);
    padding-top: 6.0625rem;
    padding-bottom: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 40%;
  }
}
@media screen and (max-width: 480px) {
  .l-inner__mv {
    bottom: 32%;
  }
}
.l-inner__mv img {
  max-width: clamp(15.75rem, 14.2633495146rem + 6.3430420712vw, 21.875rem);
}

.l-inner__section {
  max-width: 62.5rem;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .l-inner__section {
    max-width: 90%;
  }
}

.l-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-outer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-outer__side {
  width: 20%;
  max-width: var(--width-side-contents_max);
  border-right: 1px solid #707070;
}
@media screen and (max-width: 768px) {
  .l-outer__side {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    border: none;
    position: sticky;
    top: var(--height-header);
    background-color: var(--color_white);
    z-index: 10;
  }
}
@media screen and (max-width: 600px) {
  .l-outer__side {
    top: var(--height-header);
  }
}
.l-outer__main {
  width: 80%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .l-outer__main {
    width: 100%;
  }
}

.l-outer__side-list {
  padding: clamp(1rem, 0.1808252427rem + 3.4951456311vw, 4.375rem) clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
  position: sticky;
  top: var(--height-header);
}
@media screen and (max-width: 768px) {
  .l-outer__side-list {
    padding: 0.75rem 0.375rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: static;
    gap: 0.375rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .l-outer__side-list li {
    white-space: nowrap;
    background-color: #F5F5F5;
    border-radius: 6.25rem;
    padding: 0.75rem 1.25rem;
  }
}

.l-outer__side-link {
  font-size: clamp(0.75rem, 0.6589805825rem + 0.3883495146vw, 1.125rem);
  line-height: 1.4444444444;
  letter-spacing: 0;
  display: block;
  position: relative;
  color: var(--color-txt_sub);
}
.l-outer__side-link.is_active {
  color: var(--color-txt);
  font-weight: bold;
}

.l-section {
  position: relative;
}
.l-section--top {
  padding-top: 0;
}
.l-section--pt2x {
  padding: clamp(3rem, 1.604368932rem + 5.9546925566vw, 8.75rem) 0;
}
@media screen and (max-width: 768px) {
  .l-section--pt2x {
    padding: clamp(2.25rem, 1.734223301rem + 2.2006472492vw, 4.375rem) 0;
  }
}
.l-section--notice {
  visibility: hidden;
  position: relative;
  padding: 5rem 0;
}
@media screen and (max-width: 1280px) {
  .l-section--notice {
    padding: clamp(2.25rem, 1.5825242718rem + 2.8478964401vw, 5rem) 0;
  }
}
@media screen and (max-width: 600px) {
  .l-section--notice {
    padding-top: 0px;
    margin-top: -3.75rem;
  }
}
.l-section--bg__bl {
  background-color: var(--color-body_bg);
}
.l-section--subscription {
  padding: 0;
}
.l-section--my {
  padding: 0;
  margin: clamp(2.5rem, 0.6796116505rem + 7.7669902913vw, 10rem) 0;
}
.l-section--what {
  padding: clamp(2.5rem, 1.2105582524rem + 5.501618123vw, 7.8125rem) 0 0;
}
.l-section__mv {
  position: relative;
  background-image: url(../img/mv/comp/mv.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
}
@media screen and (max-width: 600px) {
  .l-section__mv {
    background-image: url(../img/mv/comp/mv-sp.png);
    height: clamp(32.5625rem, -5.0436893204rem + 160.4530744337vw, 187.5rem);
  }
}

body:has(#wpadminbar) .l-header {
  top: 2rem;
}

.l-header {
  width: 100%;
  height: var(--height-header);
  position: fixed;
  top: 0;
  z-index: 20;
  padding: 1.0625rem 1.5rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background-color: var(--color-head_bg);
}
@media screen and (max-width: 600px) {
  .l-header {
    height: var(--height-header_l);
    padding: 0.5625rem 1rem;
  }
}

.l-header__inner {
  max-width: 89rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 20;
  gap: 1rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin: 0 auto;
}
.l-header__inner .l-header__logo img {
  width: clamp(8.0625rem, 7.3495145631rem + 3.0420711974vw, 11rem);
}

@media screen and (max-width: 1024px) {
  .l-header__nav {
    display: none;
  }
}

.l-header__nav--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-header__nav--item {
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  height: 100%;
}

.l-header__nav--item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  color: var(--color-txt);
  gap: 0.5rem;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  /* 214.286% */
  letter-spacing: 0.1em;
  cursor: default;
}
.l-header__nav--item__link picture img {
  height: 0.9375rem;
  width: auto;
}
.l-header__nav--item__link.is_link {
  cursor: pointer;
}
.l-header__nav--item__link.is_link::after {
  content: none;
}
.l-header__nav--item__link.block {
  display: block;
}
.l-header__nav--item__link .instagram {
  width: 1.5625rem;
  height: 1.5625rem;
  display: block;
}
.l-header__nav--item__link .instagram img {
  width: 100%;
  height: 100%;
}

.l-header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
.l-header__right .c-btn {
  width: 11.875rem;
  aspect-ratio: 190/40;
  border: 1px solid var(--color-txt);
  background-color: transparent;
  color: var(--color-txt);
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  line-height: 1.4285714286;
  letter-spacing: 0;
  padding: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header__right .c-btn::after {
  content: none;
}
@media screen and (max-width: 1280px) {
  .l-header__right {
    display: none;
  }
}

.l-header__spRight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
.l-header__spRight .c-btn {
  border: 1px solid var(--color-txt);
  background-color: transparent;
  color: var(--color-txt);
}
.l-header__spRight .l-header__right-lang {
  margin-top: 1.25rem;
}
@media screen and (max-width: 1280px) {
  .l-header__spRight {
    width: 100%;
  }
}

.l-header__navSp {
  position: fixed;
  top: var(--height-header);
  right: -100%;
  width: 100%;
  height: calc(100vh - var(--height-header));
  overflow-y: scroll;
  background-color: rgba(51, 51, 51, 0.5333333333);
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 1280px) {
  .is_open .l-header__navSp {
    right: 0;
    opacity: 1;
  }
}
@media screen and (max-width: 600px) {
  .l-header__navSp {
    top: var(--height-header_l);
    height: calc(100vh - var(--height-header_l));
  }
}

.l-header__navSp__inner {
  width: 100%;
  height: 100%;
  max-width: 30rem;
  margin-left: auto;
  padding: 0 0 1.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  position: relative;
  right: -30rem;
  -webkit-transition: right 0.5s;
  transition: right 0.5s;
}
@media screen and (max-width: 1280px) {
  .is_open .l-header__navSp__inner {
    right: 0;
  }
  .l-header__navSp__inner .l-header__nav-upper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.9375rem;
    height: auto;
    background-color: #6AB763;
    padding: 1.5rem 1rem;
    width: 100%;
  }
  .l-header__navSp__inner .l-header__nav-lower {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.25rem;
    width: 100%;
    padding: 2.5rem 1rem;
  }
}
@media screen and (max-width: 600px) {
  .l-header__navSp__inner .l-header__nav-lower {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.l-header__navSp--list {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.l-header__navSp--item {
  position: relative;
  border-bottom: 1px solid #C7C7C7;
}
.l-header__navSp--item:last-child {
  border-bottom: none;
}

.l-header__navSp--item__link {
  padding: 1rem 1.5rem;
  padding-left: 0;
  display: block;
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-family: "Noto Sans JP";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.1428571429;
  /* 214.286% */
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1280px) {
  body.is_fixed {
    overflow: hidden;
  }
}
.l-header__navSp--itemChild .l-header__navSp--item__link {
  position: relative;
  padding-left: 1.5em;
}
.l-header__navSp--itemChild .l-header__navSp--item__link::before {
  position: absolute;
  content: "";
  background-color: var(--color-key);
  height: 1px;
  width: 0.5rem;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.l-header__navSp--item__link--instagram {
  margin-top: 0.625rem;
  width: 100%;
  padding: 0 1rem;
}
.l-header__navSp--item__link--instagram .l-header__navSp--item__link--instagram--link .instagram img {
  width: 1.875rem;
}

.l-header__navSp--itemChild:not(:last-child) {
  border-bottom: 1px solid #333;
}

.l-header__navSp--item__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-header__navSp--item__accordion {
  display: block;
  position: relative;
  width: 1rem;
  aspect-ratio: 1/1;
}
.l-header__navSp--item__accordion::before, .l-header__navSp--item__accordion::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1rem;
  height: 0.0625rem;
  background-color: var(--color-key_l);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform-origin: left center 0;
          transform-origin: left center 0;
}
.l-header__navSp--item__accordion::after {
  -webkit-transform: rotate(90deg) translate(-50%, -50%);
          transform: rotate(90deg) translate(-50%, -50%);
}
.l-header__navSp--item.is_active .l-header__navSp--item__accordion::after {
  -webkit-transform: rotate(0deg) translate(-50%, -50%);
          transform: rotate(0deg) translate(-50%, -50%);
}

.l-header__navSp--list__child {
  padding-bottom: 0.875rem;
}

.l-header__navSp--item__child:nth-child(n+2) {
  margin-top: 0.5rem;
}

.l-header__navSp--item__child--link {
  font-size: clamp(0.8125rem, 0.7821601942rem + 0.1294498382vw, 0.9375rem);
  line-height: 1.6666666667;
  letter-spacing: 0.03em;
  font-family: "Noto Sans JP";
  color: var(--color-txt) !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header__navSp--item__child--link::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.125rem;
  margin-right: 0.5rem;
}

.l-footer {
  position: relative;
  margin-top: -0.3125rem;
}
.l-footer::after {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  height: 0.625rem;
  background: url(../img/contact/contact_border.svg);
  background-size: contain;
  background-repeat: repeat-x;
}
.l-footer .l-inner {
  position: relative;
}

.l-footer__top--box {
  background-color: var(--color_white);
  padding-bottom: clamp(1.25rem, 1.0072815534rem + 1.0355987055vw, 2.25rem);
}

.l-footer__bottom--box {
  background-color: var(--color-key);
  padding-top: 2.6875rem;
  padding-bottom: 2.6875rem;
  position: relative;
}

.l-footer__top-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  color: var(--color-txt);
  gap: 0.5rem;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  /* 214.286% */
  letter-spacing: 0.1em;
  cursor: default;
}
.l-footer__top-link picture img {
  height: 0.9375rem;
  width: auto;
}
.l-footer__top-link.is_link {
  cursor: pointer;
}
.l-footer__top-link.is_link::after {
  content: none;
}

.l-footer__top--box--btn--inner {
  display: inline;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.l-footer__top--box--btn--inner .l-footer__top--box--btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.l-footer__top--box--btn--inner .l-footer__top--box--btn picture {
  margin-left: -0.6875rem;
}

.l-footer__floating {
  position: absolute;
  bottom: 4rem;
  right: 0;
  z-index: 10;
  width: clamp(2rem, 1.7572815534rem + 1.0355987055vw, 3rem);
  height: clamp(2rem, 1.7572815534rem + 1.0355987055vw, 3rem);
  background-image: url(../img/common/icon_circleArrow-pagetop.svg);
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.l-footer__floating:hover {
  opacity: 0.7;
}
@media screen and (max-width: 480px) {
  .l-footer__floating {
    bottom: unset;
    top: 0;
    right: 2rem;
  }
}

.l-footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .l-footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.875rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 6.375rem;
  }
}

.l-footer__top-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 600px) {
  .l-footer__top-left img {
    width: 10.625rem;
  }
}

.l-footer__top-right {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .l-footer__top-right {
    text-align: center;
  }
}

.l-footer__logo a {
  display: inline-block;
}

.l-footer__top-title {
  margin-top: 1rem;
  font-size: 0.75rem;
  line-height: 1.4166666667;
  letter-spacing: 0;
  color: var(--color_white);
}
.l-footer__top-title span {
  margin-left: 0.625rem;
  letter-spacing: 0.6em;
}

.l-footer__top-text {
  margin-top: 0.5rem;
  font-size: 0.6875rem;
  line-height: 1.6363636364;
  letter-spacing: 0;
}

.l-footer__top-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
  height: 100%;
}
@media screen and (max-width: 768px) {
  .l-footer__top-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.l-footer__top-item {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0;
}

.l-footer__bottom-copyright {
  font-size: 0.75rem;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP";
}
@media screen and (max-width: 480px) {
  .l-footer__bottom-copyright {
    text-align: center;
    width: 100%;
  }
}

.l-footer__bottom-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.l-footer__bottom-link {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  font-style: normal;
  font-weight: 400;
  line-height: 2.1428571429;
  /* 214.286% */
  letter-spacing: 0.1em;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.l-footer__bottom-link-x {
  width: 2.5rem;
  height: 2.5rem;
  background-image: url(../img/common/icon_sns-x.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

.c-accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1rem, 0.5145631068rem + 2.071197411vw, 3rem);
  width: 100%;
}

.c-accordion__box {
  border-top: 2px solid var(--color-border_l);
  border-bottom: 1px solid var(--color-border_l);
  background-color: var(--color_white);
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.find-out .c-accordion__box {
  border-top: 2px solid #6AB763;
}
.enjoy .c-accordion__box {
  border-top: 2px solid #E46971;
}
.taste .c-accordion__box {
  border-top: 2px solid #E7A12E;
}
.shopping .c-accordion__box {
  border-top: 2px solid #88ABDD;
}

.c-accordion__title {
  position: relative;
  display: grid;
  grid-template-columns: clamp(6.25rem, 5.2184466019rem + 4.4012944984vw, 10.5rem) auto 3.25rem;
  gap: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem) 0 clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem) clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}
@media screen and (max-width: 480px) {
  .c-accordion__title {
    grid-template-columns: 5rem auto 3.25rem;
    gap: 0.5rem;
  }
}
.c-accordion__title p {
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
}
.c-accordion__title p span {
  color: #E83820;
  margin-left: clamp(1.5rem, 1.1359223301rem + 1.5533980583vw, 3rem);
}

.c-accordion__text {
  display: none;
  line-height: 1.8125;
}
.c-accordion__text p + p {
  margin-top: 1rem;
}
.c-accordion__text a {
  color: var(--color-key);
}

.c-accordion__text-row {
  display: grid;
  grid-template-columns: clamp(6.25rem, 5.2184466019rem + 4.4012944984vw, 10.5rem) auto;
  gap: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
  padding: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem) 0 clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem) clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}
.c-accordion__text-row:nth-child(2n+1) {
  background-color: #F7F7F7;
}
@media screen and (max-width: 480px) {
  .c-accordion__text-row {
    grid-template-columns: 1fr;
  }
}

.c-accordion__btn {
  display: block;
  position: relative;
  width: 2rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.find-out .c-accordion__btn {
  background-color: #6AB763;
}
.enjoy .c-accordion__btn {
  background-color: #E46971;
}
.taste .c-accordion__btn {
  background-color: #E7A12E;
}
.shopping .c-accordion__btn {
  background-color: #88ABDD;
}
.c-accordion__btn::before, .c-accordion__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1rem;
  height: 0.125rem;
  background-color: var(--color_white);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.c-accordion__btn::after {
  -webkit-transform: rotate(90deg) translate(-50%, -50%);
          transform: rotate(90deg) translate(-50%, -50%);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.c-accordion__btn.is_open::after {
  -webkit-transform: rotate(0deg) translate(-50%, -50%);
          transform: rotate(0deg) translate(-50%, -50%);
}

.c-breadcrumb {
  visibility: hidden;
  margin: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem) 0 0;
}

.c-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.3125rem;
}

.c-breadcrumb__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
  font-family: "Noto Sans JP";
  font-weight: 500;
}
.c-breadcrumb__item::after {
  content: "＞";
}
.c-breadcrumb__item:last-child::after {
  content: none;
}
.c-breadcrumb__item a {
  color: var(--color-key);
}
.c-breadcrumb__item p {
  color: var(--color-disable);
}

.c-btn, .c-form__box--inner input[type=submit],
.c-form__box--inner input[type=button] {
  width: 100%;
  max-width: 21.0625rem;
  aspect-ratio: 337/55;
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  line-height: 1.5555555556;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding: 0.875rem 1.5rem 0.8125rem;
  color: var(--color_white);
  background-color: var(--color-txt);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
  border-radius: 3.25rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-btn, .c-form__box--inner input[type=submit],
  .c-form__box--inner input[type=button] {
    max-width: 17.4375rem;
    aspect-ratio: 279/46;
    padding: 0.6875rem 1.5rem 0.4375rem;
  }
}
.c-btn::after, .c-form__box--inner input[type=submit]::after,
.c-form__box--inner input[type=button]::after {
  content: url(../img/common/icon_btn-circle.svg);
  position: absolute;
  right: 1.5rem;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}
.c-btn:hover::after, .c-form__box--inner input[type=submit]:hover::after,
.c-form__box--inner input[type=button]:hover::after {
  right: 1rem;
}

.c-form--en {
  word-break: keep-all;
}
.c-form--en .c-form__label--required::after {
  content: "Required";
  width: 4.375rem;
}

.c-form__title {
  margin: 1rem auto 0;
  width: 100%;
  font-size: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem);
  line-height: 1.34375;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.c-form__text {
  margin: 1rem auto 0;
  width: 100%;
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 2.1875;
  letter-spacing: 0.04em;
}

.c-form__box--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin: clamp(1.5rem, 0.6504854369rem + 3.6245954693vw, 5rem) auto 0;
}
.c-form__box--inner input[type=submit],
.c-form__box--inner input[type=button] {
  padding: 0.6875rem 1.5rem 0.6875rem;
  line-height: 1;
}
.c-form__box--inner input[type=button] {
  background: transparent 0% 0% no-repeat padding-box;
  border: 1px solid var(--color-txt);
  color: var(--color-txt);
}
.c-form__box--inner--confirm .c-form__wrap {
  display: grid;
  grid-template-columns: 40% 60%;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .c-form__box--inner--confirm .c-form__wrap {
    grid-template-columns: 1fr;
  }
}

.c-form__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(1.25rem, 1.0983009709rem + 0.6472491909vw, 1.875rem);
  font-weight: 500;
}
@media screen and (max-width: 1280px) {
  .c-form__wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .c-form__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-form__wrap.flex-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.c-form__wrap--center {
  margin-top: clamp(1.875rem, 1.1923543689rem + 2.9126213592vw, 4.6875rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-form__wrap--center .c-form__wrap {
  margin-top: clamp(1.875rem, 1.4502427184rem + 1.8122977346vw, 3.625rem);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .c-form__wrap--center .c-form__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.c-form__wrap--center .c-form__wrap p {
  width: auto;
}
.c-form__wrap--center .c-form__text--center--box {
  border: 0.0625rem solid #2F2F2F;
  width: clamp(40.625rem, 39.4569174757rem + 4.9838187702vw, 45.4375rem);
  margin: 0 auto;
  padding: clamp(0.625rem, 0.2305825243rem + 1.6828478964vw, 2.25rem) clamp(0.625rem, -0.2851941748rem + 3.8834951456vw, 4.375rem);
}
@media screen and (max-width: 768px) {
  .c-form__wrap--center .c-form__text--center--box {
    width: 90%;
  }
}
.c-form__wrap--center .c-form__text--center--box .c-form__text--center {
  margin: 0;
  text-align: left;
  color: #2F2F2F;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 2.5;
  letter-spacing: 0.05em;
}
.c-form__wrap--center .c-form__text--center--box .c-form__text--center span {
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
}
.c-form__wrap p {
  width: clamp(28.125rem, 25.5461165049rem + 11.003236246vw, 38.75rem);
}
@media screen and (max-width: 768px) {
  .c-form__wrap p {
    width: 100%;
  }
}
.c-form__wrap .wpcf7-form-control.wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(1rem, 0.833131068rem + 0.71197411vw, 1.6875rem);
}
.c-form__wrap .wpcf7-list-item-label {
  font-weight: 400;
}

.c-form__label {
  width: clamp(12.5rem, 12.2572815534rem + 1.0355987055vw, 13.5rem) !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 0.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.6666666667;
  /* 166.667% */
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .c-form__label {
    width: auto !important;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0.625rem;
  }
}
.c-form__label--required {
  display: inline-block;
}
.c-form__label--required::after {
  content: "必須";
  width: 3.4375rem;
  height: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--color_white);
  background-color: #F45A45;
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 1.25;
  letter-spacing: 0.05em;
  border-radius: 0.25rem;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .c-form__label--note {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 0.375rem;
  }
}
.c-form__label--note span {
  font-weight: 400;
  color: var(--color-disable);
}
.c-form__label--large {
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  line-height: 2;
  letter-spacing: 0.05em;
}

.c-form__btnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-form__btnWrap .wpcf7-spinner {
  display: none;
}
@media screen and (max-width: 600px) {
  .c-form__btnWrap {
    margin-top: 1rem;
  }
}
.c-form__btnWrap .input-wrap {
  margin-top: clamp(1.875rem, 1.1923543689rem + 2.9126213592vw, 4.6875rem);
  display: inline-block;
  position: relative;
  z-index: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.c-form__btnWrap .input-wrap::before {
  position: absolute;
  content: "";
  top: 0.25rem;
  right: calc(0rem - clamp(2.5rem, 2.0449029126rem + 1.9417475728vw, 4.375rem));
  width: clamp(9.375rem, 8.3131067961rem + 4.5307443366vw, 13.75rem);
  height: 14.9375rem;
  background-image: url(../img/public_notice/comp/public_notice--dog.png);
  background-repeat: no-repeat;
  pointer-events: none;
  background-size: 100%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.c-form__btnWrap .input-wrap.active::before {
  position: absolute;
  content: "";
  top: 0.25rem;
  right: calc(0rem - clamp(2.5rem, 2.0449029126rem + 1.9417475728vw, 4.375rem));
  width: clamp(9.375rem, 8.3131067961rem + 4.5307443366vw, 13.75rem);
  height: 14.9375rem;
  background-image: url(../img/public_notice/comp/public_notice--dog.png);
  background-repeat: no-repeat;
  pointer-events: none;
  background-size: 100%;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  opacity: 1;
}
.c-form__btnWrap .input-wrap::after {
  position: absolute;
  content: "";
  top: clamp(0.125rem, 0.0794902913rem + 0.1941747573vw, 0.3125rem);
  left: clamp(0.125rem, 0.0946601942rem + 0.1294498382vw, 0.25rem);
  width: 100%;
  height: 100%;
  background-color: #C7E5C6;
  z-index: -2;
  border-radius: 2.46875rem;
}
.c-form__btnWrap .input-wrap:hover {
  opacity: 0.6;
}
.c-form__btnWrap .input-wrap input[type=submit]:hover {
  opacity: 1;
}
.c-form__btnWrap .input-wrap br {
  display: none;
}

.mw_wp_form_confirm .c-form__privacy {
  display: none;
}

.c-form__text--center {
  text-align: center;
  margin-top: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}

.c-form__privacyTextWrap {
  padding: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
  overflow: auto;
  max-height: clamp(9.375rem, 5.5825242718rem + 16.1812297735vw, 25rem);
  border: 1px solid var(--color-table_border_tr);
  border-radius: 0.3125rem;
}
.c-form__privacyTextWrap.scroll_none {
  max-height: unset;
  padding: 0;
  text-align: center;
  border: none;
}

.c-form__privacyText {
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-weight: 400;
  line-height: 2.3125;
  letter-spacing: 0.05em;
}

.c-form__privacyList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
}
.c-form__privacyList li ul {
  padding-left: 1em;
}

.c-form__privacyListItem {
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-weight: 400;
  line-height: 2.25;
  letter-spacing: 0;
}

.c-form__wrap input.wpcf7-not-valid,
.c-form__wrap textarea.wpcf7-not-valid,
.c-form__wrap select.wpcf7-not-valid {
  background-color: #fbebeb;
  border: 1px solid #eebbbc;
}

.wpcf7-not-valid input[type=radio] + span::before,
.wpcf7-not-valid input[type=checkbox] + span::before {
  border: 2px solid #eebbbc;
}

.wpcf7-not-valid-tip {
  margin-top: 0.25rem;
  color: #d74141;
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  font-weight: 400;
  line-height: 1.4285714286;
  letter-spacing: 0;
}

.wpcf7 form.invalid .wpcf7-response-output {
  text-align: center;
  border: 1px solid #eebbbc;
  background-color: #fbebeb;
  border-radius: 0.3125rem;
  color: #d74141;
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-weight: 600;
  line-height: 1.4444444444;
  letter-spacing: 0;
  padding: 0.625rem;
  font-weight: 400;
  margin: 0;
}

[data-class=wpcf7cf_group] .c-form__wrap {
  margin-top: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
}
[data-class=wpcf7cf_group] .c-form__wrap:first-child {
  margin-top: 0;
}

[data-id=form-corporation] .c-form__wrap {
  margin-top: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem) !important;
}

input.wpcf7-form-control.wpcf7-text.inquiry-details,
input.wpcf7-form-control.wpcf7-text.customer-type {
  position: absolute;
  top: 0;
  left: -50vw;
}

.page-template-page-contact .grecaptcha-badge,
.page-template-page-contact-en .grecaptcha-badge {
  display: block;
  bottom: clamp(0.9375rem, 0.8616504854rem + 0.3236245955vw, 1.25rem) !important;
  z-index: 3 !important;
}

#autozip {
  display: none !important;
}

.c-hamburger {
  display: none;
  position: relative;
  z-index: 9999;
}
@media screen and (max-width: 1024px) {
  .c-hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    background: transparent;
    border: none;
    padding: 0;
  }
}

.c-hamburger__wrap {
  width: 1.375rem;
  gap: 0.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  cursor: pointer;
}
.c-hamburger__wrap span {
  background-color: var(--color-key);
  width: 100%;
  height: 0.125rem;
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-hamburger__wrap span:nth-child(2) {
  background-color: transparent;
  position: relative;
}
.c-hamburger__wrap span:nth-child(2)::before, .c-hamburger__wrap span:nth-child(2)::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 85%;
  height: 0.125rem;
  display: block;
  background-color: var(--color-key);
}
.c-hamburger__wrap span:nth-child(3) {
  background-color: transparent;
  position: relative;
}
.c-hamburger__wrap span:nth-child(3)::before, .c-hamburger__wrap span:nth-child(3)::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 70%;
  height: 0.125rem;
  display: block;
  background-color: var(--color-key);
}
.c-hamburger__wrap.is_active span:first-child {
  opacity: 0;
}
.c-hamburger__wrap.is_active span:nth-child(2)::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-hamburger__wrap.is_active span:nth-child(2)::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-hamburger__wrap.is_active span:last-child {
  opacity: 0;
}

.c-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.75rem;
}

.c-heading__en {
  font-size: clamp(1.5rem, 1.317961165rem + 0.7766990291vw, 2.25rem);
  line-height: 1.4444444444;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.c-heading__ja {
  color: var(--color-key);
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 2.125;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* モーダル */
.modal-overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(1, 1, 1, 0.7);
  z-index: 100;
}

.modal-container {
  max-height: 80vh;
  max-width: var(--width-modal_max);
  width: 90%;
  position: relative;
  background-color: #fff;
  border-radius: 1.75rem;
}

.modal-container--backgroundColorPt1 {
  background-color: #fff;
}

.modal-container--backgroundColorPt2 {
  background-color: rgba(255, 255, 255, 0.9);
}

.modal-close {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 2.5rem auto 0;
  cursor: pointer;
}
.modal-close:hover {
  opacity: 0.7;
}
.modal-close::after {
  content: none;
}
.modal-close::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../img/common/icon_cross.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

/* モーダルアニメーション */
@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
@keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal-overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal-container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal-overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal-container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal-container,
.micromodal-slide .modal-overlay {
  will-change: transform;
}

.c-modal {
  overflow: auto;
  max-height: 80vh;
}

.c-modal__wrap {
  padding: clamp(2rem, 1.6359223301rem + 1.5533980583vw, 3.5rem) clamp(1.5rem, 0.8932038835rem + 2.5889967638vw, 4rem);
}

.c-modal__box {
  font-family: "Noto Sans JP";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-modal__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  width: 100%;
}
.c-modal__inner picture {
  width: 100%;
  overflow: hidden;
  border-radius: 0.625rem;
}
.c-modal__inner .c-modal__img {
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.c-modal__inner .c-modal__img-sample {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.c-modal__inner .c-modal__title {
  font-size: 0.9375rem;
  line-height: 1.4;
  width: 100%;
}
.c-modal__inner .c-modal__text-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4375rem;
  width: 100%;
}
.c-modal__inner .c-modal__text-sub {
  font-size: 0.8125rem;
  line-height: 1.4615384615;
  font-weight: bold;
}
.c-modal__inner .c-modal__text {
  font-size: 0.8125rem;
  line-height: 1.4615384615;
}
@media screen and (max-width: 768px) {
  .c-modal__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 5.375rem auto 0;
}

.c-pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
}
.c-pagination__list li:has(.next) {
  margin-left: clamp(0.3125rem, -0.1425970874rem + 1.9417475728vw, 2.1875rem);
}
.c-pagination__list li:has(.prev) {
  margin-right: clamp(0.3125rem, -0.1425970874rem + 1.9417475728vw, 2.1875rem);
}

.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: clamp(1.75rem, 1.4162621359rem + 1.4239482201vw, 3.125rem);
  aspect-ratio: 1/1;
  color: var(--color-key);
  border: 1px solid var(--color-key);
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 1.5;
  font-weight: 500;
}
.page-numbers.current {
  color: var(--color_white);
  background-color: var(--color-key);
}

.toArchive {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 0rem auto 0;
}

.c-table th, .c-table td {
  padding: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem) 0;
  border-bottom: 1px solid var(--color-border_l);
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .c-table th, .c-table td {
    padding: clamp(0.5rem, 0.4393203883rem + 0.2588996764vw, 0.75rem) 0;
  }
}
.c-table th {
  width: 20%;
  font-weight: 600;
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
}
.c-table td {
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 1.875;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 600px) {
  .c-table--column th, .c-table--column td {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .c-table--column th {
    padding-bottom: 0;
    border-bottom: none;
  }
}

.c-page__section--title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0.625rem, 0.5339805825rem + 0.3883495146vw, 1rem);
  white-space: nowrap;
}
.c-page__section--title picture {
  margin-top: clamp(0.3125rem, 0.2821601942rem + 0.1294498382vw, 0.4375rem);
}
.c-page__section--title picture img {
  max-width: 1.25rem;
}
.c-page__section--title .c-page__section--title--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.3125rem, 0.2669902913rem + 0.1941747573vw, 0.5rem);
}
.c-page__section--title .c-page__section--title--box .c-page__section--title--title {
  color: #000;
  font-family: "Zen Maru Gothic";
  font-size: clamp(1.25rem, 1.1589805825rem + 0.3883495146vw, 1.625rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.1538461538;
  /* 115.385% */
  letter-spacing: 0.1em;
}
.c-page__section--title .c-page__section--title--box .c-page__section--title--text {
  color: #000;
  font-family: Sanchez;
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.6666666667;
  /* 166.667% */
  letter-spacing: 0.05em;
}

.c-page__section--title--contact--blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0.625rem, 0.5643203883rem + 0.2588996764vw, 0.875rem);
  white-space: nowrap;
}
.c-page__section--title--contact--blog picture {
  margin-top: clamp(0.125rem, 0.1098300971rem + 0.0647249191vw, 0.1875rem);
}
.c-page__section--title--contact--blog picture img {
  max-width: clamp(1.25rem, 1.0376213592rem + 0.9061488673vw, 2.125rem);
  width: clamp(1.25rem, 1.0376213592rem + 0.9061488673vw, 2.125rem);
}
.c-page__section--title--contact--blog .c-page__section--title--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.3125rem, 0.2669902913rem + 0.1941747573vw, 0.5rem);
}
.c-page__section--title--contact--blog .c-page__section--title--box .c-page__section--title--title {
  color: #000;
  font-family: "Zen Maru Gothic";
  font-size: clamp(1.25rem, 1.1589805825rem + 0.3883495146vw, 1.625rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.1538461538;
  /* 115.385% */
  letter-spacing: 0.1em;
}
.c-page__section--title--contact--blog .c-page__section--title--box .c-page__section--title--text {
  color: #000;
  font-family: Sanchez;
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.6666666667;
  /* 166.667% */
  letter-spacing: 0.05em;
}

.l-inner__section-about {
  position: relative;
  z-index: 1;
}

.l-section__about {
  overflow: hidden;
}

.l-inner__section-about-box {
  margin-top: clamp(3.75rem, 2.9308252427rem + 3.4951456311vw, 7.125rem);
  margin-bottom: clamp(6.25rem, 5.7038834951rem + 2.3300970874vw, 8.5rem);
}
.l-inner__section-about-box.top {
  background: url(../img/about_us/comp/about_us--back--beans01.svg);
  background-repeat: no-repeat;
  background-position: right top;
}
.l-inner__section-about-box.bottom {
  background: url(../img/about_us/comp/about_us--back--beans02.svg);
  background-repeat: no-repeat;
  background-position: left top;
}

.c-section__about--top-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: clamp(3.75rem, 2.9308252427rem + 3.4951456311vw, 7.125rem);
  padding-bottom: clamp(5rem, 4.6359223301rem + 1.5533980583vw, 6.5rem);
}
@media screen and (max-width: 991px) {
  .c-section__about--top-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: clamp(1.875rem, 1.7233009709rem + 0.6472491909vw, 2.5rem);
  }
}

.c-section__about--top-box--left .c-section__about--top-box--left--dog-box {
  position: relative;
  margin-top: clamp(3.125rem, 2.7305825243rem + 1.6828478964vw, 4.75rem);
  margin-left: clamp(0rem, -1.0618932039rem + 4.5307443366vw, 4.375rem);
}
@media screen and (max-width: 768px) {
  .c-section__about--top-box--left .c-section__about--top-box--left--dog-box {
    margin-top: clamp(6.25rem, 5.0970873786rem + 4.9190938511vw, 11rem);
  }
}
@media screen and (max-width: 600px) {
  .c-section__about--top-box--left .c-section__about--top-box--left--dog-box {
    width: 60%;
    margin: 0 auto;
    margin-top: clamp(5rem, 3.5436893204rem + 6.213592233vw, 11rem);
  }
}
.c-section__about--top-box--left .c-section__about--top-box--left--dog-box .c-section__about--top-box--left--bot {
  position: absolute;
  top: calc(0px - clamp(5rem, 4.4690533981rem + 2.2653721683vw, 7.1875rem));
  right: calc(0px - clamp(8.125rem, 7.942961165rem + 0.7766990291vw, 8.875rem));
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .c-section__about--top-box--left .c-section__about--top-box--left--dog-box .c-section__about--top-box--left--bot {
    right: auto;
    left: 3.5rem;
  }
}

.c-section__about--top-box--right {
  position: relative;
}
.c-section__about--top-box--right .c-section__about--top-box--right--bottom-foot {
  position: absolute;
  bottom: calc(0px - clamp(6.25rem, 6.0376213592rem + 0.9061488673vw, 7.125rem));
  left: calc(0px - clamp(8.125rem, 7.260315534rem + 3.6893203883vw, 11.6875rem));
  z-index: -1;
  width: 7.5rem;
}
@media screen and (max-width: 768px) {
  .c-section__about--top-box--right .c-section__about--top-box--right--bottom-foot {
    left: 0;
    bottom: -9.375rem;
  }
}
.c-section__about--top-box--right .c-section__about--top-box--right--bottom-foot .foot01 {
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: absolute;
  left: clamp(4.375rem, 4.2233009709rem + 0.6472491909vw, 5rem);
  bottom: clamp(6.25rem, 6.0376213592rem + 0.9061488673vw, 7.125rem);
}
.c-section__about--top-box--right .c-section__about--top-box--right--bottom-foot .foot01.active {
  opacity: 1;
}
.c-section__about--top-box--right .c-section__about--top-box--right--bottom-foot .foot02 {
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: absolute;
  bottom: clamp(5rem, 4.7724514563rem + 0.9708737864vw, 5.9375rem);
  left: clamp(1.4375rem, 1.4223300971rem + 0.0647249191vw, 1.5rem);
}
.c-section__about--top-box--right .c-section__about--top-box--right--bottom-foot .foot02.active {
  opacity: 1;
}
.c-section__about--top-box--right .c-section__about--top-box--right--bottom-foot .foot03 {
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: absolute;
  bottom: 0;
  left: 0;
}
.c-section__about--top-box--right .c-section__about--top-box--right--bottom-foot .foot03.active {
  opacity: 1;
}
.c-section__about--top-box--right .c-section__about--top-box--right--top-foot {
  position: absolute;
  top: clamp(0.625rem, 0.5491504854rem + 0.3236245955vw, 0.9375rem);
  right: 0;
  z-index: -1;
  width: 7.5rem;
}
@media screen and (max-width: 768px) {
  .c-section__about--top-box--right .c-section__about--top-box--right--top-foot {
    top: clamp(1.875rem, 1.7233009709rem + 0.6472491909vw, 2.5rem);
  }
}
.c-section__about--top-box--right .c-section__about--top-box--right--top-foot .foot04 {
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: absolute;
  right: clamp(0.3125rem, 0.2973300971rem + 0.0647249191vw, 0.375rem);
  bottom: clamp(6.25rem, 6.0983009709rem + 0.6472491909vw, 6.875rem);
}
.c-section__about--top-box--right .c-section__about--top-box--right--top-foot .foot04.active {
  opacity: 1;
}
.c-section__about--top-box--right .c-section__about--top-box--right--top-foot .foot05 {
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: absolute;
  bottom: clamp(3.125rem, 3.0188106796rem + 0.4530744337vw, 3.5625rem);
  right: 0;
}
.c-section__about--top-box--right .c-section__about--top-box--right--top-foot .foot05.active {
  opacity: 1;
}
.c-section__about--top-box--right .c-section__about--top-box--right--top-foot .foot06 {
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: absolute;
  bottom: clamp(0.8125rem, 0.7821601942rem + 0.1294498382vw, 0.9375rem);
  right: clamp(3.125rem, 3.0036407767rem + 0.5177993528vw, 3.625rem);
}
.c-section__about--top-box--right .c-section__about--top-box--right--top-foot .foot06.active {
  opacity: 1;
}
.c-section__about--top-box--right .c-section__about--top-box--right--text-box .c-section__about--top-box--right--text-box--title {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(1.5rem, 1.317961165rem + 0.7766990291vw, 2.25rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.6666666667;
  /* 166.667% */
  letter-spacing: 0.1em;
  margin-bottom: clamp(1.25rem, 1.1438106796rem + 0.4530744337vw, 1.6875rem);
}
.c-section__about--top-box--right .c-section__about--top-box--right--text-box .c-section__about--top-box--right--text-box--text {
  width: clamp(28.125rem, 28.0643203883rem + 0.2588996764vw, 28.375rem);
  color: #000;
  text-align: justify;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 2.0625;
  /* 206.25% */
  letter-spacing: 0.1em;
}
@media screen and (max-width: 600px) {
  .c-section__about--top-box--right .c-section__about--top-box--right--text-box .c-section__about--top-box--right--text-box--text {
    width: auto;
  }
}

.c-section__about--bottom-box--item--big {
  position: relative;
  background-color: #C7E5C6;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: clamp(5rem, 4.8938106796rem + 0.4530744337vw, 5.4375rem) clamp(5rem, 4.7421116505rem + 1.1003236246vw, 6.0625rem);
  width: 37.875rem;
  height: 37.875rem;
  position: relative;
}
.c-section__about--bottom-box--item--big.top {
  margin-left: auto;
  margin-right: clamp(0rem, -0.3640776699rem + 1.5533980583vw, 1.5rem);
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 1024px) {
  .c-section__about--bottom-box--item--big.top {
    margin-top: 11.25rem;
  }
}
@media screen and (max-width: 991px) {
  .c-section__about--bottom-box--item--big.top {
    margin-right: calc(0rem - clamp(6.875rem, 6.875rem + 0vw, 6.875rem));
  }
}
@media screen and (max-width: 600px) {
  .c-section__about--bottom-box--item--big.top {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .c-section__about--bottom-box--item--big.top {
    left: -2.5rem;
    margin-top: 11.25rem;
  }
}
.c-section__about--bottom-box--item--big.top .c-section__about--bottom-box--item--mini {
  position: absolute;
  top: 50%;
  left: -22.0625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .c-section__about--bottom-box--item--big.top .c-section__about--bottom-box--item--mini {
    top: 0%;
    left: -13.9375rem;
  }
}
@media screen and (max-width: 768px) {
  .c-section__about--bottom-box--item--big.top .c-section__about--bottom-box--item--mini {
    top: -7%;
    left: -4.375rem;
    width: clamp(18.75rem, 17.2330097087rem + 6.4724919094vw, 25rem);
  }
}
@media screen and (max-width: 600px) {
  .c-section__about--bottom-box--item--big.top .c-section__about--bottom-box--item--mini {
    top: -9%;
    left: -1.25rem;
    width: clamp(18.75rem, 17.2330097087rem + 6.4724919094vw, 25rem);
  }
}
.c-section__about--bottom-box--item--big.top .c-section__about--bottom-box--item--mini .c-section__about--bottom-box--item--mini--img--dog {
  position: absolute;
  left: -3.3125rem;
  bottom: -3.3125rem;
}
@media screen and (max-width: 768px) {
  .c-section__about--bottom-box--item--big.top .c-section__about--bottom-box--item--mini .c-section__about--bottom-box--item--mini--img--dog {
    display: none;
  }
}
.c-section__about--bottom-box--item--big.top .c-section__about--bottom-box--item--big--text-box--img-bottom {
  position: absolute;
  bottom: -4.375rem;
  right: calc(0rem - clamp(0rem, -1.5776699029rem + 6.7313915858vw, 6.5rem));
  z-index: -2;
}
@media screen and (max-width: 991px) {
  .c-section__about--bottom-box--item--big.bottom {
    margin-left: calc(0rem - clamp(6.875rem, 6.875rem + 0vw, 6.875rem));
    margin-top: 17.5rem;
  }
}
@media screen and (max-width: 600px) {
  .c-section__about--bottom-box--item--big.bottom {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media screen and (max-width: 480px) {
  .c-section__about--bottom-box--item--big.bottom {
    right: 4.6875rem;
    margin-top: 21.5625rem;
  }
}
@media screen and (max-width: 390px) {
  .c-section__about--bottom-box--item--big.bottom {
    right: 7.5rem;
  }
}
.c-section__about--bottom-box--item--big.bottom .c-section__about--bottom-box--item--mini {
  position: absolute;
  top: 50%;
  right: -22.0625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .c-section__about--bottom-box--item--big.bottom .c-section__about--bottom-box--item--mini {
    top: 0%;
    right: -13.9375rem;
  }
}
@media screen and (max-width: 768px) {
  .c-section__about--bottom-box--item--big.bottom .c-section__about--bottom-box--item--mini {
    top: -7%;
    right: -4.375rem;
    width: clamp(18.75rem, 17.2330097087rem + 6.4724919094vw, 25rem);
  }
}
@media screen and (max-width: 600px) {
  .c-section__about--bottom-box--item--big.bottom .c-section__about--bottom-box--item--mini {
    top: -9%;
    right: -1.25rem;
    width: clamp(18.75rem, 17.2330097087rem + 6.4724919094vw, 25rem);
  }
}
.c-section__about--bottom-box--item--big.bottom .c-section__about--bottom-box--item--mini .c-section__about--bottom-box--item--mini--img--dog {
  position: absolute;
  right: -3.3125rem;
  bottom: -3.3125rem;
}
@media screen and (max-width: 768px) {
  .c-section__about--bottom-box--item--big.bottom .c-section__about--bottom-box--item--mini .c-section__about--bottom-box--item--mini--img--dog {
    display: none;
  }
}
.c-section__about--bottom-box--item--big.bottom .c-section__about--bottom-box--item--mini--img--dog--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-section__about--bottom-box--item--big.bottom .c-section__about--bottom-box--item--mini--img--dog--sp {
    display: block;
    position: absolute;
    bottom: -6.25rem;
    right: calc(0rem - clamp(-1.25rem, -12.1723300971rem + 46.6019417476vw, 43.75rem));
    z-index: 1;
    left: auto;
    width: clamp(8.125rem, 7.3361650485rem + 3.3656957929vw, 11.375rem);
  }
}
.c-section__about--bottom-box--item--big.bottom .c-section__about--bottom-box--item--big--wood {
  position: absolute;
  top: 0;
  left: 1.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 1024px) {
  .c-section__about--bottom-box--item--big.bottom .c-section__about--bottom-box--item--big--wood {
    left: 3.8125rem;
  }
}
@media screen and (max-width: 600px) {
  .c-section__about--bottom-box--item--big.bottom .c-section__about--bottom-box--item--big--wood {
    left: 9.375rem;
  }
}
@media screen and (max-width: 480px) {
  .c-section__about--bottom-box--item--big.bottom .c-section__about--bottom-box--item--big--wood {
    left: 13.75rem;
    top: -5rem;
  }
}
.c-section__about--bottom-box--item--big.bottom .c-section__about--bottom-box--item--big--wood .c-section__about--bottom-box--item--big--wood--img {
  margin-right: -0.375rem;
}
.c-section__about--bottom-box--item--big.bottom .c-section__about--bottom-box--item--big--text-box--img-bottom {
  position: absolute;
  bottom: -8.5rem;
  left: calc(0rem - clamp(0rem, -2.7912621359rem + 11.9093851133vw, 11.5rem));
  z-index: -2;
}
.c-section__about--bottom-box--item--big .c-section__about--bottom-box--item--mini--img--dog--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-section__about--bottom-box--item--big .c-section__about--bottom-box--item--mini--img--dog--sp {
    display: block;
    position: absolute;
    bottom: -6.25rem;
    left: calc(0.625rem - clamp(-1.25rem, -12.1723300971rem + 46.6019417476vw, 43.75rem));
    z-index: 1;
    width: clamp(8.125rem, 7.3361650485rem + 3.3656957929vw, 11.375rem);
  }
}
.c-section__about--bottom-box--item--big .c-section__about--bottom-box--item--big--balloon {
  position: absolute;
  top: 0;
  right: 4.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 600px) {
  .c-section__about--bottom-box--item--big .c-section__about--bottom-box--item--big--balloon {
    right: 10rem;
  }
}
@media screen and (max-width: 480px) {
  .c-section__about--bottom-box--item--big .c-section__about--bottom-box--item--big--balloon {
    right: 15.625rem;
    top: -5.625rem;
  }
}
.c-section__about--bottom-box--item--big .c-section__about--bottom-box--item--big--balloon .c-section__about--bottom-box--item--big--balloon--img-top {
  -webkit-transform: translateY(7.5rem);
          transform: translateY(7.5rem);
  margin-right: -0.375rem;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
.c-section__about--bottom-box--item--big .c-section__about--bottom-box--item--big--balloon .c-section__about--bottom-box--item--big--balloon--img-top.active {
  -webkit-transform: translateY(0rem);
          transform: translateY(0rem);
}
.c-section__about--bottom-box--item--big .c-section__about--bottom-box--item--big--balloon .c-section__about--bottom-box--item--big--balloon--img-bottom {
  -webkit-transform: translateY(7.5rem);
          transform: translateY(7.5rem);
  margin-bottom: -2.5625rem;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
.c-section__about--bottom-box--item--big .c-section__about--bottom-box--item--big--balloon .c-section__about--bottom-box--item--big--balloon--img-bottom.active {
  -webkit-transform: translateY(0rem);
          transform: translateY(0rem);
}
.c-section__about--bottom-box--item--big .c-section__about--bottom-box--item--big--text-box {
  width: clamp(17.5rem, 15.4824029126rem + 8.6084142395vw, 25.8125rem);
}
.c-section__about--bottom-box--item--big .c-section__about--bottom-box--item--big--text-box .c-section__about--bottom-box--item--big--text-box-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.625rem, 0.6098300971rem + 0.0647249191vw, 0.6875rem);
  margin-bottom: clamp(1.25rem, 1.0983009709rem + 0.6472491909vw, 1.875rem);
}
.c-section__about--bottom-box--item--big .c-section__about--bottom-box--item--big--text-box .c-section__about--bottom-box--item--big--text-box-top--top {
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  /* 212.5% */
  letter-spacing: 0.2em;
}
.c-section__about--bottom-box--item--big .c-section__about--bottom-box--item--big--text-box .c-section__about--bottom-box--item--big--text-box-top--middle {
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(1.25rem, 1.1286407767rem + 0.5177993528vw, 1.75rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  /* 121.429% */
  letter-spacing: 0.3em;
}
.c-section__about--bottom-box--item--big .c-section__about--bottom-box--item--big--text-box .c-section__about--bottom-box--item--big--text-box-top--bottom {
  color: #000;
  text-align: center;
  font-family: Roboto;
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  /* 242.857% */
  letter-spacing: 0.2em;
}
.c-section__about--bottom-box--item--big .c-section__about--bottom-box--item--big--text-box .c-section__about--bottom-box--item--big--text-box-bottom .c-section__about--bottom-box--item--big--text-box-bottom--text {
  color: #000;
  text-align: justify;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.75;
  /* 175% */
  letter-spacing: 0.1em;
}

.fade {
  aspect-ratio: 516/667;
  opacity: 0;
}
.fade.is-ready {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.l-section__about-gin {
  padding-top: 2.5rem;
  padding-bottom: clamp(3.75rem, 1.7475728155rem + 8.5436893204vw, 12rem);
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
}
.l-section__about-gin .l-section__about-gin--bk {
  position: absolute;
  right: 0;
  top: 0;
}

.l-inner__section-about-gin {
  max-width: 68.75rem;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .l-inner__section-about-gin {
    max-width: 90%;
  }
}

.l-inner__section-about-gin--title {
  max-width: 61.5625rem;
  margin: 0 auto;
  margin-top: clamp(1.875rem, 1.5716019417rem + 1.2944983819vw, 3.125rem);
  margin-bottom: clamp(1.875rem, 1.0861650485rem + 3.3656957929vw, 5.125rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(1.25rem, 1.0224514563rem + 0.9708737864vw, 2.1875rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.7142857143;
  /* 171.429% */
  letter-spacing: 0.08em;
}
@media screen and (max-width: 991px) {
  .l-inner__section-about-gin--title {
    max-width: 90%;
  }
}
@media screen and (max-width: 991px) {
  .l-inner__section-about-gin--title br {
    display: none;
  }
}
.l-inner__section-about-gin--title .about_gin--foot {
  display: block;
  position: absolute;
  top: 50%;
  right: calc(0rem - clamp(3.125rem, 3.125rem + 0vw, 3.125rem));
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .l-inner__section-about-gin--title .about_gin--foot {
    top: 48%;
    right: calc(0rem - clamp(6.25rem, 5.7949029126rem + 1.9417475728vw, 8.125rem));
  }
}
.l-inner__section-about-gin--title .about_gin--foot .foot01 {
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.l-inner__section-about-gin--title .about_gin--foot .foot01.active {
  opacity: 1;
}
.l-inner__section-about-gin--title .about_gin--foot .foot02 {
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.l-inner__section-about-gin--title .about_gin--foot .foot02.active {
  opacity: 1;
}
.l-inner__section-about-gin--title .about_gin--foot .foot03 {
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.l-inner__section-about-gin--title .about_gin--foot .foot03.active {
  opacity: 1;
}

.l-inner__section-about-gin--bottom-box {
  max-width: 68.75rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .l-inner__section-about-gin--bottom-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.l-inner__section-about-gin--bottom-box .l-inner__section-about-gin--bottom--slider {
  max-width: clamp(18.75rem, 15.4733009709rem + 13.9805825243vw, 32.25rem);
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-inner__section-about-gin--bottom-box .l-inner__section-about-gin--bottom--slider {
    max-width: 100%;
  }
}
.l-inner__section-about-gin--bottom-box .l-inner__section-about-gin--bottom--slider .l-inner__section-about-gin--bottom--slider--bk {
  position: absolute;
  bottom: calc(0rem - clamp(2rem, 2rem + 0vw, 2rem));
  left: -14.8125rem;
  z-index: -5;
}
@media screen and (max-width: 600px) {
  .l-inner__section-about-gin--bottom-box .l-inner__section-about-gin--bottom--slider .l-inner__section-about-gin--bottom--slider--bk {
    bottom: calc(0rem - clamp(3.125rem, 3.125rem + 0vw, 3.125rem));
  }
}
.l-inner__section-about-gin--bottom-box .l-inner__section-about-gin--bottom--slider .fade .l-inner__section-about-gin--bottom--slider--img {
  display: inline-block;
}
.l-inner__section-about-gin--bottom-box .l-inner__section-about-gin--bottom--slider .fade .l-inner__section-about-gin--bottom--slider--img img {
  max-width: 100%;
  width: 100%;
}
.l-inner__section-about-gin--bottom-box .l-inner__section-about-gin--bottom--slider .fade .l-inner__section-about-gin--bottom--slider--img img {
  border-radius: 1.25rem 5rem;
}
.l-inner__section-about-gin--bottom-box .l-inner__section-about-gin--bottom--slider .fade .slick-arrow {
  display: none !important;
}
.l-inner__section-about-gin--bottom-box .l-inner__section-about-gin--bottom--slider .fade .slick-dots {
  bottom: -2.6875rem;
}
.l-inner__section-about-gin--bottom-box .l-inner__section-about-gin--bottom--slider .fade .slick-dots li {
  width: 0.625rem;
  height: 0.625rem;
}
.l-inner__section-about-gin--bottom-box .l-inner__section-about-gin--bottom--slider .fade .slick-dots li button {
  width: 0.625rem;
  height: 0.625rem;
}
.l-inner__section-about-gin--bottom-box .l-inner__section-about-gin--bottom--slider .fade .slick-dots li button:before {
  border: 0.0625rem solid #81A481;
  border-radius: 50%;
  color: #fff;
  width: 0.625rem;
  height: 0.625rem;
  content: "";
  opacity: 1;
}
.l-inner__section-about-gin--bottom-box .l-inner__section-about-gin--bottom--slider .fade .slick-dots li.slick-active button:before {
  border: 0.0625rem solid #81A481;
  border-radius: 50%;
  background-color: #81A481;
  color: #81A481;
}
.l-inner__section-about-gin--bottom-box .l-inner__section-about-gin--bottom--right {
  width: 32.125rem;
}
@media screen and (max-width: 768px) {
  .l-inner__section-about-gin--bottom-box .l-inner__section-about-gin--bottom--right {
    width: 100%;
  }
}
.l-inner__section-about-gin--bottom-box .l-inner__section-about-gin--bottom--right .l-inner__section-about-gin--bottom--right--text {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 2.0625;
  /* 206.25% */
  letter-spacing: 0.1em;
  position: relative;
}
.l-inner__section-about-gin--bottom-box .l-inner__section-about-gin--bottom--right .l-inner__section-about-gin--bottom--right--text .l-inner__section-about-gin--bottom--right--text--img {
  position: absolute;
  top: 1.625rem;
  right: calc(0rem - clamp(4.375rem, 3.677184466rem + 2.9773462783vw, 7.25rem));
  z-index: -1;
}
.l-inner__section-about-gin--bottom-box .l-inner__section-about-gin--bottom--right .l-inner__section-about-gin--bottom--right--img img {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .l-inner__section-about-gin--bottom-box .l-inner__section-about-gin--bottom--right .l-inner__section-about-gin--bottom--right--img img {
    margin: auto;
  }
}

.l-section__public-notice {
  background-color: var(--color-key);
  padding-top: clamp(3.125rem, 2.8822815534rem + 1.0355987055vw, 4.125rem);
  padding-bottom: clamp(3.75rem, 3.5072815534rem + 1.0355987055vw, 4.75rem);
  overflow: hidden;
}

.l-inner__section-notice {
  background-color: #fff;
  border-radius: 1.25rem;
  padding: clamp(2.5rem, 2.2421116505rem + 1.1003236246vw, 3.5625rem) clamp(1.875rem, 1.7839805825rem + 0.3883495146vw, 2.25rem) clamp(2.5rem, 2.3786407767rem + 0.5177993528vw, 3rem);
  max-width: 68.75rem;
}
@media screen and (max-width: 1280px) {
  .l-inner__section-notice {
    max-width: 90%;
  }
}
.l-inner__section-notice .l-inner__section-notice--dog {
  position: absolute;
  bottom: calc(0rem - clamp(4.0625rem, 3.9108009709rem + 0.6472491909vw, 4.6875rem));
  right: calc(0rem - clamp(1.1875rem, 1.1875rem + 0vw, 1.1875rem));
}
@media screen and (max-width: 768px) {
  .l-inner__section-notice .l-inner__section-notice--dog {
    bottom: calc(0rem - clamp(3.75rem, 3.2949029126rem + 1.9417475728vw, 5.625rem));
    right: calc(0rem - clamp(1.875rem, 1.875rem + 0vw, 1.875rem));
  }
}
@media screen and (max-width: 768px) {
  .l-inner__section-notice .l-inner__section-notice--dog img {
    max-width: clamp(11.25rem, 10.9466019417rem + 1.2944983819vw, 12.5rem);
  }
}

.l-inner__section-notice--inner {
  padding-left: clamp(1.875rem, 1.7839805825rem + 0.3883495146vw, 2.25rem);
  padding-right: clamp(1.875rem, 1.7839805825rem + 0.3883495146vw, 2.25rem);
}
@media screen and (max-width: 600px) {
  .l-inner__section-notice--inner {
    padding: 0;
  }
}

.l-inner__section-notice--text {
  margin-top: clamp(0.9375rem, 0.8919902913rem + 0.1941747573vw, 1.125rem);
  margin-bottom: clamp(1.875rem, 1.7233009709rem + 0.6472491909vw, 2.5rem);
}

.l-inner__section-notice--link--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.25rem, 1.1286407767rem + 0.5177993528vw, 1.75rem);
}
@media screen and (max-width: 991px) {
  .l-inner__section-notice--link--box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.l-inner__section-notice--link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.3125rem;
  border-radius: 0.625rem;
  border: 0.25rem solid #C7E5C6;
  background: #FFF;
  padding: 0.875rem clamp(1.25rem, 1.1438106796rem + 0.4530744337vw, 1.6875rem);
}
.l-inner__section-notice--link span {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.8333333333;
  /* 183.333% */
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.l-inner__section-notice--link .sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-inner__section-notice--link .sp-only {
    display: inline;
  }
}

.l-section__profile--bk {
  background: url(../img/profile/profile--beans.svg);
  background-size: 10.625rem 32.5rem;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
}

.l-inner__section-profile {
  padding-top: clamp(3.75rem, 2.7942961165rem + 4.0776699029vw, 7.6875rem);
  max-width: 62.5rem;
}
@media screen and (max-width: 1280px) {
  .l-inner__section-profile {
    max-width: 90%;
  }
}

.l-inner__section-profile--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .l-inner__section-profile--box {
    margin-top: 2.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.l-inner__section-profile--left {
  margin-top: clamp(1.875rem, 1.1013349515rem + 3.3009708738vw, 5.0625rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .l-inner__section-profile--left {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.l-inner__section-profile--left .l-inner__section-profile--wood {
  margin-top: 3.75rem;
}

.l-inner__section-profile--right table {
  width: auto;
}
.l-inner__section-profile--right table tr th {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.875;
  /* 187.5% */
  letter-spacing: 0.46em;
  -moz-text-align-last: justify;
       text-align-last: justify;
  padding: 0;
  padding-right: clamp(2.5rem, 1.8780339806rem + 2.6537216828vw, 5.0625rem);
  padding-bottom: clamp(0.625rem, 0.5339805825rem + 0.3883495146vw, 1rem);
  white-space: nowrap;
}
.l-inner__section-profile--right table tr td {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.875;
  /* 187.5% */
  letter-spacing: 0.1em;
  padding: 0;
  padding-bottom: clamp(0.625rem, 0.5339805825rem + 0.3883495146vw, 1rem);
}

.c-cat-walk {
  position: relative;
  width: 100%;
  height: 8.75rem;
  overflow: hidden;
}
.c-cat-walk picture {
  position: absolute;
  top: 0.6875rem;
  right: -8.75rem;
  /* 画面右外からスタート */
  width: 8.75rem;
  height: 8.75rem;
  -webkit-animation: walk 35s linear infinite;
          animation: walk 35s linear infinite;
  opacity: 0;
}
.c-cat-walk .c-cat-walk__img02 {
  top: 0.9375rem !important;
}
.c-cat-walk .active {
  opacity: 1;
}

/* 右外 → 左外 */
@-webkit-keyframes walk {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    /* right: -140px の位置 */
  }
  100% {
    -webkit-transform: translateX(calc(-100vw - 8.75rem));
            transform: translateX(calc(-100vw - 8.75rem));
    /* 左外まで移動 */
  }
}
@keyframes walk {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    /* right: -140px の位置 */
  }
  100% {
    -webkit-transform: translateX(calc(-100vw - 8.75rem));
            transform: translateX(calc(-100vw - 8.75rem));
    /* 左外まで移動 */
  }
}
.l-section__blog {
  background: url(../img/blog/blog--back01.svg), url(../img/blog/blog--back02.svg);
  background-size: clamp(6.25rem, 3.5800970874rem + 11.3915857605vw, 17.25rem) clamp(5rem, 2.3452669903rem + 11.3268608414vw, 15.9375rem), clamp(5rem, 1.1165048544rem + 16.569579288vw, 21rem) clamp(4.375rem, 0.4156553398rem + 16.8932038835vw, 20.6875rem);
  background-position: right clamp(0rem, -1.3652912621rem + 5.8252427184vw, 5.625rem) top 0.125rem, left -1.25rem bottom clamp(1.875rem, 1.0558252427rem + 3.4951456311vw, 5.25rem);
  background-repeat: no-repeat;
  background-color: var(--color-key);
  padding-top: clamp(3.125rem, 2.8822815534rem + 1.0355987055vw, 4.125rem);
  padding-bottom: clamp(3.75rem, 3.5072815534rem + 1.0355987055vw, 4.75rem);
  position: relative;
  top: -0.375rem;
}

.l-inner__section-blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.875rem, 1.4654126214rem + 1.7475728155vw, 3.5625rem);
}
@media screen and (max-width: 1024px) {
  .l-inner__section-blog {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-inner__section-blog--inner {
  padding-left: clamp(1.875rem, 1.7839805825rem + 0.3883495146vw, 2.25rem);
  padding-right: clamp(1.875rem, 1.7839805825rem + 0.3883495146vw, 2.25rem);
}
@media screen and (max-width: 600px) {
  .l-inner__section-blog--inner {
    padding: 0;
  }
}

.l-inner__section-blog--text {
  margin-top: clamp(0.9375rem, 0.8919902913rem + 0.1941747573vw, 1.125rem);
  margin-bottom: clamp(1.875rem, 1.7233009709rem + 0.6472491909vw, 2.5rem);
}

.l-inner__section-blog--link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.3125rem;
  border-radius: 0.625rem;
  border: 0.25rem solid #C7E5C6;
  background: #FFF;
  padding: 0.875rem clamp(1.25rem, 0.901092233rem + 1.4886731392vw, 2.6875rem);
}
.l-inner__section-blog--link span {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.8333333333;
  /* 183.333% */
  letter-spacing: 0.1em;
}

.l-section__blog--thumbnail {
  position: relative;
  display: inline-block;
  z-index: 2;
}
.l-section__blog--thumbnail img {
  aspect-ratio: 214/194;
  border-radius: 1.25rem;
  border: 0.25rem solid #fff;
  width: clamp(9.375rem, 8.4041262136rem + 4.142394822vw, 13.375rem);
  max-width: clamp(9.375rem, 8.4041262136rem + 4.142394822vw, 13.375rem);
  height: clamp(8.75rem, 7.9308252427rem + 3.4951456311vw, 12.125rem);
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .l-section__blog--thumbnail img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}
.l-section__blog--thumbnail::after {
  position: absolute;
  content: "";
  top: 0;
  left: -0.3125rem;
  background-color: #fff;
  width: 100%;
  height: 100%;
  border-radius: 1.25rem;
  z-index: 0;
  -webkit-transform: rotate(-9deg);
          transform: rotate(-9deg);
}
@media screen and (max-width: 600px) {
  .l-section__blog--thumbnail::after {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
}

.l-section__blog--list {
  margin-top: 0.8125rem;
}

.l-section__blog--item {
  position: relative;
  padding-top: clamp(1.25rem, 1.083131068rem + 0.71197411vw, 1.9375rem);
  padding-bottom: clamp(1.25rem, 1.083131068rem + 0.71197411vw, 1.9375rem);
  padding-left: clamp(1.25rem, 0.9921116505rem + 1.1003236246vw, 2.3125rem);
  padding-right: clamp(0.9375rem, 0.8919902913rem + 0.1941747573vw, 1.125rem);
  overflow: hidden;
}
.l-section__blog--item:first-child::after {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 0.375rem;
  background: url(../img/blog/blog--border.svg);
  background-size: contain;
  background-repeat: repeat-x;
}
.l-section__blog--item::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 0.375rem;
  background: url(../img/blog/blog--border.svg);
  background-size: contain;
  background-repeat: repeat-x;
}
.l-section__blog--item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.25rem, 0.9769417476rem + 1.1650485437vw, 2.375rem);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 600px) {
  .l-section__blog--item a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: inherit;
        -ms-flex-align: inherit;
            align-items: inherit;
  }
}

.l-section__blog--info time {
  color: #000;
  font-family: Outfit;
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.4285714286;
  /* 142.857% */
  letter-spacing: 0.05em;
  margin-bottom: 0.4375rem;
  display: block;
}
.l-section__blog--info .l-section__blog--title {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  font-style: normal;
  font-weight: 400;
  /* 100% */
  letter-spacing: 0.1em;
  margin-bottom: clamp(1.125rem, 0.8822815534rem + 1.0355987055vw, 2.125rem);
  line-height: 1.6;
}
.l-section__blog--info .l-section__blog--excerpt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 2.0625;
  /* 206.25% */
  letter-spacing: 0.1em;
}
@media screen and (max-width: 600px) {
  .l-section__blog--info .l-section__blog--excerpt {
    -webkit-line-clamp: 2;
    line-height: 1.5;
  }
}

.l-section__blog--link-btn--box {
  margin-top: clamp(1.875rem, 1.6777912621rem + 0.8414239482vw, 2.6875rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 600px) {
  .l-section__blog--link-btn--box {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.l-section__blog--link-btn {
  width: clamp(15.625rem, 13.9563106796rem + 7.1197411003vw, 22.5rem);
  height: clamp(4.375rem, 4.2384708738rem + 0.5825242718vw, 4.9375rem);
  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;
  gap: clamp(1.25rem, 1.1134708738rem + 0.5825242718vw, 1.8125rem);
  border-radius: 2.46875rem;
  background: #FFF;
}
.l-section__blog--link-btn span {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  /* 150% */
  letter-spacing: 0.1em;
}
.l-section__blog--link-btn.c-page__blog {
  width: clamp(10.625rem, 8.6529126214rem + 8.4142394822vw, 18.75rem);
  height: clamp(3.75rem, 3.5983009709rem + 0.6472491909vw, 4.375rem);
}
.l-section__blog--link-btn.c-page__blog span {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.75rem, 0.6893203883rem + 0.2588996764vw, 1rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  /* 150% */
  letter-spacing: 0.1em;
}

.l-section__blog-contact--mv {
  margin-top: var(--height-header);
  background: url(../img/blog/blog--contact--mv.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  height: clamp(8.125rem, 4.5752427184rem + 15.145631068vw, 22.75rem);
}
@media screen and (max-width: 600px) {
  .l-section__blog-contact--mv {
    background-size: contain;
  }
}

.l-inner__blog-contact--mv {
  max-width: 68.75rem;
  margin: 0 auto;
  margin-top: clamp(2.5rem, 1.7566747573rem + 3.1715210356vw, 5.5625rem);
}
@media screen and (max-width: 1280px) {
  .l-inner__blog-contact--mv {
    max-width: 90%;
  }
}

.l-pageContents {
  background-color: var(--color-key);
  background-image: url(../img/blog/comp/blog--back01.svg), url(../img/blog/comp/blog--back02.svg);
  background-repeat: no-repeat;
  background-position: right top 11.625rem, left bottom 22.6875rem;
  background-size: clamp(6.25rem, 2.8216019417rem + 14.6278317152vw, 20.375rem) clamp(6.875rem, 3.4466019417rem + 14.6278317152vw, 21rem), clamp(6.25rem, 2.7457524272rem + 14.9514563107vw, 20.6875rem) clamp(6.875rem, 3.7803398058rem + 13.2038834951vw, 19.625rem);
}
.l-pageContents.privacy-policy {
  padding-bottom: clamp(3.75rem, 2.2330097087rem + 6.4724919094vw, 10rem);
  margin-bottom: clamp(3.75rem, 3.1432038835rem + 2.5889967638vw, 6.25rem);
}

.l-inner--blag-page {
  max-width: 88.75rem;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 3.75rem;
  padding-top: clamp(1.875rem, 0.8889563107rem + 4.2071197411vw, 5.9375rem);
  padding-bottom: clamp(2.5rem, 1.4077669903rem + 4.6601941748vw, 7rem);
}
@media screen and (max-width: 1480px) {
  .l-inner--blag-page {
    max-width: 90%;
  }
}
@media screen and (max-width: 600px) {
  .l-inner--blag-page {
    border-radius: 1.875rem;
  }
}
.l-inner--blag-page .c-single {
  max-width: 54.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .l-inner--blag-page .c-single {
    max-width: 90%;
  }
}
.l-inner--blag-page .c-single .c-single__title {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(1.5rem, 1.1966019417rem + 1.2944983819vw, 2.75rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.3636363636;
  /* 181.818% */
  letter-spacing: 0.06em;
  margin-bottom: 0.875rem;
}
.l-inner--blag-page .c-single .c-single__date {
  color: #000;
  font-family: Outfit;
  font-size: clamp(0.875rem, 0.7839805825rem + 0.3883495146vw, 1.25rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  /* 100% */
  letter-spacing: 0.05em;
}
.l-inner--blag-page .c-single .p-editorContents {
  margin-top: clamp(1.875rem, 1.6626213592rem + 0.9061488673vw, 2.75rem);
}
.l-inner--blag-page .c-single .p-editorContents .attachment-post-thumbnail {
  margin-bottom: clamp(1.875rem, 1.5109223301rem + 1.5533980583vw, 3.375rem);
}
.l-inner--blag-page .c-single .p-editorContents p {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 2.125;
  /* 212.5% */
  letter-spacing: 0.05em;
  margin-bottom: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
}

.post-navigation {
  padding-top: clamp(2.5rem, 1.8628640777rem + 2.7184466019vw, 5.125rem);
  padding-bottom: clamp(2.5rem, 1.0436893204rem + 6.213592233vw, 8.5rem);
}
.post-navigation .post-navigation--inner {
  max-width: 68.75rem;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1480px) {
  .post-navigation .post-navigation--inner {
    max-width: 90%;
  }
}
.post-navigation .post-navigation--inner span {
  font-weight: 500;
}
.post-navigation .post-navigation--inner .previous-post {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.post-navigation .post-navigation--inner .next-post {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-page__blog--link-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}

.p-blog .p-blog__list--box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.875rem, 1.4199029126rem + 1.9417475728vw, 3.75rem);
}
@media screen and (max-width: 768px) {
  .p-blog .p-blog__list--box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .p-blog .p-blog__list--box {
    grid-template-columns: 1fr;
  }
}
.p-blog .p-blog__list--box li {
  background-image: url(../img/blog/comp/blog--line.svg);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100%;
  padding-bottom: 2rem;
}
.p-blog .p-blog__list--box li .p-blog__thumbnail img {
  aspect-ratio: 1.0995850622;
  border-radius: 1.25rem;
  border: 0.25rem solid #C7E5C6;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-blog .p-blog__list--box li .p-blog__blog--info {
  margin-top: clamp(1.25rem, 1.1589805825rem + 0.3883495146vw, 1.625rem);
}
.p-blog .p-blog__list--box li .p-blog__blog--info time {
  color: #000;
  font-family: Outfit;
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.4285714286;
  /* 142.857% */
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: block;
}
.p-blog .p-blog__list--box li .p-blog__blog--info .p-blog__blog--title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  /* 100% */
  letter-spacing: 0.1em;
  margin-bottom: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
}
.p-blog .p-blog__list--box li .p-blog__blog--info .p-blog__blog--excerpt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 2.0625;
  /* 206.25% */
  letter-spacing: 0.1em;
}
@media screen and (max-width: 600px) {
  .p-blog .p-blog__list--box li .p-blog__blog--info .p-blog__blog--excerpt {
    -webkit-line-clamp: 2;
  }
}

.p-blog__page-nation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: clamp(3.75rem, 2.6274271845rem + 4.7896440129vw, 8.375rem);
  padding-bottom: clamp(3.75rem, 1.7020631068rem + 8.7378640777vw, 12.1875rem);
}
.p-blog__page-nation .prev {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.1875rem, -0.0552184466rem + 1.0355987055vw, 1.1875rem);
  color: #000 !important;
  text-align: center !important;
  font-family: "Noto Sans JP" !important;
  font-size: clamp(0.75rem, 0.6893203883rem + 0.2588996764vw, 1rem) !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: 1.875 !important;
  /* 187.5% */
  letter-spacing: 0.1em !important;
  border-radius: 1.3125rem !important;
  border: 0.125rem solid #FFF !important;
  background: #C7E5C6 !important;
  width: clamp(5.9375rem, 4.9211165049rem + 4.3365695793vw, 10.125rem) !important;
  height: clamp(1.875rem, 1.692961165rem + 0.7766990291vw, 2.625rem);
  aspect-ratio: auto !important;
  position: relative !important;
  z-index: 0 !important;
}
.p-blog__page-nation .prev img {
  width: clamp(0.3125rem, 0.2366504854rem + 0.3236245955vw, 0.625rem);
}
.p-blog__page-nation .prev::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #C7E5C6 !important;
  border-radius: inherit;
  z-index: -1;
}
.p-blog__page-nation .prev::after {
  position: absolute;
  content: "";
  top: clamp(0.125rem, 0.0946601942rem + 0.1294498382vw, 0.25rem);
  left: clamp(0.125rem, 0.0946601942rem + 0.1294498382vw, 0.25rem);
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: inherit;
  z-index: -2;
}
.p-blog__page-nation .next {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.1875rem, -0.0552184466rem + 1.0355987055vw, 1.1875rem);
  color: #000 !important;
  text-align: center !important;
  font-family: "Noto Sans JP" !important;
  font-size: clamp(0.75rem, 0.6893203883rem + 0.2588996764vw, 1rem) !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: 1.875 !important;
  /* 187.5% */
  letter-spacing: 0.1em !important;
  border-radius: 1.3125rem !important;
  border: 0.125rem solid #FFF !important;
  background: #C7E5C6 !important;
  width: clamp(5.9375rem, 4.9211165049rem + 4.3365695793vw, 10.125rem) !important;
  height: clamp(1.875rem, 1.692961165rem + 0.7766990291vw, 2.625rem);
  aspect-ratio: auto !important;
  position: relative !important;
  z-index: 0 !important;
}
.p-blog__page-nation .next img {
  width: clamp(0.3125rem, 0.2366504854rem + 0.3236245955vw, 0.625rem);
}
.p-blog__page-nation .next::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #C7E5C6 !important;
  border-radius: inherit;
  z-index: -1;
}
.p-blog__page-nation .next::after {
  position: absolute;
  content: "";
  top: clamp(0.125rem, 0.0946601942rem + 0.1294498382vw, 0.25rem);
  left: clamp(0.125rem, 0.0946601942rem + 0.1294498382vw, 0.25rem);
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: inherit;
  z-index: -2;
}
.p-blog__page-nation .page-numbers {
  color: #000 !important;
  border: none;
  color: #000;
  font-family: Sanchez;
  font-size: clamp(0.875rem, 0.7839805825rem + 0.3883495146vw, 1.25rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  /* 150% */
  letter-spacing: 0.05em;
}
.p-blog__page-nation .page-numbers.current {
  position: relative;
  z-index: 0;
}
.p-blog__page-nation .page-numbers.current::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: clamp(1.6875rem, 1.171723301rem + 2.2006472492vw, 3.8125rem);
  height: clamp(1.6875rem, 1.4599514563rem + 0.9708737864vw, 2.625rem);
  background-color: #fff;
  z-index: -1;
  border-radius: 1.3125rem;
}
.p-blog__page-nation .page-numbers.dots {
  width: 0.625rem;
}

.l-inner__section-contact {
  padding-top: clamp(3.75rem, 2.5212378641rem + 5.2427184466vw, 8.8125rem);
  padding-bottom: clamp(3.75rem, 2.9004854369rem + 3.6245954693vw, 7.25rem);
  max-width: 62.5rem;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .l-inner__section-contact {
    max-width: 90%;
  }
}

.l-inner__section-contact--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1280px) {
  .l-inner__section-contact--box {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: clamp(6.25rem, 3.2160194175rem + 12.9449838188vw, 18.75rem);
  }
}
@media screen and (max-width: 991px) {
  .l-inner__section-contact--box {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-inner__section-contact--box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.l-inner__section-contact--left {
  margin-top: -6.75rem;
}
@media screen and (max-width: 768px) {
  .l-inner__section-contact--left {
    margin-top: 0;
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .l-inner__section-contact--left {
    padding-left: 0;
  }
}
@media screen and (max-width: 991px) {
  .l-inner__section-contact--left .l-inner__section-contact--bog {
    display: block;
    width: clamp(18.75rem, 17.3088592233rem + 6.1488673139vw, 24.6875rem);
  }
}
@media screen and (max-width: 768px) {
  .l-inner__section-contact--left .l-inner__section-contact--bog {
    width: auto;
  }
}
@media screen and (max-width: 600px) {
  .l-inner__section-contact--left img {
    max-width: 80%;
    margin: 0 auto;
  }
}

.l-inner__section-contact--right {
  padding-left: clamp(1.875rem, 1.7839805825rem + 0.3883495146vw, 2.25rem);
}
@media screen and (max-width: 768px) {
  .l-inner__section-contact--right {
    margin-top: clamp(1.25rem, 0.9162621359rem + 1.4239482201vw, 2.625rem);
  }
}
.l-inner__section-contact--right .l-inner__section-contact--right--text {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 2.0625;
  /* 206.25% */
  letter-spacing: 0.1em;
}

.l-section__contact--page {
  z-index: 2;
}
.l-section__contact--page .p-contact__top {
  max-width: 68.125rem;
  margin: 0 auto;
  position: relative;
  background-image: url(../img/contact/comp/contact_border--long.svg);
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 100%;
  padding-top: clamp(1.875rem, 0.828276699rem + 4.4660194175vw, 6.1875rem);
  padding-bottom: clamp(1.875rem, 1.526092233rem + 1.4886731392vw, 3.3125rem);
}
@media screen and (max-width: 1280px) {
  .l-section__contact--page .p-contact__top {
    max-width: 90%;
  }
}
.l-section__contact--page .p-contact__top .p-contact__top--text {
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.875;
  /* 187.5% */
  letter-spacing: 0.05em;
}
.l-section__contact--page .p-contact__top .p-contact__top--text .sp-only {
  display: none;
}
@media screen and (max-width: 600px) {
  .l-section__contact--page .p-contact__top .p-contact__top--text .sp-only {
    display: inline;
  }
}
.l-section__contact--page .p-contact__bottom {
  margin-bottom: clamp(3.75rem, 2.1571601942rem + 6.7961165049vw, 10.3125rem);
}
.l-section__contact--page .p-contact__bottom .c-form__box--bk {
  max-width: 68.125rem;
  margin: 0 auto;
  position: relative;
  background-image: url(../img/contact/comp/contact_border--long.svg);
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 100%;
  padding-top: clamp(1.875rem, 0.828276699rem + 4.4660194175vw, 6.1875rem);
  padding-bottom: clamp(1.875rem, 1.526092233rem + 1.4886731392vw, 3.3125rem);
}
@media screen and (max-width: 1280px) {
  .l-section__contact--page .p-contact__bottom .c-form__box--bk {
    max-width: 90%;
  }
}
.l-section__contact--page .p-contact__bottom .c-form__box--inner {
  max-width: 55.625rem;
  margin: 0 auto;
  position: relative;
}

.l-section__contact--thanks--page .p-contact__top--thanks {
  max-width: 68.125rem;
  margin: 0 auto;
  position: relative;
  padding-top: clamp(1.875rem, 0.828276699rem + 4.4660194175vw, 6.1875rem);
  padding-bottom: clamp(3.75rem, 2.2330097087rem + 6.4724919094vw, 10rem);
}
@media screen and (max-width: 1280px) {
  .l-section__contact--thanks--page .p-contact__top--thanks {
    max-width: 90%;
  }
}
.l-section__contact--thanks--page .p-contact__top--thanks .p-contact__top--text--thanks {
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.875;
  /* 187.5% */
  letter-spacing: 0.05em;
}
.l-section__contact--thanks--page .p-contact__top--thanks .p-contact__top--text--thanks .sp-only {
  display: none;
}
@media screen and (max-width: 600px) {
  .l-section__contact--thanks--page .p-contact__top--thanks .p-contact__top--text--thanks .sp-only {
    display: inline;
  }
}

.p-contact__thanks--back--btn {
  display: block;
  margin: 0 auto;
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  /* 150% */
  letter-spacing: 0.1em;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-appearance: none;
  border-radius: 2.46875rem;
  border: 0.25rem solid #C7E5C6;
  background: #FFF;
  width: clamp(15.625rem, 13.9563106796rem + 7.1197411003vw, 22.5rem);
  padding: clamp(0.9375rem, 0.7858009709rem + 0.6472491909vw, 1.5625rem);
  margin-top: clamp(1.875rem, 1.1923543689rem + 2.9126213592vw, 4.6875rem);
  margin-bottom: clamp(1.875rem, -0.0970873786rem + 8.4142394822vw, 10rem);
  position: relative;
  z-index: 0;
}
.p-contact__thanks--back--btn::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  border-radius: 2.46875rem;
}
.p-contact__thanks--back--btn::after {
  position: absolute;
  content: "";
  top: clamp(0.4375rem, 0.4071601942rem + 0.1294498382vw, 0.5625rem);
  left: clamp(0.375rem, 0.3446601942rem + 0.1294498382vw, 0.5rem);
  width: 100%;
  height: 100%;
  background-color: #C7E5C6;
  z-index: -2;
  border-radius: 2.46875rem;
}

.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.u-grid {
  display: grid;
}

.u-uppercase {
  text-transform: uppercase;
}

.u-capitalize {
  text-transform: capitalize;
}

.u-textCenter {
  text-align: center;
}

.u-bold {
  font-weight: bold;
}

.u-justify-center.u-justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 600px) {
  .is-pcOnly {
    display: none;
  }
}

.is-spOnly {
  display: none;
}
@media screen and (max-width: 600px) {
  .is-spOnly {
    display: block;
  }
}

@media screen and (max-width: 1366px) {
  .is-overPc {
    display: none;
  }
}

.is-underPc {
  display: none;
}
@media screen and (max-width: 1366px) {
  .is-underPc {
    display: block;
  }
}

@media screen and (max-width: 1280px) {
  .is-overXxl {
    display: none;
  }
}

.is-underXxl {
  display: none;
}
@media screen and (max-width: 1280px) {
  .is-underXxl {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .is-overXl {
    display: none;
  }
}

.is-underXl {
  display: none;
}
@media screen and (max-width: 1024px) {
  .is-underXl {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .is-overMd {
    display: none;
  }
}

.is-underMd {
  display: none;
}
@media screen and (max-width: 768px) {
  .is-underMd {
    display: block;
  }
}

.is-fixed {
  overflow: hidden !important;
}/*# sourceMappingURL=style.css.map */