
.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", sans-serif;
  font-style: normal;
  font-weight: 400;
}

.zen-maru-gothic-bold {
  font-family: "Zen Maru Gothic", sans-serif;
  font-style: normal;
  font-weight: 700;
}

.zen-maru-gothic-black {
  font-family: "Zen Maru Gothic", sans-serif;
  font-style: normal;
  font-weight: 900;
}
:root {
  --white: #fff;
  --black: #333;
  --blue: #007ea8;
  --ylw: #c29900;
  --red: #c2255c;
  --green: #2b8a3e;
}
body{
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
}
h3 {
    border-left: none;
}
p {
    font-size: 18px;
}
a {
    
}
a, a:link {
    color: initial;
    text-decoration: none;
    word-wrap: break-word;
    word-break: break-word;
    transition: opacity ease-in-out 0.25s;
}
.wrapper {
    overflow: hidden;
    background: url(/Portals/0/toshimakun/image/garland_l.png) no-repeat top left,url(/Portals/0/toshimakun/image/garland_r.png) no-repeat top right;
}
.inner{
    margin: auto;
    max-width: 1000px;
    padding: 0 20px;
}
.mt_80{
    margin-top: 80px;
}
.pc_none {display: none;}
/* ボタン */
.sec_btn {
    margin-top: 80px;
    text-align: center;
}
.sec_btn_link {
    background:var(--black);
    border-radius:100px;
    color: var(--white)!important;
    display: inline-block;
    margin: 0 auto;
    padding: 20px 40px;
    position: relative;
    text-align: center;
    text-decoration: none;
}
.sec_btn_link::after {
    border-bottom: 2px solid var(--white);
    border-right: 2px solid var(--white);
    content: "";
    display: block;
    height: 12px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: rotate(-45deg) translate(0,-50%);
    width: 12px;
}
/* クラッカー */
.cracker {
    bottom: 20px;
    position: fixed;
    right: 20px;
}
.cracker p:nth-of-type(2) {
    font-size: 1em;
    font-weight: 600;
    text-align: center;
}
.cracker_conta {
    color: var(--white);
    font-weight: 600;
    margin-top: -60px;
    padding-left: 10px;
    text-align: center;
}
/* ハンバーガー */
* {
  scroll-behavior: smooth;
}
#menuToggle
{
  display: block;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color: #232323;
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: tomato;
}

#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #cdcdcd;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  max-width: 400px;
  width: 100vw;
  max-height: 100vh;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  box-sizing: border-box;
  overflow-y: auto;
  background: #ededed;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  border-bottom-right-radius: 100px;
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
}

#menu li label
{
  cursor: pointer;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
}
/* セクション */
.wrapper section {
    margin-left: -100px;
    margin-right: -100px;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 25vw;
    position: relative;
}
.wrapper section::before {
    border-top-left-radius: 600px 400px;
    border-top-right-radius: 600px 400px;
    content: "";
    height: 40vw;
    margin: 16px -10vw;
    position: absolute;
    top: -22vw;
    width: 120vw;
}
section#event,section#event::before {
    background: var(--blue);
}
section#msg,section#msg::before {
    background: var(--ylw);
}
section#std,section#std::before {
    background: var(--red);
    padding-bottom: 0;
}
section#prof,section#prof::before {
    background: var(--green);
    padding-bottom: 80px;
}

