html {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    color: #444444;
}

.header {
    width: 100vw;
    height: 55px;
}
.header__logo {
    display: inline-block;
    margin: 10px 0 8px 12px;
}
.header__logoImage {
    height: 40px;
}

.firstview {
    max-width: 767px;
    margin: 0 auto;
}
.firstview__img {
    width: 100%;
}

.title {
    font-size: 32px;
    text-align: center;
    background-repeat: no-repeat;
    background-position-y: 40px;
    padding-top: 60px;
}
.about {
    background-color: #FBF8F3;
}
.about__title{
    background-image: url(../images/about.svg);
    background-position-x: calc(50% - 70px);
}
.about__info {
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(119, 119, 119, 0.08);
    border-radius: 8px;
    padding: 24px 16px;
    margin: 22px 8px 0;
}
.aboutInfo__title {
    color: #FFFFFF;
    line-height: 30px;
    font-weight: 700;
    font-size: 16px;
    width: 123px;
    height: 30px;
    background-image: url(../images/postit.svg);
    background-repeat: no-repeat;
    background-size: 123px 30px;
    padding-left: 31px;
}
.aboutInfo__title:not(:first-child) {
    margin-top: 32px;
}
.aboutInfo__title--bold {
    font-weight: 700;
    font-size: 16px;
    margin-top: 8px;
}
.aboutInfo__desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    margin-top: 12px;
}
.aboutInfo__unorderlist {
    margin-top: 8px;
    margin-left: 16px;
}
.unorderlist__item {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
}
.unorderlist__item::before {
    content: "・";
    margin-left: -16px;
}
.aboutInfo__orderlist {
    margin-top: 8px;
}
.orderlist__item {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
}
.aboutInfo__annotation {
    font-weight: 400;
    font-size: 12px;
    margin-top: 12px;
}

.speaker {
    margin: 28px 24px 80px;
}
.speaker__title{
    background-image: url(../images/speaker.svg);
    background-position-x: calc(50% - 50px);

}
.speaker__img {
    display: block;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    margin: 22px auto 0;
}
.speaker__position {
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #E99B04;
    text-align: center;
    margin-top: 12px;
}
.speaker__name--small {
    display: block;
    font-size: 11px;
    line-height: 16px;
    color: #E99B04;
    text-align: center;
    margin-top: 8px;
    padding-right: 24px;
}
.speaker__name {
    display: block;
    font-weight: 500;
    font-size: 20px;
    line-height: 29px;
    color: #E99B04;
    text-align: center;
}
.speaker__desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    margin-top: 24px;
}

.button {
    display: block;
    width: 256px;
    text-align: center;
    color: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 45px;
    border: 2px solid #FFFFFF;
    margin: 0 auto;
    padding: 16px 0;
}
.reservation {
    background-image: url(../images/conversion-bg.webp);
    background-color: #FBF8F3;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    padding: 48px 0;
}
.reservation__message {
    position: relative;
    color: #555555;
    text-align: center;
    font-weight: 500;
}
.reservation__message::after {
    position: absolute;
    content: url(../images/arrows.svg);
    top: 32px;
    right: 0;
    left: 0;
}
.reservation__link {
    background: linear-gradient(272.4deg, #E99B04 8.76%, #FFCB67 90.68%);
    margin-top: 48px;
}

.footer {
    width: 100vw;
    background-color: #999A9B;
    padding: 16px;
}
.footer__linkList {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding-top: 35px;
}
.footer__link {
    color: #ffffff;
    font-size: 15px;
}

.copylight {
    display: block;
    color: #ffffff;
    font-size: 12px;
    margin-top: 44px;
    text-align: center;
}