@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;600&family=Montserrat:wght@400;600;700&display=swap');
/* =============================================== */
/* basic - 共通基本設定 */
/* ----------------------------------------------- */
@media(max-width:810px) {
  .pc {
    display: none;
  }
}
@media(min-width:811px) {
  .sp {
    display: none;
  }
}
img {
  pointer-events: none;
}
/* 画像のプリント禁止 
@media print {
  img {
    display: none !important;
  }
}*/
/* リセットcss */
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
  margin: 0;
  padding: 0;
}
html, h1, h2, h3, h4, dl, dt, dd, ul, li, p, img {
  margin: 0;
  padding: 0;
}
ul {
  list-style-type: none;
}
/* ボディ */
body {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1em;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  color: #fff;
  -webkit-text-size-adjust: 100%;
  background-color: #000;
}
a:link {
  text-decoration: underline;
  color: #e40438;
}
a:visited {
  text-decoration: underline;
  color: #e40438;
}
a:active {
  text-decoration: underline;
  color: #e40438;
}
a:hover {
  text-decoration: none;
  color: #e40438;
}
/* 画像関連 */
img {
  border: none;
  vertical-align: bottom;
}
/* 罫線 */
hr {
  height: 0;
  margin: 0 auto;
  padding: 0;
  border: 0;
  width: 100%;
  border-bottom: 2px dotted #715b4a;
}
.solid {
  border-top: 3px #999 solid;
}
.dotted {
  border-top: 3px #999 dotted;
}
.dashed {
  border-top: 1px 999 dashed;
}
.double {
  border-top: 3px #999 double;
}
/* 下からふわっと */
.fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}
/* リストタグひとつずつ表示 */
.fade-list li {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-list li.is-show {
  opacity: 1;
  transform: translateY(0);
}
/* 画像のマスクアニメ */
.reveal {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.reveal img {
  display: block;
  width: 100%;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.15s ease 0.5s, transform 0.5s ease 0.5s;
}
/* マスク */
.reveal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  transform: translateX(-100%);
  z-index: 2;
}
/* 発火 */
.reveal.is-show::before {
  animation: wipe 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
/* 表示時 */
.reveal.is-show img {
  opacity: 1;
  transform: scale(1);
}
/* 2段階ワイプ */
@keyframes wipe {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0%); /* ここで全面を覆う */
  }
  100% {
    transform: translateX(100%); /* 右に抜ける */
  }
}
/* アンダーライン */
.underline {
  display: inline;
  background-image: linear-gradient(#ff7849, #ff7849);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: background-size 2s ease;
}
.underline.is-active {
  background-size: 100% 1px;
}
/* ページレイアウト */
#wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  scroll-behavior: smooth;
  background-color: #000;
}
#container {
  width: 100%;
}
section {
  width: 100%;
  margin: 0;
  padding: 0;
  clear: both;
}
article {
  width: 96%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 25px 2%;
  clear: both;
}
/* =============================================== */
/* main - メイン */
/* ----------------------------------------------- */
#main {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
/* ロゴ */
h1 {}
/* メインコピー */
.subtitle {
  text-align: center;
  font-weight: 400;
  font-size: 20px;
  font-style: italic;
  line-height: 1.4;
  padding: 40px 0 0;
}
.subtitle span {
  color: #ff7849;
  font-size: 23px;
  padding: 0 3px;
  font-weight: 600;
}
@media(max-width:600px) {
  .subtitle {
    font-size: 15px;
  }
  .subtitle span{
    font-size: 18px;
  }
}
.mainList {
  width: 94%;
  text-align: center;
  margin: 30px auto 0;
  display: flex;
}
.mainList li {
  width: 40%;
  margin: 1%;
  display: inline-block;
  background-color: #fff;
  color: #000;
  padding: 3%;
  flex: 1;
}
.thumb {
  width: 100%;
}
.thumb img {
  width: 100%;
  height: auto;
}
.thumb a:link {
  display: block;
}
.infoBox {
  width: 100%;
  font-size: 14px;
  border-collapse: collapse;
  padding: 15px 0 0;
}
.infoBox th {
  text-align: left;
  white-space: nowrap;
  padding: 10px;
  border-bottom: 1px dotted #999;
  vertical-align: top;
  color: #666;
}
.infoBox td {
  text-align: left;
  padding: 10px;
  border-bottom: 1px dotted #999;
  vertical-align: top;
}
.btn {
  text-align: center;
  padding: 30px 0 0;
  font-size: 16px;
}
.btn a:link {
  text-decoration: none;
  background-color: #ff7849;
  color: #fff;
  padding: 10px 2.5em;
  border-radius: 50px;
  line-height: 1;
}
.btn a:visited {
  text-decoration: none;
  background-color: #ff7849;
  color: #fff;
}
.btn a:active {
  text-decoration: none;
  background-color: #ff7849;
  color: #fff;
}
.btn a:hover {
  text-decoration: none;
  background-color: #fe8f69;
  color: #fff;
}
@media(max-width:810px) {
  .mainList {
    width: 86%;
    margin: 20px auto 20px;
    display: block;
  }
  .mainList li {
    width: 90%;
    margin: 20px 0;
    padding: 10% 5% 15%;
  }
  .infoBox th {
    display: block;
    width: 100%;
    padding: 5px 0;
    border-bottom: none;
  }
  .infoBox td {
    display: block;
    width: 100%;
    padding: 0 0 5px;
  }
}
@media(max-width:410px) {
  .mainList {
    width: 82%;
    margin: 30px auto 10px;
    display: block;
  }
  .infoBox {
    font-size: 10px;
  }
}
/* =============================================== */
/* intro - イントロ */
/* ----------------------------------------------- */
#intro {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 40px;
}
#intro h3 {
  font-size: 120%;
  padding: 20px 0;
  line-height: 1.7;
  margin: 30px 0 10px;
  font-weight: 400;
  font-style: italic;
}
@media(max-width:810px) {
  #intro h3 {
    font-size: 103%;
  }
}
@media(max-width:600px) {
  #intro h3 {
    font-size: 90%;
  }
}
#intro p {
  font-weight: 400;
  padding: 10px 0;
}
@media(max-width:810px) {
  #intro p{
    font-size: 90%;
  }
}
@media(max-width:600px) {
  #intro p{
    font-size: 84%;
  }
}
.nowrap {
  white-space: nowrap;
  font-weight: 600;
  color: #ff7849;
}
/* =============================================== */
/* message - メッセージ */
/* ----------------------------------------------- */
#message {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto 50px;
  padding: 2% 5% 3%;
  border: 1px solid #ff7849;
  background-color: #222;
}
.katagaki {
  font-size: 13px;
  text-align: center;
  margin: 0;
  padding: 0;
  line-height: 1.3;
  color: #fff;
}
#message h3 {
  font-size: 150%;
  padding: 0;
  margin: 0;
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
}

