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

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  height: auto;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@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;
  }
}
ul, ol, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

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

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

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

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

li {
  list-style: none;
}
:root {
  --main-color: #F8B30E;
  --border-color: #ececec;
  --font-color: #242422;
  --text-color: #4C4948;
  --bg-color: #f9f9f9;
  --sub-color: #FFFCF1;
  --dark-color: #37414F;
  --footer-font-color: #a6adb6;
  --base-font: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "arial";
  --title-font: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
  --english-font: "Montserrat", sans-serif;
}

/*-------------------------
  基本設定
-------------------------*/

:where(html) {
  font-family: var(--base-font);
  font-weight: 500;
  color: var(--font-color);
  line-height: 1.5;
  letter-spacing: .075em;
}

:where(h1, h2, h3, a) {
  letter-spacing: .04em;
  font-feature-settings: "palt";
}

:where(p) {
  line-height: 1.75;
  color: var(--text-color);
}

:where(img) {
  object-fit: cover;
}

/*-------------------------
  レイアウト調整
-------------------------*/
.l-inner {
  max-width: 1280px;
  padding-right: 6%;
  padding-left: 6%;
  margin: 0 auto;
}

.l-block {
  margin: 40px 0;
  position: relative;
}

@media (min-width: 1024px) {
  .l-block {
    margin: 80px 0 120px;
  }
}

.l-block--background {
  background-color: var(--sub-color);
  padding: 40px 0;
}

@media (min-width: 1024px) {
  .l-block--background {
    padding: 80px 0;
  }
}

.l-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .l-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .l-grid {
    gap: 64px;
  }
}

.l-grid--top {
  align-items: flex-start
}

.l-grid img {
  object-fit: cover;
}

@media (min-width: 1024px) {
  .l-grid--reverse> :first-child {
    order: 2;
  }

  .l-grid--reverse> :nth-child(2) {
    order: 1;
  }
}

.u-center {
  text-align: center;
}

.u-space {
  margin-top: 40px;
}


@media (min-width: 1024px) {
  .u-space {
    margin-top: 80px;
  }
}

.u-space--l {
  padding-top: 40px;
}

@media (min-width: 1024px) {
  .u-space--l {
    padding-top: 80px;
  }
}

.c-background-blur::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  background: url(../images/top/background-blur.png) no-repeat center center / cover;
  width: 200px;
  height: 400px;
  position: absolute;
  top: -160px;
  z-index: -1;
}

.c-background-blur::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -20%;
  background: url(../images/top/background-blur.png) no-repeat center center / cover;
  width: 200px;
  height: 400px;
  position: absolute;
  z-index: -1;
  transform: rotate(180deg);
}

@media (min-width: 1024px) {
  .c-background-blur::before {
    width: 400px;
    height: 680px;
    top: -40%;
  }

  .c-background-blur::after {
    width: 400px;
    height: 600px;
    bottom: -40%;
  }
}

.c-section {
  padding: 40px 0;
}

@media (min-width: 1024px) {
  .c-section {
    padding: 80px 0;
  }
}

.c-section__background {
  background: var(--bg-color);
}

/*-------------------------
  ボタン
-------------------------*/
.c-button {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 40px;
}

.c-button__link {
  border: 1px solid var(--main-color);
  color: #fff;
  text-align: center;
  padding: 12px 16px;
  border-radius: calc(1px/0);
  display: block;
  transition: .4s;
  position: relative;
  width: 80%;
  margin: 0 auto;
  width: 240px;
  background-color: var(--main-color);
}

.c-button__link:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  background: url('../images/icon/arrow-white.svg') no-repeat;
  background-size: contain;
  height: 24px;
  width: 24px;
}

.c-button__link:hover {
  transform: scale(1.05);
  color: var(--main-color);
  background: #fff;
}

.c-button__link--dark {
  background: var(--dark-color);
  border-color: var(--dark-color);
}

.c-button__link--dark::after {
  background: url('../images/icon/arrow-circle-dark--white.svg') no-repeat;
  background-size: contain;
}

.c-button__link--dark:hover {
  background-color: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
  opacity: 1;
}

.c-button__link--dark:hover::after {
  background: url('../images/icon/arrow-white.svg');
  background-size: contain;
}

@media (min-width: 768px) {
  .c-button--left {
    margin-left: 0;
  }
}

.c-button--text {
  padding-top: 32px;
}

.c-button--text__link {
  width: fit-content;
  display: inline-block;
  position: relative;
  padding-right: 48px;
  text-decoration: underline;
}

.c-button--text__link::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url(../images/icon/arrow-circle-dark.svg) no-repeat center center/contain;
  transition: 0.5s ease;
}

.c-button--text__link:hover {
  opacity: .8;
}

/*================================
	見出し
=================================*/
.c-heading {
  position: relative;
}

.c-heading span {
  color: var(--main-color);
  display: block;
  position: relative;
  text-transform: capitalize;
  font-family: var(--english-font);
  padding-left: 24px;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
}

.c-heading span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  width: 16px;
  height: 1px;
  background: var(--main-color);
  display: block;
}

