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

　変数定義

=================================================================================*/
/*—————————————————————————————————————————————————————
　横幅／高さ／余白設定
—————————————————————————————————————————————————————*/
:root {
  /* 横幅【PC幅のみ】 */
  --width-contents_max_s: 1000px;
  --width-contents_max_m: 1100px;
  --width-contents_max_l: 1180px;
  --width-modal_max: 900px;
  /* 2カラム */
  --width-main-contents_max: 735px;
  --width-side-contents_max: 300px;
  /* 高さ【ヘッダのみ】 */
  --height-header-upper: 80px;
  --height-header-lower: 64px;
  --height-header: 98px;
  --height-header-l: 80px;
}

/*—————————————————————————————————————————————————————
　カラー設定
—————————————————————————————————————————————————————*/
:root {
  --color-key:	#42D2A9;
  --color-key_l:	#42D2A9;
  --color-body_bg:	#FFF;
  --color-head_bg:	#FFF;
  --color-head_bg_l:	rgba(206, 232, 255, 0.7019607843);
  /* テキスト */
  --color-txt:	#000;
  --color-txt_heading:	#333;
  --color-txt_l:	#FFFFFF;
  /* リンク */
  --color-link:	#42D2A9;
  /* 画像のMIX */
  --color-img_mix:	#91C2EA;
  /* 罫線 */
  --color-border:	#42D2A9;
  --color-border_l:	#7CAED9;
  /* ボタンやアラートなどエレメントカラー */
  --color-default:	#FFFFFF;
  --color-primary:	#42D2A9;
  --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: "Roboto", "Noto Sans Jp", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.875;
  letter-spacing: 0.05em;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

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

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: 4px 6px;
  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: #2281b8;
  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: #fff;
  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:hover,
form button:focus {
  outline: none;
}

form button:hover {
  opacity: 0.6;
}

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

input,
textarea {
  padding: 0.5625rem 1rem;
  width: 100%;
  border: 1px solid var(--color-table_border_tr);
  border-radius: 0.3125rem;
  background-image: none;
  background-color: #FFF;
  font-size: 1em;
  font-family: inherit;
  -webkit-appearance: none;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #848484;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6875;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #848484;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6875;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #848484;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6875;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #848484;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6875;
}
input::placeholder,
textarea::placeholder {
  color: #848484;
  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: #e2e2e2;
  -webkit-box-shadow: none;
          box-shadow: none;
}

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

input::-webkit-input-placeholder {
  color: #848484;
}

input::-moz-placeholder {
  color: #848484;
}

input::-ms-input-placeholder {
  color: #848484;
}

input:-ms-input-placeholder {
  color: #848484;
}

input::placeholder {
  color: #848484;
}

input:focus {
  outline: none;
  border-color: #e2e2e2;
  -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: #2281b8;
  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: #fff;
  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 16px 0 0;
  padding: 0 0 0 30px;
  cursor: pointer;
}

input[type=radio] + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-table_border_tr);
  border-radius: 50%;
  background: #fff;
  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: 2px;
  display: block;
  width: 16px;
  height: 16px;
  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 16px 0 0;
  padding: 0 0 0 30px;
  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: 20px;
  height: 20px;
  border: 1px solid var(--color-table_border_tr);
  border-radius: 3px;
  background: #fff;
  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);
}

input[type=checkbox]:checked + span::after {
  position: absolute;
  top: 50%;
  left: 2px;
  display: block;
  margin-top: -0.2em;
  width: 15px;
  height: 10px;
  border-bottom: 2px solid var(--color_white);
  border-left: 2px 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-key);
  border-radius: 5px;
  background-image: url(../img/common/select-arrow.svg);
  background-position: right 11px top 55%;
  background-size: 13px;
  background-repeat: no-repeat;
  background-color: #FFF;
  color: var(--color-txt);
  font-size: 1em;
  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-txt);
  -webkit-box-shadow: none;
          box-shadow: none;
}

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

.grecaptcha-badge {
  display: none;
}

.wow {
  visibility: visible !important; /* hiddenを上書き */
  opacity: 0;
}

@font-face {
  font-family: "Noto Sans Jp";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSansJP-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans Jp";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/NotoSansJP-Medium.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans Jp";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/NotoSansJP-SemiBold.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans Jp";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/NotoSansJP-Bold.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Roboto-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Roboto-Medium.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Roboto-SemiBold.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Roboto-Bold.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Odor Mean Chey";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/OdorMeanChey-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Quattrocento Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/QuattrocentoSans-Bold.ttf") format("truetype");
  font-display: swap;
}
.p-editorContents {
  margin-top: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}
.p-editorContents a {
  color: var(--color-key_l);
}
.p-editorContents .wp-block-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.75rem, 0.567961165rem + 0.7766990291vw, 1.5rem);
}
.p-editorContents .wp-block-heading::before {
  content: "";
  display: block;
  width: 0.375rem;
  height: 2.4375rem;
  background-color: var(--color-key);
  border-radius: 1.1875rem;
}
.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: 16px;
}
.p-editorContents * + h2.wp-block-heading {
  margin-top: 96px;
}
.p-editorContents * + h3.wp-block-heading {
  margin-top: 56px;
}
.p-editorContents * + p {
  margin-top: 16px;
}
.p-editorContents * + .wp-block-image {
  margin-top: 32px;
}
.p-editorContents ul,
.p-editorContents ol {
  padding-left: 32px;
}
.p-editorContents * + ul,
.p-editorContents * + ol {
  margin-top: 32px;
}
.p-editorContents ul {
  list-style: disc;
}
.p-editorContents ol {
  list-style: trad-chinese-informal;
}
.p-editorContents li {
  position: relative;
}
.p-editorContents * + li {
  margin-top: 16px;
}
.p-editorContents * + .wp-block-table {
  margin-top: 16px;
}
.p-editorContents figcaption {
  font-size: 0.75rem;
  color: #787878;
  margin-top: 16px;
}
.p-editorContents .wp-block-table table th {
  border: unset;
  padding: 24px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  width: 21%;
}
.p-editorContents .wp-block-table table td {
  border: unset;
  padding: 24px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  width: 79%;
}

