@charset "UTF-8";

  html {
    scroll-behavior: smooth;
  }

body{
  font-family: "uddigikyokasho-pro", sans-serif;
font-weight: 400;
font-style: normal;
}


.main_view{
    width: 100%;
    height: auto;
    margin: 150px 0 100px;
    padding: 50px;
}
.main_view img{
  width: 100%;
}
.title{
    width: 250px;
    margin: 200px auto 0;
}
.title h4{
  color: #27acd9;
  font-size: 1.8em;
}
.title h1{
  color: #474747;
  font-size: 2.5em;
  margin-top: -30px;
}


.scatter_circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.7;
  animation: floatMove 4s ease-in-out infinite alternate;
  transform: translate(var(--x), var(--y));
  pointer-events: none; /* 円がクリックなどに干渉しないようにする */
  z-index: 0;
}

@keyframes floatMove {
  0% {
    transform: translate(calc(var(--x)), calc(var(--y)));
  }
  100% {
    transform: translate(calc(var(--x) + var(--dx)), calc(var(--y) + var(--dy)));
  }
}

@media (max-width: 800px) {
  .title{
    width: 150px;
    margin: 200px auto 0;
}
.title h4{
  color: #27acd9;
  font-size: 1.8em;
}
.title h1{
  color: #474747;
  font-size: 2em;
  margin-top: -30px;
}

}
/* 600px以下のとき */
@media screen and (max-width: 600px) {
    .main_view img {
        content: url("../img/fan_club_top_view_responsive.png");
    }
    .main_view{
    width: 100%;
    height: auto;
    margin: 110px 0 70px;
    padding: 30px;
}
}
.content {
  max-width: 1000px;
  width: 90%;
  background-image: url(../img/23532555.jpg);
  margin: 0 auto;
  padding: 15px;
  border-radius: 50px;
  box-sizing: border-box;
  margin-bottom: 100px;
}

.content_white {
  display: flex;
  border-radius: 50px;
  background-color: white;
  padding: 50px 20px;
  box-sizing: border-box;
  gap: 20px;
}
.inner_wrapper {
  text-align: center;
  gap: 50px;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}


/* スマホや小さい画面用 */
@media (max-width: 800px) {
  .inner_wrapper {
    flex-direction: column;
  }

  .sidebar {
    display: none;
  }

  .section-title {
    display: block;
    font-size: 18px;
    background-color: #27acd9;
    color: white;
    width: 110px;
    margin: 0 auto 30px;
    border-radius: 10px;
    text-align: center;
  }

  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    padding: 5px 0;
  }

  .company-table tr {
    display: block;
    margin-bottom: 15px;
  }

  .company-table th {
    font-weight: bold;
    background: none;
    border: none;
    padding-top: 10px;
  }

  .company-table td {
  border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    font-size: 1em;
  }
  .philosophy h3{
  font-size: 1.5em;
  color: #555555;
  margin-bottom: 20px;
}

}


/* ここまで */


.fade-in {
  opacity: 0; /* 初期状態は非表示 */
  transition: opacity 2s ease-out, transform 2s ease-out; /* スムーズなアニメーション */
  will-change: opacity, transform; /* レンダリング最適化 */
}

.fade-in.visible {
  opacity: 1; /* 表示 */
  transform: translateY(0); /* 元の位置に */
}




.wrapper_outside {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: burlywood;
  z-index: 9999; /* 最前面に表示 */
  transition: opacity 2s ease, transform 5s ease, visibility 1s ease; /* フェードと移動用 */
  opacity: 1;
  visibility: visible;
  transform: translateY(0); /* 初期位置 */
}

.wrapper_outside.fade-out {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50px); /* 上に移動 */
}

.wrapper{
  width:200px;
  height:60px;
  position: absolute;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
}
.circle{
  width:20px;
  height:20px;
  position: absolute;
  border-radius: 50%;
  background-color: #fff;
  left:15%;
  transform-origin: 50%;
  animation: circle .5s alternate infinite ease;
}

@keyframes circle{
  0%{
      top:60px;
      height:5px;
      border-radius: 50px 50px 25px 25px;
      transform: scaleX(1.7);
  }
  40%{
      height:20px;
      border-radius: 50%;
      transform: scaleX(1);
  }
  100%{
      top:0%;
  }
}
.circle:nth-child(2){
  left:45%;
  animation-delay: .2s;
}
.circle:nth-child(3){
  left:auto;
  right:15%;
  animation-delay: .3s;
}
.shadow{
  width:20px;
  height:4px;
  border-radius: 50%;
  background-color: rgba(0,0,0,.5);
  position: absolute;
  top:62px;
  transform-origin: 50%;
  z-index: -1;
  left:15%;
  filter: blur(1px);
  animation: shadow .5s alternate infinite ease;
}