.c-heading h2 {
  font-size: clamp(1.5rem, 1.136rem + 1.82vw, 2.5rem);
  margin-top: 12px;
}

.c-heading p {
  max-width: 680px;
  margin-top: 16px;
}

.c-section-heading h2 {
  text-align: center;
  font-size: clamp(1.5rem, 1.409rem + 0.45vw, 1.75rem);
}

@media not all and (min-width: 1023px){
  .c-heading br{
    display: none;
  }
}

/*-------------------------
  ヘッダー
-------------------------*/
.l-header {
  height: 60px;
  width: 100%;
  margin-inline: auto;
  z-index: 100;
  position: fixed;
  transition: 0.3s ease;
  border-bottom: none;
}

.l-header.is-scrolled {
  border-bottom: 1px solid var(--border-color); /* スクロール後に表示 */
  background: #fff;
}

.l-header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 16px;
  height: 100%;
  max-width: 1440px;
  margin-inline: auto;
}

.l-header__logo img {
  width: 140px;
}

@media (min-width: 1200px) {
  .l-header__logo img {
    width: 180px;
  }
}

.l-header__menu li {
  text-transform: uppercase;
  color: var(--font-color);
  position: relative;
  font-weight: bold;
  font-size: 14px;
}


/* ハンバーガーメニューが表示されている場合 */
@media not all and (min-width: 1200px) {

  .l-header__nav {
    position: fixed;
    top: 60px;
    right: -100%;
    /* メニューの位置マイナス指定で画面外に */
    width: 100%;
    height: 100vh;
    background: #fff;
    transition: 0.3s;
  }

  .l-header__menu {
    display: flex;
    flex-direction: column;
    z-index: 100;
  }

  .l-header__menu li {
    display: flex;
    align-items: center;
    padding: 24px;
    letter-spacing: 0.1em;
    position: relative;
  }

  .l-header__menu li:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
  }

  .l-header__menu li a {
    position: relative;
    padding-left: 30px;
  }

  .l-header__menu li a::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    background: url(../images/icon/arrow.svg) no-repeat center center/contain;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .l-header__nav.open {
    position: absolute;
    right: 0;
    /* メニューオープン時位置0にして画面内に */
    z-index: 100;
    top: 60px;
  }
}

.l-header__menu li a:hover {
  color: var(--main-color);
}

@media (min-width: 1200px) {
  .l-header {
    padding: 0 40px;
    height: 88px;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #eee;
  }

    .l-header__wrap {
    padding: 0;
  }

  .l-header__menu {
    /* メニューを横に */
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .l-header__menu li{
    text-shadow:
    0 0 4px rgba(255, 255, 255, 1),
    0 0 8px rgba(255, 255, 255, 0.1);
    font-size: 15px;
    font-weight: normal;
    color: #2e2e2e;
    }

  .l-header__menu--contact {
    border: 1px solid var(--dark-color);
    color: #fff;
    text-align: center;
    padding: 8px 40px;
    border-radius: 20px;
    display: block;
    transition: .4s;
    position: relative;
    width: fit-content;
    margin: 0 auto;
    background-color: var(--dark-color);
  }

  .l-header__menu .l-header__menu--contact{
    text-shadow: none;
    color: #fff;
    font-weight: normal;
  }

  .current-menu-item {
    font-weight: bold;
  }

  .current-menu-item::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background: var(--main-color);
    bottom: -8px;
    left: 0;
  }

  .l-header__menu--contact.current-menu-item::after{
    position: relative;
  }
}

/*-------------------------
  ハンバーガーメニュー
-------------------------*/
.c-hamburger {
  background: var(--main-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border: none;
  cursor: pointer;
}

/* ハンバーガーメニューの基準線 */
.c-hamburger__line {
  display: block;
  position: relative;
  width: 24px;
  height: 1px;
  background-color: #fff;
  transition: 0.2s;
  margin: 0 auto;
}

/* ハンバーガーメニューの上下線 */
.c-hamburger__line::before,
.c-hamburger__line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: 0.5s;
  left: 0;
}

.c-hamburger__line::before {
  transform: translateY(-10px);
  /* 上の線の位置 */
}

.c-hamburger__line::after {
  transform: translateY(10px);
  /* 下の線の位置 */
}

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

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

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

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

@media (min-width: 1200px) {
  .c-hamburger {
    display: none;
  }
}

/*================================
	main-visual
=================================*/

.p-main-visual {
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}

.p-main-visual__wrap {
  margin-inline: auto;
  max-width: 1440px;
  padding: 3rem 6%;
  position: relative;
  z-index: 2;
}

.p-main-visual__texts h1 {
  font-size: clamp(1.75rem, 1.114rem + 3.18vw, 3.5rem);
  position: relative;
  line-height: 1.6;
  font-weight: normal;
  margin-bottom: 20px;
  font-family: var(--title-font);
}

.p-main-visual__texts h1 span{
  color: var(--main-color);
}

.p-main-visual__texts p {
  margin-top: 16px;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  max-width: 600px;
  text-align: justify;
}