.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-section {
  position: relative;
  margin: clamp(3rem, 2.2111650485rem + 3.3656957929vw, 6.25rem) 0;
  padding: clamp(2.5rem, 1.8932038835rem + 2.5889967638vw, 5rem) 0;
}
.l-section--bg {
  background-color: var(--color-body_bg);
}
.l-section--banner {
  padding: clamp(4rem, 3.4538834951rem + 2.3300970874vw, 6.25rem) 0;
}
.l-section--overlap {
  padding: clamp(2.5rem, 1.7718446602rem + 3.1067961165vw, 5.5rem) 0;
}
.l-section--overlap::before, .l-section--overlap::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
}
.l-section--overlap::before {
  top: 0;
  left: 0;
  z-index: -1;
  background-color: var(--color-body_bg);
  border-radius: 0 30px 30px 0;
  -webkit-transition: width 1s;
  transition: width 1s;
}
.l-section--overlap::after {
  height: calc(100% + 2 * clamp(2rem, 0.9684466019rem + 4.4012944984vw, 6.25rem));
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  z-index: -2;
  background-image: url(../img/common/comp/overlap_bg.png);
  background-size: contain;
  background-position: center;
  background-color: var(--color-key_l);
  border-radius: 30px 0 0 30px;
  -webkit-transition: width 1s ease-in-out 0.8s;
  transition: width 1s ease-in-out 0.8s;
}
.l-section--overlap.is_scroll::before, .l-section--overlap.is_scroll::after {
  width: 86%;
}
@media screen and (max-width: 1640px) {
  .l-section--overlap.is_scroll::before, .l-section--overlap.is_scroll::after {
    width: clamp(62.5rem, 39.9311926606rem + 47.0183486239vw, 88.125rem);
  }
}
@media screen and (max-width: 1280px) {
  .l-section--overlap.is_scroll::before, .l-section--overlap.is_scroll::after {
    width: 98%;
  }
}
.l-section--overlap-reverse {
  padding: clamp(2.5rem, 1.7718446602rem + 3.1067961165vw, 5.5rem) 0;
}
.l-section--overlap-reverse::before, .l-section--overlap-reverse::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
}
.l-section--overlap-reverse::before {
  top: 0;
  right: 0;
  z-index: -1;
  background-color: var(--color-body_bg);
  border-radius: 30px 0 0 30px;
  -webkit-transition: width 1s;
  transition: width 1s;
}
.l-section--overlap-reverse::after {
  height: calc(100% + 2 * clamp(2rem, 0.9684466019rem + 4.4012944984vw, 6.25rem));
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  z-index: -2;
  background-image: url(../img/common/comp/overlap_bg_reverse.png);
  background-size: contain;
  background-position: center;
  background-color: var(--color-key_l);
  border-radius: 0 30px 30px 0;
  -webkit-transition: width 1s ease-in-out 0.8s;
  transition: width 1s ease-in-out 0.8s;
}
.l-section--overlap-reverse.is_scroll::before, .l-section--overlap-reverse.is_scroll::after {
  width: 86%;
}
@media screen and (max-width: 1640px) {
  .l-section--overlap-reverse.is_scroll::before, .l-section--overlap-reverse.is_scroll::after {
    width: clamp(62.5rem, 39.9311926606rem + 47.0183486239vw, 88.125rem);
  }
}
@media screen and (max-width: 1280px) {
  .l-section--overlap-reverse.is_scroll::before, .l-section--overlap-reverse.is_scroll::after {
    width: 98%;
  }
}

.l-inner {
  margin: 0 auto;
  width: 90%;
  max-width: var(--width-contents_max_m);
}

.l-outer {
  background-image: url(../img/common/webp/information_bg.webp);
  background-position: bottom right;
  background-repeat: no-repeat;
  padding-bottom: clamp(6.25rem, 4.4296116505rem + 7.7669902913vw, 13.75rem);
  background-size: 50%;
}
@media screen and (min-width: 1920px) {
  .l-outer {
    background-size: auto;
  }
}
.l-outer__side {
  width: 28%;
  max-width: var(--width-side-contents_max);
  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.75rem, 0.3252427184rem + 1.8122977346vw, 2.5rem);
}
@media screen and (max-width: 768px) {
  .l-outer__side {
    max-width: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.l-outer__main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: var(--width-main-contents_max);
}
@media screen and (max-width: 768px) {
  .l-outer__main {
    width: 100%;
  }
}

.l-outer-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(2rem, 1.4993932039rem + 2.1359223301vw, 4.0625rem);
  margin: clamp(2.5rem, 2.1207524272rem + 1.6181229773vw, 4.0625rem) auto 0;
  width: 90%;
  max-width: var(--width-contents_max_m);
}
@media screen and (max-width: 768px) {
  .l-outer-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-outer__side-banner img {
  width: 100%;
}

.l-outer__side-archive {
  margin-top: clamp(1rem, 0.9089805825rem + 0.3883495146vw, 1.375rem);
}
@media screen and (max-width: 600px) {
  .l-outer__side-archive {
    grid-column: 1/3;
    margin-top: 0;
  }
}

.l-outer__side-archive-title {
  height: 3.625rem;
  background-image: url(../img/common/side_archive.svg);
  background-size: cover;
  background-repeat: no-repeat;
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 1.4375;
  letter-spacing: 0.05em;
  color: var(--color_white);
  font-weight: 500;
  padding: 1.0625rem clamp(0.5rem, -0.5rem + 2.0833333333vw, 2rem);
  text-align: center;
}

.l-outer__side-archive-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: 0.75rem;
}

.l-outer__side-archive-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8125rem;
  border: 1px solid #D9D9D9;
  padding: 0.625rem;
  background-color: var(--color_white);
}
@media screen and (max-width: 991px) {
  .l-outer__side-archive-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .l-outer__side-archive-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.l-outer__side-archive-item-img {
  width: 5.4375rem;
  height: 5.4375rem;
  background-color: #D9D9D9;
}
.l-outer__side-archive-item-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-outer__side-archive-item-title {
  font-size: 0.8125rem;
  line-height: 2;
  letter-spacing: 0.05em;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-decoration: underline;
}

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

.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  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;
  gap: 1rem;
  z-index: 20;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  height: var(--height-header);
}
@media screen and (max-width: 1024px) {
  .l-header {
    background-color: var(--color-head_bg);
    height: var(--height-header-l);
    padding: 0 1rem;
  }
}
.l-header.is_scroll {
  background-color: var(--color_white);
}

.l-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
}
@media screen and (max-width: 1024px) {
  .l-header__logo {
    padding-left: 0;
  }
}

.l-header__nav {
  padding-right: clamp(1rem, -7.7857142857rem + 13.7276785714vw, 8.6875rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  width: 100%;
  gap: clamp(1.5rem, 1.2117718447rem + 1.2297734628vw, 2.6875rem);
}
@media screen and (max-width: 1024px) {
  .l-header__nav {
    display: none !important;
  }
}

.l-header__nav-wrap {
  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: end;
      -ms-flex-align: end;
          align-items: end;
  width: 100%;
  gap: 0.875rem;
}

.l-header__nav-list-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 0.75rem;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .l-header__nav-list-tel {
    display: none !important;
  }
}

.l-header__nav-list-tel-text {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.1666666667;
  letter-spacing: 0.1em;
}
.l-header__nav-list-tel-text span {
  font-size: 0.625rem;
}

.l-header__nav-list-tel-tel {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 2.1428571429;
  letter-spacing: 0.06em;
}
.l-header__nav-list-tel-tel a {
  font-size: 1.625rem;
  line-height: 1.1538461538;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.l-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .l-header__nav-list {
    display: none;
  }
}

