@charset "UTF-8";
:root {
  --bg: #d3272c;
}

* {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4 {
  font-weight: normal;
}
a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.button {
  border-radius: 100vh;
  line-height: 3;
  margin: 2em 0;
  font-weight: bold;
  text-align: center;
}

body {
  font-family: "Helvetica Neue", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  color: #444;
  font-style: normal;
  max-width: 768px;
  margin: 0 auto;
  background: #eee;
  font-feature-settings: "palt";
  font-size: 18px;
  line-height: 1.7;
}
.mincho {
  font-family: "a-otf-ryumin-pr6n", serif;
}
.honbun p {
  text-align: justify;
  font-feature-settings: normal;
  margin-bottom: 0.5em;
}

main {
  background-color: white;
  text-align: center;
}
#visual,
#schedule {
  background-color: var(--bg);
}
#visual {
  height: 100dvh;
}
#greeting,
#attendance,
#secretary {
  padding: 14% 7%;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* 　　　　　　　　ヘッダー　　　　　　　 */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

header {
  position: fixed;
  z-index: 11;
  max-width: 768px;
  box-shadow: 0 5px 5px 0px #959595;
  width: 100%;
  height: 50px;
  background: var(--bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header img.leftLogo {
  width: 58px;
  padding-left: 15px;
  display: block;
}
header img.ctrLogo {
  width: 100px;
  transform: translateX(-9%);
}

.fadeIn_h {
  animation-name: fadeIn_h;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-fill-mode: backwards;
  /* background-color: white; */
  animation-delay: 2s;
}
@keyframes fadeIn_h {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  80% {
    transform: translateY(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* 　　　　　　ハンバーガー　　　　　　　 */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
#drawer-checkbox {
  display: none;
}
#drawer-icon {
  cursor: pointer;
  display: inline-block;
  height: 50px;
  position: relative;
  width: 50px;
  z-index: 12;
}
#drawer-icon span {
  background: #fff;
  /* border-radius: 4px; */
  display: block;
  height: 4%;
  left: 50%;
  margin: -2% 0 0 -54%;
  position: absolute;
  top: 50%;
  transition: all 0.3s ease-in-out;
  width: 84%;
}
#drawer-icon span::before,
#drawer-icon span::after {
  -webkit-transform: rotate(0);
  background: #fff;
  /* border-radius: 4px; */
  content: "";
  display: block;
  height: 100%;
  left: 50%;
  margin: -8% 0 0 -50%;
  position: absolute;
  top: 50%;
  transform: rotate(0);
  transition: all 0.3s ease-in-out;
  width: 100%;
}
#drawer-icon span::before {
  margin-top: -28%;
}
#drawer-icon span::after {
  margin-top: 22%;
}
#drawer-checkbox:checked ~ #drawer-icon span {
  background: rgba(51, 51, 51, 0);
}
#drawer-checkbox:checked ~ #drawer-icon span::before,
#drawer-checkbox:checked ~ #drawer-icon span::after {
  content: "";
  display: block;
  height: 100%;
  left: 50%;
  margin: -8% 0 0 -42%;
  position: absolute;
  top: 50%;
  width: 100%;
}
#drawer-checkbox:checked ~ #drawer-icon span::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#drawer-checkbox:checked ~ #drawer-icon span::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#drawer-content {
  overflow: auto;
  position: fixed;
  top: 0;
  /* left: 0; */
  z-index: 40;
  width: 100%;
  max-width: 768px;
  /* height: 100%; */
  background: #fff;
  transition: all 0.3s ease-in-out 0s;
  transform: translateY(-100%);
  text-align: center;
}
#drawer-content .current {
  background: #ccc;
}
#drawer-content ul li a {
  display: block;
}
#drawer-content li:not(.current):hover {
  background: var(--bg);
  color: white;
}
#drawer-content li.expenses:hover {
  color: inherit;
}
#drawer-checkbox:checked ~ #drawer-content {
  transform: translateY(50px);
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
}

