@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.2030075188vw;
  }
}
@media (min-width: 1330px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  color: #333;
}

@media screen and (min-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  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;
  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]) {
  text-decoration-skip-ink: auto;
}

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

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

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  width: 100%;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1330px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.c-section-title {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 10px;
}

.c-section-title--left {
  text-align: left;
}

.c-section-title__main {
  color: #EC8120;
  font-size: min(5.333vw, 20px);
  line-height: 1.5;
}

.c-section-title__sub {
  font-size: min(3.7333vw, 14px);
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .c-section-title__main {
    font-size: min(2.1875vw, 28px);
  }
  .c-section-title__sub {
    font-size: min(1.25vw, 16px);
  }
}
.p-about {
  padding-top: 40px;
  padding-bottom: 40px;
}

.p-about__body {
  text-align: center;
}

.p-about__text {
  font-size: min(4.8vw, 18px);
  line-height: 1.7;
}

.p-about__text:not(:first-child) {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .p-about {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .p-about__text {
    font-size: min(1.5625vw, 20px);
  }
}
.p-common-body {
  margin-top: 30px;
  text-align: center;
}

.p-common-body__text {
  font-size: min(4.8vw, 18px);
  line-height: 1.7;
}

.p-common-body__text:not(:first-child) {
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .p-common-body {
    margin-top: 40px;
    text-align: center;
  }
  .p-common-body__text {
    font-size: min(4.8vw, 18px);
  }
}
.p-contact {
  background-color: #f9f9f9;
  padding: 40px 0;
}

.p-contact__desc {
  text-align: center;
  margin-top: 10px;
  font-size: min(4.2666vw, 16px);
}

.p-contact__form {
  background-color: #ffffff;
  margin-top: 40px;
  padding: 30px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}

.p-contact__item {
  margin-bottom: 20px;
}
.p-contact__item--center {
  text-align: center;
}

.p-contact__label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.p-contact__required {
  color: #ff0000;
  margin-left: 3px;
}

.p-contact__input,
.p-contact__textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.p-contact__input:focus,
.p-contact__textarea:focus {
  outline: none;
  border-color: #EC8120;
  -webkit-box-shadow: 0 0 0 2px rgba(236, 129, 32, .2);
          box-shadow: 0 0 0 2px rgba(236, 129, 32, .2);
}
.p-contact__input.is-error,
.p-contact__textarea.is-error {
  border-color: #ff0000;
}

.p-contact__textarea {
  height: 150px;
}

.p-contact__button {
  min-width: 150px;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s, opacity 0.3s;
  transition: background-color 0.3s, opacity 0.3s;
}
.p-contact__button:disabled {
  background-color: #CCCCCC;
  color: #ffffff;
  cursor: not-allowed;
}
.p-contact__button:not(:disabled) {
  background-color: #EC8120;
  color: #ffffff;
}
.p-contact__button:not(:disabled):hover {
  opacity: 0.8;
}

.mouse-focus {
  outline: 2px solid #EC8120;
}

.p-contact__error {
  display: block;
  color: #ff0000;
  font-size: 0.85em;
  margin-top: 5px;
}

.p-contact__success-message {
  display: none;
  background-color: #dff0d8;
  color: #3c763d;
  padding: 15px;
  margin-top: 20px;
  border-radius: 4px;
  text-align: center;
}

.p-contact__present {
  margin-top: 20px;
  text-align: center;
}

.p-contact__present a {
  color: #2c5a4f;
  text-decoration: underline;
}

/* プレースホルダーのスタイル */
.p-contact__input::-webkit-input-placeholder,
.p-contact__textarea::-webkit-input-placeholder {
  color: #999;
  font-style: italic;
}
.p-contact__input::-moz-placeholder,
.p-contact__textarea::-moz-placeholder {
  color: #999;
  font-style: italic;
}
.p-contact__input::-ms-input-placeholder,
.p-contact__textarea::-ms-input-placeholder {
  color: #999;
  font-style: italic;
}
.p-contact__input::placeholder,
.p-contact__textarea::placeholder {
  color: #999;
  font-style: italic;
}

/* Webkit（Chrome、Safari、新しいEdge）ブラウザ用 */
.p-contact__input::-webkit-input-placeholder,
.p-contact__textarea::-webkit-input-placeholder {
  color: #999;
  font-style: italic;
}

/* Firefox 19以上用 */
.p-contact__input::-moz-placeholder,
.p-contact__textarea::-moz-placeholder {
  color: #999;
  font-style: italic;
  opacity: 1;
}

/* IE 10-11用 */
.p-contact__input:-ms-input-placeholder,
.p-contact__textarea:-ms-input-placeholder {
  color: #999;
  font-style: italic;
}

/* Edge 12-18用 */
.p-contact__input::-ms-input-placeholder,
.p-contact__textarea::-ms-input-placeholder {
  color: #999;
  font-style: italic;
}

@media screen and (min-width: 768px) {
  .p-contact {
    padding: 80px 0;
  }
  .p-contact__desc {
    font-size: min(1.25vw, 16px);
  }
  .p-contact__form {
    background-color: #ffffff;
    margin-top: 40px;
    padding: 30px;
    border-radius: 8px;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
            box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
  }
  .p-contact__item {
    margin-bottom: 20px;
  }
  .p-contact__item--center {
    text-align: center;
  }
  .p-contact__label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
  .p-contact__input,
  .p-contact__textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  .p-contact__textarea {
    height: 150px;
  }
  .p-contact__button {
    background-color: gray;
    color: white;
    min-width: 150px;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
  }
}
.p-customize-benefits {
  padding: 40px 0;
}

.p-customize-benefits__items {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

.p-customize-benefits__item {
  padding: 20px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  background-color: #f9f9f9;
  border-radius: 5px;
}

.p-customize-benefits__icon {
  width: 36px;
  height: 36px;
  aspect-ratio: 1/1;
}

.p-customize-benefits__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
}

.p-customize-benefits__heading {
  font-size: min(5.3333vw, 20px);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-customize-benefits__body {
  text-align: left;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-customize-benefits__text {
  font-size: min(4.26666vw, 16px);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .p-customize-benefits {
    padding: 80px 0;
  }
  .p-customize-benefits__items {
    margin-top: 40px;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 1fr);
  }
  .p-customize-benefits__item:nth-child(1) {
    grid-area: 1/1/4/4;
  }
  .p-customize-benefits__item:nth-child(2) {
    grid-area: 1/4/4/7;
  }
  .p-customize-benefits__item:nth-child(3) {
    grid-area: 4/1/7/3;
  }
  .p-customize-benefits__item:nth-child(4) {
    grid-area: 4/3/7/5;
  }
  .p-customize-benefits__item:nth-child(5) {
    grid-area: 4/5/7/7;
  }
  .p-customize-benefits__item {
    padding: 40px;
  }
  .p-customize-benefits__heading {
    font-size: min(1.875vw, 24px);
  }
  .p-customize-benefits__text {
    font-size: min(1.25vw, 16px);
  }
}
.p-example {
  padding-top: 40px;
  padding-bottom: 40px;
}

.p-example__desc {
  text-align: center;
  margin-top: 10px;
  font-size: min(4.2666vw, 16px);
}

.p-example__items {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

.p-example__item {
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 5px;
}

.p-example__img {
  aspect-ratio: 16/9;
  border: 1px solid #e0e0e0;
}

.p-example__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
}

.p-example__body {
  padding: 20px 0;
}

.p-example__heading {
  font-size: min(5.3333vw, 20px);
  text-align: center;
}

.p-example__text {
  margin-top: 20px;
  font-size: min(4.26666vw, 16px);
  line-height: 1.7;
}

.p-example__chat {
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 5px;
  margin-top: 30px;
}

.p-example__chat-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 30px;
}

.p-example__chat-item {
  width: 100%;
}

.p-example__chat-body {
  margin-top: 20px;
}

.p-example__chat-title {
  font-size: min(5.3333vw, 20px);
  text-align: center;
}

.p-example__chat-text {
  font-size: min(4.26666vw, 16px);
  line-height: 1.7;
}

.p-example__chat-text:not(:first-child) {
  margin-top: 10px;
}

.p-example__chat-text:last-child {
  margin-top: 20px;
}

.p-example__chat-text span {
  color: #EC8120;
}

.p-example__chat-img {
  aspect-ratio: 3/2;
  border: 1px solid #e0e0e0;
}

.p-example__chat-img--2 {
  aspect-ratio: 16/9;
}

.p-example__chat-img:not(:first-child) {
  margin-top: 10px;
}

.p-example__chat-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
}