.p-main-visual__copy{
  color: var(--main-color);
  font-family: var(--english-font);
  letter-spacing: .1em;
  display: inline-block;
  position: relative;
  padding-left: 40px;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
}

.p-main-visual__copy::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  width: 16px;
  height: 1px;
  background: #969696;
  display: block;
}

.p-main-visual__image {
  height: 300px;
  position: relative;
}

.p-main-visual__image::before{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  content: "";
}

.p-main-visual__image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

@media (min-width: 1024px) {
  .p-main-visual{
    padding-top: 76px;
    height: 90vh;
  }

  .p-main-visual__wrap{
    padding-top: 120px;
    padding-bottom: 100px;
  }

  .p-main-visual__texts {
    padding: 4rem 0 4rem;
  }

  .p-main-visual__texts h1{
    margin-bottom: 36px;
  }

  .p-main-visual__texts p {
    margin-top: 20px;

  }

  .p-main-visual__image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70vw;
    height: 100%;
  }

  .p-main-visual__image::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 36rem;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    content: "";
  }

  .p-main-visual__image::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
    content: "";
  }
}

/*================================
	service-list
=================================*/

.p-service-list__wrap {
  margin-top: 20px;
  display: grid;
  gap: 20px;
}

.p-service-list {
  display: block;
  background: #F8FAFB;
  padding: 22px 20px 34px;
  border-radius: 4px;
}

.p-service-list h3 {
  margin-bottom: 20px;
  font-size: clamp(1.25rem, 1.205rem + 0.23vw, 1.375rem);
  position: relative;
}

.p-service-list h3::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url(../images/icon/arrow-circle-dark.svg) no-repeat center center/contain;
  transition: 0.5s ease;
  transform-origin: center center;
  /* 追加 */
}

.p-service-list:hover h3::after {
  background-image: url(../images/icon/arrow-circle-orange.svg);
  transform: translateY(-50%) scale(1.2);
}

.p-service-list:hover {
  background: var(--sub-color);
}

.p-service-list p {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

@media (min-width: 768px) {
  .p-service-list__wrap {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .p-service-list__wrap {
    margin-top: 40px;
    gap: 40px;
  }

  .p-service-list {
    padding: 30px 30px 34px;
  }

  .p-service-list h3 {
    margin-bottom: 24px;
  }

  .p-service-list h3::after {
    width: 40px;
    height: 40px;
  }
}

/*================================
  feature-list
=================================*/

.p-feature-list__wrap {
  margin-top: 20px;
  display: grid;
  gap: 40px;
}

.p-feature-list {
  position: relative;
}

.p-feature-list__label {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--main-color);
  padding-bottom: 10px;
  font-size: 9px;
  line-height: 1.2;
  text-transform: capitalize;
  font-family: var(--english-font);
  color: var(--dark-color);
}


.p-feature-list__label span {
  font-size: 28px;
  display: block;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--main-color);
}

.p-feature-list__image {
  margin-top: 24px;
}

.p-feature-list__image img {
  margin-inline: auto;
  width: 140px;
  height: auto;
}

.p-feature-list__texts {
  background: var(--sub-color);
  padding: 48px 16px 32px;
  border-radius: 10px;
  margin-top: -28px;
}

.p-feature-list__title {
  font-size: 18px;
  text-align: center;
}

.p-feature-list__desc {
  margin-top: 12px;
  font-size: 16px;
}

@media (min-width: 1024px) {

  .p-feature-list__wrap {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
  }

  .p-feature-list__label {
    font-size: 12px;
  }

  .p-feature-list__label span {
    font-size: 38px;
    letter-spacing: 2px;
  }

  .p-feature-list__image {
    margin-top: 40px;

    width: 100%;
  }

  .p-feature-list__image img {
    width: 120px;
    height: 100%;
    object-fit: cover;
  }

  .p-feature-list__texts {
    padding: 48px 20px 40px;
  }
}



/*================================
	お客様の声
=================================*/

.p-review{
  margin-top: 20px;
  display: grid;
  row-gap: 24px;
}

.p-review__item{
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  padding: 20px;
}

