@charset "UTF-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
html {
    scroll-behavior: smooth;
}
/*ロゴヘッダー*/
header {
    width: 100%;
    height: 80px;
    margin: 0 auto;
    position: relative;
    background: #fff;
    overflow: hidden;
}

.logo {
    left: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    max-width: 100px;
}

.brand {
    position: absolute;
    right: 50px;
    width: 118px;
    height: auto;
    vertical-align: middle;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.brand ul li {
    display: inline-block;
    vertical-align: middle;
}

/* フッター */
footer {
    padding: 40px;
}
.copy {
    text-align: center;
    font-size: 0.6em;
    color: rgba(33, 33, 33, 0.8);
}
/* フッター */

body {
    margin: 0;
}

.sp {
    display: none;
}

.pc {
    display: inherit;
}
.anchor-target {
    padding-top: 40px;
    margin-top: -40px;
}
.fix_t {
    position: fixed;
    z-index: 880;
    bottom: 40px;
    right: 40px;
    width: 160px;
    opacity: 0;
    transition: 0.3s;
}
.is-show {
    opacity: 1;
}
/*動き*/
.kv_fadein {
    opacity: 0;
    transform: translateY(20px);
}

.kv_fadein.animate {
    animation: kv_fadein 1s ease forwards;
}

@keyframes kv_fadein {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/**/
/* 新しく追加するふわふわアニメーション */
.kv_fadein.fuwafuwa {
    animation: fuwafuwa 3s ease-in-out infinite alternate;
    opacity: 1;
}

@keyframes fuwafuwa {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    30% {
        transform: translate(0, 0) rotate(2deg);
    }

    70% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(0, 0) rotate(2deg);
    }
}

/**/

.fadein_element {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition:
        opacity 1s,
        visibility 1s,
        transform 1s;
}

.fadein_element_is_fadein {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    left: 0;
    right: 0;
}

/* slidein_shu_right */
.slidein_shu_right {
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    position: relative;
}

.slidein_shu_right_move {
    animation: slidein_shu_right_move 3s 1;
    opacity: 1;
    visibility: visible;
}

@keyframes slidein_shu_right_move {
    0% {
        opacity: 0;
        transform: translateX(1000px);
    }

    60% {
        opacity: 1;
        transform: translateX(0);
    }
}

.c-btn.slide {
}
.c-btn.slide a {
    background: rgba(0, 0, 0, 1);
    color: #fff;
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: 100px;
    padding: 18px 16px 20px 16px;
    font-size: 18px;
    font-weight: 600;
    display: block;
    width: 340px;
    box-sizing: border-box;
}
.c-btn.slide a::after {
    background: rgba(106, 57, 6, 1);
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
}
.c-btn.slide a:hover {
    color: #fff;
    cursor: pointer;
}
.c-btn.slide a:hover::after {
    transform: scale(1, 1);
}

.c-btn1.slide1 {
}
.c-btn1.slide1 a {
    background: rgba(0, 0, 0, 1);
    color: #fff;
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: 100px;
    padding: 18px 16px 20px 16px;
    font-size: 18px;
    font-weight: 600;
    margin: 0 auto 40px;
    display: block;
    max-width: 340px;
    width: 100%;
    box-sizing: border-box;
}
.c-btn1.slide1 a::after {
    background: rgba(106, 57, 6, 1);
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
}
.c-btn1.slide1 a:hover {
    color: #fff;
    cursor: pointer;
}
.c-btn1.slide1 a:hover::after {
    transform: scale(1, 1);
}

.c-btn2.slide2 {
}
.c-btn2.slide2 a {
    background: rgba(106, 57, 6, 1);
    color: #fff;
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: 100px;
    padding: 18px 16px 20px 16px;
    font-size: 18px;
    font-weight: 600;
    display: block;
    max-width: 340px;
    width: 100%;
    box-sizing: border-box;
}
.c-btn2.slide2 a::after {
    background: rgba(0, 0, 0, 1);
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
}
.c-btn2.slide2 a:hover {
    color: #fff;
    cursor: pointer;
}
.c-btn2.slide2 a:hover::after {
    transform: scale(1, 1);
}

.c-btn3.slide3 {
}
.c-btn3.slide3 a {
    background: rgba(147, 97, 52, 1);
    color: #fff;
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: 100px;
    padding: 30px 16px 32px 16px;
    margin: 0 auto;
    font-size: 28px;
    font-weight: 700;
    display: block;
    width: 100%;
    border: 4px solid #663c1d;
    box-sizing: border-box;
}
.c-btn3.slide3 a::after {
    background: rgba(102, 60, 29, 1);
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
}
.c-btn3.slide3 a:hover {
    color: #fff;
    cursor: pointer;
}
.c-btn3.slide3 a:hover::after {
    transform: scale(1, 1);
}

/**/

#endbox {
    display: none;
}

