@charset "UTF-8";
body {
  background-color: #f7f7f7;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #222;
  line-height: 2;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3675213675vw;
  }
}
@media (min-width: 1170px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* --- 基本のリンク設定 --- */
a,
a:link,
a:visited {
  outline: none;
  text-decoration: none;
  cursor: pointer;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove default font-weight */
h1,
h2,
h3,
h4 {
  font-weight: normal;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

figure {
  max-width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

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

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

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

/************************************
ボタン
************************************/
.c-btn {
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  width: 100%;
  text-decoration: none;
  display: inline-block;
  background-color: #f7f7f7;
  border: 1px solid #555; /* ボーダーの色と太さ */
  border-radius: 99px;
  padding: 10px 10px;
  padding: 0.625rem 0.625rem;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}
.c-btn span {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  font-size: 15px;
  font-size: 0.9375rem;
  color: #222;
  font-weight: 700;
}

.c-btn:hover span {
  color: #fff;
}

.c-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色・形状*/
  background-color: #dbdbdb;
  width: 100%;
  height: 100%;
  /*アニメーション*/
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: top;
          transform-origin: top;
}

.c-btn:hover::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.c-btn--yellow {
  background-color: #fce14d;
}

.c-btn--yellow::before {
  background-color: #ef3512;
}

.c-btn--arrow {
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  width: 100%;
  text-decoration: none;
  display: inline-block;
  background-color: #ebebeb;
  border-radius: 99px;
  padding: 10px 10px 10px 20px;
  padding: 0.625rem 0.625rem 0.625rem 1.25rem;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-btn--arrow span {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  font-size: 15px;
  font-size: 0.9375rem;
  color: #222;
  font-weight: 700;
  margin-right: auto;
}

.c-btn--arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色・形状*/
  background-color: #b2d00f;
  width: 100%;
  height: 100%;
  /*アニメーション*/
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.c-btn--arrow:hover::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.c-btn--arrow span {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.c-btn--arrow:hover span {
  color: #fff;
}

.c-btn--arrow::after {
  content: "";
  position: absolute;
  width: 28px;
  width: 1.75rem;
  height: 28px;
  height: 1.75rem;
  background: url(../../assets/images/ico_arrow01.svg) no-repeat center center/cover;
  -o-object-fit: cover;
     object-fit: cover;
  display: inline-block;
  right: 1em;
  z-index: 3;
}

/************************************
カード（利用者の声）
************************************/
.c-card {
  padding: 17px 20px;
  padding: 1.0625rem 1.25rem;
  width: 100%;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .c-card {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.c-card__img {
  width: 100%;
  max-width: 80px;
  max-width: 5rem;
}
.c-card__img svg {
  width: 100%;
  height: 100%;
}

.c-card__img.green svg #circle {
  fill: #3ccc9f;
}

.c-card__img.orange svg #circle {
  fill: #ebb954;
}

.c-card__img.green svg #circle {
  fill: #b2d00f;
}

.c-card__img.red svg #circle {
  fill: #ef3512;
}

.c-card__img.pink svg #circle {
  fill: #d695c1;
}

.c-card__text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 21px;
  margin-left: 1.3125rem;
}

.c-card__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-card__title {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1200px) {
  .c-card__title {
    font-size: 1rem;
  }
}

.c-card__text {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 7px;
  margin-top: 0.4375rem;
}

/************************************
カード（選ばれる理由）
************************************/
.c-card-long {
  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;
  background-color: #3ccc9f;
  width: 100%;
  border-radius: 1.5625rem;
  padding: 23px 22px 24px 22px;
  padding: 1.4375rem 1.375rem 1.5rem 1.375rem;
}

.c-card-long__title {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  min-height: 92px;
  min-height: 5.75rem;
  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;
  word-break: keep-all;
}

.c-card-long__img {
  margin-inline: auto;
  margin-top: 16px;
  margin-top: 1rem;
  width: 178px;
  width: 11.125rem;
  height: 178px;
  height: 11.125rem;
  -o-object-fit: cover;
     object-fit: cover;
  display: inline-block;
}

.c-card-long__img.reason01 {
  background: url(../../assets/images/ico_select-reason01.svg) no-repeat center center/cover;
}

.c-card-long__img.reason02 {
  background: url(../../assets/images/ico_select-reason02.svg) no-repeat center center/cover;
}

.c-card-long__img.reason03 {
  background: url(../../assets/images/ico_select-reason03.svg) no-repeat center center/cover;
}

.c-card-long__img.reason04 {
  background: url(../../assets/images/ico_select-reason04.svg) no-repeat center center/cover;
}

.c-card-long__text {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #fff;
  line-height: 2;
  margin-top: 34px;
  margin-top: 2.125rem;
}

@media screen and (min-width: 768px) {
  .c-card-long__title {
    min-height: 110px;
  }
  .c-card-long__text {
    min-height: 180px;
  }
}

/************************************
カード（機能紹介）
************************************/
.c-card--function {
  background-color: #b2d00f;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 22px;
  padding-top: 1.375rem;
  padding-bottom: 22px;
  padding-bottom: 1.375rem;
}
@media screen and (min-width: 768px) {
  .c-card--function {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.c-card__text-wrapper--function {
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .c-card__text-wrapper--function {
    margin-left: 1.3125rem;
  }
}

.c-card__text--function {
  color: #fff;
}

.c-card--function__img {
  width: 74px;
  width: 4.625rem;
  height: 74px;
  height: 4.625rem;
  background-size: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: inline-block;
}

.c-card--function__img.function01 {
  background: url(../../assets/images/ico_feature01.svg) no-repeat center center/cover;
}

.c-card--function__img.function02 {
  background: url(../../assets/images/ico_feature02.svg) no-repeat center center/cover;
}

.c-card--function__img.function03 {
  background: url(../../assets/images/ico_feature03.svg) no-repeat center center/cover;
}

.c-card--function__img.function04 {
  background: url(../../assets/images/ico_feature04.svg) no-repeat center center/cover;
}

.c-card--function__img.function05 {
  background: url(../../assets/images/ico_feature05.svg) no-repeat center center/cover;
}

.c-card--function__img.function06 {
  background: url(../../assets/images/ico_feature06.svg) no-repeat center center/cover;
}

.c-card--function__img.function07 {
  background: url(../../assets/images/ico_feature07.svg) no-repeat center center/cover;
}

.c-card--function__img.function08 {
  background: url(../../assets/images/ico_feature08.svg) no-repeat center center/cover;
}

/************************************
カード（ユーザーの声）
************************************/
.c-card-voice__img {
  aspect-ratio: 300/200;
}
.c-card-voice__img img {
  border-radius: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-card-voice__img {
    aspect-ratio: 360/240;
  }
}

.c-card-voice__body {
  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-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.c-card-voice__title {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #357bb5;
  border-bottom: 1px solid #357bb5;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.c-card-voice__info {
  font-weight: 700;
  margin-left: auto;
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.c-card-voice__text {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6666666667;
  margin-top: 15px;
  margin-top: 0.9375rem;
}

/************************************
ハンバーガーボタンのスタイリング 
************************************/
.c-btn-hamburger {
  width: 56px;
  width: 3.5rem;
  height: 56px;
  height: 3.5rem;
  background-color: rgba(0, 0, 0, .7);
  border-radius: 99px;
  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;
}

/***** 真ん中のバーガー線 *****/
.c-btn-hamburger__line {
  display: block;
  position: relative;
  width: 24px;
  width: 1.5rem;
  height: 2px;
  background-color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  /***** 上下のバーガー線 *****/
}
.c-btn-hamburger__line::before, .c-btn-hamburger__line::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.c-btn-hamburger__line::before {
  -webkit-transform: translateY(0.625rem);
          transform: translateY(0.625rem); /* 上の線の位置 */
}
.c-btn-hamburger__line:after {
  -webkit-transform: translateY(-0.625rem);
          transform: translateY(-0.625rem); /* 下の線の位置 */
}

/***** メニューオープン時 *****/
.c-btn-hamburger__line.open {
  /* 真ん中の線を透明に */
  background-color: transparent;
}

.c-btn-hamburger__line.open::before,
.c-btn-hamburger__line.open::after {
  content: "";
  background-color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.c-btn-hamburger__line.open::before {
  /* 上の線を傾ける */
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.c-btn-hamburger__line.open::after {
  /* 上の線を傾ける */
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/************************************
セクションタイトル
************************************/
.c-title-section {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.3333333333;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-title-section {
    line-height: normal;
    line-height: initial;
  }
}

.c-title-section__en {
  font-size: 12px;
  font-size: 0.75rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  display: block;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.c-title-section__en.blue {
  color: #357bb5;
}

.c-title-section__en.green {
  color: #3ccc9f;
}

.c-title-section__en.right-green {
  color: #b2d00f;
}

.c-title-section__en.red {
  color: #e53549;
}

/************************************
フッター
************************************/
.l-footer {
  position: relative;
  margin-top: 20px;
  margin-top: 1.25rem;
  z-index: 1;
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .l-footer {
    margin-top: 3.6875rem;
  }
}

.l-footer__inner {
  padding: 0 20px;
  padding: 0 1.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-footer__inner {
    max-width: 1170px;
    margin-inline: auto;
    padding: 0 25px;
  }
}

.l-footer__container {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 657px;
  max-width: 37rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-footer__container {
    grid-template-columns: 10rem 1fr;
    gap: 4.5rem;
  }
}

.l-footer__img {
  max-width: 150px;
  margin-inline: auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.l-footer__img:hover {
  opacity: 0.7;
}

.l-footer__text-wrapper {
  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;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .l-footer__text-wrapper {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 0;
  }
}

.l-footer__tel-text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #EF3512;
}

.l-footer__division {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 9px;
  margin-top: 0.5625rem;
}

.l-footer__tel {
  font-size: 40px;
  font-size: 2.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 5px;
  margin-top: 0.3125rem;
  margin-left: -25px;
  margin-left: -1.5625rem;
}
@media screen and (min-width: 768px) {
  .l-footer__tel {
    margin-left: 0rem;
    margin-right: calc(50% - 50vw);
  }
}

.l-footer__tel::before {
  content: "";
  display: inline-block;
  width: 27px;
  width: 1.6875rem;
  height: 27px;
  height: 1.6875rem;
  background-image: url("../images/ico_tel01.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  margin-right: 12px;
  margin-right: 0.75rem;
  margin-top: 5px;
  margin-top: 0.3125rem;
  word-break: keep-all;
}

.l-footer__extension {
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: -5px;
  margin-top: -0.3125rem;
}

.l-footer-copyright {
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
  margin-top: 86px;
  margin-top: 5.375rem;
}
@media screen and (min-width: 768px) {
  .l-footer-copyright {
    margin-top: 4.625rem;
  }
}

/*---------------------------
 header
---------------------------*/
.l-header {
  width: 100%;
  height: 77px;
  height: 4.8125rem;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .l-header {
    position: static;
    position: initial;
    height: 5.6875rem;
  }
}

.l-header__inner {
  max-width: 1366px;
  margin-inline: auto;
  padding-left: 19px;
  padding-left: 1.1875rem;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    padding: 0 1.25rem 0 2rem;
  }
}

.l-header__g-nav {
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-header__g-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.l-header__g-nav_drawer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: inherit;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .l-header__g-nav_drawer {
    padding: 0;
  }
}

.l-header__logo-wrapper {
  display: contents;
}

.l-header__logo {
  display: block;
  width: 182px;
  width: 11.375rem;
  padding: 10px 0;
  padding: 0.625rem 0;
  margin-right: auto;
  z-index: 100;
}
.l-header__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}
@media screen and (min-width: 768px) {
  .l-header__logo {
    width: 12.8125rem;
    padding: 0;
    margin-inline: initial;
    margin-right: auto;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

.l-header__logo:hover {
  opacity: 0.7;
}

.l-header__g-nav_contact--sp {
  width: calc(4.8125rem - 2px);
  height: calc(4.8125rem - 2px);
  margin-bottom: auto;
}

@media screen and (min-width: 768px) {
  .l-header__g-nav_contact--sp.u-mobile {
    display: none;
  }
}
.l-header__hm-btn {
  z-index: 1000;
  margin-right: 10px;
  margin-right: 0.625rem;
  position: fixed;
}
@media screen and (min-width: 768px) {
  .l-header__hm-btn {
    display: none;
  }
}

/*ナビゲーション部分*/
.l-header__g-nav_grid {
  background-color: #f7f7f7;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  width: 100%;
  top: -120%;
  left: 0;
  height: 100vh;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #f7f7f7;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .l-header__g-nav_grid {
    position: static;
    position: initial;
    width: 100%;
    background-color: transparent;
    height: inherit;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.l-header__g-nav_list {
  padding: 90px 22.5px 90px;
  padding: 5.625rem 1.40625rem 5.625rem;
}
@media screen and (min-width: 768px) {
  .l-header__g-nav_list {
    font-size: 1rem;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 0;
  }
}
@media screen and (min-width: 1350px) {
  .l-header__g-nav_list {
    margin-left: 3.6875rem;
  }
}

.l-header__g-nav_item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-header__g-nav_item {
    height: inherit;
  }
}

.l-header__g-nav_item--btn {
  display: block;
  text-align: center;
  margin-top: 50px;
  margin-top: 3.125rem;
}
.l-header__g-nav_item--btn a {
  max-width: 243px;
  max-width: 15.1875rem;
}
@media screen and (min-width: 768px) {
  .l-header__g-nav_item--btn {
    display: none;
  }
}

.l-header__g-nav_item--btn:last-child {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.l-header__g-nav_link {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #222;
  text-align: center;
  display: block;
  position: relative;
  padding: 20px 0;
  padding: 1.25rem 0;
}
@media screen and (min-width: 768px) {
  .l-header__g-nav_link {
    font-size: 1rem;
    color: #222;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: inherit;
    margin: 0 1.0625rem;
    border-top: none;
  }
}

.l-header__g-nav_link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 15%;
  width: 50%;
  height: 3px;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@media screen and (min-width: 768px) {
  .l-header__g-nav_link::after {
    bottom: 30%;
    left: 0;
    width: 100%;
    height: 3px;
    /*アニメーションの指定*/
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1); /*X方向0、Y方向1*/
    -webkit-transform-origin: left top;
            transform-origin: left top; /*左上基点*/
  }
}

@media screen and (min-width: 768px) {
  .l-header__g-nav_link:hover:after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1); /*X方向にスケール拡大*/
  }
}

.l-header__g-nav_link--kokoromusubi::after {
  background: #ef3512;
}

.l-header__g-nav_link--function::after {
  background: #b2d00f;
}

.l-header__g-nav_link--voice::after {
  background: #357bb5;
}

.l-header__g-nav_btn-wrapper {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header__g-nav_btn-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.l-header__g-nav_btn {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header__g-nav_btn {
    display: block;
    max-width: 10.625rem;
    margin-left: 0.625rem;
  }
}

.l-header__g-nav_btn:first-of-type {
  margin-left: 0;
}

/*ナビメニューOPEN時の動き*/
.l-header__g-nav_grid.open {
  top: 0;
  left: 0;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  overflow: auto;
  z-index: 99;
}

.l-header.open {
  position: fixed;
}

.l-header__hm-btn.opem {
  position: static;
  position: initial;
}

.under-body {
  overflow-x: hidden;
}

/*-- TOP FV--*/
.p-top-fv {
  z-index: 0;
  padding-top: 77px;
  padding-top: 4.8125rem;
}
@media screen and (min-width: 768px) {
  .p-top-fv {
    padding-top: 1.4375rem;
  }
}

.p-top-fv__inner {
  max-width: 1366px;
  margin-inline: auto;
  padding: 0 15px;
  padding: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-top-fv__inner {
    padding: 0;
  }
}

.p-top-fv__container {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-fv__container {
    grid-template-columns: 1fr 56.6%;
    gap: 3.125rem;
  }
}

.p-top-fv__container::before {
  content: "";
  position: absolute;
  bottom: -12px;
  bottom: -0.75rem;
  right: 0px;
  right: 0rem;
  width: 196px;
  width: 12.25rem;
  height: 196px;
  height: 12.25rem;
  background-image: url("../images/img_illust01.png");
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-fv__container::before {
    bottom: -9.5rem;
    right: -2.1875rem;
    width: 22.5rem;
    height: 22.5rem;
  }
}

.p-top-fv__info-container {
  max-width: 420px;
  max-width: 26.25rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-fv__info-container {
    margin-top: 20%;
    margin-left: 7.6875rem;
  }
}

.p-top-fv__info-container::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 592px;
  width: 37rem;
  height: 592px;
  height: 37rem;
  background-color: #fff;
  border-radius: 999px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-top-fv__info-container::after {
    left: 50%;
    top: 38%;
    width: 46rem;
    height: 46rem;
  }
}

.p-top-fv__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top-fv__title {
    font-size: 1.25rem;
  }
}

.p-top-fv__logo {
  width: 100%;
  max-width: 318px;
  max-width: 19.875rem;
  margin-top: 19px;
  margin-top: 1.1875rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-top-fv__logo {
    max-width: 26.25rem;
    width: 26.25rem;
    margin-inline: initial;
  }
}

.p-top-fv__info {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6666666667;
  text-align: center;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-top-fv__info {
    line-height: 2;
    word-break: keep-all;
    margin-top: 1.75rem;
  }
}

.p-top-fv__btn-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  padding: 0 15px;
  padding: 0 0.9375rem;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-top-fv__btn-container {
    gap: 1.25rem;
    padding: 0;
    margin-right: 0;
    margin-left: 0;
    margin-top: 2.625rem;
  }
}

.p-top-fv__btn-wrapper {
  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-top-fv__btn {
  max-width: 170px;
  max-width: 10.625rem;
  padding-top: 21.75px;
  padding-top: 1.359375rem;
  padding-bottom: 21.75px;
  padding-bottom: 1.359375rem;
}
@media screen and (min-width: 376px) {
  .p-top-fv__btn {
    min-width: 10.625rem;
    max-width: none;
    max-width: initial;
    width: 80%;
  }
}
@media screen and (min-width: 768px) {
  .p-top-fv__btn {
    max-width: 12.5rem;
    width: 100%;
  }
}

.p-top-fv__btn-description {
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 10px;
  margin-top: 0.625rem;
  text-align: center;
}

.p-top-fv__img {
  width: 100%;
  margin-top: 34px;
  margin-top: 2.125rem;
}
@media screen and (min-width: 768px) {
  .p-top-fv__img {
    width: 55.9375rem;
    margin-top: 0;
  }
}

.p-top-fv__under-container {
  margin-inline: auto;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-top-fv__under-container {
    padding: 0 25px;
  }
}

.p-top-fv__under-title {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top-fv__under-title {
    word-break: initial;
  }
}
.p-top-fv__under-title span {
  font-size: 35px;
  font-size: 2.1875rem;
  font-weight: 700;
  color: #ef3512;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-top-fv__under-title span {
    margin-left: 0.3em;
    font-size: 2.5rem;
  }
}

.p-top-fv__card-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  gap: 0.625rem;
  margin-top: 32px;
  margin-top: 2rem;
  padding: 0 32.5px;
  padding: 0 2.03125rem;
}
@media screen and (min-width: 768px) {
  .p-top-fv__card-container {
    padding: 0;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media screen and (min-width: 1024px) {
  .p-top-fv__card-container {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}

.p-top-fv__card.u-desktop {
  display: none;
}
@media screen and (min-width: 1024px) {
  .p-top-fv__card.u-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/*--こころむすびが選ばれる理由--*/
.p-top-reason {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.p-top-reason__inner {
  max-width: 1170px;
  margin-inline: auto;
  padding: 0 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-reason__inner {
    padding: 0 25px;
  }
}

@media screen and (min-width: 768px) {
  .p-top-reason__inner::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: -11%;
    width: 79.5%;
    max-width: 67.875rem;
    aspect-ratio: 1/1;
    background-color: #fff;
    border-radius: 50%;
    z-index: -1;
  }
}

.p-top-reason__title {
  text-align: center;
}

.p-top-reason__card-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  gap: 1.25rem;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-top-reason__card-wrapper {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

/*--こころむすびとは？--*/
.p-top-what {
  padding-top: 100px;
  padding-top: 6.25rem;
}

.p-top-what__inner {
  max-width: 1170px;
  margin-inline: auto;
  padding: 0 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-what__inner {
    padding: 0 25px;
  }
}

.p-top-what__movie {
  aspect-ratio: 375/211;
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-top-what__movie {
    aspect-ratio: 800/450;
    max-width: 50rem;
    margin-top: 3.25rem;
    margin-inline: auto;
  }
}
.p-top-what__movie iframe {
  width: 100%;
  height: 100%;
}

.p-top-what__bottom-circle {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.p-top-what__inner::before,
.p-top-what__inner::after,
.p-top-what__bottom-circle::before {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 1/1;
  background-color: #f2686b;
  border-radius: 50%;
  z-index: -1;
}

.p-top-what__inner::before {
  top: 256px;
  top: 16rem;
  left: -25%;
  width: 72%;
  max-width: 270px;
  max-width: 16.875rem;
}
@media screen and (min-width: 768px) {
  .p-top-what__inner::before {
    top: 21.6875rem;
    left: -13%;
    width: 33.55%;
    max-width: 24.375rem;
  }
}

.p-top-what__inner::after {
  top: 50px;
  top: 3.125rem;
  right: -8%;
  width: 24.5%;
  max-width: 280px;
  max-width: 17.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-what__inner::after {
    top: -1rem;
    right: -14%;
  }
}

.p-top-what__bottom-circle::before {
  bottom: -210px;
  bottom: -13.125rem;
  left: -10%;
  width: 48.8%;
  max-width: 667px;
  max-width: 41.6875rem;
}
@media screen and (min-width: 768px) {
  .p-top-what__bottom-circle::before {
    bottom: -25rem;
  }
}

.p-top-what__title {
  text-align: center;
}

.p-top-what__img {
  display: block;
  margin-top: 49px;
  margin-top: 3.0625rem;
}

/*--こころむすびの機能紹介--*/
.p-top-function {
  margin-top: 100px;
  margin-top: 6.25rem;
  background-color: #fff;
  padding: 80px 0;
  padding: 5rem 0;
}

.p-top-function__inner {
  max-width: 1170px;
  margin-inline: auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .p-top-function__inner {
    padding: 0 25px;
  }
}

.p-top-function__title {
  text-align: center;
}

.p-top-function__card-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 13px;
  gap: 1.25rem 0.8125rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-function__card-wrapper {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1.25rem;
    margin-top: 3.125rem;
  }
}

.p-top-function__btn {
  max-width: 222px;
  max-width: 13.875rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-inline: auto;
  padding-top: 17.75px;
  padding-top: 1.109375rem;
  padding-bottom: 17.75px;
  padding-bottom: 1.109375rem;
}

/*--ユーザーの声--*/
.p-top-voice {
  padding-top: 100px;
  padding-top: 6.25rem;
}

.p-top-voice__inner {
  max-width: 1170px;
  margin-inline: auto;
  padding: 0 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-voice__inner {
    padding: 0 25px;
  }
}

.p-top-voice__inner::after {
  content: "";
  display: block;
  position: absolute;
  top: -240px;
  top: -15rem;
  right: -42%;
  width: 72%;
  max-width: 270px;
  max-width: 16.875rem;
  aspect-ratio: 1/1;
  background-color: #549bd4;
  border-radius: 50%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-top-voice__inner::after {
    top: -13.25rem;
    right: -10%;
    width: 36.7%;
    max-width: 26.8125rem;
  }
}

.p-top-voice__title {
  text-align: center;
}

.p-top-voice__card-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px 20px;
  gap: 1.875rem 1.25rem;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-top-voice__card-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/*--ご利用の勧め-*/
.p-top-recommend {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-top-recommend__img {
  display: block;
  width: 150%;
  margin-left: -25px;
  margin-left: -1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-top-recommend__img {
    width: 100%;
    margin-left: 3.125rem;
  }
}

/*--CTA-*/
.p-top-cta {
  background-color: #fff;
  padding: 45px 0;
  padding: 2.8125rem 0;
}
@media screen and (min-width: 768px) {
  .p-top-cta {
    padding: 7.125rem 0;
    margin-top: -1.25rem;
  }
}

.p-top-cta__inner {
  max-width: 1005.5px;
  margin-inline: auto;
  padding: 0 25px;
}
@media screen and (min-width: 768px) {
  .p-top-cta__inner {
    padding: 0 25px;
  }
}

.p-top-cta__btn-container {
  padding: 0 7.75px;
  padding: 0 0.484375rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  gap: 1.25rem;
  margin-top: 52px;
  margin-top: 3.25rem;
  justify-items: center;
}
@media screen and (min-width: 768px) {
  .p-top-cta__btn-container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.p-top-cta__btn-text {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #ef3512;
  text-align: center;
  display: block;
}

.p-top-cta__btn {
  margin-top: 10px;
  margin-top: 0.625rem;
  padding-top: 21.75px;
  padding-top: 1.359375rem;
  padding-bottom: 21.75px;
  padding-bottom: 1.359375rem;
  width: 300px;
  width: 18.75rem;
}
/*# sourceMappingURL=styles.css.map */