@media screen and (min-width: 768px) {
  .p-example {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .p-example__desc {
    font-size: min(1.25vw, 16px);
  }
  .p-example__items {
    grid-template-columns: repeat(3, 1fr);
  }
  .p-example__heading {
    font-size: min(1.875vw, 24px);
  }
  .p-example__text {
    font-size: min(1.25vw, 16px);
  }
  .p-example__chat {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    margin-top: 30px;
  }
  .p-example__chat-items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .p-example__chat-item {
    width: 50%;
  }
  .p-example__chat-title {
    font-size: min(1.875vw, 24px);
    text-align: left;
  }
  .p-example__chat-text {
    font-size: min(1.25vw, 16px);
  }
}
.p-footer {
  background-color: #fff;
  padding: 40px 0 20px;
  border-top: 1px solid #e9ebeb;
}

.p-footer__blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-footer__block {
  width: 100%;
}

.p-footer__logo {
  width: 120px;
}

.p-footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
}

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

.p-footer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-footer__item {
  font-size: min(4.26666vw, 16px);
}

.p-footer__item a {
  height: inherit;
  width: 100%;
  display: inline-block;
  padding: 10px 0;
}

.p-footer__copyright {
  margin-top: 20px;
  text-align: right;
}

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

.p-footer__company {
  font-size: min(4.26666vw, 16px);
  font-weight: normal;
}

