@charset "UTF-8";/* 文字コードを指定 */
/* =================================================================
↓ここからCSS書いてください
=================================================================*/
/* 全体 ================================== */
/*ゴシック体ベース（＊どっちか選んで片方消す）*/
body {
    font-family: "gotham-narrow", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #F3F3F3;
  }
  
  html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
  

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; 
    width: 100%;
}
    img {
        max-width: 100%;
        height: auto;
      }
      
/* ここからheader ================================== */
/* ここからheader ================================== */
#page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000; /* フェードの色 */
    opacity: 0;
    z-index: 9999; /* 最前面に表示 */
    pointer-events: none; /* クリックを透過 */
    transition: opacity 0.3s ease-in-out; /* フェードの時間 */
}

/* メインセクションのスタイル */
.fade-in {
    opacity: 0; /* 初期状態を透明にする */
    transform: translateY(20px); /* 初期位置を少し下にずらす（お好みで） */
    transition: opacity 0.7s ease-out, transform 0.7s ease-out; /* opacityとtransformの変化を0.5秒かけて滑らかに */
  }
  
  /* 表示状態にするためのクラス */
  .fade-in.visible {
    opacity: 1; /* 完全に見える状態にする */
    transform: translateY(0); /* 位置を元の場所に戻す */
  }
  
