@charset "UTF-8";
/*
Theme Name: MissEarthJapan2026
Version:1.0.1
Author:
*/
/*--------------共通---------------*/
html {
  font-size: 100%;
}
body {
  font-family: "Shippori Mincho","游明朝","Yu Mincho",YuMincho,"Hiragino Mincho Pro",serif;
  color: #000;
  letter-spacing: 0.1em;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  transition: all .6s ease 0s;
}
body, html {
  margin: 0;
  padding: 0;
}
body * {
  box-sizing: border-box;
}
a {
  color: #05204b;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  list-style: none;
}
li {
  list-style: none;
}
.wrap {
  overflow: hidden;
}
/*---------メインビジュアル----------*/
.main_v_wrapper {
  position: relative;
}
.main_v {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #91d2e3;
  display: flex;
  align-items: center;    /* 縦中央 */
  justify-content: center; /* 横中央 */
}
.main_v_content {
  display: flex;
  flex-direction: column;    /* 縦並び */
  align-items: center;       /* 中央揃え */
  gap: 24px;                 /* 画像とボタンの間隔 */
}
.main_v img {
  width: 35%;
}
.fv_entry {
  position: relative;
  display: inline-block;
  padding: 16px 60px;
  color: #111;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.12em;
  background: #c6b27d;
  border: none;
  transition: color 0.3s ease;
}

/* 上下の線 */
.fv_entry::before,
.fv_entry::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background-color: #111;
  transition: width 0.35s ease;
}
.fv_entry::before {
  top: 0;
  left: 0;
}
.fv_entry::after {
  bottom: 0;
  right: 0;
}
.fv_entry span {
  pointer-events: none;
}
.fv_entry::hover {
  color: #000;
}
.fv_entry:hover::before,
.fv_entry:hover::after {
  width: 100%;
}
.fv_entry {
  box-shadow:
    inset 0 0 0 0 #111,
    inset 0 0 0 0 #111;
}
.fv_entry:hover {
  box-shadow:
    inset 1px 0 0 0 #111,
    inset -1px 0 0 0 #111;
}
@media (max-width: 1180px) {
  .main_v img {
    width: 50%;
  }
}
@media (max-width: 650px) {
  .main_v img {
    width: 100%;
    padding:10px;
  }
}
@media (max-width: 450px) {
  .main_v {
    height: 90vh;
  }
}
/*---------ハンバーガーメニュー--------*/
.globalMenuSp {
  font-size: 15px;
  padding-bottom: 30px;
}
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 99;
  right: 3%;
  top: 1.6%;
  width: 3.8rem;
  height: 3.8rem;
  cursor: pointer;
  text-align: center;
}

.hamburger span {
  display: block;
  width: 48px;
  height: 2px;
  background: #bd9561;
  transition: transform .4s ease, opacity .3s ease;
}

.hamburger span:not(:last-child){
  margin-bottom: 6px;
}
.hamburger::after {
  content: "MENU";
  font-family: "Noto Serif JP", serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #bd9561;
  margin-top: 6px;
  transition: opacity .3s ease;
}
/* 上下を消す */
.hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(3){
  opacity: 0;
  transform: scaleX(0);
}
/* 真ん中は1本線として残す */
.hamburger.active span:nth-child(2){
  opacity: 1;
  transform: scaleX(0.6);  /* 少し短くして上品に */
}

/* テキスト切替 */
.hamburger.active::after{
  content: "CLOSE";
}

nav.globalMenuSp {
  position: fixed;
  z-index: 98;
  top: 0;
  right: 0;
  background: rgb(21, 31, 37);
  text-align: center;
  width: 100%;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.98);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
nav.globalMenuSp.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
nav.globalMenuSp ul {
  background: rgb(21, 31, 37);
  margin: 0 auto;
  padding: 7% 0;
  width: 100%;
  margin-top: 0;
}
nav.globalMenuSp ul {
  display: block;
}
nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 10px 0;
  width: 100%;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
