@charset "UTF-8";

/* 全体のスタイル */
body {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #45322b;
  overflow-x: hidden; /* 横スクロールを防ぐ */
}

/* ヘッダーのスタイル */
.header-image {
  width: 100%;
  height: auto;
}

/* メインコンテンツのスタイル */
.main-content {
  padding: 20px;
  margin: 20px auto;
  max-width: 1200px;
}

.text_pink {
  color: #f54768;
}
dd {
  margin: 0;
}

/* ボタンのスタイル */
.btn {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.btn1,
.btn2 {
  background-color: #f54768;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  flex: 1;
  margin: 0 10px;
}

.btn1:hover,
.btn2:hover {
  background-color: #ffffff;
  color: #f54768;
  box-shadow: inset 0 0 0 3px #f54768; /* 内側にボーダー線を表示 */
}

.btn1:hover .custom-icon path,
.btn2:hover .custom-icon path {
  fill: #f54768; /* ホバー時に色を変更 */
}

.custom-icon {
  width: 30px;
  height: 30px;
  margin: -5px;
  margin-right: 10px;
  transition: fill 0.3s ease; /* スムーズなトランジションを追加 */
}

svg {
  width: 5%;
}

.tel-link {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease; /* スムーズなトランジションを追加 */
}

.btn1:hover .tel-link,
.btn2:hover .tel-link {
  color: #f54768; /* ホバー時に色を変更 */
}

.tel-link {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease; /* スムーズなトランジションを追加 */
}

.btn-link {
  text-decoration: none; /* 下線を消す */
  color: inherit; /* 親要素のフォントカラーを継承する */
}

.intro-section {
  text-align: center;
  width: 100%;
}

.intro-text {
  color: #45322b;
  font-size: 30px;
  font-weight: 700;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(255, 139, 186, 0.5); /* ボックスシャドウを追加 */
  border-top-left-radius: 10px; /* 左上角を角丸にする */
  border-bottom-right-radius: 10px; /* 右下角を角丸にする */
}
.img-ozuka {
  text-align: center;
  background-color: #fff6f7;
  border-radius: 100%;
  width: 26%;
}

.img-ozuka img {
  object-fit: cover;
  width: 60%;
  height: 76%;
  border: 5px solid #ffffff;
  border-radius: 5px;
}

.intro-section1 {
  display: flex;
  justify-content: center;
  margin: 50px 0 10px 0;
  gap: 50px;
  width: 1200px;
}
.contact-info {
  text-align: center;
  font-size: 42px;
  margin: 35px auto;
  font-weight: 700;
  line-height: 1.5;
  color: #45322b;
}

p.text-ozuka {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1rem;
  margin: -4px;
  color: #45322b;
}

.btn-group {
  display: flex;
  margin-bottom: 50px;
}

.btn-group1 {
  margin-bottom: 0;
}

.btn_text {
  font-size: 14px;
}

.btn_text2 {
  font-size: 26px;
}

.main-content {
  padding: 20px;
  margin: 20px auto;
  max-width: 1200px;
}

.full-width-background {
  position: relative; /* 擬似要素のために相対位置を設定 */
  width: 100vw; /* 画面の幅を100%に設定 */
  margin-left: calc(50% - 50vw); /* セクションを中央に配置 */
  background-image: url(../img/background_img.webp);
  background-size: cover; /* 背景画像をカバーする */
  background-position: center; /* 背景画像を中央に配置 */
  padding: 20px 0; /* 上下のパディングを追加 */
  border-top-left-radius: 50% 120px; /* 左上角を滑らかな円形にする */
  border-top-right-radius: 50% 120px; /* 右上角を滑らかな円形にする */
}

.full-width-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    255,
    255,
    255,
    0.3
  ); /* 半透明の白いフィルターを薄くする */
  border-top-left-radius: 50% 120px; /* 左上角を滑らかな円形にする */
  border-top-right-radius: 50% 120px; /* 右上角を滑らかな円形にする */
  box-shadow: 0 -8px 13px rgba(0, 0, 0, 0.1);
  z-index: 1; /* コンテンツの背面に配置 */
}