.bg_gray{
    background-color:#F3F3F3;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    overflow: hidden;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}
/* mainvisual 要素自体に拡大縮小アニメーションを適用 */
.mainvisual {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 25;
    animation: pulse-bg 3s infinite alternate; /* pulse-bg アニメーションを適用 */
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('img/main.png'); /* ← メイン画像のパス */ 
    background-size: cover; /* または contain など、必要に応じて調整 */
}
.mainvisual_sp{
    display: none;
}

@keyframes pulse-bg {
    0% {
        background-size: cover; /* または contain など、初期値 */
    }
    50% {
        background-size: 103%; /* 少し拡大 */
    }
    100% {
        background-size: cover; /* または contain など、初期値に戻す */
    }
}
.mainv{
    position: relative;
    overflow: hidden;
}
/* アニメーション */
@keyframes zoomInFade {
    0% {
      transform: scale(0.99);
      opacity: 0.5;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  /* メインビジュアルがズームしながらフェードイン */
  .zoom-in {
    animation: zoomInFade 1s ease-out forwards;
  }
  
.main01{
    width: 55%;
    z-index: 30;
    position: absolute;
    top: 10px;
    left: -10px;
}
.main02{
    width: 35%;
    z-index: 30;
    position: absolute;
    top: 20px;
    right: -15px;
}
/* 左からスライド＆フェードイン */
@keyframes slideFadeInLeft {
  from {
    transform: translateX(-40px);
    opacity: 0.5;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* 右からスライド＆フェードイン */
@keyframes slideFadeInRight {
  from {
    transform: translateX(40px);
    opacity: 0.5;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* animation を適用するクラス */
/* 画像の拡大縮小アニメーション */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03); /* 少し拡大 */
    }
    100% {
        transform: scale(1);
    }
}

/* .main01 の既存のルールセットを以下のように更新 */
.main01 {
    opacity: 0;
    animation: slideFadeInLeft 2s cubic-bezier(0.22, 1, 0.36, 1) forwards,
               pulse 3s infinite alternate; /* pulse アニメーションを追加 */
    animation-delay: 0.3s, 2.3s; /* pulse の開始を slideFadeInLeft の終了後に */
}

/* .main02 の既存のルールセットを以下のように更新 */
.main02 {
    opacity: 0;
    animation: slideFadeInRight 2s cubic-bezier(0.22, 1, 0.36, 1) forwards,
                pulse 2.5s infinite alternate; /* pulse アニメーションを追加 (速度を少し変える) */
    animation-delay: 0.4s, 2.4s; /* pulse の開始を slideFadeInRight の終了後に */
}
/* 背景の文字 */
/* ======================================
   マルキー：親は overflow: hidden のまま既存
   ====================================== */
   .marquee {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 10;            /* 背面 */
    pointer-events: none;  /* クリックを透過 */
  }

  /* まず全行を絶対配置＆共通アニメーション */
  .marquee__inner {
    position: absolute;
    white-space: nowrap;
    padding-right: 0;
    animation-name: marqueeContinuous; /* アニメーション名を変更 */
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    overflow: hidden;
    display: flex;
    flex-direction: row;
  }

  @keyframes marqueeContinuous {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); } /* これはJavaScriptで動的に調整します */
  }


  /* ─────────────────────────────────────
     各行ごとに「上下位置」と「速度」を設定
     ───────────────────────────────────── */
  /* 1行め */
  .marquee__inner:nth-child(1) {
    top:  -9%;                /* 垂直位置を 0～100% の間で調整 */
    animation-duration: 100s;   /* 流れる速さ（秒）を調整 */
  }
  /* 2行め */
  .marquee__inner:nth-child(2) {
    top:  6%;
    animation-duration: 55s;
  }
  /* 3行め */
  .marquee__inner:nth-child(3) {
    top:  20%;
    animation-duration: 90s;
  }
  /* 4行め */
  .marquee__inner:nth-child(4) {
    top:  35%;
    animation-duration: 85s;
  }
  /* 5行め */
  .marquee__inner:nth-child(5) {
    top:  52%;
    animation-duration: 130s;
  }
  /* 6行め */
.marquee__inner:nth-child(6) {
    top: 65%;
    animation-duration: 45s;
  }
  /* 7行め */
  .marquee__inner:nth-child(7) {
    top:80%;
    animation-duration: 150s;
  }
  
  .marquee__inner p{
    font-family: "gotham-narrow", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 2.5rem;
    color: #414141;
    margin-right: 10px; /* テキスト間のスペース */
  }

/* メインセクション内のMenuボタンのスタイル */
.menu_btn{
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    font-family: "gotham-narrow", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 20px;
    color: #E60012;
    border: 2px solid #E60012;
    border-radius: 9999px;
    line-height: 1;
    padding: 15px 50px;
    transition: all 0.3s ease;
    position: fixed; /* メイン画像に重ねて配置 */
    top: 40px; /* 配置調整 */
    right: 50px; /* 配置調整 */
    z-index: 50;
}
button{
    background-color: transparent;
}
.menu_btn:hover {
    background-color: rgba(230, 0, 18, 0.02);
    border-color: #d40010;
    transform: scale(1.005);
}
.global-nav {
    position: fixed;
    top: -300px;
    left: 0;
    width: 100%;
    height: auto;
    background-color: #ffffff(255, 1, 0, 0.7); 
    padding-top: 80px;
    transition: top 0.3s ease-in-out, opacity 0.3s ease-in-out, backdrop-filter 0.4s ease-out; /* ← 各プロパティのトランジション設定 */
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    backdrop-filter: blur(0px);
}

.global-nav.open {
    top: 0;
    opacity: 1;
    backdrop-filter: blur(2px); /* ← blur の値を調整 */
    transition: top 0.3s ease-in-out, opacity 0.4s ease-out, backdrop-filter 0.2s ease-in; /* ← 各プロパティのトランジション設定 */
    visibility: visible; /* open 時は visible に */
    background-image: linear-gradient(rgba(229, 229, 229, 0.7), rgba(255, 255, 255, 0.5)); /* 薄い青から白のグラデーション */
    background-color: transparent; /* background-image を重ねるために transparent に設定 */
}

/* 必要に応じて既存の .global-nav と .global-nav.open のスタイルを上記で置き換えてください */

/* 追加：メニュー制御エリアのスタイル（必要に応じて） */
#menu-trigger-area {
    position: relative; /* 子要素のabsolute配置の基準 */
}


.global-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: right;
    margin-bottom: 30px;
    margin-top: -40px;
    margin-right: 200px;
}

.global-nav li a {
    font-family: "gotham-narrow", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #1B1B1B;
}
/* 追加：メニュー制御エリアのスタイル（必要に応じて） */
#menu-trigger-area {
    position: relative; /* 子要素のabsolute配置の基準 */
}

