@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

/* 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,
picture {
  max-width: 100%;
  display: block;
}

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
@media only screen and (max-width: 767px) { /*スマホレイアウト*/}
@media print, screen and (min-width: 768px) { /*タブレットレイアウト*/}

html {
  font-size: 14px;
}
@media (max-width: 375px) {
  html {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.12vw;
  }
}
@media (min-width: 1250px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

.inner {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 640px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .inner {
    padding: 0 25px;
    max-width: 1250px;
  }
}

/* .layout-about-us {
  margin-top: 2.8571428571rem;
}
@media screen and (min-width: 768px) {
  .layout-about-us {
    margin-top: 4.2857142857rem;
  }
} */

.layout-business {
  margin-top: 2.8571428571rem;
}
@media screen and (min-width: 768px) {
  .layout-business {
    margin-top: 3.5714285714rem;
  }
}

/* .layout-flow {
  margin-top: 2.8571428571rem;
}
@media screen and (min-width: 768px) {
  .layout-flow {
    margin-top: 4.2857142857rem;
  }
} */

.layout-footer__works {
  margin-top: 2.8571428571rem;
}
@media screen and (min-width: 768px) {
  .layout-footer__works {
    margin-top: 4.2857142857rem;
  }
}

.layout-page-business-price {
  margin-top: 2.8571428571rem;
}
@media screen and (min-width: 768px) {
  .layout-page-business-price {
    margin-top: 3.5714285714rem;
  }
}

.layout-page-business-qa {
  margin-top: 2.8571428571rem;
}
@media screen and (min-width: 768px) {
  .layout-page-business-qa {
    margin-top: 3.5714285714rem;
  }
}

.layout-works {
  margin-top: 2.8571428571rem;
}
@media screen and (min-width: 768px) {
  .layout-works {
    margin-top: 3.5714285714rem;
  }
}

.c-btn {
  padding: 1.1428571429rem 2.5714285714rem;
  display: inline-block;
  border: 1px solid #000;
}
@media screen and (min-width: 768px) {
  .c-btn {
    font-size: 1.1428571429rem;
  }
}

.c-btn span {
  margin-left: 0.4285714286rem;
}

.c-title {
  font-size: 1.7142857143rem;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .c-title {
    font-size: 2.5714285714rem;
  }
}

.about-us {
  padding: 40px 0;
  background-color: #F2F2F2;
}

.about-us__title-wrap {
  text-align: center;
}

.about-us__logo {
  margin-top: 3.5714285714rem;
  display: flex;
  justify-content: center;
}

.about-us__logo img {
  width: 10rem;
}
@media screen and (min-width: 768px) {
  .about-us {
    padding: 60px 0;
    background-color: #F2F2F2;
  }

  .about-us__logo img {
    width: 14.2857142857rem;
  }
}

.about-us__content {
  margin-top: 2.8571428571rem;
  display: flex;
  justify-content: center;
}

.about-us tr {
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .about-us tr {
    line-height: 1.8;
  }
}

.about-us th {
  font-weight: 400;
  vertical-align: top;
}

.about-us td {
  padding-left: 1.4285714286rem;
}

.about-us td span {
  margin-top: 1.2857142857rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .about-us td span {
    margin-top: 0;
  }
}

.flow {
  /* background-color: #F2F2F2; */
}

.flow__inner {
  padding-top: 3.5714285714rem;
  padding-bottom: 4.2857142857rem;
  text-align: center;
}

.flow__content {
  margin-top: 3.5714285714rem;
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .flow__content-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.7857142857rem;
  }
}

.flow__content-item:not(:first-child) {
  margin-top: 1.7857142857rem;
}
@media screen and (min-width: 768px) {
  .flow__content-item:not(:first-child) {
    margin-top: 0;
  }
}

.flow__content-item:not(:last-child) {
  position: relative;
}

.flow__content-item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -24%;
  transform: translateX(-50%) rotate(90deg);
  width: 1.5714285714rem;
  height: 2.1428571429rem;
  background-image: url("../img/common/arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .flow__content-item:not(:last-child)::after {
    bottom: auto;
    top: 50%;
    right: -2.4285714286rem;
    transform: translateY(-50%);
  }
}

.flow__content-item {
  padding: 0.7142857143rem;
  border: 10px solid #E6E6E6;
  max-width: 28.5714285714rem;
  height: 12.8571428571rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .flow__content-item {
    width: 100%;
    height: auto;
  }
}

.flow__content-item-title {
  font-size: 1.2857142857rem;
  text-align: left;
}

