@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@700&display=swap");
body {
  color: #000000;
}

/* -------------------------------------------- */
/* --------------- Noto Sans JP --------------- */
/* -------------------------------------------- */
/* -------------------------------------------- */
/* ----------------- Barlow ------------------- */
/* -------------------------------------------- */
/* -------------------------------------------- */
/* ------------- Zen Old Mincho --------------- */
/* -------------------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

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

/* マウスホバーがあるデバイスでのアニメーション */
@media (any-hover: hover) {
  a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
}
/* pc幅での電話発信しない */
@media (any-hover: hover) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
summary {
  display: block;
}

/* Safariで表示されるデフォルトの三角形アイコンを消します */
summary::-webkit-details-marker {
  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.5384615385vw;
  }
}
@media (min-width: 1040px) {
  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 {
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

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

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

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-inline: auto;
  max-width: 37.5rem;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1090px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.footer {
  padding-block: 0.625rem;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-block: 0.8125rem 0.875rem;
  }
}

.footer__copy {
  text-align: center;
  font-size: 0.625rem;
  line-height: 1.2;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .footer__copy {
    font-size: 0.75rem;
    line-height: 1.1666666667;
  }
}

.header {
  height: 3.9375rem;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .header {
    height: 5rem;
  }
}

.header__inner {
  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;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__inner {
    max-width: 78.9375rem;
  }
}

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

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.3125rem;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header__nav-link {
  color: #000000;
}

.header__nav-item.header__nav-item--tel {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .header__nav-item.header__nav-item--tel {
    font-size: 1.75rem;
  }
}

.header__nav-item.header__nav-item--tel .header__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__nav-item.header__nav-item--tel img {
  width: 1.5rem;
}
@media screen and (min-width: 768px) {
  .header__nav-item.header__nav-item--tel img {
    width: 2.25rem;
  }
}

.header__nav-item.header__nav-item--line {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav-item.header__nav-item--line {
    display: block;
    background: -webkit-gradient(linear, left top, right top, from(#C6A942), to(#BB961D));
    background: linear-gradient(to right, #C6A942, #BB961D);
    border-radius: 2.5rem;
    padding: 0.75rem 1.875rem;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2222222222;
  }
}

.header__nav-item.header__nav-item--line .header__nav-link {
  color: #FFFFFF;
}

.header__nav-item.header__nav-item--mail {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav-item.header__nav-item--mail {
    display: block;
    border-radius: 2.5rem;
    border: 1px solid #D8D8D8;
    padding: 0.625rem 1.875rem;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2222222222;
  }
}

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

/*.slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  margin-block: 1.9375rem;
  gap: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .slider {
    margin-block: 2.0625rem;
    gap: 2.3125rem;
  }
}*/
/* SP */
.slider {
  overflow: hidden;
  margin-block: 1.9375rem;
  min-height: 3.875rem;
}

/* PC */
@media screen and (min-width: 768px) {
  .slider {
    margin-block: 2.0625rem;
    min-height: 5.25rem;
  }
}


/*.slider__list {
  -webkit-animation: scroll-left 20s infinite linear 0.5s both;
          animation: scroll-left 20s infinite linear 0.5s both;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6875rem;
}*/
.slider__list {
  display: flex;
  gap: 1.6875rem;
  width: max-content;
  animation: slider-loop 20s linear infinite;
}
@media screen and (min-width: 768px) {
  .slider__list {
    gap: 2.3125rem;
  }
}


@media screen and (min-width: 768px) {
  .slider__list {
    gap: 2.3125rem;
  }
}

/*.slider__item {
  width: 50vw;
  height: 3.875rem;
}
@media screen and (min-width: 768px) {
  .slider__item {
    width: 16.6666666667vw;
    height: 5.25rem;
  }
}*/

.slider__item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/*.slider__item img {
  display: block;
  width: 100%;
}*/

/* SP */
.slider__item picture img {
  width: auto;
  height: auto;
  max-height: 3.875rem;
  display: block;
}

/* PC */
@media screen and (min-width: 768px) {
  .slider__item picture img {
    max-height: 5.25rem;
  }
}


/*@-webkit-keyframes scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}*/
@-webkit-keyframes slider-loop {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes slider-loop {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}


.news {
  background-color: #F2F2F2;
  padding-block: 2.4375rem 1.4375rem;
}
@media screen and (min-width: 768px) {
  .news {
    padding-block: 2.4375rem;
  }
}

.news__title {
  font-family: "Barlow", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  color: #006BA2;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .news__title {
    font-size: 1.375rem;
    line-height: 1.1818181818;
  }
}

.news__list {
  margin-top: 1.25rem;
  border-top: 1px solid #D9D9D9;
}

.news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.125rem;
  padding-block: 0.875rem;
  border-bottom: 1px solid #D9D9D9;
}
@media screen and (min-width: 768px) {
  .news__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.6875rem;
  }
}

.news__date {
  font-family: "Barlow", sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.2307692308;
}
@media screen and (min-width: 768px) {
  .news__date {
    font-size: 0.875rem;
    line-height: 1.2142857143;
  }
}

.news__text {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .news__text {
    font-size: 1rem;
    line-height: 1.1875;
  }
}

.news__more {
  margin-top: 1.0625rem;
  text-align: center;
  text-transform: uppercase;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .news__more {
    margin-top: 2rem;
  }
}

.news__more-link {
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1875;
  color: #000000;
}

.news__more[open] {
  margin-top: initial;
  text-decoration: none;
  text-align: left;
}

.news__more[open] .news__list {
  margin-top: initial;
  border-top: none;
}

.news__more[open] .news__more-link {
  display: none;
}

.about {
  background-image: url(../image/bg/about-bgSP.jpg);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 3.1875rem 2.375rem;
}
@media screen and (min-width: 768px) {
  .about {
    background-image: url(../image/bg/about-bg.jpg);
    padding-block: 3.5625rem 6.4375rem;
  }
}

.about__text {
  margin-top: 1.75rem;
  max-width: 21.8125rem;
  width: 100%;
  font-size: 1.0625rem;
  line-height: 1.83;
}
@media screen and (min-width: 768px) {
  .about__text {
    margin-top: 2.5rem;
    text-align: center;
    max-width: 38.6875rem;
    font-size: 1.25rem;
    line-height: 2;
    margin-inline: auto;
  }
}

.section-title {
  text-align: center;
}

.section-title__ja {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.4615384615;
}
@media screen and (min-width: 768px) {
  .section-title__ja {
    font-size: 2.5rem;
    line-height: 1.45;
  }
}

.section-title__ja.section-title__ja--white {
  color: #FFFFFF;
}

.section-title__ja-sub {
  display: block;
  font-size: 1rem;
  line-height: 1.4375;
}
@media screen and (min-width: 768px) {
  .section-title__ja-sub {
    font-size: 1.5rem;
    line-height: 1.4583333333;
  }
}

.section-title__en {
  margin-top: 0.3125rem;
  font-family: "Barlow", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2142857143;
  color: #006BA2;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .section-title__en {
    font-size: 1rem;
    line-height: 1.1875;
  }
}

.section-title__en.section-title__en--white {
  color: #FFFFFF;
}

.cases {
  background-color: #F2F2F2;
  padding-block: 3.125rem 3.5rem;
}
@media screen and (min-width: 768px) {
  .cases {
    padding-block: 3.5625rem 4.125rem;
  }
}

.cases__inner {
  padding-inline: 1.8125rem;
}
@media screen and (min-width: 768px) {
  .cases__inner {
    padding-inline: 1.5625rem;
  }
}

.cases__list {
  margin-top: 2rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .cases__list {
    margin-top: 2.5rem;
    -ms-grid-columns: 1fr 1.3125rem 1fr 1.3125rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3125rem;
  }
}

@media screen and (min-width: 768px) {
  .cases__item {
    padding-inline: 1.25rem;
  }
}

.cases__image {
  width: 12.5rem;
  height: 12.5rem;
  margin-inline: auto;
  border-radius: 50%;
  aspect-ratio: 1/1;
}

.cases__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.cases__title {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  color: #006BA2;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cases__title {
    font-size: 1.5rem;
  }
}