.l-header__nav-item {
  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;
  font-family: "Noto Sans JP";
  font-size: 0.9375rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.l-header__nav-item-link.is_link {
  cursor: pointer;
}
.l-header__nav-item-link.is_btn {
  min-width: 11.6875rem;
  aspect-ratio: 187/45;
  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: #FF6461;
  color: var(--color_white);
  border-radius: 1.6875rem;
  font-weight: 700;
}

.l-header__navSp {
  position: fixed;
  top: var(--height-header-l);
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  z-index: 1000;
  background-color: var(--color-head_bg);
}
.l-header__navSp .p-header__logo {
  padding: 21px 10px;
}
@media screen and (max-width: 1024px) {
  body:has(#wpadminbar) .l-header .l-header__navSp {
    top: calc(2rem + var(--height-header-l));
  }
  .l-header__navSp.is_active {
    display: block;
  }
}

.l-header__navSp-inner {
  width: 90%;
  max-width: 30rem;
  margin: 0 1rem 0 auto;
  padding: 0 0 5rem;
  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;
}
@media screen and (max-width: 600px) {
  .l-header__navSp-inner {
    margin: 0 auto;
  }
}

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

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

.l-header__navSp-child-list {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 0.875rem;
  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.5rem;
}

.l-header__navSp-child-item .l-header__navSp-item-link {
  padding: 0 1rem;
}

.l-header__navSp-item-link {
  padding: 0.875rem 0;
  display: block;
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-family: "Noto Sans JP";
}
.l-header__navSp-item-link.is_btn {
  width: 12.5rem;
  aspect-ratio: 200/39;
  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: #FF6461;
  color: var(--color_white);
  border-radius: 1.6875rem;
  font-weight: 600;
  margin: 2rem auto 0;
}

.l-header__navSp-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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
}

.l-header__navSp-box-text {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.1666666667;
  letter-spacing: 0.1em;
}
.l-header__navSp-box-text span {
  font-size: 0.625rem;
}

.l-header__navSp-box-tel {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.1em;
}
.l-header__navSp-box-tel a {
  font-size: 2.25rem;
  line-height: 0.8333333333;
  font-weight: 800;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1024px) {
  body.is_fixed {
    overflow: hidden;
  }
}
.l-footer__floating {
  position: fixed;
  bottom: 0.625rem;
  right: 0.625rem;
  z-index: 10;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  background: transparent var(--color-gradation-btn) 0% 0% no-repeat padding-box;
}
.l-footer__floating.is_active {
  opacity: 1;
}

.l-footer__floating--inner {
  display: block;
  width: clamp(2.5rem, 2.1966019417rem + 1.2944983819vw, 3.75rem);
  aspect-ratio: 1/1;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  background-image: url(../img/common/icon_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40%;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.l-footer__floating--inner:hover {
  opacity: 0.7;
}

.l-footer__wrap {
  padding: clamp(2.5rem, 1.9387135922rem + 2.3948220065vw, 4.8125rem) 0;
  background-color: var(--color-key);
  color: var(--color_white);
  border-bottom: 1px solid var(--color_white);
}

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

.l-footer__left {
  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.25rem;
}

.l-footer__left-under-link {
  border-bottom: 0.0625rem solid #fff;
  line-height: 1;
  white-space: nowrap;
}

.l-footer__right {
  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: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 1.75rem;
}
@media screen and (max-width: 768px) {
  .l-footer__right {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
}

.l-footer__right-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(1rem, 0.3325242718rem + 2.8478964401vw, 3.75rem);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 480px) {
  .l-footer__right-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-footer__right-list--lower {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 480px) {
  .l-footer__right-list--lower {
    width: 100%;
  }
  .l-footer__right-list--lower a,
  .l-footer__right-list--lower img {
    width: 100%;
  }
}
.l-footer__right-list:last-child {
  gap: clamp(1rem, 0.817961165rem + 0.7766990291vw, 1.75rem);
}

.l-footer__right-item {
  letter-spacing: 0.05em;
  font-weight: 600;
}

.l-footer__right-child-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: 0.5rem;
  margin-top: 0.5rem;
}

.l-footer__right-child-item {
  font-size: 0.8125rem;
  line-height: 1.4666666667;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.l-footer__right-instagram {
  width: 2rem;
  height: 2rem;
  background-image: url(../img/common/webp/icon_instagram.webp);
  background-size: contain;
  background-repeat: no-repeat;
}

.l-footer__bottom {
  padding: clamp(1.5rem, 0.9083737864rem + 2.5242718447vw, 3.9375rem) 0 1.25rem;
  background-color: var(--color-key);
  color: var(--color_white);
}
@media screen and (max-width: 600px) {
  .l-footer__bottom {
    padding-bottom: 6.25rem;
  }
}

.l-footer__bottom-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .l-footer__bottom-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-footer__bottom-item {
  padding-left: clamp(0.5rem, 0.3483009709rem + 0.6472491909vw, 1.125rem);
  border-left: 1px solid var(--color_white);
}

.l-footer__bottom-item-title {
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  font-weight: 700;
  line-height: 2.6666666667;
  letter-spacing: 0.05em;
}

.l-footer__bottom-item-text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8571428571;
  letter-spacing: 0.05em;
  word-break: keep-all;
}

.l-footer__bottom-item-tel,
.l-footer__bottom-item-time {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
  display: grid;
  grid-template-columns: clamp(3.75rem, 3.4466019417rem + 1.2944983819vw, 5rem) auto;
}

.l-footer__bottom-item-tel {
  white-space: nowrap;
}
.l-footer__bottom-item-tel span:first-child {
  letter-spacing: 0.7em;
}

.l-footer__bottom-item-time {
  word-break: keep-all;
}
.l-footer__bottom-item-time span:first-child {
  letter-spacing: 0.2em;
}

.l-footer__bottom-copyright {
  margin-top: clamp(2rem, 1.5145631068rem + 2.071197411vw, 4rem);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-align: right;
}
@media screen and (max-width: 480px) {
  .l-footer__bottom-copyright {
    text-align: center;
  }
}

.c-pageHead {
  margin: 5rem 0 0;
}

.c-pageHead__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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(2rem, 1.3173543689rem + 2.9126213592vw, 4.8125rem);
  height: 100%;
  width: 90%;
  max-width: 88rem;
  margin: 0 auto;
  padding-top: 2rem;
}
@media screen and (max-width: 600px) {
  .c-pageHead__inner {
    height: 12.5rem;
    background-position: center;
  }
}

.c-pageHead__title {
  visibility: hidden;
  font-size: clamp(1.5rem, 0.7415048544rem + 3.2362459547vw, 4.625rem);
  line-height: 1.0277777778;
  letter-spacing: 0.2em;
  color: var(--color_white);
  text-shadow: 0px 0px 10px var(--color_white);
  font-family: "ShipporiMincho";
  font-weight: 600;
}

.c-pageHead__img-wrap {
  width: 100%;
  aspect-ratio: 1402/323;
  position: relative;
  z-index: 1;
}
.c-pageHead__img-wrap::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: calc(-1 * clamp(1rem, 0.6055825243rem + 1.6828478964vw, 2.625rem));
  right: 0;
  width: 100%;
  max-width: 73.125rem;
  aspect-ratio: 1170/223;
  background-color: var(--color-key);
  border-radius: 0.625rem 0px 0px 0.625rem;
  margin-right: calc(50% - 50vw);
}

