@charset "UTF-8";
:root {
  --color-white: #FFFFFF;
  --color-text:#191E2C;
  --color-main:#102A64;
  --color-green:#2AB6C7;
  --color-yellow: #FFD207;
  --color-red: #D6315B;
  --color-bg:#C9E2EA;
}

/* =============================================
  Typography
============================================= */
/* 汎用テキスト */
/* =============================================
  Text Presets
============================================= */
/* 見出し大：PC 40px / SP 24px */
/* 見出し中：PC 24px / SP 20px */
/* 見出し中小：PC 22px / SP 18px */
/* 見出し小：PC 20px / SP 16px */
/* 本文小：PC 14px / SP 13px */
/* 1行系・ボタン・ラベル用 */
/* 注釈・キャプション */
/* ボタン・ラベルなど1行用 */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
var {
  font-weight: 500;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

li {
  list-style: none;
  list-style-type: none;
}

caption,
th {
  font-weight: normal;
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 100%;
}

area {
  outline: none;
  border: none;
}

abbr,
acronym {
  border: 0;
}

* {
  box-sizing: border-box;
}

input,
select,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: 0;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  margin: 0;
  outline: none;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  padding: 0;
}

input[type=submit],
input[type=button] {
  cursor: pointer;
}

input,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

a {
  outline: none;
}

figure {
  line-height: 0;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

body {
  background-color: var(--color-bg);
}
body a {
  color: var(--color-text);
  text-decoration: none;
}

body {
  position: relative;
  margin: 0;
  height: auto;
  overflow-x: hidden;
  overflow-y: visible;
  color: var(--color-text);
  font-family: "Noto Sans JP", sans-serif;
}
/*
.ef-fade01 {
  transition: 1s;
  opacity: 0;
  transform: translate(0, 10%);
}
.fade01 {
  opacity: 1.0;
  transform: translate(0,0);
}
*/
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
  background-color: #fff;
  padding: 10px;
}
.header_logo {
  width: 160px;
}
.header_logo img {
  width: 100%;
  height: auto;
}
.header_text {
  font-size: 0.6875rem;
  text-align: right;
}

.footer {
  position: relative;
}
.footer_copy {
  margin: 20px auto 80px;
  font-weight: 400;
  font-size: 0.6875rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.02em;
  text-align: center;
}

.navToggle {
  display: inline-flex;
  position: relative;
  justify-content: center;
  align-items: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  z-index: 10;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
  width: 48px;
  height: 48px;
}
.navToggle_icon {
  display: block;
  position: relative;
  box-sizing: border-box;
  background: var(--color-main);
  width: 48px;
  height: 48px;
}
.navToggle_line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: top 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  border-radius: 999px;
  background: #fff;
  width: 20px;
  height: 1px;
}
.navToggle_line:nth-child(1) {
  top: 15px;
}
.navToggle_line:nth-child(2) {
  top: 23px;
}
.navToggle_line:nth-child(3) {
  top: 31px;
}
.navToggle.is-open .navToggle_line:nth-child(1) {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}
.navToggle.is-open .navToggle_line:nth-child(2) {
  opacity: 0;
}
.navToggle.is-open .navToggle_line:nth-child(3) {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}

.homeKv {
  position: relative;
}
.homeTel {
  background-color: #fff;
  padding: 20px;
  text-align: center;
}
.homeTel_text {
  margin-top: 0;
  margin-bottom: 10px;
  color: #1a2033;
}
.homeTel_link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.homeTel_icon {
  flex-shrink: 0;
  width: 42px;
}
.homeTel_icon img {
  display: block;
  width: 100%;
  height: auto;
}
.homeTel_number {
  display: block;
  max-width: 100%;
  height: auto;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.2;
}