.full-width-background .content-wrapper {
  position: relative; /* 擬似要素のために相対位置を設定 */
  z-index: 2; /* 擬似要素の前面に配置 */
  max-width: 1200px; /* コンテンツの最大幅を設定 */
  margin: 0 auto; /* コンテンツを中央に配置 */
  padding: 0 20px; /* 左右のパディングを追加 */
}

h2.section-title img {
  width: 30%;
}
h2.section-title2 {
  text-align: center;
}
h2.section-title {
  text-align: center;
  margin: 67px 0 25px 0;
  color: #45322b;
  font-size: 40px;
}
img.premarri-image {
  text-align: center;
  width: 100%;
  border: 5px solid #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 画像に影を追加 */
  border-radius: 6px;
}

p.highlight-text {
  font-size: 45px;
  font-weight: 700;
  color: #45322b;
  text-align: center;
  line-height: 3.5rem;
  margin: 0;
  margin-top: 45px;
}
.text_1111 {
  font-size: 45px;
  font-weight: 700;
  color: #45322b;
  text-align: center;
  line-height: 3.5rem;
  position: relative; /* 擬似要素のために相対位置を設定 */
}

.text_1111::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%); /* 下線を中央に配置 */
  bottom: 0.1em; /* 下線の位置を調整 */
  width: 40%;
  height: 0.5em; /* 下線の太さを調整 */
  background-color: #fff1a0; /* 下線の色を黄色に設定 */
  z-index: -1; /* テキストの背面に配置 */
}

.text222 {
  text-align: center;
  font-size: 20px;
  line-height: 2rem;
  font-weight: 600;
  color: #45322b;
}

.flex_features {
  display: flex;
  gap: 15px;
}
.feature-item {
  text-align: -webkit-center;
  border: 5px solid #000f63;
  border-radius: 7px;
}

img.feature-image {
  width: 100%;
  font-weight: 700;
  font-size: 25px;
  margin: 0;
  margin-bottom: 7px;
}
h3.feature-title {
  width: 100%;
  margin: 0;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.4;
  color: #45322b;
}
span.text_150 {
  font-size: 20px;
}
.feature-description111 {
  width: 98%;
  padding: 1px;
  background-color: #f54768;
  border-radius: 4px;
  margin-bottom: 3px;
}
.feature-title1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* featuresセクションのスタイル */
.features {
  max-width: 1200px; /* 最大幅を1200pxに設定 */
  margin: 0 auto; /* 中央に配置 */
  padding: 20px; /* パディングを追加 */
}

.flex_features {
  display: flex;
  justify-content: space-between; /* 要素間のスペースを均等に配置 */
  flex-wrap: wrap; /* 必要に応じて折り返し */
  padding-bottom: 50px;
}

.feature {
  flex: 1;
  margin: 10px; /* 各要素にマージンを追加 */
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-image {
  max-width: 100%;
  height: auto;
}

.feature-description111 {
  margin-top: 10px;
}

p.feature-description {
  color: #ffffff;
  text-align: left;
  font-weight: 600;
  padding: 0 10px;
}

h2.text333 {
  font-size: 40px;
  line-height: 3rem;
  text-align: center;
  color: #45322b;
  margin: 50px 0 40px 0;
}

.flex_story-card {
  display: flex;
  flex-wrap: wrap; /* 要素を折り返す */
  gap: 15px;
  justify-content: center; /* 要素を中央揃えにする */
  align-items: start;
  width: 100%;
}

.flex_story-card > .story-card {
  flex: 1 1 calc(50% - 15px); /* 各要素の幅を50%に設定し、ギャップを考慮 */
  box-sizing: border-box; /* パディングとボーダーを含む */
  max-width: 600px; /* 各要素の最大幅を設定（必要に応じて調整） */
}

.full-width-background111 {
  position: relative; /* 擬似要素のために相対位置を設定 */
  width: 100%; /* 画面の幅を100%に設定 */
  margin-left: calc(50% - 50vw); /* セクションを中央に配置 */
  background-image: url(../img/background_img02.webp); /* 背景画像を設定 */
  background-size: cover; /* 背景画像をカバーする */
  background-position: center; /* 背景画像を中央に配置 */
  padding: 20px 0; /* 上下のパディングを追加 */
}

.full-width-background111::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    255,
    255,
    255,
    0.7
  ); /* 半透明の白いフィルターを薄くする */
  z-index: 1; /* コンテンツの背面に配置 */
}