.cases__text {
  margin-top: 0.5rem;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .cases__text {
    font-size: 1.125rem;
  }
}

.cases__item:nth-of-type(3) .cases__text {
  margin-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .cases__item:nth-of-type(3) .cases__text {
    margin-inline: initial;
  }
}

.diagram {
  margin-block: 3.125rem 3.0625rem;
}
@media screen and (min-width: 768px) {
  .diagram {
    margin-block: 3.5625rem 2.875rem;
  }
}

.diagram__chart {
  margin-top: 2.625rem;
}
@media screen and (min-width: 768px) {
  .diagram__chart {
    margin-top: 2.5rem;
    max-width: 54.875rem;
    margin-inline: auto;
  }
}

.diagram__note {
  margin-top: 2.4375rem;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.45;
  color: #006BA2;
}
@media screen and (min-width: 768px) {
  .diagram__note {
    margin-top: 1.625rem;
    text-align: center;
    font-size: 2.25rem;
    line-height: 1.4444444444;
  }
}

.features {
  background-image: url(../image/bg/feature-bgSP.jpg);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 3.125rem 2.4375rem;
}
@media screen and (min-width: 768px) {
  .features {
    background-image: url(../image/bg/feature-bg.jpg);
    padding-block: 5.8125rem 6.875rem;
  }
}