.p-review__heading{
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.p-review__heading::after{
  position: absolute;
  content: "";
  width: 24px;
  height: 2px;
  background: var(--main-color);
  left: 0;
  bottom: 0;
}

.p-review__textarea{
  display: grid;
  row-gap: 8px;
  line-height: 2;
}

.p-review__textarea p{
  font-size: 15px;
}

@media (min-width: 1024px){
  .p-review__item{
    padding: 24px 40px;
  }

  .p-review__heading{
    margin-bottom: 24px;
  }
}

.p-works-list__wrap {
  background: #fff;
  border-radius: 10px;
  margin-top: 20px;
  padding: 0 20px;
}

.p-works-list {
  padding: 20px 0;
  display: grid;
  gap: 12px;
}

.p-works-list:not(:last-of-type) {
  border-bottom: solid 1px var(--border-color);
}

.p-works-list__cat {
  background-color: #fff;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 4px;
  font-size: 12px;
  padding: 2px 10px;
  text-align: center;
  text-wrap: balance;
  align-self: start;
  flex-shrink: 0;
  width: -moz-fit-content;
  width: fit-content;
}

.p-works-list__title {
  display: inline-block;
  width: fit-content;
  position: relative;
}

.p-works-list__title::after {
  position: absolute;
  left: 0;
  bottom: -4px;
  content: '';
  width: 100%;
  height: 1px;
  background: #555;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}

.p-works-list__title:hover::after {
  transform: scale(1, 1);
}

@media (min-width: 768px) {
  .p-works-list__wrap {
    padding: 0 40px;
  }

  .p-works-list {
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: center;
    padding: 32px 0;
  }
}

@media (min-width: 1024px) {
  .p-works-list__wrap {
    padding: 16px 64px;
  }

  .p-works-list {
    padding: 40px 0;
  }
}


/*================================
	info-panel
=================================*/

.p-info-panel__wrap {
  display: grid;
  gap: 64px;
}

.p-info-panel {
  position: relative;
}

.p-info-panel__header span {
  color: var(--main-color);
  display: block;
  position: relative;
  text-transform: capitalize;
  font-family: var(--english-font);
  padding-left: 16px;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
}

.p-info-panel__header span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  width: 8px;
  height: 1px;
  background: var(--main-color);
  display: block;
}

.p-info-panel__header h2 {
  font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
  margin-top: 12px;
}

.p-info-panel__desc {
  margin-top: 16px;
}

.p-info-panel__image {
  height: 100px;
  width: 100px;
  position: absolute;
  right: 8%;
  top: -36px;
}

.p-info-panel__image img{
  object-fit: cover;
}

@media (min-width: 1024px) {
  .p-info-panel__wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }

  .p-info-panel__image{
    width: 90px;
    top: -60px;
  }

  .p-info-panel:nth-child(2)::before{
    position: absolute;
    content: "";
    width: 1px;
    height: 90%;
    background: #dedede;
    left: -48px;
    top: 50%;
    transform: translateY(-50%);
  }

  .p-info-panel:nth-child(2)::after{
    position: absolute;
    content: "";
    width: 1px;
    height: 90%;
    background: #dedede;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
  }

  .p-info-panel__image.-right{
    right: -68px;
  }


  .p-info-panel__desc{
    margin-top: 40px;
  }
}

@media (min-width: 1024px){
  .p-info-panel__image{
    width: 100px;
  }
}

/*================================
	cta
=================================*/

.p-cta {
  background: #e6a40b;
}

.p-cta__wrap {
  padding: 40px 6%;
  max-width: 1280px;
  margin-inline: auto;
}

.p-cta__header span {
  color: #fff;
  display: block;
  position: relative;
  text-transform: capitalize;
  font-family: var(--english-font);
  padding-left: 24px;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
}

.p-cta__header span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  width: 16px;
  height: 1px;
  background: #fff;
  display: block;
}

.p-cta__header h2 {
  font-size: clamp(1.5rem, 1.136rem + 1.82vw, 2.5rem);
  color: #fff;
}

.p-cta__header p {
  margin-top: 16px;
  color: #fff;
}

.p-cta__action {
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px 20px;
  margin-top: 30px;
  display: grid;
  gap: 20px;
}

.p-cta__action--tel {
  text-align: center;
}

.p-cta__action--tel a {
  font-size: clamp(1.5rem, 1.318rem + 0.91vw, 2rem);
  color: #555;
  display: inline-block;
  position: relative;
  font-weight: bold;
}

.p-cta__action--tel a::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/icon/tel.svg) no-repeat center center/contain;
  left: -32px;
  top: 50%;
  transform: translateY(-50%);
}

.p-cta__action--tel p {
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
  color: #555;
}

.p-cta__button {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  transition: .4s;
}

.p-cta__button a {
  text-align: center;
  padding: 12px 16px;
  display: block;
  position: relative;
  width: 80%;
  margin: 0 auto;
  width: 280px;
  font-weight: bold;
  border-radius: calc(1px/0);
}

.p-cta__button:hover {
  transform: scale(1.05);
}

.p-cta__button--form a {
  border: 2px solid var(--main-color);
  color: var(--main-color);
}

.p-cta__button--form a::after {
  background: url('../images/icon/arrow-white.svg') no-repeat;
  content: '';
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  background-size: contain;
  height: 24px;
  width: 24px;
}

.p-cta__button--line a {
  border: 2px solid #34C656;
  color: #34C656;
}

.p-cta__button--line a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  background: url('../images/icon/arrow-circle-green.svg') no-repeat;
  background-size: contain;
  height: 24px;
  width: 24px;
}


@media (min-width: 1200px) {
  .p-cta {
    padding: 40px 0;
    margin: 0 6%;
    border-radius: 20px;
  }

  .p-cta__action--tel a::before {
    width: 28px;
    height: 28px;
    left: -40px;
  }

  .p-cta__action {
    padding: 48px 40px;
  }

  .p-cta__action {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 12px;
  }
}