.skew-title {
  position: relative;
  display: inline-block;
  padding: 0.5em 0 0.4em 1em;
  color: #000;
  z-index: 1;
  font-size: 14px;
  margin: 30px 0 8px;
  line-height: 1;
}
.skew-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ff7849;
  z-index: -1;
}
.skew-title::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px; /* 斜めの張り出し幅 */
  width: 40px;
  height: 100%;
  background: #ff7849;
  transform: skewX(30deg);
  z-index: -1;
}
#message p {
  font-weight: 400;
  padding: 10px 0;
  font-size: 94%;
}
/* =============================================== */
/* footer - フッター */
/* ----------------------------------------------- */
footer {
  width: 100%;
  margin: 0;
  padding: 0;
  clear: both;
  background-color: #000;
  color: #aaa;
  text-align: center;
  border-top: 1px solid #333;
}
#footer-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 0;
  text-align: center;
}
#footer-inner P {
  padding: 0 0 15px;
  font-size: 80%;
}
@media(max-width:600px) {
  #footer-inner P {
    font-size: 64%;
  }
}
/* =============================================== */
/* clearfix - クリアフィックス設定 */
/* ----------------------------------------------- */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}
/* =============================================== */
/* rollover - 画像ロールオーバー設定 */
/* ----------------------------------------------- */
a:hover img {
  -moz-opacity: 0.80;
  opacity: 0.80;
  filter: alpha(opacity=80);
}
nav a:hover img {
  -moz-opacity: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media(max-width:600px) {
  a:hover img {
    -moz-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
/* =============================================== */
/*  固定SNS（右下） 
/* ----------------------------------------------- */
.social-float {
  position: fixed;
  right: 8px;
  bottom: 16px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.sns-label {
  font-family: var(--font-sans);
  font-size: 0.45rem;
  letter-spacing: 0;
  color: var(--sub);
  opacity: .85;
  writing-mode: vertical-rl;
  text-orientation: upright; /* ← mixed から変更 */
  display: inline-block; /* ← 重要 */
  text-align: center;
}
.sns-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.sns-ico {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  backdrop-filter: saturate(160%) blur(8px);
  transition: transform .2s cubic-bezier(.22, .61, .36, 1), opacity .2s;
}
.sns-ico:hover {
  transform: translateY(-1px);
  opacity: 0.82;
}
.sns-ico img {
  width: 20px;
  height: 20px;
  display: block;
}
@media(max-width:768px) {
  .social-float {
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }
  .sns-ico {
    width: 20px;
    height: 30px;
  }
  .sns-ico img {
    width: 20px;
    height: 20px;
  }
}