/*共通*/
section#top {
    width: 100%;
    background: #fff4df;
    font-family: "Noto Sans", sans-serif;
    color: #6a3906;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: 1px;
}
.haikei1 {
    background-image: url("../img/haikei2.jpg");
    background-size: 105px 79px;
    background-position: center;
    background-repeat: repeat;
}
.asterisk {
    text-indent: -1em;
    margin-left: 1em;
}

.asterisk::before {
    content: "※";
}

.t-c {
    text-align: center;
}
#top section {
    box-sizing: border-box;
}
/* #top section{} */

#top img {
    margin-top: 0px;
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/*mv kv*/
#top #kv img {
    padding: 0;
    box-sizing: border-box;
    margin: 0 auto;
    text-align: center;
}
.kikan {
    max-width: 1300px;
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
    margin: 0 auto;
}
#nav {
    width: 100%;
    box-sizing: border-box;
    background-color: #946134;
    padding: 20px;
}
#nav ul {
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1300px;
    width: 100%;
    align-items: center;
}
#nav ul li {
    box-sizing: border-box;
    width: calc(100% / 5);
    display: flex;
    border-right: 1px solid #fff;
    padding: 0px 10px;
    justify-content: center;
    align-items: center;
}
#nav ul li:first-child {
    border-left: 1px solid #fff;
}

#nav ul li:hover a {
    opacity: 0.6;
}
#nav ul li a {
    width: 100%;
    line-height: 0;
    padding: 10px 10px;
}
@media screen and (max-width: 840px) {
    #nav ul {
        flex-wrap: wrap;
        justify-content: center;
        padding: 12px 0px;
    }
    #nav ul li {
        width: calc(100% / 5);
        display: flex;
        border-left: 1px solid #fff;
        padding: 8px 0px;
        justify-content: center;
        align-items: center;
    }
}

@media screen and (max-width: 768px) {
    #top #nav {
        width: 100%;
        background-repeat: no-repeat;
        padding: 0 10px;
        margin-top: 0px;
    }

    #nav ul {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 8px;
    }

    #nav ul li {
        width: 50%;
        display: flex;
        border-left: 0px solid #fff;
        border-right: 0px solid #fff;
        border-bottom: 1px solid #fff;
        padding: 10px 0px;
        margin: 0px 0;
        justify-content: center;
        align-items: center;
    }

    #nav ul li:first-child {
        border-left: 0px solid #fff;
    }
    #nav ul li a {
        padding: 10px;
        flex-grow: 1;
        border-right: 1px solid #fff;
    }

    #nav ul li:nth-child(2n + 1) a {
        border-left: 1px solid #fff;
    }

    #nav ul li:last-child {
        width: 100%;
        border-bottom: 0px solid #fff;
        text-align: center;
    }

    #nav ul li:last-child a img {
        width: 46%;
    }
}

