@charset "UTF-8";
/* CSS Document */
/*共通==================-*/
/*=====pc・sp　on/off===========================*/

.web-btn_wrap .pc{
	  display: block;
}
.web-btn_wrap .sp{
	  display: none;
}


/*=====pc・sp　on/off===========================*/
.sec-box-wrap {
    margin: 0 auto;
    width: 98%;
}
/*h1-sub-top*/
.sub-top_wrap {
    margin: 10px 0 0 0;
    width: 100%;
    height: 100%;
    position: relative;
}
.sub-top_wrap::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("../img/common/temaki-l.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left bottom;
}
.sub-top_wrap::before {
    content: '';
    width: 10px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #32B66E;
}
.sub-top {
    width: 100%;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 20px solid #F6FCF4;
    box-sizing: border-box;
}
/*h2*/
.two-title {
    width: 98%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 20px;
    box-sizing: border-box;
    background-color: #32B66E;
    font-size: 120%;
    border-radius: 5px;
    color: #fff;
}
.two-title:nth-of-type(n+2) {
    margin-top: 100px;
}
/*h2_ボーダー*/
.two-title_b {
    width: 100%;
    padding: 8px 8px 10px 8px;
    border-bottom: 3px solid #32B66E;
    font-size: 130%;
    line-height: 180%;
}
/*h3*/
.three-title {
    width: 100%;
    margin: 30px auto 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 3px dotted #32B66E;
}
.three-title img {
    width: 40px;
    margin-right: 8px;
}
/*h3-流れ見出し*/
.three-flow {
    margin: 20px 0;
    padding: 0.5em 1em;
    font-size: 110%;
    font-weight: 600;
    background: #fff;
    border-left: solid 5px #32B66E;
    color: #32B66E;
}
/*パンクズ*/
.breadcrumbs {
    width: 98%;
    max-width: 1400px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    font-size: 100%;
}
.breadcrumbs p {
    color: #32B66E;
}
.breadcrumbs a {
    color: #333;
    font-size: 100%;
    transition: all .3s;
}
.breadcrumbs a::after {
    content: ">";
    margin: 0 8px;
    font-size: 80%;
    color: #333;
    pointer-events: none;
}
.breadcrumbs a:hover {
    color: #32B66E;
    transition: all .3s;
}
.contenr-wrap {
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
}
.cap-txt {
    margin: 20px 0;
}
/*リスト-緑ぽち*/
.item-list, .item-list_red {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    flex-flow: column;
    gap: 4px;
}
.item-list li, .item-list_red li {
    padding-left: 0em;
    display: flex;
    align-items: baseline;
    text-indent: 0em;
    list-style: none;
}
.item-list li::before, .item-list_red li::before {
    content: "⚫︎";
    margin: 0px 2em 0px;
    font-size: 5px;
    position: relative;
    top: -4px;
}
.item-list li::before {
    color: #32B66E;
}
.item-list_red li::before {
    color: #EB5151;
}
/*表--デザイン================*/
.p-table {
    --color-pri: #32B66E; /* 緑 */
    --color-sec: #fff; /* 白 */
    --border-width: 2px;
}
.p-table__wrap {
    overflow-x: auto;
}
.p-table__table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 6px;
    overflow: hidden; /* 角丸を有効にする */
}
/* 共通セル設定：上と左だけボーダー */
.p-table__th, .p-table__td {
    padding: 12px 16px;
    background-color: #fff;
    color: #000;
    box-sizing: border-box;
}
.p-table__th {
    border-top: none;
    border-left: none;
}
.p-table__td {
    border-right: var(--border-width) solid var(--color-pri);
    border-bottom: var(--border-width) solid var(--color-pri);
}
/* 最終列に右ボーダー */
.p-table thead tr th:last-child, .p-table tbody tr td:last-child {
    border-right: var(--border-width) solid var(--color-pri);
}
.p-table tbody tr:first-child td {
    border-top: none;
    border-left: none;
}
.p-table thead tr:first-child th:first-child.bd-none, .p-table__table thead tr th.bd-none {
    border: 0;
    text-align: center;
    letter-spacing: 0.5rem;
}
.p-table tbody tr:last-child td {
    border-left: none;
}
/* 最終行に下ボーダー */
.p-table tbody tr:last-child th, .p-table tbody tr:last-child td {
    border-bottom: var(--border-width) solid var(--color-pri);
}
/* 緑背景セルの右と下に白線（上書き） */
.p-table thead .p-table__th, .p-table tbody .p-table__th {
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
/* ヘッダーのデザイン */
.p-table thead .p-table__th {
    background-color: var(--color-pri);
    color: #fff;
    font-weight: bold;
}
/* 左列（施設名）のデザイン */
.p-table tbody .p-table__th {
    background-color: var(--color-pri);
    color: #fff;
    text-align: center;
    font-weight: 600;
}
/* セル中央寄せ用 */
.u-text-center {
    text-align: center;
}
/* テキストノーマル */
.u-text-normal {
    font-weight: normal;
}
/* 上マージン */
.u-mt-3 {
    margin-top: 1.5rem;
}
/* 角丸個別対応 */
.p-table thead tr:first-child th:first-child {
    width: 30%;
    border-top-left-radius: 6px;
    text-align: center;
    letter-spacing: 0.5rem;
}
.p-table thead tr:first-child th:last-child {
    border-top-right-radius: 6px;
}
.p-table tbody tr:last-child th:first-child {
    border-bottom-left-radius: 6px;
}
.p-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 6px;
}
.p-table thead tr th:last-child, .p-table thead .p-table__th.two {
    border: var(--border-width) solid var(--color-pri);
    border-left: none;
    ;
}
.p-table thead .p-table__th, .p-table tbody .p-table__th {
    border-right: none;
}
.p-table thead .p-table__th.two {
    background-color: #F6FCF4;
    color: #32B66E;
    text-align: center;
}
.p-table thead tr:first-child th:last-child {
    width: 34%;
    background-color: #F6FCF4;
    color: #32B66E;
    text-align: center;
}
.p-table thead tr:last-child td:last-child {
    border-bottom-right-radius: 6px;
}
.p-table thead tr:last-child td:first-child {
    border-bottom-left-radius: 0px;
}
.money-wrap {
    list-style: none;
}
.money-wrap .money-wrap_list {
    margin-top: 40px;
}
.money-wrap .money-wrap_list:first-child {
    margin-top: 20px;
}
/*表--デザイン================*/
.box-remarks, .box-remarks-red {
    width: 100%;
    max-width: 1100px;
    margin: 100px auto 60px;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    border-radius: 10px;
    background-color: #fff;
    border: 2px solid #32B66E;
}
.box-remarksz {
    border: 2px solid #32B66E;
}
.box-remarks-red {
    border: 2px solid #EB5151;
}
.box-remarks::before, .box-remarks-red::before {
    display: block;
    width: 100%;
    max-width:
        300px;
    margin: 0 auto;
    position: relative;
    top: -50px;
    padding: 10px 10px;
    border-radius: 5px;
    letter-spacing: 0.5rem;
    border: 3px solid #fff;
    text-align: center;
    font-size: 110%;
    font-weight: 600;
    color: #fff;
}
.box-remarks::before {
    content: "追記事項";
    background-color: #32B66E;
}
.box-remarks-red::before {
    content: "ご利用時の注意事項";
    background-color: #EB5151;
}
/*質疑応答======*/
.qa-wrap {
    margin: 40px 0 0;
    list-style: none;
}
.qa-wrap li {
    border-bottom: 2.5px #33B66E dotted;
}
.pquestion-wrap, .answer-wrap {
    margin: 32px auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.pquestion-icon, .answer-icon {
    margin: 0 10px 0 0;
    padding: 5px 13px;
    border-radius: 100px;
    color: #fff;
    font-size: 110%;
    font-weight: 600;
}
.pquestion-icon {
    background-color: #EB5151;
}
.answer-icon {
    background-color: #32B66E;
}
.pquestion-txt {
    color: #EB5151;
    font-size: 110%;
    font-weight: 600;
}
/*活動内容==================-*/
.calendar-wrap {
    margin: 0 auto;
    max-width: 1000px;
    border-radius: 10px;
}
.calendar-wrap iframe {
    height: 600px;
    min-height: 390px;
}
.holiday-icon {
    color: #e67c73;
}
.activity-icon {
    color: #7ea845;
}
.organize-icon {
    color: #4a77ec;
}
.schedule-icon_list {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    gap: 32px;
}
.t-gl {
    text-align: center;
    color: #32B66E
}
.na-btn-wrap {
    margin: 60px auto 0;
    padding: 30px;
    box-sizing: border-box;
    background-color: #F6FCF4;
    border-radius: 5px;
}
.na-btn-list {
    width: 100%;
    margin: 0 auto;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
}
.na-btn-list_item {
    width: 100%;
    font-size: 100%;
}
.na-btn-list_item a {
    width: 100%;
    padding: 16px 20px;
    border-radius: 5px;
    font-size: 95%;
    border: 2px solid #32B66E;
    background-color: #fff;
    display: flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
    color: #333;
    transition: all 0.3s;
}
.na-btn-list_item a:hover {
    background-color: #F6FCF4;
    transition: all 0.3s;
}
#na-btn-list .triangle-btn, #in-btn-list .triangle-btn {
    transform: rotate(90deg);
}
.flex-ac-cap {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.flex-ac-cap li {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}
/*活動内容==============================-*/
.ac-box_wrap {
    display: flex;
    flex-flow: column;
    gap: 40px;
}
.ac-box_wrap .ac-box-li {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    box-sizing: border-box;
    border: 2px solid #32B66E;
    border-radius: 10px;
    list-style: none;
}
.ac-box_wrap li .three-title {
    margin: 0 auto;
}
.ac-box {
    margin: 20px auto 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 32px;
}
.ac-box_wrap li .nai-img {
    width: 100%;
    max-width: 420px;
}
.o_day-wrap {
    width: 100%;
    max-width: 98%;
    margin: 20px auto;
    padding: 20px 40px;
    box-sizing: border-box;
    border-radius: 5px;
    background-color: #F6FCF4;
}
.o_day-wrap table {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    max-width: 87%;
}
.o_day-wrap tbody {
    width: 100%;
}
.o_day-wrap td {
    width: 72%;
    padding: 4px 0 4px;
}
.tasoku {
    margin: 16px 0;
}
.sk-btn-wrap .main_link {
    max-width: 450px;
    margin: 32px auto 20px;
}
.sk-btn-wrap .main_link .triangle-btn {
    transform: rotate(270deg);
}
.info-map .p-table thead tr:first-child th:first-child, .info-map .p-table thead tr:first-child th:last-child {
    border-left: var(--border-width) solid var(--color-pri);
    background-color: #F6FCF4;
}
.info-map .p-table thead tr:first-child th:nth-child(2) {
    border-left: 0;
}
.info-map .p-table__td:nth-child(2) {
    border-left: 0;
}
.info-map .p-table__td.two:nth-child(2) {
    border-right: 0;
}
.info-map .p-table thead .p-table__th.two {
    width: 40%;
}
.info-map .p-table__td {
    border-left: var(--border-width) solid var(--color-pri);
}
.info-map .p-table thead .p-table__th {
    border-top: var(--border-width) solid var(--color-pri);
    border-bottom: var(--border-width) solid var(--color-pri);
    background-color: #F6FCF4;
    color: #32B66E;
    text-align: center;
}
.info-map .p-table thead tr:last-child td:first-child {
    border-bottom-left-radius: 6px;
}
.info-map li {
    margin: 80px 0 0;
}
.info-map li:first-child {
    margin: 0;
}
/*施設案内==================-*/
.map-down .btn-wrap {
    max-width: 410px;
}
#in-btn-list .na-btn-list {
    width: 90%;
    margin: 32px auto;
    gap: 32px;
    grid-template-columns: 1fr 1fr;
}
.map-list-wrap {
    max-width: 1100px;
    margin: 32px auto 0;
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.map-list-wrap li {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}
.map-list-wrap li a {
    width: 100%;
    /*	    max-width: 450px;*/
    display: block;
    border: 2px solid #32B66E;
    border-radius: 10px;
    transition: all 0.3s;
}
.map-list-wrap li a:hover {
    opacity: 0.7;
}
.map-list-wrap li img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}
.map-bg {
    width: 300px;
    margin: 20px 0;
    padding: 20px;
    box-sizing: border-box;
    background-color: #F6FCF4;
    border-radius: 5px;
}
.info-item_wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
}
.slider-img_wrap {
    width: 50%;
}
.slider-img_cap {
    width: 100%;
}
.img-cap {
    width: 100%;
    border-radius: 0 0 5px 5px;
    position: absolute;
    color: #fff;
    padding: 4px 20px;
    box-sizing: border-box;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    transition: all 0.3s;
}
.slider-for div:hover .img-cap {
    bottom: -50px;
    transition: all 0.3s;
}
.info-map {
    list-style: none;
}
.info-map .slick-slider {
    overflow: hidden;
}
.info-map .slick-slide img {
    width: 100%;
    margin: 10px auto 0;
    display: block;
    border-radius: 5px;
    cursor: pointer;
}
.info-map .slick-initialized .slick-slide {
    margin: 0 10px 0;
}
.info-map .slick-next {
    right: 2vw;
    bottom: 40%;
}
.info-map .slick-prev {
    left: 2vw;
    bottom: 40%;
}
.one-img_none {
    opacity: 0;
}
.one-img_none .slick-slide img {
    opacity: 0;
    cursor: default;
}
.car-img {
    width: 100%;
    max-width: 580px;
    position: relative;
}
#car-cap {
    overflow: hidden;
}
#car-cap .img-cap {
    bottom: 9px;
}
#car-cap:hover .img-cap {
    bottom: -50px;
    transition: all 0.3s;
}
.car-img img {
    border-radius: 5px;
    width: 100%;
}
/*お知らせ==================-*/
#news .content-title {
    margin: 0 auto;
    display: flex;
    flex-flow: column;
    justify-content: center;
    color: #F79C8B;
}
#news .news-wrap {
    width: 90%;
    max-width: 1400px;
    margin: 100px auto;
}
#news_page .news_page-wrap {
    width: 90%;
	max-width: 1200px;
