body {
  width: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    #fdd000 0%,    
    #e5b800 60%,   
    #ef7e00 100%    
  );
  min-height: 100vh;
  margin: 0;
}

img{
    width:100%;
    height:auto;
}

.c-wrapper {
  position: relative; 
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  box-shadow: none; 
  padding-right: 0;
  padding-left: 0;
 background: #ffffff;

}


.c-wrapper::before,
.c-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 10px; /* 影の幅 */
  height: 100%;
  filter: blur(8px);
  opacity: 0.3;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;

}

.c-wrapper::before {
  left: -10px; /* 左側に影 */
}

.c-wrapper::after {
  right: -10px; /* 右側に影 */
}

.c-inner {
  padding-top: 0;
  padding-bottom: 0;
}


.c-inner.c-inner--md.c-inner--one-elem.c-inner--vertical{
        padding-top: 0;
        padding-bottom: 0;
}

#section-2 {
  position: relative; 
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  box-shadow: none; 
  padding-right: 0;
  padding-left: 0;
}


#section-12 .c-inner.c-inner--md.c-inner--one-elem.c-inner--vertical
{
    background: none;
}



[data-structure="e-text"] {
  /* 最小 1rem (16px)、推奨 0.25rem + 3.2vw、最大 1.25rem (20px) */
 font-size: clamp(1rem, -0.500rem + 6.4vw, 1.5rem);;
 line-height:2;
 
  /* テキストの折り返し設定（必要に応じて） */
  overflow-wrap: break-word;
  word-break: break-all;
  text-align: justify;
}


.sns-container {
  display: flex;           /* フレックスボックスを有効化 */
  justify-content: center; /* 横方向の中央寄せ */
  align-items: center;     /* 縦方向の中央寄せ */
  gap: 30px;               /* アイコン同士の間隔 */
  padding: 10px 60px 60px;         /* 上下の余白 */
}

.footer-section {
  padding: 60px 30px;
    background: #f3c91e;
}

.subtitle{
    text-align: center;
    font-weight: bold;
}

p.company {
    font-size: clamp(1.5rem, -1.500rem + 12.8vw, 2.5rem);
    font-weight: 700;
    text-align: center;
}

.company-info{
    font-size: 16px;
}

/* 会社情報のスタイル */
.company-info dt {
  font-weight: bold;
  margin-top: 15px;
    line-height: 1.5;
}

.company-info dd {
  margin-left: 0; /* デフォルトの左余白を消して縦ラインを揃える */
  margin-bottom: 5px;
}

/* SNSアイコンのスタイル (右寄せ) */
.sns-right {
  display: flex;
  justify-content: flex-end; /* 右端に寄せる */
  gap: 15px;                 /* アイコン同士の間隔 */
  margin-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1); /* 境界線を薄く入れるとおしゃれです */
  padding-top: 15px;
}

.sns-right img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  /* 通常時はカラー（filterを削除） */
  transition: 0.3s;
}

.sns-right img:hover {
  opacity: 0.8; /* ホバー時に透過80%にする */
  /* もし浮き上がる動きも不要であれば、以下を削除してください */
  transform: translateY(-3px); 
}

.p-footer__inner{
    display: none;
}

.copyright {
  background-color: #000000; 
  text-align: center;        /* センター寄せ */
  padding: 10px 10px 80px 10px;             /* パディング10px */
  color: #ffffff;            /* 文字色は白が見やすいです */
  font-size: 0.8rem;         /* コピーライト用の少し小さめサイズ */
  width: 100%;               /* 横幅いっぱい */
}

.copyright small {
  display: block;
}


/* 1. 画面下部に固定 */
.fixed-bottom-container {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: 90%;
  max-width: 500px;
  text-align: center;
}

/* 2. ボタン本体の設定 */
.btn-link {
  display: block;
  position: relative;
  line-height: 0;
  text-decoration: none;
  /* 影をつけてボタンらしくし、変化を滑らかにする transition を設定 */
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  transition: all 0.3s ease;
}

/* 3. 画像の設定 */
.btn-img {
  width: 90%;
  height: auto;
  transition: filter 0.3s ease; /* 色の変化を滑らかに */
}

/* 4. 画像内の下向き矢印 */
.btn-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15%; /* 右端からの位置 */
  width: 10px;
  height: 10px;
  border-bottom: 3px solid #fff; /* 矢印の色（白） */
  border-right: 3px solid #fff;
  /* 下向きにするために45度回転 */
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s ease;
}

/* --- ホバー時の演出 --- */

.btn-link:hover {
  /* 画像の色を少し暗くする */
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)) brightness(0.85);
}

.btn-link:hover::after {
  /* 矢印を少し下に動かす */
  transform: translateY(-20%) rotate(45deg);
}

/* クリックした瞬間に少しだけ小さくする（押し心地の演出） */
.btn-link:active {
  transform: scale(0.97);
}