nav.globalMenuSp ul li:hover {
  background: rgba(27, 52, 114, 0.2);
}
nav.globalMenuSp ul li a {
  position: relative;
  display: inline-flex;      /* ← 横並びにする */
  align-items: flex-end;     /* ← 文字と縦位置を揃える */
  gap: 12px;                 /* ← 線と文字の間 */
  color: #ffffffff;
  padding: 1em 0;
  text-decoration: none;
}
/* 左側の横線 */
nav.globalMenuSp ul li a::before {
  content: "";
  display: inline-block;
  width: 25px;               /* 線の長さ */
  height: 1px;
  background-color: rgba(255,255,255,0.7);
  transform: translateY(-0.4em); /* ← ここで「＿」っぽく下げる */
}
/* 開いてる時は背景スクロール止める */
body.nav-open {
  overflow: hidden;
}
/* 未公開メニュー */
.globalMenuSp li.notyet a {
  color: #aaa;              /* 薄いグレー */
  pointer-events: none;     /* クリック不可 */
  cursor: default;
  opacity: 0.6;
}
.globalMenuSp li.notyet a:hover {
  background: none;
}
@media (max-width: 768px) {
  nav.globalMenuSp ul li {
    padding: 5px 0;
  }
  nav.globalMenuSp ul {
    padding: 10% 0;
    margin-top: 0;
  }
}
/*---------セクションテキスト--------*/
.sec_title {
  font-size: 2.4rem;
  font-family: "cormorant-garamond", serif;
  font-weight: 700;
  font-style: normal;
  position: relative;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 24px; /* ← before分の余白を上に確保 */
}
/* 飾り線 */
.sec_title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 40px;
  background-image: url("img/head_title_illust.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (max-width: 900px) {
  .sec_title {
    font-size: 2.2rem;
    margin-bottom: 0;
  }
}
/*---------about--------*/
.about {
  position: relative;
  margin: 160px 0 110px;
  overflow: hidden; /* 装飾画像はみ出し防止 */
  background-image: url("img/back_img2.png");
  background-repeat: no-repeat;
  background-position: center 40%;
  background-size: cover;
}
.about_text01 {
  max-width: 600px;
  margin: 80px auto 0; /* 中央 */
  position: relative;
  z-index: 2;
}
.about_text02 {
  max-width: 600px;
  margin: 0 auto 0;
  padding: 80px 0;
  transform: translateX(-160px);
  position: relative;
  z-index: 2;
}
.about_text03 {
  max-width: 500px;
  margin: 280px auto 0;
  position: relative;
  z-index: 2;
}
.about_title {
  font-size: 17px;
  color: #715f24ff;
}
.about p {
  text-align: left;
  line-height: 3;
  font-size: 15px;
}
.about_img {
  position: absolute;
  overflow: hidden;     /* 枠からはみ出した分を隠す */
  z-index: 1;
}
.about_img img {
  opacity: 0;
  filter: blur(10px);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  will-change: opacity, transform, filter;
}
.about .i1 {
  position: absolute;
  bottom: 10%;
  right: 7%;
  width: 25vw;
  height: 52vh;   /* 枠の高さを固定 */
  max-width: 25vw;
  z-index: 1;
  opacity: 0.9;
}
.about .i2 {
  position: absolute;
  bottom: 30%;
  left: 10%;
  width: 18vw;
  max-width: 18vw;
  height: 40vh;   /* 枠の高さを固定 */
  z-index: 1;
  opacity: 0.9;
}
.about .i3 {
  margin-top: -400px;
  width: 100vw;
  max-width: 100vw;
  height: auto;   /* 枠の高さを固定 */
  z-index: 1;
  opacity: 0.9;
}
.about h2,
.about p {
  position: relative;
  z-index: 2;
}
.about .i1,
.about .i2 {
  filter: saturate(0.9);
}
.waveCanvas{
  height: 170px;
  overflow: hidden;
  pointer-events: none;
}
.waveCanvas canvas{
  width: 100%;
  height: 100%;
  display: block;
}
.waveCanvas--top{
  transform: scaleY(-1);
}
.miss_j {
  margin-top: 25px;
}
/* 初期（PC） */
.pc_only { display: block; }
.sp_only { display: none; }