.c-pageHead__img {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.price .c-pageHead__img {
  background-image: url(../img/pageHead/webp/pageHead-price.webp);
}
.about .c-pageHead__img {
  background-image: url(../img/pageHead/webp/pageHead-about.webp);
}
.corp .c-pageHead__img {
  background-image: url(../img/pageHead/webp/pageHead-about-corp.webp);
}
.welfare .c-pageHead__img {
  background-image: url(../img/pageHead/webp/pageHead-about-welfare.webp);
}
.shop .c-pageHead__img {
  background-image: url(../img/pageHead/webp/pageHead-shop.webp);
}
.information .c-pageHead__img {
  background-image: url(../img/pageHead/webp/pageHead-information.webp);
}

.c-pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: clamp(2rem, 1.1656553398rem + 3.5598705502vw, 5.4375rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.375rem, 0.2839805825rem + 0.3883495146vw, 0.75rem);
}
@media screen and (max-width: 768px) {
  .c-pagination {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: clamp(1.75rem, 1.4769417476rem + 1.1650485437vw, 2.875rem);
  aspect-ratio: 1/1;
  color: #686868;
  border: 1px solid #686868;
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  line-height: 1.5;
  font-weight: 300;
}
.page-numbers.current {
  background-color: #D9D9D9;
  border: 1px solid #D9D9D9;
}

.c-single {
  max-width: var(--width-contents_max_s) !important;
  font-family: "Noto Sans JP";
}

.c-single__top {
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  line-height: 1.2142857143;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8125rem;
}

.c-single__title {
  margin-top: clamp(1rem, 0.5145631068rem + 2.071197411vw, 3rem);
  padding-bottom: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
  font-size: clamp(1.125rem, 0.8519417476rem + 1.1650485437vw, 2.25rem);
  line-height: 1;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #D9D9D9;
}

.post-navigation {
  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;
  gap: 0.5rem;
  margin-top: clamp(2.5rem, 1.286407767rem + 5.1779935275vw, 7.5rem);
}
@media screen and (max-width: 600px) {
  .post-navigation {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
.post-navigation > div {
  width: 12.5rem;
  max-width: 100%;
  text-align: center;
}
.post-navigation > div a {
  padding: 0.625rem;
  display: block;
}
@media screen and (max-width: 600px) {
  .post-navigation .previous-post {
    width: unset;
  }
}
.post-navigation .previous-post a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  text-decoration: underline;
}
.post-navigation .previous-post a::before {
  content: "";
  width: 0.4375rem;
  height: 0.625rem;
  background-image: url(../img/common/page-prev.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .post-navigation .toArchive {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.post-navigation .toArchive a {
  color: var(--color-key);
  border: 1px solid var(--color-key);
  width: 12.5rem;
  max-width: 100%;
  text-align: center;
  padding: 0.625rem;
  display: block;
}
@media screen and (max-width: 600px) {
  .post-navigation .next-post {
    width: unset;
  }
}
.post-navigation .next-post a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  text-decoration: underline;
}
.post-navigation .next-post a::after {
  content: "";
  width: 0.4375rem;
  height: 0.625rem;
  background-image: url(../img/common/page-next.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.c-archive__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-archive__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.5752427184rem + 1.8122977346vw, 2.75rem);
  padding: clamp(1rem, 0.6814320388rem + 1.359223301vw, 2.3125rem) 0;
  border-bottom: 1px solid #D9D9D9;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 480px) {
  .c-archive__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-archive__item-img {
  width: 39%;
  max-width: 18rem;
  aspect-ratio: 288/200;
  background-color: #D9D9D9;
}
@media screen and (max-width: 480px) {
  .c-archive__item-img {
    width: 100%;
  }
}

.c-archive__item-box {
  width: 55%;
  max-width: 25.1875rem;
  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.2572815534rem + 1.0355987055vw, 1.5rem);
}
@media screen and (max-width: 480px) {
  .c-archive__item-box {
    max-width: 18rem;
    width: 100%;
  }
}

.c-archive__item-box-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8125rem;
}

.c-archive__item-box-new {
  border-radius: 0.125rem;
  background-color: var(--color-key);
  color: var(--color_white);
  width: 3.9375rem;
  letter-spacing: 0.05em;
  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;
  line-height: normal;
  padding: 0.125rem 0 0.0625rem;
}

.c-archive__item-box-date {
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  line-height: 1.2142857143;
  letter-spacing: 0.05em;
  color: #333;
}

.c-archive__item-box-title {
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  line-height: 1.2916666667;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.c-archive__item-box-text {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.c-btn {
  width: 100%;
  max-width: 19.375rem;
  aspect-ratio: 310/54;
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  line-height: 1.9444444444;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color_white);
  background-color: var(--color-txt);
  border: 1px solid var(--color-txt);
  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: relative;
}
@media screen and (max-width: 768px) {
  .c-btn {
    max-width: 14.375rem;
    aspect-ratio: 230/54;
    padding: 1.0625rem 1.5rem;
  }
}
.c-btn::after {
  content: "";
  width: 1.5rem;
  height: 0.25rem;
  position: absolute;
  top: 50%;
  right: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../img/common/icon_btn-wh.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.c-btn--inversion {
  border: 1px solid var(--color-txt);
  background-color: var(--color_white);
  color: var(--color-txt);
}
.c-btn--inversion::after {
  background-image: url(../img/common/icon_btn-bk.svg);
}

.c-heading {
  font-size: clamp(1.25rem, 1.0224514563rem + 0.9708737864vw, 2.1875rem);
  line-height: 1;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1rem, 0.9089805825rem + 0.3883495146vw, 1.375rem);
  margin-bottom: clamp(1.5rem, 1.1359223301rem + 1.5533980583vw, 3rem);
}
.c-heading::before {
  content: "";
  width: clamp(1.25rem, 0.9617718447rem + 1.2297734628vw, 2.4375rem);
  height: 0.375rem;
  border-radius: 1.1875rem;
  background-color: var(--color-key);
}

.c-title {
  width: 100%;
  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;
  font-size: clamp(1rem, 0.7876213592rem + 0.9061488673vw, 1.875rem);
  font-weight: 700;
  line-height: 2.6666666667;
  letter-spacing: 0.05em;
  color: var(--color-txt_heading);
}
.c-title span {
  font-family: "Odor Mean Chey";
  font-size: clamp(2.5rem, 1.8932038835rem + 2.5889967638vw, 5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-key);
}
.c-title span.c-title__catch {
  font-size: clamp(0.875rem, 0.7233009709rem + 0.6472491909vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  font-family: "Noto Sans JP";
  color: var(--color_white);
  line-height: 1.6666666667;
  border-radius: 1.875rem;
  background: #021A47;
  padding: 0 clamp(0.625rem, 0.4733009709rem + 0.6472491909vw, 1.25rem);
  margin: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem) 0;
}

.c-mainVisual {
  position: relative;
  aspect-ratio: 1920/770;
  background-image: url(../img/home/webp/mv_bg.webp);
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .c-mainVisual {
    height: clamp(15.625rem, 5.2083333333rem + 44.4444444444vw, 21.875rem);
    background-size: cover;
    aspect-ratio: unset;
  }
}

.c-mainVisual__box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 60%;
  max-width: 70.625rem;
  aspect-ratio: 1130/689;
  background-image: url(../img/home/webp/mv.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .c-mainVisual__box {
    width: 90%;
    top: unset;
    bottom: 0;
    -webkit-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
  }
}

.p-mainVisual__slider {
  position: absolute;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  bottom: clamp(0rem, -1.3636363636rem + 3.6363636364vw, 3rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  mix-blend-mode: multiply;
}
@media screen and (max-width: 768px) {
  .p-mainVisual__slider {
    bottom: -2.5rem;
  }
}

.p-mainVisual__slider-text {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  white-space: nowrap;
  font-size: clamp(4rem, 3.1504854369rem + 3.6245954693vw, 7.5rem);
  line-height: 1;
  font-weight: 700;
  color: var(--color-key);
  opacity: 0.14;
  -webkit-animation: MoveLeft2 40s infinite linear;
          animation: MoveLeft2 40s infinite linear;
}

@-webkit-keyframes MoveLeft {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes MoveLeft {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes MoveLeft2 {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes MoveLeft2 {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
.c-breadcrumb {
  visibility: hidden;
  margin: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem) 0 0;
}

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

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

.c-table tr {
  border-bottom: 1px solid var(--color-table_border_tr);
}
.c-table tr th, .c-table tr td {
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 2.5;
  letter-spacing: 0.05em;
  padding: clamp(0.75rem, 0.6286407767rem + 0.5177993528vw, 1.25rem) 0;
}
.c-table tr th {
  width: 33%;
  font-weight: 500;
}

.c-table__link {
  color: #4B4B4B;
  text-decoration: underline;
}
.c-table__link::before {
  content: "";
  display: inline-block;
  width: 1.125rem;
  height: 1.375rem;
  background-image: url(../img/common/icon_map.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.5625rem;
  vertical-align: sub;
}

/* モーダル */
.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-contents_max_s);
  width: 100%;
  position: relative;
  background-color: #fff;
  margin: 0.625rem;
  overflow: auto;
}

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

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

.modal-close {
  margin: 1rem 1rem 1rem auto;
  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;
  width: clamp(2rem, 1.8027912621rem + 0.8414239482vw, 2.8125rem);
  aspect-ratio: 1/1;
  background-color: #EEEEEE;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
@media (hover: hover) {
  .modal-close:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.5;
  }
}
.modal-close:before {
  content: "✕";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  font-size: 1.25rem;
  line-height: 1;
}

/* モーダルアニメーション */
@-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 {
  padding: 0 clamp(1rem, 0.0594660194rem + 4.0129449838vw, 4.875rem) clamp(1rem, 0.0594660194rem + 4.0129449838vw, 4.875rem);
  max-height: 45.3125rem;
}

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

.c-modal__title {
  width: 100%;
  text-align: center;
  font-size: clamp(1.5rem, 1.2572815534rem + 1.0355987055vw, 2.5rem);
  line-height: 1.45;
  letter-spacing: 0;
  color: var(--color_white);
  font-weight: 600;
  padding: 0.375rem;
  background: transparent linear-gradient(97deg, #388FD5 0%, #0062B0 47%, #002E80 100%) 0% 0% no-repeat padding-box;
}

.c-modal__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;
  gap: clamp(1rem, 0.4235436893rem + 2.4595469256vw, 3.375rem);
  margin-top: clamp(1.25rem, 0.8859223301rem + 1.5533980583vw, 2.75rem);
}
.c-modal__inner .c-modal__img {
  max-width: 26.4375rem;
  max-height: 20.625rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 600px) {
  .c-modal__inner .c-modal__img {
    width: 100%;
  }
}
.c-modal__inner .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;
  gap: clamp(1rem, 0.9089805825rem + 0.3883495146vw, 1.375rem);
}
.c-modal__inner .c-modal__explanation .c-modal__explanation--title {
  color: var(--color-key);
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  line-height: 1.4583333333;
  letter-spacing: 0;
  font-weight: 600;
}
.c-modal__inner .c-modal__explanation .c-modal__explanation--text {
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  line-height: 2.1111111111;
  letter-spacing: 0;
  font-weight: 500;
}
@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__link {
  color: var(--color_white);
  background-color: var(--color-key);
  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;
  gap: 0.5rem;
  padding: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem) clamp(1rem, 0.817961165rem + 0.7766990291vw, 1.75rem);
  margin: 0 auto;
  margin-top: clamp(1.5rem, 0.8932038835rem + 2.5889967638vw, 4rem);
  min-width: 19.75rem;
  border-radius: 2.75rem;
  position: relative;
}
.c-modal__link::after {
  content: "＞";
}

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

.c-form__text {
  margin: 0 auto;
  width: 100%;
  max-width: var(--width-contents_max_s);
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  line-height: 2.1111111111;
  letter-spacing: 0;
  margin-top: clamp(1.5rem, 0.9538834951rem + 2.3300970874vw, 3.75rem);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .c-form__text {
    font-weight: 400;
  }
}

.c-form__link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--color_white);
  background-color: var(--color-key);
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.c-form__link::after {
  content: "";
  width: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  height: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  -webkit-mask-image: url(../img/common/icon_link-wh.svg);
          mask-image: url(../img/common/icon_link-wh.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--color_white);
}

.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: var(--width-contents_max_s);
  width: 100%;
  margin: clamp(1.5rem, 0.7718446602rem + 3.1067961165vw, 4.5rem) auto 0;
}
.c-form__box input[type=submit],
.c-form__box input[type=button] {
  width: 100%;
  max-width: 26.875rem;
  background: transparent -webkit-gradient(linear, left top, right top, from(#388FD5), color-stop(29%, #0062B0), to(#002E80)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #388FD5 0%, #0062B0 29%, #002E80 100%) 0% 0% no-repeat padding-box;
  height: 3.5rem;
  border-radius: 0.125rem;
  font-family: "Noto Sans JP";
}
.c-form__box input[type=submit][name=submitBack],
.c-form__box input[type=button][name=submitBack] {
  background-color: var(--color-default);
  color: var(--color-txt);
}
.c-form__box input[type=button] {
  background: transparent 0% 0% no-repeat padding-box;
  border: 1px solid var(--color-key);
  color: var(--color-key);
}
.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.4393203883rem + 0.2588996764vw, 0.75rem);
  font-weight: 500;
}
.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;
}
.c-form__wrap .wpcf7-form-control.wpcf7-radio {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(0.75rem, 0.6893203883rem + 0.2588996764vw, 1rem) clamp(0.75rem, 0.4466019417rem + 1.2944983819vw, 2rem);
}
@media screen and (max-width: 991px) {
  .c-form__wrap .wpcf7-form-control.wpcf7-radio {
    grid-template-columns: repeat(2, auto);
  }
}
@media screen and (max-width: 600px) {
  .c-form__wrap .wpcf7-form-control.wpcf7-radio {
    grid-template-columns: 1fr;
  }
}

.c-form__label {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 0.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
}
.c-form__label--required {
  display: inline-block;
  margin-right: 0.4375rem;
}
.c-form__label--required::after {
  content: "必須";
  width: 2.5rem;
  height: 1.25rem;
  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: #DD1F1F;
  font-size: 0.75rem;
  font-weight: 600;
}
@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__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;
}

.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__privacyText {
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  font-weight: 600;
  line-height: 2.375;
  letter-spacing: 0;
}

.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__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(4rem, 3.6966019417rem + 1.2944983819vw, 5.25rem) !important;
}