.p-footer__office-list {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.p-footer__office-area {
  font-size: 15px;
}

@media screen and (min-width: 768px) {
  .p-footer {
    background-color: #fff;
    padding: 40px 0 20px;
  }
  .p-footer__blocks {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .p-footer__block {
    width: 50%;
  }
  .p-footer__logo {
    width: 120px;
  }
  .p-footer__logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    vertical-align: top;
  }
  .p-footer__nav {
    margin-top: 20px;
  }
  .p-footer__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-footer__item {
    font-size: min(1.25vw, 16px);
  }
  .p-footer__item:hover {
    color: #EC8120;
    opacity: 1;
  }
  .p-footer__copyright {
    margin-top: 20px;
    text-align: right;
  }
}
.p-fv {
  height: 40vh;
  padding-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
  background-color: rgb(255, 255, 255);
  border-radius: 0 0 0 60px;
}

.p-fv__content {
  text-align: center;
  padding: 20px;
}

.p-fv__title {
  font-size: min(8.53333vw, 32px);
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.p-fv__text {
  font-size: min(3vw, 14px);
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .p-fv {
    height: 60vh;
    padding-top: 80px;
  }
  .p-fv__content {
    text-align: center;
    padding: 20px;
  }
  .p-fv__title {
    font-size: min(4.6875vw, 60px);
    font-weight: bold;
    margin-bottom: 2rem;
    line-height: 1.2;
  }
  .p-fv__text {
    font-size: min(1.40625vw, 18px);
    line-height: 1.5;
  }
}
/* ヘッダースタイル */
.p-header {
  background-color: #fff;
  border-bottom: 1px solid #e9ebeb;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.l-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.p-header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}

.p-header__logo {
  width: 120px;
}

.p-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
}

.p-header__items {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100% - 60px);
  background-color: #EC8120;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  overflow-y: auto;
}
.p-header__items.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.p-header__item {
  margin: 20px 0;
  font-size: 18px;
  color: #fff;
}

/* ハンバーガーメニュー */
.p-header__hamburger {
  display: block;
  cursor: pointer;
  z-index: 1001;
}
.p-header__hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #EC8120;
  border-radius: 5px;
  margin: 5px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-header__hamburger.is-active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
          transform: rotate(45deg) translate(5px, 5px);
}
.p-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.p-header__hamburger.is-active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(7px, -6px);
          transform: rotate(-45deg) translate(7px, -6px);
}

/* オーバーレイ */
.p-header__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  z-index: 999;
}
.p-header__overlay.is-active {
  display: block;
}

/* PCレイアウト */
@media screen and (min-width: 768px) {
  .p-header {
    height: 80px;
  }
  .p-header__logo {
    font-size: 24px;
  }
  .p-header__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-transform: none;
            transform: none;
    overflow-y: visible;
    text-align: center;
  }
  .p-header__item {
    margin: 0 0 0 20px;
    font-size: clamp(13px, 1.25vw, 16px);
    color: #333;
  }
  .p-header__item:hover {
    color: #EC8120;
    opacity: 1;
  }
  .p-header__hamburger {
    display: none;
  }
  .p-header__overlay {
    display: none;
  }
  .dummy-content {
    margin-top: 80px;
  }
}
.p-manual {
  padding-top: 40px;
  padding-bottom: 40px;
}