.full-width-background111 .success-stories111 {
  position: relative; /* 擬似要素のために相対位置を設定 */
  z-index: 2; /* 擬似要素の前面に配置 */
  max-width: 1200px; /* コンテンツの最大幅を設定 */
  margin: 0 auto; /* コンテンツを中央に配置 */
  margin-bottom: 200px;
  padding: 0 20px; /* 左右のパディングを追加 */
  text-align: -webkit-center;
}

.story-card img {
  object-fit: cover;
  width: 100%;
  height: 200px;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}

.story-card {
  background-color: #ffffff;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(255, 139, 186, 0.5);
  border-radius: 7px;
}

h3.story-card22 {
  text-align: center;
  color: #ffffff;
  background-color: #f54768;
  padding: 15px 0;
  margin: 0;
  margin-top: -8px;
}

.story-card33 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5; /* 表示する行数を指定 */
  -webkit-box-orient: vertical;
  line-height: 1.5em; /* 行の高さを指定 */
  max-height: calc(1.5em * 5); /* 最大の高さを指定（行の高さ × 行数） */
  color: #45322b;
  text-align: left;
}

.story-card44 {
  border: 5px double #f54768;
  color: #f54768;
  padding: 5px;
  font-size: 24px;
  text-align: left;
  margin: 50px 0;
  border-radius: 50px;
  text-decoration: none;
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s ease;
  font-weight: 700;
}

.story-card44:hover {
  background-color: #f54768; /* ホバー時に背景色を追加 */
  color: #fff; /* ホバー時にテキストカラーを変更 */
}

.story-card44:hover a {
  color: #ffffff; /* 親要素がホバーされたときにリンクの色を白色に変更 */
}

.story-card44:hover .hover-icon path {
  fill: #ffffff; /* ホバー時にアイコンの色を白に変更 */
}

.hover-icon {
  transition: fill 0.3s ease; /* スムーズなトランジションを追加 */
}

.hover-icon:hover path {
  fill: #ffffff; /* ホバー時に色を白に変更 */
}

.story-card44 img {
  margin-right: 15px;
  margin-left: 5px;
}

.story-card44 .icon-right {
  margin-left: auto; /* 左側に自動マージンを追加して右寄せ */
}

.story-card44 svg {
  margin-left: auto; /* 左側に自動マージンを追加して右寄せ */
  transform: translateX(-15px); /* 左に10px移動 */
}

.btn-link {
  text-decoration: none; /* リンクの下線を消す */
}

.btn-link button {
  display: inline-block;
  padding: 10px 50px;
  font-size: 16px;
  color: #fff;
  background-color: #f54768;
  border: none;
  border-radius: 50px;
  cursor: pointer;
}

.btn-link button:hover {
  background-color: #d43f5e; /* ホバー時の背景色を変更 */
}

.circle-image {
  width: 100%; /* 画像の幅を100%に設定 */
  height: 100%; /* 画像の高さをコンテナに合わせる */
  border-radius: 50%; /* 画像を円形にする */
  object-fit: cover; /* 画像をコンテナに収める */
  border: 5px solid #fdc3ce; /* 円のふちに線を追加 */
}

.image {
  width: 150px; /* 画像コンテナの幅を設定 */
  height: 150px; /* 画像コンテナの高さを設定 */
  overflow: hidden; /* 画像がコンテナをはみ出さないようにする */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto; /* 画像コンテナを中央に配置 */
}

