@charset "utf-8";
/* CSS Document */

body {
  padding: 0;
  margin: 0;
  color: #333;
  background: #161b1e;
  text-align: center;
}

/* -------------------------
  表示切り替え
-------------------------- */
.sp_elm,
.pc_elm {
  display: none;
}

@media (max-width: 768px) {
  .sp_elm {
	display: block;
  }
}

@media (min-width: 769px) {
  .pc_elm {
	display: block;
  }
}

/* -------------------------
  リンク・画像設定
-------------------------- */
a img {
  border: none;
}

img {
  height: auto !important;
}

a img:hover,
.box ul li a:hover {
  transition: 0.3s ease-in-out;
  opacity: 0.4;
  filter: alpha(opacity=60);
}

a,
a:visited,
a:active,
a:hover {
  color: #fff;
  text-decoration: none;
}

.img_1 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100vh !important;
  width: auto !important;
  max-width: none; /* 制限を外す */
}

.main_section{ position: relative; overflow: hidden; line-height: 0; height: 100vh;}

.main_section h1 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.main_section h1 img{ height: 25vh!important;  margin-top: 5vh; width: auto!important;}

@media (max-width:600px) {
  
  .main_section h1 {
    width:90%!important;
  }
  
  .main_section h1 img{ height: auto!important;  margin-top: 8vh; width: 100%!important;}
}


.main_section ul {
  list-style: none;
  display: flex;
  position: absolute;
  bottom: 10vh;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
}
.main_section ul li img{ height: 40px!important; margin: 0 8px;}

.single_wrap {
  background: #0d0d0d;
  color: #f5f5f5;
  font-family: 'Playfair Display', serif;
  padding: 80px 20px;
  text-align: center;
}

.single_wrap .w1200 {
  max-width: 1200px;
  margin: 0 auto;
}

.single_wrap h2 {
  margin-bottom: 40px;
  line-height: 1.4;
  word-break: keep-all; /* 英単語の途中で改行されないように */
}

.single_wrap h2 .small {
  display: block;
  font-size: 16px;
  color: #999;
  letter-spacing: 2px;
  margin-bottom: 5px;
  font-weight: 500;
  white-space: nowrap; /* 無理に改行しない */
}

.single_wrap h2 .big {
  display: inline-block;
  font-size: 52px;
  font-weight: 700;
  color: #ccc;
  letter-spacing: 1px;
  margin: 10px 0;
  white-space: nowrap;
}

.single_wrap figure {
  margin: 0 auto 40px;
  max-width: 500px;
}

.single_wrap figure img {
  width: 100%;
  height: auto;
  border: 3px solid #666;
  box-shadow: 0 0 20px rgba(100, 100, 100, 0.4);
}

.single_wrap .btn a {
  display: inline-block;
  background: #666;
  color: #fff;
  font-weight: bold;
  padding: 16px 40px;
  text-decoration: none;
  letter-spacing: 2px;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 18px;
}

.single_wrap .btn a:hover {
  background: #fff;
  color: #333;
  box-shadow: 0 0 15px #aaa;
  transform: scale(1.05);
}

/* ✅ レスポンシブ対応（スマホ） */
@media screen and (max-width: 768px) {
  .single_wrap h2 .big {
    font-size: 32px;
    white-space: normal; /* スマホでは折り返しを許可 */
  }

  .single_wrap h2 .small {
    font-size: 14px;
    white-space: normal;
  }

  .single_wrap .btn a {
    font-size: 16px;
    padding: 14px 30px;
  }

  .single_wrap {
    padding: 60px 15px;
  }
}