/*about*/
#about {
    max-width: 1300px;
    width: 100%;
    padding: 60px 20px;
    box-sizing: border-box;
    margin: 0 auto;
}
.title {
    max-width: 500px;
    width: 80%;
    box-sizing: border-box;
    margin: 0 auto;
    padding-bottom: 60px;
}
.catch {
    max-width: 800px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    padding-bottom: 60px;
}
.c_movie {
}
.c_movie li {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}
.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    height: 0;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#present {
    width: 100%;
    padding: 80px 20px 60px 20px;
    box-sizing: border-box;
    background-image: url("../img/phaikei1.svg");
    background-size: cover;
    background-position: center;
    color: #6a3906;
}
.main_c {
    max-width: 1400px;
    width: 100%;
    box-sizing: border-box;
    padding: 40px;
    margin: 0 auto;
}
.pret1 {
    width: 100%;
    max-width: 280px;
    margin: -40px auto 0px;
}
.pret2 {
    border-bottom: 1px solid #6a3906;
}
.p_cont {
    width: 100%;
    max-width: 1200px;
    margin: 0px auto 0px;
}

#entry {
    width: 100%;
    padding: 80px 20px 60px 20px;
    box-sizing: border-box;
}
.entry_c {
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
    border-radius: 40px;
    border: 4px solid #6a3906;
    background-color: #fff;
    padding: 60px;
    margin: 0 auto;
}

.sankaku {
    width: 100%;
    max-width: 44px;
    box-sizing: border-box;
    margin: 30px auto;
}
.flex2 {
    flex-flow: row-reverse;
}
.kiyaku {
    height: 380px;
    padding: 20px 30px 20px 20px;
    background-color: #fff;
    width: 100%;
    max-width: 1000px;
    box-sizing: border-box;
    overflow-y: scroll;
    margin: 30px auto;
}
#vote,
#vote_end {
    width: 100%;
    padding: 80px 0px 60px 0px;
    box-sizing: border-box;
}
.vote_c {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #6a3906;
    padding-top: 40px;
}
.v_ab1 {
    position: absolute;
    top: 7%;
    left: 50%;
    transform: translate(-50%, -0%);
    -webkit-transform: translate(-50%, -0%);
    -ms-transform: translate(-50%, -0%);
    width: 50%;
    z-index: 1;
}
.v_ab2 {
    position: absolute;
    bottom: 18%;
    left: 50%;
    transform: translate(-50%, -0%);
    -webkit-transform: translate(-50%, -0%);
    -ms-transform: translate(-50%, -0%);
    width: 55%;
    z-index: 2;
}

.v_ab3 {
    position: absolute;
    bottom: 6%;
    left: 50%;
    transform: translate(-50%, -0%);
    -webkit-transform: translate(-50%, -0%);
    -ms-transform: translate(-50%, -0%);
    width: 42%;
    z-index: 3;
}

.v_ab4 {
    position: absolute;
    bottom: 0%;
    left: 1%;
    width: 30%;
    z-index: 4;
}

.v_ab5 {
    position: absolute;
    bottom: 0%;
    right: 1%;
    width: 30%;
    z-index: 5;
}

.vote_c1 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #bde3f6;
}
.map_c {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #bde3f6;
    border-top: 40px solid #6a3906;
}
.m_title {
    width: 100%;
    max-width: 540px;
    margin: 80px auto 60px;
}
.m_title2 {
    width: 100%;
    max-width: 600px;
    margin: 60px auto 20px;
}
.time1 {
    position: absolute;
    left: 60px;
    top: 0;
    z-index: 10;
}
.time_tx {
    background-position: left center;
    background-image: url("../img/time.svg");
    background-size: 67px 69px;
    background-repeat: no-repeat;
    padding: 20px 80px;
    font-size: 22px;
    letter-spacing: 0.06em;
    line-height: 1.6em;
}
.time2 {
    position: absolute;
    left: 60px;
    top: 120px;
    z-index: 11;
    width: 400px;
}
.map_c1 {
    position: relative;
    width: 100%;
    padding: 60px 80px;
    box-sizing: border-box;
}
.pdo2 {
    padding: 8px;
}
.map_c2 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #bde3f6;
    padding: 20px 32px 60px;
    box-sizing: border-box;
}
.m_boder {
    border-bottom: 40px solid #6a3906;
}