@media (max-width: 1180px) {
  .about_text01,
  .about_text02 {
    transform: none;
  }
  .about {
    margin: 60px 0 110px;
  }
  .about_text01 {
    max-width: 550px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
  }
  .about_text02 {
    padding: 50px 0;
    max-width: 550px;
    margin-left: 5%;
    margin-top: 100px;
  }
  .about .i1 {
    position: absolute;
    bottom: 10%;
    right: 2%;
    width: 25vw;
    height: 52vh;   /* 枠の高さを固定 */
    max-width: 25vw;
    z-index: 1;
    opacity: 0.9;
  }
  .about .i2 {
    position: absolute;
    bottom: 30%;
    left: 3%;
    width: 20vw;
    max-width: 20vw;
    height: 35vh;   /* 枠の高さを固定 */
  }
  .about .i3 {
    width: 100vw;
    max-width: 100vw;
  }
}
@media (max-width: 900px) {
  .pc_only { display: block!important; }
  .sp_only { display: none!important; }

  .about {
    margin: 30px 0 60px;
    background-position: top center;
    display: flex;
    flex-direction: column;
  }
  /* order：順番を強制（h2も入れる） */
  .about .sec_title { order: 0; }
  .about_text01 { order: 1; }
  .about .i1    { order: 5; }
  .about .i2    { order: 6; }
  .about_text02 { order: 2; }
  .about .i3    { order: 3; }
  .about_text03 { order: 4; }
  .about .waveCanvas { order: 7; }

  /* absolute解除：ここが最重要 */
  .about_img {
    position: static !important;
    height: auto;
    margin: 30px auto;
  }
  .about_img.i1 {
    width: 50vw;
    max-width: 50vw;
    height: 40vh;
    margin: 0 auto 0 15px;
  }
  .about_img.i2 {
    width: 45vw;
    max-width: 45vw;
    margin-top: -30px;
    margin-right: 15px;
  }
  .about_img.i3 {
    width: 100vw;
    margin: 0 auto;
  }
  .about_img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }
  /* テキスト：右寄せ解除 */
  .about_text01,
  .about_text02,
  .about_text03 {
    max-width: 92%;
    margin: 0 auto;
    transform: none;
  }
  .about_text01 {
    margin-top: 15px;
  }
  .about_text02 {
    padding: 0;
  }
  .about_text03 {
    margin-top: 30px;
  }
  .about p {
    line-height: 2.4;
    font-size: 14px;
  }
  .about_title {
    display: inline-block;
    margin-bottom: 6px;
  }
  .waveCanvas{
    height: 170px;
    margin-top: -100px;
  }
  .waveCanvas canvas{
    width: 100%;
    height: 100%;
    display: block;
  }
}
@media (max-width: 600px) {
  .pc_only { display: none!important; }
  .sp_only { display: block!important; }
  .waveCanvas{
    margin-top: -150px;
  }
}

