@charset "utf-8";


/* 全体設定 */
body {
    font-family: 'Noto Serif Jp' serif;
    font-size: 12px;
    color: #333;
    line-height: 200%;
}

img {
    max-width: 100%;
    height: auto;
}

/* header */
header {
    margin-bottom: 150px;
}

header h1 {
    background-image: url(../images/eyecatch.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    max-width: 100%;
    height: 90vh;
    font-family: 'yesteryear';
    font-size: 36px;
    text-align: center;
    padding-top: 95px;
    line-height: 200%;
}

header h1 .h1text,
header h1 .h148px {
    background-image: url(../images/gold.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-clip: text;
    color: transparent;
}

header h1 .h148px {
    font-size: 48px;
}

/* ハンバーガーメニュー */
@media ( width < 768px ){
.menu-wrapper {
  position: relative;
}

.menu-icon {
  width: 40px;
  height: 30px;
  position: fixed; /* ← fixedにして常に左上固定 */
  top: 20px;
  left: 20px;
  cursor: pointer;
  z-index: 3;
  display: inline-block;
}

.menu-icon span {
  display: block;
  height: 4px;
  margin: 6px 0;
  /* background: #333; */
  border-radius: 2px;
  transition: 0.4s;
  background-image: url(../images/gold.jpg);
  background-position: center center;
}

/* ハンバーガーがXに変形 */
#menu-toggle:checked + .menu-icon span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
#menu-toggle:checked + .menu-icon span:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked + .menu-icon span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* オーバーレイ背景 */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  z-index: 1;
}

#menu-toggle:checked ~ .overlay {
  opacity: 1;
  pointer-events: auto;
}

/* メニュー本体（左から出す） */
.menu {
  position: fixed;
  top: 0;
  left: -250px; /* ← 初期位置を左へ */
  width: 250px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 8px rgba(0,0,0,0.2);
  transition: left 0.4s ease;
  z-index: 2;
}

#menu-toggle:checked ~ .menu {
  left: 0; /* ← 開いたときは左0へ */
}

.menu ul {
  list-style: none;
  padding: 60px 20px;
}

.menu li {
  margin: 20px 0;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.menu a:hover {
  color: #007bff;
}
}
/* main */
main section {
    margin-bottom: 120px;
    padding: 1rem;
}

main section h2 {
    font-family: 'Bellefair';
    font-size: 24px;
    letter-spacing: 0.2rem;
    text-align: center;
    margin-bottom: 57px;
}

/* Message */
#Message {
    position: relative;
}

#Message span {
    background-color: #fff;
    padding: 0 0.5rem;
}

#Message::before {
    content: '';
    background-image: url(../images/plant.web1.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: block;
    position: absolute;
    left: 0px;
    top: -78px;
    width: 94px;
    height: 252px;
    z-index: -1;
}

#Message::after {
    content: '';
    background-image: url(../images/plant.web2.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: block;
    position: absolute;
    right: 0px;
    top: -74px;
    width: 130px;
    height: 204px;
    z-index: -1;
}

.messageSec p {
    background-color: #fff;
    text-align: center;
    max-width: 360px;
    margin: 0 auto;
    border-radius: 79.5px;
}

/* Events */
.eventsSec {
    max-width: 650px;
    margin: 120px auto;
}

.eventsSec .eventImg {
    max-width: 500px;
    margin: 0 auto;
    padding: 1rem;
}

.eventsSec img {
    aspect-ratio: 16/15;
    object-fit: cover;
}

.eventsSec .eventDate {
    font-size: 20px;
}

.eventsSec .eventDate .date {
    font-size: 32px;
}

.eventsSec .eventDate .time {
    font-size: 24px;
    display: block;
    text-align: right;
}

.eventsSec .eventDate {
    position: relative;
    z-index: 1;
    background-color: #fff;
    width: 242px;
    padding: 1rem;
    margin-top: -65px;
    margin-bottom: 30px;
}

.eventsSec .eventAdress {
    text-align: center;
}

.eventsSec .eventAdress .hotel {
    position: relative;
    font-size: 20px;
    margin-bottom: 40px;
}

.eventsSec .eventAdress .hotelName {
    background-color: #fff;
}

