
@charset "utf-8";

html { overflow: auto; }
body { overflow: hidden; }

html {
  overflow-y: scroll;
}

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

body {
  font-family: sans-serif;
  line-height: 1.618;
  color: #082928;
  margin: 0;
}

h1,h2,h3,p,ul,ol {
  margin: 0;
}

h1,h2,h3,h4 {
  font-weight: bold;
  line-height: 1.41;
  font-feature-settings: "palt";
}

p:not(:last-child),ul,ol {
  margin-bottom: 1em;
}

@media(max-width: 599px) {
  p br {
    display: none;
  }
}

img {
  max-width: 100%;              /* 1 */
  height: auto;                 /* 1 */
  vertical-align: middle;       /* 2 */
  font-style: italic;           /* 3 */
  background-repeat: no-repeat; /* 4 */
  background-size: cover;       /* 4 */
  shape-margin: 0.75rem;        /* 5 */
}

strong {
  font-weight: bold;
}

figure {
  border: 0;
  margin: 0;
}


/* リンク
======================================================================= */

a,
a:hover {
  color: #fff;
  text-decoration: underline;
}

a:hover, 
a:focus {
  text-decoration: none;
}

a:active {
  color: #fff;
  text-decoration: none;
}

a:hover > img {
  opacity: .9;
}

/* =======================================================================
  メディアクエリによる表示／非表示
======================================================================= */

.pc { display: block; }
.sp { display: none; }

@media(max-width: 599px) {
  .pc { display: none; }
  .sp { display: block; }
}

/* =======================================================================
  レイアウト
======================================================================= */

/* 幅 */

.l-width {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 800px;
}


@media(max-width: 599px) {
  .l-width {
    padding: 0 20px;
  }
}

/* =======================================================================
  見出し
======================================================================= */

h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 70px;
  font-weight: 900;
  color: #029792;
}

@media(max-width: 599px) {
  h2 {
    margin-bottom: 30px;
    font-size: 36px;
    font-weight: bold;
  }
}

/* =======================================================================

  ヘッダー

======================================================================= */

.header {
  margin-bottom: 80px;
}

.header__1 {
  padding-top: 60px;
  background: url("img/header__bg.webp") no-repeat center top;
  background-size: cover;
}

.header__1 h1 {
  margin-bottom: 40px;
}

.header__2 {
 background-color: #029792;
  padding: 40px 0;
}

@media(max-width: 599px) {
  .header {
    margin-bottom:30px
  }
}

/* =======================================================================

  メイン

======================================================================= */

.main > *:first-child {
  margin-top: 0;
}
.main > *:last-child {
  margin-bottom: 0;
}


/* Safariで文字が太らないようにする */

_::-webkit-full-page-media, _:future, :root body {
  -webkit-font-smoothing: antialiased;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
  ::i-block-chrome, body {
    -webkit-font-smoothing: antialiased;
  }
}


/* =======================================================================
  タイポグラフィー
======================================================================= */

.main p:not([class]) {
  font-size: 1.1em;
}

@media(max-width: 599px) {
  .main p:not([class]) {
    font-size: 1em;
  }
}


/* =======================================================================
  CTA
======================================================================= */

.cta {
  margin: 80px 0;
}

.cta__inner {
  display: flex;
  justify-content: space-between;
}

.cta__item {
  text-align: center;
}

.cta__item figure {
  margin-bottom: 20px;
}

@media (max-width: 599px) {
  .cta {
    margin: 40px 0;
  }

  .cta__inner {
    display: block;
    justify-content: space-between;
  }

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

  .cta__item figure {
    text-align: center;
    margin-bottom: 0;
  }

  .cta__item figure img{
    text-align: center;
    margin-bottom: 7px;
    height: 28px;
  }
}

/* =======================================================================
  注意
======================================================================= */

.caution {
  margin-bottom: 100px;
}

@media (max-width: 599px) {
  .caution {
    margin-bottom: 0;
  }
}

/* =======================================================================
  お悩み
======================================================================= */

.worries .pc {
  background: url(img/worries__bg.webp) no-repeat center top ;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 100px;
  margin-bottom: 100px;
}

.worries__p {
  display: inline-block;
  background-color: #fff;
  padding: 10px 20px;
  font-size: 24px;
  font-weight: bold;
}

.worries__p img {
  padding-right: 10px;
}

@media(max-width: 599px) {
  .worries {
    padding-bottom: 0;
    padding-top: 0;
    margin-bottom: 40px;
  }

  .worries__p {
    padding: 8px 10px;
    font-size: 18px;
    font-weight: bold;
  }

  .worries__p img {
    padding-right: 10px;
    width: 30px;
  }
}

/* =======================================================================
  問題
======================================================================= */