.global-nav li a:hover {
  color: #000;
  transform: translateY(-1.5px);
}



@media screen and (max-width:600px) {

    .bg_gray{
        background-color:#F3F3F3;
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
    }




    .mainvisual{
        display: none;
    }
    .mainvisual_sp{
        display: block;
        padding-bottom: 180px;
        position: relative;
        z-index: 30;
    }
    .main01{
        width: 270px;
        position: absolute;
        top: 30px;
        left: 2px;
    }
    .main02{
        width: 200px;
        position: absolute;
        top: 460px;
        right: 2px;
    }
    .marquee__inner p{
        font-size: 16px;
        z-index: 10;
      }
      /* 1行め */
  .marquee__inner:nth-child(1) {
    top:  -6%;                /* 垂直位置を 0～100% の間で調整 */
    animation-duration: 120s;   /* 流れる速さ（秒）を調整 */
  }
  /* 2行め */
  .marquee__inner:nth-child(2) {
    top:  11%;
    animation-duration: 75s;
  }
  /* 3行め */
  .marquee__inner:nth-child(3) {
    top:  22%;
    animation-duration: 90s;
  }
  /* 4行め */
  .marquee__inner:nth-child(4) {
    top:  35%;
    animation-duration: 115s;
  }
  /* 5行め */
  .marquee__inner:nth-child(5) {
    top:  52%;
    animation-duration: 260s;
  }
  /* 6行め */
.marquee__inner:nth-child(6) {
    top: 66%;
    animation-duration: 55s;
  }
  /* 7行め */
  .marquee__inner:nth-child(7) {
    top:81%;
    animation-duration: 300s;
  }
  .menu_btn{
    font-size: 13px;
    padding: 8px 27px;
    position: fixed; /* メイン画像に重ねて配置 */
    top: 30px; /* 配置調整 */
    right: 10px; /* 配置調整 */
}
.global-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 30px;
    margin-top: -40px;
    margin-right: -18px;
}

.global-nav li a {
    font-family: "gotham-narrow", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #1B1B1B;
}
    }
 

    @media screen and (min-width:601px) and (max-width:1080px)  {
        .bg_gray{
            background-color:#F3F3F3;
            border-bottom-left-radius: 35px;
            border-bottom-right-radius: 35px;
        }
        .mainvisual{
            padding-bottom: 190px;
        }
        .main01{
            width: 65%;
            position: absolute;
            top: 30px;
            left: 2px;
        }
        .main02{
            width: 30%;
            position: absolute;
            top: 150px;
            right: 2px;
        }
        .marquee__inner p{
            font-size: 18px;
            z-index: 10;
          }
/* 1行め */
.marquee__inner:nth-child(1) {
    top:  -7%;                
    animation-duration: 100s;   
  }
  /* 2行め */
  .marquee__inner:nth-child(2) {
    top:  10%;
    animation-duration: 55s;
  }
  /* 3行め */
  .marquee__inner:nth-child(3) {
    top:  20%;
    animation-duration: 90s;
  }
  /* 4行め */
  .marquee__inner:nth-child(4) {
    top:  35%;
    animation-duration: 85s;
  }
  /* 5行め */
  .marquee__inner:nth-child(5) {
    top:  47%;
    animation-duration: 130s;
  }
  /* 6行め */
.marquee__inner:nth-child(6) {
    top: 57%;
    animation-duration: 45s;
  }
  /* 7行め */
  .marquee__inner:nth-child(7) {
    top:73%;
    animation-duration: 150s;
  }
  .menu_btn{
    position: fixed; /* メイン画像に重ねて配置 */
    top: 20px; /* 配置調整 */
    right: 10px; /* 配置調整 */
}






    }