#autozip {
  display: none !important;
}

.c-hamburger {
  display: none;
  position: relative;
  z-index: 9999;
}
@media screen and (max-width: 1024px) {
  .c-hamburger {
    width: 2.75rem;
    height: 1.375rem;
    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;
    background: transparent;
    border: none;
    padding: 0;
  }
}
.c-hamburger span {
  background: var(--color-key);
  width: 2.75rem;
  height: 0.125rem;
  display: block;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform-origin: left center 0;
          transform-origin: left center 0;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.is_open .c-hamburger span {
  background: var(--color-key);
}
.is_scroll .c-hamburger span {
  background: var(--color-key);
}
.is_lower .c-hamburger span {
  background: var(--color-key);
}
.c-hamburger.is_active span:first-child {
  -webkit-transform: rotate(27deg);
          transform: rotate(27deg);
}
.c-hamburger.is_active span:nth-child(2) {
  opacity: 0;
}
.c-hamburger.is_active span:last-child {
  -webkit-transform: rotate(-27deg);
          transform: rotate(-27deg);
}

.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.7572815534rem + 1.0355987055vw, 2rem);
}
@media screen and (max-width: 600px) {
  .c-accordion {
    gap: 1.5rem;
  }
}

.c-accordion__box {
  position: relative;
}

