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

　変数定義

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

/*—————————————————————————————————————————————————————
　カラー設定
—————————————————————————————————————————————————————*/
:root {
  --color-key:	#F59E12;
  --color-key_l:	#FAF8F3;
  --color-key_secondary:	#0179C4;
  --color-body_bg:	#FFF;
  --color-head_bg:	#FFF;
  --color-foot_bg:	#171717;
  --color-head_bg_l:	#303030;
  /* テキスト */
  --color-txt:	#121212;
  --color-txt_sub:	#333333;
  --color-txt_l:	#6B6B6B;
  /* リンク */
  --color-link:	#F59E12;
  /* 画像のMIX */
  --color-img_mix:	#91C2EA;
  /* 罫線 */
  --color-border:	#F59E12;
  --color-border_l:	#C7C7C7;
  /* フォームカラー */
  --color-form-txt:	#121212;
  --color-form-border:	#e2e2e2;
  --color-form-placeholder:	#848484;
  /* ボタンやアラートなどエレメントカラー */
  --color-default:	#FFFFFF;
  --color-primary:	#F59E12;
  --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.875;
  letter-spacing: 0.1em;
  -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: clamp(0.5rem, 0.3483009709rem + 0.6472491909vw, 1.125rem) clamp(0.5rem, 0.2421116505rem + 1.1003236246vw, 1.5625rem);
  width: 100%;
  border: none;
  border-radius: 0.25rem;
  background-image: none;
  background-color: var(--color-key_l);
  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: 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;
}

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;
  padding: 0 0 0 2.25rem;
  cursor: pointer;
}

input[type=radio] + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 1.375rem;
  height: 1.375rem;
  border: 2px 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.25rem;
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  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.125rem;
  height: 1.125rem;
  border: 2px solid var(--color-txt);
  border-radius: 0.1875rem;
  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::before {
  background: var(--color-key);
  border: 2px solid var(--color-key);
}

input[type=checkbox]:checked + span::after {
  position: absolute;
  top: 55%;
  left: 0.125rem;
  display: block;
  margin-top: -0.2em;
  width: 0.8125rem;
  height: 0.5rem;
  border-bottom: 0.125rem solid var(--color_white);
  border-left: 0.125rem solid var(--color_white);
  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: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Roboto-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Roboto-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Roboto-Bold.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: 1.5rem;
  font-weight: 700;
}
.p-editorContents h3.wp-block-heading {
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
}
.p-editorContents * + * {
  margin-top: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}
.p-editorContents * + h2.wp-block-heading {
  margin-top: 96px;
}
.p-editorContents * + h3.wp-block-heading {
  margin-top: 56px;
}
.p-editorContents * + p {
  margin-top: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}
.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: decimal;
}
.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: contain;
  object-fit: contain;
  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-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);
  }
}
.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;
  margin: clamp(3.75rem, 2.2330097087rem + 6.4724919094vw, 10rem) 0;
}
.l-section--bg {
  background-color: var(--color-key_l);
  padding: clamp(3rem, 2.2111650485rem + 3.3656957929vw, 6.25rem) 0;
}
.l-section--mb-none {
  margin-bottom: 0;
}

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

.l-header {
  width: 100%;
  height: var(--height-header);
  position: fixed;
  top: 0;
  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;
  padding: 0.625rem clamp(1rem, -13.875rem + 18.59375vw, 8.4375rem);
  gap: 2.25rem;
  -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.5rem 0.9375rem 0.5rem 1.25rem;
  }
}

@media screen and (max-width: 600px) {
  .l-header__logo {
    height: 100%;
  }
  .l-header__logo img {
    height: 100%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    /* または transform: translate3d(0, 0, 0); */
    -webkit-backface-visibility: hidden;
    /* Safari向けの最適化 */
    will-change: transform;
    /* レンダリング最適化をブラウザに伝える */
    image-rendering: -webkit-optimize-contrast;
    /* WebKit独自のアンチエイリアシング最適化 */
    shape-rendering: crispEdges;
    /* SVGの形状レンダリングをシャープに */
    text-rendering: geometricPrecision;
    /* テキストのレンダリング精度を向上 */
  }
}

.l-header__nav {
  margin-left: auto;
}
@media screen and (max-width: 1280px) {
  .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.7572815534rem + 1.0355987055vw, 2rem);
  height: 100%;
}

.l-header__nav--item {
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  height: 100%;
  position: relative;
}
.l-header__nav--item:hover .l-header__nav-child-list {
  opacity: 1;
  visibility: visible;
}

.l-header__nav-child-list {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: var(--color_white);
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.l-header__nav-child-item {
  background-color: var(--color_white);
}

.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%;
  font-size: clamp(0.8125rem, 0.7821601942rem + 0.1294498382vw, 0.9375rem);
  line-height: 1.3333333333;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--color-txt);
  cursor: default;
}
.l-header__nav--item__link.is_link {
  cursor: pointer;
}
.l-header__nav--item__link.is_link::after {
  content: none;
}

.l-header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@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_white);
  background-color: transparent;
  color: var(--color_white);
}
.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: 15rem;
  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: var(--color-key);
  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;
}

.l-header__navSp--item {
  position: relative;
  border-bottom: 1px solid var(--color_white);
  color: var(--color_white);
}

.l-header__navSp--item__link {
  padding: 0.875rem 1.5rem;
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@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--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;
  padding-left: 1.5rem;
}

.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_white) !important;
  display: block;
}

.l-footer {
  background-color: var(--color-key);
  padding: 2.9375rem 0 2.5rem;
  color: var(--color_white);
  position: relative;
}
.l-footer::before {
  content: "";
  background-image: url(../img/common/footer_deco.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(6.25rem, 0.703721374rem + 23.6641221374vw, 12.0625rem);
  max-width: 12.0625rem;
  aspect-ratio: 193/58;
  position: absolute;
  top: calc(-1 * clamp(1.875rem, 0.2051526718rem + 7.1246819338vw, 3.625rem));
  left: 74%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.l-footer .l-inner {
  position: relative;
}

.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: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 1rem;
}
@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: 2.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.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;
}

