@charset "UTF-8";

html {
    font-family: 'Meiryo', 'Gothic';
    background-color: #ffffff;
    position: relative;
    min-height: 100%;
}

html * {
    box-sizing: border-box;
}

a {
    color: #333;
    text-decoration: none;
}

p {
    color: #333;
    font-size: 16px;
}

h2 {
    color: #43665c;
    margin: 10px 0;
}

a:hover {
    color: #00552e;
    text-decoration: underline;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    margin-bottom: 330px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ヘッダー　↓ここから */
header {
    background-color: #7fc9b8;
    display: flex;
    height: auto;
    padding: 25px 0 25px 20px;
}

.logo {
    width: 7vw;
    margin: auto 0;
}

header img a {
    display: inline-block;
}

header nav {
    width: auto;
    height: auto;
    border-radius: 40px 0 0 40px;
    font-size: 1vw;
    font-weight: 600;
    background-color: #f8fbed;
    margin: auto 0 auto auto;
    padding: 0 2vw 0 2vw;
}

header nav ul {
    display: flex;
    padding-left: 0;
    justify-content: center;
}

header nav ul li {
    list-style: none;
    margin: 0 0.8vw 0 0.8vw;
}

header nav ul li a {
    color: #43665c;
}

header nav ul li a:hover {
    color: #f29b02;
    text-decoration: none;
    transition: 0.2s ease-in-out;
}

/* ヘッダー　↑ここまで */


/* メイン　↓ここから */
/* メインビジュアル */
.main_visual img {
    width: 100%;
}

/* サービス一覧 */
.main_contents {
    width: 80%;
    margin: 60px auto;
    text-align: center;
}

.contents_title img {
    width: auto;
    height: 30px;
    margin: 0 auto;
}

.contents_wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    text-align: left;
}

.contents_box {
    width: 300px;
    margin: 0 20px;
}

.contents_box a:hover {
    opacity: 0.85;
    transition: 0.2s ease-in-out;
    text-decoration: none;
}

h3 {
    line-height: 18px;
    margin: 0;
    padding: 0;
    display: inline-block;
}

.facility h3 span {
    font-size: 12px;
    color: #fff;
}

.business {
    width: 100%;
    height: 140px;
    background-color: #e88523;
    color: #ffffff;
    padding: 8px 0;
    text-align: center;
    display: inline-block;
    margin: auto 0;
}

.ticket {
    width: 100%;
    height: 140px;
    background-color: #2a67cd;
    color: #ffffff;
    padding: 8px 0;
    text-align: center;
    display: inline-block;
}

.facility {
    width: 100%;
    height: 140px;
    background-color: #0c9370;
    color: #ffffff;
    padding: 8px 0;
    text-align: center;
    display: inline-block;
}

.business img,
.ticket img {
    height: 50%;
    margin: 0 auto 20px auto;
}

.facility img {
    height: 50%;
    margin: 0 auto 5px auto;
}