@media screen and (min-width: 768px) {
  .features__inner {
    max-width: 59.375rem;
  }
}

.features__list {
  display: -ms-grid;
  display: grid;
  gap: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .features__list {
    gap: 5rem;
    margin-top: 3.8125rem;
  }
}

.features__item {
  display: -ms-grid;
  display: grid;
  row-gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .features__item {
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
    row-gap: 0rem;
    -ms-grid-columns: 29.375rem 1.875rem 25rem;
    grid-template-columns: 29.375rem 25rem;
    -ms-grid-rows: auto 0rem auto;
        grid-template-areas: "content img" "text img";
  }
}

@media screen and (min-width: 768px) {
  .features__content {
    grid-area: content;
  }
}

.features__number {
  font-family: "Zen Old Mincho", serif;
  font-size: 3.75rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .features__number {
    font-size: 6rem;
  }
}

.features__title {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #006BA2;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  background-color: #FFFFFF;
  display: inline;
  padding-inline: 0.5rem;
}
@media screen and (min-width: 768px) {
  .features__title {
    font-size: 1.75rem;
    padding-inline: 0.6875rem;
  }
}

@media screen and (min-width: 768px) {
  .features__image-box {
    grid-area: img;
  }
}

@media screen and (min-width: 768px){
  .features__content {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .features__image-box {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 3;
  }
}

.features__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #FFFFFF;
}

@media screen and (min-width: 768px) {
  .features__item:nth-child(3) .features__text {
    margin-top: -4.25rem;
  }
}