/* ここからprofile ==================================== */
.h2_profile{
    font-family: "kozuka-gothic-pr6n", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 64px;
    color: #1B1B1B;
    padding-left: 220px;
    margin-top: 300px;
}
.aboutme{
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    font-family: "gotham-narrow", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: #E60012;
    border: 2px solid #E60012;
    border-radius: 9999px;
    line-height: 1;
    padding: 15px 40px;
    transition: all 0.3s ease;
}
.aboutme:hover {
    background-color: rgba(230, 0, 18, 0.02); 
    border-color: #d40010; 
    transform: scale(1.005);
}
.about_btn{
    text-align: center;
}

.aokiseishin{
  position: relative;
   font-family: "gotham-narrow", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 120px;
    text-align: center;
    margin-top: 150px;
    margin-bottom: 150px;
}
h2.aokiseishin::after {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: -30px;
    width: 100%;
    transform: scaleY(-1);
    opacity: 0.3;
    mask-image: linear-gradient(
  to top,
  rgba(0,0,0,0.4) 0%,
  rgba(0,0,0,0) 65%,
  rgba(0,0,0,0) 100%
);

    line-height: 1;
}



@media screen and (max-width:600px) {
    .h2_profile{
    font-size: 32px;
    padding-left: 20px;
    margin-top: 170px;
    }
    .aboutme{
        font-size: 13px;
        padding: 10px 18px;
    }
    .aokiseishin{
      font-size: 36px;
      margin-top: 100px;
      margin-bottom: 100px;
    }
    h2.aokiseishin::after{
      margin-top: -8px;
    }

    }
    
    
@media screen and (min-width:601px) and (max-width:1080px)  {
    .h2_profile{
        font-size: 40px;
        padding-left: 50px;
        margin-top: -20px;
        }
        .profilev{
            width: 500px;
    
        }
     
        .profile_visual{
            margin-top: 50px;
        }
}











/* ここからWorks ==================== */
.h2_works {
    font-family: "kozuka-gothic-pr6n", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 64px;
    color: #1B1B1B;
    padding-left: 220px;
    position: relative;
    margin-top: 300px;
    margin-bottom: -110px;
  }
  
  .h2_works .line {
    position: absolute;
    top: 50%;
    left: -150px; /* 画面の左端から始まるように設定 */
    width: 0px; /* 線の長さ */
    height: 1px; /* 線の太さ */
    background-color: #000000; /* 線の色 */
    transform: translateY(-50%);
  }
  
  /* .animate が付与されたときだけ線が伸びる */
  .h2_works .line.animate {
    animation: lineAnimation 1s ease-out forwards;
  }
  
  @keyframes lineAnimation {
    from {
      left: -150px;
      width: 0;
    }
    to {
      left: 0;
      width: 150px;
    }
  }
  
  /* 画像は幅100%／自動高さで縦横比を維持 */
  .slider-track {
    display: flex;
    align-items: flex-end; /* ←これが下揃えのポイント */
    margin-top: 130px;
  }
  
  
  .slide img {
    width: 90%;
    height: auto;
    display: block;
    align-self: flex-end;
    margin: auto auto;
    border-radius: 20px;
  }
  .slide {
    display: flex;
  align-items: flex-end; /* ← 画像が下に寄る */

    height: 100%; /* スライドの高さいっぱいに */
  }
  
  .works_btn {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    font-family: "gotham-narrow", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: #000000;
    border: 2px solid #000000;
    border-radius: 9999px;
    line-height: 1;
    padding: 15px 60px;
    transition: all 0.3s ease;
    margin-top: 30px;
  }
  
  .works_btn:hover {
    transform: scale(1.005);
  }
  
  .works_btn_oya {
    text-align: center;
  }
.slider-container_sp{
    display: none;
}
.slider-container_pc{
    margin-left: auto;
    margin-right: auto;
}



  @media screen and (max-width:600px) {
    .h2_works{
        font-size: 32px;
        padding-left: 20px;
        margin-top: 250px;
    }
    .h2_works .line {
        top: 50%;
        left: -150px;
        width: 10px; 
      }
      .slide_pc{
        display: none;
      }
      .slide_sp{
        display: block;
      }
      .works_btn {
        font-size: 10px;
        padding: 10px 40px;
        margin-top: -5px;
      }
      .slide img {
        width: 95%;
        border-radius: 20px;
      }
      .slider-container_sp{
        display: block;
    }
    .slider-container_pc{
        display: none;
    }
    .slide img{
        width: 85%;
    }
    }
    