/* MV */
.mv_box {
    height: 30vh;
    position: relative;
}
.top_img img {
    animation: swing 3s ease-in-out infinite;
    max-width: 140px;
    position: absolute;
}
.top_img img:first-child {
    left: -30px;
    top: 0;
}
.top_img img:nth-child(2) {
    animation-duration: 2.5s;
    right: -30px;
    top: 0;
}
.top_img img:last-child {
    animation-delay: .4s;
    bottom: 0;
    left: calc(50% - 70px);
}
.mv_ttl {
    font-size: 2.8em;
    position: relative;
    text-align: center;
}
.mv_ttl::before {
    content: url(/Portals/0/toshimakun/image/20_candle.png);
    left: 50%;
    position: absolute;
    top: -60%;
    transform: translate(-50%,0);
}
.mv_sub{
    margin-bottom: 25vw;
}
.mv_sub_ttl strong {
    background: linear-gradient(to top,#f2ea7f 50%, transparent 50%);
    font-size: 1.6em;
    line-height: 2;
    white-space: nowrap;
}
.mv_sub_txt {
    margin-top: 40px;
}
.mv_logo {
    display: flex;
    justify-content: center;
    margin-top: 80px;
    padding-bottom: 120px;
}
.mv_logo img {
    width: 100%;
}

/* タイトル上の装飾 */
.sec_ttl_img {
    align-items: center;
    display: flex;
    gap: 30px;
    justify-content: center;
}
.sec_ttl_img img {
    animation: swing 3s ease-in-out infinite;
    max-height: 120px;
    max-width: 120px;
}
.sec_ttl_img._s img {
    max-height: 100px;
    max-width: 60px;
}
/* .sec_ttl_img img:first-child {
    animation-delay: .2s;
} */
.sec_ttl_img img:nth-child(2) {
    animation-delay: .4s;
}
.sec_ttl_img img:last-child {
    animation-duration: 2.5s;
}

/* タイトル */
.sec_ttl {
    border-bottom: 3px solid var(--white);
    border-top: 3px solid var(--white);
    color: var(--white);
    margin: 40px auto 0;
    max-width: 500px;
    padding: 1em .2em;
    text-align: center;
}
.sec_ttl + p {
    color: var(--white);
    margin-top: 40px;
}
/* イベント */
.date_table {
    background:var(--white);
    border-top-right-radius:100px;
    font-size: 18px;
    margin-top: 40px;
    padding: .5em 30px;
}
.date_table div {
    padding: 1em 0;
}
.date_table div + div {
    border-top: 2px solid var(--blue);
}
.date_table dt {
    font-weight: 600;
}
.event_info{
    border-bottom: 1px solid var(--white);
    border-top: 1px solid var(--white);
    color: var(--white);
    font-size: 18px;
}
.event_info dt{
    font-weight: 600;
    margin-top: 10px;
}
/* メッセージ */
.sec_subttl {
    color: var(--white);
    font-size: 1.4em;
    text-align: center;
    position: relative;
}
.sec_subttl._black {
    color: var(--black);
}
.msg_card {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}
/* メッセージの説明表示 */
.msg_card details {
    overflow: hidden;
}
.msg_card summary {
    align-items: center;
    background:var(--white);
    border-top-right-radius:100px;
    border-bottom-left-radius:100px;
    cursor: pointer;
    display: flex;
    font-weight: bold;
    font-size: 1.4em;
    height: 280px;
    justify-content: center;
    list-style: none;
    padding: 1em;
    position: relative;
    text-align: center;
    transition: background-color 0.3s ease;
    user-select: none;
}
.msg_card summary::after {
    border-bottom: 2px solid var(--white);
    border-right: 2px solid var(--white);
    bottom: 45px;
    content: "";
    display: block;
    height: 20px;
    position: absolute;
    right: 40px;
    transform: rotate(45deg);
    width: 20px;
}
.msg_card summary::before {
    background: var(--black);
    border-radius: 50%;
    bottom: 20px;
    content: "";
    display: block;
    height: 60px;
    position: absolute;
    right: 20px;
    width: 60px;
}

.msg_card summary:hover {
  background-color: #e8e8e8;
}

.msg_card details[open] summary {
  background-color: #fcedce;
}

.msg_card details > p {
    background-color: #fafafa;
    border-radius: 40px;
    border-top: 1px solid #ddd;
    margin-top: 40px;
    padding: 20px 40px;
    position: relative;
}
.msg_card details > p::before {
    border: 20px solid transparent;
    border-bottom: 20px solid #fafafa;
    content: "";
    left: 45%;
    position: absolute;
    top: -40px;
}
/* まちがい探し */
.std_img {
    display: flex;
    gap: 20px;
}
.std_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.star_list {
    list-style: none;
    padding: 0;
    font-size: 18px;
}
.star_list li::before {
    content: "★";
    display: inline-block;
    color: var(--ylw);
    margin-right: 8px;
}
/* :target で モーダル を表示 */
.modal:target {
  display: block;
}

.modal-content {
    background-color: #fff;
    border: 1px solid #888;
    border-radius: 8px;
    height: 100vh;
    padding: 20px;
    overflow: scroll;
    width: 100%;
}

.close {
  color: var(--white);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
}

.close:hover,
.close:focus {
  color: black;
}
.thumb {
  width: 120px;
  cursor: pointer;
  border-radius: 4px;
}

.img-view {
  padding: 0;
  background: none;
  border: none;
}

.large {
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.std_present {
    border-top: 3px solid var(--red);
    border-bottom: 3px solid var(--red);
    margin-top: 60px;
    padding: .5em 20px;
}
.std_present h3 {
    text-align: center;
}
.std_present p {
    font-size: 18px;
    text-align: right;
}
/* プロフィール */
.prof_table {
    background:var(--white);
    border-top-right-radius:100px;
    border-bottom-left-radius:100px;
    font-size: 18px;
    padding: .5em 20px;
}
.prof_table > table {
    border: none!important;
    width: 100%;
}
.prof_table th,.prof_table td {
    border: none!important;
    padding: 16px 0;
}
.prof_table tr + tr {
    border-top: 2px solid var(--green);
}
.prof_table th {
    text-align: left;
    width: 22%;
    white-space: nowrap;
}

/* namianime */
.bg-w {
	background-color:var(--white);
    margin-top: -40px;
    padding-bottom: 25vw;
}
.wave {
	background-color:var(--white);
	height:150px;
	margin:0 auto;
	overflow:hidden;
	width:100%;
}
.wave svg path {
    fill:var(--red);
    animation:wave linear 6s infinite;
}

@media screen and (min-width: 600px) {
#menuToggle {
  top: 50px;
  left: 50px;
}
.wrapper section {
    padding-bottom: 20vw;
}
.wrapper section::before {
    border-top-left-radius: 1000px 300px;
    border-top-right-radius: 1000px 300px;
    height: 20vw;
    margin: 16px -10vw;
    top: -12vw;
}
.sec_btn_link {
    padding: 20px 80px;
}
.mv_box {
    height: 40vh;
}
.top_img img {
    max-width: 260px;
}
.top_img img:first-child {
    left: 0;
    top: -80px;
}
.top_img img:nth-child(2) {
    right: 0;
    top: -80px;
}
.top_img img:last-child {
    bottom: 0;
    left: calc(50% - 100px);
}
.mv_ttl {
    font-size: 3.5em;
}
.mv_ttl::before {
    top: -80px;
}
.mv_sub {
    display: flex;
    gap: 1em;
    justify-content: space-between;
}
.mv_sub_ttl strong {
    font-size: 1.8em;
}
.mv_sub_txt {
    margin-top: 80px;
    width: 55%;
}
.mv_logo {
    width: 50%;
    margin: 100px auto 0;
}

/* タイトル上装飾 */
.sec_ttl_img img {
    max-width: 180px;
}
/* タイトル */
.sec_ttl {
    padding: 1em;
}
/* イベント */
.date_table {
    padding: 1em 100px;
}
.date_table div {
    display: flex;
    gap: 20px;
}
.date_table dt {
    white-space: nowrap;
    width: 25vw;
}
.date_table dd {
    width: 70vw;
}
.sec_subttl::before,
.sec_subttl::after {
    background-color: var(--white);
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    top: 50%;
    width: calc(50vw - 40%);
}
.sec_subttl::after {
    right: 0;
}
.sec_subttl._black::before,
.sec_subttl._black::after {
    background-color: var(--black);
}

details {
    width: calc(100%/3);
}
/* namianime */
.std_present {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    padding: 1em 100px;
}
/* プロフィール */
.prof_table {
    padding: 1em 100px;
}
}
@media screen and (min-width: 960px) {
    .inner{
        padding: 0;
    }
    .sec_subttl::before,
    .sec_subttl::after {
        width: 250px;
    }
}
@media screen and (max-width: 599px) {
.wrapper {
    background-size: 40%,40%;
}
.msg_card {
    flex-direction: column;
}
}

@keyframes swing {
    20% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(-10deg);
    }
    60% {
        transform: rotate(5deg);
    }
    80% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
@keyframes wave {
	from {
		transform:translate(0);
	}
	to {
		transform:translate(-66.66%);
	}
}