/*
 * 1. 親コンテナ (背景)
 */
.p-hero-wrap {
  background-image: url(/assets/img/rimimaru/header_sp.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 31.25rem;
  background-color: #fffaf0;
  position: relative;
}

/*
 * 2. パンくずリスト
 */
.o-breadcrumb-wrap {
  position: relative;
  z-index: 2; 
}

/*
 * 3. タイトル (h1) の配置
 */
.p-hero_hading {
  position: absolute; 
  width: 60%;         
  max-width: 351px;   
  z-index: 1;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%); 
}

/*
 * 4. タイトル画像自体のサイズ調整
 */
.p-hero_hading .a-image,
.p-hero_hading .a-image picture,
.p-hero_hading .a-image img {
  display: block;
  height: auto;
}

/*
 * 5. PC (750px以上) のスタイル
 */
@media (min-width: 750px) {
  
  /* PC用の背景画像 */
  .p-hero-wrap {
    background-image: url(/assets/img/rimimaru/header.webp);
  }

 /* PC用のタイトル位置 */
  .p-hero_hading {
    left: 40%; /* 左ブロックの中央 */
    top: 50%;  /* 上から50%の位置 */
    transform: translate(-50%, -50%); /* 水平・垂直ともに中央寄せ */
    
    max-width: 450px; 
  }
}
@media (min-width: 750px) {
  .p-hero {
    padding: 1.25rem 0 5rem;
  }
  .p-hero .l-content {
    margin: 0 auto;
    max-width: 80.375rem;
  }
}

.p-hero_inner {
  display: grid;
}

@media (min-width: 750px) {
  .p-hero_inner {
    column-gap: 1.7107309487%;
    grid-template-columns: 48.833592535% 53.6547433904%;
  }
}

.p-hero_hading {
  grid-row: 1/2;
  text-align: right;
}

@media (min-width: 750px) {
  .p-hero_hading {
    grid-column: 1/2;
  }
}

.p-hero_inner .m-note-wrap {
  grid-row: 3/4;
  margin-top: 0.5rem;
  padding: 0 0.75rem;
}

.p-hero_inner .m-note-wrap .a-text-note {
  color: #fff;
  font-size: 0.625rem;
  line-height: 1.2;
  margin-top: 0;
}