.eventsSec .eventAdress .hotel::before {
    content: '';
    background-image: url(../images/flower.web1.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: block;
    position: absolute;
    left: -10px;
    top: -15px;
    width: 81px;
    height: 86px;
    z-index: -1;
}

.eventsSec .eventAdress .hotel::after {
    content: '';
    background-image: url(../images/flower.web2.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: block;
    position: absolute;
    right: 0px;
    top: -15px;
    width: 75px;
    height: 86px;
    z-index: -1;
}

.eventsSec .eventAdress .addressDetail {
    margin: 0 auto 28px;
    text-align: left;
    width: 200px;
    padding-left: 3rem;
    position: relative;
}

.eventsSec .eventAdress .addressDetail::before {
    content: '';
    background-image: url(../images/map.web.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: block;
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
}

.eventsSec .eventAdress .station {
    position: relative;
    display: inline;
}

.eventsSec .eventAdress .station::before {
    content: '';
    background-image: url(../images/station.web.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: block;
    position: absolute;
    left: -3rem;
    top: 0;
    width: 25px;
    height: 25px;
}

/* RSVP */
.formSec .formText {
    text-align: center;
}

.formSec .formText .text1 {
    margin-bottom: 2rem;
}

.formSec .formText .text2 {
    margin-bottom: 4rem;
}


.formSec form {
    max-width: 300px;
    margin: 0 auto;
}

input[type='text'],
input[type='email'],
textarea {
    border: 1px solid #333;
    background-color: #d9d9d9;
    width: 100%;
    margin-bottom: 0.5rem;
    padding: 0.2rem 0.5rem;
}

.attendCheck {
    text-align: center;
    margin-bottom: 3rem;
}

textarea {
    height: 100px;
    margin-bottom: 3rem;
    resize: none;
}

.submitBtn {
    text-align: center;
}

input[type='submit'] {
    color: #fff;
    background-color: #333;
    padding: 0.5rem 2rem;
}

.attendCheck label {
    cursor: pointer;
    display: inline-block;
    padding: 10px;
    margin: 0 20px;
    width: 50px;
    height: 57px;
}

.attendCheck input[type='radio']:checked+label {
    background-image: url(../images/marker.web.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

/* footer */
footer {
    background-color: #50A756;
    padding: 0.5rem;
    text-align: center;
}

/* ブレイクポイント768px */
@media (width >=768px) {

    /* body設定 */
    body {
        font-size: 16px;
    }

    /* header設定 */
    header h1,
    header h1 .h148px {
        font-size: 96px;
    }

    header h1 {
        line-height: 100%;
        text-align: left;
        padding-left: 10%;
    }

    header h1 .h148px {
        padding-left: 8rem;
    }

    /* nav */
    /* .menuOnlyMob {
        display: none;
    } */

    header nav ul{
        display: flex;
        justify-content: space-evenly;
        font-size: 20px;
    }

    /* main設定 */
    /* main section {
        padding: 2rem;
    } */

    main section h2 {
        font-size: 40px;
    }

    .onlyMob {
        display: none;
    }


    /* message */
    .messageSec p {
        max-width: 540px;
    }

    #Message::before {
        width: 163px;
        height: 431px;
    }

    #Message::after {
        width: 276px;
        height: 431px;
        right: -10px;
    }

    /* evets */
    .eventsSec {
        max-width: 1200px;
    }

    .eventsSec .eventImg {
        max-width: 600px;
        padding: 0;
    }

    .eventsSec img {
        aspect-ratio: 6/7;
    }

    .eventWeb {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-bottom: 150px;
    }

    .eventsSec .eventDate {
        font-size: 48px;
        line-height: 200%;
        align-self: flex-end;
        margin-left: -100px;
        margin-bottom: -80px;
        width: 500px;
    }

    .eventsSec .eventDate .date {
        font-size: 96px;
    }

    .eventsSec .eventDate .time {
        font-size: 64px;
    }

    .eventsSec .eventAdress .hotel {
        font-size: 40px;
        margin-bottom: 100px;
    }

    .eventsSec .eventAdress .hotel::before {
        width: 219px;
        height: 231px;
        top: -71px;
    }

    .eventsSec .eventAdress .hotel::after {
        width: 203px;
        height: 231px;
        top: -71px;
    }

    .eventsSec .eventAdress .addressDetail,
    .eventsSec .eventAdress .station {
        font-size: 16px;
    }

    .eventsSec .eventAdress .addressDetail {
        width: 250px;
    }

    .eventsSec .eventAdress .addressDetail::before {
        left: 5px;
    }

    /* RSVP */
    .formSec form {
        max-width: 1000px;
    }
    .attendCheck {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .attendCheck label[for='attend_yes'] {
        grid-column: 1/2;
        grid-row: 1/2;
        margin: 0 auto;
    }
    .attendCheck label[for='attend_no'] {
        grid-column: 2/3;
        grid-row: 1/2;
        margin: 0 auto;
    } 
    .attendCheck label {
        display: block;
        font-size: 36px;
        width: 156px;
        height: 178px;
        padding-top: 40px;
    }

    .formSec form .attendWeb {
        max-width: 700px;
        margin: 3rem auto;
    }

    .formSec form .attendWeb p {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        margin-bottom: 10px;
    }
}