.flow__content-item-text {
  margin-top: 0.7142857143rem;
  text-align: left;
  line-height: 1.8;
}

.flow__text {
  margin-top: 2.1428571429rem;
  text-align: left;
}

.flow__btn-wrap {
  margin-top: 3.5714285714rem;
}

.flow__btn {
  padding: 1.1428571429rem 2.5714285714rem;
  display: inline-block;
  background-color: #00B496;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .flow__btn {
    font-size: 1.1428571429rem;
  }
}

.flow__btn span {
  margin-left: 0.4285714286rem;
}

.footer {
  padding-top: 2.8571428571rem;
  background-color: #ccc;
}

.footer__inner {
  text-align: center;
}

.footer__logo {
  margin: 0 auto;
  max-width: 11.4285714286rem;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    max-width: 14.2857142857rem;
  }
}
.footer__logo img {
  width: 100%;
}

/* add 2025/3/3 */
.footer_insta_logo {
margin: 0 auto;
margin-top: 30px;
max-width: 5rem;
width: 100%;
display: flex;
justify-content: center;
}

.footer__info {
  margin-top: 3.3571428571rem;
}

.footer__info-text {
  line-height: 1.8;
}

.footer__nav {
  margin-top: 3.3571428571rem;
}

.footer__nav-list {
  display: inline-block;
  text-align: left;
}

.footer__nav-item span {
  margin-left: 0.7142857143rem;
}

.footer__nav-item a {
  padding: 0.3571428571rem;
  display: inline-block;
}

.footer__copyright {
  margin-top: 2.8571428571rem;
  padding: 1.4285714286rem 0;
  text-align: center;
  border-top: 1px solid #000;
  font-size: 0.8571428571rem;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 4.2857142857rem;
  }
}

.header {
  height: 3.5714285714rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .header {
    height: 7.1428571429rem;
  }
}

.header__inner {
  height: inherit;
  display: flex;
  justify-content: space-between;
}

.header__logo {
  max-width: 7.1428571429rem;
  width: 100%;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__logo {
    max-width: 14.2857142857rem;
  }
}

.header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__nav {
  display: none;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
  }
}

.header__nav-list {
  display: flex;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header__nav-item a {
  padding: 0 1.0714285714rem;
  height: inherit;
  display: flex;
  align-items: center;
}

.header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 2.8571428571rem;
  height: inherit;
  background-color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}

.header__hamburger.is-open {
  background-color: transparent;
}

.header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 1.0714285714rem;
  height: 1px;
  background-color: #333;
  transition: 0.5s;
}

.header__hamburger span:nth-of-type(1) {
  top: -0.2857142857rem;
}

.header__hamburger span:nth-of-type(2) {
  top: 0;
}

.header__hamburger span:nth-of-type(3) {
  top: 0.2857142857rem;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
  background-color: #fff;
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  top: -0.1428571429rem;
  transform: translateX(-50%) rotate(-45deg);
  background-color: #fff;
}

.header__drawer {
  padding: 16.2857142857rem 0;
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  overflow-y: scroll;
  scrollbar-width: none;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-item a {
  padding: 1.0714285714rem 0;
  display: block;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.page-business-price__title-wrap {
  text-align: center;
}

.page-business-price__title {
  font-size: 1.7142857143rem;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .page-business-price__title {
    font-size: 2.5714285714rem;
  }
}

.page-business-price__content {
  margin-top: 3.5714285714rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .page-business-price__content-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7.1428571429rem;
  }
}

.page-business-price__content-item:not(:first-child) {
  margin-top: 4.2857142857rem;
}
@media screen and (min-width: 768px) {
  .page-business-price__content-item:not(:first-child) {
    margin-top: 0;
  }
}

.page-business-price__content-item-title-wrap {
  border: 10px solid #E6E6E6;
  max-width: 28.5714285714rem;
  height: 6.6428571429rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .page-business-price__content-item-title-wrap {
    width: 100%;
  }
}

.page-business-price__content-item-title-wrap:not(:last-child) {
  position: relative;
}

.page-business-price__content-item-title-wrap:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -118%;
  transform: translateX(-50%) rotate(90deg);
  width: 1.5714285714rem;
  height: 2.1428571429rem;
  background-image: url("../img/common/plus.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .page-business-price__content-item-title-wrap:not(:last-child)::after {
    bottom: auto;
    top: 50%;
    right: -5rem;
    transform: translateY(-50%);
  }
}

.page-business-price__content-item-title {
  font-size: 1.1428571429rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .page-business-price__content-item-title {
    font-size: 1.5rem;
  }
}

