@charset "utf-8";

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table.table, caption, tbody, tfoot, thead, tr, th, td {border: 0;font-family: inherit;font-size: 100%;font-style: inherit;font-weight: inherit;margin: 0;outline: 0;padding: 0;vertical-align: baseline;}
:focus {outline: 0;}

ol, ul {list-style: none;}
table.table {border-collapse: separate;border-spacing: 0;}
caption, th, td {font-weight: normal;text-align: left;}
blockquote:before, blockquote:after,q:before, q:after {content: "";}
blockquote, q {quotes: "" "";}
a img{border: 0;}
figure{margin:0}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}
/* -------------------------------------------------------------- */

body {
color:#fff;
font-size:16px;
font-family: "M PLUS Rounded 1c", serif;
font-weight: 400;
font-style: normal;
line-height:1.5;
-webkit-text-size-adjust: none;
background: linear-gradient(to right, #e73468, #f8b500);
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden; /* 横スクロール防止 */
}

.wrapper {
  width: 100vw; /* ビューポート幅を100% */
  height: 100vh; /* ビューポート高さを100% */
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-container {
  text-align: center; /* 中の要素を中央揃え */
}

img.eye{
  width: 40vw;
  max-width: 150px;
}

h2{
    font-family: "M PLUS Rounded 1c", serif;
    font-weight: 600;
    font-style: normal;
    font-size:1.2rem;
    letter-spacing:0.1em;
}
.fs12{
  font-size:1.2em;
}
ul {
  list-style: none; /* デフォルトのリストマーカーを削除 */
  padding: 0;
  margin: 20px auto; /* 上下に30pxの余白 & 水平方向中央寄せ */
  display: flex;
  flex-direction: column; /* 縦並びにする */
  align-items: flex-start; /* ul自体は中央に配置しつつ、liは左寄せ */
  width: max-content; /* 最も長いliの幅に合わせる */
}

ul li {
  text-align: left; /* liのテキストを左寄せ */
  white-space: nowrap; /* 改行を防ぎ、最大幅を決定 */
  font-family: "M PLUS Rounded 1c", serif;
}

.button-container {
  display: flex;
  flex-direction: column;
  align-items: center; /* 水平方向の中央揃え */
  margin: 0 auto 15px;
}

.button {
  display: inline-block;
  background-color: #2aca45; /* 緑色 */
  color: #ffffff; /* 白文字 */
  font-size: 2rem;
  text-decoration: none;
  padding: 0 12px;
  border-radius: 10px; /* 角を丸く */
  text-align: center;
  transition: background-color 0.3s;
  border: 2px solid #b3b3b3; /* グレーの枠線 */
}

.button:hover {
  background-color: #25b03e; /* ホバー時に少し濃い緑 */
}

/* ▼の部分 */
.arrow {
  width: 20px; /* 幅 */
  height: 10px; /* 高さ (幅の半分) */
  background-color: transparent;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  margin-top: 5px; /* ボタンとの間隔 */
  background-color: #fff; 
}

.image-container {
  display: flex;
  justify-content: center; /* 水平方向に中央配置 */
  gap: 20px; /* 画像の間隔（必要に応じて調整） */
  margin: 0 auto 20px;
}

.image-container img {
  width: auto; /* 画像の幅を固定 */
  height: 40px; /* アスペクト比を保持 */
}

/* リンク設定
------------------------------------------------------------*/
a{
  color:#fff;
  text-decoration: underline;
  cursor: pointer; /* マウスカーソルを手のマークに */
  font-family: "M PLUS Rounded 1c", serif;

}
a:hover{text-decoration: none;}
a:active, a:focus {outline:0;}


/*************
/* フッター 
*************/
.l-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0.5em 0 5em;
  color: inherit;
}
ol, ul {
  list-style: none;
}
.l-footer__nav a {
  padding: 0 0.75em;
  font-size: 13px;
  border-right: 1px solid;
}
.l-footer__nav li:first-child a {
  border-left: 1px solid;
}


/************************************
** タブレット用のレスポンシブデザインスタイル読込
************************************/
@media screen and (max-width: 900px) {
}
/************************************
** SP用のレスポンシブデザインスタイル読込
************************************/
@media screen and (max-width:480px){
  img.eye{
    width: 40vw; /* ビューポート幅を100% */
  }
}