@media screen and (min-width:601px) and (max-width:1080px)  {
    .h2_works{
    font-size: 40px;
    padding-left: 50px;
    margin-top: 180px;
    }
    .h2_works .line {
        top: 50%;
        left: -150px;
        
      }
    .slide img {
    width: 95%;
    margin-top: 10px;
    }
    .works_btn {
    margin-top: -2px;
      }
}

  










/* ここからcontact ==================== */
.h2_contact{
    font-family: "kozuka-gothic-pr6n", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 64px;
    color: #1B1B1B;
    padding-left: 220px;
    position: relative;
    margin-top: 250px;
    position: relative;
}
.h2_contact::after {
    content: "";
    position: absolute;
    top: 50%;
    /* 左端を「テキスト末尾の少し右」に合わせる 
       ここは「220px + テキスト幅」に相当する値をch単位で指定します */
    left: calc(250px + 10ch); /* 4chは「つながる。」の文字幅相当として調整してください */
    right: 0;                /* 右端まで伸ばす */
    height: 1px;
    background-color: #000;
    transform-origin: left;      /* 左端を基準に拡大 */
    transform: scaleX(0);        /* 幅ゼロに縮める */
    /* アニメーションを定義 */
  }
  .h2_contact.animate::after {
    animation: extendLine 1s ease-out forwards;
}
  @keyframes extendLine {
    to {
      transform: scaleX(1);      /* 左端から100% の幅まで拡大 */
    }
  }
  
.p_contact{
    font-family: "kozuka-gothic-pr6n", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #3D3D3D;
    font-weight: bold;
    font-size: 15px;
    padding-left: 220px;
    margin-top: 40px;
    line-height: 36px;
}
.contact_btn{
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    font-family: "gotham-narrow", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: #000000;
    border: 2px solid #000000;
    border-radius: 9999px;
    line-height: 1;
    padding: 15px 50px;
    transition: all 0.3s ease;
}
.contact_btn:hover{
    transform: scale(1.005);
    border-color: #000;
  }
  .contact_btn_oya{
    text-align: right;
    padding-right: 220px;
  }
  .contact{
    background-color: #F3F3F3;
    padding-bottom: 130px;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
  }



  @media screen and (max-width:600px) {
    .h2_contact{
        font-size: 32px;
        padding-left: 20px;
        margin-top: 150px;
    }
    .h2_contact::after {
        left: calc(150px + 1ch); /* 4chは「つながる。」の文字幅相当として調整してください */
      }
      .p_contact{
        font-size: 11px;
        padding-left: 20px;
        margin-top: 40px;
        line-height: 24px;
    }
    .contact_btn{
        font-size: 10px;
        padding: 10px 30px;
    }
    .contact_btn_oya{
        padding-right: 10px;
      }
    }
@media screen and (min-width:601px) and (max-width:1080px)  {
    .h2_contact{
    font-size: 40px;
    padding-left: 50px;
    margin-top: 200px;
    }
    .h2_contact::after {
        left: calc(200px + 2ch); 
      }
      .p_contact{
        font-size: 14px;
        padding-left: 50px;
        margin-top: 40px;
        line-height: 28px;
    }
    .contact_btn_oya{
        padding-right: 20px;
      }
    .contact{
        padding-bottom: 80px;
    }
}










/* ここからfooter ================================== */
.footer_btn {
    display: inline-block;        /* 横並び */
    width: 160px;                 /* お好みの幅 */
    height: 50px;                 /* お好みの高さ */
    line-height: 50px;            /* テキストを縦中央揃え */
    text-align: center;           /* テキストを横中央揃え */
    text-decoration: none;
    font-family: "gotham-narrow", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: #000;
    border: 2px solid #000;
    border-radius: 9999px;
    transition: all 0.3s ease; 
  }
  
  .footer_btn:hover {
    transform: scale(1.005);
  }