/*    max-width: 1400px;*/
    margin: 0px auto 32px;
}
#news .news-list_wrap {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-flow: column;
    justify-content: space-around;
    align-items: flex-end;
    position: relative;
}
#news .news-list {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-flow: column;
}
#news .news-item-top {
    display: flex;
}
#news .news-list-item {
    box-sizing: border-box;
    background-color: #fff;
    list-style: none;
    border-top: 1px dotted #32B66E;
}
#news .news-list-item:last-child {
    border-bottom: 1px dotted #32B66E;
}
#news .news-list-item .news-title {
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    border-radius: 5px;
    transition: all 0.5s;
}
#news .news-list-item .news-title:hover {
    transition: all 0.3s;
    background-color: #F6FCF4;
    box-shadow: none;
    box-sizing: border-box;
}
#news .news-category, #news .event-category {
    width: 110px;
    padding: 2px 10px;
    margin: 0 20px 0 0;
    font-size: 90%;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-align: center;
    color: #fff;
    border-radius: 3px;
}
#news .news-category {
    background-color: #32B66E;
}
#news .event-category {
    background-color: #EB5151;
}
#news .news-day {
    margin-right: 30px;
    padding-bottom: 3px;
    font-size: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}
#news .news-txt {
    width: 80%;
    text-align: left;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