#terms {
    width: 100%;
    padding: 80px 0px 60px 0px;
    box-sizing: border-box;
}
.c_tx1 {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 60px;
}
/*====================================================================
.accordion_one
====================================================================*/
.accordion_one a {
    color: #c0272d;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.accordion_one {
    margin: 0 auto 30px;
}
.accordion_one .accordion_header {
    border-radius: 24px;
    padding: 20px 10% 20px 32px;
    background: #6a3906;
    margin: 16px auto;
    position: relative;
    z-index: +1;
    cursor: pointer;
    transition-duration: 0.2s;
    font-size: 24px;
    text-align: center;
    color: #fff;
    width: 100%;
    box-sizing: border-box;
}

.accordion_one .accordion_header::before,
.accordion_one .accordion_header::after {
    position: absolute;
    content: "";
    top: 1px;
    right: 24px;
    bottom: 0;
    width: 24px;
    height: 2px;
    margin: auto;
    background: #fff;
}
.accordion_one .accordion_header::after {
    transform: rotate(-90deg);
    transition: transform 0.3s;
}
.accordion_one .accordion_header.open::after {
    transform: rotate(0deg);
    transition: transform 0.3s;
}

.accordion_one .accordion_inner {
    display: none;
    box-sizing: border-box;
    margin-top: 20px;
}
.c_cont {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.c_cont2 {
    width: 100%;
    background-color: #fff;
    border-radius: 24px;
    box-sizing: border-box;
    padding: 40px 40px 30px 40px;
    font-size: 14px;
}
.c_cont2 p.p10 {
    padding-bottom: 10px;
}
.con {
    max-width: 860px;
    width: 100%;
    margin: 40px auto;
    box-sizing: border-box;
}
.con_t {
    max-width: 600px;
    width: 100%;
    margin: 0px auto;
    padding: 50px 24px;
    box-sizing: border-box;
}
.banner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 0px;
}
.banner_t {
    max-width: 780px;
    width: 100%;
    margin: 0px auto;
    padding: 60px 0px 0px 0px;
}
.banner_p {
    max-width: 680px;
    width: 100%;
    margin: 20px auto;
    padding-bottom: 60px;
}
#sld {
    width: 100%;
    max-width: 1290px;
    margin: 0 auto;
}
.sl_con {
    background-color: #fff5e0;
    border-radius: 24px;
    width: 93%;
    margin: 0 auto;
}
.c_sld {
    width: 100%;
    background: rgba(255, 250, 239, 1);
    border-radius: 0 0 24px 24px;
    padding: 40px 20px 20px 20px;
    box-sizing: border-box;
}
.c_sld2 {
    height: 120px;
}
.cafe1 {
    background: rgba(230, 214, 160, 0.5);
    padding: 40px;
}
.cafe2 {
    background: rgba(161, 233, 238, 0.5);
    padding: 40px;
}
.cafe3 {
    background: rgba(244, 238, 211, 1);
    padding: 40px;
}
.cafe4 {
    background: rgba(120, 43, 44, 0.2);
    padding: 40px;
}
.form {
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 24px;
}

.form p.oubo {
    width: 45%;
    padding-right: 20px;
    box-sizing: border-box;
    text-align: right;
    font-size: 20px;
}

.textarea {
    background: #fff;
    width: 45%;
    height: 40px;
    padding: 0px 16px;
    border: 2px solid #6a3906;
    border-radius: 8px;
    font-weight: 500;
    box-sizing: border-box;
}
.send_btn {
    margin: 20px auto;
    width: 280px;
}