@media (min-width: 750px) {
  .p-hero_inner .m-note-wrap {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .p-hero_inner .m-note-wrap .a-text-note {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}

.p-hero_text {
  grid-row: 2/3;
}

@media (min-width: 750px) {
  .p-hero_text {
    grid-column: 2/3;
    grid-row: 1/3;
  }
}

/* 基本スタイル */
:root {
    --orange: #f7931e;
    --light-yellow: #fff9e5;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #ffffff;
    --border-color: #f2d3ab;
    --placeholder-bg: #fdecc8;
}

body {
    margin: 0;
    color: var(--text-dark);
    background-color: #fee091;
    overflow-x: hidden; /* 横スクロール防止 */
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヘッダー */
.header {
    background-color: var(--orange);
    padding: 10px 20px;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-logo {
    width: 150px;
}
.header-button {
    background-color: var(--white);
    color: var(--orange);
    padding: 8px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
}

/* ヒーローセクション */
.hero {
    text-align: center;
    padding: 60px 20px;
    position: relative;
    font-weight: bold;
}
.hero h1 {
    font-size: 2.5rem;
    margin: 0;
}
.hero h2 {
    font-size: 1rem;
    font-weight: normal;
}
.hero-subtext {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}
.hero-image {
    width: 200px;
    margin-top: 20px;
}

/* プロフィールセクション */
.profile {
    padding: 0 0 80px;
}
.section-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: var(--orange);
}
.section-title-en {
    display: block;
    font-size: 2rem;
    color: var(--orange);
    font-weight: 900;
    margin-top: -5px;
}
.profile-wrapper {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 20px;
    margin-top: 40px;
}
.profile-card-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.profile-card {
    display: flex;
    flex-direction: column; /* モバイルデフォルト (画像が上) */
    align-items: center;
    text-align: center;
}
.profile-card-image {
    margin: 0 15px 20px;
}
.profile-card-image.maru {
    max-width: 315px;
}
.profile-card-image.rin {
    max-width: 300px;
}
.profile-card-content {
    width: 100%;
}
.profile-card-content h3 img{
    max-height: 45px;
    margin: 0 0 20px 0;
}
.profile-description {
    margin: 0 0 20px 0;
    line-height: 1.7;
    text-align: left;
}
.profile-list-bullets {
  list-style: none;
  padding-left: 0;
}

.profile-list-bullets li {
  position: relative;
  padding-left: 1.5em; 
  margin-bottom: 0.5em; 
    text-align: left;
}

.profile-list-bullets li::before {
  content: '●';
  color: #f9be00;
  font-size: 1.3em;
  position: absolute;
  left: 0;
  line-height: 1.4; 
}
.profile-sub-section {
    margin-top: 20px;
}
.profile-sub-grid {
    display: flex;
    flex-direction: column; /* モバイルデフォルト */
    gap: 10px;
    margin-bottom: 10px;
}
.profile-sub-item {
    text-align: left;
}
.profile-sub-item p {
    margin: 0;
    line-height: 1.6;
}
.profile-label {
    display: inline-block;
    background-color: var(--orange);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 999px;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
    white-space: nowrap;
}

/* コンテンツセクション */
.contents {
    background-color: var(--light-yellow);
    padding: 60px 0;
}
.contents .section-title {
    margin-bottom: 40px;
}
.contents-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.content-item {
    text-align: center;
}
.content-item-image {
    background-color: var(--placeholder-bg);
    border-radius: 15px;
    height: auto;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.content-item-image img {
    object-fit: cover;
    border-radius: 15px;
}
.content-item-caption {
    line-height: 1.6;
    text-align: left;
}
.content-label {
    display: inline-block;
    background-color: var(--orange);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 999px;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 8px;
}
.content-item-caption p {
    margin: 0;
    font-weight: bold;
    font-size: 1rem;
}
.contents-note {
    font-size: 12px;
    text-align: center;
    margin-top: 15px;
}

/* SNSセクション */
.sns {
    padding: 80px 0 310px;
    background-color: #fffff0;
    position: relative;
    background-repeat: no-repeat;
    background-position: left center, right center;
    background-size: 100px auto;
}
.sns .container {
    position: relative;
    z-index: 2;
}
.sns-header {
    text-align: center;
    margin-bottom: 40px;
}
.sns-header h2 {
    color: var(--orange);
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.sns-header p {
    margin-top: 20px;
}
.sns-wrapper {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 30px 20px;
    margin-bottom: 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.sns-bottom-text {
    text-align: center;
}
.sns-bottom-text img {
    max-width: 600px;
}
/*
 * 1. 親ラッパー (.sns-accounts)
 */
.sns-accounts {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 32px; /* リンク間の余白 */
}

/*
 * 2. 個別のリンク (.sns-icon-link)
 */
.sns-icon-link {
  display: flex;
  flex-direction: column; /* 縦積み */
  align-items: center;    /* 水平方向の中央揃え */
  text-decoration: none;
  color: #333;
}

/*
 * 3. アイコン画像 (丸い方)
 */
.sns-icon {
  width: 150px;  /* お好みで調整 */
  height: 150px;
  object-fit: contain;
}

/*
 * 4. アカウント名 (テキスト)
 */
.sns-icon-link span {
  display: flex;       /* ::before とテキストを横並びにするため */
  align-items: center; /* 垂直中央揃え */
  margin-top: 8px;     /* 上の丸いアイコンとの余白 */
  font-weight: bold;
  font-size: 0.875rem; 
}

/*
 * 5. アカウント名の前に追加する小さいアイコン (::before)
 */
.sns-icon-link span::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 5px; /* アイコンとテキスト間の余白 */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/*
 * 6. クラス別に小さいアイコン画像を指定
 */
.sns-x span::before {
  background-image: url('/assets/img/rimimaru/ac_x.png'); 
}

.sns-insta span::before {
  background-image: url('/assets/img/rimimaru/ac_inst.png');
}

/*
 * 7. SNSラッパーの角丸と背景画像
 */
.sns-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden; 
  border-radius: 20px;
  background-color: #fff;
  padding: 40px 20px;
}

/*
 * 8. 左側の背景画像 (pic_rimi_l.png)
 */
.sns-wrapper::before {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  background-image: url('/assets/img/rimimaru/pic_rimi_l.png'); 
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  width: 200px;
  height: 100%;
  left: -11px;
  top: 40;
}

/*
 * 9. 右側の背景画像 (pic_rimi_r.png)
 */
.sns-wrapper::after {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  background-image: url('/assets/img/rimimaru/pic_rimi_r.png'); 
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  width: 250px;
  height: 100%;
  right: -75px;
  top: 50px;
}

/*
 * 10. レスポンシブ対応 (モバイルでは背景画像を非表示)
 */
@media (max-width: 749px) {
  .sns-wrapper::before,
  .sns-wrapper::after {
    display: none; /* 狭い画面では非表示にする */
  }
}
/* CTAセクション */
.cta {
    text-align: center;
    padding-top: 100px; /* ★はみ出す分 (要調整) */
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
    background:  var(--orange);
}

/* ↓↓↓ キャラクター画像（追記） ↓↓↓ */
.cta-character {
    display: block;
    margin: 300px auto 50px;
    width: 580px; /* ★画像の幅（お好みで調整） */
    position: relative;
    
    /* ↓↓↓ 上にはみ出すためのネガティブマージン ↓↓↓ */
    margin-top: -400px; /* ★画像の高さの半分以上 (要調整) */
    
    /* ↓↓↓ ボタンを引き上げるためのネガティブマージン ↓↓↓ */
    margin-bottom: 40px; /* ★重なり具合（お好みで調整） */
    
    z-index: 2; /* ★ボタン(z-index: 1)より手前に表示 */
}

/* ↓↓↓ CTAボタン ↓↓↓ */
.cta-button {
    background-color: var(--white);
    color: var(--orange);
    font-size: 1.125rem;
    height: 4.75rem;
    box-shadow: var(--box-shadow03, 0 4px 10px rgba(0,0,0,0.1));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: 999px;
    text-decoration: none;
    position: relative;
    z-index: 1;
    padding: 0 40px; 
    border: 2px solid var(--orange);
}
/* レスポンシブ設定 (PC向け) */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    .profile-wrapper {
        padding: 60px 40px;
    }
    .profile-card {
        flex-direction: row; /* PC: りみりん (画像が左) */
        text-align: left;
    }
    .profile-card.reverse {
        flex-direction: row-reverse; /* PC: りみまる (画像が右) */
    }
    .profile-card-image {
        flex-shrink: 0;
        margin-bottom: 0;
    }
    
.profile-card-image.maru {
    max-width: 385px;
}
.profile-card-image.rin {
    max-width: 330px;
}
    .profile-card .profile-card-content {
        padding-left: 30px;
    }
    .profile-card.reverse .profile-card-content {
        padding-left: 0;
        padding-right: 30px;
    }
    .profile-sub-grid {
        flex-direction: row;
        gap: 20px;
        margin-bottom: 10px;
    }
    .profile-sub-item {
        flex: 1;
    }
    .profile-sub-item.full-width {
        margin-top: 10px;
    }
    .contents-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    .content-item {
        text-align: left;
    }
    .sns {
        background-size: auto 70%;
    }
    .sns-accounts {
        flex-direction: row;
        justify-content: center;
        gap: 70px;
    }
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}