/*================================
	footer
=================================*/

.l-footer {
  padding: 64px 0 24px;
}

.l-footer__logo {
  font-size: 18px;
  font-weight: normal;
}

.l-footer__info {
  font-size: 14px;
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.l-footer__content {
  padding-top: 40px;
  font-size: 14px;
  display: grid;
  gap: 40px;
  border-top: 1px solid var(--border-color);
  margin-top: 24px;
}

.l-footer__nav {
  display: grid;
  gap: 16px;
}

.l-footer__copy {
  color: #969696;
  font-size: 14px;
}

@media (min-width: 1024px) {
  .l-footer {
    padding-bottom: 64px;
  }

  .l-footer__info {
    margin-top: 32px;
  }

  .l-footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
  }

  .l-footer__nav {
    display: flex;
  }
}


/*================================
	breadcrumb
=================================*/

.c-breadcrumb {
  padding: 80px 0 12px;
}

@media (min-width: 1024px) {
  .c-breadcrumb {
    padding: 24px 0;
    padding-top: 108px;
  }
}

.c-breadcrumb__inner{
  max-width: 1280px; 
  padding-left: 6%; 
  margin: 0 auto;
}

.c-breadcrumb__item {
  position: relative;
}

.c-breadcrumb__item:hover{
  opacity: .6;
}

.c-breadcrumb__list {
  display: flex;
    flex-wrap: nowrap;        
  overflow-x: auto;           
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch; /* iOS慣性スクロール */
}

.c-breadcrumb__list span {
  flex: 0 0 auto; 
  padding-right: 10px;
  font-size: 14px;
  color: #767676;
  position: relative;
  display: block;
}

.c-breadcrumb__list::-webkit-scrollbar { 
  height: 0px; 
}

.c-breadcrumb__list span:not(:first-child) {
  margin-left: 10px;
}

.c-breadcrumb__list span a{
  text-decoration: underline;
}


.c-breadcrumb__list span:not(.current-item):not(:last-child)::after{
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: url(../images/icon/arrow-menu.svg) no-repeat center center/contain;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 1320px){
  .c-breadcrumb__inner{ 
    padding-left: 0; 
  }
}
/*================================
	page-header
=================================*/
.l-page-header {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.l-page-header__title {
  font-size: clamp(1.75rem, 1.568rem + 0.91vw, 2.25rem);

}

.l-page-header__lead {
  margin-top: 12px;
  max-width: 600px;
}

@media not all and (min-width: 767px) {
  .l-page-header__lead br {
    display: none;
  }
}

@media (min-width: 768px) {
  .l-page-header__wrap {
    display: flex;
    justify-content: space-between;
  }

  .l-page-header__wrap .c-button {
    align-self: end;
    margin-right: 0;
  }
}

@media (min-width: 1024px) {
  .l-page-header {
    margin-top: 40px;
  }
}

/*================================
	サービスページ
=================================*/

.p-article {
  position: relative;
}

.p-article h2 {
  font-size: clamp(1.5rem, 1.318rem + 0.91vw, 2rem);
  padding-bottom: 1rem;
  margin-top: 56px;
  position: relative;
  overflow: hidden;
}

.p-article h2::before {
  bottom: 0;
  height: 4px;
  left: 0;
  position: absolute;
  width: 2rem;
  background-color: var(--main-color);
  content: "";
  border-radius: 20px;
}

.p-article h2::after {
  bottom: 1px;
  left: 2.5rem;
  height: 1px;
  position: absolute;
  width: 96%;
  background-color: #e1e2e6;
  content: '';
  border-radius: 20px;
}

@media (min-width: 1024px) {
  .p-article h2 {
    margin-top: 120px;
  }
}

.p-article h2:first-child {
  margin-top: 0;
}

.p-article>h3 {
  font-size: clamp(1.25rem, 1.205rem + 0.23vw, 1.375rem);
  margin-top: 40px;
}

@media (min-width: 1024px) {
  .p-article>h3 {
    margin-top: 56px;
  }
}

.p-article h4 {
  font-size: 18px;
  margin-top: 40px;
  position: relative;
  padding-left: 20px;
}

@media (min-width: 1024px) {
  .p-article h4 {
    margin-top: 56px;
  }
}

.p-article h4::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background: url(../images/icon/arrow-menu.svg) no-repeat center center/contain;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.p-article>p {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  line-height: 2;
  margin-top: 16px;
}

@media (min-width: 1024px) {
  .p-article>p {
    margin-top: 32px;
  }
}

.p-article figure {
  margin-top: 32px;
}

.p-article figure>img {
  -o-object-fit: cover;
  object-fit: cover;
}

.p-article figure>figcaption {
  font-size: 14px;
  color: #767676;
  margin-top: 20px;
  text-align: right;
}

.p-article>ul {
  margin-top: 16px;
}

@media (min-width: 1024px) {
  .p-article>ul {
    padding-top: 24px;
  }
}

.p-article>ul>li {
  padding-bottom: 16px;
  position: relative;
  padding-left: 16px;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
}

.p-article>ul>li::before {
  box-sizing: border-box;
  position: absolute;
  top: .55em;
  left: 0;
  border-radius: 50%;
  content: "";
  background-color: var(--main-color);
  width: 6px;
  height: 6px;
}

@media (min-width: 1024px) {
  .p-article>ul>li {
    padding-bottom: 20px;
    padding-left: 20px;
  }

  .p-article>ul>li::before {
    width: 8px;
    height: 8px;
  }
}

@media (min-width: 1024px) {
  /* 親要素の.l-innerをFlexコンテナにする */
  .p-article__wrap {
    display: flex;
    justify-content: space-between;
    /* 要素間のスペースを均等に開ける */
    align-items: flex-start;
    /* 要素を上揃えにする */
  }

  .p-article {
    width: 100%;
    max-width: 792px;
  }

  /*================================
	サイドメニュー
=================================*/
  .c-side-menu {
    width: 100%;
    max-width: 200px;
    padding: 20px;
    position: sticky;
    top: 80px;
  }

  .c-side-menu li a {
    display: block;
    padding: 10px 0;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    padding-left: 24px;
  }

  .c-side-menu li a::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    background: var(--main-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
  }

  .c-side-menu li a:hover {
    color: var(--main-color);
  }
}

@media not all and (min-width: 1023px) {
  .c-side-menu {
    display: none;
  }
}


/*================================
	提供サービスについて
=================================*/

.c-step {
  display: grid;
  gap: 40px;
  margin-top: 24px;
}

@media (min-width: 1024px) {
  .c-step {
    margin-top: 48px;
  }
}

.c-step__item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
}