#drawer-close {
  display: none;
  position: fixed;
  z-index: 39;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
}
#drawer-checkbox:checked ~ #drawer-close {
  display: block;
  opacity: 0.3;
}
nav ul li {
  height: 43px;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  font-feature-settings: initial;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* 　　ここまでヘッダーハンバーガー　　　 */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* 　　　　　　　　フッター　　　　　　　 */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
footer {
  font-size: 9pt;
}
.footer-mail {
  background-color: #f07f82;
  text-align: center;
  font-size: 1.5em;
}
.footer-mail a {
  padding: 1.6em;
  display: block;
  font-feature-settings: normal;
  color: #fff;
}
.footer-mail a:hover,
.footer-mail a:focus {
  background-color: #ccc;
  text-decoration: underline;
}
.footer-bottom {
  background-color: var(--bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
  margin-top: 3px;
}
footer a {
  display: inline;
}
footer img {
  width: 25px;
  margin: 3px 3px 0;
}
.footer-bottom_icon a:first-child img {
  width: 22px;
  vertical-align: 1px;
}

/* ーーーーーーーーーーーーーーーーーーー */
/* 最新情報 */
.scroll-container {
  background: #ffe0d9;
  color: var(--bg);
  z-index: 11;
  position: fixed;
  top: 50px;
  height: 26px;
  font-size: 14px;
  overflow: hidden; /* 流れる部分以外を隠す */
  white-space: nowrap;
  width: 100%; /* 必要に応じて調整 */
  max-width: 768px;
}

.scroll-text {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  animation: scroll 14s linear infinite;
  padding-top: 2px;
}
.scroll-text span {
  transform: rotate(45deg);
  transform-origin: center;
  display: inline-block;
}

@keyframes scroll {
  from {
    transform: translateX(100%); /* 初期位置を右端の外側に設定 */
  }
  to {
    transform: translateX(-100%); /* 終了位置を左端の外側に設定 */
  }
}

/* ーーーーーーーーーーーーーーーーーーー */
/* 1.visual 　　　　　           　　 */
/* ーーーーーーーーーーーーーーーーーーー */
#visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  font-size: 112%;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
#visual h1 svg {
  width: 77%;
  margin-bottom: 1.2em;
  max-width: 450px;
  /* margin-top: -1.2em; */
}
#visual h2 img {
  width: 52%;
  max-width: 250px;
}
#visual h3 img {
  width: 44.4%;
  max-width: 213px;
}
#visual h3 {
  font-size: 150%;
  margin-top: 2em;
  /* ↓わかんね */
  transition: all 1s;
  margin-top: 1.5em;
}
#visual h3 p:last-child {
  font-size: 60%;
}
#reloadButton p {
  font-size: 7px;
  color: white;
  font-family: initial;
  margin-top: -1em;
}
#visualWrapper figure {
  position: absolute;
  bottom: 16px;
  width: 100%;
  height: 14px;
  display: flex;
  justify-content: center;
}
/* ーーーーーーーーーーーーーーーーーーー */
@media screen and (orientation: landscape) and (max-width: 1000px) {
  #visual {
    transform: scale(0.5);
  }
  #visual h3 {
    margin-top: 0.7em;
  }
}