.c-accordion__box-wrap {
  border: 1px solid var(--color-primary);
  border-radius: 0.625rem;
  padding: clamp(0.625rem, 0.4733009709rem + 0.6472491909vw, 1.25rem) clamp(0.625rem, 0.4733009709rem + 0.6472491909vw, 1.25rem) clamp(0.625rem, 0.4733009709rem + 0.6472491909vw, 1.25rem) clamp(3.5rem, 4.0461165049rem - 2.3300970874vw, 1.25rem);
  background-color: var(--color_white);
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 90%;
  margin-left: auto;
}

.c-accordion__box-img {
  position: absolute;
  top: -0.3125rem;
  left: 0;
}

.c-accordion__box--title {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 500;
}
.c-accordion__box--title.is_open {
  padding-bottom: clamp(0.625rem, 0.4733009709rem + 0.6472491909vw, 1.25rem);
}
.c-accordion__box--title span {
  text-align: center;
  color: var(--color-primary);
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.1em;
}

.c-accordion__box--text {
  display: none;
  padding: clamp(0.625rem, 0.4733009709rem + 0.6472491909vw, 1.25rem) 0 0 clamp(0rem, -0.6067961165rem + 2.5889967638vw, 2.5rem);
  border-top: 1px solid var(--color-primary);
}
.c-accordion__box--text div span {
  text-align: center;
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.1em;
}

.c-banner {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.c-floating {
  position: fixed;
  right: 0;
  bottom: 1.5rem;
  z-index: 10;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  display: none;
}
@media screen and (max-width: 600px) {
  .c-floating {
    bottom: 0;
    left: 50%;
    right: unset;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.c-floating.hidden {
  -webkit-transform: translateX(-50%) translateY(100%);
          transform: translateX(-50%) translateY(100%);
}

.c-floating__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: 0.625rem;
}
@media screen and (max-width: 600px) {
  .c-floating__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
    width: 100vw;
  }
}

.c-floating__btn {
  width: clamp(9.375rem, 8.4951456311rem + 3.7540453074vw, 13rem);
  aspect-ratio: 208/138;
  height: clamp(7.1875rem, 6.5340909091rem + 1.7424242424vw, 8.625rem);
  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: var(--color_white);
  padding: 0.5rem;
}
.c-floating__btn.line {
  border: 5px solid #01BA4D;
  border-right: none;
}
@media screen and (max-width: 600px) {
  .c-floating__btn.line {
    border: 3px solid #01BA4D;
    border-bottom: none;
  }
}
.c-floating__btn.tel {
  border: 5px solid #FF6E14;
  border-right: none;
}
@media screen and (max-width: 600px) {
  .c-floating__btn.tel {
    border: 3px solid #FF6E14;
    border-bottom: none;
  }
}
@media screen and (max-width: 600px) {
  .c-floating__btn {
    width: 100%;
    height: 4.25rem;
    aspect-ratio: unset;
  }
}
.c-floating__btn picture {
  height: 100%;
}
.c-floating__btn picture img {
  height: 100%;
}

.p-home__mv {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 6rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 1280px) {
  .p-home__mv {
    min-height: unset;
  }
}

.p-home__mv-bg {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 100%;
  z-index: -1;
}
.p-home__mv-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-home__mv-wrap {
  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: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .p-home__mv-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-home__mv-left {
  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.25rem;
}

.p-home__mv-left-box {
  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;
  gap: clamp(0.25rem, 0.067961165rem + 0.7766990291vw, 1rem);
}

.p-home__mv-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.5rem, 1.2876213592rem + 0.9061488673vw, 2.375rem);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-3%);
          transform: translateX(-3%);
}
@media screen and (max-width: 1280px) {
  .p-home__mv-list {
    position: static;
    -webkit-transform: unset;
            transform: unset;
  }
}
@media screen and (max-width: 600px) {
  .p-home__mv-list {
    display: none;
  }
}

.p-home__introduction {
  margin-top: 0;
  background-color: var(--color-key);
  padding: 0;
  overflow-x: hidden;
}
@media screen and (max-width: 600px) {
  .p-home__introduction {
    margin-top: 2.5rem;
  }
}