.card {
  position: relative; /* リボンの位置を相対的に設定 */
  overflow: hidden; /* はみ出る部分を隠す */
  text-align: center;
  padding: 20px; /* 内側の余白を追加 */
  border: 5px solid #f54768;
  background-color: #fff; /* 背景色を設定 */
  border-radius: 10px; /* 角を丸くする */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* ボックスシャドウを追加 */
}

.text h2 {
  color: #f54768;
  line-height: 1.5rem;
  font-size: 20px;
}

.text_p {
  line-height: 1.3rem;
  line-height: 1.3rem;
  color: #45322b;
  font-weight: 600;
}

.ribbon {
  position: absolute;
  top: 91px;
  left: -33px;
  width: 150px;
  height: 34px;
  background-color: #f54768;
  color: white;
  text-align: center;
  line-height: 30px;
  font-size: 18px;
  font-family: sans-serif;
  transform: rotate(-49deg);
  transform-origin: left top;
  padding: 5px;
}

.card1 {
  border: 5px solid #000f63;
}

.text1 h2 {
  color: #000f63;
  line-height: 1.5rem;
}

.ribbon1 {
  background-color: #000f63;
}
.circle-image1 {
  width: 100%; /* 画像の幅を100%に設定 */
  height: 100%; /* 画像の高さをコンテナに合わせる */
  border-radius: 50%; /* 画像を円形にする */
  object-fit: cover; /* 画像をコンテナに収める */
  border: 5px solid #8e92a7; /* 円のふちに線を追加 */
}

.btn-link1 button {
  display: inline-block;
  padding: 10px 50px;
  font-size: 16px;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  background-color: #000f63;
}

p.text_p_1 {
  text-align: left;
}

.slick-list.draggable {
  padding-bottom: 40px;
  overflow: hidden; /* 横スクロールを防ぐ */
}

.text444 {
  font-size: 40px;
  line-height: 3rem;
  text-align: center;
  color: #45322b;
  margin: 50px 0;
  font-weight: 700;
}

.full-width-background2 {
  position: relative; /* 擬似要素のために相対位置を設定 */
  width: 100%; /* 画面の幅を100%に設定 */
  margin-left: 0; /* セクションを中央に配置 */
  background-image: url(../img/background_img.webp);
  background-size: cover; /* 背景画像をカバーする */
  background-position: center; /* 背景画像を中央に配置 */
  padding: 20px 0; /* 上下のパディングを追加 */
  border-top-left-radius: 50% 120px; /* 左上角を滑らかな円形にする */
  border-top-right-radius: 50% 120px; /* 右上角を滑らかな円形にする */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* ボックスシャドウを追加 */
  margin-top: -100px; /* 上に20px移動 */
  z-index: 1; /* 背景が消えないようにするための重なり順を設定 */
  text-align: -webkit-center;
}

.full-width-background2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    255,
    255,
    255,
    0.3
  ); /* 半透明の白いフィルターを薄くする */
  border-top-left-radius: 50% 120px; /* 左上角を滑らかな円形にする */
  border-top-right-radius: 50% 120px; /* 右上角を滑らかな円形にする */
  z-index: -1; /* コンテンツの背面に配置 */
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.1); /* ボックスシャドウを追加 */
}

.full-width-background2 .content-wrapper1 {
  position: relative; /* 擬似要素のために相対位置を設定 */
  z-index: 2; /* 擬似要素の前面に配置 */
  max-width: 1200px; /* コンテンツの最大幅を設定 */
  margin: 0 auto; /* コンテンツを中央に配置 */
  padding: 0 20px; /* 左右のパディングを追加 */
}

#hiddenText,
#hiddenText2 {
  display: -webkit-box;
  -webkit-line-clamp: 5; /* 表示する行数を指定 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

#hiddenText.show,
#hiddenText2.show {
  -webkit-line-clamp: unset; /* 行数制限を解除 */
}

.card {
  height: auto; /* 高さを自動調整 */
}

.text_p {
  height: auto; /* 高さを自動調整 */
}

