@charset "UTF-8";
/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
:root {
  --white: #ffffff;
  --text-color: #000000;
  --main: #185AA5;
  --sub: #C11414;
  --cta: #FCCA00;
  --pink: #FFDBDB;
  --bg: #f5f5f5;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
:root {
  --inner_width: 120rem;
  --pi: 5rem;
  --transition: 0.5s;
}

/* -------------------------------------------*/
:root {
  --text-base: "Zen Kaku Gothic New","Noto Sans JP",
              "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN",
              "游ゴシック",YuGothic,
              "メイリオ",Meiryo,
              sans-serif;
  --antique: "Zen Kaku Gothic Antique", sans-serif;
  --eng: "Zen Maru Gothic", sans-serif;
  --mincho: "Zen Antique Soft",serif;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
html,
body,
div,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  font-size: 100%;
  font-weight: 500;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

span {
  font-weight: inherit;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

html {
  -ms-overflow-style: scrollbar;
  font-size: 62.5%;
  overflow: auto;
}

body {
  color: var(--text-color);
  font-family: var(--text-base);
  font-size: 16px;
  font-weight: 500;
  height: 100%;
  height: 100%;
  letter-spacing: 0;
  line-height: 1;
  overflow-x: clip;
  position: relative;
}

body:not(.home) {
  background-color: var(--bg);
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

section {
  position: relative;
  width: 100%;
}

hgroup {
  position: relative;
}

a,
button {
  color: inherit;
  display: block;
  height: 100%;
  text-decoration: none;
  transition: var(--transition);
}
a::before, a::after,
button::before,
button::after {
  transition: var(--transition);
}

a[href^="tel:"] {
  display: inline-block;
}

picture {
  display: block;
}

img {
  height: 100%;
  vertical-align: middle;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

em {
  font-style: normal;
}

svg:not(:root) {
  overflow: hidden;
}

input,
button,
select,
optgroup,
textarea {
  background-color: transparent;
  border: none;
  border: none;
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  position: relative;
  vertical-align: middle;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

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

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  border: 0;
  margin: 0;
  min-width: 0;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  border-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

address {
  font-style: normal;
}
/* スクロールバーのトラックの背景色 */
::-webkit-scrollbar-track {
  background-color: transparent;
}

/* スクロールバーのスクロール部分 */
::-webkit-scrollbar-thumb {
  background-color: #19274e;
  border-radius: 5px;
}

/* スクロールバーの上部ボタン */
::-webkit-scrollbar-button:start {
  display: none;
}

/* スクロールバーの下部ボタン */
::-webkit-scrollbar-button:end {
  display: none;
}

/* -------------------------------------------*/
@keyframes btnArrow {
  0% {
    translate: 0 -50%;
  }
  10% {
    translate: 150% -50%;
  }
  15% {
    opacity: 0;
    translate: 150% -50%;
  }
  85% {
    opacity: 0;
    translate: -150% -50%;
  }
  90% {
    opacity: 1;
    translate: -150% -50%;
  }
  100% {
    opacity: 1;
    translate: 0 -50%;
  }
}
@keyframes handPointer {
  0% {
    scale: 1;
  }
  49% {
    scale: 4;
  }
  50% {
    opacity: 0;
    scale: 8;
  }
  51% {
    opacity: 0;
    scale: 0;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* -------------------------------------------*/
/* -------------------------------------------*/
.l-footer {
  background-color: var(--bg);
  padding-block: 3.4rem 8.2rem;
  padding-inline: var(--pi);
}

.l-footer__inner {
  margin-inline: auto;
  max-width: 130rem;
}

.l-footer__imageBox {
  aspect-ratio: 326/44;
  margin-inline: auto;
  width: 32.6rem;
}

.l-footer__name {
  margin-inline: auto;
  margin-top: 1.2rem;
  text-align: center;
  width: 26rem;
}

.l-footer__menu-container {
  display: flex;
  gap: 3em;
  margin-inline: auto;
  margin-top: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
}

.l-footer__menu {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
}
.l-footer__menu::before {
  content: "|";
  display: block;
  left: -1.5em;
  position: absolute;
}
.l-footer__menu:first-child::before {
  display: none;
}

.l-footer__menu a {
  display: inline;
  font-weight: 500;
}

.l-footer__snsBlock {
  display: grid;
  gap: 1.9rem;
  grid-template-columns: 1fr 1fr;
  margin-inline: auto;
  margin-top: 3.8rem;
  width: 8.5rem;
}

.l-footer__sns-image {
  aspect-ratio: 1;
}

.l-footer__siteLink {
  display: grid;
  gap: 2.3076923077%;
  grid-template-columns: 1fr 1.43fr 2.87fr 1.55fr 0.92fr 1fr;
  margin-top: 4.6rem;
}

.l-footer__linkColumn {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.l-footer__linkColumn-ttl {
  line-height: 1.5;
  padding-left: 2.1rem;
  position: relative;
}
.l-footer__linkColumn-ttl::before {
  aspect-ratio: 1;
  background-image: url(../images/common/footer-icon.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 1.2rem;
}
.l-footer__link-container {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  padding-left: 1rem;
}

.l-footer__link-container--grid {
  display: grid;
  --column: 2;
  gap: 1rem;
  grid-template-columns: repeat(var(--column), 1fr);
}

.l-footer__link a {
  font-size: 1.5rem;
  line-height: 1.4;
  padding-left: 0.5em;
  position: relative;
}
.l-footer__link a::before {
  content: "-";
  display: block;
  left: 0;
  position: absolute;
}

.l-footer__menu-container02 {
  display: flex;
  gap: 1.5em;
  margin-inline: auto;
  margin-top: 9.1rem;
  width: -moz-fit-content;
  width: fit-content;
}

.l-footer__menu02 {
  font-size: 1.5rem;
  line-height: 1.4;
  position: relative;
}
.l-footer__menu02::before {
  content: "|";
  display: block;
  left: -1em;
  position: absolute;
}
.l-footer__menu02:first-child::before {
  display: none;
}
.l-footer__copy {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 5.2rem;
  text-align: center;
}

/* -------------------------------------------*/
.l-header {
  background-color: rgba(245, 245, 245, 0);
  background-color: var(--bg);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: var(--transition);
  z-index: 10;
}

.l-header__container {
  align-items: center;
  display: flex;
  gap: 3.8rem;
  margin-inline: auto;
  max-width: 2560px;
  padding-block: 4.1rem;
  padding-inline: var(--pi);
}

.l-header__logoBox {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 21.3rem 9.5rem;
}

.l-header__logo-image img {
  -o-object-fit: contain;
  object-fit: contain;
}

.l-header__hogosuru-image {
  border: 1px solid var(--main);
  padding: 1.2rem;
}
.l-header__hogosuru-image img {
  -o-object-fit: contain;
  object-fit: contain;
}
.l-header__menu-container {
  align-items: center;
  display: flex;
  gap: 3em;
}

.l-header__menu a {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.4705882353;
  position: relative;
}
.l-header__menu a::before {
  content: "|";
  left: -1.5em;
  position: absolute;
}
.l-header__menu a::after {
  background-color: var(--main);
  bottom: -0.8rem;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  right: 100%;
}

.l-header__gnav {
  position: relative;
}

.l-header__menu-icon {
  aspect-ratio: 1;
  position: absolute;
  right: -2.3rem;
  top: 50%;
  translate: 100% -50%;
  width: 3rem;
}

.l-header__menu:first-child a::before {
  display: none;
}

.l-header__sideBtnBox {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: fixed;
  right: -26.5rem;
  top: 4.8rem;
}

.l-header__sideBtn a {
  align-content: center;
  background-color: var(--cta);
  border-radius: 100px 0 0 100px;
  height: 7.8rem;
  padding-left: 2.9rem;
  width: 34.1rem;
}

.l-header__btnText {
  font-weight: 500;
  padding-left: 4.6rem;
  position: relative;
}
.l-header__btnText::before {
  aspect-ratio: 21.5/16;
  background-image: url(../images/common/mail-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 2.15rem;
}

.l-header__btnImg {
  padding-left: 4.9rem;
  position: relative;
}
.l-header__btnImg img {
  -o-object-fit: contain;
  aspect-ratio: 85.6/15.6;
  object-fit: contain;
  vertical-align: bottom;
  width: 8.56rem;
}
.l-header__btnImg span {
  font-weight: 500;
}
.l-header__btnImg::before {
  aspect-ratio: 25/25;
  background-image: url(../images/common/glass.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 2.5rem;
}

.l-header__menuBtn {
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 3px;
}
.l-header__menuBtn span {
  background-color: var(--main);
  border-radius: 50%;
  display: block;
  height: 3px;
  pointer-events: none;
  transition: var(--transition);
  transition-timing-function: cubic-bezier(0.881, -0.002, 0.146, 0.996);
  width: 3px;
}

.l-header__menuBtn.clicked span {
  border-radius: 0;
}
.l-header__menuBtn.clicked span:first-child {
  rotate: 45deg;
  translate: 0 6px;
  width: 3rem;
}
.l-header__menuBtn.clicked span:nth-child(2) {
  opacity: 0;
}
.l-header__menuBtn.clicked span:last-child {
  rotate: -45deg;
  translate: 0 -6px;
  width: 3rem;
}

.l-header__spNav {
  background-color: var(--main);
  bottom: 0;
  display: none;
  height: calc(100svh - 7.5rem);
  left: 0;
  opacity: 0;
  padding-inline: 2.6rem;
  position: fixed;
  right: 0;
  top: 7.5rem;
  visibility: hidden;
  z-index: 50;
}

.l-header__spNav.open {
  animation: open 0.3s forwards;
}

.l-header__spNav.close {
  animation: close 0.3s forwards;
}

@keyframes close {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes open {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
.l-header__spMenu-listContainer {
  color: var(--white);
  display: flex;
  flex-direction: column;
  padding-top: 1.3rem;
}

.l-header__spMenu-list a {
  border-bottom: 1px solid;
  font-size: 2rem;
  font-weight: 500;
  padding-block: 2.8rem 3.6rem;
}

.l-header__spMenu-list:last-child a {
  border-bottom: unset;
  padding-block: 2.8rem 1rem;
}

.l-header__spMenu-btn a {
  background-color: var(--cta);
  border-radius: 100px;
  height: 7.3rem;
  margin-inline: auto;
  margin-top: 1.8rem;
  max-width: 32.4rem;
  padding-block: 2.2rem;
  padding-left: 11.2rem;
  position: relative;
}
.l-header__spMenu-btn a::before {
  aspect-ratio: 25/25;
  background-image: url(../images/common/glass.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  left: 7.7rem;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 2.5rem;
}
.l-header__spMenu-btn a img {
  aspect-ratio: 135/30;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

/* -------------------------------------------*/
.l-main {
  position: relative;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.c-btn a {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4444444444;
  padding-left: 3.6rem;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.c-btn a span {
  font-weight: 500;
  position: relative;
}
.c-btn a span::before {
  aspect-ratio: 1;
  background-image: url(../images/common/arrow-bgYellow.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  left: -3.6rem;
  position: absolute;
  top: 50%;
  transition: var(--transition);
  translate: 0 -50%;
  width: 1.7rem;
}

.c-btn p {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4444444444;
  padding-left: 3.6rem;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.c-btn p span {
  font-weight: 500;
  position: relative;
}
.c-btn p span::before {
  aspect-ratio: 1;
  background-image: url(../images/common/arrow-bgYellow.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  left: -3.6rem;
  position: absolute;
  top: 50%;
  transition: var(--transition);
  translate: 0 -50%;
  width: 1.7rem;
}

.c-hogosuruCta-btn a {
  align-content: center;
  background-color: var(--white);
  border: 7px solid var(--cta);
  border-radius: 67px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  position: relative;
}
.c-hogosuruCta-btn a::before {
  aspect-ratio: 42/52;
  background-image: url(../images/hogosuru/search.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  position: absolute;
}
.c-hogosuruCta-btn a::after {
  aspect-ratio: 1;
  border: 3px solid var(--cta);
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  width: 3.6rem;
}

div:has(.c-cta) {
  background-color: var(--bg);
}

.c-cta {
  background-color: var(--main);
  color: var(--white);
  padding-block: 3.1rem 5.6rem;
  padding-inline: var(--pi);
  position: relative;
}
.c-cta::before {
  aspect-ratio: 342/307;
  background-image: url(../images/common/guide-decole.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 0;
  width: 21.375%;
  width: 350px;
  z-index: 0;
}

.c-cta__outside {
  margin-inline: auto;
  max-width: 2560px;
}

.c-cta__inner {
  margin-inline: auto;
  max-width: 92.6rem;
}

.c-cta__topBlock {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
}

.c-cta__topBlock-textBox {
  padding-bottom: 1.4rem;
}

.c-cta__topBlock-ttl {
  font-size: 3.6rem;
  font-weight: 700;
}

.c-cta__topBlock-text {
  font-size: 2.4rem;
  line-height: 1.4583333333;
  text-transform: uppercase;
}

.c-cta__topBlock-telBox {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.c-cta__topBlock-telLink a {
  display: block;
  font-size: 5.2rem;
  font-weight: 500;
  line-height: 1.4423076923;
  vertical-align: bottom;
}

.c-cta__topBlock-telIcon {
  aspect-ratio: 1;
  display: inline-block;
  width: 5rem;
}
.c-cta__topBlock-telIcon img {
  height: auto;
  vertical-align: center;
}

.c-cta__topBlock-info {
  font-weight: 500;
  line-height: 1.4375;
}

.c-cta__bottomBlock-btnBox {
  display: grid;
  gap: 2.1598272138%;
  grid-template-columns: 1fr 1.01fr 1.169fr;
  margin-top: 2.9rem;
}

.c-cta__secBtn {
  padding-bottom: 1.2rem;
}

.c-cta__secBtn a {
  align-content: center;
  background-color: var(--white);
  border: 3px solid var(--cta);
  border-radius: 100px;
  color: var(--text-color);
  font-size: 1.7rem;
  height: 6.9rem;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.c-cta__secBtn a > span {
  font-weight: 500;
  position: relative;
  z-index: 2;
}
.c-cta__secBtn a span svg {
  display: block;
  left: 0;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
.c-cta__secBtn a span svg path {
  transition: var(--transition);
}
.c-cta__secBtn a span svg .a {
  transition: var(--transition);
}

.c-cta__secBtn--contact a span {
  position: relative;
}
.c-cta__secBtn--contact a span img {
  aspect-ratio: 26/20;
  height: auto;
  width: 2.6rem;
}

.c-cta__secBtn--download a span {
  position: relative;
}
.c-cta__secBtn--download a span img {
  aspect-ratio: 27.6/21.2;
  height: auto;
  width: 2.76rem;
}

.c-cta__secBtn--faq a > span {
  padding-left: 3.9rem;
  position: relative;
}

.c-cta__secBtn--faq-image {
  aspect-ratio: 33/23;
  display: inline-block;
  left: 0;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 3.3rem;
}

.c-cta__secBtn--downloadBottom a span {
  padding-left: 7.6363636364%;
  position: relative;
}
.c-cta__secBtn--downloadBottom a span svg {
  aspect-ratio: 1;
  width: 1.6rem;
}

.c-bread {
  background-color: var(--white);
  border-radius: 29px;
  margin-inline: auto;
  margin-inline: auto;
  max-width: 2560px;
  padding: 1.6rem 2.5rem;
  width: 93.75%;
}

.c-bread__list {
  display: flex;
  font-size: 1.6rem;
  gap: 1.5em;
  line-height: 1.4444444444;
}

.c-bread__item {
  font-weight: 500;
  position: relative;
}
.c-bread__item:not(.c-bread__item:last-child)::before {
  content: ">";
  display: block;
  position: absolute;
  right: -1em;
}

.c-bread__link {
  font-weight: 500;
}

/* -------------------------------------------*/
.c-sec-ttl {
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.4444444444;
  padding-left: 4.2rem;
  position: relative;
}
.c-sec-ttl::before {
  background-color: var(--main);
  content: "";
  display: block;
  height: 0.7rem;
  left: 0;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 2.4rem;
}

.c-lowPage__ttl {
  color: var(--main);
  font-family: var(--antique);
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.45;
}

.c-lowPage__ttl-eng {
  font-family: var(--antique);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.45;
}

/* -------------------------------------------*/
.u-db {
  display: block;
}

.u-il {
  display: inline;
}

.u-dn {
  display: none;
}

.u-1080 {
  display: none;
}

.u-960 {
  display: none;
}

.u-820 {
  display: none;
}

.u-480 {
  display: none;
}

.u-768 {
  display: none !important;
}

.u-inner {
  margin-inline: auto;
  max-width: var(--inner_width);
}

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

.u-color-red {
  color: #C11414;
}

.u-color-main {
  color: var(--main);
}

.u-ff-eng {
  font-family: var(--eng);
}

.u-fw-700 {
  font-weight: 700;
}

.u-fw-500 {
  font-weight: 500;
}

.u-nowrap {
  white-space: nowrap;
}

@media (min-width: 480px){
  .l-header__spMenu-btn a {
    margin-top: 4.4rem;
  }
}

@media (max-width: 7689px){
  .c-cta__topBlock-telIcon {
    width: 4rem;
  }
}

@media (max-width: 1530px){
  .l-header__menu-container {
    gap: 2.4rem;
  }
  .l-header__menu a {
    font-size: 1.6rem;
  }
  .l-header__menu a::before {
    left: -1.2rem;
  }
}

@media (max-width: 1350px){
  .l-header__container {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 1280px){
  .l-footer__siteLink {
    grid-template-columns: 1fr 1.43fr 1.42fr 1.55fr 0.92fr 1fr;
  }
  .l-footer__link-container--grid {
    --column: 1;
  }
}

@media (max-width: 1200px){
  .l-header__spNav {
    display: block;
  }
  .c-cta__topBlock-text {
    font-size: max(2vw, 15px);
  }
  .c-cta__bottomBlock-btnBox {
    margin-top: max(2.75vw, 20px);
  }
  .c-cta__secBtn--downloadBottom a {
    width: 33.5rem;
  }
}

@media (max-width: 1080px){
  .l-footer__siteLink {
    gap: 3rem 2.3076923077%;
    grid-template-columns: 1fr 1fr 1.6fr;
  }
  .l-footer__link-container--grid {
    --column: 2;
  }
  .u-1080 {
    display: block;
  }
}

@media screen and (max-width: 1080px){
  html {
    font-size: 57.5%;
  }
}

@media (max-width: 1024px){
  .l-header__container {
    flex-direction: row;
    justify-content: space-between;
    --pi: 2rem 0rem;
    padding-block: 2.8rem;
  }
  .l-header__hogosuru-image {
    display: none;
  }
  .l-header__gnav {
    display: none;
  }
  .l-header__menu-icon {
    display: none;
  }
  .l-header__sideBtnBox {
    display: none;
  }
  .l-header__menuBtn {
    display: flex;
    padding-inline: 1.8rem;
  }
}

@media (max-width: 960px){
  .u-960__up {
    display: none !important;
  }
  .u-960 {
    display: block;
  }
}

@media (max-width: 820px){
  .u-820__up {
    display: none !important;
  }
  .u-820 {
    display: block;
  }
}

@media (max-width: 768px){
  .l-footer {
    padding-block: 4.3rem 2.4rem;
  }
  .l-footer__imageBox {
    width: 16.2rem;
  }
  .l-footer__name {
    margin-top: 0.6rem;
    width: 14.8rem;
  }
  .l-footer__copy {
    font-size: 1.3rem;
    margin-top: 2.4rem;
  }
  .l-header__logoBox {
    display: block;
    width: min(38.1333333333vw, 214px);
  }
  .c-hogosuruCta-btn a {
    border-width: 3px;
  }
  .c-hogosuruCta-btn a::after {
    border-width: 2px;
    width: 2.2rem;
  }
  .c-cta {
    padding-block: 4.6rem 5rem;
  }
  .c-cta::before {
    top: 0.5rem;
    width: 50.1333333333%;
  }
  .c-cta__topBlock-textBox {
    padding-bottom: 0;
    text-align: center;
  }
  .c-cta__topBlock-ttl {
    font-size: 3rem;
  }
  .c-cta__topBlock-text {
    font-weight: 500;
  }
  .c-cta__topBlock-telLink a {
    font-size: 3.9rem;
  }
  .c-cta__topBlock-info {
    font-size: 1.5rem;
  }
  .c-cta__bottomBlock-btnBox {
    gap: 1.9rem;
    grid-template-columns: 1fr;
  }
  .c-cta__secBtn {
    padding-bottom: 0;
  }
  .c-cta__secBtn a {
    font-size: 1.5rem;
    font-weight: 400;
    height: 6.4rem;
  }
  .c-cta__secBtn--downloadBottom {
    grid-area: g-4;
    margin-inline: auto;
  }
  .c-sec-ttl {
    font-size: max(4.6875vw, 25px);
    padding-left: max(5.46875vw, 37px);
  }
  .c-sec-ttl::before {
    height: 0.6rem;
    width: 2.1rem;
  }
  .c-lowPage__ttl {
    font-size: max(7.8125vw, 30px);
  }
}

@media not all and (max-width: 768px){
  a[href^="tel:"] {
    pointer-events: none;
  }
}

@media screen and (max-width: 768px){
  :root {
    --pi: 2rem;
  }
  html {
    font-size: 62.5%;
  }
  .c-btn a {
    align-content: center;
    background-color: var(--white);
    border: 2px solid var(--cta);
    border-radius: 60px;
    font-size: 1.5rem;
    font-weight: 400;
    height: 6.4rem;
    text-align: center;
    width: 33.5rem;
  }
  .c-btn p {
    align-content: center;
    background-color: var(--white);
    border: 2px solid var(--cta);
    border-radius: 60px;
    font-size: 1.5rem;
    font-weight: 400;
    height: 6.4rem;
    text-align: center;
    width: 33.5rem;
  }
  .u-768__up {
    display: none !important;
  }
  .u-768 {
    display: block !important;
  }
}

@media (max-width: 666px){
  .c-cta__topBlock {
    align-items: center;
    flex-direction: column;
    gap: 3rem;
  }
}

@media (max-width: 480px){
  .l-header__spMenu-list a {
    padding-block: 2.5svh 3.2142857143svh;
  }
  .l-header__spMenu-list:last-child a {
    padding-block: 2.5svh 1rem;
  }
  .u-480 {
    display: block;
  }
}

@media (hover: hover) and (pointer: fine){
  a:hover,
  button:hover {
    opacity: 0.7;
  }
  .l-footer__linkColumn-ttl a:hover {
    color: var(--main);
    opacity: 1;
  }
  .l-footer__link a:hover {
    color: var(--main);
    opacity: 1;
  }
  .l-footer__menu02 a:hover {
    color: var(--main);
    opacity: 1;
  }
  .l-header__menu a:hover::after {
    right: 0;
  }
  .l-header__sideBtn a:hover {
    opacity: 1;
    translate: -15.7rem;
  }
  .c-cta__secBtn a:hover {
    background-color: var(--cta);
    opacity: 1;
  }
  .c-cta__secBtn a:hover span svg path {
    fill: var(--text-color);
  }
  .c-cta__secBtn a:hover span svg .a {
    fill: var(--text-color);
  }
}

@media all and (-ms-high-contrast: none){
  html,
  body {
    display: none;
  }
}
/*# sourceMappingURL=maps/style.css.map */