/* お知らせ */
.news_wrap {
    width: 100%;
    height: auto;
    background-image: url(../images/news_background.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-size: cover;
    background-color: rgba(#fff, 0.7);
    padding: 40px 0 120px 0;
}

.news {
    width: 80%;
    max-width: 1000px;
    height: auto;
    background-color: #ffffff;
    display: flex;
    margin: auto;
    padding: 40px;
    align-items: center;
}

.news_title img {
    width: auto;
    height: 25px;
}

.news_list {
    width: 80%;
}

.news_list ul li {
    list-style: none;
    border-bottom: dotted 2px #6eb3a1;
    margin: 30px 0;
    padding: 0;
    display: flex;
}

.news_date {
    margin-right: 30px;
}

.news_btn {
    width: 220px;
    font-size: 14px;
    background-color: #ffffff;
    border: #adadad 1px solid;
    margin: 50px auto 0 auto;
    cursor: pointer;
    text-align: center;
}

.news_btn a {
    padding: 10px 40px;
    display: block;
    text-decoration: none;
}

.news_btn:hover {
    transition: 0.2s ease-in-out;
}

.news_btn:hover {
    opacity: 0.6;
}

.news_btn a:hover {
    color: #333;
}

/* NEWアイコン */
.new {
    color: #e94709;
    font-weight: bold;
    margin-left: 5px;
    animation: blinking 1s ease-in-out infinite alternate;
}

@keyframes blinking {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* メイン　↑ここまで */


/* フッター ↓ここから */
footer {
    width: 100%;
    height: 330px;
    margin: 0 auto;
    position: absolute;
    bottom: 0;

}

footer p {
    color: #6eb3a1;
}

.logo_wrap img {
    width: 30%;
    height: 30%;
    margin: auto 0;
}

.footer_inner1 {
    width: 80%;
    max-width: 1000px;
    display: flex;
    margin: 60px auto 40px auto;
}

.footer_inner2 {
    width: 50%;
    max-width: 500px;
    margin-left: auto;
}

.footer_inner3 {
    width: 50%;
    max-width: 500px;
    display: flex;
    margin-right: auto;
}

.logo_wrap p {
    font-weight: bold;
    margin: 0 0 0 10px;
}

.logo_wrap {
    display: flex;
}

.address p {
    margin-top: 20px;
}

footer nav ul li {
    font-size: 14px;
    list-style: none;
    margin-bottom: 10px;
}

footer nav ul li a {
    color: #6eb3a1;
}

footer section {
    height: 100px;
    background-color: #6eb3a1;
}

footer section p {
    font-size: 12px;
    color: #ffffff;
    text-align: center;
    line-height: 100px;
    margin: 0;
}

/* TOPへ戻るボタン */
.pagetop {
    display: none;
    position: fixed;
    bottom: 5px;
    right: 20px;
    align-items: center;
}

.pagetop p {
    font-size: 14px;
    color: #efe88e;
    font-weight: bold;
}

.pagetop a {
    display: inline;
    text-align: center;
    text-decoration: none;
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.9;
    margin: 0 auto;
}

.pagetop a:hover {
    display: block;
    color: #fff;
    text-decoration: none;
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 1;
}

/* フッター　↑ここまで */


/* 画面サイズ　767px　TOPページ */
@media screen and (max-width:767px) {

    html * {
        font-size: 14px;
    }

    header {
        padding: 20px;
    }

    .logo {
        width: 90px;
    }

    header nav {
        width: 100%;
        height: auto;
        border-radius: 0;
        font-size: 14px;
        background-color: #7fc9b8;
        padding: 0;
    }

    header nav ul {
        margin: auto 0;
        display: block;
    }

    header nav ul li {
        justify-content: center;
        border-bottom: #0c9370 1px solid;
    }

    header nav ul li a {
        width: 100%;
        font-size: 18px;
        display: inline-block;
        margin: auto 0;
        text-align: center;
        padding: 20px 0;
    }

    /* スマホ　メニュー表示に関して　↓ここから */
    .nav_toggle {
        display: block;
        position: relative;
        width: 2rem;
        height: 2rem;
        margin: auto 0 auto auto;
        z-index: 4;
    }

    .nav_toggle i {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #fff;
        position: absolute;
        transition: transform 0.3s, opacity 0.3s;
    }

    .nav_toggle i:nth-child(1) {
        top: 0;
    }

    .nav_toggle i:nth-child(2) {
        top: 0;
        bottom: 0;
        margin: auto;
    }

    .nav_toggle i:nth-child(3) {
        bottom: 0;
    }

    /* クリックされた後のハンバーガーのマーク */
    .nav_toggle.show i:nth-child(1) {
        transform: translateY(14px) rotate(-45deg);
        background-color: #7fc9b8;
    }

    .nav_toggle.show i:nth-child(2) {
        opacity: 0;
    }

    .nav_toggle.show i:nth-child(3) {
        transform: translateY(-14px) rotate(45deg);
        background-color: #7fc9b8;
    }

    /* クリックで表示されるメニュー：クリックされる前 */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: auto;
        visibility: hidden;
        background-color: rgba(255, 255, 255, 0.95);
        padding: 80px 0;
        opacity: 0.5;
        z-index: 3;
    }

    /* クリックで表示されるメニュー：クリックされた後 */
    .nav.show {
        opacity: 1;
        visibility: visible;
    }

    /* スマホ　メニュー表示に関して　↑ここまで */


    /* サービス一覧 */
    .main_contents {
        width: 100%;
        margin: 40px auto;
        text-align: center;
    }

    .contents_title img {
        width: auto;
        height: 20px;
        margin: 0 auto;
    }

    h2 {
        font-size: 16px;
        margin-top: 5px;
        text-align: center;
    }

    .contents_wrap {
        width: 95%;
        display: block;
        margin: 0 auto;
    }

    .contents_box {
        width: auto;
        margin: 10px auto;
        display: block;
        text-align: left;
    }

    .contents_box p {
        margin: 10px 0 0 0;
    }

    .business,
    .ticket,
    .facility {
        width: auto;
        height: 60px;
        display: flex;
        text-align: left;
        margin: auto 0;
        padding: 0;
    }

    .business img,
    .ticket img,
    .facility img {
        height: 80%;
        margin: auto 10px;
    }

    .contents_box h3 {
        font-size: 16px;
        text-align: center;
        margin: auto 0;
    }

    /* お知らせ */
    .news {
        width: 90%;
        display: block;
        padding: 20px;
    }

    .news_title img {
        width: auto;
        height: 15px;
        margin: 0 auto;
    }

    .news_list {
        width: 100%;
    }

    .news_list ul {
        padding: 0;
    }

    .news_btn {
        width: 300px;
    }

    /* フッター */
    .logo_wrap {
        justify-content: center;
    }

    .address {
        width: fit-content;
        margin: 0 auto;
    }

    .address p {
        margin-top: 10px;
    }

    .footer_inner1 {
        width: 95%;
        display: block;
        margin: 40px auto 0 auto;
    }

    .footer_inner2 {
        width: 100%;
        width: fit-content;
        margin-bottom: 20px;
    }

    .footer_inner3 {
        width: 100%;
        justify-content: center;
        margin: 0 auto;
    }

    footer nav ul li {
        margin: 10px 0;
    }

    .footer_inner3 nav ul {
        padding: 8px;
        width: 100%;
    }

    .footer_inner3 a {
        font-size: 12px;
    }

    .pagetop p {
        font-size: 12px;
    }

    .pagetop img {
        width: 60px;
    }

    footer section {
        height: 80px;
    }

    footer section p {
        line-height: 80px;
        margin: 0;
    }

}

/* 画面サイズ　768px ～ 1150px　TOPページ */
@media screen and (min-width: 768px) and (max-width: 1024px) {

    header nav {
        font-size: 9px;
    }

    .main_contents {
        width: 90%;
    }

    .business img,
    .ticket img,
    .facility img {
        height: 45%;
    }

    .business h3,
    .ticket h3,
    .facility h3 {
        font-size: 18px;
    }

    .contents_box {
        margin: 0 15px;
    }

    h2 {
        font-size: 20px;
    }

    /* お知らせ */
    .news {
        width: 90%;
        max-width: 1000px;
        height: auto;
        background-color: #ffffff;
        display: flex;
        margin: auto;
        padding: 40px;
        align-items: center;
    }

    /* フッター */
    .footer_inner1 {
        width: 90%;
        font-size: 14px;
    }

    .footer_inner1 p {
        font-size: 14px;
    }

    footer nav ul {
        padding-left: 20px;
    }

}


/* 主要カテゴリーボタン　スマホのみ表示 */
@media screen and (max-width:767px) {

    .main_contents_sp {
        display: block;
    }

    .contents_wrap_2 {
        display: flex;
    }

    .business_2 {
        width: 100%;
        height: 70px;
        background-color: #e88523;
        color: #ffffff;
        padding: 5px 0;
        text-align: center;
        display: inline-block;
    }

    .ticket_2 {
        width: 100%;
        height: 70px;
        background-color: #2a67cd;
        color: #ffffff;
        padding: 5px 0;
        text-align: center;
        display: inline-block;
    }

    .facility_2 {
        width: 100%;
        height: 70px;
        background-color: #0c9370;
        color: #ffffff;
        padding: 5px 0;
        text-align: center;
        display: inline-block;
    }

    .facility_2 span {
        display: block;
        font-size: 10px;
    }

    .contents_box_2 {
        width: 300px;
        margin: 0;
    }

    .contents_box_2 h3 {
        display: inline-block;
        font-size: 10px;
        text-align: center;
        margin-top: 8px;
        font-weight: normal;
        line-height: 11px;
    }

    .business_2 img,
    .ticket_2 img,
    .facility_2 img {
        height: 50%;
        margin: 0 auto;
    }

}

/* ページ見出し */
.page_title {
    width: auto;
    height: 120px;
    background-image: url(../images/page_title_background.jpg);
    margin: auto;
    display: grid;
    place-items: center;
}

.page_title span {
    width: 100%;
    height: 120px;
    display: inline-block;
    background-color: rgb(60, 179, 113, 0.4);
    justify-content: center;
}

.page_title h1 {
    line-height: 120px;
    color: #fff;
    text-align: center;
    margin: 0;
}

/* TOPページ以外　PC、タブレットは表示 */
.main_contents_sp {
    display: none;
}

/* メイン上部　ページ案内 */
.return {
    width: 80%;
    max-width: 1000px;
    font-size: 12px;
    margin: 20px auto 60px auto;
}

.return a {
    text-decoration: none;
    margin-right: 10px;
    font-size: 12px;
    text-decoration: underline;
}

.return a::after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-left: 5px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform: rotate(45deg);
}

.arrow.-right::before {
    transform: rotate(45deg);
}


/* お知らせページ　↓ここから */
.news_wrap_2 {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto 160px auto;
}

.news_list_2 ul {
    padding-left: 0;
}

.news_list_2 ul li {
    list-style: none;
    border-bottom: dotted 2px #6eb3a1;
    margin: 40px 0;
    padding: 0;
    display: flex;
}

/* ページネーション */
.pagination {
    width: 100%;
    margin: 0 auto;
    vertical-align: middle;
    text-align: center;
    padding-left: 0px;
}

.pagination li {
    list-style-type: none;
    display: inline-block;
    border: solid 1px #aaaaaa;
    padding: 7px 14px;
    margin: 0 2px;
    border-radius: 3px;
    cursor: pointer;
}

.pagination .this {
    background-color: #cccccc;
}

.pagination li:hover {
    text-decoration: none;
    background-color: #eee;
}

/* 画面サイズ　767px　お知らせページ */
@media screen and (max-width:767px) {

    .page_title h1 {
        font-size: 20px;
        line-height: 80px;
    }

    .page_title {
        height: 80px;
    }

    .page_title span {
        height: 80px;
    }


    .main_contents_sp {
        display: none;
    }

    .return {
        width: 95%;
        margin: 20px auto 20px auto;
    }

    .return span {
        font-size: 10px;
    }

    .return a {
        font-size: 10px;
    }

    .news_wrap_2 {
        width: 95%;
        margin: 40px auto 100px auto;
    }

    .pagination li {
        padding: 14px 12px;
        margin: 0;
    }

}

.news_contents {
    margin-bottom: 60px;
}

.news_contents h2 {
    border-bottom: 2px solid #43665c;
    margin-bottom: 20px;
    text-align: left;
}

.news_box a {
    text-decoration: underline;
    text-decoration-color: #00552e;
}

/* 画面サイズ　768px ～ 1024px お知らせページ */
@media screen and (min-width: 768px) and (max-width: 1024px) {

    .page_title h1 {
        font-size: 22px;
    }

    .return {
        width: 80%;
    }

    .news_wrap_2 {
        width: 80%;
    }

}

/* お知らせページ　↑ここまで */


/* ソウェルクラブについてページ 　↓ここから */
.whatssowel_wrap {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto 410px auto;
}

.explain_wrap_1 {
    background: linear-gradient(-10deg, #daf5e0 0%, #fcfae7 100%);
    margin-bottom: 60px;
    padding: 20px 18%;
}

.logo_blue {
    width: 180px;
    margin: 20px 0 30px 0;
}

.h3_wrap {
    display: flex;
}

.h3_wrap img {
    width: 50px;
}

.explain_wrap_2 h3 {
    margin: auto 0 auto 15px;
    color: #43665c;
}

.text_bpx {
    background-color: #ecfaef;
    margin-top: 20px;
    margin-left: 10px;
    margin-bottom: 40px;
}

.text_bpx a {
    text-decoration: underline;
    text-decoration-color: #00552e;
}

.text_bpx p {
    background-color: #ecfaef;
    mix-blend-mode: multiply;
    position: relative;
    padding: 20px 10px 10px 20px;
    top: -10px;
    right: 10px;
}

/* 画面サイズ　767px ソウェルクラブについてページ */
@media screen and (max-width:767px) {

    .whatssowel_wrap {
        width: 95%;
        margin: 40px auto 100px auto;
    }

    .explain_wrap_1 {
        margin-bottom: 60px;
        padding: 10px 5% 2px 5%;
    }

    .h3_wrap img {
        width: 40px;
        height: 40px;
    }

    .explain_wrap_1 h2,
    .explain_wrap_2 h3 {
        text-align: left;
        margin-left: 10px;
    }

    .h3_wrap span {
        font-size: 16px;
        display: inline-block;
    }
}

/* 画面サイズ　768px ～ 1150px ソウェルクラブについてページ */
@media screen and (min-width: 768px) and (max-width: 1024px) {

    .whatssowel_wrap {
        width: 80%;
    }

    .explain_wrap_1 {
        margin-bottom: 60px;
        padding: 10px 12% 10px 12%;
    }

}

/* ソウェルクラブについてページ 　↑ここまで */


/* 会員交流事業・お得なチケット情報ページ　↓ここから */
/* 会員交流事業ページ　見出し */
.page_title_busines {
    width: auto;
    height: 120px;
    background-image: url(../images/page_title_background_02.jpg);
    margin: auto;
    display: grid;
    place-items: center;
}

.page_title_busines span {
    width: 100%;
    height: 120px;
    display: inline-block;
    background-color: rgba(174, 123, 12, 0.4);
    justify-content: center;
}

.page_title_busines h1 {
    line-height: 120px;
    color: #fff;
    text-align: center;
    margin: 0;
}

/* お得なチケット情報　見出し */
.page_title_ticket {
    width: auto;
    height: 120px;
    background-image: url(../images/page_title_background_03.jpg);
    margin: auto;
    display: grid;
    place-items: center;
}

.page_title_ticket span {
    width: 100%;
    height: 120px;
    display: inline-block;
    background-color: rgba(35, 138, 222, 0.4);
    justify-content: center;
}

.page_title_ticket h1 {
    line-height: 120px;
    color: #fff;
    text-align: center;
    margin: 0;
}

.business_wrap {
    border-top: 2px dotted #FCD497;
    border-bottom: 2px dotted #FCD497;
    padding: 20px 0 40px 0;
    margin-bottom: -2px;
}

.ticket_wrap {
    border-top: 2px dotted #65BBE9;
    border-bottom: 2px dotted #65BBE9;
    padding: 20px 0 40px 0;
    margin-bottom: -2px;
}

.business_wrap h2 {
    height: auto;
    color: #e88523;
    text-align: center;
    position: relative;
    padding: 20px 0 40px 0;
    margin: 1.5em 0 0.5em 0;
}

.business_wrap h2:before {
    content: "";
    position: absolute;
    top: -18px;
    left: 50%;
    width: 150px;
    height: 100%;
    border-radius: 50%;
    border: 5px solid #a6ddb0;
    border-left-color: transparent;
    border-right-color: transparent;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.ticket_wrap h2 {
    height: auto;
    color: #2a67cd;
    text-align: center;
    position: relative;
    padding: 20px 0 40px 0;
    margin: 1.5em 0 0.5em 0;
}

.ticket_wrap h2:before {
    content: "";
    position: absolute;
    top: -18px;
    left: 50%;
    width: 150px;
    height: 100%;
    border-radius: 50%;
    border: 5px solid #a6ddb0;
    border-left-color: transparent;
    border-right-color: transparent;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.contents_wrap_3 {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
}

.business_box,
.ticket_box,
.facility_box
{
    display: flex;
    padding: 20px 0;
}

.business_box a,
.ticket_box a,
.facility_box a
 {
    text-decoration: underline;
    text-decoration-color: #00552e;
}

.business_img,
.ticket_img,
.facility_img
{
    width: 35%;
    height: auto;
}

.business_inner,
.business_inner_2,
.ticket_inner,
.ticket_inner_2,
.facility_inner
{
    width: 65%;
    margin-left: 20px;
}


.business_inner table,
.business_inner_2 table,
.ticket_inner table,
.ticket_inner_2 table,
.facility_inner table
 {
    width: 100%;
    height: auto;
    text-align: left;
    border-collapse: collapse;
}

.business_inner table th,
.business_inner_2 table th,
.ticket_inner table th,
.ticket_inner_2 table th,
.facility_inner table th
{
    line-height: 22px;
    background-color: #666;
    color: #fff;
    padding-left: 10px;
    font-weight: normal;
}

.business_inner table td {
    background-color: #f7efc6;
    padding: 10px;
}

.business_inner_2 table td {
    background-color: #FEECD2;
    padding: 10px;
}

.ticket_inner table td {
    background-color: #e3f2fd;
    padding: 10px;
}

.ticket_inner_2 table td {
    background-color: #e3fdfd;
    padding: 10px;
}

.business_btn {
    width: 220px;
    font-size: 16px;
    background-color: #eda53d;
    border-radius: 8px;
    margin: 10px auto 20px auto;
    cursor: pointer;
    text-align: center;
}

.arrow_right {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    line-height: 1;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    border-width: 0.4em 0.6em;
    border-left-color: currentColor;
    border-right: 0;
    margin-left: 15px;
}

.arrow_right:hover {
    left: 5px;
}

.business_btn a {
    padding: 15px 40px;
    display: block;
    text-decoration: none;
    color: #fff;
}

.business_btn:hover {
    background-color: #e48f15;
    transition: 0.2s ease-in-out;
}

.business_btn a:hover {
    color: #fff;
}

/* 画面サイズ　767px　会員交流事業・お得なチケット情報ページ・うれしんしゅう詳細 */
@media screen and (max-width:767px) {

    .page_title_busines h1,
    .page_title_ticket h1,
    .page_title_facility h1 {
        font-size: 20px;
        line-height: 80px;
    }

    .page_title_busines,
    .page_title_ticket,
    .page_title_facility {
        height: 80px;
    }

    .page_title_busines span,
    .page_title_ticket span,
    .page_title_facility span {
        height: 80px;
    }

    .contents_wrap_3 {
        width: 95%;
        margin: 0 auto 0 auto;
    }

    .business_wrap,
    .ticket_wrap,
    .facility_wrap,
    .facility_wrap_2
    {
        padding: 20px 0 40px 0;
    }

    .business_box,
    .ticket_box,
    .facility_box
    {
        display: block;
        padding-top: 0;
    }

    .business_img,
    .ticket_img,
    .facility_img
    {
        width: 80%;
        height: auto;
        margin: 0 auto;
    }

    .business_inner,
    .business_inner_2,
    .ticket_inner,
    .ticket_inner_2,
    .facility_inner,
    .facility_inner_2
    {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }

    .business_inner table th,
    .business_inner_2 table th .ticket_inner table th,
    .ticket_inner_2 table th {
        padding-left: 5px;
    }

    .business_inner table td,
    .business_inner_2 table td,
    .ticket_inner table td,
    .ticket_inner_2 table td {
        padding: 15px 5px;
    }

    .business_btn {
        width: 300px;
    }

}

/* 画面サイズ　768px ～ 1150px 会員交流事業・お得なチケット情報ページ */
@media screen and (min-width: 768px) and (max-width: 1024px) {

    .page_title_busines h1,
    .page_title_ticket h1,
    .page_title_facility h1 {
        font-size: 22px;
    }
}


/* 申し込みページへのボタン */
.business_btn_2 {
    width: 100%;
    font-size: 16px;
    background-color: #ff6a1a;
    border-radius: 8px;
    margin: 10px auto 10px auto;
    cursor: pointer;
    text-align: center;
}

.business_btn_2 a {
    padding: 15px 40px;
    display: block;
    text-decoration: none;
    color: #fff;
}

.business_btn_2:hover {
    background-color: #ea5506;
    transition: 0.2s ease-in-out;
}

.business_btn_2 a:hover {
    color: #fff;
}

/* 申し込み終了のボタン */
.business_btn_closed {
    width: 100%;
    font-size: 16px;
    background-color: #a9a9a9;
    border-radius: 8px;
    margin: 10px auto 10px auto;
    text-align: center;
    padding: 15px 40px;
    display: block;
    text-decoration: none;
    color: #fff;
}

/* PDFダウンロードボタン */
.business_btn_3 {
    width: 100%;
    font-size: 16px;
    background-color: #fff;
    border: #adadad 1px solid;
    border-radius: 8px;
    margin: 20px auto 10px auto;
    cursor: pointer;
    text-align: center;
}

.business_btn_3 a {
    padding: 8px 30px;
    display: block;
    text-decoration: none;
    color: #333;
}

.business_btn_3:hover {
    background-color: #e6e6e6;
    transition: 0.2s ease-in-out;
}

.business_btn_3 a:hover {
    color: #333;
}

.business_btn_3 a[href*=".pdf"]:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: 34px;
    margin-right: 10px;
    background-image: url(../images/pdf_icon.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 25px auto;
}

/* 会会員交流事業・お得なチケット情報ページ　↑ここまで */


/* 申し込みページ 　↓ここから */
.application table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.application table th {
    width: 190px;
    border: solid 1px #43665c;
    color: #458046;
    background-color: #f1feef;
    text-align: left;
    padding: 13px 10px;
    font-size: 15px;
}

.application table td {
    width: auto;
    border: solid 1px #43665c;
    padding: 13px 10px;
}

.application table p {
    margin: 3px 0;
}

.application table span {
    font-size: 13px;
    margin: 0;
}

table input {
    height: 30px;
    margin: 3px 3px 3px 0;
}

table label {
    height: 30px;
    margin: 3px 3px 3px 0;
    line-height: 30px;
}

.radio input {
    vertical-align: middle;
    height: auto;
    margin-right: 5px;
}

.text_1 {
    width: 100px;
    margin: auto 0 auto 3px;
}

.text_2 {
    width: 160px;
    margin-right: 0;
}

.text_3 {
    width: 100%;
}

.text_5 {
    width: 50px;
}

.text_6 {
    width: 60px;
    margin-left: 3px;
}

.text_7 {
    width: 100%;
    margin-top: 13px;
}

.text_8 {
    width: 160px;
    margin-right: 20px;
}

.text_9 {
    width: 160px;
    margin: 3px 8px 3px 0;
}

.linebreak {
    display: inline;
}

textarea {
    width: 100%;
    height: 70px;
    margin: 3px 3px 3px 0;
    display: block;
}

.companion {
    display: block;
}

.companion_name {
    margin-top: 13px;
}

.companion_name label {
    display: block;
}

select {
    height: 30px;
    margin-left: 5px;
}

/* 申し込み確認ボタン */
.business_btn_4 {
    width: 300px;
    font-size: 16px;
    background-color: #ff6a1a;
    border-radius: 8px;
    margin: 10px auto 10px auto;
    cursor: pointer;
    text-align: center;
}

.business_btn_4 a {
    padding: 15px 40px;
    display: block;
    text-decoration: none;
    color: #fff;
}

.business_btn_4:hover {
    background-color: #ea5506;
    transition: 0.2s ease-in-out;
}

.business_btn_4 a:hover {
    color: #fff;
}

.confirmation_btn_wrap {
    text-align: center;
    margin-top: 20px;
}

/* 画面サイズ　767px 申し込みページ */
@media screen and (max-width:767px) {

    .application table th {
        width: 100%;
        padding: 5px 8px;
        display: block;
    }

    .application table td {
        width: 100%;
        padding: 10px 8px;
        display: block;
    }

    .application table span {
        font-size: 12px;
        margin: 0;
        display: block;
    }

    table input {
        height: 25px;
    }

    table label {
        height: 25px;
    }

    .text_1 {
        width: 100px;
    }

    .text_2 {
        width: 140px;
    }

    .text_3 {
        width: 100%;
    }

    .text_5 {
        width: 50px;
    }

    .text_6 {
        width: 60px;
    }

    .text_7 {
        width: 100%;
    }

    .text_8 {
        width: 140px;
    }

    .text_9 {
        width: 140px;
    }

    .linebreak {
        display: block;
    }
}

/* 画面サイズ　768px ～ 1150px 申し込みページ */
@media screen and (min-width: 768px) and (max-width: 1024px) {

    .contents_wrap_3 {
        width: 80%;
    }

    .business_btn_3 a {
        padding: 8px 5px;
    }

    .application table th {
        width: 160px;
        font-size: 14px;
        padding: 5px 3px;
    }

    .application table td {
        width: auto;
        padding: 5px 3px;
    }

    .application table span {
        font-size: 12px;
    }

    .companion_name {
        margin-top: 5px;
    }

    .linebreak {
        display: block;
    }
}

/* 申し込みページ 　↑ここまで */


/* 会員特典サービスうれしんしゅうページ 　↓ここから */
.page_title_facility {
    width: auto;
    height: 120px;
    background-image: url(../images/page_title_background_04.jpg);
    margin: auto;
    display: grid;
    place-items: center;
}

.page_title_facility span {
    width: 100%;
    height: 120px;
    display: inline-block;
    background-color: rgba(6, 79, 23, 0.4);
    justify-content: center;
}

.page_title_facility h1 {
    line-height: 120px;
    color: #fff;
    text-align: center;
    margin: 0;
}

.facility_wrap,
.facility_wrap_2
{
    border-top: 2px dotted #a6ddb0;
    border-bottom: 2px dotted #a6ddb0;
    padding: 20px 0 40px 0;
    margin-bottom: -2px;
}

.facility_wrap h2,
.facility_wrap_2 h2
 {
    height: auto;
    color: #0c9370;
    text-align: center;
    position: relative;
    padding: 20px 0 40px 0;
    margin: 1.5em 0 0.5em 0;
}

.facility_wrap h2:before,
.facility_wrap_2 h2::before
{
    content: "";
    position: absolute;
    top: -18px;
    left: 50%;
    width: 150px;
    height: 100%;
    border-radius: 50%;
    border: 5px solid #a6ddb0;
    border-left-color: transparent;
    border-right-color: transparent;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.facility_wrap p,
.facility_wrap_2 p
 {
    font-size: 14px;
}

.facility_wrap table,
.facility_wrap_2 table
{
    width: 100%;
    height: auto;
    border-collapse: collapse;
    margin: 0 0 50px 0;
}

.facility_wrap table th,
.facility_wrap_2 table th
 {
    background-color: #666;
    color: #fff;
    padding: 0 10px;
    font-weight: normal;
    text-align: left;
    border: 1px solid #fff;
}

.facility_wrap table a,
.facility_wrap_2 table a
{
    text-decoration: underline;
    text-decoration-color: #00552e;
}

.business_name {
    width: 28%;
}

.place {
    width: 18%;
}

.tel {
    width: 140px;
}

.facility_wrap table td,
.facility_wrap_2 table td
{
    background-color: #e8fbe5;
    padding: 25px 10px;
    font-size: 15px;
    border: 1px solid #fff;
}

/* 画面サイズ　767px 会員特典サービスページ */
@media screen and (max-width:767px) {

    .page_title_facility h1 {
        font-size: 20px;
        line-height: 80px;
    }

    .page_title_facility {
        height: 80px;
    }

    .page_title_facility span {
        height: 80px;
    }

    .facility_wrap table,
    .facility_wrap_2 table
    {
        margin: 0 0 50px 0;
    }

    .facility_wrap p,
    .facility_wrap_2 p
    {
        font-size: 11px;
    }

    .facility_wrap table th {
        display: none;
    }

    .facility_wrap table td,
    .facility_wrap_2 table td
     {
        display: block;
        padding: 10px 10px;
        font-size: 14px;
    }

    .facility_wrap tr {
        border: 1px solid #00552e;
    }

    .facility_wrap span {
        font-weight: bold;
    }

}

/* 画面サイズ　768px ～ 1150px　会員特典サービスページ */
@media screen and (min-width: 768px) and (max-width: 1024px) {

    .page_title_facility h1 {
        font-size: 22px;
    }

    .facility_wrap table {
        margin: 0 0 50px 0;
    }

    .facility_wrap p {
        font-size: 11px;
    }

    .facility_wrap table td {
        padding: 10px 10px;
        font-size: 14px;
    }

    .facility_wrap tr {
        border: 1px solid #00552e;

    }

    .facility_wrap span {
        font-weight: bold;
    }

    .business_name {
        width: 25%;
    }

    .tel {
        width: 20%;
    }

}
/* 会員特典サービスうれしんしゅうページ 　↑ここまで */



/* Q＆A 　↓ここから */
.qanda_wrap {
    max-width: 1000px;
    margin: 0 auto 410px auto;
}

/*検索ボックス全体*/
.search {
    width: 300px;
    height: 35px;
    display: flex;
    justify-content: center;
    border: solid 2px #c0c0c0;
    margin: 0 0 10px auto;
    border-radius: 4px;
}

/*入力フォーム*/
.search input {
    width: 370px;
    padding: 0 15px;
    border-radius: initial;
    background: transparent;
    border: none;
    outline: 0;
}

/*検索ボタン*/
.search a {
    width: 50px;
    background-image: url(../images/search.png);
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: 50%;
    background-color: #fff;
    border-radius: initial;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: block;
}

.qanda_box {
    width: 100%;
    border-top: dotted 2px #6eb3a1;
    border-bottom: dotted 2px #6eb3a1;
    margin-bottom: -2px;
    padding: 30px 20px;
}

.question h3 {
    color: crimson;
    font-size: 24px;
    margin: 0 20px 0 0;
}

.answer h3 {
    color: #43665c;
    font-size: 24px;
    margin: 0 20px 0 0;
}

.question {
    margin-bottom: 30px;
    display: flex;
}

.answer {
    display: flex;
}

.qanda_box p {
    margin: 0;
}

.qanda_box  a {
    text-decoration: underline;
    text-decoration-color: #00552e;
}

/* 画面サイズ　767px Q＆A */
@media screen and (max-width:767px) {

    .qanda_box {
        padding: 30px 0px;
    }

    .question h3 {
        color: crimson;
        font-size: 24px;
        margin: 0 10px 0 0;
    }
    
    .answer h3 {
        color: #43665c;
        font-size: 24px;
        margin: 0 10px 0 0;
    }

    /*検索ボックス全体*/
.search {
    width: 300px;
    height: 35px;
    display: flex;
    justify-content: center;
    border: solid 2px #c0c0c0;
    margin: 0 auto 10px 0;
    border-radius: 4px;
}

}

/* 画面サイズ　768px ～ 1150px　Q＆A */
@media screen and (min-width: 768px) and (max-width: 1024px) {

    .qanda_box {
        padding: 30px 0;
    }

}
/* Q＆A 　↑ここまで */



/* お問い合わせページ 　↓ここから */
.contact_wrap {
    padding: 0 0 40px 0;
}

.comment {
    text-align: center;
    color: #00552e;
    font-weight: bold;
    margin: 0 auto 60px;
}

.contact_wrap table {
    width: 100%;
    border-collapse: collapse;
}

.contact_item,
.contact_body,
.contact_body_1
 {
    padding: 20px 3%;
    border: 1px dotted #63bd55;
    border-right: none;
    border-left: none;
    height: auto;
}

.contact_body input {/* アンケートページ ラジオボタン */
    height: 30px;
    margin: 5px;
    vertical-align: middle;
}

.contact_body textarea {/* アンケートページ テキストエリア*/
    margin: 5px;
}

.contact_body_1 input {
    width: 400px;
    height: 30px;
}

.contact_item {
    text-align: left;
    width: 330px;
    padding-left: 8%;
}

.contact_body {
    width: 700px;
    text-align: left;
    padding-right: 8%;
}

.contact_wrap table th {
    font-weight: normal;
}

.contact_wrap table td {
    margin: 0 auto;
}

.contact_body_1 input {
    width: 400px;
    height: 30px;
}

.contact_wrap textarea {
    width: 500px;
}

.required::after {
    content: "必須";
    color: #ffffff;
    background: #fa6355;
    font-size: 0.7em;
    padding: 0.2em;
    margin-left: 10px;
}

.contact_wrap table span {
    font-size: 13px;
}

.send {
    text-align: center;
    margin: 40px 0;
}

.send p a {
    text-decoration: underline;
    text-decoration-color: #00552e;
}

.checkbox {
    width: 300px;
    background-color: #8ac3b4;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    padding: 15px 40px;
}

.send input {
    width: auto;
    margin-right: 20px;
  }

  .box {
    width: 100%; 
    height: 200px;
    border: 1px solid #333; 
    overflow-y: scroll;
    margin-bottom: 20px;
  }

  
  .send .privacypolicy_wrap {
    padding: 10px 0;
  }

  .send .comment {
    margin-bottom: 25px;
  }

  .send .privacypolicy_box p {
    text-align: left;
  }

  .contact_wrap p {
    text-align: center;
  } 

  .send .privacypolicy_box {
    margin: 5px 0;
  }


/* 画面サイズ　767px お問い合わせページ */
@media screen and (max-width:767px) {

    .comment {
        text-align: left;
        margin: 0 auto 20px auto;
    }

    .contact_wrap table {
        border: 1px dotted #63bd55;
        border-right: none;
        border-left: none;
    }

    .contact_wrap table th {
        padding: 10px 0 0 0;
        display: block;
        border: none;
    }

    .contact_wrap table td {
        padding: 10px 0;
        display: block;
        border-top: none;
        margin-bottom: -1px;
    }

    .contact_item {
        text-align: left;
        width: auto;
        padding: 0;
    }

    .contact_body {
        width: 100%;
        text-align: left;
        padding: 0;
    }
    
    .contact_body {
        display: flex;
    }


    .contact_wrap table span {
        font-size: 12px;
        display: block;
    }

    .contact_body_1 input {
        width: 100%;
    }

    .contact_wrap textarea {
        width: 100%;
    }

    .send input {
        width: auto;
        margin-right: 20px;
      }

    .send p {
        text-align: left;
    }

    .send .privacypolicy_box p {
        text-align: left;
      }    

    .send .privacypolicy_box p {
        margin-bottom: 5px;
      } 
      
    .send .privacypolicy_wrap span p {
        text-align: right;
    } 

}

/* 画面サイズ　768px ～ 1150px　お問い合わせページ */
@media screen and (min-width: 768px) and (max-width: 1024px) {

    .comment {
        margin: 0 auto 20px auto;
    }

    .contact_wrap table {
        border: 1px dotted #63bd55;
        border-right: none;
        border-left: none;
    }

    .contact_wrap table th {
        padding: 10px 10% 0 10%;
        display: block;
        border: none;
    }

    .contact_wrap table td {
        padding: 10px 10% 10px 10%;
        display: block;
        border-top: none;
        margin-bottom: -1px;
    }

    .contact_item {
        text-align: left;
        width: auto;
        padding: 0;
    }

    .contact_body {
        width: 100%;
        text-align: left;
        padding: 0;
    }

    .contact_wrap table span {
        font-size: 12px;
        display: block;
    }

    .contact_body_1 input {
        width: 100%;
    }

    .contact_wrap textarea {
        width: 100%;
    }
    
    .send input {
        width: auto;
        margin-right: 20px;
      }

      .send p {
        text-align: left;
    }

    .send .privacypolicy_wrap span p {
        text-align: right;
    } 

}

/* お問い合わせページ 　↑ここまで */

/* 個人情報保護に関する方針 　↓ここから */
.privacypolicy_wrap {
    padding: 0 0 80px 0;
}

.privacypolicy_box {
    width: 100%;
    margin: 30px 0;
    display: flex;
    border-bottom: solid 3px #dbf5ed;
}

.privacypolicy_box h3 {
    width: 20px;
    color: #43665c;
    padding: 5px 10px;
    /*文字周りの余白*/
}

.privacypolicy_box p {
    margin: 5px 0 5px 30px;
}

.privacypolicy_wrap span {
    text-align: right;
}

.privacypolicy_wrap span p {
    margin: 0;
}


/* 画面サイズ　767px 個人情報保護に関する方針 */
@media screen and (max-width:767px) {
    .privacypolicy_box p {
        margin: 5px 0 15px 15px;
    }

    .privacypolicy_wrap {
        padding: 0 0 60px 0;
    }

    .privacypolicy_box {
        width: 100%;
        margin: 15px 0;
    }

}

/* 画面サイズ　768px ～ 1150px　お問い合わせページ */
@media screen and (min-width: 768px) and (max-width: 1024px) {

    .privacypolicy_box {
        width: 100%;
        margin: 15px 0;
    }
}
/* 個人情報保護に関する方針 　↑ここまで */