.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-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1rem, 0.8938106796rem + 0.4530744337vw, 1.4375rem);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 480px) {
  .l-footer__top-right {
    -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-footer__top-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: clamp(0.5rem, -1.1666666667rem + 3.4722222222vw, 3rem);
}
@media screen and (max-width: 768px) {
  .l-footer__top-list {
    gap: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .l-footer__top-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-footer__top-item {
  font-size: clamp(0.8125rem, 0.7821601942rem + 0.1294498382vw, 0.9375rem);
  line-height: 1.3333333333;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.l-footer__top-link-sns {
  background-image: url(../img/icon/icon_sns-instagram_wh.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.4375rem;
  aspect-ratio: 1/1;
}

.l-footer__top-child {
  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.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
  margin-top: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
}

.l-footer__top-child-item {
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  line-height: normal;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.l-footer__contact {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .l-footer__contact {
    margin: 2.5rem auto 0;
  }
}
.l-footer__contact.c-btn--contact {
  color: var(--color-key);
  background-color: var(--color_white);
  font-weight: 600;
}
.l-footer__contact.c-btn--contact::after {
  background-image: url(../img/icon/icon_btn_next-key.svg);
}

.l-footer__privacy-policy {
  margin-top: 1rem;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(0.6875rem, 0.6571601942rem + 0.1294498382vw, 0.8125rem);
  line-height: 1.8461538462;
  letter-spacing: 0.05em;
  color: var(--color_white);
}
@media screen and (max-width: 768px) {
  .l-footer__privacy-policy {
    margin-right: auto;
  }
}

.l-footer__bottom {
  margin-top: clamp(2.5rem, 1.5898058252rem + 3.8834951456vw, 6.25rem);
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(1rem, 0.7876213592rem + 0.9061488673vw, 1.875rem);
}

.l-footer__bottom-copyright {
  font-size: clamp(0.6875rem, 0.6571601942rem + 0.1294498382vw, 0.8125rem);
  line-height: 1.8461538462;
  letter-spacing: 0.05em;
  color: var(--color_white);
  text-align: center;
}

.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 {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  letter-spacing: 0;
  color: var(--color_white);
}

.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-archive {
  margin-top: clamp(1.5rem, 1.1055825243rem + 1.6828478964vw, 3.125rem);
}

.c-archive__text {
  margin: clamp(2.5rem, 1.286407767rem + 5.1779935275vw, 7.5rem) 0 clamp(2.5rem, 1.5898058252rem + 3.8834951456vw, 6.25rem);
}

.c-archive__category {
  margin: clamp(2.5rem, 1.286407767rem + 5.1779935275vw, 7.5rem) 0 clamp(2.5rem, 1.5898058252rem + 3.8834951456vw, 6.25rem);
  width: 100%;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(0.625rem, 0.4733009709rem + 0.6472491909vw, 1.25rem) clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}

.c-archive__category-link {
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  font-weight: 600;
  line-height: 1.1111111111;
  letter-spacing: 0.05em;
  color: #B2B2B2;
}
.c-archive__category-link.is_current {
  color: var(--color-key);
}

.c-archive__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 0.8932038835rem + 2.5889967638vw, 4rem) clamp(1rem, 0.6055825243rem + 1.6828478964vw, 2.625rem);
}
@media screen and (max-width: 768px) {
  .c-archive__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .c-archive__list {
    grid-template-columns: 1fr;
  }
}

.c-archive__item p {
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 1.625;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-top: 0.5rem;
}
@media screen and (max-width: 600px) {
  .c-archive__item p {
    margin-top: 0.25rem;
  }
}

.c-archive__item-upper {
  margin-top: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.125rem clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
  color: var(--color-key);
}
.c-archive__item-upper time {
  font-size: clamp(0.75rem, 0.7044902913rem + 0.1941747573vw, 0.9375rem);
  line-height: 1.5333333333;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-family: "Roboto";
}
.c-archive__item-upper span {
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.c-archive__item-img {
  aspect-ratio: 339/219;
  border-radius: 0.3125rem;
}
.c-archive__item-img img {
  width: 100%;
  aspect-ratio: 339/219;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.3125rem;
}

.c-btn, .c-form__box button[type=submit], .c-form__box input[type=submit],
.c-form__box button[type=button], .c-form__box input[type=button] {
  width: 100%;
  max-width: 17.875rem;
  aspect-ratio: 286/66;
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: normal;
  letter-spacing: 0.1em;
  font-weight: 400;
  background-color: var(--color_white);
  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;
  gap: clamp(0.5rem, 0.3483009709rem + 0.6472491909vw, 1.125rem);
  border-radius: 2.0625rem;
  position: relative;
}
.c-btn::after, .c-form__box button[type=submit]::after, .c-form__box input[type=submit]::after,
.c-form__box button[type=button]::after, .c-form__box input[type=button]::after {
  content: "";
  width: 1.6875rem;
  height: 0.9375rem;
  background-image: url(../img/icon/icon_btn_next-bk.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.c-btn--small {
  max-width: 12.0625rem;
  aspect-ratio: 193/45;
}
.c-btn--small::after {
  content: none;
}
.c-btn--color {
  background-color: var(--color-key);
  color: var(--color_white);
}
.c-btn--color::after {
  background-image: url(../img/icon/icon_btn_next.svg);
}
.c-btn--recruit {
  width: 12.125rem;
  aspect-ratio: 194/47;
  background-color: var(--color-key_secondary);
  color: var(--color_white);
  font-size: clamp(0.8125rem, 0.7821601942rem + 0.1294498382vw, 0.9375rem);
  line-height: 1.3333333333;
  letter-spacing: 0.1em;
  padding: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-btn--recruit::after {
  content: "";
  width: 1.6875rem;
  height: 0.9375rem;
  background-image: url(../img/icon/icon_btn_window.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.c-btn--contact {
  width: 12.125rem;
  aspect-ratio: 194/47;
  background-color: var(--color-key);
  color: var(--color_white);
  font-size: clamp(0.8125rem, 0.7821601942rem + 0.1294498382vw, 0.9375rem);
  line-height: 1.3333333333;
  letter-spacing: 0.1em;
  padding: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-btn--contact::after {
  content: "";
  width: 1.6875rem;
  height: 0.9375rem;
  background-image: url(../img/icon/icon_btn_next.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.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 {
  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;
  max-width: 56.25rem;
  width: 100%;
  margin: clamp(1.5rem, 0.0436893204rem + 6.213592233vw, 7.5rem) auto 0;
}
.c-form__box button[type=submit], .c-form__box input[type=submit],
.c-form__box button[type=button], .c-form__box input[type=button] {
  padding: 0.6875rem 1.5rem 0.6875rem;
  line-height: 1;
  background-color: var(--color-key);
}
.c-form__box button[type=submit]::after, .c-form__box input[type=submit]::after,
.c-form__box button[type=button]::after, .c-form__box input[type=button]::after {
  background-image: url(../img/icon/icon_btn_next.svg) !important;
}
.c-form__box button[type=button], .c-form__box input[type=button] {
  background: transparent 0% 0% no-repeat padding-box;
  border: 1px solid var(--color-txt);
  color: var(--color-txt);
}
.c-form__box--confirm .c-form__wrap {
  display: grid;
  grid-template-columns: 40% 60%;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .c-form__box--confirm .c-form__wrap {
    grid-template-columns: 1fr;
  }
}

.c-form__wrap {
  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.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
  font-weight: 500;
}
.c-form__box--confirm .c-form__wrap {
  display: grid;
  grid-template-columns: 40% auto;
}
@media screen and (max-width: 600px) {
  .c-form__box--confirm .c-form__wrap {
    grid-template-columns: 1fr;
  }
}
.c-form__wrap--center {
  margin-top: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}
.c-form__box--confirm .c-form__wrap--center {
  grid-template-columns: 1fr;
}
.c-form__box--confirm .c-form__wrap--center .c-form__label {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.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.8786407767rem + 0.5177993528vw, 1.5rem);
}
.c-form__wrap .wpcf7-list-item-label {
  font-weight: 500;
}
.c-form__wrap .wpcf7-list-item-label {
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
.c-form__wrap .wpcf7-list-item-label a {
  color: var(--color-key_secondary);
  text-decoration: underline;
}

.c-form__label {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 1rem;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.c-form__label--required {
  display: inline-block;
}
.c-form__label--required::after {
  content: "必須";
  width: 2.5625rem;
  height: 1.375rem;
  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: #EF4040;
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  line-height: 1;
  letter-spacing: 0.05em;
  border-radius: 0.125rem;
  font-weight: 700;
}
@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(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  line-height: 1.7777777778;
  letter-spacing: 0.1em;
  text-align: center;
}

.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;
  }
}

.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(1rem, -0.0315533981rem + 4.4012944984vw, 5.25rem) !important;
}

#autozip {
  display: none !important;
}

.wpcf7 .wpcf7-submit-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 17.875rem;
  aspect-ratio: 286/66;
}

.wpcf7 .wpcf7-submit-wrapper::before {
  content: "✨";
  position: absolute;
  left: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-hamburger {
  display: none;
  position: relative;
  z-index: 9999;
}
@media screen and (max-width: 1280px) {
  .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.625rem;
  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.0625rem;
  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: 100%;
  height: 0.0625rem;
  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;
  gap: 0.25rem;
  margin-bottom: clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem);
}
.c-heading--small {
  margin-bottom: 0;
}
.c-heading--small .c-heading__ja {
  font-size: 1rem;
  line-height: 1.25;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
}
.c-heading--small .c-heading__ja::before {
  content: "";
  width: 0.4375rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color-key);
}
.c-heading--small .c-heading__en:empty {
  display: none;
}
.c-heading--large {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.75rem, 0.5983009709rem + 0.6472491909vw, 1.375rem);
  margin-bottom: 0;
}
.c-heading--large .c-heading__en {
  font-size: clamp(2rem, 1.5752427184rem + 1.8122977346vw, 3.75rem);
  line-height: 1;
  font-weight: 600;
}
.c-heading--large .c-heading__ja {
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  line-height: 1;
  font-weight: 500;
}
.c-heading--white .c-heading__en,
.c-heading--white .c-heading__ja {
  color: var(--color_white) !important;
}
.c-heading--white .c-heading__ja::before {
  background-color: var(--color_white);
}
.c-heading--center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-heading__en {
  color: var(--color-key);
  font-family: "Roboto";
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.c-heading__ja {
  font-size: clamp(1.125rem, 0.9126213592rem + 0.9061488673vw, 2rem);
  line-height: 1.40625;
  letter-spacing: 0.05em;
  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: var(--color_white);
  border-radius: 1.25rem;
  position: relative;
}

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

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

.modal-close {
  cursor: pointer;
  position: absolute;
  top: 1.3125rem;
  right: 1.3125rem;
  border: none;
  background: none;
}
@media screen and (max-width: 600px) {
  .modal-close {
    top: 0.625rem;
    right: 0rem;
  }
}
.modal-close:focus-visible {
  outline: none;
}
.modal-close:hover {
  opacity: 0.7;
}
.modal-close::after {
  content: none;
}
.modal-close::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background-image: url(../img/icon/icon_close.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(1rem, 0.5145631068rem + 2.071197411vw, 3rem);
  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;
  gap: clamp(1rem, 0.5145631068rem + 2.071197411vw, 3rem);
  width: 100%;
}
.c-modal__inner picture {
  width: 100%;
  max-width: 27.875rem;
  overflow: hidden;
  border-radius: 0.3125rem;
}
.c-modal__inner .c-modal__img-sample {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.c-modal__inner .c-modal__text-sub {
  font-size: 0.8125rem;
  line-height: 1.4615384615;
  font-weight: bold;
}
@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-modal__explanation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-modal__title {
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  line-height: 1.0833333333;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.c-modal__text {
  margin-top: 1rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.c-modal__box {
  margin-top: clamp(1rem, 0.7876213592rem + 0.9061488673vw, 1.875rem);
  display: grid;
  grid-template-columns: 6.25rem auto;
  gap: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem) clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
  font-weight: 500;
}
.c-modal__box p:nth-child(odd) {
  padding-left: clamp(0.625rem, 0.5643203883rem + 0.2588996764vw, 0.875rem);
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.c-modal__box p:nth-child(odd)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: clamp(0.125rem, 0.0643203883rem + 0.2588996764vw, 0.375rem);
  height: 1.375rem;
  background-color: var(--color-key);
}

.c-page-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  aspect-ratio: 1920/303;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: var(--color-key);
}
.c-page-head.about {
  background-image: url(../img/common/webp/page-head-about.webp);
}
.c-page-head.action {
  background-image: url(../img/common/webp/page-head-action.webp);
}
.c-page-head.sdgs-action {
  background-image: url(../img/common/webp/page-head-sdgs-action.webp);
}
.c-page-head.business {
  background-image: url(../img/common/webp/page-head-business.webp);
}
.c-page-head.company {
  background-image: url(../img/common/webp/page-head-company.webp);
}
.c-page-head.line-up {
  background-image: url(../img/common/webp/page-head-line-up.webp);
}
.c-page-head.news {
  background-image: url(../img/common/webp/page-head-news.webp);
}
.c-page-head.blog {
  background-image: url(../img/common/webp/page-head-blog.webp);
}
.c-page-head.contact {
  background-image: url(../img/common/webp/page-head-contact.webp);
}
@media screen and (max-width: 1024px) {
  .c-page-head {
    aspect-ratio: unset;
    height: clamp(6.25rem, 5.3398058252rem + 3.8834951456vw, 10rem);
  }
}

.c-page-head__inner {
  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%;
}

.c-page-head__title {
  color: var(--color_white);
  font-size: clamp(1.25rem, 1.0072815534rem + 1.0355987055vw, 2.25rem);
  font-weight: 700;
  line-height: 2.2222222222;
  letter-spacing: 0.05em;
}

.c-pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: clamp(2.5rem, 1.5898058252rem + 3.8834951456vw, 6.25rem) 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: clamp(0.375rem, 0.2233009709rem + 0.6472491909vw, 1rem);
}
.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(2rem, 1.7269417476rem + 1.1650485437vw, 3.125rem);
  aspect-ratio: 1/1;
  color: var(--color-key);
  border: 1px solid var(--color-key);
  border-radius: 50%;
  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);
}

.c-single__date {
  color: #BCBCBC;
  font-family: "Roboto";
}

.c-single__title {
  margin-top: clamp(0.25rem, 0.1893203883rem + 0.2588996764vw, 0.5rem);
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.1em;
}

.c-single__category {
  margin-top: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
  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.25rem 1rem;
}
.c-single__category span {
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  line-height: 1.1111111111;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: var(--color-key);
}

.c-single__navigation {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 49.1875rem;
  margin: clamp(2.5rem, 1.286407767rem + 5.1779935275vw, 7.5rem) auto 0;
}
@media screen and (max-width: 600px) {
  .c-single__navigation {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .c-single__navigation-prev {
    grid-row: 1/2;
  }
}
.c-single__navigation-prev a {
  font-weight: 500;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: clamp(0.5rem, 0.2572815534rem + 1.0355987055vw, 1.5rem);
}
@media screen and (max-width: 600px) {
  .c-single__navigation-prev a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.c-single__navigation-prev a::before {
  content: "";
  width: 3.75rem;
  height: 0.375rem;
  background-image: url(../img/icon/icon_prev.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.c-single__navigation-back .c-btn {
  border: 1px solid var(--color-txt);
  font-weight: 500;
}
.c-single__navigation-back .c-btn::after {
  content: none;
}
@media screen and (max-width: 600px) {
  .c-single__navigation-back {
    margin-top: 1rem;
    grid-column: 1/3;
    grid-row: 2/3;
  }
  .c-single__navigation-back .c-btn {
    margin: 0 auto;
  }
}

@media screen and (max-width: 600px) {
  .c-single__navigation-next {
    grid-row: 1/2;
  }
}
.c-single__navigation-next a {
  font-weight: 500;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: clamp(0.5rem, 0.2572815534rem + 1.0355987055vw, 1.5rem);
}
@media screen and (max-width: 600px) {
  .c-single__navigation-next a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}
.c-single__navigation-next a::after {
  content: "";
  width: 3.75rem;
  height: 0.375rem;
  background-image: url(../img/icon/icon_next.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.c-single__back-number {
  height: 100vh;
  overflow: auto;
}

.c-table th,
.c-table td {
  padding: 1.5rem 0;
}
.c-table th {
  width: 7.5rem;
  font-weight: 500;
  line-height: 1.3333333333;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--color-key);
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 600px) {
  .c-table th {
    width: 6.25rem;
  }
}
.c-table td {
  line-height: 1.3333333333;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--color-border_l);
  padding-left: clamp(0.75rem, 0.3252427184rem + 1.8122977346vw, 2.5rem);
}

@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-search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin: 0 auto 2rem;
  max-width: 37.5rem;
  width: 100%;
}

.c-search-form__input::-webkit-input-placeholder {
  color: inherit;
}

.c-search-form__input::-moz-placeholder {
  color: inherit;
}

.c-search-form__input:-ms-input-placeholder {
  color: inherit;
}

.c-search-form__input::-ms-input-placeholder {
  color: inherit;
}

.c-search-form__input::placeholder {
  color: inherit;
}

input[type=submit].c-search-form__btn {
  height: 2.5rem;
  line-height: inherit;
}

.c-contact {
  margin: clamp(2.5rem, 1.6201456311rem + 3.7540453074vw, 6.125rem) 0 clamp(2.5rem, 1.6959951456rem + 3.430420712vw, 5.8125rem);
}

.c-contact__inner {
  position: relative;
}
.c-contact__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  max-width: 27.75rem;
  aspect-ratio: 444/312;
  background: -webkit-gradient(linear, left top, right top, from(#FF9D00), to(#FFC505));
  background: linear-gradient(90deg, #FF9D00 0%, #FFC505 100%);
  opacity: 0.17;
  -webkit-filter: blur(15px);
          filter: blur(15px);
  border-radius: 50%;
  z-index: -1;
}

.c-contact__box {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(1.875rem, 1.5109223301rem + 1.5533980583vw, 3.375rem) 0 clamp(1.5rem, 1.2876213592rem + 0.9061488673vw, 2.375rem);
}

.c-contact__box-text {
  margin-top: clamp(1.5rem, 1.2572815534rem + 1.0355987055vw, 2.5rem);
  text-align: center;
}

.c-contact__box-link {
  margin-top: 1.5rem;
}

.c-recruit {
  padding: 0;
  margin: 0;
}
.c-recruit--bg {
  background-color: #FAF8F3;
  position: relative;
  z-index: 1;
}
.c-recruit--bg-l {
  background-color: #F9F3E3;
  position: relative;
  z-index: 1;
}

.c-recruit__wrap {
  padding: clamp(5rem, 2.8458737864rem + 9.1909385113vw, 13.875rem) 0;
  position: relative;
  overflow: hidden;
}

.c-recruit__box {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-recruit__box-text {
  margin-top: clamp(1.5rem, 1.0904126214rem + 1.7475728155vw, 3.1875rem);
  color: var(--color_white);
  text-align: center;
}

.c-recruit__box-link {
  margin-top: 1.5rem;
}

.c-recruit__slider {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 100%;
  border-radius: 3.3125rem 3.3125rem 0px 0px;
  background: -webkit-gradient(linear, left top, left bottom, from(#16B4DD), to(#5EA2E2));
  background: linear-gradient(180deg, #16B4DD 0%, #5EA2E2 100%);
  z-index: -1;
  overflow: hidden;
}

.c-recruit__slider-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(1rem, -6.2815533981rem + 31.067961165vw, 31rem);
  border-radius: 3.3125rem 3.3125rem 0px 0px;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .c-recruit__slider-list {
    gap: 1rem;
  }
}

.c-recruit__slider-item {
  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;
  gap: clamp(1rem, -0.0770631068rem + 4.5954692557vw, 5.4375rem);
}
@media screen and (max-width: 600px) {
  .c-recruit__slider-item {
    gap: 1rem;
  }
}
.c-recruit__slider-item:first-child {
  margin-left: -1.25rem;
}
.c-recruit__slider-item:last-child {
  margin-right: -1.25rem;
}

.c-recruit__slider-item-up,
.c-recruit__slider-item-down {
  height: 100%;
  max-height: 50rem;
  mix-blend-mode: soft-light;
}

.c-recruit__slider-item-list {
  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-recruit__slider-item-list.swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.c-recruit__slider-item-img {
  width: 100%;
  max-width: 20.125rem;
  aspect-ratio: 322/361;
}

.c-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.c-link::before {
  content: "";
  width: clamp(1.5rem, 1.2572815534rem + 1.0355987055vw, 2.5rem);
  aspect-ratio: 1/1;
  background-image: url(../img/icon/icon_btn-circle-color.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.c-link--inversion {
  color: var(--color_white);
}
.c-link--inversion::before {
  background-image: url(../img/icon/icon_btn-circle-wh.svg);
}

.c-other {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 0.5752427184rem + 1.8122977346vw, 2.75rem);
  margin-top: clamp(1.5rem, 1.1359223301rem + 1.5533980583vw, 3rem);
}
@media screen and (max-width: 600px) {
  .c-other {
    grid-template-columns: 1fr;
  }
}
.c-other.mt-none {
  margin-top: 0;
}
.c-other.mb-none {
  margin-bottom: 0;
}

.c-other__link {
  aspect-ratio: 528/144;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: clamp(1rem, 0.9241504854rem + 0.3236245955vw, 1.3125rem);
  padding: clamp(1rem, 0.7269417476rem + 1.1650485437vw, 2.125rem) clamp(1rem, 0.8938106796rem + 0.4530744337vw, 1.4375rem);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  font-size: clamp(1rem, 0.6666666667rem + 0.6944444444vw, 1.5rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.1em;
  color: var(--color_white);
}
.c-other__link::after {
  content: url(../img/icon/icon_btn-arrow.svg);
  margin-bottom: 0.25rem;
}
.c-other__link.action {
  background-image: url(../img/common/webp/other-action.webp);
}
.c-other__link.sdgs-action {
  background-image: url(../img/common/webp/other-sdgs-action.webp);
}
.c-other__link.business {
  background-image: url(../img/common/webp/other-business.webp);
}
.c-other__link.company {
  background-image: url(../img/common/webp/other-company.webp);
}

.c-back-number {
  margin: 0;
  padding: clamp(5rem, 3.4830097087rem + 6.4724919094vw, 11.25rem) 0 clamp(3.75rem, 2.5819174757rem + 4.9838187702vw, 8.5625rem);
  background-image: url(../img/common/webp/back-number_bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.c-back-number__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(3rem, 1.6079545455rem + 3.7121212121vw, 6.0625rem);
}
@media screen and (max-width: 600px) {
  .c-back-number__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;
  }
}

.c-back-number__item {
  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;
  width: 100%;
  max-width: 28.3125rem;
}

.c-back-number__item-title {
  height: clamp(1.25rem, 0.9090909091rem + 0.9090909091vw, 2rem);
}

.c-back-number__card {
  margin-top: clamp(1.5rem, 1.1814320388rem + 1.359223301vw, 2.8125rem);
  padding: clamp(1.5rem, 1.2572815534rem + 1.0355987055vw, 2.5rem) clamp(1.25rem, 0.6432038835rem + 2.5889967638vw, 3.75rem) clamp(1rem, 0.833131068rem + 0.71197411vw, 1.6875rem);
  background-color: var(--color_white);
  border-radius: 0.625rem;
  position: relative;
  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(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.c-back-number__card.president::after {
  content: "";
  width: 60%;
  aspect-ratio: 273/436;
  background-image: url(../img/common/webp/back-number01_bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: calc(-1 * clamp(8.125rem, 5.4545454545rem + 7.1212121212vw, 14rem));
}
@media screen and (max-width: 768px) {
  .c-back-number__card.president::after {
    content: none;
  }
}
.c-back-number__card.tra-girl::after {
  content: "";
  width: 64%;
  aspect-ratio: 288/417;
  background-image: url(../img/common/webp/back-number02_bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: calc(-1 * clamp(8.125rem, 6.0227272727rem + 5.6060606061vw, 12.75rem));
}
@media screen and (max-width: 768px) {
  .c-back-number__card.tra-girl::after {
    content: none;
  }
}

.c-back-number__card-check {
  position: absolute;
  top: calc(-1 * clamp(1.25rem, 0.9659090909rem + 0.7575757576vw, 1.875rem));
  left: calc(-1 * clamp(1.875rem, 1.3636363636rem + 1.3636363636vw, 3rem));
  width: 27%;
  max-width: 7.5625rem;
}
@media screen and (max-width: 600px) {
  .c-back-number__card-check {
    top: -3%;
    left: -3%;
  }
}

.c-back-number__card-text {
  text-align: center;
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  font-weight: 500;
  line-height: 1.5555555556;
  letter-spacing: 0.05em;
}

.c-back-number__card-img {
  aspect-ratio: 332/284;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.c-back-number__card-img img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}

.c-back-number__link {
  margin-top: 1rem;
  margin-left: auto;
}

.c-news {
  margin-top: clamp(1.5rem, 1.1055825243rem + 1.6828478964vw, 3.125rem);
  width: 100%;
  max-width: var(--width-contents_max_s);
  margin: 0 auto;
}

.c-news__category {
  margin: clamp(2.5rem, 1.6504854369rem + 3.6245954693vw, 6rem) 0 clamp(2.5rem, 2.2572815534rem + 1.0355987055vw, 3.5rem);
  width: 100%;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(0.625rem, 0.4733009709rem + 0.6472491909vw, 1.25rem) clamp(1.75rem, 1.6893203883rem + 0.2588996764vw, 2rem);
}

.c-news__category-link {
  border: 1px solid var(--color-key);
  background-color: var(--color_white);
  padding: 0.125rem 0.75rem;
  color: var(--color-key);
}
.c-news__category-link.is_current {
  background-color: var(--color-key);
  color: var(--color_white);
}

.c-news__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: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
}

.c-news__item {
  display: grid;
  grid-template-columns: 9.375rem auto;
  gap: 0.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #C2C2C2;
  padding-bottom: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
}
@media screen and (max-width: 768px) {
  .c-news__item {
    grid-template-columns: 1fr;
  }
}

.c-news__item-upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}

.c-news__item-category {
  background-color: var(--color-key);
  color: var(--color_white);
  padding: 0 0.625rem;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.c-news__item-right {
  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.25rem;
}
.c-news__item-right time {
  display: block;
  color: #BCBCBC;
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  line-height: 2.1428571429;
  letter-spacing: 0.1em;
  font-family: "Roboto";
}

.p-home__mv {
  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;
  background-color: #f09522;
}
@media screen and (max-width: 768px) {
  .p-home__mv {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2.5rem 0 0;
  }
}
.p-home__mv picture {
  display: block;
  width: 51%;
  max-width: 60.125rem;
}
.p-home__mv picture img {
  width: 100%;
}
@media screen and (max-width: 600px) {
  .p-home__mv picture {
    width: 100%;
  }
}

.p-home__mv-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  color: var(--color_white);
  font-family: "Noto Sans Jp";
  margin-left: clamp(1rem, -8.3333333333rem + 19.4444444444vw, 15rem);
}
@media screen and (max-width: 768px) {
  .p-home__mv-inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 0;
  }
}
.p-home__mv-inner h2 {
  font-size: clamp(2.5rem, 2.0145631068rem + 2.071197411vw, 4.5rem);
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .p-home__mv-inner h2 {
    margin-left: 1.5rem;
  }
}
.p-home__mv-inner p {
  font-size: clamp(0.875rem, 0.625rem + 0.5208333333vw, 1.25rem);
  line-height: 1.5;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .p-home__mv-inner p {
    text-align: center;
  }
}

.p-home__about {
  margin: clamp(3.75rem, 1.9296116505rem + 7.7669902913vw, 11.25rem) 0;
}

.p-home__about-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(1.5rem, 1.0752427184rem + 1.8122977346vw, 3.25rem);
  position: relative;
}
.p-home__about-wrap::before {
  content: "";
  background-image: url(../img/home/about_catch.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 80%;
  max-width: 34.75rem;
  aspect-ratio: 556/121;
  position: absolute;
  top: -4.375rem;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-home__about-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
}

.p-home__about-left {
  width: 100%;
  max-width: 31.875rem;
  min-width: 22.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-home__about-left {
    max-width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .p-home__about-left {
    min-width: unset;
  }
}
.p-home__about-left::before {
  content: "";
  background-image: url(../img/home/webp/about01-char.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  max-width: 17.75rem;
  aspect-ratio: 284/223;
  position: absolute;
  bottom: -2.625rem;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-home__about-left::before {
    width: 40%;
    bottom: -1.25rem;
  }
}

.p-home__about-catch {
  font-size: clamp(1.5rem, 1.2572815534rem + 1.0355987055vw, 2.5rem);
  font-weight: 600;
  line-height: 1.925;
  letter-spacing: 0.05em;
  color: var(--color-key);
}

.p-home__about-right {
  width: 100%;
  max-width: 30rem;
  margin-top: clamp(1.5rem, 0.635315534rem + 3.6893203883vw, 5.0625rem);
}
@media screen and (max-width: 768px) {
  .p-home__about-right {
    max-width: 100%;
    margin-top: 0;
  }
}

.p-home__about-link {
  margin-top: clamp(1.5rem, 1.0752427184rem + 1.8122977346vw, 3.25rem);
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-home__business {
  margin: clamp(9.375rem, 7.8580097087rem + 6.4724919094vw, 15.625rem) 0 0;
  background-color: var(--color-key);
  background-image: url(../img/home/webp/business_bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  padding: clamp(2.5rem, 1.9387135922rem + 2.3948220065vw, 4.8125rem) 0 clamp(3.75rem, 2.7184466019rem + 4.4012944984vw, 8rem);
  position: relative;
}
.p-home__business::before {
  content: "";
  background-image: url(../img/home/webp/business_bg_deco.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
  position: absolute;
  top: -8.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 9.125rem;
}
.p-home__business::after {
  content: "";
  background-image: url(../img/home/business_catch.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  max-width: 42.375rem;
  aspect-ratio: 678/106;
  position: absolute;
  bottom: 1rem;
  right: calc(1 * clamp(2rem, -20rem + 27.5vw, 13rem));
}
@media screen and (max-width: 600px) {
  .p-home__business::after {
    right: 0;
  }
}

.p-home__business-head {
  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;
}

.p-home__business-box {
  margin-top: clamp(2rem, 1.7572815534rem + 1.0355987055vw, 3rem);
}

.p-home__business-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 1.4393203883rem + 0.2588996764vw, 1.75rem);
}
@media screen and (max-width: 768px) {
  .p-home__business-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .p-home__business-list {
    grid-template-columns: 1fr;
  }
}

.p-home__business-item {
  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.8125rem;
}

.p-home__business-item-title {
  border-radius: 0.25rem;
  background: var(--color_white);
  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-key);
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  font-weight: 700;
  line-height: 1.375;
  letter-spacing: 0.05em;
  padding: 0.25rem 0;
}
@media screen and (max-width: 600px) {
  .p-home__business-item-title {
    padding: 0.5rem 0;
  }
}

.p-home__business-item-img img {
  border-radius: 0.3125rem;
  width: 100%;
}

.p-home__business-item-text {
  color: var(--color_white);
  font-size: clamp(0.8125rem, 0.7821601942rem + 0.1294498382vw, 0.9375rem);
  font-weight: 500;
  line-height: 1.8666666667;
  letter-spacing: 0.1em;
}

.p-home__blog {
  margin: clamp(3.75rem, 1.9296116505rem + 7.7669902913vw, 11.25rem) 0;
}

.p-home__blog-head {
  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;
}

.p-home__blog-box {
  margin-top: clamp(2rem, 1.4235436893rem + 2.4595469256vw, 4.375rem);
  position: relative;
}
.p-home__blog-box::before {
  content: "";
  background-image: url(../img/home/blog_catch.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 60%;
  max-width: 26.1875rem;
  aspect-ratio: 419/126;
  position: absolute;
  top: calc(-1 * clamp(5.625rem, 4.411407767rem + 5.1779935275vw, 10.625rem));
  left: 0;
  z-index: -1;
}

.p-home__news {
  margin: clamp(3.75rem, 1.9296116505rem + 7.7669902913vw, 11.25rem) 0;
}

.p-home__news-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  position: relative;
}
.p-home__news-wrap::before {
  content: "";
  background-image: url(../img/home/news_catch.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 60%;
  max-width: 22.875rem;
  aspect-ratio: 366/96;
  position: absolute;
  bottom: calc(-1 * clamp(2rem, 0.8333333333rem + 2.4305555556vw, 3.75rem));
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-home__news-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: clamp(2rem, 1.4235436893rem + 2.4595469256vw, 4.375rem);
  }
}

.p-home__news-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.625rem;
}
@media screen and (max-width: 768px) {
  .p-home__news-head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-home__news-box {
  width: 76%;
  max-width: 52.1875rem;
}
@media screen and (max-width: 768px) {
  .p-home__news-box {
    width: 100%;
    max-width: 100%;
  }
}

.p-home__company {
  margin: clamp(3.75rem, 1.9296116505rem + 7.7669902913vw, 11.25rem) 0;
}

.p-home__company-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  position: relative;
}
.p-home__company-wrap::before {
  content: "";
  background-image: url(../img/home/company_catch.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  max-width: 42.9375rem;
  aspect-ratio: 687/105;
  position: absolute;
  top: 0.5rem;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 600px) {
  .p-home__company-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
}

.p-home__company-left {
  width: 100%;
  max-width: 31.875rem;
  min-width: 22.5rem;
}
@media screen and (max-width: 600px) {
  .p-home__company-left {
    min-width: unset;
  }
}

.p-home__company-catch {
  margin-top: clamp(1.5rem, 1.4089805825rem + 0.3883495146vw, 1.875rem);
  font-size: clamp(1.5rem, 1.2572815534rem + 1.0355987055vw, 2.5rem);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.05em;
}

.p-home__company-text {
  margin-top: clamp(1rem, 0.7117718447rem + 1.2297734628vw, 2.1875rem);
}

.p-home__company-link {
  margin-top: clamp(1rem, -0.0770631068rem + 4.5954692557vw, 5.4375rem);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 600px) {
  .p-home__company-link {
    margin-left: auto;
  }
}

.p-home__company-right {
  position: relative;
  margin-right: calc(50% - 50vw);
  position: relative;
}
.p-home__company-right::before {
  content: "";
  background-image: url(../img/home/webp/company01-char.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  max-width: 7.5rem;
  aspect-ratio: 120/126;
  position: absolute;
  bottom: -2.5rem;
  left: -2.25rem;
}
@media screen and (max-width: 600px) {
  .p-home__company-right::before {
    width: 20%;
    left: 0;
  }
}
.p-home__company-right img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem 0 0 0.625rem;
}

.p-about__message-wrap {
  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(2.5rem, 1.286407767rem + 5.1779935275vw, 7.5rem);
  margin-top: clamp(1.5rem, 0.6504854369rem + 3.6245954693vw, 5rem);
}

.p-about__message-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-about__message-item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.p-about__message-item:nth-child(even) img {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .p-about__message-item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .p-about__message-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-about__message-img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-about__message-img img {
    margin: 0 auto;
  }
}

.p-about__message-box {
  width: 100%;
  max-width: 32.6875rem;
}

.p-about__message-box-title {
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  padding-left: clamp(0.5rem, 0.317961165rem + 0.7766990291vw, 1.25rem);
  margin-bottom: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  position: relative;
}
.p-about__message-box-title::before {
  content: "";
  width: clamp(0.1875rem, 0.1571601942rem + 0.1294498382vw, 0.3125rem);
  aspect-ratio: 5/26;
  background-color: var(--color-txt);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-about__message-box-title--blue::before {
  background-color: var(--color-key_secondary);
}
.p-about__message-box-title--orange::before {
  background-color: var(--color-key);
}

.p-about__message-box-text {
  font-size: clamp(0.875rem, 0.8598300971rem + 0.0647249191vw, 0.9375rem);
  font-weight: 500;
  line-height: 2.2666666667;
  letter-spacing: 0.1em;
}

.p-about__message-box-author {
  margin-top: clamp(1rem, 0.5752427184rem + 1.8122977346vw, 2.75rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: right;
}
.p-about__message-box-author span {
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  line-height: 2.1428571429;
}

.p-about__profile-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 480px) {
  .p-about__profile-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-about__profile-img {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .p-about__profile-img img {
    margin: 0 auto;
  }
}

.p-about__profile-box {
  width: 100%;
  max-width: 32.6875rem;
  min-width: 20.625rem;
}

.p-about__profile-box-title {
  color: var(--color-key);
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  position: relative;
}
.p-about__profile-box-title::before {
  content: "";
  width: 5.625rem;
  aspect-ratio: 90/100;
  background-image: url(../img/about/webp/profile02.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(-1 * clamp(6.25rem, 8.125rem - 3.90625vw, 3.4375rem));
  right: 0;
}
@media screen and (max-width: 480px) {
  .p-about__profile-box-title::before {
    top: -4.375rem;
  }
}

.p-about__profile-box-profile {
  margin-top: clamp(2rem, 1.3476941748rem + 2.783171521vw, 4.6875rem);
  width: 100%;
  background-color: var(--color_white);
  padding: clamp(1.5rem, 1.2572815534rem + 1.0355987055vw, 2.5rem) clamp(1rem, 0.9089805825rem + 0.3883495146vw, 1.375rem) clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem) clamp(1rem, 0.833131068rem + 0.71197411vw, 1.6875rem);
  position: relative;
}

.p-about__profile-box-profile-heading {
  padding: 0 0.625rem;
  background-color: var(--color-key);
  color: var(--color_white);
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  position: absolute;
  top: calc(-1 * clamp(1rem, 0.6666666667rem + 0.6944444444vw, 1.5rem));
  left: 0;
}

.p-about__profile-box-profile-text {
  font-size: clamp(0.875rem, 0.8598300971rem + 0.0647249191vw, 0.9375rem);
  font-weight: 500;
  line-height: 2.2666666667;
  letter-spacing: 0.1em;
}

.p-about__activities-wrap {
  margin-top: clamp(1.5rem, 0.6504854369rem + 3.6245954693vw, 5rem);
}

.p-about__activities-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem) clamp(1rem, 0.6966019417rem + 1.2944983819vw, 2.25rem);
}
@media screen and (max-width: 1024px) {
  .p-about__activities-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .p-about__activities-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-about__activities-list--col-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 480px) {
  .p-about__activities-list--col-2 {
    grid-template-columns: 1fr;
  }
}
.p-about__activities-list--col-2 .p-about__activities-item {
  padding: 0;
  border-radius: 0;
  background: var(--color_white);
  -webkit-box-shadow: unset;
          box-shadow: unset;
  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;
}
.p-about__activities-list--col-2 .p-about__activities-img {
  height: 100%;
  aspect-ratio: unset;
}

.p-about__activities-item {
  padding: 0.25rem;
  border-radius: 4px;
  background: var(--color_white);
  -webkit-box-shadow: 0px 4px 9.3px 0px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 4px 9.3px 0px rgba(0, 0, 0, 0.06);
  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;
}

.p-about__activities-img {
  height: 100%;
  aspect-ratio: 248/147;
}
.p-about__activities-img img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  margin: 0 auto;
}

.p-about-action__health {
  padding-bottom: clamp(3.75rem, 3.567961165rem + 0.7766990291vw, 4.5rem);
  background: -webkit-gradient(linear, left bottom, left top, from(var(--color-key_l)), color-stop(65%, var(--color-key_l)), color-stop(65%, var(--color_white)), to(var(--color_white)));
  background: linear-gradient(0deg, var(--color-key_l) 0%, var(--color-key_l) 65%, var(--color_white) 65%, var(--color_white) 100%);
}
@media screen and (max-width: 480px) {
  .p-about-action__health {
    background: -webkit-gradient(linear, left bottom, left top, from(var(--color-key_l)), color-stop(85%, var(--color-key_l)), color-stop(85%, var(--color_white)), to(var(--color_white)));
    background: linear-gradient(0deg, var(--color-key_l) 0%, var(--color-key_l) 85%, var(--color_white) 85%, var(--color_white) 100%);
  }
}

.p-about-action__health-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1.5rem, 1.0752427184rem + 1.8122977346vw, 3.25rem);
  margin-top: clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem);
}
@media screen and (max-width: 480px) {
  .p-about-action__health-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-about-action__health-box-img {
  max-width: 24.25rem;
  width: 35%;
}
@media screen and (max-width: 480px) {
  .p-about-action__health-box-img {
    width: 100%;
  }
}

.p-about-action__health-box-text {
  max-width: 40rem;
  width: 58%;
}
@media screen and (max-width: 480px) {
  .p-about-action__health-box-text {
    width: 100%;
  }
}

.p-about-action__health-management-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem) clamp(1rem, 0.5600728155rem + 1.8770226537vw, 2.8125rem);
}
@media screen and (max-width: 991px) {
  .p-about-action__health-management-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .p-about-action__health-management-list {
    grid-template-columns: 1fr;
  }
}

.p-about-action__health-management-item {
  border-radius: 0.5rem;
  border: 4px solid var(--color-key);
  padding: clamp(1rem, 0.8634708738rem + 0.5825242718vw, 1.5625rem) clamp(0.625rem, 0.5339805825rem + 0.3883495146vw, 1rem) clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}
@media screen and (max-width: 480px) {
  .p-about-action__health-management-item {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.p-about-action__health-management-item-img {
  margin: 0 auto;
}

.p-about-action__health-management-item-title {
  margin-top: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  text-align: center;
  color: var(--color-key);
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  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.5339805825rem + 0.3883495146vw, 1rem);
}
.p-about-action__health-management-item-title::after {
  content: "";
  width: 1.875rem;
  height: 0.125rem;
  background-color: var(--color-key);
}

.p-about-action__health-management-item-text {
  margin-top: 1rem;
  font-size: clamp(0.8125rem, 0.7821601942rem + 0.1294498382vw, 0.9375rem);
  letter-spacing: 0.1em;
  text-align: center;
}

.p-about-sdgs__top-wrap {
  position: relative;
  padding-top: clamp(15.625rem, 16.4745145631rem - 3.6245954693vw, 12.125rem);
  margin-top: clamp(1.5rem, 0.6504854369rem + 3.6245954693vw, 5rem);
}
@media screen and (max-width: 480px) {
  .p-about-sdgs__top-wrap {
    padding-top: 0;
  }
}

.p-about-sdgs__top-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 480px) {
  .p-about-sdgs__top-img {
    position: static;
  }
}

.p-about-sdgs__top-box {
  background-color: var(--color-key);
  color: var(--color_white);
  padding: clamp(1rem, 0.5752427184rem + 1.8122977346vw, 2.75rem);
  border-radius: 0.25rem;
  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.8786407767rem + 0.5177993528vw, 1.5rem);
  width: 100%;
  max-width: 35.6875rem;
  margin-left: auto;
}

.p-about-sdgs__top-box-title {
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  font-weight: 700;
  line-height: 1.375;
  letter-spacing: 0.05em;
}

.p-about-sdgs__activity-wrap {
  margin-top: clamp(1.5rem, 0.6504854369rem + 3.6245954693vw, 5rem);
}

.p-about-sdgs__activity-list {
  margin-top: clamp(1.5rem, 0.8932038835rem + 2.5889967638vw, 4rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem) clamp(1rem, 0.2870145631rem + 3.0420711974vw, 3.9375rem);
}
@media screen and (max-width: 991px) {
  .p-about-sdgs__activity-list {
    grid-template-columns: 1fr;
  }
}

.p-about-sdgs__activity-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0.25rem;
  background-color: var(--color_white);
  overflow: hidden;
}
.p-about-sdgs__activity-item:first-child {
  grid-column: 1/3;
}
@media screen and (max-width: 991px) {
  .p-about-sdgs__activity-item:first-child {
    grid-column: 1/2;
  }
}
@media screen and (max-width: 600px) {
  .p-about-sdgs__activity-item:first-child {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-about-sdgs__activity-item:first-child .p-about-sdgs__activity-item-img {
  width: clamp(12.5rem, 11.7566747573rem + 3.1715210356vw, 15.5625rem);
  background-color: #e83418;
}
@media screen and (max-width: 600px) {
  .p-about-sdgs__activity-item:first-child .p-about-sdgs__activity-item-img {
    width: 100%;
  }
  .p-about-sdgs__activity-item:first-child .p-about-sdgs__activity-item-img img {
    height: 9.375rem;
  }
}
.p-about-sdgs__activity-item:first-child .p-about-sdgs__activity-item-box {
  gap: clamp(0.75rem, 0.6589805825rem + 0.3883495146vw, 1.125rem);
  padding: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem) clamp(1rem, 0.5752427184rem + 1.8122977346vw, 2.75rem);
  width: calc(100% - clamp(12.5rem, 11.7566747573rem + 3.1715210356vw, 15.5625rem));
}
@media screen and (max-width: 600px) {
  .p-about-sdgs__activity-item:first-child .p-about-sdgs__activity-item-box {
    width: 100%;
  }
}
.p-about-sdgs__activity-item:first-child .p-about-sdgs__activity-item-box-title {
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  line-height: 1.5;
}
.p-about-sdgs__activity-item:first-child .p-about-sdgs__activity-item-box-text {
  font-size: clamp(0.8125rem, 0.7821601942rem + 0.1294498382vw, 0.9375rem);
  line-height: 2;
}
.p-about-sdgs__activity-item:nth-child(2) .p-about-sdgs__activity-item-img {
  background-color: #1b973a;
}
.p-about-sdgs__activity-item:nth-child(3) .p-about-sdgs__activity-item-img {
  background-color: #970a31;
}
.p-about-sdgs__activity-item:nth-child(4) .p-about-sdgs__activity-item-img {
  background-color: #ec6a06;
}
.p-about-sdgs__activity-item:nth-child(5) .p-about-sdgs__activity-item-img {
  background-color: #023067;
}

.p-about-sdgs__activity-item-img {
  width: clamp(6.625rem, 5.5175970874rem + 4.7249190939vw, 11.1875rem);
  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;
}

.p-about-sdgs__activity-item-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(0rem, -0.182038835rem + 0.7766990291vw, 0.75rem);
  padding: clamp(0.5rem, 0.1359223301rem + 1.5533980583vw, 2rem);
  width: calc(100% - clamp(6.625rem, 5.5175970874rem + 4.7249190939vw, 11.1875rem));
}

.p-about-sdgs__activity-item-box-title {
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  font-weight: 600;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
}

.p-about-sdgs__activity-item-box-text {
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  line-height: 1.7142857143;
  letter-spacing: 0.1em;
}

.p-company__about-wrap {
  margin-top: clamp(1.5rem, 0.6504854369rem + 3.6245954693vw, 5rem);
}

.p-company__about-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(1rem, -0.2287621359rem + 5.2427184466vw, 6.0625rem);
  max-width: var(--width-contents_max_l);
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .p-company__about-item {
    -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;
    margin: 0;
  }
}

.p-company__about-img {
  width: 100%;
}
.p-company__about-img img {
  margin: 0 auto;
}

.p-company__about-table {
  width: 100%;
  max-width: 30.8125rem;
}
@media screen and (max-width: 768px) {
  .p-company__about-table {
    max-width: 100%;
  }
}

.p-company__access-wrap {
  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(2rem, 1.6359223301rem + 1.5533980583vw, 3.5rem);
  margin-top: clamp(1.5rem, 1.1359223301rem + 1.5533980583vw, 3rem);
}

.p-company__access-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1rem, 0.3628640777rem + 2.7184466019vw, 3.625rem);
}
@media screen and (max-width: 600px) {
  .p-company__access-item {
    -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;
  }
}

.p-company__access-box {
  width: 100%;
  max-width: 32.6875rem;
  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.8786407767rem + 0.5177993528vw, 1.5rem);
}
@media screen and (max-width: 600px) {
  .p-company__access-box {
    width: unset;
    max-width: unset;
  }
}

.p-company__access-box-title {
  font-size: clamp(1.125rem, 1.0946601942rem + 0.1294498382vw, 1.25rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.p-company__access-box-link {
  padding: clamp(0.5rem, 0.4393203883rem + 0.2588996764vw, 0.75rem) clamp(1rem, 0.817961165rem + 0.7766990291vw, 1.75rem);
  background-color: var(--color_white);
  color: var(--color-key_secondary);
  border: 1px solid var(--color-key_secondary);
  font-family: "Roboto";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 15.8125rem;
}
.p-company__access-box-link::before {
  content: "";
  width: 1.5rem;
  aspect-ratio: 1/1;
  background-image: url(../img/icon/icon_ping.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.p-company__partner-wrap {
  margin-top: clamp(1.5rem, 0.6504854369rem + 3.6245954693vw, 5rem);
}

.p-company__partner-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem) clamp(1rem, 0.6966019417rem + 1.2944983819vw, 2.25rem);
}
@media screen and (max-width: 1024px) {
  .p-company__partner-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .p-company__partner-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-company__partner-item {
  padding: 0.25rem;
  border-radius: 4px;
  background: var(--color_white);
  -webkit-box-shadow: 0px 4px 9.3px 0px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 4px 9.3px 0px rgba(0, 0, 0, 0.06);
  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;
}

.p-company__partner-img {
  height: 100%;
  aspect-ratio: 248/147;
}
.p-company__partner-img img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  margin: 0 auto;
}

.p-company__voice {
  margin-bottom: 0;
  padding-bottom: clamp(5rem, 3.786407767rem + 5.1779935275vw, 10rem);
}

.p-company__voice-wrap {
  margin-top: clamp(1.5rem, 1.0145631068rem + 2.071197411vw, 3.5rem);
}

.p-company__voice-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 0.833131068rem + 0.71197411vw, 1.6875rem);
}
@media screen and (max-width: 768px) {
  .p-company__voice-list {
    grid-template-columns: 1fr;
  }
}

.p-company__voice-item {
  position: relative;
  padding: clamp(1.5rem, 1.2269417476rem + 1.1650485437vw, 2.625rem) clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem) clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
  background-color: var(--color_white);
  border-radius: 0.625rem;
  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.8786407767rem + 0.5177993528vw, 1.5rem);
}

.p-company__voice-item-label {
  background-color: var(--color-key);
  color: var(--color_white);
  border-radius: 0px 0.625rem;
  padding: 0.1875rem clamp(2rem, 1.8483009709rem + 0.6472491909vw, 2.625rem) 0.0625rem;
  font-family: "Roboto";
  font-size: clamp(0.8125rem, 0.7821601942rem + 0.1294498382vw, 0.9375rem);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.05em;
  position: absolute;
  top: 0;
  right: 0;
}

.p-company__voice-item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.5rem, 0.2117718447rem + 1.2297734628vw, 1.6875rem);
}
@media screen and (max-width: 1080px) {
  .p-company__voice-item-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .p-company__voice-item-top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1rem;
  }
}

.p-company__voice-box-company {
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-weight: 600;
  line-height: 1.6875;
  letter-spacing: 0.05em;
}

.p-company__voice-box-position {
  font-size: clamp(0.6875rem, 0.6571601942rem + 0.1294498382vw, 0.8125rem);
  font-weight: 500;
  line-height: 2.0769230769;
  letter-spacing: 0.05em;
  color: #989898;
}

.p-company__voice-box-name {
  margin-top: 0.5rem;
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.05em;
}

.p-company__voice-item-text {
  border-top: 1px solid #FFEED2;
  padding-top: 1rem;
  font-size: clamp(0.875rem, 0.8598300971rem + 0.0647249191vw, 0.9375rem);
  font-weight: 500;
  line-height: 2.2666666667;
  letter-spacing: 0.05em;
}

.p-business__about {
  margin-bottom: 0;
}

.p-business__about-inner {
  margin: clamp(10rem, 9.3628640777rem + 2.7184466019vw, 12.625rem) calc(50% - 50vw) 0;
  background-color: var(--color-key_l);
  position: relative;
}
.p-business__about-inner::before {
  content: "";
  background-image: url(../img/business/webp/bg_deco.webp);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: -8.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 9.125rem;
}
.p-business__about-inner .p-business__about-wrap {
  padding: clamp(3.75rem, 2.8398058252rem + 3.8834951456vw, 7.5rem) 0;
  width: 90%;
  max-width: var(--width-contents_max_m);
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .p-business__about-inner .p-business__about-wrap {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.p-business__about-wrap {
  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(2.5rem, 1.286407767rem + 5.1779935275vw, 7.5rem);
  margin-top: clamp(1.5rem, 0.6504854369rem + 3.6245954693vw, 5rem);
}

.p-business__about-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
}
.p-business__about-item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.p-business__about-item:nth-child(even) img {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .p-business__about-item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 991px) {
  .p-business__about-item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .p-business__about-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-business__about-img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-business__about-img img {
    margin: 0 auto;
  }
}

.p-business__about-box {
  width: 100%;
  max-width: 31.5rem;
}

.p-business__about-box-title {
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  color: var(--color-key);
}

.p-business__line-up {
  margin: 0;
  padding: clamp(3.75rem, 2.6274271845rem + 4.7896440129vw, 8.375rem) 0 clamp(3.75rem, 2.2330097087rem + 6.4724919094vw, 10rem);
  background-image: url(../img/business/webp/line-up_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
  background-color: var(--color-key_l);
  position: relative;
}
.p-business__line-up::before, .p-business__line-up::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-business__line-up::before {
  top: calc(-1 * clamp(1.5rem, 1.1055825243rem + 1.6828478964vw, 3.125rem));
  left: 24%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: clamp(5rem, 4.3476941748rem + 2.783171521vw, 7.6875rem);
  aspect-ratio: 123/134;
  background-image: url(../img/business/webp/line-up_l.webp);
}
@media screen and (max-width: 600px) {
  .p-business__line-up::before {
    left: 0;
    -webkit-transform: unset;
            transform: unset;
  }
}
.p-business__line-up::after {
  top: clamp(2.5rem, 2.0145631068rem + 2.071197411vw, 4.5rem);
  right: 24%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  width: clamp(5rem, 4.3325242718rem + 2.8478964401vw, 7.75rem);
  aspect-ratio: 124/129;
  background-image: url(../img/business/webp/line-up_r.webp);
}
@media screen and (max-width: 600px) {
  .p-business__line-up::after {
    right: 0;
    -webkit-transform: unset;
            transform: unset;
  }
}

.p-business__line-up-text {
  text-align: center;
}

.p-business__line-up-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.5rem, -0.0309466019rem + 2.2653721683vw, 2.6875rem);
  margin-top: clamp(1.5rem, 1.0145631068rem + 2.071197411vw, 3.5rem);
}

.p-business__line-up-item img {
  border-radius: 0.25rem;
}
.p-business__line-up-item:nth-child(even) {
  margin-top: clamp(1rem, 0.6966019417rem + 1.2944983819vw, 2.25rem);
}

.p-business__line-up-link {
  margin: clamp(1.5rem, 0.7718446602rem + 3.1067961165vw, 4.5rem) auto 0;
}

.p-business-line-up__wrap {
  margin: clamp(2.5rem, 0.6796116505rem + 7.7669902913vw, 10rem) calc(50% - 50vw) 0;
  background: -webkit-gradient(linear, left bottom, left top, from(var(--color_white)), color-stop(10%, var(--color_white)), color-stop(10%, var(--color-key_l)), color-stop(90%, var(--color-key_l)), color-stop(90%, var(--color_white)), to(var(--color_white)));
  background: linear-gradient(0deg, var(--color_white) 0%, var(--color_white) 10%, var(--color-key_l) 10%, var(--color-key_l) 90%, var(--color_white) 90%, var(--color_white) 100%);
}

.p-business-line-up__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.5rem, -0.1067961165rem + 2.5889967638vw, 3rem) clamp(0.5rem, 0.1814320388rem + 1.359223301vw, 1.8125rem);
  width: 90%;
  max-width: var(--width-contents_max_m);
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .p-business-line-up__list {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-business-line-up__item {
  background-color: var(--color_white);
  border-radius: 0.5rem;
  padding: clamp(0.5rem, 0.4089805825rem + 0.3883495146vw, 0.875rem) clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem) clamp(0.5rem, 0.1966019417rem + 1.2944983819vw, 1.75rem);
  -webkit-box-shadow: -2px 5px 13px 0px rgba(0, 0, 0, 0.07);
          box-shadow: -2px 5px 13px 0px rgba(0, 0, 0, 0.07);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-business-line-up__item-img img {
  border-radius: 0.3125rem;
}

.p-business-line-up__item-title {
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  font-weight: 500;
  line-height: 1.4444444444;
  letter-spacing: 0.05em;
  margin-top: clamp(0.5rem, 0.3483009709rem + 0.6472491909vw, 1.125rem);
  word-break: keep-all;
}

.p-business-line-up__item-note {
  color: var(--color-key);
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  font-weight: 500;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  margin-top: clamp(0.25rem, 0.1893203883rem + 0.2588996764vw, 0.5rem);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.p-business-line-up__item-btn {
  margin: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem) auto 0;
  cursor: pointer;
}
.p-business-line-up__item-btn:hover {
  opacity: 0.7;
}

.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 */