@keyframes shadow{
  0%{
      transform: scaleX(1.5);
  }
  40%{
      transform: scaleX(1);
      opacity: .7;
  }
  100%{
      transform: scaleX(.2);
      opacity: .4;
  }
}
.shadow:nth-child(4){
  left: 45%;
  animation-delay: .2s
}
.shadow:nth-child(5){
  left:auto;
  right:15%;
  animation-delay: .3s;
}
.wrapper span{
  position: absolute;
  top:75px;
  font-size: 20px;
  letter-spacing: 12px;
  color: #fff;
  left:15%;
}


.character_loading img{
  width: 100%;
}



.character_loading {
  position: absolute;
  bottom: -4em;
  right: -7em; /* 初期位置を画面外に設定 */
  width: 100px; /* キャラクターの幅 */
  animation: move-horizontal 20s linear infinite, zigzag-rotate 1s ease-in-out infinite;
}


  @media (max-width: 500px) {
    .character_loading {
      position: absolute;
      bottom: -4em;
      right: -4.5em; /* 初期位置を画面外に設定 */
      width: 80px; /* キャラクターの幅 */
      animation: move-horizontal 20s linear infinite, zigzag-rotate 1s ease-in-out infinite;
    }
    
  }
  

  /* ここから別 */

.content_white {
  position: relative;
  background-image: url(../img/okumonof_sen200007.png);
  background-size: 100% 100%;
  background-position: center;
  border-radius: 50px;
  overflow: hidden;
  
}

/* 白の薄いフィルター */
.content_white::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.75); /* ← 透明度は好みで */
  z-index: 0;
}

/* 中身を前に出す */
.content_white > * {
  position: relative;
  z-index: 1;
}
.fc-point-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}

.fc-point-title img {
  max-width: 500px;
  width: 100%;
  height: auto;
}

.fc-points {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.fc-points {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* 共通 */
.fc-point-item {
  display: flex;
  align-items: center; /* ← center をやめる */
  gap: 24px;
  max-width: 800px;
}
/* 奇数：左寄せ */
.fc-point-item:nth-child(odd) {
  margin-right: auto;
}

/* 偶数：右寄せ */
.fc-point-item:nth-child(even) {
  margin-left: auto;
}

.fc-point-number{
  display: flex;
  align-items: center;
}

.fc-point-number img {
    width: 50px; /* 数字画像サイズ */
    height: auto;
    padding-top: 15px;
}

.fc-point-text {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

}

.fc-point-text p {
    font-size: 30px;
    font-weight: 600;
    margin: 0 0 -6px 0;
    color: #474747;
}

.fc-point-text .underline {
    width: 100%;
    max-width: 500px;
    height: auto;
}


/* スマホや小さい画面用 */
@media (max-width: 700px) {
.fc-point-title img {
  max-width: 270px;
  width: 100%;
  height: auto;
}

/* 共通 */
.fc-point-item {
  display: flex;
  align-items: center; /* ← center をやめる */
  gap: 8px;
  max-width: 500px;
}

.fc-point-number img {
    width: 35px; /* 数字画像サイズ */
    height: auto;
    padding-top: 8px;
}

.fc-point-text {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

}

.fc-point-text p {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 0px 0;
    color: #474747;
}

.fc-point-text .underline {
    width: 100%;
    max-width: 300px;
    height: auto;
}
.content {
  max-width: 1000px;
  width: 90%;
  background-image: url(../img/23532555.jpg);
  margin: 0 auto;
  padding: 10px;
  border-radius: 50px;
  box-sizing: border-box;
  margin-bottom: 100px;
}
.content_white {
  position: relative;
  background-image: url(../img/okumonof.png);
  background-size: 100% 100%;
  background-position: center;
  border-radius: 50px;
  overflow: hidden;
  
}
.content_white {
  display: flex;
  border-radius: 50px;
  background-color: white;
  padding: 50px 10px;
  box-sizing: border-box;
  gap: 20px;
}
}


/* =========================
   カード全体
========================= */

.fc-point-detail {
    position: relative;
    margin: 40px auto 60px;
    padding: 36px 40px 80px;
    max-width: 900px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    line-height: 1.9;
    color: #424242;

}

/* =========================
   方眼紙 背景（薄め）
========================= */

.fc-point-detail::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/25574557.jpg");
    background-size: 100% 100%;
    opacity: 0.4; /* ← ここで薄さ調整 */
    z-index: 0;
    pointer-events: none;
}

/* =========================
   ノート風の縁・紙感
========================= */

.fc-point-detail::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 16px;

    /* ノートっぽい内側の影 */
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.06),
        inset 0 2px 6px rgba(0, 0, 0, 0.05);

    z-index: 1;
    pointer-events: none;
}

/* =========================
   中身を最前面に
========================= */

.fc-point-detail > * {
    position: relative;
    z-index: 2;
}

/* =========================
   タイトル
========================= */