#news .page-list_wrap {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.page-list {
    width: 100%;
    margin: 80px auto 0px;
    padding: 0;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
    list-style: none;
}
.page-list li {
    display: flex;
}
.page-list_item {
    width: 43px;
    height: 40px;
    margin: 3px;
    display: flex;
    justify-content: center;
    line-height: 35px;
    transition: all .3s;
}
.next-m {
    margin: 0 2px 0;
    letter-spacing: 1px;
    display: flex;
    align-items: end;
}
.page-list_item a {
    width: 100%;
    height: 100%;
    padding: 2px;
    font-size: 80%;
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
    box-sizing: border-box;
    text-decoration: none;
    border: 1.5px solid #32B66E;
    background-color: #fff;
    color: #32B66E;
}
.page-list_item a:hover {
    transition: all .3s;
    background-color: #DAF8D1;
}
.active {
    padding: 2px;
    font-size: 80%;
    display: flex;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: #32B66E;
    border: 1px solid #32B66E;
}
#news_page .content-wrap a {
    margin: 8px 0 0;
    text-decoration: underline;
}
#news_page .new-txt-area {
   width: 90%;
    margin: 0 auto;
}
/*ご利用について==================-*/
.flow_wrap {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
}
.flow_wrap .flow_list {
    width: 100%;
    margin: 0 0 70px;
    padding: 25px 30px 25px 30px;
    border-radius: 5px;
    list-style: none;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #F6FCF4;
    position: relative;
}
.flow_wrap .flow_list:last-child {
    margin-bottom: 0;
}
.numbers-box {
    width: 18%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    font-size: 100%;
    line-height: 160%;
    color: #333;
    font-weight: 600;
}
.about-numbers {
    width: 25px;
    margin: 0 20px 0px 0;
    text-align: center;
    font-size: 24px;
    color: #33B66E;
    position: relative;
    border-radius: 100px;
}
.about-numbers::after {
    content: "STEP";
    position: absolute;
    top: -18px;
    left: 0;
    font-size: 44%;
}
.flow-red {
    width: 70%;
}
.window-icon {
    padding: 8px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    background-color: #EB5151;
}
.window-icon img {
    width: 16px;
    height: 16px;
}
.flow-red .red-btn {
    margin: 10px 0;
    padding: 14px 30px;
    display: flex;
    flex-flow: nowrap;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    font-weight: 600;
}
.flow-txt, .obst-txt-center {
    width: 80%;
    height: 100%;
    margin: 0px;
    padding: 0 0 0 32px;
    display: flex;
    position: relative;
}
.flow-txt::before, .obst-txt-center::before {
    content: '';
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-right: 2.5px #33B66E dotted;
}
.num-list {
    counter-reset: number;
    list-style: none;
    padding-left: 0;
}
.num-list li {
    counter-increment: number;
    position: relative;
    padding-left: 2em;
}
.num-list li::before {
    content: "("counter(number) ")";
    position: absolute;
    left: 0;
}
.download-list_wrap {
    margin: 60px auto;
}
.download-list {
    width: 100%;
    list-style: none;
    display: grid;
    gap: 20px 0px;
    grid-template-columns: 1fr 1fr;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}