.c-step__num {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--dark-color);
  border-radius: 50%;
}

.c-step__num span {
  color: #fff;
}

@media (min-width: 1024px) {
  .c-step__num {
    margin-top: 2px;
  }
}

.c-step__heading {
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
  font-weight: bold;
}

.c-step__desc {
  margin-top: 12px;
  text-align: justify;
}

.c-step__desc p {
  margin-bottom: 16px;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
}

.c-step__desc>ul {
  margin-top: 16px;
  background: #f5f6f8;
  padding: 1rem 1rem 0;
  margin-bottom: 16px;
  border-radius: 10px;
}

@media (min-width: 1024px) {
  .c-step__desc>ul {
    padding-top: 24px;
    padding-left: 2rem;
    margin: 20px 0;
  }
}

.c-step__desc>ul>li {
  padding-bottom: 16px;
  position: relative;
  padding-left: 16px;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
}

.c-step__desc>ul>li::before {
  box-sizing: border-box;
  position: absolute;
  top: .55em;
  left: 0;
  border-radius: 50%;
  content: "";
  background-color: var(--main-color);
  width: 6px;
  height: 6px;
}

@media (min-width: 1024px) {
  .c-step__desc>ul>li {
    padding-bottom: 20px;
    padding-left: 20px;
  }

  .c-step__desc>ul>li::before {
    width: 8px;
    height: 8px;
  }
}

.c-step__box {
  background: #f5f6f8;
  margin: 16px 0;
  padding: 16px;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  border-radius: 8px;
}

@media (min-width: 1024px) {
  .c-step__box {
    padding: 24px;
    margin: 20px 0;
  }
}

.c-step__box p {
  margin-bottom: 0;
}

.c-step__box p+p {
  margin-top: 16px;
}

.c-step__box a {
  font-weight: bold;
  color: #047FAC;
}

.c-profile {
  margin-top: 30px;
  display: grid;
  gap: 20px;
}

.c-profile p {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
}

@media (min-width: 1024px) {
  .c-profile {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
  }
}

/*================================
	ボックス
=================================*/
.p-article__box {
  background: #f5f6f8;
  margin-top: 16px;
  padding: 16px;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  border-radius: 8px;
  text-align: justify;
}

@media (min-width: 1024px) {
  .p-article__box {
    margin-top: 40px;
    padding: 24px;
  }
}

.p-article__box p+p {
  margin-top: 16px;
}

.p-article__box a {
  font-weight: bold;
  color: #047FAC;
}

/*================================
	アコーディオン
=================================*/

.accordion {
  margin-top: 4px;
}

.accordion .accordion-item {
  border-bottom: 1px solid #f7f7f7;
}

.accordion-title {
  display: inline-block;
  padding-right: 2rem;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  line-height: 1.75;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 20px 0;
  color: #333;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover {
  cursor: pointer;
  color: var(--main-color);
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: var(--main-color);
  border: 1px solid var(--main-color);
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 20px;
  right: 0;
  width: 22px;
  height: 22px;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion .icon[aria-expanded='true'] {
  color: var(--main-color);
}

.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}