/*---------左の文字--------*/
.side_vertical_text {
  position: fixed;
  left: 24px;              /* 画面左からの距離 */
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "cormorant-garamond", serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: rgba(0, 0, 0, 0.5);
  z-index: 10;
  pointer-events: none;
}
@media (max-width: 1180px) {
  .side_vertical_text {
    display: none;
  }
}
/*---------エントリー＆募集要項--------*/
.entry_guidelines {
  width: 100%;
  margin: 100px auto 100px;
}
.entry_guidelines h3 {
  position: relative;
  text-align: center;
  margin-bottom: 150px;
}
/* 縦線 */
.entry_guidelines h3::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 180%; /* h3の直下 */
  transform: translateX(-50%);
  width: 1px;
  height: 50px; /* 縦線の長さ */
  background-color: #999; /* 色はお好みで */
}
.guideline_title {
  color: #081939ff;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}
.guideline_block {
  background: #fff;
  padding: 48px 30px;
  border: 1px solid rgba(201,162,74,0.28); /* 淡いゴールド枠 */
  box-shadow:
    0 8px 20px rgba(0,0,0,0.05),
    0 30px 60px rgba(0,0,0,0.08);
  max-width: 60%;
  margin: 0 auto;
}
.guideline_list li {
  margin: 5px 0;
}
.guideline_note {
  margin-bottom: 20px;
}
@media (max-width: 1180px) {
  .guideline_block {
    max-width: 100%;
    padding: 30px 10px;
    margin: 0 15px;
  }
}
@media (max-width: 900px) {
.entry_guidelines h3 {
  font-size: 16px;
  position: relative;
  text-align: center;
  margin-bottom: 70px;
}
/* 縦線 */
.entry_guidelines h3::after {
    top: 130%; /* h3の直下 */
    transform: translateX(-50%);
    width: 1px;
    height: 30px; /* 縦線の長さ */
    background-color: #999; /* 色はお好みで */
  }
}
/*---------開催概要--------*/
.overview {
  width: 60%;
  margin: 0 auto;
}
.overview h3 {
  position: relative;
  text-align: center;
  margin-bottom: 130px;
}
/* 縦線 */
.overview h3::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 220%; /* h3の直下 */
  transform: translateX(-50%);
  width: 1px;
  height: 50px; /* 縦線の長さ */
  background-color: #999; /* 色はお好みで */
}
.info_table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(201,162,74,0.28);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.info_table td{
  padding: 18px 22px;
  font-size: 15px;
  line-height: 1.9;
  vertical-align: top;
}
/* 左列（ラベル） */
.info_table td:first-child{
  width: 28%;
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(20, 25, 30, 0.85);
  background: linear-gradient(
    180deg,
    rgba(201,162,74,0.10),
    rgba(201,162,74,0.03)
  );
  border-right: 1px solid rgba(201,162,74,0.18);
}
/* 右列（内容） */
.info_table td:last-child{
  color: rgba(20, 25, 30, 0.78);
}
/* 行の区切り */
.info_table tr:not(:last-child) td{
  border-bottom: 1px solid rgba(201,162,74,0.14);
}
.info_table td em,
.info_table td small{
  color: rgba(20,25,30,0.62);
}
@media (max-width: 1180px) {
  .overview {
    width: 100%;
    margin: 0;
    padding: 0 15px;
  }
  .info_table td{
    display: block;
    width: 100%;
    padding: 14px 16px;
  }
  .info_table td:first-child{
    width: 100%;
    white-space: normal;
    border-right: none;
    border-bottom: 1px solid rgba(201,162,74,0.14);
  }
  .info_table tr:not(:last-child) td:last-child{
    border-bottom: 1px solid rgba(201,162,74,0.14);
  }
}
@media (max-width: 900px) {
  .overview h3 {
    font-size: 16px;
    position: relative;
    text-align: center;
    margin-bottom: 70px;
  }
  /* 縦線 */
  .overview h3::after {
    top: 160%; /* h3の直下 */
    transform: translateX(-50%);
    width: 1px;
    height: 30px; /* 縦線の長さ */
    background-color: #999; /* 色はお好みで */
  }
}
/*---------フッター--------*/
.copyright {
  text-align: center;
  font-size: 12px;
  padding: 30px 0;
}
/*---------エントリーフォームページ-------*/
.form-row {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.form-label {
  display: inline-flex;
  width:100px;   /* ←ここが揃うポイント */
  flex-shrink: 0;
}
.form-input {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.small-input {
  width: 100px !important;
}
.entry-content form {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 50px 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.entry-content label, .why {
  display: block;
  font-size: 14px;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  color: #333;
}
.entry-content input[type="text"],
.entry-content input[type="email"],
.entry-content input[type="tel"],
.entry-content input[type="date"],
.entry-content textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #fafafa;
  transition: all 0.3s ease;
}
.entry-content input:focus,
.entry-content textarea:focus {
  outline: none;
  border-color: #91d2e3; /* ミスアースカラー */
  background: #fff;
}
.entry-content textarea {
  min-height: 160px;
  line-height: 1.8;
}
.entry-content input[type="file"] {
  font-size: 14px;
}
.entry-content input[type="submit"] {
  display: block;
  width: 100%;
  margin-top: 40px;
  padding: 16px 0;
  background: #869dadff;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.12em;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.entry-content input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.wpcf7-not-valid-tip {
  font-size: 12px;
  color: #c55;
  margin-top: 6px;
}
.entry-title {
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.12em;
  text-align: center;
  margin: 70px 0 30px;
}
.agreement_text {
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid #ddd;
  background: #fafafa;
  font-size: 14px;
  line-height: 1.7;
}
.agreement_text ol {
  padding-left: 1.4em;
}
.wpcf7-list-item-label {
  font-size: 14px;
  letter-spacing: 0.05em;
}
/* 都道府県 select */
.entry-content select {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  border-radius: 6px;
  border: 1px solid #ddd;
  background-color: #fafafa;
  color: #333;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
label.required::before {
  content: "*";
  margin-left: 6px;
  color: #e39591ff;
  font-size: 18px;
  vertical-align: middle;
}
/* 説明文 */
label .explain {
  display: block;
  font-size: 12px;
  line-height: 1.6;
  color: #999;   /* 薄いグレー */
  letter-spacing: 0.02em;
}
.entry-content label br {
  display: none;
}
.entry_headtitle {
  margin: 30px 0 13px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #144149;
}
.entry_firstheadtitle {
  margin: 0 0 13px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #144149;
}
@media (max-width: 768px) {
  .entry-title {
    font-size: 20px;
    margin: 70px 0 5px;
  }
  .entry_firstheadtitle {
    margin: 0 0 13px;
  }
  
  .entry-content form {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
}