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: #fff;
}


.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: 60px;
}

#section-1 .c-inner.c-inner--md.c-inner--one-elem.c-inner--vertical,
#section-2 .c-inner.c-inner--md.c-inner--one-elem.c-inner--vertical,
#section-3 .c-inner.c-inner--md.c-inner--one-elem.c-inner--vertical,
#section-6 .c-inner.c-inner--md.c-inner--one-elem.c-inner--vertical,
#section-8 .c-inner.c-inner--md.c-inner--one-elem.c-inner--vertical
{
    padding-top: 0;
    padding-bottom:0;
}

#section-4 .pera1-editable{
     padding: 30px;
}

#section-5 .c-inner.c-inner--md.c-inner--one-elem.c-inner--vertical
{
    padding-bottom:80px;
}

#section-7 .pera1-editable{
     padding: 0 30px 10px 30px;
}
    

[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 */
  color: #ffffff;            /* 文字色は白が見やすいです */
  font-size: 0.8rem;         /* コピーライト用の少し小さめサイズ */
  width: 100%;               /* 横幅いっぱい */
}

.copyright small {
  display: block;
}