.accordion button[aria-expanded='true']+.accordion-content {
  opacity: 1;
  max-height: 100%;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content p {
  margin: 0 0 2rem;
  color: #666666;
}

@media (min-width: 1024px) {
  .accordion {
    margin-top: 32px;
  }

  .accordion button {
    padding: 32px 0;
  }

  .accordion button .icon {
    top: 32px;
  }
}

/*================================
	table
=================================*/

.c-table {
  margin: 30px auto 0;
  max-width: 800px;
}

.c-table__list dt {
  padding: 18px 0 13px 0;
  font-weight: bold;
  border-top: solid 1px var(--border-color);
}

.c-table__list dd {
  padding: 0px 0 19px 0;
  line-height: 2;
}

.c-table__list dd:last-of-type {
  border-bottom: solid 1px #e6e6e6;
}

.c-table__list a {
  text-decoration: underline;
  color: #1839b1;
}

@media (min-width: 768px) {
  .c-table__list {
    display: grid;
    grid-template-columns: 220px 1fr;
  }

  .c-table__list dt {
    padding: 32px;
    background: var(--sub-color);
  }

  .c-table__list dt:last-of-type {
    border-bottom: solid 1px #e6e6e6;

  }

  .c-table__list dd {
    padding: 32px;
    border-top: solid 1px var(--border-color);
  }
}

/*================================
	お問い合わせ
=================================*/

.p-contact {
  border-top: 1px solid #ccc;
}

.p-contact__body {
  max-width: 720px;
  margin: 0 auto;
}

.p-contact__form {
  background: #fafafa;
  padding: 0 12px;
}

.p-contact__lead p {
  margin-bottom: 12px;
}

.p-contact__lead a {
  text-decoration: underline;
}

.p-contact__require{
  font-size: 14px;
}

@media (min-width: 768px) {
  .p-contact__form {
    margin-top: 40px;
    padding: 20px 32px 60px;
  }
}

.p-contact__tel {
  text-align: center;
  line-height: 1.4;
  background: #f7f7f7;
  padding: 24px 0;
  margin-top: 32px;
  margin-bottom: 40px;
}

.p-contact__tel a {
  display: inline-block;
  font-size: 32px;
  letter-spacing: 1px;
  position: relative;
}

.p-contact__tel a small {
  font-size: 18px;
  text-transform: uppercase;
}

.p-contact__tel span {
  font-size: 14px;
  display: block;
  padding-top: 8px;
}
/*================================
	送信完了画面
=================================*/

.p-thanks {
  padding: 40px 0;
  max-width: 720px;
  margin: 0 auto;
}

.p-thanks__heading {
  font-size: 24px;
}

.p-thanks__texts {
  margin-top: 20px;
}

.p-thanks__texts p {
  margin-bottom: 16px;
}

@media not all and (min-width: 767px) {
  .p-thanks__texts br {
    display: none;
  }
}

.p-thanks__alert p {
  color: #cb0808;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .p-thanks__heading {
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .p-thanks {
    padding: 64px 0;
  }

  .p-thanks__heading {
    font-size: 32px;
  }

  .p-thanks__texts {
    margin-top: 28px;
    font-size: 18px;
  }

  .p-thanks__alert {
    font-size: 18px;
  }
}

/*----------------------------------------
	Form
----------------------------------------*/

.c-form__table {
  width: 100%;
}

.c-form__table th {
  width: 100%;
  padding: 20px 0 0 0;
  vertical-align: middle;
  text-align: left;
}

.c-form__table td {
  padding: 10px 0 20px 0;
  vertical-align: middle;
}

.c-form__table,
.c-form__table tbody,
.c-form__table tr,
.c-form__table th,
.c-form__table td {
  display: block;
}

.c-form__field 
input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /*ブラウザ標準スタイルを無効にする*/
  width: 100%;
  padding: 10px 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
}

/*必須ラベル*/
.require {
  padding-left: 2px;
  color: red;
}


/*----------------------------------------
	個人情報保護方針チェック
----------------------------------------*/
.c-form__privacy-box {
  margin: 0 0 24px;
}

.c-form__privacy-box a {
  text-decoration: underline;
  color: #337ab7;
}

@media screen and (min-width: 768px), print {
  .c-form__privacy-box {
    padding: 20px;
    text-align: center;
  }
}

/*----------------------------------------
	送信ボタン
----------------------------------------*/
.c-from__button {
  display: flex;
  justify-content: center;
}

.c-from__button-action {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  margin: 0;
  padding: 12px;
  width: 100%;
  max-width: 400px;
  border: 2px solid var(--main-color);
  background: var(--main-color);
  color: #fff;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.1em;
  transition: opacity 0.3s, color 0.3s;
  cursor: pointer;
}

.c-from__button-action:hover {
  opacity: 0.7;
}

div.wpcf7 .wpcf7-spinner {
  display: none !important;
}

/*================================
	rich-text
=================================*/

.p-rich-text {
  background: var(--main-color);
}

.p-rich-text__wrap {
  display: grid;
  gap: 20px;

}

.p-rich-text__heading h2 {
  font-size: clamp(1.5rem, 1.318rem + 0.91vw, 2rem);
  line-height: 2;
  color: #fff;
}

.p-rich-text__textarea {
  display: grid;
  gap: 16px;

}

.p-rich-text__textarea p{
color: #fff;
}