.p-home__introduction-upper {
  background-image: url(../img/home/webp/introduction_bg01.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 90%;
  position: relative;
  padding-top: clamp(3rem, 2.2566747573rem + 3.1715210356vw, 6.0625rem);
  padding-bottom: clamp(5rem, 3.9381067961rem + 4.5307443366vw, 9.375rem);
}
.p-home__introduction-upper::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(../img/home/introduction_deco.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 4rem;
}

.p-home__introduction-upper-wrap {
  width: 100%;
  max-width: 56.25rem;
  margin: 0 auto;
  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(1.5rem, 1.1359223301rem + 1.5533980583vw, 3rem);
}

.p-home__introduction-upper-inner {
  width: 100%;
  position: relative;
}

.p-home__introduction-upper-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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
  padding: clamp(1.5rem, 0.8476941748rem + 2.783171521vw, 4.1875rem);
  background-color: var(--color_white);
  border-radius: 0.625rem;
}
.p-home__introduction-upper-list li {
  margin: 0 auto;
  max-width: 34.375rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.p-home__introduction-upper-list li::before {
  content: "";
  background-image: url(../img/home/introduction_list.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  min-width: clamp(1rem, 0.8634708738rem + 0.5825242718vw, 1.5625rem);
  aspect-ratio: 1/1;
}

.p-home__introduction-upper-deco01 {
  position: absolute;
  top: calc(-1 * clamp(3.125rem, 2.0631067961rem + 4.5307443366vw, 7.5rem));
  left: calc(-1 * clamp(3.125rem, 2.0631067961rem + 4.5307443366vw, 7.5rem));
  width: 32%;
  max-width: clamp(11.25rem, 1.3125rem + 20.703125vw, 17.875rem);
}
@media screen and (max-width: 768px) {
  .p-home__introduction-upper-deco01 {
    max-width: clamp(8.125rem, 6.9322519084rem + 5.0890585242vw, 9.375rem);
  }
}

.p-home__introduction-upper-deco02 {
  position: absolute;
  bottom: calc(-1 * clamp(3.125rem, 2.0631067961rem + 4.5307443366vw, 7.5rem));
  right: calc(-1 * clamp(5.625rem, 4.2597087379rem + 5.8252427184vw, 11.25rem));
  width: 61%;
  max-width: clamp(15.625rem, 7.9592541436rem + 32.7071823204vw, 34.125rem);
}
@media screen and (max-width: 600px) {
  .p-home__introduction-upper-deco02 {
    bottom: calc(-1 * clamp(4rem, 2.3333333333rem + 7.1111111111vw, 5rem));
    right: -1.25rem;
  }
}

.p-home__introduction-lower {
  background-image: url(../img/home/webp/introduction_bg02.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding-top: clamp(3rem, 1.9077669903rem + 4.6601941748vw, 7.5rem);
  padding-bottom: clamp(3rem, 2.2111650485rem + 3.3656957929vw, 6.25rem);
}
@media screen and (max-width: 600px) {
  .p-home__introduction-lower {
    background-size: 100% 15%;
  }
}

.p-home__reasons {
  margin-bottom: clamp(2.5rem, 1.4381067961rem + 4.5307443366vw, 6.875rem);
  padding-bottom: clamp(5rem, 3.270631068rem + 7.3786407767vw, 12.125rem);
  background-image: url(../img/home/webp/reasons_bg.webp);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}

.p-home__introduction-lower-wrap {
  width: 100%;
  max-width: 56.25rem;
  margin: 0 auto;
  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;
}

.p-home__introduction-lower-text {
  margin-top: 1rem;
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  font-weight: 500;
  line-height: 2.2222222222;
  letter-spacing: 0.1em;
}

.p-home__introduction-lower-list {
  margin-top: clamp(1.5rem, 1.2117718447rem + 1.2297734628vw, 2.6875rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(1rem, 0.0625rem + 2.5vw, 3.0625rem);
  width: 100%;
}
@media screen and (max-width: 600px) {
  .p-home__introduction-lower-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-home__introduction-lower-item {
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color_white);
  padding: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  text-align: center;
  font-weight: 500;
  line-height: 2.0625;
  letter-spacing: 0.1em;
  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;
  position: relative;
  max-width: 16.125rem;
  width: calc((100% - clamp(1rem, 0.0625rem + 2.5vw, 3.0625rem) * 2) / 3);
}
@media screen and (max-width: 600px) {
  .p-home__introduction-lower-item {
    width: 100%;
    max-width: 12.5rem;
  }
}
.p-home__introduction-lower-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 67%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1.625rem solid rgba(66, 210, 169, 0.3);
}
.p-home__introduction-lower-item p {
  z-index: 1;
}

.p-home__reasons-list {
  margin-top: clamp(2.5rem, 1.8932038835rem + 2.5889967638vw, 5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(1.5rem, 0.8932038835rem + 2.5889967638vw, 4rem);
}
@media screen and (max-width: 768px) {
  .p-home__reasons-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-home__reasons-item {
  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;
  border-top: 2px solid #021A47;
  border-bottom: 2px solid #021A47;
  padding: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem) clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  max-width: 18rem;
}
@media screen and (max-width: 768px) {
  .p-home__reasons-item {
    max-width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
  }
}

.p-home__reasons-item-img {
  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);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .p-home__reasons-item-img {
    width: 20%;
    min-width: 3.75rem;
  }
}

.p-home__reasons-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(1rem, 0.8483009709rem + 0.6472491909vw, 1.625rem);
}

.p-home__reasons-item-title {
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-align: center;
  color: #021A47;
  white-space: nowrap;
}

.p-home__reasons-item-text {
  font-weight: 400;
  line-height: 1.625;
  letter-spacing: 0.05em;
}
.p-home__reasons-item-text span {
  font-weight: 700;
  background-color: #FFF100;
}

.p-home__achievements-list {
  margin-top: clamp(2.5rem, 2.0600728155rem + 1.8770226537vw, 4.3125rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 0.9690533981rem + 2.2653721683vw, 3.6875rem);
}
@media screen and (max-width: 768px) {
  .p-home__achievements-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .p-home__achievements-list {
    grid-template-columns: 1fr;
  }
}

.p-home__achievements-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-home__achievements-item-img {
  border-radius: 0.625rem;
  position: relative;
  overflow: hidden;
  aspect-ratio: 328/235;
}
@media screen and (max-width: 480px) {
  .p-home__achievements-item-img img {
    width: 100%;
  }
}
.p-home__achievements-item-img p {
  position: absolute;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  font-weight: 700;
  line-height: 1.4285714286;
  background-color: var(--color_white);
  padding: 0.625rem;
  width: 11.8125rem;
  border-radius: 0 0.625rem 0 0;
}
.p-home__achievements-item-img span {
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-weight: 700;
  line-height: 1.25;
}

.p-home__achievements-item-table {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 6.25rem auto;
  gap: 0.75rem clamp(0.75rem, 0.2038834951rem + 2.3300970874vw, 3rem);
}
.p-home__achievements-item-table p:nth-child(odd) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  line-height: 1.25;
  gap: 0.6875rem;
}
.p-home__achievements-item-table p:nth-child(odd)::before {
  content: "";
  width: clamp(0.5rem, 0.4393203883rem + 0.2588996764vw, 0.75rem);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color-key_l);
}
.p-home__achievements-item-table p:nth-child(even) {
  line-height: 1.25;
}

.p-home__achievements-item-price {
  margin-top: clamp(1rem, 0.833131068rem + 0.71197411vw, 1.6875rem);
  border-radius: 0.625rem;
  background-color: var(--color-key_l);
  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;
  padding: 0.8125rem 1.25rem;
}

.p-home__achievements-item-price-left {
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  font-weight: 500;
  line-height: 1.4444444444;
  letter-spacing: 0.1em;
  color: var(--color_white);
}