.fc-point-detail-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #424242;
    margin-bottom: 12px;
}

.fc-point-icon {
    width: 100px;
}

/* タイトル文字＋下線 */
.fc-title-text {
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
    z-index: 1;
}

.fc-title-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    height: 16px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: -1;
}

/* =========================
   下線画像切り替え
========================= */

.point-01 .fc-title-text::after {
    background-image: url("../img/underline_orange.png");
}

.point-02 .fc-title-text::after {
    background-image: url("../img/underline_blue.png");
}

.point-03 .fc-title-text::after {
    background-image: url("../img/underline_green.png");
}

.point-04 .fc-title-text::after {
    background-image: url("../img/underline_purple.png");
}

/* =========================
   キャラクター
========================= */

.fc-point-character {
    position: absolute;
    right: -20px;
    bottom:-30px;
    width: 180px;
    pointer-events: none;
}

.fc-point-character img {
    width: 100%;
}

/* =========================
   テキスト
========================= */

.fc-point-lead {
    font-size: 1.15rem !important;
    font-weight: 600;
    margin-bottom: 20px !important;
    line-height: 1.5rem;
}

.fc-point-detail p {
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.fc-point-highlight {
    margin-top: 20px;
    padding: 16px 18px;
    background: #f0f6ff;
    border-radius: 14px;
    font-weight: 700;
}

.fc-point-note {
    margin-top: 18px;
    padding: 14px 16px;
    background: #fafafa;
    border-left: 4px solid #ddd;
    border-radius: 8px;
    font-size: 0.85rem;
}

/* =========================
   リスト
========================= */

.fc-point-list {
    list-style: none;
    padding-left: 0;
    margin: 18px 0 20px;
}

.fc-point-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 0px;
}

.fc-point-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #3f7cff;
}

/* =========================
   スマホ
========================= */

@media (max-width: 768px) {

    .fc-point-detail {
        margin: 30px 12px 50px;
        padding: 26px 22px 70px;
    }

    .fc-point-detail-title {
        font-size: 1.2rem;
    }
.fc-point-lead {
    font-size: 1.0rem !important;
    font-weight: 600;
    margin-bottom: 20px !important;
    line-height: 1.5rem;
}

.fc-point-detail p {
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.2rem;
}


    .fc-point-icon {
        width: 90px;
    }

    .fc-title-text::after {
        height: 12px;
        bottom: 8px;
    }

    .fc-point-character {
        width: 120px;
        right: -12px;
        bottom: -30px;
    }
}



/* ご利用の流れ */
/* ご利用の流れ */
.usage-flow {
  position: relative;
  padding: 140px 20px;
  text-align: center;
}

/* ステップ全体 */
.usage-flow-steps {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  justify-content: center;
}

/* 各ステップ */
/* 各ステップ */
.flow-step {
  position: relative;
  flex: 1;
  padding: 40px 15px 50px;
  border-radius: 24px;
  overflow: hidden;
  text-align: center;

  background-image: url(../img/huwa117.png);
  background-size: 100% 100%;
  background-position: center;

  box-shadow:
    0 12px 30px rgba(180, 120, 160, 0.18),
    0 4px 12px rgba(0, 0, 0, 0.05);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flow-step::before {
  content: "";
  position: absolute;
  inset: 0;

  /* ← ここで薄さを調整 */
  background-color: rgba(255, 255, 255, 0.6);

  z-index: 0;
}

.flow-step > * {
  position: relative;
  z-index: 1;
}

@media (hover: hover) {
  .flow-step:hover {
    transform: translateY(-6px);
    box-shadow:
      0 18px 40px rgba(180, 120, 160, 0.25),
      0 6px 16px rgba(0, 0, 0, 0.08);
  }
}

/* Step番号（画像） */
.flow-step-number {
  margin-bottom: 15px;
}

.flow-step-number img {
  width: 100px;
  height: auto;
}

/* イラスト */
.flow-step-illustration {
  margin-bottom: 18px;
}

.flow-step-illustration img {
  width: 100px;
  height: auto;
}

/* テキスト */
.flow-step-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #454545;

}

/* LINEボタン */
.line_btn {
  max-width: 500px;
  width: 100%;
  margin: 50px auto;
}

.line_btn img {
  width: 100%;
  display: block;
  transition: transform 0.25s ease, filter 0.25s ease;
}

@media (hover: hover) {
  .line_btn a:hover img {
    transform: rotate(-1.5deg) scale(1.02);
    filter: brightness(1.05);
  }
}

.line_btn a:active img {
  transform: scale(0.98);
}

/* スマホ */
@media (max-width: 768px) {
  .usage-flow {
    padding: 140px 20px 50px;
  }

  .usage-flow-steps {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .flow-step {
    max-width: 260px;
    width: 100%;
  }

  .flow-step-number img {
    width: 120px;
  }
}