@media (min-width: 1024px) {
  .p-rich-text__wrap {
    grid-template-columns: 400px 1fr;
    padding-right: 40px;
    padding-left: 40px;
  }

  .p-rich-text__textarea {
    gap: 24px;
  }
}

/*================================
	text-with-icons
=================================*/

.p-text-with-icons {
  display: grid;
  gap: 40px;
  margin-top: 24px;
}

.p-text-with-icons__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  align-items: center;
}

  .p-text-with-icons__text p {
    color: var(--dark-color);
    font-weight: bold;
  }

@media (min-width: 1024px) {
  .p-text-with-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
  }

  .p-text-with-icons__icon {
    width: 180px;
    margin-inline: auto;
    margin-bottom: 24px;
  }


  .p-text-with-icons__item {
    display: block;
  }

  .p-text-with-icons__text p {
    text-align: center;
  }
}

/*================================
	strength
=================================*/

.p-strength__heading span {
  color: var(--main-color);
  font-weight: bold;
  font-size: 14px;
}

.p-strength__heading h2 {
  margin-top: 8px;
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
}

.p-strength__textarea {
  margin-top: 16px;
}

.p-strength__textarea p {
  margin-bottom: 16px;
}

@media (min-width: 1024px) {
  .p-strength__textarea {
    margin-top: 28px;
  }
}

/*================================
	message
=================================*/

.p-message {
  margin: 30px auto 0;
}

.p-message__portrait {
  position: relative;
}

.p-message__profile {
  margin-top: 24px;
}

.p-message__profile span {
  font-size: 14px;
  font-weight: bold;
}

.p-message__profile p {
  font-size: 16px;
  font-weight: bold;
}

.p-message__textarea p {
  margin-bottom: 16px;
}

@media (min-width: 1024px) {
  .p-message.l-grid{
    align-items: start;
    grid-template-columns: 360px 1fr;
  }
  .p-message__profile {
    margin-top: 12px;
  }

  .p-message__textarea p {
    margin-bottom: 28px;
  }

  .p-message__portrait{
    height: 400px;
  }

  .p-message__portrait img{
    height: 100%;
    width: 100%;
  }
}


/*================================
	privacy-policy
=================================*/
.p-policy {
  padding: 40px 0;
  max-width: 800px;
  margin: 0 auto;
}

.p-policy-main h2 {
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
  margin-top: 44px;
  margin-bottom: -18px;
}

.p-policy-main p {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  line-height: 2.25;
  margin: 30px 0;
}

.p-policy-main ul {
  margin: 30px 0;
}

.p-policy-main li {
  margin: 6px 0;
  padding-left: 24px;
  line-height: 2;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  position: relative;
}

.p-policy-main li:before {
  display: block;
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #333;
  border-radius: 100%;
}

@media (min-width: 1024px) {
  .p-policy {
    padding: 64px 0;
  }
  
  .p-policy-main h2 {
    margin-top: 54px;
  }
  
  .p-policy-main p {
    margin: 36px 0;
  }
  
  .p-policy-main ul {
    margin: 36px 0;
  }
}


/*================================
	404
=================================*/

.p-error__contents{
  background: var(--bg-color);
  padding: 20px 16px;
  margin: 0 auto;
  max-width: 800px;
}

.p-error__contents h2{
  margin-bottom: 12px;
  font-size: 18px;  
}

@media (min-width: 768px){

  .p-error__contents{
    padding: 40px 40px 24px;
  }

  .p-error__contents h2{
    font-size: 22px;
  }
}

.p-index-feature{
  margin: 24px auto 0;
  width: 76vw;
  display: grid;
  row-gap: 24px;
  position: relative;
  
}

.p-index-feature::before{
  position: absolute;
  content: "";
  width: 90vw;
  height: 92%;
  background: #F5F3EC;
  left: 50%;
  transform: translateX(-50%);
  top: 10%;
  border-radius: 10px;
}

.p-index-feature__item{
  padding: 18px 24px;
  border-radius: 10px;
  box-shadow: -4px 2px 20px rgba(207, 200, 181, 0.43);
  position: relative;
  background: #fff;
}

.p-index-feature__number{
  font-size: 20px;
  font-weight: bold;
  color:#fff;
  position: absolute;
  left: 16px;
  top: 16px;
  background: var(--main-color);
  border-radius: 50%;
  padding: 8px;

}

.p-index-feature__image{
  width: 100px;
  height: auto;
  margin-inline: auto;
}

.p-index-feature__texts{
  margin-top: 16px;
  text-align: center;
  display: grid;
  row-gap: 12px;
}

@media (min-width: 1024px){
  .p-index-feature{
    grid-template-columns: repeat(3, 1fr);
    column-gap: 32px;
    width: 96%;
    margin-top: 32px;
    margin-bottom: 64px;
  }

  .p-index-feature::before{
    top: 30%;
    height: 80%;
    max-width: 1280px;
  }

  .p-index-feature__item{
    padding: 32px 32px;
  }

  .p-index-feature__image{
    width: 120px;
    height: 132px;
    object-fit: cover;
  }
}