.grad-wrap {
  position: relative;
}

.grad-btn {
  display: inline-block;
  padding: 10px 50px;
  font-size: 16px;
  color: #fff;
  background-color: #f54768;
  border: none;
  border-radius: 50px;
  cursor: pointer;
}
.grad-btn1 {
  background-color: #000f63;
}

.grad-btn::before {
  content: "続きを読む";
}
.grad-btn2::before {
  content: "もっと読む";
}

.grad-item {
  position: relative;
  overflow: hidden;
  height: 120px; /* 隠した状態の高さ */
  color: #45322b;
  font-weight: 600;
  text-align: left;
}
.grad-item1 {
  text-align: left;
  margin-top: 10px;
  height: 150px; /* 隠した状態の高さ */
}

.grad-item::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px; /* グラデーションで隠す高さ */
  background: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 255, 255, 0.9) 50%,
    #fff 100%
  );
  background: linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 255, 255, 0.9) 50%,
    #fff 100%
  );
  content: "";
}

.grad-trigger {
  display: none; /* チェックボックスは常に非表示 */
}

.grad-trigger:checked ~ .grad-btn::before {
  content: "閉じる"; /* チェックされていたら、文言を変更する */
}

.grad-trigger:checked ~ .grad-item {
  height: auto; /* チェックされていたら、高さを戻す */
}

.grad-trigger:checked ~ .grad-item::before {
  display: none; /* チェックされていたら、grad-itemのbeforeを非表示にする */
}

.footer_bana {
  display: flex;
  justify-content: center;
  gap: 50px;
  background-color: #f54768;
  margin: 70px 0 0 0;
}
.footer_imgs {
  display: flex;
  justify-content: center;
  gap: 20px;
  .footer_img {
    text-align: center;
    margin: 97px 0 60px 0;
  }
}

.footer_bana img {
  width: 20%;
  object-fit: contain;
}
.info_table {
  color: #ffffff;
  font-weight: 600;
}
.info_table dl {
  display: flex;
  margin: 0;
}

.info_table {
  margin: 30px 0;
}

p.copyright {
  text-align: center;
  color: #ffffff;
  font-weight: 600;
  background-color: #000f63;
  margin: 0;
  padding: 15px 0;
}

/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f54768;
  border-radius: 5px;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
}

#page-top a:hover {
  background: #f38499;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateX(100px);
}

/*　左の動き　*/

#page-top.LeftMove {
  animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*　右の動き　*/

#page-top.RightMove {
  animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(100px);
  }
}

/* スマートフォンだけ表示するスタイル */
.sp-only {
  display: none; /* デフォルトでは非表示にする */
}

@media screen and (max-width: 768px) {
  .sp-only {
    display: block; /* スマートフォンでは表示する */
  }

  .pc-only {
    display: none; /* スマートフォンでは非表示にする */
  }
}

.banner-lciq {
  text-align: center;
  img {
    width: 100%;
    height: auto;
  }
  a {
    display: inline-block;
    transition: box-shadow 0.3s, transform 0.3s;
    cursor: pointer;
  }
}

.banner-lciq a:hover img {
  box-shadow: 0 4px 16px rgba(255, 139, 186, 0.25);
  transform: scale(1.01);
  opacity: 0.92;
  transition: box-shadow 0.3s, transform 0.3s, opacity 0.3s;
}

.banner-lciq__url {
  text-align: center;
  margin-top: 8px;
}
.banner-lciq__url a {
  color: #f54768;
  text-decoration: underline;
  word-break: break-all;
  font-size: 0.95em;
}
.banner-lciq__url a:hover {
  text-decoration: underline;
  color: #c2184b;
}

@media screen and (max-width: 768px) {
  .footer_imgs {
    flex-direction: column;
    padding: 0 10px;
    .footer_img {
      margin: 39px 0 -30px 0;
    }
  }
  .banner-lciq {
    img {
      width: 95%;
      margin-top: 10px;
    }
  }
}