/* ーーーーーーーーーーーーーーーーーーー */
/* 2.greeting 　　　　　          　 */
/* ーーーーーーーーーーーーーーーーーーー */
#flag {
  width: 110px;
}
#primary-greeting {
  color: var(--bg);
  font-size: 1.4em;
  line-height: 1.3;
  margin: 0.5em 0 1.9em;
  letter-spacing: 1px;
}
#secondary-greeting {
  border-top: 1px solid var(--bg);
  border-bottom: 1px solid var(--bg);
  padding: 0.5em;
  margin-bottom: 1.5em;
}
#greeting .honbun hr {
  width: 50%;
  border: none;
  margin: 1em auto;
  border-top-style: solid;
  border-width: 1px;
  border-color: var(--bg);
}
#greeting .honbun a {
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-style: dotted;
  text-decoration-color: var(--bg);
}
#greeting .honbun a:hover,
#greeting .honbun a:focus {
  background-color: var(--bg);
  color: #fff;
  transition: all 0.5s;
}
#greeting .honbun h3 {
  color: var(--bg);
  font-size: 1.6em;
  line-height: 3.2;
  letter-spacing: 1px;
}
/* #greeting .honbun {
  margin-bottom: 2.2em;
} */
/* ーーーーーーーーーーーーーーーーーーー */
/* 3.schedule 　　　　　          　 */
/* ーーーーーーーーーーーーーーーーーーー */
#schedule {
  padding: 2em 0;
  color: white;
  font-family: "a-otf-ryumin-pr6n", serif;
  position: relative;
}
#place,
#fee {
  color: #000;
}
#schedule > p:nth-child(1) {
  font-size: 316%;
  line-height: 2;
}
#schedule > p:nth-child(2) {
  font-size: 202px;
  line-height: 0.45;
}
#schedule > p:nth-child(3) {
  font-size: 33px;
  line-height: 4;
}
#schedule > p:nth-child(4) {
  font-size: 21px;
  margin-top: -1em;
}
#schedule > p:nth-child(5) {
  font-size: 71px;
  line-height: 0.8;
}
#schedule > p:nth-child(6) {
  font-size: 14px;
  line-height: 2.2;
  font-feature-settings: "palt";
  letter-spacing: 1px;
  margin-top: 0.3em;
  line-height: 1.3;
}
#schedule > p:nth-child(6) em {
  font-style: normal;
  font-size: 1.1em;
  vertical-align: -0.5px;
}

div.info-detail {
  color: #111;
}
div.info-detail .circle {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: white;
  display: inline-block;
  border-radius: 50%;
  margin: 3em 0 0.2em;
}
#place p:nth-child(2) {
  font-size: 2.7em;
}
#place p:nth-child(2) a {
  text-decoration: underline;
  text-underline-offset: 9px;
  text-decoration-style: dotted;
}
#place p:nth-child(2) a:hover,
#place p:nth-child(2) a:focus {
  text-decoration-color: white;
}
#place p:last-child {
  font-size: 1.7em;
  line-height: 0.7;
}
#fee p:nth-child(2) {
  font-size: 2em;
}
#fee p:nth-child(3) {
  font-size: 0.9em;
}
#fee p:last-child {
  font-size: 1em;
}
/* にゃんにゃんにゃん */
#schedule .container {
  color: #000;
  position: absolute;
  font-size: 68%;
  line-height: 1.2;
  /* left: 49%;
  top: 30%;
  width: 26%;
  height: 35%; */
  text-align: left;
  transform: translate(-50%, -50%) rotate(335deg);
  left: 48%;
  top: 23%;
  width: 30%;
  height: 27%;
}
#schedule .container p:last-child {
  position: absolute;
  left: 36%;
  top: 88%;
  font-size: 50%;
}

/* ーーーーーーーーーーーーーーーーーーー */