.top_btn {
    margin: 0px auto;
    width: 280px;
    padding: 30px 0;
}
.v_end {
    background-color: #fff5e0;
    max-width: 1200px;
    width: 100%;
    border-radius: 40px;
    border: 4px solid #c1272d;
    margin: 80px auto;
    padding: 40px;
    box-sizing: border-box;
}
.v_thank1 {
    margin: -160px auto 0px;
    max-width: 800px;
}
.v_thank2 {
    margin: 40px auto;
    max-width: 720px;
    width: 100%;
}
#sns_c {
    width: 100%;
    box-sizing: border-box;
    padding: 00px 24px;
    background-color: #efefef;
}
#sns_c p {
    font-size: 20px;
}
.wapper {
    max-width: 930px;
    width: 86.67%;
    margin: 0 auto;
    position: inherit;
}
/*エラー*/
.error {
    max-width: 630px;
    width: 100%;
    background: #ffefef;
    margin: auto auto 30px auto;
    padding: 16px;
    color: #cc312d;
    border: 2px solid #cc312d;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.02em;
    border-radius: 5px;
}
.error ul:first-child {
    max-width: 45px;
    width: 100%;
    height: auto;
    margin-right: 20px;
}
.error ul:last-child li {
    line-height: 1.5;
}
.error ul:last-child li:first-child {
    font-weight: 600;
    font-size: 18px;
}
@media screen and (max-width: 767px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: inherit;
    }
    /*ロゴヘッダー*/
    header {
        height: 45px;
    }

    .logo {
        max-width: 100px;
        width: 45px;
    }

    .brand {
        right: 20px;
        width: 62px;
    }

    footer {
        /* padding: 5px 0;*/
    }

    footer p {
        letter-spacing: -0.02em;
    }

    .kikan {
        padding: 20px;
    }
    #about {
        padding: 40px 20px;
    }
    .title {
        width: 80%;
        padding-bottom: 40px;
    }
    .catch {
        width: 80%;
        padding-bottom: 40px;
    }
    #present {
        padding: 40px 0px 30px 0px;
        background-image: url("../img/phaikei1m.svg");
    }
    .main_c {
        padding: 0px 30px 40px;
    }
    .pret1 {
        max-width: 160px;
        margin: 0px auto 0px;
    }
    .p_cont {
        width: 85%;
        max-width: 1200px;
        margin: 0px auto 0px;
    }

    #entry {
        padding: 40px 20px 60px 20px;
    }
    .entry_c {
        border-radius: 24px;
        border: 4px solid #6a3906;
        padding: 30px;
    }

    .c-btn.slide a,
    .c-btn2.slide2 a {
        padding: 12px 8px 14px 8px;
        font-size: 14px;
        display: block;
        max-width: 260px;
        width: 95%;
        margin: 0 auto;
    }

    #vote {
        padding: 0px 0px 60px 0px;
    }
    .vote_c {
        padding-top: 15px;
    }
    .v_ab1 {
        position: absolute;
        top: 7%;
        width: 70%;
    }
    .v_ab2 {
        position: absolute;
        bottom: 18%;
        width: 80%;
    }
    .v_ab3 {
        position: absolute;
        bottom: 5%;
        width: 45%;
    }
    .c-btn3.slide3 a {
        padding: 10px 16px 12px 16px;
        margin: 0 auto;
        font-size: 14px;
        font-weight: 700;
        display: block;
        width: 100%;
        border: 2px solid #663c1d;
    }

    .map_c {
        border-top: 15px solid #6a3906;
    }
    .m_title {
        max-width: 180px;
        margin: 20px auto 10px;
    }
    .map_c1 {
        position: relative;
        width: 100%;
        padding: 50px 20px 20px 20px;
        box-sizing: border-box;
    }
    .time1 {
        left: 50%;
        top: 0;
        z-index: 10;
        transform: translate(-50%, -0%);
        -webkit-transform: translate(-50%, -0%);
        -ms-transform: translate(-50%, -0%);
    }
    .time_tx {
        background-size: 23px 24px;
        padding: 10px 0px 10px 30px;
        font-size: 14px;
        width: 100%;
    }

    .time2 {
        position: absolute;
        left: 30px;
        top: 50px;
        z-index: 11;
        width: 180px;
    }

    .map_c2 {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        background-color: #bde3f6;
        padding: 0px 10px 10px;
        box-sizing: border-box;
    }
    .m_boder {
        border-bottom: 15px solid #6a3906;
    }
    .pdo2 {
        padding: 4px;
    }
    .sankaku {
        max-width: 30px;
        margin: 20px auto;
    }
    .flex2 {
        flex-flow: row-reverse;
    }

    #terms {
        padding: 0px 0px 30px 0px;
    }
    .c_tx1 {
        width: 80%;
        max-width: 900px;
        margin: 0 auto 40px;
    }
    .c_cont {
        width: 90%;
    }

    .accordion_one {
        margin: 0 auto 15px;
    }
    .accordion_one .accordion_header {
        border-radius: 24px;
        padding: 8px 10% 9px 32px;
        background: #6a3906;
        margin: 12px auto;
        font-size: 14px;
    }
    .accordion_one .accordion_header::before,
    .accordion_one .accordion_header::after {
        top: 0px;
        right: 24px;
        bottom: 0;
        width: 14px;
    }

    .c_cont2 {
        padding: 20px 20px 10px 20px;
        font-size: 13px;
    }
    .con {
        width: 90%;
    }

    .banner {
        width: 90%;
        padding: 20px 0px;
        box-sizing: border-box;
    }
    .banner_t {
        width: 90%;
        padding: 20px 0px 0px 0px;
        box-sizing: border-box;
    }
    .banner_p {
        width: 80%;
        margin: 20px auto;
        padding-bottom: 40px;
    }

    #sld {
        width: 100%;
    }
    .sl_con {
        width: 90%;
    }
    .c_sld {
        padding: 30px 20px 20px 20px;
        box-sizing: border-box;
    }
    .cafe1,
    .cafe2,
    .cafe3,
    .cafe4 {
        padding: 15px;
    }
    .c_sld2 {
        height: 80px;
    }
    .form {
        margin-bottom: 20px;
    }
    .form p.oubo {
        width: 100%;
        padding-right: 0px;
        text-align: center;
        font-size: 16px;
        padding-bottom: 8px;
    }
    .textarea {
        width: 100%;
        height: 40px;
    }
    .send_btn {
        margin: 0px auto;
        width: 220px;
    }
    .top_btn {
        width: 240px;
        padding: 0px 0 40px 0;
    }

    #vote_end {
        padding: 0px 0px 0px 0px;
        box-sizing: border-box;
    }
    .v_thank1 {
        margin: -60px auto 0px;
        max-width: 800px;
    }
    .v_thank2 {
        margin: 20px auto;
        max-width: 720px;
        width: 100%;
    }
    .m_title2 {
        width: 80%;
        max-width: 600px;
        margin: 40px auto 20px;
    }
    .c-btn1.slide1 a {
        padding: 12px 16px 14px 16px;
        font-size: 14px;
        font-weight: 600;
        margin: 0 auto 0px;
        max-width: 240px;
    }
    .v_end {
        width: 90%;
        border-radius: 40px;
        border: 4px solid #c1272d;
        margin: 40px auto;
        padding: 20px 40px;
        box-sizing: border-box;
    }

    .fix_t {
        bottom: 16px;
        right: 16px;
        width: 80px;
    }

    /*エラー*/
    .error {
        width: 100%;
        margin: auto auto 20px auto;
        padding: 10px 15px;
        font-size: 12px;
        border-radius: 10px;
    }
    .error ul:first-child {
        max-width: 28px;
        margin-right: 7px;
    }
    .error ul:last-child li:first-child {
        font-size: 14px;
    }
}
