
/* ------------------------------
   ベーススタイル
------------------------------ */
body {
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

/* ------------------------------
   ヘッダー
------------------------------ */
.site-header {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.header-content {
  display: flex;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  .header-content {
    padding: 0 10px;
  }
}

.header-content a {
  display: flex; /* aタグ内のimgを中央揃え */
  align-items: center;
}

.header-content img {
  width: 100%;
}



.header-text {
  font-size: 14px;
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  .header-text {
    font-size: 10px;
    margin-left: 15px;
  }
}

/* ------------------------------
   メインコンテンツ
------------------------------ */
.gallery {
  background-color: #f5f5f5;
  width: 100%;
}

.gallery-inner {
  display: flex;
  max-width: 532px;
  align-items: flex-start;
  margin: 0 auto; 
  flex-direction: column;
}

.gallery img {
  display: block;
  width: 100%;
  height: auto;
}


.cv-button {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #0078D4;
  text-align: center;
  z-index: 1000;
}

.cv-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 0;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
}

/* SVGアイコンを ::before で表示 */
.cv-button a::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 16px;
  background-image: url("../img/icon_cv.svg"); /* SVGのパス */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}

.cv-button:hover{
    .text{
        opacity: 0.7;
    }
}


.img-wrapper {
  position: relative; 
}

.image-wrapper img {
  width: 100%;
  display: block;
}

.click-area {
  position: absolute;
  bottom: 2%;     /* クリックしたい位置 */
  left: 8%;
  width: 85%;   /* ボタンの幅 */
  height: 7%;   /* ボタンの高さ */
  cursor: pointer;
  display: block; 
  border-radius: 30px;

}


/* ------------------------------
   フッター
------------------------------ */
.site-footer {
  text-align: center;
  font-size: 13px;
 /* padding-bottom: 60px;*/
}