#fee-new {
  text-align: left;
  width: 80%;
  margin: -0.5em auto -1.7em;
  padding: 0.8em;
  background: radial-gradient(circle, rgba(255, 255, 249), rgba(244, 241, 162));
  transform: rotate(-4deg);
  box-shadow: 5px 5px 11px 4px #555;
}
#fee-new p,
#fee-new small {
  font-family: sans-serif;
}
.fee-new--title h3 {
  font-size: 3.5em;
  color: var(--bg);
  letter-spacing: 0.01em;
  text-shadow: 2px 2px 8px;
  margin: -0.3em 0 -0.2em -0.1em;
  text-align: center;
}
.fee-new--title em {
  font-style: inherit;
  font-size: 0.3em;
  line-height: 1.1;
  display: inline-block;
  border-top: 1px solid;
  border-bottom: 1px solid;
  padding: 0.2em 0.6em;
  transform: translatey(-7px) rotate(-15deg);
  margin: 0 0.4em 0 0.4em;
  color: initial;
  text-shadow: none;
}
.fee-new--detail {
  background-color: #ffffff80;
  padding: 0.5em 1em;
  font-size: 0.9em;
  line-height: 1.5;
}
.fee-new--detail .dresscode {
  text-align: center;
  font-weight: bold;
  color: var(--bg);
  font-size: 1.1em;
  display: block;
  border: 4px solid var(--bg);
  border-radius: 4px;
  margin: 0.5em 0;
}
.fee-new--detail small {
  font-size: 0.8em;
  margin-bottom: 0.5em;
  display: inline-block;
}

/* ーーーーーーーーーーーーーーーーーーー */
/* 4.attendance 　　　　　       　　 */
/* ーーーーーーーーーーーーーーーーーーー */
#attendance .button {
  border: 2px solid var(--bg);
  color: var(--bg);
}
#attendance .button:focus,
#attendance .button:hover {
  background-color: #d3272c40;
}

/* ーーーーーーーーーーーーーーーーーーー */
/* 5.secretary　　　　　         　　 */
/* ーーーーーーーーーーーーーーーーーーー */
#secretary h3 p:first-child {
  font-size: 0.8em;
}
#secretary .notes {
  text-align: justify;
  font-size: 0.8em;
  margin: 2em 0 5em;
  padding: 1em;
  border: 1px solid #999;
  font-feature-settings: normal;
}
#secretary img {
  width: 33%;
}

/* ＋＋＋＋＋＋＋＋＋＋＋＋＋＋＋＋＋＋＋＋＋＋＋＋＋＋＋＋＋＋＋＋＋＋＋＋＋＋＋＋ */

/* ーーーーーーーーーーーーーーーーーーー */
/* 出欠について／実行委員会　　　　　　　 */
/* ーーーーーーーーーーーーーーーーーーー */
.title {
  color: var(--bg);
  font-size: 20pt;
  line-height: 2;
  text-align: center;
  border-bottom: 1px solid var(--bg);
  margin-bottom: 0.7em;
}
main#shukketsu,
main#kanji {
  padding: 14% 7%;
  text-align: left;
}
#shukketsu .button {
  background-color: var(--bg);
  color: #fff;
  margin-bottom: 4em;
}
.shukketsu-setsumei {
  background: #94949442;
  padding: 5%;
}
#shukketsu img {
  width: 100%;
  margin: 1.5em 0;
  box-shadow: 6px 6px 11px 0px rgba(0, 0, 0, 0.2);
}
#shukketsu .midashi {
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
  margin: 50px 0 10px;
  border-bottom: 1px solid var(--bg);
  color: var(--bg);
  line-height: 1.4;
  padding-bottom: 0.5em;
}
#shukketsu .toiawase a,
#kanji dd a {
  display: inline;
}
#shukketsu .toiawase img {
  box-shadow: none;
  width: 25px;
  margin: -5px 3px;
}
#shukketsu .button:focus,
#shukketsu .button:hover {
  background-color: #d3272cba;
}
#shukketsu small {
  line-height: 1.6;
  display: inline-block;
  margin-top: 1em;
  font-size: 0.8em;
}

#kanji dt {
  font-size: 1.25em;
  margin-top: 1em;
}
#kanji .kakari {
  text-align: right;
  line-height: 2;
  border-bottom: 1px dotted;
  position: absolute;
  top: -2em;
  width: 100%;
  font-size: 0.8em;
}
#kanji .honbun {
  font-size: 0.8em;
  position: relative;
}
#kanji p {
  padding-top: 0.5em;
  line-height: 1.6;
}