.problem figure {
  text-align: center;
  margin: 50px;
}

.problem__list-1 {
  padding-inline-start: 1px;
  list-style-type: none;
  margin-bottom: 20px;
}

ul.problem__list-1 li {
  position: relative;
  margin-bottom: .4em;
  padding-left: 33px;
  font-weight: 600;
  line-height: 1.5;
  font-size: 24px;
}

ul.problem__list-1 li::before {
  position: absolute;
  top: .3em;
  left: 0;
  color: #082928;
  content: '\f111';
  font-family: FontAwesome;
  font-size: .8em;
}

.problem__list-2 {
  list-style: none;
  counter-reset: number;
  padding: 30px;
  background: #f3f3ee;
  margin-bottom: 20px;
}

.problem__list-2 li {
  position: relative;
  padding-left: 1.5em;
  padding-bottom: .5em;
  margin-bottom: .5em;
  border-bottom: 1px solid #717171;
  padding-left: 33px;
  font-weight: 600;
  line-height: 1.5;
  font-size: 20px;
}

.problem__list-2 li::before {
  counter-increment: number;
  content: counter(number);
  position: absolute;
  top: 5px;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #717171;
  border-radius: 50%;
  font-size: 18px;
  text-align: center;
  line-height: 1.3;
}

.problem__list-2 li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

@media(max-width: 599px) {
  .problem figure {
    text-align: center;
    margin: 30px;
  }

  .problem figure img {
    width: 100px;
  }

  ul.problem__list-1 li {
    position: relative;
    padding-bottom: 0;
    padding-left: 22px;
    line-height: 1.5;
    font-size: 20px;
  }

  ul.problem__list-1 li::before {
    position: absolute;
    top: .3em;
    left: 0;
    font-size: .7em;
  }

  .problem__list-2 {
    padding: 20px;
  }

  .problem__list-2 li {
    padding-left: 30px;
    font-size: 18px;
  }

  .problem__list-2 li::before {
    counter-increment: number;
    content: counter(number);
    position: absolute;
    width: 18px;
    height: 18px;
    font-size: 14px;
  }
}

/* =======================================================================
  選ばれる理由
======================================================================= */

.reason {
  position: relative;
  width: 100%;
  /* セクションの高さを設定（コンテンツに合わせて調整） */
  padding: 0;
  padding: 100px 0;
  margin: 0;
  overflow: hidden;
}

/* 上部の背景画像 */
.reason::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* 上部背景の高さ（調整可能） */
  height: 50%;
  background-image: url('img/reason__bg-1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

/* 下部の背景画像 */
.reason::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  /* 下部背景の高さ（調整可能） */
  height: 50%;
  background-image: url('img/reason__bg-2.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

/* 既存の内容を見やすくするための追加スタイル */
.l-width {
  position: relative;
  z-index: 1;
}

.reason__item {
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .1);
  margin-bottom: 40px;
}

.reason__item:last-child {
  margin-bottom: 0;
}

@media(max-width: 599px) {
  .reason {
    padding: 40px 0;
    margin-bottom: 20px;
  }

  .reason__item {
    margin-bottom: 20px;
    padding: 0;
  }
}

/* =======================================================================
  実績
======================================================================= */

.slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 100px 0;
}

.slider {
  display: flex;
  animation: scroll 40s linear infinite;
}

.slider img {
  width: 400px;
  height: 300px;
  object-fit: cover;
  margin-right: 15px;
  flex-shrink: 0; /* 画像のサイズが縮まないようにする */
}

@keyframes scroll {
  0% {
    transform: translateX(0);
    }
  100% {
    /* 1セット目の幅分だけマイナス方向に移動 */
    transform: translateX(calc(-200px * 7 - 15px * 7));
    }
}

/* マウスオーバーで一時停止 */
.slider-container:hover .slider {
  animation-play-state: paused;
}


@media(max-width: 599px) {
  .case {
    padding-top: 30px;
  }

  .slider-container {
    margin: 40px 0;
  }

  .slider img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    margin-right: 15px;
    flex-shrink: 0; /* 画像のサイズが縮まないようにする */
  }
}

/* =======================================================================
  voc
======================================================================= */

.voc {
  background: url(img/voc__bg.webp) no-repeat center top ;
  background-size: cover;
  padding: 100px 0;
  margin-bottom: 100px;
}

.voc__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

@media(max-width: 599px) {
  .voc {
    background-size: cover;
    padding: 40px 0;
    margin-bottom: 40px;
  }

  .voc__content {
    display: block;
  }

  .voc__content figure {
    margin-bottom: 20px;
  }
}

/* =======================================================================
  流れ
======================================================================= */

.step {
  margin-bottom: 40px;
}

.step__1 {
  display: flex;
  border: 2px solid #029792;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 60px;
}

