@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
/*
 * 参考
 * 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;
}

.ff-en {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.ff-en-bold {
	font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* 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 {
	width: 80%;
  padding: 15px 20px;
  display: inline-block;
  border: 1px solid #000;
	border-radius: 50px;
	background-image: url("../img/common/arrow02.png");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 6px auto;
}
.c-btn:hover {
	color: #fff;
	border: 1px solid #00b496;
	background-color: #00b496;
	background-image: url("../img/common/arrow01.png");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 6px auto;
}
@media screen and (min-width: 768px) {
  .c-btn {
		width: 50%;
    font-size: 1.1428571429rem;
  }
}

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

.c-title {
	display: block;
	width: 80%;
	margin: 0 auto;
	padding-top: 10px;
  font-size: 1.7142857143rem;
  text-transform: capitalize;
	border-top: 1px solid #333;
}
.c-title-sub {
	display: block;
	width: 80%;
	margin: 0 auto;
	padding-bottom: 15px;
	border-bottom: 1px solid #333;
}
@media screen and (min-width: 768px) {
  .c-title {
		width: 50%;
    font-size: 2.5714285714rem;
  }
	.c-title-sub {
		width: 50%;
		border-bottom: 1px solid #333;
}
}

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

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

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

.about-us__logo img {
  width: 10rem;
}
.about-us__content {
  margin-top: 2.8571428571rem;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .about-us {
    padding: 60px 0;
    background-color: #F2F2F2;
  }

  .about-us__logo img {
    width: 14.2857142857rem;
  }
	.about-us__cntent-wrap {
		display: flex;
	}
	.about-us__img {
		width: 45%;
		margin-right: 5%;
	}
}

.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: -33px;
  transform: translateX(-50%) rotate(90deg);
  width: 1.5714285714rem;
  height: 2.1428571429rem;
  background-image: url("../img/common/arrow.png");
  background-size: 15px auto;
  background-repeat: no-repeat;
  background-position: center;
	z-index: 1;
}

@media screen and (min-width: 768px) {
  .flow__content-item:not(:last-child)::after {
    bottom: auto;
    top: 50%;
    right: -2.0285714286rem;
    transform: translateY(-50%);
  }
}

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


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

.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: #f0eddf;
}

.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: 30px;
}
.footer__contact-btn {
	margin-top: 30px;
}
.footer__contact-btn a {
	display: block;
	width: 90%;
	margin: 0 auto;
	padding: 10px;
	color: #fff;
	border-radius: 50px;
	background: #353433;
}
.footer__contact-btn a span {
	padding-left: 25px;
	background-image: url("../img/common/icon_mail.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 18px auto;
}
.footer__contact-btn a:hover {
	opacity: 1;
	background: #00b496;
}
@media screen and (min-width: 768px) {
	.footer__contact-btn a {
	width: 50%;
	margin: 0 auto;
	padding: 20px;
	}
}

.footer__nav-list {
  display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.footer__nav-item {
	width: 50%;
	padding: 0.3571428571rem;
}

.footer__nav-item a {
	position: relative;
	padding: 0.3571428571rem 0;
  display: inline-block;
}
.footer__nav-item a:hover {
	color: #00b496;
}
.footer__nav-item a::before {
	content: "";
	position: absolute;
	display: inline-block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
	background: #00b496;
	transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .2s;
}
.footer__nav-item a:hover::before {
	transform-origin: left top;
  transform: scale(1, 1);
}
.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__nav-item {
		width: auto;
		padding: 0 15px;
	}
  .footer__copyright {
    margin-top: 4.2857142857rem;
  }
}

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

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

.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;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
  }
}

.header__nav-list {
  display: flex;
	align-items: center;
}
.header__nav-item a {
	position: relative;
  padding: 0.4rem 1.0714285714rem;
  display: flex;
  align-items: center;
}
.header__nav-item a:hover {
	color: #00b496;
}
.header__nav-item a::before {
	content: "";
	position: absolute;
	display: inline-block;
  bottom: 0;
  left: 15px;
  width: calc(100% - 30px);
  height: 1px;
	background: #00b496;
	transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .2s;
}
.header__nav-item a:hover::before {
	transform-origin: left top;
  transform: scale(1, 1);
}
.header__nav-item a.btn-contact {
	color: #fff;
	margin-left: 15px;
	padding: 0.4rem 2.0714285714rem; 
	border-radius: 25px;
	background-color: #353433;
	
}
.header__nav-item a.btn-contact span {
	padding-left: 25px;
	background-image: url("../img/common/icon_mail.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 18px auto;
}
.header__nav-item a.btn-contact:hover {
	background: #00b496;
}

.header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 2.8571428571rem;
  height: inherit;
  background-color: #f0eddf;
  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: #fff;
}

.page-business-qa__inner {
  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;
	padding-top: 3px;
  border-radius: 8px;
  display: inline;
  background: #258C6D;
  color: #fff;
  font-size: 1.1428571429rem;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
  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: 8px;
  display: inline;
  background: #fff;
  color: #258C6D;
  border: 1px solid #258C6D;
  font-size: 1.1428571429rem;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
  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%;
	border-radius: 8px;
  aspect-ratio: 360/222;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-business__content-body {
  margin-top: 10px;
}

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

.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 0;
}

.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 {
	padding: 15px;
	background-color: #F2F2F2;
}
.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%;
}

.top-fv {
	position: relative;
	height: 75vw;
  background-color: #F2F2F2;
	overflow: hidden;
}
.top-fv__swiper {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
	overflow: hidden;
}
.top-fv__swiper .swiper-slide__img > img {
  object-fit: cover;
  height: 75vw;
  width: 100%;
}
.top-fv__swiper .swiper-slide-active .swiper-slide__img,
.top-fv__swiper .swiper-slide-duplicate-active .swiper-slide__img,
.top-fv__swiper .swiper-slide-prev .swiper-slide__img {
  animation: zoom-out 8s linear 0s 1 normal both;
}
@keyframes zoom-out {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
.top-fv__text01 {
	position: absolute;
	bottom: 3vw;
	left: 0;
	right: 0;
	color: #fff;
	font-family: "Poppins", sans-serif;
	font-size: 3vw;
  font-weight: 400;
	line-height: 1;
	text-align: center;
	z-index: 100;
}
.top-fv__text01 span {
	display: inline-block;
	padding-top: 1vw;
	font-size: 8vw;
}

@media screen and (min-width: 1025px) {
  .top-fv {
    height: calc(100vh - 7.1428571429rem);
		max-height: 80vw;
  }
	.top-fv__swiper .swiper-slide__img > img {
  object-fit: cover;
  height: calc(100vh - 7.1428571429rem);
	max-height: 80vw;
  width: 100%;
	}
	.top-fv__text01 {
	font-size: 1.5vw;
}
.top-fv__text01 span {
	font-size: 5vw;
}
}




@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;
  
}
.contact-form__inner .mailform {
	max-width: 60rem;
	margin: 0 auto;
}

@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 */