.p-manual__cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.p-manual__card {
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
}

.p-manual__sub-head {
  text-align: center;
  font-size: min(4.8vw, 18px);
  line-height: 1.7;
}

.p-manual__body {
  margin-top: 10px;
}

.p-manual__text {
  font-size: min(4.26666vw, 16px);
  letter-spacing: 0.02em;
}

@media screen and (min-width: 768px) {
  .p-manual {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .p-manual__cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .p-manual__sub-head {
    font-size: min(1.5625vw, 20px);
  }
  .p-manual__body {
    margin-top: 10px;
  }
  .p-manual__text {
    font-size: min(1.25vw, 16px);
  }
}
.p-pagetop {
  position: fixed;
  right: 10px;
  bottom: 50px;
  width: 40px;
  height: 40px;
  background-color: #EC8120;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  z-index: 900;
}
.p-pagetop:hover {
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .p-pagetop {
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .p-pagetop {
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .p-pagetop {
    right: calc(50% - 680px);
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}

.p-parallax {
  display: block;
  position: relative;
  height: 30vw;
}

.p-parallax__img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
}

.p-parallax__img::after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  z-index: -1;
  background-image: url("../images/AdobeStock_718327180.jpeg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .p-parallax__img {
    aspect-ratio: 1280/640;
  }
}
.p-recommend {
  padding: 40px 0;
}

.p-recommend__sub-title {
  text-align: center;
  margin-top: 10px;
  font-size: min(4.8vw, 18px);
}

.p-recommend__body {
  margin-top: 10px;
}

.p-recommend__desc {
  text-align: center;
  line-height: 1.75;
  font-size: min(4.2666vw, 16px);
}

.p-recommend__desc:not(:first-child) {
  margin-top: 10px;
}

.p-recommend__desc a {
  text-decoration: underline;
  color: #EC8120;
  font-size: min(4.8w, 18px);
}

@media screen and (min-width: 768px) {
  .p-recommend {
    padding: 80px 0;
  }
  .p-recommend__sub-title {
    font-size: min(1.40625vw, 18px);
  }
  .p-recommend__desc {
    font-size: min(1.25vw, 16px);
  }
  .p-recommend__desc a {
    font-size: min(1.40625w, 18px);
  }
}
.p-shopify-benefits {
  padding: 40px 0;
}

.p-shopify-benefits__items {
  display: grid;
  gap: 60px;
  margin-top: 30px;
}

.p-shopify-benefits__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(30px, 4.6875vw, 60px);
}

.p-shopify-benefits__img {
  width: 100%;
  aspect-ratio: 16/9;
}

.p-shopify-benefits__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
}

.p-shopify-benefits__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-shopify-benefits__heading {
  font-size: min(5.3333vw, 20px);
  text-align: center;
}

.p-shopify-benefits__text {
  margin-top: 20px;
  font-size: min(4.26666vw, 16px);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .p-shopify-benefits {
    padding: 80px 0;
  }
  .p-shopify-benefits__items {
    margin-top: 40px;
  }
  .p-shopify-benefits__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-shopify-benefits__item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .p-shopify-benefits__img {
    width: 48%;
  }
  .p-shopify-benefits__heading {
    font-size: min(1.875vw, 24px);
    text-align: left;
  }
  .p-shopify-benefits__text {
    font-size: min(1.25vw, 16px);
  }
}
@supports not (aspect-ratio: 16/9) {
  .p-shopify-benefits__img::before {
    float: left;
    padding-top: 56.25%;
    content: "";
  }
  .p-shopify-benefits__img::after {
    display: block;
    content: "";
    clear: both;
  }
}
.p-shopify-intro {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .p-shopify-intro {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.p-shopify-our {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .p-shopify-our {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.u-bg-gray {
  background-color: #FAFAFA;
}

.u-bg-white {
  background-color: #fff;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

.u-error {
  color: #ff0000;
}

.u-flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}
/*# sourceMappingURL=styles.css.map */