.step__1-1 {
  padding: 10px 20px;
  color: #fff;
  background-color: #029792;
}

.step__1-2 {
  padding: 10px 20px;
}

.step__2 {
  display: flex;
  border: 2px solid #f46a05;
  font-size: 26px;
  font-weight: bold;
  margin: 60px 0;
}

.step__2-1 {
  padding: 10px 20px;
  color: #fff;
  background-color: #f46a05;
}

.step__2-2 {
  padding: 10px 20px;
}

@media (max-width: 599px) {
  .step__1 {
    display: block;
    border: 1px solid #029792;
    font-size: 18px;
    margin-bottom: 30px;
    text-align: center;
  }

  .step__1-1 {
    padding: 10px;
  }

  .step__1-2 {
    padding: 10px;
    font-size: 15px;
    font-weight: 400;
  }

  .step__2 {
    display: block;
    border: 1px solid #f46a05;
    font-size: 18px;
    margin-bottom: 30px;
    text-align: center;
    margin: 30px 0;
  }

  .step__2-1 {
    padding: 10px;
  }

  .step__2-2 {
    padding: 10px;
    font-size: 15px;
    font-weight: 400;
  }
}

/* =======================================================================
  注意点
======================================================================= */

.precautions {
  background: url(img/precautions__bg.jpg) no-repeat center top ;
  background-size: cover;
  padding: 100px 0;
}

.precautions__inner {
  padding: 40px;
  background-color: #fff;
}

.precautions__list {
  padding-inline-start: 1px;
  list-style-type: none;
}

ul.precautions__list li {
  position: relative;
  margin-bottom: .5em;
  padding-bottom: .5em;
  padding-left: 33px;
  border-bottom: 1px solid #ddd;
  font-weight: 600;
  line-height: 1.5;
  font-size: 24px;
}

ul.precautions__list li::before {
  position: absolute;
  top: .3em;
  left: 0;
  color: #082928;
  content: '\f111';
  font-family: FontAwesome;
  font-size: .8em;
}

.precautions__span {
  font-size: 24px;
  font-weight: bold;
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: #f4e110;
  text-underline-offset: -0.3em;
  text-decoration-skip-ink: none;
}

@media(max-width: 599px) {
  .precautions {
    padding: 40px 0;
  }

  .precautions__inner {
    padding: 20px;
  }

  ul.precautions__list li {
    position: relative;
    margin-bottom: .4em;
    padding-bottom: .4em;
    padding-left: 25px;
    border-bottom: 1px solid #ddd;
    font-weight: bold;
    line-height: 1.5;
    font-size: 20px;
  }

  ul.precautions__list li::before {
    position: absolute;
    top: .3em;
    left: 0;
    color: #082928;
    content: '\f111';
    font-family: FontAwesome;
    font-size: .7em;
  }

  .precautions__span {
    font-size: 20px;
  }
}

/* =======================================================================
  メッセージ
======================================================================= */

.message {
  background: #f3f3ee;
  padding: 100px 0;
}

.message__h2-p {
  font-size: 28px;
  color: #082928;
}

.message__item {
  background: #fff;
  padding: 40px;
  padding-right: 30px;
  margin-bottom: 80px;
}

.message__photo {
  float: right;
  width: 150px;
  margin-right: 10px;
}

.message__head {
  padding-bottom: 40px;
  display: flex;
  align-items: center;
}

.logo {
  width: 120px;
  height: auto;
}

.message__name {
  font-size: 20px;
  font-weight: 600;
}

@media(max-width: 599px) {
  .message {
    padding: 40px 0;
  }

  .message__h2-p {
    font-size: 20px;
    font-weight: 400;
  }

  .message__item {
    background: #fff;
    padding: 40px 20px;
    margin-bottom: 40px;
  }

  .message__photo {
    float: none;
    text-align: center;
    width: 100px;
    margin-right: 0;
  }

  .message__img {
    text-align: center;
  }

  .message__head {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .message__name {
    padding-left: 20px;
    font-size: 16px;
  }
}

/* =======================================================================
  フッター
======================================================================= */

.footer {
  padding: 30px;
  background: #029792;
  color: #fff;
  text-align: center;
}

.footer p:last-child {
  font-size: 14px;
}

@media(max-width: 599px) {
  .footer {
    padding: 20px;
  }

  .footer p:last-child {
    font-size: 12px;
  }
}

/* =======================================================================
  アクセント
======================================================================= */

.a-marker,
p.a-marker {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: #f4e110;
  text-underline-offset: -0.3em;
  text-decoration-skip-ink: none;
}

.red,
p.red {
  color: #ef3c30;
}

.green {
  color: #029792;
}

.orange {
  color: #f46a05;
}