.p-home__achievements-item-price-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.4375rem;
  color: var(--color_white);
}
.p-home__achievements-item-price-right p {
  font-size: clamp(1.25rem, 0.7949029126rem + 1.9417475728vw, 3.125rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-home__achievements-item-price-right p {
    font-size: 2rem;
  }
}
.p-home__achievements-item-price-right span {
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  font-weight: 500;
  line-height: 1.4444444444;
}

.p-home__achievements-note {
  margin-top: 1rem;
  text-align: right;
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  font-weight: 500;
  line-height: 2.1428571429;
}

.p-home__voice-list {
  margin-top: clamp(2rem, 1.3932038835rem + 2.5889967638vw, 4.5rem);
  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.302184466rem + 2.9773462783vw, 3.875rem) clamp(1rem, 0.1049757282rem + 3.8187702265vw, 4.6875rem);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 480px) {
  .p-home__voice-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-home__voice-item {
  max-width: 28.5625rem;
  width: calc((100% - clamp(1rem, 0.1049757282rem + 3.8187702265vw, 4.6875rem)) / 2);
}
@media screen and (max-width: 480px) {
  .p-home__voice-item {
    width: 100%;
  }
}

.p-home__voice-item-text {
  line-height: 1.75;
  letter-spacing: 0.1em;
  text-align: center;
}

.p-home__voice-item-author {
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  font-weight: 400;
  line-height: 2.0714285714;
  letter-spacing: 0.24em;
  text-align: center;
  margin-top: 0.625rem;
}

.p-home__flow {
  margin: 0;
}

.p-home__flow-list {
  margin-top: clamp(2.5rem, 1.6201456311rem + 3.7540453074vw, 6.125rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 1.0145631068rem + 2.071197411vw, 3.5rem);
}
@media screen and (max-width: 768px) {
  .p-home__flow-list {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.p-home__flow-item {
  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-body_bg);
  position: relative;
  padding: clamp(2rem, 1.817961165rem + 0.7766990291vw, 2.75rem) clamp(1rem, 0.6966019417rem + 1.2944983819vw, 2.25rem) clamp(1rem, 0.7876213592rem + 0.9061488673vw, 1.875rem);
  border-radius: 0.375rem;
  border: 2px solid #021A47;
}
.p-home__flow-item::after {
  content: "";
  background-image: url(../img/home/flow_arrow.svg);
  width: 1.4375rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  right: calc(-1 * clamp(2rem, 1.7083333333rem + 0.6076388889vw, 2.4375rem));
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p-home__flow-item::after {
    top: 103%;
    right: unset;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
  }
}
.p-home__flow-item:last-child::after {
  content: none;
}

.p-home__flow-item-step {
  position: absolute;
  top: -3%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 78%;
  max-width: 15.9375rem;
  border-radius: 1.125rem;
  background: var(--color-key);
  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;
  font-family: "Quattrocento Sans";
  font-size: clamp(0.875rem, 0.7839805825rem + 0.3883495146vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color_white);
}

.p-home__flow-item-title {
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  font-weight: 500;
  line-height: 1.2083333333;
  letter-spacing: 0.1em;
}

.p-home__flow-item-img {
  margin-top: clamp(1.25rem, 1.1286407767rem + 0.5177993528vw, 1.75rem);
  height: 11.375rem;
}

.p-home__flow-item-text {
  margin-top: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  color: var(--color-txt);
  font-weight: 400;
  line-height: 1.4375;
  letter-spacing: 0.1em;
}

.p-home__cta {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  background-image: url(../img/home/webp/cta_bg.webp);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 1280px) {
  .p-home__cta {
    background-position: unset;
  }
}

.p-home__cta-wrap {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: clamp(1.5rem, 1.1055825243rem + 1.6828478964vw, 3.125rem);
}
@media screen and (max-width: 600px) {
  .p-home__cta-wrap {
    gap: 1.5rem;
  }
}

.p-home__cta-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 0.0436893204rem + 6.213592233vw, 7.5rem);
}

.p-home__cta-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -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;
}

.p-home__access {
  position: relative;
  padding-bottom: clamp(10rem, 7.4211165049rem + 11.003236246vw, 20.625rem);
  margin: 0;
  background-image: url(../img/home/webp/access_bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
}
@media screen and (max-width: 480px) {
  .p-home__access {
    background-size: 150%;
    background-position-x: right;
  }
}
.p-home__access::before {
  content: "";
  position: absolute;
  bottom: 5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), color-stop(31.45%, rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0) 31.45%);
  width: 100%;
  aspect-ratio: 1920/930;
}

.p-home__access-text {
  margin-top: clamp(1rem, 0.833131068rem + 0.71197411vw, 1.6875rem);
  color: var(--color-txt_heading);
  font-weight: 400;
  font-size: clamp(0.875rem, 0.7839805825rem + 0.3883495146vw, 1.25rem);
  line-height: 2.4;
  letter-spacing: 0.05em;
  text-align: center;
}

.p-home__access-list {
  max-width: var(--width-contents_max_s);
  margin: clamp(1.5rem, 0.8932038835rem + 2.5889967638vw, 4rem) auto 0;
  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(1.5rem, 0.9538834951rem + 2.3300970874vw, 3.75rem);
}

.p-home__access-item {
  padding: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem) clamp(1rem, 0.3932038835rem + 2.5889967638vw, 3.5rem);
  border-radius: 0.625rem;
  background-color: var(--color_white);
  border: 2px solid #021A47;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1rem, 0.3325242718rem + 2.8478964401vw, 3.75rem);
}
@media screen and (max-width: 600px) {
  .p-home__access-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-home__access-item-img {
  width: 45%;
}
@media screen and (max-width: 600px) {
  .p-home__access-item-img {
    width: 100%;
  }
}
.p-home__access-item-img img {
  width: 100%;
}

.p-home__access-item-title {
  padding: 0 clamp(0.5rem, 0.1662621359rem + 1.4239482201vw, 1.875rem);
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  font-weight: 500;
  line-height: 1.8461538462;
  letter-spacing: 0.05em;
  border-radius: 1.5rem;
  background: var(--color-key);
  color: var(--color_white);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-home__access-item-text {
  margin-top: 0.5rem;
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-weight: 400;
  line-height: 1.875;
  letter-spacing: 0.05em;
}

.p-home__access-item-tel,
.p-home__access-item-time {
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-weight: 400;
  line-height: 1.625;
  letter-spacing: 0.05em;
  display: grid;
  grid-template-columns: clamp(3.75rem, 3.4466019417rem + 1.2944983819vw, 5rem) auto;
}

.p-home__access-item-tel {
  white-space: nowrap;
}
.p-home__access-item-tel span:first-child {
  letter-spacing: 0.7em;
}

.p-home__access-item-time {
  word-break: keep-all;
}
.p-home__access-item-time span:first-child {
  letter-spacing: 0.2em;
}

.p-home__access-item-link {
  margin-top: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  font-weight: 500;
  line-height: 2.1428571429;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem 1.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-home__access-item-link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  border-bottom: 1px dotted;
}
.p-home__access-item-link a::after {
  content: "";
  background-image: url(../img/home/access_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 0.9375rem;
  height: 0.8125rem;
}

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

.u-link--icon {
  font-family: "Oswald";
  color: var(--color-key);
}
.u-link--icon::after {
  content: "";
  width: 1.25rem;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../img/common/icon_link.svg);
          mask-image: url(../img/common/icon_link.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  background-color: currentColor;
}

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

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

body.preload .wow.fadeIn,
body.preload .wow.fadeInUp {
  opacity: 0 !important;
}/*# sourceMappingURL=style.css.map */