.page-business-price__content-item-text {
  margin-top: 0.7142857143rem;
  font-size: 0.7857142857rem;
}

.page-business-price__content-text {
  margin-top: 3.5714285714rem;
  text-align: center;
}

.page-business-price__table {
  margin-top: 3.5714285714rem;
}

.page-business-price__table-title {
  font-size: 1.2857142857rem;
}
@media screen and (min-width: 768px) {
  .page-business-price__table-title {
    font-size: 1.5rem;
  }
}

.page-business-price__table-wrap {
  margin-top: 1.4285714286rem;
  overflow: scroll;
}
@media screen and (min-width: 768px) {
  .page-business-price__table-wrap {
    overflow: hidden;
  }
}

.page-business-price__table-content {
  width: 100%;
  white-space: nowrap;
}

.page-business-price__table table {
  border-collapse: collapse;
}

.page-business-price__table-title2,
.page-business-price__table-title3 {
  min-width: 23.5714285714rem;
}
@media screen and (min-width: 768px) {
  .page-business-price__table-title2,
  .page-business-price__table-title3 {
    min-width: 30rem;
  }
}

.page-business-price__table table th, .page-business-price__table table td {
  border: solid 1px black;
}

.page-business-price__table th {
  padding: 1rem;
  background-color: #EEE4D4;
  font-weight: 400;
}

.page-business-price__table td {
  padding: 0.7142857143rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-business-price__table td {
    padding: 1.4285714286rem;
  }
}

.page-business-pride {
  margin-top: 4.2857142857rem;
}

.page-business-pride__img img {
  width: 100%;
}

.page-business-qa {
  background-color: #F2F2F2;
}

.page-business-qa__inner {
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-business-qa__inner {
    padding-bottom: 60px;
  }
}

.page-business-qa__title {
  font-size: 1.7142857143rem;
}
@media screen and (min-width: 768px) {
  .page-business-qa__title {
    font-size: 2.5714285714rem;
  }
}

.page-business-qa__content {
  margin: 0 auto;
  margin-top: 3.5714285714rem;
  max-width: 60rem;
  width: 100%;
}

.page-business-qa__item {
  background-color: #EAF2F8;
}

.page-business-qa__item:not(:first-child) {
  margin-top: 0.7142857143rem;
}

.page-business-qa__item summary {
  padding: 1.4285714286rem 3.5714285714rem;
  padding-right: 1.4285714286rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1.1428571429rem;
  color: #333333;
  cursor: pointer;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-business-qa__item summary {
    padding: 2.1428571429rem 5.7142857143rem;
    padding-right: auto;
    font-size: 1.5rem;
  }
}

.page-business-qa__item summary::before {
  content: "Q";
  position: absolute;
  left: 0.7142857143rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.1428571429rem;
  height: 2.1428571429rem;
  border-radius: 50%;
  display: inline;
  background: #258C6D;
  color: #fff;
  font-size: 1.1428571429rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-business-qa__item summary::before {
    left: 1.4285714286rem;
    width: 2.8571428571rem;
    height: 2.8571428571rem;
    font-size: 1.7142857143rem;
  }
}

.page-business-qa__item summary::-webkit-details-marker {
  display: none;
}

.page-business-qa__item p {
  padding: 1.4285714286rem 3.5714285714rem;
  padding-right: 1.4285714286rem;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  text-align: left;
  background-color: #F7FBFC;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-business-qa__item p {
    padding: 2.1428571429rem 5.7142857143rem;
    padding-right: auto;
  }
}

.page-business-qa__item p::before {
  content: "A";
  position: absolute;
  left: 0.7142857143rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.1428571429rem;
  height: 2.1428571429rem;
  border-radius: 50%;
  display: inline;
  background: #fff;
  color: #258C6D;
  border: 1px solid #258C6D;
  font-size: 1.1428571429rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-business-qa__item p::before {
    left: 1.4285714286rem;
    width: 2.8571428571rem;
    height: 2.8571428571rem;
    font-size: 1.7142857143rem;
  }
}

.page-business-qa__item[open] p {
  transform: none;
  opacity: 1;
}

.page-business__content-wrap1,
.page-business__content-wrap3 {
  margin-top: 3.5714285714rem;
  text-align: center;
}

.page-business__title {
  font-size: 1.7142857143rem;
}
@media screen and (min-width: 768px) {
  .page-business__title {
    font-size: 2.5714285714rem;
  }
}

.page-business__title span {
  text-transform: capitalize;
}