.homeConcept {
  position: relative;
  background: #d5eef4;
  overflow: hidden;
}
.homeConcept::before, .homeConcept::after {
  position: absolute;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  content: "";
}
.homeConcept::before {
  top: 48px;
  left: 0;
  background-image: url("../images/illust_1.svg");
  width: 70px;
  height: 82px;
}
.homeConcept::after {
  top: 12px;
  right: 0;
  background-image: url("../images/illust_2.svg");
  width: 62px;
  height: 90px;
}
.homeConcept_inner {
  position: relative;
  z-index: 2;
  padding: 58px 10px 56px;
  max-width: 1080px;
  text-align: center;
}
.homeConcept_head {
  margin-bottom: 24px;
}
.homeConcept_en {
  display: inline-block;
  position: relative;
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--color-red);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeConcept_heading {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeConcept_body {
  display: -ms-grid;
  display: grid;
  gap: 22px;
  max-width: 1080px;
}
.homeConcept_text {
  margin: 0;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}

.homeReason {
  position: relative;
  background: #d5eef4;
  overflow: hidden;
}
.homeReason::before, .homeReason::after {
  position: absolute;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  content: "";
}
.homeReason::before {
  top: 62px;
  left: 0;
  background-image: url("../images/illust_1.svg");
  width: 80px;
  height: 95px;
}
.homeReason::after {
  top: 0;
  right: 0;
  background-image: url("../images/illust_2.svg");
  width: 108px;
  height: 120px;
}
.homeReason_inner {
  position: relative;
  z-index: 2;
  padding: 86px 20px 60px;
}
.homeReason_head {
  margin-bottom: 34px;
  text-align: center;
}
.homeReason_en {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--color-red);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeReason_heading {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeReason_lead {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 34px;
  color: var(--color-navy);
  font-weight: 700;
}
.homeReason_num {
  color: var(--color-red);
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
}
.homeReason_leadText {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeReason_list {
  display: -ms-grid;
  display: grid;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.homeReason_card {
  border: 3px solid #d0d0d0;
  border-radius: 8px;
  background: #fff;
  padding: 28px 26px 26px;
  overflow: hidden;
}
.homeReason_cardTitle {
  margin-top: 0;
  margin-bottom: 22px;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
}
.homeReason_cardText {
  margin-top: 0;
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeReason_pic {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 220px;
}
.homeReason_pic img {
  display: block;
  width: 100%;
  height: auto;
}

.homeDifference {
  position: relative;
  background: #d5eef4;
  overflow: hidden;
}
.homeDifference::before, .homeDifference::after {
  position: absolute;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  content: "";
}
.homeDifference::before {
  top: 62px;
  left: 0;
  background-image: url("../images/illust_1.svg");
  width: 80px;
  height: 95px;
}
.homeDifference::after {
  top: 0;
  right: 0;
  background-image: url("../images/illust_2.svg");
  width: 108px;
  height: 120px;
}
.homeDifference_inner {
  position: relative;
  z-index: 2;
  padding: 86px 18px 60px;
}
.homeDifference_head {
  margin-bottom: 36px;
  text-align: center;
}
.homeDifference_en {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--color-red);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeDifference_heading {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeDifference_tableWrap {
  margin-right: auto;
  margin-left: auto;
  max-width: 680px;
}
.homeDifference_table {
  border-collapse: collapse;
  background: #fff;
  width: 100%;
  table-layout: fixed;
}
.homeDifference_table th,
.homeDifference_table td {
  border: 1px solid #b8b8b8;
  color: var(--color-navy);
}
.homeDifference_table thead th {
  vertical-align: middle;
  height: 64px;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
}
.homeDifference_table tbody th {
  vertical-align: middle;
  padding: 10px 6px;
  width: 56px;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.2;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
}
.homeDifference_table tbody th span {
  display: block;
  line-height: 1.2;
}
.homeDifference_table tbody td {
  vertical-align: top;
  padding: 22px 8px 16px;
  height: 132px;
  text-align: center;
}
.homeDifference_table tbody td p {
  margin-top: 14px;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeDifference_empty {
  background: var(--color-bg);
  width: 56px;
}
.homeDifference_th {
  background: #f5f5f5;
}
.homeDifference_th--buy {
  background: #ffd51e;
}
.homeDifference_symbol {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 58px;
  height: auto;
}
.homeDifference_recommend {
  margin-top: 46px;
  text-align: center;
}
.homeDifference_recommendTitle {
  margin-top: 0;
  margin-bottom: 26px;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeDifference_checkList {
  display: -ms-inline-grid;
  display: inline-grid;
  gap: 12px;
  margin: 0 0 0 30px;
  padding: 0;
  list-style: none;
  text-align: left;
}
.homeDifference_checkItem {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-navy);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeDifference_checkIcon {
  flex-shrink: 0;
  width: 28px;
}
.homeDifference_checkIcon img {
  display: block;
  width: 100%;
  height: auto;
}

.homeFlow {
  position: relative;
  background: #d5eef4;
  overflow: hidden;
}
.homeFlow::before, .homeFlow::after {
  position: absolute;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  content: "";
}
.homeFlow::before {
  top: 62px;
  left: 0;
  background-image: url("../images/illust_1.svg");
  width: 80px;
  height: 95px;
}
.homeFlow::after {
  top: 0;
  right: 0;
  background-image: url("../images/illust_2.svg");
  width: 108px;
  height: 120px;
}
.homeFlow_inner {
  position: relative;
  z-index: 2;
  padding: 86px 20px 60px;
}
.homeFlow_head {
  margin-bottom: 36px;
  text-align: center;
}
.homeFlow_en {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--color-red);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeFlow_heading {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeFlow_list {
  display: -ms-grid;
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.homeFlow_card {
  border-radius: 8px;
  background: #fff;
  padding: 24px 22px 28px;
  overflow: hidden;
}
.homeFlow_cardTitle {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 0;
  margin-bottom: 24px;
  color: var(--color-navy);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeFlow_step {
  flex-shrink: 0;
  color: var(--color-red);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeFlow_text {
  margin-top: 0;
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeFlow_contact {
  display: -ms-grid;
  display: grid;
  justify-items: start;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 28px;
}
.homeFlow_tel {
  display: block;
  width: 230px;
  height: auto;
}
.homeFlow_line {
  display: block;
  width: 34px;
  height: auto;
}
.homeFlow_pic {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 230px;
}
.homeFlow_pic img {
  display: block;
  width: 100%;
  height: auto;
}
.homeFlow .flowPc {
  display: none;
}
.homeFlow .flowPc_inner {
  margin-inline: auto;
  max-width: 1200px;
}
.homeFlow .flowPc_list {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.homeFlow .flowPc_item {
  display: -ms-grid;
  display: grid;
  position: relative;
  flex: 1;
  place-content: center;
  border: 2px solid #f5b400;
  border-radius: 4px;
  background: #fff;
  padding: 10px;
  min-height: 80px;
  text-align: center;
}
.homeFlow .flowPc_item:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -21px;
  transform: translateY(-50%);
  z-index: 2;
  background: url("../images/icon_arr.svg") no-repeat center/contain;
  width: 18px;
  height: 18px;
  content: "";
}
.homeFlow .flowPc_step {
  margin-bottom: 10px;
  color: #e92d63;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
}
.homeFlow .flowPc_text {
  color: #222;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
}

.homeFaq {
  position: relative;
  background: #d5eef4;
}
.homeFaq::before, .homeFaq::after {
  position: absolute;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  content: "";
}
.homeFaq::before {
  top: 62px;
  left: 0;
  background-image: url("../images/illust_1.svg");
  width: 80px;
  height: 95px;
}
.homeFaq::after {
  top: 0;
  right: 0;
  background-image: url("../images/illust_2.svg");
  width: 108px;
  height: 120px;
}
.homeFaq_inner {
  padding: 20px 20px 60px;
}
.homeFaq_head {
  margin-bottom: 36px;
  text-align: center;
}
.homeFaq_en {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--color-red);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeFaq_heading {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeFaq_list {
  margin: 0;
}
.homeFaq_item {
  border-bottom: 1px solid #cfc8b7;
  padding: 24px 0;
}
.homeFaq_item:first-child {
  border-top: 1px solid #cfc8b7;
}
.homeFaq_item.is-open .homeFaq_icon::after {
  opacity: 0;
}
.homeFaq_item.is-open .homeFaq_answer {
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  margin-top: 18px;
}
.homeFaq_item.is-open .homeFaq_answerInner {
  transform: translateY(0);
  opacity: 1;
}
.homeFaq_question {
  margin: 0;
}
.homeFaq_trigger {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  border: 0;
  background: transparent;
  padding: 0;
  width: 100%;
  text-align: left;
}
.homeFaq_q {
  flex-shrink: 0;
  color: #f0c400;
  font-weight: 500;
  font-size: 28px;
  line-height: 1;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
}
.homeFaq_questionText {
  flex: 1;
  padding-top: 4px;
  color: #333;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeFaq_icon {
  position: relative;
  flex-shrink: 0;
  margin-top: 8px;
  width: 16px;
  height: 16px;
}
.homeFaq_icon::before, .homeFaq_icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  background: #333;
  content: "";
}
.homeFaq_icon::before {
  width: 16px;
  height: 2px;
}
.homeFaq_icon::after {
  width: 2px;
  height: 16px;
}
.homeFaq_answer {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 0fr;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease, margin-top 0.35s ease;
  transition: grid-template-rows 0.35s ease, margin-top 0.35s ease, -ms-grid-rows 0.35s ease;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 35px;
  overflow: hidden;
}
.homeFaq_answerInner {
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  min-height: 0;
  overflow: hidden;
}
.homeFaq_answerInner p {
  margin: 0;
  color: var(--color-navy);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}

.homeWorks {
  background: #d5eef4;
  padding-bottom: 80px;
}
.homeWorks_head {
  margin-bottom: 36px;
  text-align: center;
}
.homeWorks_en {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--color-red);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeWorks_heading {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeWorks_inner {
  padding: 40px 0;
}
.homeWorks_head {
  margin-bottom: 24px;
  text-align: center;
}
.homeWorks_block:not(:first-of-type) {
  margin-top: 28px;
}
.homeWorks_label {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}
.homeWorks_swiper {
  overflow: visible;
}
.homeWorks_slide {
  flex-shrink: 0;
  background-color: #ddd;
  aspect-ratio: 335/220;
  width: calc(100vw - 72px) !important;
  max-width: 335px;
  overflow: hidden;
}
.homeWorks_slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.homeWorks_note {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1080px;
  text-align: center;
}

.homeContact {
  background: var(--color-white);
}
.homeContact_inner {
  padding: 76px 24px 70px;
}
.homeContact_head {
  margin-bottom: 40px;
  text-align: center;
}
.homeContact_en {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--color-red);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeContact_heading {
  margin-top: 0;
  margin-bottom: 0;
  color: var(--color-text);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeContact_form {
  display: -ms-grid;
  display: grid;
  gap: 32px;
}
.homeContact_field {
  display: -ms-grid;
  display: grid;
  gap: 14px;
}
.homeContact_field[data-property-field] {
  display: none;
}
.homeContact_field.is-show {
  display: -ms-grid;
  display: grid;
}
.homeContact_labelRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.homeContact_label {
  margin: 0;
  color: var(--color-text);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeContact_note {
  font-weight: 700;
  font-size: 0.6875rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.02em;
}
.homeContact_required {
  display: -ms-grid;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  border-radius: 2px;
  background: var(--color-red);
  width: 52px;
  height: 28px;
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeContact_radioList {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.homeContact_radio {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: var(--color-text);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeContact_radio input {
  position: relative;
  flex-shrink: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  margin: 0;
  border: 1px solid #cfcfcf;
  border-radius: 50%;
  background: var(--color-white);
  width: 24px;
  height: 24px;
}
.homeContact_radio input::before {
  position: absolute;
  opacity: 0;
  inset: 5px;
  border-radius: 50%;
  background: var(--color-red);
  content: "";
}
.homeContact_radio input:checked {
  border-color: var(--color-red);
}
.homeContact_radio input:checked::before {
  opacity: 1;
}
.homeContact_input, .homeContact_textarea {
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  background: var(--color-white);
  width: 100%;
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeContact_input:focus, .homeContact_textarea:focus {
  outline: 2px solid rgba(42, 182, 199, 0.3);
  outline-offset: 2px;
  border-color: var(--color-green);
}
.homeContact_input {
  padding: 0 12px;
  height: 47px;
}
.homeContact_textarea {
  padding: 12px;
  min-height: 214px;
  resize: vertical;
}
.homeContact_subField {
  display: -ms-grid;
  display: grid;
  gap: 8px;
}
.homeContact_subLabel {
  color: var(--color-text);
  font-weight: 700;
  font-size: 0.6875rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.02em;
}
.homeContact_privacy {
  margin-top: -8px;
  text-align: center;
}
.homeContact_privacyLabel {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeContact_privacyLabel input {
  position: relative;
  flex-shrink: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  margin: 0;
  margin-top: 1px;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  background: var(--color-white);
  width: 22px;
  height: 22px;
}
.homeContact_privacyLabel input::before {
  position: absolute;
  top: 2px;
  left: 7px;
  transform: rotate(45deg);
  opacity: 0;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  width: 5px;
  height: 11px;
  content: "";
}
.homeContact_privacyLabel input:checked {
  border-color: var(--color-red);
  background: var(--color-red);
}
.homeContact_privacyLabel input:checked::before {
  opacity: 1;
}
.homeContact_privacyLabel span {
  line-height: 1.7;
  text-align: left;
}
.homeContact_privacyLink {
  transition: opacity 0.3s ease;
  color: var(--color-red);
  text-decoration: underline;
}
.homeContact_privacyLink:hover {
  opacity: 0.7;
}
.homeContact_submitWrap {
  margin-top: 2px;
  text-align: center;
}
.homeContact_submit {
  display: -ms-inline-grid;
  display: inline-grid;
  place-items: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  border: 0;
  border-radius: 4px;
  background: #7fa2b8;
  width: min(100%, 280px);
  height: 64px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeContact_submit:hover {
  opacity: 0.85;
}
.homeContact_submit:active {
  transform: translateY(1px);
}
.homeContact_error {
  padding-left: 10px;
  color: #aa1313;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeContact_thanksLead {
  margin: 80px 10px;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
}
.homeContact_thanksTxt {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
}
.homeContact_formConfirm {
  margin: 0 auto;
  width: auto;
}
.homeContact_formConfirm dl {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 20px;
}
.homeContact_formConfirm dt {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeContact_formConfirm dd {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeContact_btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
}
.homeContact_submit {
  margin: 0 auto 20px;
  text-align: center;
}
.homeContact_back {
  display: -ms-inline-grid;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  margin: 0 auto;
  border: 0;
  border-radius: 4px;
  background: #999;
  width: min(100%, 200px);
  height: 42px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
}

.homeCompany {
  background: var(--color-bg);
}
.homeCompany_inner {
  padding: 76px 24px 70px;
}
.homeCompany_head {
  margin-bottom: 34px;
  text-align: center;
}
.homeCompany_en {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--color-red);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeCompany_heading {
  margin-top: 0;
  margin-bottom: 0;
  color: var(--color-text);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homeCompany_box {
  border-radius: 8px;
  background: var(--color-white);
  padding: 0 18px;
}
.homeCompany_list {
  margin: 0;
}
.homeCompany_item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 86px 1fr;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  border-bottom: 1px solid #d8d8d8;
  padding: 24px 0;
}
.homeCompany_item:last-child {
  border-bottom: 0;
}
.homeCompany_label, .homeCompany_text {
  margin: 0;
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}

.homePrivacy {
  background: var(--color-white);
}
.homePrivacy_inner {
  padding: 76px 24px 80px;
}
.homePrivacy_head {
  margin-bottom: 48px;
  text-align: center;
}
.homePrivacy_en {
  margin-bottom: 12px;
  color: var(--color-red);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homePrivacy_heading {
  color: var(--color-text);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homePrivacy_body {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.75;
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homePrivacy_lead {
  margin-bottom: 48px;
}
.homePrivacy_section {
  margin-top: 56px;
}
.homePrivacy_section:first-child {
  margin-top: 0;
}
.homePrivacy_section h3 {
  position: relative;
  margin-bottom: 20px;
  padding-left: 16px;
  color: var(--color-text);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.homePrivacy_section h3::before {
  position: absolute;
  top: 4px;
  left: 0;
  border-radius: 999px;
  background: var(--color-red);
  width: 4px;
  height: calc(100% - 8px);
  content: "";
}
.homePrivacy_section p {
  margin-top: 0;
}
.homePrivacy_section ul {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  margin-top: 20px;
  padding-left: 1.4em;
}
.homePrivacy_section li {
  line-height: 1.9;
}

.fixedContact {
  display: -ms-grid;
  display: grid;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  -ms-grid-columns: 176px 1fr;
  grid-template-columns: 176px 1fr;
  z-index: 1000;
  height: 150px;
}
.fixedContact_line, .fixedContact_tel {
  display: -ms-grid;
  display: grid;
  place-items: center;
  text-decoration: none;
}
.fixedContact_line {
  background: #06c755;
}
.fixedContact_line img {
  display: block;
  width: 76px;
  height: auto;
}
.fixedContact_tel {
  background: var(--color-green);
  color: var(--color-white);
}
.fixedContact_telText {
  margin-bottom: 8px;
  color: var(--color-white);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.fixedContact_telBody {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.fixedContact_telIcon {
  display: block;
  width: 54px;
  height: auto;
}
.fixedContact_telNumber {
  color: var(--color-white);
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
}
@media print, screen and (min-width: 768px) {
  html {
    scroll-padding-top: 80px;
  }
  body a {
    transition: all 0.5s ease;
  }
  body a:hover {
    opacity: 0.6;
  }
  ._sp {
    display: none !important;
  }
  .header {
    position: fixed;
    justify-content: flex-start;
    gap: 40px;
    width: 100%;
    height: 100px;
  }
  .header_logo {
    width: 230px;
  }
  .header_logo img {
    width: 100%;
    height: auto;
  }
  .header_text {
    font-size: 0.75rem;
    text-align: left;
  }
  .header_tel {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-left: auto;
    width: 320px;
  }
  .header_tel img {
    margin-bottom: 5px;
    width: 40px;
    height: auto;
  }
  .header_telLead {
    display: block;
    margin-bottom: 5px;
    font-size: 0.875rem;
    line-height: 1.4;
    text-align: center;
  }
  .header_telNumber {
    font-weight: 700;
    font-size: 2.25rem !important;
    line-height: 1;
  }
  .main._home {
    padding-top: 5rem;
  }
  .footer_copy {
    font-size: 0.75rem;
  }
  .navToggle.is-open {
    position: fixed !important;
    top: 16px !important;
    right: 24px !important;
    z-index: 1200 !important;
  }
  .homeTel {
    padding: 30px 0;
  }
  .homeTel_text {
    margin-bottom: 14px;
  }
  .homeTel_link {
    gap: 18px;
  }
  .homeTel_link._flow .homeTel_icon {
    width: 42px;
  }
  .homeTel_link._flow .homeTel_number {
    font-size: 2rem;
  }
  .homeTel_icon {
    width: 80px;
  }
  .homeTel_number {
    font-size: 3rem;
  }
  .homeConcept_en {
    font-size: 1rem;
  }
  .homeConcept_heading {
    font-size: 2.125rem;
  }
  .homeConcept_text {
    font-size: 1rem;
  }
  .homeConcept::before {
    top: 168px;
    left: -2%;
    width: 300px;
    height: 240px;
  }
  .homeConcept::after {
    top: 40px;
    right: -3%;
    width: 300px;
    height: 280px;
  }
  .homeConcept_inner {
    margin-right: auto;
    margin-left: auto;
    padding-top: 96px;
    padding-bottom: 96px;
    max-width: 920px;
  }
  .homeConcept_head {
    margin-bottom: 50px;
  }
  .homeConcept_en {
    margin-bottom: 12px;
    font-size: 14px;
  }
  .homeConcept_en::after {
    right: -38px;
    width: 30px;
  }
  .homeReason_en {
    font-size: 1rem;
  }
  .homeReason_heading {
    font-size: 2.125rem;
  }
  .homeReason_leadText {
    font-size: 2.125rem;
  }
  .homeReason_cardTitle {
    font-size: 2.125rem;
  }
  .homeReason_cardText {
    font-size: 1rem;
  }
  .homeReason::before {
    top: 168px;
    left: -2%;
    width: 300px;
    height: 240px;
  }
  .homeReason::after {
    top: 40px;
    right: -3%;
    width: 300px;
    height: 280px;
  }
  .homeReason_inner {
    margin-right: auto;
    margin-left: auto;
    padding-top: 110px;
    padding-bottom: 96px;
    max-width: 1080px;
  }
  .homeReason_head {
    margin-bottom: 50px;
  }
  .homeReason_list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[6];
    grid-template-columns: repeat(6, 1fr);
    align-items: stretch;
    gap: 24px;
  }
  .homeReason_item {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    height: 100%;
  }
  .homeReason_item:nth-child(4) {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2/span 2;
  }
  .homeReason_item:nth-child(5) {
    -ms-grid-column: 4;
    -ms-grid-column-span: 2;
    grid-column: 4/span 2;
  }
  .homeReason_card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .homeDifference_en {
    font-size: 1rem;
  }
  .homeDifference_heading {
    font-size: 2.125rem;
  }
  .homeDifference_table thead th {
    font-size: 1.25rem;
  }
  .homeDifference_table tbody th {
    font-size: 1rem;
  }
  .homeDifference_table tbody td p {
    font-size: 1rem;
  }
  .homeDifference_recommendTitle {
    font-size: 2.125rem;
  }
  .homeDifference_checkItem {
    font-size: 1.25rem;
  }
  .homeDifference::before {
    top: 268px;
    left: -2%;
    width: 300px;
    height: 240px;
  }
  .homeDifference::after {
    top: 40px;
    right: -3%;
    width: 300px;
    height: 280px;
  }
  .homeDifference_inner {
    margin-right: auto;
    margin-left: auto;
    padding-top: 110px;
    padding-bottom: 96px;
    max-width: 1080px;
  }
  .homeDifference_head {
    margin-bottom: 50px;
  }
  .homeDifference_checkList {
    display: -ms-grid;
    display: grid;
    margin-right: auto;
    margin-left: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .homeDifference_table thead th {
    height: 78px;
  }
  .homeDifference_table tbody th {
    width: 72px;
  }
  .homeDifference_table tbody td {
    height: 150px;
  }
  .homeDifference_empty {
    border: 1px solid red;
    background-color: var(--color-bg);
    width: 72px;
  }
  .homeDifference_symbol {
    width: 68px;
  }
  .homeFlow_en {
    font-size: 1rem;
  }
  .homeFlow_heading {
    font-size: 2.125rem;
  }
  .homeFlow_cardTitle {
    font-size: 1.75rem;
  }
  .homeFlow_step {
    font-size: 1.25rem;
  }
  .homeFlow_text {
    font-size: 1rem;
  }
  .homeFlow::before {
    top: 268px;
    left: -2%;
    width: 300px;
    height: 240px;
  }
  .homeFlow::after {
    top: 40px;
    right: -3%;
    width: 300px;
    height: 280px;
  }
  .homeFlow_inner {
    margin-right: auto;
    margin-left: auto;
    padding-top: 110px;
    padding-bottom: 96px;
    max-width: 1080px;
  }
  .homeFlow_head {
    margin-bottom: 50px;
  }
  .homeFlow_body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
  .homeFlow_text {
    flex: 1;
    margin-bottom: 0;
  }
  .homeFlow_pic {
    flex-shrink: 0;
    margin: 0;
    width: 280px;
  }
  .homeFlow_list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .homeFlow_card {
    padding: 32px 32px 34px;
    height: 100%;
  }
  .homeFlow_pic {
    width: 280px;
  }
  .homeFlow_tel {
    width: 260px;
  }
  .homeFlow .flowPc {
    display: block;
    margin-bottom: 40px;
  }
  .homeFaq_en {
    font-size: 1rem;
  }
  .homeFaq_heading {
    font-size: 2.125rem;
  }
  .homeFaq_questionText {
    font-size: 1rem;
  }
  .homeFaq_answerInner p {
    font-size: 1rem;
  }
  .homeFaq::before {
    top: 268px;
    left: -2%;
    width: 300px;
    height: 240px;
  }
  .homeFaq::after {
    top: 40px;
    right: -3%;
    width: 300px;
    height: 280px;
  }
  .homeFaq_inner {
    margin-right: auto;
    margin-left: auto;
    padding-top: 110px;
    padding-bottom: 96px;
    max-width: 960px;
  }
  .homeFaq_head {
    margin-bottom: 50px;
  }
  .homeFaq_item {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .homeFaq_answer {
    margin-left: 32px;
  }
  .homeWorks_en {
    font-size: 1rem;
  }
  .homeWorks_heading {
    font-size: 2.125rem;
  }
  .homeWorks_head {
    margin-bottom: 50px;
  }
  .homeWorks_label {
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 18px;
  }
  .homeWorks_slide {
    flex-shrink: 0;
    background-color: #ddd;
    aspect-ratio: 335/220;
    width: 100%;
    max-width: 480px;
    overflow: hidden;
  }
  .homeWorks_slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .homeContact_en {
    font-size: 1rem;
  }
  .homeContact_heading {
    font-size: 2.125rem;
  }
  .homeContact_label {
    font-size: 1rem;
  }
  .homeContact_note {
    font-size: 0.75rem;
  }
  .homeContact_required {
    font-size: 1rem;
  }
  .homeContact_radio {
    font-size: 1rem;
  }
  .homeContact_input, .homeContact_textarea {
    font-size: 1rem;
  }
  .homeContact_subLabel {
    font-size: 0.75rem;
  }
  .homeContact_privacyLabel {
    font-size: 1rem;
  }
  .homeContact_submit {
    font-size: 1.125rem;
  }
  .homeContact_error {
    font-size: 1rem;
  }
  .homeContact_thanksLead {
    font-size: 2.5rem;
  }
  .homeContact_thanksTxt {
    font-size: 1.25rem;
  }
  .homeContact_formConfirm dt {
    font-size: 1rem;
  }
  .homeContact_formConfirm dd {
    font-size: 1rem;
  }
  .homeContact_back {
    font-size: 1.125rem;
  }
  .homeContact_inner {
    margin-right: auto;
    margin-left: auto;
    padding-top: 100px;
    padding-bottom: 100px;
    max-width: 760px;
  }
  .homeContact_head {
    margin-bottom: 50px;
  }
  .homeContact_form {
    gap: 36px;
  }
  .homeContact_radioList {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 18px;
  }
  .homeContact_submit {
    width: 320px;
  }
  .homeContact_back {
    width: 200px;
  }
  .homeContact_formConfirm {
    margin: 0 auto;
    width: 600px;
  }
  .homeContact_formConfirm dl {
    display: flex;
    margin-bottom: 25px;
    border-bottom: 1px solid #dfdfdf;
    padding-bottom: 20px;
  }
  .homeContact_formConfirm dt {
    width: 200px;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.75;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.05em;
  }
  .homeContact_formConfirm dd {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.05em;
  }
  .homeCompany_en {
    font-size: 1rem;
  }
  .homeCompany_heading {
    font-size: 2.125rem;
  }
  .homeCompany_label, .homeCompany_text {
    font-size: 1rem;
  }
  .homeCompany_inner {
    margin-right: auto;
    margin-left: auto;
    padding-top: 100px;
    padding-bottom: 100px;
    max-width: 760px;
  }
  .homeCompany_box {
    padding-right: 32px;
    padding-left: 32px;
  }
  .homeCompany_item {
    -ms-grid-columns: 140px 1fr;
    grid-template-columns: 140px 1fr;
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .homePrivacy_en {
    font-size: 1rem;
  }
  .homePrivacy_heading {
    font-size: 2.125rem;
  }
  .homePrivacy_body {
    font-size: 1rem;
  }
  .homePrivacy_section h3 {
    font-size: 1.25rem;
  }
  .homePrivacy_inner {
    margin-right: auto;
    margin-left: auto;
    padding-top: 110px;
    padding-bottom: 120px;
    max-width: 860px;
  }
  .homePrivacy_head {
    margin-bottom: 64px;
  }
  .homePrivacy_body {
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.05em;
  }
  .homePrivacy_lead {
    margin-bottom: 64px;
  }
  .homePrivacy_section {
    margin-top: 72px;
  }
  .homePrivacy_section h3 {
    margin-bottom: 28px;
    padding-left: 20px;
  }
  .homePrivacy_section ul {
    gap: 14px;
  }
  .fixedContact {
    display: none;
  }
  .fixedContact_telText {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  ._pc {
    display: none !important;
  }
  .fixedContact {
    -ms-grid-columns: 96px 1fr;
    grid-template-columns: 96px 1fr;
    height: 72px;
  }
  .fixedContact_line img {
    width: 48px;
  }
  .fixedContact_telText {
    margin-top: 5px;
    margin-bottom: 2px;
    font-size: 14px;
    line-height: 1;
  }
  .fixedContact_telBody {
    gap: 10px;
  }
  .fixedContact_telIcon {
    width: 32px;
  }
  .fixedContact_telNumber {
    font-size: 24px;
  }
}
@media print, screen and (min-width: 768px) and (min-width: 768px) {
  .homeContact_formConfirm dt {
    font-size: 1rem;
  }
  .homeContact_formConfirm dd {
    font-size: 1rem;
  }
  .homePrivacy_body {
    font-size: 1rem;
  }
}
