@charset "UTF-8";
body {
  color: #000;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc_only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc_only {
    display: block;
  }
}

/*モバイルのみ表示*/
@media screen and (min-width: 768px) {
  .sp_only {
    display: none;
  }
}

/*画像の縦横比設定*/
img {
  width: 100%;
  height: auto;
  display: block;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
}

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

*,
*::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;
  padding: 0;
}

/* Set core html 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]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

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

/* 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]) {
  -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;
}

.inner {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1050px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.inner__mini {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner__mini {
    max-width: 1050px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.section {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .section {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}

.header {
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #FFF;
}
@media screen and (min-width: 768px) {
  .header {
    height: 70px;
  }
}

.header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .header__inner {
    width: 76.875rem;
    max-width: 100%;
    margin-inline: auto;
  }
}

.header__logo {
  width: 15.625rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 28.125rem;
  }
}

.header__logo a:hover {
  opacity: 0.8;
}

.header__tel {
  width: 2.5rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .header__tel {
    width: 15.375rem;
  }
}

.fv {
  position: relative;
  margin-top: 50px;
  height: 35.625rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .fv {
    height: 49.375rem;
    margin-top: initial;
  }
}
@media screen and (min-width: 1050px) {
  .fv {
    height: 100vh;
    margin-top: initial;
  }
}

.fv__image {
  height: inherit;
  display: inline-block;
  position: relative;
  width: 100%;
}

.fv__img {
  height: inherit;
}

.fv__text {
  position: absolute;
  top: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 94%;
  max-width: 100%;
}
@media screen and (min-width: 480px) {
  .fv__text {
    width: 82%;
    top: 0;
  }
}
@media screen and (min-width: 550px) {
  .fv__text {
    width: 70%;
  }
}
@media screen and (min-width: 640px) {
  .fv__text {
    width: 58%;
  }
}
@media screen and (min-width: 768px) {
  .fv__text {
    width: 85.8125rem;
    top: 45%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media screen and (min-width: 1400px) {
  .fv__text {
    width: 85%;
  }
}

.accounting {
  background: url(../img/accounting_bg.png) no-repeat center center/cover;
}

.accounting__title {
  width: 12.9375rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .accounting__title {
    width: 21.5625rem;
  }
}

.accounting__text {
  font-size: 1.125rem;
  text-align: center;
  line-height: 1.2222222222;
  margin-top: 1.25rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .accounting__text {
    font-size: 1.25rem;
    line-height: 1.05;
    margin-top: 1.875rem;
  }
}

.accouting__content {
  background: #FFF;
  border-radius: 10px;
  padding: 1.875rem 1.6875rem;
  margin-top: 1.25rem;
  -webkit-box-shadow: 3px 2px 2px rgba(51, 51, 51, 0.2);
          box-shadow: 3px 2px 2px rgba(51, 51, 51, 0.2);
}
@media screen and (min-width: 768px) {
  .accouting__content {
    margin-top: 1.875rem;
    padding: 1.875rem 7.8125rem;
  }
}

.accounting__content-title {
  color: #1D65B2;
  font-size: 1.5rem;
  line-height: 1.25;
  text-align: center;
  font-weight: 700;
  width: 20rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .accounting__content-title {
    width: 100%;
    font-size: 1.625rem;
    line-height: 1.0769230769;
  }
}

.accounting__content-title span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(75%, #FFFB00));
  background: linear-gradient(transparent 75%, #FFFB00 75%);
}

.accounting__content-text {
  font-size: 1rem;
  line-height: 1.625;
  margin-top: 1.25rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .accounting__content-text {
    font-size: 1.125rem;
    line-height: 1.5555555556;
    margin-top: 1.875rem;
  }
}

.accounting__content-text span:first-child {
  color: #1D65B2;
  font-weight: 700;
}

.accounting__content-text span:nth-child(2),
.accounting__content-text span:nth-child(3) {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.text01 {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.accounting__content-attention {
  font-size: 0.875rem;
  line-height: 1.8571428571;
  font-weight: 500;
}

.accounting__content-image {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .accounting__content-image {
    margin-top: 1.875rem;
    width: 46.25rem;
  }
}

.accounting__content-attention:last-child {
  margin-top: 1.25rem;
  line-height: 1.2857142857;
}
@media screen and (min-width: 768px) {
  .accounting__content-attention:last-child {
    text-align: center;
    margin-top: 1.875rem;
  }
}

.fee {
  background: #1D65B2;
}

.fee__title {
  width: 18.1875rem;
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .fee__title {
    width: 56rem;
  }
}

.fee__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  row-gap: 1.875rem;
  -webkit-column-gap: 0.78125rem;
     -moz-column-gap: 0.78125rem;
          column-gap: 0.78125rem;
  margin-top: 1.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .fee__items {
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    margin-top: 1.875rem;
  }
}

.fee__item {
  width: 100%;
}

.fee__item-container {
  background: #FFF;
  border-radius: 0 0 10px 10px;
  padding-top: 0.65625rem;
  padding-right: 0.98125rem;
  padding-left: 0.98125rem;
  margin-top: -2px;
}
@media screen and (min-width: 768px) {
  .fee__item-container {
    padding-right: 0.73125rem;
    padding-left: 0.73125rem;
  }
}

.fee__item-title {
  background: #FFFEA8;
  color: #1D65B2;
  text-align: center;
  width: 18.75rem;
  max-width: 100%;
  margin-inline: auto;
  border-radius: 34px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1666666667;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .fee__item-title {
    width: initial;
    font-size: 0.875rem;
    line-height: 1.1071428571;
    padding-top: 3px;
    padding-bottom: 3px;
  }
}

.fee__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 19.6875rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .fee__item-content {
    display: block;
    max-width: 100%;
  }
}

.fee__item-normal {
  position: relative;
  padding-right: 1.6875rem;
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  .fee__item-normal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-right: initial;
    margin-top: initial;
  }
}

.fee__item-normal::after {
  content: "";
  position: absolute;
  background: url(../img/arrow_right.svg) no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .fee__item-normal::after {
    background: url(../img/arrow_down.svg) no-repeat;
    background-size: contain;
    width: 10px;
    height: 10px;
    left: 47%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    bottom: -20px;
    top: initial;
  }
}

.fee__item-label {
  font-size: 1rem;
  border: 1px solid #000;
  text-align: center;
  width: 6.25rem;
  max-width: 100%;
  font-weight: 700;
  height: 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .fee__item-label {
    width: 4.3125rem;
    font-size: 0.875rem;
    height: 1.375rem;
  }
}

.fee__item-label span {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.fee__item-price {
  font-family: "Arial";
  font-weight: 700;
  font-size: 2rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -7px;
}
@media screen and (min-width: 768px) {
  .fee__item-price {
    font-size: 1.75rem;
    margin-top: initial;
  }
}

.fee__item-price::after {
  position: absolute;
  content: "";
  background: #CF0012;
  background-size: contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 5rem;
  max-width: 100%;
  height: 2px;
  rotate: -15deg;
}
@media screen and (min-width: 768px) {
  .fee__item-price::after {
    width: 4.375rem;
  }
}

.fee__item-price span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  line-height: 1.1666666667;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .fee__item-price span {
    font-size: 1.125rem;
  }
}

.fee__item-low {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fee__item-number {
  font-family: "Arial";
  font-size: 4.0625rem;
  font-weight: 700;
  color: #CF0012;
}
@media screen and (min-width: 375px) {
  .fee__item-number {
    font-size: 4.3125rem;
  }
}
@media screen and (min-width: 768px) {
  .fee__item-number {
    font-size: 3.75rem;
  }
}
@media screen and (min-width: 1050px) {
  .fee__item-number {
    font-size: 4.125rem;
  }
}

.fee__item-tax {
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 500;
  margin-top: -5px;
}
@media screen and (min-width: 768px) {
  .fee__item-tax {
    font-size: 1.0625rem;
  }
}
@media screen and (min-width: 1050px) {
  .fee__item-tax {
    font-size: 1.11125rem;
  }
}

.fee__item-yen {
  font-size: 2.125rem;
  line-height: 0.8823529412;
  font-weight: 500;
  margin-top: 2px;
}
@media screen and (min-width: 768px) {
  .fee__item-yen {
    font-size: 1.9375rem;
  }
}
@media screen and (min-width: 1050px) {
  .fee__item-yen {
    font-size: 2rem;
  }
}

.cv {
  background: #FFFEA8;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .cv {
    padding-top: 1.875rem;
    padding-bottom: 3.125rem;
  }
}

.cv__image {
  position: relative;
  display: inline-block;
  margin-left: -0.625rem;
}
@media screen and (min-width: 768px) {
  .cv__image {
    margin-left: -1.125rem;
  }
}

.cv__btn {
  position: absolute;
  bottom: 8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .cv__btn {
    bottom: 13px;
    right: 1.375rem;
    left: initial;
    -webkit-transform: initial;
            transform: initial;
  }
}

.cv__btn-link {
  display: inline-block;
  color: #FFF;
  text-align: center;
  position: relative;
  z-index: 2;
  font-weight: 700;
}

.cv__push-radius {
  background: -webkit-gradient(linear, left bottom, left top, from(#FFAE31), to(#F46117));
  background: linear-gradient(to top, #FFAE31, #F46117);
  border-radius: 3px;
  padding: 1px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.cv__push-btn .cv__push-bg {
  position: relative;
  z-index: 5;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFAE31), to(#F46117));
  background: linear-gradient(180deg, #FFAE31, #F46117);
  display: inline-block;
  border: 3px solid;
  -o-border-image: linear-gradient(to top, #FFAE31, #F46117) 1;
     border-image: -webkit-gradient(linear, left bottom, left top, from(#FFAE31), to(#F46117)) 1;
     border-image: linear-gradient(to top, #FFAE31, #F46117) 1;
  border-radius: 3px;
  width: 20.25rem;
  max-width: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media screen and (min-width: 768px) {
  .cv__push-btn .cv__push-bg {
    border: 5px solid;
    -o-border-image: linear-gradient(to top, #FFAE31, #F46117) 1;
       border-image: -webkit-gradient(linear, left bottom, left top, from(#FFAE31), to(#F46117)) 1;
       border-image: linear-gradient(to top, #FFAE31, #F46117) 1;
    width: 31.875rem;
    height: 6.875rem;
    padding-top: 10px;
  }
}
@media screen and (min-width: 880px) {
  .cv__push-btn .cv__push-bg {
    border: 5px solid;
    -o-border-image: linear-gradient(to top, #FFAE31, #F46117) 1;
       border-image: -webkit-gradient(linear, left bottom, left top, from(#FFAE31), to(#F46117)) 1;
       border-image: linear-gradient(to top, #FFAE31, #F46117) 1;
    width: 32.5rem;
    height: 6.875rem;
    padding-top: 10px;
  }
}
@media screen and (min-width: 1050px) {
  .cv__push-btn .cv__push-bg {
    width: 34.3125rem;
  }
}

.cv__push-btn::after {
  content: "";
  /*絶対配置で影の位置を決める*/
  position: absolute;
  z-index: -1;
  top: 5px;
  border-radius: 3px;
  left: 0;
  /*影の形状*/
  width: 100%;
  height: 100%;
  background-color: #C15506;
}