.footer_grid{
    display: grid;
    grid-template-columns: auto auto;
    row-gap: 16px;
    /* 全体の固定幅 */
    width: 410px;
    /* 画面中央に寄せる */
    margin: 0 auto;
    /* 列アイテムを両端に配置 */
    justify-content: space-between;
    position: relative;  /* 縦線用の ::before には引き続き必要なら */    
    margin-top: 100px;
}
.footer_grid::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
     background-color: #000;
}
.copyright{
    font-family: "gotham-narrow", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: #000;
}
.copyright_oya{
    text-align: center;
    margin-top: 75px;
}


@media screen and (max-width:600px) {
    .footer_btn{
        width: 100px;
        height: 35px;
        font-size: 10px;
        line-height: 35px;
    }
    .footer_grid{
        display: grid;
        width: 300px;
        margin-top: 50px;
    }
    .copyright{
        font-weight: medium;
        font-size: 10px;
    }
    .copyright_oya{
        margin-top: 25px;
    }
    }
@media screen and (min-width:601px) and (max-width:1080px)  {
    .footer_grid{
    margin-top: 50px;
    }
    .copyright_oya{
    margin-top: 30px;
    } 
}








/* ここからaboutの下層ページ */



/* モーダルの中のレイアウト */




/* ここからスマホ版 */




/* =================================================================
↓よく使うCSS（＊終わったら削除しましょう）
=================================================================
▼MDNで使い方を調べる習慣をつけましょう
https://developer.mozilla.org/ja/docs/Web

▼文字系
    font-size: 16px; （フォントサイズ）
    color: #fff; （文字色など）
    font-weight: bold; （文字の太さ）
    line-height: 26px; （行間）
    letter-spacing: 1.2px; （字間）
    text-decoration: none; （文字装飾）
    text-align: center; （揃え）
▼幅・高さ
    width: 100%; （幅）
    max-width: 960px; （最大幅・コンテンツ幅）
    height: 400px; （高さ）
▼背景
    background-color: #ddd; （背景色）
    background-image: url(../image/◯◯.jpg); （背景画像）
    background-size: cover; （背景サイズ）
    background-position: center; （背景位置）
    background-repeat: none; （背景リピート）
▼余白
    padding: 10px 10px 10px 10px; （内側に余白）
        padding-top: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
        padding-left: 10px;
    margin: 10px 10px 10px 10px; （外側に余白）
        margin-top: 10px;
        margin-right: 10px;
        margin-bottom: 10px;
        margin-left: 10px;
▼その他装飾
    list-style: none; （リストの装飾）
    opacity: 0.5; （透明度）
    color: rgba(255, 255, 255, 0.2); （透明度rgba指定）
    border-radius: 15px; （角丸）
    box-shadow: 10px 10px #ddd; （影）
    border: 1px solid #000; （線）
        border-top: 1px solid #000;
        border-right: 1px solid #000;
        border-bottom: 1px solid #000;
        border-left: 1px solid #000;
▼レイアウト：左右に配置
    【親】overflow: hidden; 
    【子】float: left; （左）
    【子】float: right; （右）
▼レイアウト：中央揃え
    text-align: center; （左右中央揃え①）
    margin: 0 auto; （左右中央揃え②）
    vertical-align: middle; （上下中央揃え①）
    line-height: 80px; （上下中央揃え②）
▼レイアウト：好きな位置に配置
    【親】position: relative; （基準を設定）
    【子】position: absolute; （位置決める）
        top: 10px;
        left: 50%;
        right: 10px;
        bottom: 50%;
▼レイアウト：好きな位置に固定させる
    position: fixed;
        top: 10px;
        left: 50%;
        right: 10px;
        bottom: 50%;
▼レイアウト：並べる・一覧
    display: flex;
    https://www.webcreatorbox.com/tech/css-flexbox-cheat-sheet
    https://design-tera.com/blog/archives/2372/
▼レイヤーの順番を入れ替える
    z-index: -1〜999;
    
*/