#download .main_link {
    width: 80%;
    margin: 0;
    padding: 10px 20px;
}
.down-flex {
    display: flex;
    align-items: center;
}
.down-flex img {
    width: 40px;
    height: 40px;
    margin-right: 8px;
    padding: 4px;
    border-radius: 30px;
    background-color: #fff;
}
.download-list_bg {
    margin: 20px 0 0;
    box-sizing: border-box;
    border-radius: 5px;
    padding: 25px 30px 25px 30px;
    background-color: #F6FCF4;
}
.download-list li {
    width: 100%;
    display: flex;
    justify-content: center;
}
.atten-flow-box {
    margin: 20px auto;
    padding: 8px;
    box-sizing: border-box;
    border: 2px solid #EB5151;
    background-color: #fff;
    border-radius: 5px;
    font-size: 90%;
}
.atten-flow-box .item-list_red {
    gap: 0px;
}
/*お問い合わせ==================-*/
#contact .web-top_btn .pc {
	display: none;
}
.tel-time {
    margin: 0 auto 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}
.time {
    width: 100px;
    padding: 2px 8px;
    box-sizing: border-box;
    background-color: #32B66E;
    color: #fff;
    border-radius: 3px;
    letter-spacing: 2px;
    text-align: center;
    font-size: 80%;
    justify-content: center;
    display: flex;
    line-height: 20%;
    align-items: center;
}
.time-day {
        width: 80%;
    font-size: 110%;
    display: flex;
    gap: 10px;
    justify-content: center;
}
.aten-list {
    padding: 30px;
    box-sizing: border-box;
    background-color: #F6FCF4;
    border-radius: 5px;
}
.tel-phone {
    margin: 0;
    display: flex;
    font-size: 170%;
    font-weight: 600;
}
.content-wrap {
    width: 98%;
    max-width: 1200px;
    margin: 0 auto;
}
.form_wrap {
    width: 90%;
    max-width: 1200px;
    margin: 80px auto;
}
.form-item {
    padding-top: 24px;
    padding-bottom: 24px;
    width: 100%;
}
.form-item:nth-child(2) {
    padding: 10px 0;
}
.form-input {
    width: 100%;
    padding: 8px;
    height: 60px;
    box-sizing: border-box;
    border: 2px solid #32B66E;
    border-radius: 5px;
}
.form-label {
    font-weight: 600;
}
::placeholder {
    color: #C4C4C4;
}
.form-required {
    margin: 0px 0px 0 10px;
    padding: 2px 11px;
    border-radius: 20px;
    color: #fff;
    font-size: 70%;
    font-weight: 600;
    background-color: #EB5151;
    letter-spacing: 0.1rem;
}
.form-textarea {
    width: 100%;
    padding: 8px;
    min-height: 300px;
    box-sizing: border-box;
    border: 2px solid #32B66E;
    border-radius: 5px;
}
.check-btn {
    margin-right: 10px;
}
.consent-btn {
    display: flex;
    justify-content: center;
    align-items: baseline;
    font-weight: 600;
}
.consent-txt {
    font-size: 80%;
    text-align: center;
    font-weight: 600;
}
.form-btn {
    width: 100%;
    max-width: 280px;
    margin: 32px auto 0;
    color: #fff;
    display: flex;
    font-weight: 500;
    justify-content: space-between;
    align-items: center;
    transition: all .3s;
    position: relative;
}
.form-btn:hover {
    background-color: #fff;
    color: #32B66E;
    transition: all .3s;
}
.form-btn_in {
    width: 100%;
    height: 100%;
    padding: 18px 30px;
    color: #fff;
    border-radius: 300px;
    border: 2px solid #32B66E;
    background-color: #32B66E;
    text-align: justify;
    font-size: 100%;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all .3s;
    pointer-events: auto;
    cursor: pointer;
}
.form-btn::after {
    content: "▶︎";
    padding: 0px 20px;
    position: absolute;
    font-size: 10%;
    right: 0;
    color: #fff;
}
.form-btn:hover .form-btn_in {
    background-color: #fff;
    color: #32B66E;
    transition: all .3s;
}
.form-btn:hover::after {
    color: #32B66E;
}
.thankyou {
    width: fit-content;
    margin: 10px auto;
    padding-bottom: 1px;
    text-align: center;
    font-size: 120%;
    display: flex;
    align-items: center;
    border-bottom: 3px solid #32B66E;
}
.thankyou-cap {
    text-align: center;
}
@media screen and (max-width: 1000px) {
	
    /*	共通*/
	.web-btn_wrap{
		padding: 10px 20px 10px 0px;
	}
    .content-wrap {
        width: 90%;
    }
    /*	ご利用について*/
    #event-activity .ac-box {
        display: flex;
        flex-flow: column;
    }
    @media screen and (max-width: 900px) {
        .map-list-wrap {
            gap: 32px;
        }
        .slider-img_wrap, .car-img {
            width: 100%;
            max-width: 100%;
        }
        .info-item_wrap {
            flex-flow: column;
        }
    }
}