.cv__push-btn:hover {
  background-color: transparent;
}

.cv__push-btn:hover .cv__push-radius {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

.cv__btn-text {
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  letter-spacing: 0.07em;
}
@media screen and (min-width: 768px) {
  .cv__btn-text {
    font-size: 0.8125rem;
    line-height: 0.65;
  }
}
@media screen and (min-width: 880px) {
  .cv__btn-text {
    font-size: 1.375rem;
    line-height: 0.6470588235;
  }
}

.cv__btn-text-big {
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .cv__btn-text-big {
    font-size: 1.5625rem;
  }
}

.cv__btn-number {
  font-size: 2.25rem;
  line-height: 0.7826086957;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .cv__btn-number {
    font-size: 3.875rem;
    line-height: 1.2419354839;
    margin-top: -5px;
  }
}

.reason {
  background: url(../img/reason_bg_sp.png) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .reason {
    background: url(../img/reason_bg.png) no-repeat center center/cover;
  }
}

.reason__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  row-gap: 1.875rem;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .reason__items {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    margin-top: 1.875rem;
  }
}

.reason__item {
  background: #1D65B2;
  padding: 3.3125rem 1.0625rem 1.0625rem;
  border-radius: 10px;
  position: relative;
  margin-top: 2.5625rem;
}
@media screen and (min-width: 768px) {
  .reason__item {
    padding: 2.5625rem 1.25rem 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.reason__item::after {
  position: absolute;
  content: "";
  top: -2.5625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 5.15625rem;
  height: 5.15625rem;
  background-size: contain;
}

.reason__item:nth-child(1)::after {
  background: url(../img/point01.svg) no-repeat;
}

.reason__item:nth-child(2)::after {
  background: url(../img/point02.svg) no-repeat;
}

.reason__item:nth-child(3)::after {
  background: url(../img/point03.svg) no-repeat;
}

.reason__item:nth-child(4)::after {
  background: url(../img/point04.svg) no-repeat;
}

.reason__item:nth-child(5)::after {
  background: url(../img/point05.svg) no-repeat;
}

@media screen and (min-width: 768px) {
  .reason__item:last-child {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3; /* 5番目の要素を1列目から2列目まで広げます */
    -ms-grid-column-align: center;
        justify-self: center;
    -ms-grid-row-align: center;
        align-self: center;
    width: 30rem; /* 5番目の要素の幅を設定 */
  }
}

@media screen and (min-width: 768px) {
  .reason__image img {
    width: 12.5rem;
    max-width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .reason__content {
    width: 13.6875rem;
    max-width: 100%;
    margin-left: 1.125rem;
    margin-top: 0.5625rem;
  }
}

.reason__content-title {
  font-size: 1.375rem;
  line-height: 2.3636363636;
  color: #FFFB00;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .reason__content-title {
    font-size: 1.25rem;
    line-height: 2.6;
    text-align: left;
  }
}

.reason__content-text {
  font-size: 1rem;
  line-height: 1.625;
  color: #FFF;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .reason__content-text {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

.flow {
  background: #CADBFF;
}

.flow__title {
  width: 14rem;
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .flow__title {
    width: 22.375rem;
  }
}

.flow__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  row-gap: 1.875rem;
  -webkit-column-gap: 0.78125rem;
     -moz-column-gap: 0.78125rem;
          column-gap: 0.78125rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .flow__items {
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}

.flow__item-content {
  width: 10.8125rem;
  max-width: 100%;
}

.flow__item-title {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #FF7700;
}

.flow__item-text {
  font-size: 0.875rem;
  line-height: 1.5714285714;
}

.maker {
  background: #FF7700;
}

.maker__title {
  width: 13.9375rem;
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .maker__title {
    width: 23.25rem;
  }
}

.maker__image {
  margin-top: 1.125rem;
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .maker__image {
    margin-top: 1.875rem;
    width: 36.875rem;
  }
}

.area__image {
  width: 40.5rem;
  max-width: 100%;
  margin-inline: auto;
}

.qa {
  background: #CADBFF;
}

.qa__title {
  width: 10.125rem;
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .qa__title {
    width: 16.875rem;
  }
}

.qa__items {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .qa__items {
    margin-top: 3.125rem;
  }
}

.qa__item:not(:first-child) {
  margin-top: 1.25rem;
}

.qa__dt {
  background: #1D65B2;
  color: #FFF;
  font-size: 1.125rem;
  border-radius: 10px;
  line-height: 1.5555555556;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-right: 2.5rem;
  height: 70px;
}
@media screen and (min-width: 768px) {
  .qa__dt {
    padding-top: 1rem;
    padding-bottom: 1rem;
    height: 60px;
  }
}

.qa__dt.is-active {
  border-radius: 10px 10px 0 0;
}

.qa__dt,
.qa__dd {
  padding-left: 3.75rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  position: relative;
  font-weight: 500;
  padding-right: 2.5rem;
}
@media screen and (min-width: 768px) {
  .qa__dt,
  .qa__dd {
    padding-left: 4.1875rem;
    padding-top: 1.1875rem;
    padding-bottom: 1.1875rem;
  }
}
@media screen and (min-width: 880px) {
  .qa__dt,
  .qa__dd {
    padding-left: 5.25rem;
    padding-top: 1.1875rem;
    padding-bottom: 1.1875rem;
  }
}

.qa__dd {
  padding-right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .qa__dd {
    padding-right: 2.5rem;
  }
}

.qa__dt span {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding-right: 1.875rem;
}

.qa__dt span::after {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/qa_q.png) no-repeat;
  background-size: contain;
  width: 2.5625rem;
  height: 2.5625rem;
  top: 50%;
  left: -50px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .qa__dt span::after {
    left: -40px;
    width: 2.375rem;
    height: 2.375rem;
  }
}
@media screen and (min-width: 880px) {
  .qa__dt span::after {
    left: -60px;
    width: 2.375rem;
    height: 2.375rem;
  }
}

.qa__dt::before,
.qa__dt::after {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 1px;
  background: #FFF;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
}
@media screen and (min-width: 768px) {
  .qa__dt::before,
  .qa__dt::after {
    right: 20px;
  }
}

.qa__dt::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.qa__dt.is-active::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.qa__dd span {
  position: relative;
}
/* @media screen and (min-width: 768px) {
  .qa__dd span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    padding-right: 1.875rem;
  }
} */

.qa__dd span::before {
  content: "";
  position: absolute;
  background: url(../img/qa_a.png) no-repeat;
  background-size: contain;
  width: 2.5625rem;
  height: 2.5625rem;
  top: 10%;
  left: -50px;
}
@media screen and (min-width: 768px) {
  .qa__dd span::before {
    width: 2.375rem;
    height: 2.375rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: -40px;
  }
}
@media screen and (min-width: 880px) {
  .qa__dd span::before {
    left: -60px;
  }
}

.qa__dd {
  background: #FFF;
  color: #000;
  border-radius: 0 0 10px 10px;
  font-size: 0.875rem;
  line-height: 1.5714285714;
  display: none;
}

.company-link {
  height: 2.5rem;
  line-height: 2.5rem;
}
@media screen and (min-width: 768px) {
  .company-link {
    height: 3.125rem;
    line-height: 3.125rem;
  }
}

.company-link__inner {
  height: inherit;
}

.company-link__btn {
  text-align: center;
  height: inherit;
}

.company-link__btn a {
  color: #000;
  display: inline-block;
  width: 100%;
  font-weight: 500;
  font-size: 0.75rem;
  height: inherit;
}

.company-link__btn a:hover {
  opacity: 0.6;
}

.footer {
  background: #1D65B2;
  height: 30px;
  line-height: 30px;
  margin-bottom: 6.6875rem;
}
@media screen and (min-width: 768px) {
  .footer {
    height: 50px;
    line-height: 50px;
    margin-bottom: 6.875rem;
  }
}

.footer__text {
  text-align: center;
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .footer__text {
    font-size: 0.875rem;
  }
}

.link-follow {
  position: fixed;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  height: 6.6875rem;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .link-follow {
    height: 6.875rem;
  }
}

.link-follow__content {
  text-align: center;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .link-follow__content {
    margin-top: 10px;
  }
}

.link-follow__btn {
  display: inline-block;
  color: #FFF;
  text-align: center;
  position: relative;
  z-index: 2;
  font-weight: 700;
}

.push-btn__radius {
  background: -webkit-gradient(linear, left bottom, left top, from(#FFAE31), to(#F46117));
  background: linear-gradient(to top, #FFAE31, #F46117);
  border-radius: 3px;
  padding: 1px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.push-btn .push-btn__bg {
  position: relative;
  z-index: 5;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFAE31), to(#F46117));
  background: linear-gradient(180deg, #FFAE31, #F46117);
  display: inline-block;
  border: 3px solid;
  -o-border-image: linear-gradient(to top, #FFAE31, #F46117) 1;
     border-image: -webkit-gradient(linear, left bottom, left top, from(#FFAE31), to(#F46117)) 1;
     border-image: linear-gradient(to top, #FFAE31, #F46117) 1;
  border-radius: 3px;
  width: 20.9375rem;
  max-width: 100%;
  /*アニメーションの指定*/
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media screen and (min-width: 768px) {
  .push-btn .push-btn__bg {
    border: 5px solid;
    -o-border-image: linear-gradient(to top, #FFAE31, #F46117) 1;
       border-image: -webkit-gradient(linear, left bottom, left top, from(#FFAE31), to(#F46117)) 1;
       border-image: linear-gradient(to top, #FFAE31, #F46117) 1;
    width: 32.5rem;
  }
}

.header__push-btn {
  margin-top: -5px;
}

@media screen and (min-width: 768px) {
  .header__push-btn .push-btn__bg {
    width: 15.375rem;
    border: 3px solid;
    -o-border-image: linear-gradient(to top, #FFAE31, #F46117) 1;
       border-image: -webkit-gradient(linear, left bottom, left top, from(#FFAE31), to(#F46117)) 1;
       border-image: linear-gradient(to top, #FFAE31, #F46117) 1;
  }
}

.header__tel-text {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.header__tel-text-big {
  font-size: 1rem;
}

.header__tel-number {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .header__tel-number {
    font-size: 1.8125rem;
    line-height: 1.3534482759;
    margin-top: -10px;
  }
}

.push-btn::after {
  content: "";
  /*絶対配置で影の位置を決める*/
  position: absolute;
  z-index: -1;
  top: 5px;
  border-radius: 3px;
  left: 0;
  /*影の形状*/
  width: 100%;
  height: 100%;
  background-color: #C15506;
}

.push-btn:hover {
  background-color: transparent;
}

.push-btn:hover .push-btn__radius {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

.link-follow__text {
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  letter-spacing: 0.07em;
}
@media screen and (min-width: 768px) {
  .link-follow__text {
    font-size: 1rem;
    line-height: 1.1875;
  }
}

.link-follow__text-big {
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .link-follow__text-big {
    font-size: 1.125rem;
  }
}

.link-follow__number {
  font-size: 2.8125rem;
  line-height: 1.1555555556;
  margin-top: -8px;
}
@media screen and (min-width: 768px) {
  .link-follow__number {
    font-size: 3.125rem;
    line-height: 1.1;
    margin-top: -5px;
  }
}

.company {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .company {
    margin-top: 7.5rem;
  }
}

.company__inner {
  margin-inline: auto;
  width: 680px;
  max-width: 100%;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}

.company__title {
  width: 7rem;
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .company__title {
    width: 12.3125rem;
  }
}

.company__items {
  border: 1px solid #1D65B2;
  font-size: 0.875rem;
  padding: 1.875rem 0.9375rem;
  margin-top: 1.875rem;
  /* height: 15.3125rem; */
}
@media screen and (min-width: 768px) {
  .company__items {
    /* height: 15.375rem; */
    padding: 1.875rem 2.8125rem;
  }
}

.company__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .company__item {
    padding-left: 1.25rem;
  }
}

.company__item:not(:first-child) {
  margin-top: 0.25rem;
}

.company__item:not(:last-child) {
  border-bottom: 1px solid #C5C6C6;
  padding-bottom: 0.25rem;
}

.company__item-label {
  width: 6.25rem;
  font-weight: 700;
}

.company__item-text {
  margin-left: 3.4375rem;
  font-weight: 500;
  pointer-events: none;
  line-height: 1.2857142857;
}
@media screen and (min-width: 768px) {
  .company__item-text {
    margin-left: 5.625rem;
  }
}

.company__attention {
  margin-top: 1.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  font-size: 0.875rem;
  line-height: 1.5714285714;
}
@media screen and (min-width: 768px) {
  .company__attention {
    line-height: 1.5;
  }
}

.privacy__container {
  border: 1px solid #1D65B2;
  font-size: 0.875rem;
  padding: 1.875rem 0.9375rem;
  margin-top: 3.75rem;
  margin-bottom: 0.75rem;
  overflow: scroll;
  height: 10.625rem;
}
@media screen and (min-width: 768px) {
  .privacy__container {
    margin-bottom: 3.125rem;
  }
}

.privacy__text-top {
  margin-top: 0.625rem;
}

.privacy__title {
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
}

.privacy__content {
  margin-top: 1.25rem;
}

.privacy__text {
  color: #898989;
  font-weight: 500;
}

.privacy__title-sub {
  font-weight: 700;
}
/*# sourceMappingURL=styles.css.map */