.page-business__explanation {
  margin-top: 3.5714285714rem;
  display: inline-block;
  text-align: left;
}

.page-business__content {
  margin-top: 3.5714285714rem;
}

@media screen and (min-width: 768px) {
  .page-business__content-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4.2857142857rem;
  }
}

.page-business__content-item:not(:first-child) {
  margin-top: 4.2857142857rem;
}
@media screen and (min-width: 768px) {
  .page-business__content-item:not(:first-child) {
    margin-top: 0;
  }
}

.page-business__content-list2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4.2857142857rem;
  align-items: stretch;
}
@media screen and (min-width: 768px) {
  .page-business__content-list2 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-business__content-item2 {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-business__content-title-wrap2 {
  padding: 10px 0;
  background-color: #333333;
background-color: #ccc;
  color: #FFDE4E;
color: #666;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .page-business__content-title-wrap2 {
    font-size: 1.7142857143rem;;
    font-weight: 700;
  }
}

.page-business__content-text-wrap2 {
  padding: 20px;
  background-color: #fff;
  text-align: left;
  flex-grow: 1;
}

.page-business__content-text2 {
  line-height: 2;
  font-size: 1.2857142857rem;
  font-weight: 500;
}
/* @media screen and (min-width: 768px) {
  .page-business__content-text2 {
    font-size: 1.5rem;
  }
} */

.page-business__content-text2 {
  padding-left: 10px;
  position: relative;
}

.page-business__content-text2::before {
  content: "・";
  position: absolute;
  left: -8px;
}

.page-business__content-img {
  width: 100%;
}

.page-business__content-img img {
  width: 100%;
  aspect-ratio: 360/222;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-business__content-body {
  margin-top: 1.4285714286rem;
}

.page-business__content-title {
  text-align: center;
  font-size: 1.2857142857rem;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .page-business__content-title {
    font-size: 1.5rem;
  }
}

.page-business__content-text {
  margin-top: 0.7142857143rem;
  text-align: left;
}

.page-business__content-wrap2,
.page-business__content-wrap4 {
  margin-top: 4.2857142857rem;
  text-align: center;
  background-color: #F2F2F2;
}

.page-business__content-wrap2-inner,
.page-business__content-wrap4-inner {
  padding-top: 3.5714285714rem;
  padding-bottom: 4.2857142857rem;
}

.page-fv {
  padding: 5rem 0;
  background-color: #ccc;
}

.page-fv__title-wrap {
  text-align: center;
}

.page-fv__title {
  font-size: 2.7142857143rem;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .page-fv__title {
    font-size: 3.4285714286rem;
  }
}

.page-fv__title-sub {
  font-size: 1.1428571429rem;
}
@media screen and (min-width: 768px) {
  .page-fv__title-sub {
    font-size: 1.5rem;
  }
}

.page-works__content-wrap1,
.page-works__content-wrap3 {
  margin-top: 3.5714285714rem;
  text-align: center;
}

.page-works__title {
  font-size: 1.7142857143rem;
}
@media screen and (min-width: 768px) {
  .page-works__title {
    font-size: 2.5714285714rem;
  }
}

.page-works__title span {
  text-transform: capitalize;
}

.page-works__content {
  margin-top: 3.5714285714rem;
}

@media screen and (min-width: 768px) {
  .page-works__content-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4.2857142857rem;
  }
}

.page-works__content-item:not(:first-child) {
  margin-top: 4.2857142857rem;
}
@media screen and (min-width: 768px) {
  .page-works__content-item:not(:first-child) {
    margin-top: 0;
  }
}

.page-works__content-img {
  width: 100%;
}

.page-works__content-img img {
  width: 100%;
  aspect-ratio: 360/222;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-works__content-img {
  position: relative;
}

.page-works__content-img--arrow::after {
  content: "";
  position: absolute;
  bottom: -90%;
  transform: translateX(-50%) rotate(90deg);
  width: 1.5714285714rem;
  height: 2.1428571429rem;
  background-image: url("../images/common/arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .page-works__content-img--arrow::after {
    top: 50%;
    bottom: auto;
    right: -3.2142857143rem;
    transform: translateY(-50%);
    width: 2.1428571429rem;
    height: 2.4285714286rem;
  }
}

.page-works__content-body {
  margin-top: 1.4285714286rem;
}

.page-works__content-title {
  text-align: center;
  font-size: 1.5rem;
  text-transform: capitalize;
}

.page-works__content-text {
  margin-top: 0.7142857143rem;
  text-align: left;
}

.page-works__content-title--before {
  color: #D4145A;
}

.page-works__content-title--after {
  color: #258C6D;
}

.page-works__content-wrap2 {
  margin-top: 4.2857142857rem;
  text-align: center;
  background-color: #F2F2F2;
}

.page-works__content-wrap2-inner {
  padding-top: 3.5714285714rem;
  padding-bottom: 4.2857142857rem;
}

.top-business__inner {
  text-align: center;
}

.top-business__text {
  margin-top: 3.5714285714rem;
  display: inline-block;
  text-align: left;
}

.top-business__content {
  margin-top: 2.8571428571rem;
}

@media screen and (min-width: 768px) {
  .top-business__content-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4.2857142857rem;
  }
}

.top-business__content-item:not(:first-child) {
  margin-top: 2.8571428571rem;
}
@media screen and (min-width: 768px) {
  .top-business__content-item:not(:first-child) {
    margin-top: 0;
  }
}

.top-business__content-img {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.top-business__content-img img {
  width: 100%;
  aspect-ratio: 360/222;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-business__content-title {
  margin-top: 0.7142857143rem;
  font-size: 1.5rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .top-business__content-title {
    font-size: 1.5rem;
  }
}

.top-business__content-text {
  margin-top: 0.7142857143rem;
  text-align: left;
}

.top-business__btn-wrap {
  margin-top: 2.8571428571rem;
}

.top-business__img-wrap {
  margin-top: 4.2857142857rem;
}
@media screen and (min-width: 768px) {
  .top-business__img-wrap {
    margin: 0 calc(50% - 50vw);
    margin-top: 4.2857142857rem;
    width: 100vw;
    background-color: #F2F2F2;
  }
}

.top-business__img {
  display: flex;
  justify-content: center;
}

.top-business__img-sp {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .top-business__img-sp {
    margin: auto;
  }
}

.top-business__img img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .top-fv {
    background-color: #F2F2F2;
  }
}

.top-fv__swiper {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .top-fv__swiper {
    margin: 0;
    width: 100%;
  }
}

.swiper-slide__img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .swiper-slide__img img {
    min-height: 32.8571428571rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.top-works__inner {
  text-align: center;
}

.top-works__content {
  margin-top: 3.5714285714rem;
}

@media screen and (min-width: 768px) {
  .top-works__content-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4.2857142857rem;
  }
}

.top-works__content-item:not(:first-child) {
  margin-top: 2.8571428571rem;
}
@media screen and (min-width: 768px) {
  .top-works__content-item:not(:first-child) {
    margin-top: 0;
  }
}

.top-works__content-img {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.top-works__content-img img {
  width: 100%;
  aspect-ratio: 360/360;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-works__btn-wrap {
  margin-top: 2.8571428571rem;
}

.sp {
  display: block !important;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

.contact-info {
  margin-top: 3.5714285714rem;
  text-align: center;
}

.contact-info__title-wrap {
  margin-top: 3.5714285714rem;
}

.contact-info__title {
  font-size: 1.7142857143rem;
}
@media screen and (min-width: 768px) {
  .contact-info__title {
    font-size: 2.5714285714rem;
  }
}

.contact-info__title-sub {
  margin-top: 0.7142857143rem;
}

.contact-info__tel {
  margin-top: 3.5714285714rem;
}

.contact-info__tel-text {
  font-size: 1.7142857143rem;
  color: #258C6D;
}
@media screen and (min-width: 768px) {
  .contact-info__tel-text {
    font-size: 2.2857142857rem;
  }
}

.contact-info__tel-time {
  margin-top: 0.7142857143rem;
}

.contact-form {
  margin-top: 4.2857142857rem;
  padding-top: 3.5714285714rem;
  padding-bottom: 4.2857142857rem;
  text-align: center;
  background-color: #F2F2F2;
}

.contact-form__inner {
  margin: 0 auto;
  padding: 0 1.4285714286rem;
  max-width: 60rem;
}
@media screen and (min-width: 768px) {
  .contact-form__inner {
    padding: 0;
  }
}

.contact-form__title {
  font-size: 1.7142857143rem;
}
@media screen and (min-width: 768px) {
  .contact-form__title {
    font-size: 2.5714285714rem;
  }
}

.contact-form__title-sub {
  margin-top: 0.7142857143rem;
}

.contact-form__text-wrap {
  margin-top: 3.5714285714rem;
  margin-bottom: 3.5714285714rem;
}

.contact-form__text {
  line-height: 2;
}

/*# sourceMappingURL=style.css.map */