.works-slide {
  position: relative;
  overflow: hidden;
}
.works-slide .swiper {
  overflow: visible;
}
.works-slide .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}
.works-slide .swiper-slide {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.works-slide .slide {
  overflow: hidden;
  width: 180px;
}
.works-slide .slide-img {
  position: relative;
  overflow: hidden;
  padding-top: 61.666%; /* 縦横比 */
  border: 0;
	border-radius: 8px;
  background: #fff;
}
.works-slide .slide-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.works-slide .slide-text {
	position: relative;
	width: 100%;
	padding-top: 10px;
	font-size: 12px;
	text-align: center;
}
.works-slide .slide-text a {
	color: #282828;
}
.works-slide .slide-text a:hover {
	color: #1345ff;
	text-decoration: underline;
}
.works-detail__inner {
	margin: 30px auto 50px;
  max-width: 640px;
  width: 100%;
}
.works-detail__content-title {
  margin-top: 0.7142857143rem;
	margin-bottom: 20px;
  font-size: 1.5rem;
	font-weight: bold;
  white-space: nowrap;
}
.works-detail__img {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px dotted #ccc;
}
.works-detail__img img {
	display: block;
	margin: 0 auto;
	border-radius: 8px;
}
.works-detail__img a {
	display: block;
	margin: 0 auto;
}
.works-detail__img a:hover {
	opacity: 0.7;
}
.works-detail__img p {
	padding-top: 10px;
	font-size: 12px;
	text-align: center;
}

@media screen and (min-width: 768px) {
.works-slide .slide {
  overflow: hidden;
  width: 350px;
}
.works-slide .slide-text {
	font-size: 14px;
}
.works-detail__inner {
	margin: 50px auto 80px;
	max-width: 720px;
}
.works-detail__content-title {
    font-size: 1.5rem;
}

.works-detail__img p {
	font-size: 14px;
}
}



/*　ページャー
-------------------------------------------------------*/
.pagination {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 30px;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  display: block;
  padding: 6px 12px;
  margin-right: 8px;
  margin-top: 10px;
  line-height: 1.4;
  font-family: "Poppins", sans-serif;
  color: #333;
  text-decoration: none;
	border-radius: 8px;
  background: #F2F2F2;
  transition-duration: 0.2s;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 3;
  color: #fff;
  background: #999;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  color: #fff;
  cursor: default;
  font-weight: bold;
  background: #444;
}

@media screen and (min-width: 768px) {
.pagination > li > a,
.pagination > li > span {
  padding: 10px 18px;
}
}