.case-study {
  background-color: #F2F2F2;
  padding-block: 3.125rem;
}
@media screen and (min-width: 768px) {
  .case-study {
    padding-block: 3.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .case-study__inner {
    max-width: 68.125rem;
  }
}

.case-study__list {
  margin-top: 4.0625rem;
  display: -ms-grid;
  display: grid;
  gap: 4.5625rem;
}
@media screen and (min-width: 768px) {
  .case-study__list {
    margin-top: 5.6875rem;
    gap: 7.125rem;
  }
}

.case-study__item {
  background-color: #FFFFFF;
  position: relative;
  padding: 1.25rem 1rem;
}
@media screen and (min-width: 768px) {
  .case-study__item {
    padding: 2.3125rem 3.3125rem;
  }
}

.case-study__number {
  position: absolute;
  top: -3.1875rem;
  left: 0;
  font-family: "Zen Old Mincho", serif;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .case-study__number {
    font-size: 6rem;
    top: -5.125rem;
  }
}

.case-study__number span {
  text-transform: uppercase;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2142857143;
}

.case-study__consult {
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .case-study__consult {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.6875rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.case-study__label {
  padding: 0.375rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2142857143;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .case-study__label {
    font-size: 1rem;
    line-height: 1.1875;
  }
}

.case-study__label.case-study__label--consult {
  color: #006BA2;
  border: 1px solid #006BA2;
}

.case-study__label.case-study__label--response {
  color: #FFFFFF;
  background-color: #006BA2;
}

.case-study__title {
  font-size: 1.0625rem;
  line-height: 1.4;
  font-weight: 700;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .case-study__title {
    font-size: 1.25rem;
    line-height: 1.2;
    margin-top: initial;
  }
}

.case-study__meta {
  font-size: 0.8125rem;
  line-height: 1.2307692308;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .case-study__meta {
    font-size: 0.875rem;
    line-height: 1.2142857143;
    margin-top: 0.1875rem;
  }
}

.case-study__response {
  border-top: 1px solid #D9D9D9;
  padding-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .case-study__response {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.6875rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.case-study__text {
  font-size: 0.875rem;
  line-height: 1.43;
  font-weight: 500;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .case-study__text {
    font-size: 1rem;
    line-height: 1.41;
    max-width: 53.1875rem;
    margin-top: initial;
  }
}

.background {
  background-image: url(../image/bg/background-bgSP.jpg);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 3.125rem 3.75rem;
}
@media screen and (min-width: 768px) {
  .background {
    background-image: url(../image/bg/background-bg.jpg);
    padding-block: 3.5625rem;
  }
}

.background__content {
  display: -ms-grid;
  display: grid;
  row-gap: 1rem;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .background__content {
    margin-top: 2.5rem;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
    row-gap: 2rem;
    -ms-grid-columns: 20.8125rem 2rem 42.1875rem;
    grid-template-columns: 20.8125rem 42.1875rem;
    -ms-grid-rows: auto 2rem auto;
        grid-template-areas: "bg-img bg-text" "bg-img bg-sign";
  }
}

.background__text {
  font-size: 0.875rem;
  line-height: 1.43;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .background__text {
    grid-area: bg-text;
    font-size: 1rem;
    line-height: 1.45;
  }
}

.background__image-box {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .background__image-box {
    grid-area: bg-img;
    max-width: 20.8125rem;
  }
}

.background__sign {
  font-size: 0.875rem;
  line-height: 1.2142857143;
}
@media screen and (min-width: 768px) {
  .background__sign {
    grid-area: bg-sign;
    font-size: 1rem;
    line-height: 1.1875;
    text-align: right;
  }
}
@media screen and (min-width: 768px){
  .background__text {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .background__image-box {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
  }
  .background__sign {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
}

.flow {
  background-color: #F2F2F2;
  padding-block: 3.125rem;
}
@media screen and (min-width: 768px) {
  .flow {
    padding-block: 3.5625rem;
  }
}

.flow__container {
  margin-top: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .flow__container {
    margin-top: 2.5rem;
  }
}

.company {
  margin-block: 3.125rem 3.9375rem;
}
@media screen and (min-width: 768px) {
  .company {
    margin-block: 3.5625rem;
  }
}

.company__inner {
  padding-inline: 1.25rem 0.6875rem;
}
@media screen and (min-width: 768px) {
  .company__inner {
    padding-inline: 1.5625rem;
  }
}

.company__content {
  margin-top: 2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .company__content {
    margin-top: 2.5rem;
  }
}

.company__list {
  border-bottom: 1px solid #D9D9D9;
}

.company__item {
  padding-block: 0.9375rem;
  border-top: 1px solid #D9D9D9;
}
@media screen and (min-width: 768px) {
  .company__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3.75rem;
    padding-block: 1.125rem;
  }
}

@media screen and (min-width: 768px) {
  .company__list > .company__item:nth-child(-n+6) {
    width: 66.0576923077%;
  }
}

.company__term {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1875;
}
@media screen and (min-width: 768px) {
  .company__term {
    width: 8rem;
  }
}

.company__desc {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2142857143;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .company__desc {
    margin-top: initial;
  }
}

.company__desc a {
  color: #006BA2;
  text-decoration: underline;
}

.company__images {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .company__images {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: initial;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .company__images img {
    width: 18.75rem;
  }
}

.faq {
  background-color: #F2F2F2;
  padding-block: 3.125rem;
}
@media screen and (min-width: 768px) {
  .faq {
    padding-block: 3.5625rem;
  }
}

.faq__items {
  margin-top: 1.75rem;
  display: -ms-grid;
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .faq__items {
    margin-top: 2.5rem;
    gap: 1.5rem;
  }
}

.faq__item {
  background-color: #FFFFFF;
}

.faq__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.125rem 1rem;
}
@media screen and (min-width: 768px) {
  .faq__head {
    padding: 2.0625rem 2rem;
  }
}

.faq__text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1875;
  padding-left: 1.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .faq__text {
    font-size: 1.125rem;
    line-height: 1.2222222222;
    padding-left: 3.125rem;
  }
}

.faq__text::before {
  content: "Q.";
  position: absolute;
  font-size: 1.5rem;
  line-height: 1.4583333333;
  font-weight: 700;
  color: #006BA2;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "Zen Old Mincho", serif;
}
@media screen and (min-width: 768px) {
  .faq__text::before {
    font-size: 2.25rem;
    line-height: 1.4444444444;
  }
}

.faq__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  width: 1.1875rem;
  height: 0.625rem;
}

.faq__icon::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
  border-top: 10px solid #006ba2;
  border-bottom: 0;
  top: 0;
  left: 0;
  bottom: 0;
}

/* アコーディオンが開いた時のスタイル */
.faq__item[open]:not([data-accordion-before-close]) .faq__icon::before {
  border-bottom: 10px solid #006ba2;
  border-top: 0;
}

.faq__answer {
  padding-inline: 1rem;
  padding-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .faq__answer {
    padding-inline: 2rem;
    padding-bottom: 1.25rem;
  }
}

.faq__answer-text {
  padding-top: 0.8125rem;
  border-top: 1px solid #D9D9D9;
  font-size: 0.875rem;
  line-height: 1.2142857143;
  font-weight: 500;
  padding-left: 1.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .faq__answer-text {
    font-size: 1rem;
    line-height: 1.1875;
    padding-left: 3.125rem;
  }
}

.faq__answer-text::before {
  content: "A.";
  position: absolute;
  font-size: 1.5rem;
  line-height: 1.4583333333;
  font-weight: 700;
  color: #006BA2;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "Zen Old Mincho", serif;
}
@media screen and (min-width: 768px) {
  .faq__answer-text::before {
    font-size: 2.25rem;
    line-height: 1.4444444444;
  }
}

.js-qa-container {
  -webkit-animation: fadeIn 0.5s ease infinite;
          animation: fadeIn 0.5s ease infinite;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.contact {
  background-image: url(../image/bg/contact-bgSP.jpg);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 3.125rem;
}
@media screen and (min-width: 768px) {
  .contact {
    background-image: url(../image/bg/contact-bg.jpg);
    padding-block: 8.5625rem 3.875rem;
  }
}

.contact__container {
  background-color: #FFFFFF;
  padding-block: 3rem;
}
@media screen and (min-width: 768px) {
  .contact__container {
    padding-block: 5.1875rem;
  }
}

.contact__form {
  margin-top: 2rem;
  max-width: 20rem;
  width: 100%;
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .contact__form {
    margin-top: 2.75rem;
    max-width: 38.125rem;
    gap: 1.625rem;
  }
}

.contact__label {
  font-size: 1rem;
  line-height: 1.1875;
  font-weight: 700;
}

.contact__required {
  color: #890000;
}

.contact__field input,
.contact__field textarea {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.2142857143;
  border: 1px solid #ABABAB;
  padding-block: 0.5625rem;
  padding-inline: 1rem;
}

.contact__privacy .wpcf7-list-item {
  margin: initial;
}

.contact__policy {
  color: #006BA2;
  text-decoration: underline;
}

.contact__submit {
  display: block;
  margin-top: 0.5rem;
  margin-inline: auto;
  width: 100%;
  max-width: 17.5rem;
  background-color: #006BA2;
  border-radius: 2.5rem;
  padding-block: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__submit {
    margin-top: 0.875rem;
    width: 18.5rem;
    padding-block: 1rem;
    font-size: 1.5rem;
    line-height: 1.2083333333;
  }
}

.contact__submit input {
  color: #FFFFFF;
}

.wpcf7-spinner {
  width: 0;
  height: 0;
  margin: 0;
}

.contact__options {
  margin-top: 2.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .contact__options {
    margin-top: 3.75rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .contact__option {
    width: 50%;
  }
}

.contact__option--line {
  padding-bottom: 2rem;
  border-bottom: 1px solid #FFFFFF;
}
@media screen and (min-width: 768px) {
  .contact__option--line {
    padding-block: 1.5rem 4.1875rem;
    border-right: 1px solid #FFFFFF;
    border-bottom: initial;
  }
}

.contact__option-heading {
  text-align: center;
  color: #FFFFFF;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1.4615384615;
}
@media screen and (min-width: 768px) {
  .contact__option-heading {
    font-size: 2rem;
    line-height: 1.4375;
  }
}

.contact__option-button {
  display: block;
  margin-top: 1.5rem;
  width: 100%;
  margin-inline: auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__option-button {
    margin-top: 2.625rem;
  }
}

.contact__option-button--line {
  background: -webkit-gradient(linear, left top, right top, from(#C6A942), to(#BB961D));
  background: linear-gradient(to right, #C6A942, #BB961D);
  border-radius: 2.5rem;
  padding-block: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .contact__option-button--line {
    font-size: 1.5rem;
    line-height: 1.2083333333;
    max-width: 26.5rem;
  }
}

.contact__option--phone {
  padding-top: 2rem;
}
@media screen and (min-width: 768px) {
  .contact__option--phone {
    padding-block: 1.5rem;
  }
}

.contact__option-button--phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  background-color: #FFFFFF;
  border-radius: 2.5rem;
  padding-block: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: #006BA2;
}
@media screen and (min-width: 768px) {
  .contact__option-button--phone {
    font-size: 1.5rem;
    line-height: 1.2083333333;
    max-width: 26.5rem;
  }
}

.contact__option-button--phone svg {
  width: 1.5rem;
}
@media screen and (min-width: 768px) {
  .contact__option-button--phone svg {
    width: 2.25rem;
  }
}

.contact__option-button--phone svg {
  fill: #006BA2;
}

.contact__option-hours {
  margin-top: 0.75rem;
  text-align: center;
  color: #FFFFFF;
  font-size: 1.125rem;
  line-height: 1.2222222222;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .contact__option-hours {
    margin-top: 1rem;
  }
}
.news__text a {
  color: #000;
  text-decoration: none;
}



