@charset "UTF-8";

#wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}
.header {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9990;
    transition: all linear 0.3s;
}
.is_fixed_s .header {
    top: -200px;
}
.is_fixed .header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0px;
    z-index: 9000;
}
.header__inner {
    width: 100%;
    padding: 15px;
}
.is_fixed .header__inner {
    background-color: rgba(0,0,0,0.8);
}
header {
    float: left;
}
.header__sitelogo {
    width: 220px;
}
.header__sitelogo img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
.header__inner {
    padding: 10px;
}
.header__sitelogo {
    width: 134px;
}
}

.header__nav {
    float: right;
    margin-right: 50px;
}
.header__nav ul li {
    display: inline-block;
    line-height: 40px;
    vertical-align: middle;
}
.header__nav_faq {
    font-size: 13px;
}
.header__nav_faq a {
    color: #ffffff;
}
.header__nav_tel {
    color: #ffffff;
    font-size: 20px;
    margin: 0 5px 0 15px;
}
.header__nav_tel a {
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 768px) {
.header__nav {
    float: right;
    margin-right: 35px;
}
.header__nav ul li {
    line-height: 28px;
}
.header__nav ul li.header__nav_faq,
.header__nav ul li.header__nav_tel {
    display: none;
}
}

.header__nav_button {
    cursor: pointer;
    padding: 6px;
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 9999;
}
.header__nav_button_inner {
    position: relative;
    display: block;
    width: 36px;
    height: 28px;
    border: 2px solid #fff;
    border-width: 2px 0;
}
.header__nav_button_inner::before,
.header__nav_button_inner::after {
    position: absolute;
    top: 10px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 2px;
    content: "";
    transition: all linear 0.08s;
    background-color: #fff;
}
.is_open .header__nav_button_inner {
    border-width: 0;
}
.is_open .header__nav_button_inner::before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.is_open .header__nav_button_inner::after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media (max-width: 768px) {
.header__nav_button {
    cursor: pointer;
    padding: 6px;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 9999;
}
.header__nav_button_inner {
    width: 24px;
    height: 21px;
}
.header__nav_button_inner::before,
.header__nav_button_inner::after {
    position: absolute;
    top: 7px;
    left: 0;
}
}

.header__mnav__area {
    background-color: rgba(0,0,0,0.85);
    position: absolute;
    top: 0;
    right: 0px;
    z-index: 9900;
    width: 300px;
    padding: 60px 15px 60px;
    transition: all linear 0.08s;
    height: 100vh;
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "Meiryo UI", "ＭＳ Ｐゴシック", sans-serif;
    display: none;
}
.is_open .header__mnav__area {
    right: 0;
    display: block;
}
.header__mnav__list > li {
    font-size: 16px;
    border-bottom: #474747 solid 1px;
    list-style: none;
}
.header__mnav__list > li.has_sub {
    padding-right: 20px;
    position: relative;
}
.header__mnav__list > li.has_sub:after {
    content: "";
    position: absolute;
    right: 0;
    top: 15px;
    width: 10px;
    height: 6px;
    display: inline-block;
    background-image: url(../images/nav_arrow_w.png);
    background-size: cover;
}
.header__mnav__list > li > a {
    color: #b99505;
    text-decoration: none;
    padding: 10px 0;
    display: block;
}
.header__mnav_sub_list {
    margin-bottom: 15px;
    font-size: 0;
}
.header__mnav_sub_list > li {
    color: #ffffff;
    display: block;
    width: 100%;
    font-size: 14px;
}
.header__mnav_sub_list > li > a {
    color: #ffffff;
    text-decoration: none;
    padding: 8px 0;
    display: block;
}

@media (max-width: 768px) {
.header__mnav__area {
    width: 230px;
    padding: 45px 15px 60px;
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "Meiryo UI", "ＭＳ Ｐゴシック", sans-serif;
}
.header__mnav__list > li {
    font-size: 12px;
    border-bottom: #474747 solid 1px;
}
.header__mnav__list > li.has_sub {
    padding-right: 20px;
    position: relative;
}
.header__mnav__list > li.has_sub:after {
    content: "";
    position: absolute;
    right: 0;
    top: 15px;
    width: 10px;
    height: 6px;
    display: inline-block;
    background-image: url(../images/nav_arrow_w.png);
    background-size: cover;
}
.header__mnav__list > li > a {
    color: #b99505;
    text-decoration: none;
    padding: 10px 0;
    display: block;
}
.header__mnav_sub_list {
    margin-bottom: 15px;
    font-size: 0;
}
.header__mnav_sub_list > li {
    color: #ffffff;
    display: block;
    width: 100%;
    font-size: 11px;
}
.header__mnav_sub_list > li > a {
    color: #ffffff;
    text-decoration: none;
    padding: 8px 0;
    display: block;
}
}

.header__gnav {
    display: none;
    width: 100%;
    background-color: rgba(255,255,255,0.7);
    text-align: center;
    padding: 18px 0;
}
.is_fixed .header__gnav {
    display: block;
}
.header__nav__area .header__nav__list > li {
    display: inline-block;
    color: #333333;
    margin: 0 15px;
    font-size: 16px;
    position: relative;
}
.header__nav__area .header__nav__list > li.has_sub {
    padding-right: 20px;
}
.header__nav__area .header__nav__list > li.has_sub:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 10px;
    height: 6px;
    display: inline-block;
    background-image: url(../images/nav_arrow.png);
    background-size: cover;
    margin-top: -3px;
}
.header__nav__area .header__nav__list > li > a {
    color: #333333;
    text-decoration: none;
}
.header__nav__area .header__nav__list > li > a:hover {
    text-decoration: underline;
}

.header__nav_sub_list {
    position: absolute;
    left: 50%;
    top: 42px;
    margin-left: -80px;
    z-index: 9999;
    width: 160px;
    background-color: rgba(0,0,0,0.8);
    padding: 10px;
    transition: all linear 0.1s;
    opacity: 0;
    display: none;
}
.is_active .header__nav_sub_list {
    display: block;
    opacity: 1;
}
.header__nav_sub_list > li {
    display: block;
    color: #ffffff;
    margin: 0px;
    font-size: 13px;
    width: 100%;
    text-align: left;
}
.header__nav_sub_list > li > a {
    color: #ffffff;
    text-decoration: none;
    padding: 5px 0;
    display: block;
}
.header__nav_sub_list > li > a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
.is_fixed .header__gnav {
    display: none;
}
}


/* main */
.main {
    background-image: url(../images/main_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    display: block;
    text-align: center;
    color: #ffffff;
}
.main__visual {
    height: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    margin: auto;
    width: 100%;
    display: block;
}
.main__visual video {
    display: block;
    margin-left: 0;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -50%;
}
.main__inner {
    display: table;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9000;
}
.main__title_area {
    display: table-cell;
    vertical-align: middle;
    position: relative;
}
.main__title {
    text-align: center;
    width: 564px;
    margin: 0 auto 30px;
}
.main__title img {
    width: 100%;
    height: auto;
}
.main__subtitle {
    font-size: 20px;
}

@media (max-width: 768px) {
.main__visual {
    display: none;
}
.main__title {
    text-align: center;
    width: 90%;
    margin: 0 auto 15px;
}
.main__subtitle {
    font-size: 11px;
}
}

.main__link {
    position: absolute;
    bottom: 32px;
    left: 50%;
    margin-left: -29px;
    z-index: 9000;
}
.main__link__button {
    width: 58px;
    height: 52px;
    display: inline-block;
    background-image: url(../images/main_link.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.main__link__button span {
    display: none;
}

@media (max-width: 768px) {
.main__link {
    position: absolute;
    bottom: 32px;
    left: 50%;
    margin-left: -24px;
}
.main__link__button {
    width: 49px;
    height: 42px;
    display: inline-block;
    background-image: url(../images/main_link_s.png);
    background-size: cover;
    background-repeat: no-repeat;
}
}


/* chapel */
.chapel {
    background-image: url(../images/chapel_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 732px;
}
.chapel__main {
    position: relative;
    width: 100%;
    height: 732px;
}
.chapel__img {
    width: 100%;
    display: none;
}
.chapel__img img {
    width: 100%;
    height: auto;
}
.chapel__caption {
    width: 390px;
    position: absolute;
    right: 130px;
    bottom: 90px;
    background-color: rgba(255,255,255,0.75);
    padding: 40px 20px;
    font-size: 16px;
}
.chapel__title {
    margin: 0 0 20px;
    width: 162px;
}
.chapel__title img {
    width: 100%;
    height: auto;
}
.chapel__subtitle {
    margin: 0 0 30px;
    line-height: 2;
}

@media (max-width: 768px) {
.chapel {
    background: none;
    background-color: #f2f2f2;
    width: 100%;
    height: auto;
}
.chapel__main {
    position: relative;
    width: 100%;
    height: auto;
}
.chapel__img {
    display: block;
}
.chapel__caption {
    width: 100%;
    position: static;
    right: 0px;
    bottom: auto;
    background:none;
    padding: 34px 15px 37px;
    font-size: 12px;
    text-align: center;
}
.chapel__title {
    margin: 0 auto 8px;
    width: 106px;
}
.chapel__subtitle {
    margin: 0 0 20px;
    line-height: 2;
}
}


/* banquets */
.banquets {
    background-color: #ffffff;
    width: 100%;
    text-align: center;
    padding-top: 78px;
    position: relative;
}
.banquets__title {
    margin: 0 auto 20px;
    width: 204px;
}
.banquets__title img {
    width: 100%;
    height: auto;
}
.banquets__txt {
    font-size: 20px;
    margin-bottom: 35px;
}
.banquets__title__logo {
    position: absolute;
    right: 20px;
    top: 60px;
    width: 260px;
}
.banquets__title__logo img {
    width: 100%;
    height: auto;
}
.banquets__list_area {
    width: 100%;
}
.banquets__list_area .banquets__list {
    width: 100%;
    display: table;
    min-height: 570px;
}
.banquets__list_img {
    width: 50%;
    display: table-cell;
    min-height: 570px;
}
.banquets_gr .banquets__list_img {
    background-image: url(../images/banquets_bg_gr.png);
    background-size: cover;
    background-position: center;
}
.banquets_br .banquets__list_img {
    background-image: url(../images/banquets_bg_br.png);
    background-size: cover;
    background-position: center;
}
.banquets__list_img_s {
    display: none;
}
.banquets__list_img_s img {
    width: 100%;
    height: auto;
}
.banquets__list_cap {
    width: 50%;
    display: table-cell;
    text-align: left;
    vertical-align: middle;
    padding: 60px;
    min-height: 570px;
}
.banquets__list__title {
    margin: 0 0 15px;
}
.banquets__list_cap .banquet_list__title_s {
    margin-bottom: 40px;
}
.banquets_gr .banquets__list__title {
    width: 241px;
}
.banquets_br .banquets__list__title {
    width: 284px;
}
.banquets__list__title img {
    width: 100%;
    height: auto;
}
.banquets__list__text {
    line-height: 2;
    margin-bottom: 40px;
    font-size: 16px;
}

@media (max-width: 768px) {
.banquets {
    padding-top: 26px;
}
.banquets__title {
    margin: 0 auto 6px;
    width: 142px;
}
.banquets__txt {
    font-size: 12px;
    margin-bottom: 20px;
    padding: 0 15px;
}
.banquets__title__logo {
    position: static;
    right: 0px;
    top: 0px;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}
.banquets__title__logo img {
    width: 120px;
    height: auto;
}
.banquets__list_area .banquets__list {
    width: 100%;
    display: block;
    min-height: auto;
}
.banquets__list_img {
    display: none;
}
.banquets__list_img_s {
    display: block;
}
.banquets__list_cap {
    width: 100%;
    display: block;
    text-align: center;
    vertical-align: top;
    padding: 0;
    min-height: auto;
}
.banquets__list__title {
    margin: 0 auto 19px;
}
.banquets_gr .banquets__list__title {
    width: 172px;
}
.banquets_br .banquets__list__title {
    width: 200px;
}
.banquets__list__text_area {
    width: 100%;
    padding: 15px 15px 30px;
    background-color: #f2f2f2;
    margin-bottom: 25px;
}
.banquets__list__text {
    width: 100%;
    line-height: 2;
    margin-bottom: 20px;
    font-size: 11px;
}
}


/* cuisine */
.cuisine {
    background-image: url(../images/cuisine_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 732px;
}
.cuisine__main {
    position: relative;
    width: 100%;
    height: 732px;
}
.cuisine__img {
    width: 100%;
    display: none;
}
.cuisine__img img {
    width: 100%;
    height: auto;
}
.cuisine__caption {
    width: auto;
    position: absolute;
    left: 130px;
    bottom: 90px;
    background-color: rgba(255,255,255,0.75);
    padding: 40px 30px;
    font-size: 16px;
}
.cuisine__title {
    margin: 0 0 20px;
    width: 162px;
}
.cuisine__title img {
    width: 100%;
    height: auto;
}
.cuisine__subtitle {
    margin: 0 0 30px;
    line-height: 2;
}

@media (max-width: 768px) {
.cuisine {
    background: none;
    background-color: #f2f2f2;
    width: 100%;
    height: auto;
}
.cuisine__main {
    width: 100%;
    height: auto;
}
.cuisine__img {
    display: block;
}
.cuisine__caption {
    width: 100%;
    position: static;
    left: 0px;
    bottom: 0px;
    background: none;
    padding: 34px 15px 37px;
    font-size: 12px;
    text-align: center;
}
.cuisine__title {
    margin: 0 auto 8px;
    width: 120px;
}
.cuisine__subtitle {
    margin: 0 0 20px;
    line-height: 2;
}
}


/* topics */
.topics {
    background-color: #ffffff;
    width: 100%;
    text-align: center;
    padding-top: 78px;
    padding-bottom: 75px;
}
.topics__title {
    margin: 0 auto 20px;
    width: 130px;
}
.topics__title img {
    width: 100%;
    height: auto;
}
.topics__txt {
    font-size: 18px;
    margin-bottom: 35px;
}
.topics__list_area {
    width: 100%;
    max-width: 1032px;
    margin: 0 auto 34px;
    display: table;
}
.topics__list_area .topics__list {
    width: 33%;
    display: table-cell;
    text-align: left;
    list-style: none;
    border-left: #dbdbdb solid 1px;
    padding: 30px;
}
.topics__list_area .topics__list:first-child {
    border-left: none;
}
.topics__list_date {
    color: #917503;
    font-size: 14px;
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "Meiryo UI", "ＭＳ Ｐゴシック", sans-serif;
    margin-bottom: 10px;
}
.topics__list_txt {
    font-size: 14px;
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "Meiryo UI", "ＭＳ Ｐゴシック", sans-serif;
}
.topics__list_txt a {
    color: #000000;
    text-decoration: none;
}
.topics__list_txt a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
.topics {
    padding-top: 33px;
    padding-bottom: 30px;
}
.topics__title {
    margin: 0 auto 7px;
    width: 130px;
}
.topics__txt {
    font-size: 11px;
    margin-bottom: 17px;
}
.topics__list_area {
    width: 100%;
    margin: 0 auto 20px;
    display: block;
    border-top: #dbdbdb solid 1px;
}
.topics__list_area .topics__list {
    width: 100%;
    display: block;
    text-align: left;
    list-style: none;
    border-left: none;
    padding: 18px 10px;
    border-bottom: #dbdbdb solid 1px;
}
.topics__list_date {
    color: #917503;
    font-size: 10px;
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "Meiryo UI", "ＭＳ Ｐゴシック", sans-serif;
    margin-bottom: 4px;
}
.topics__list_txt {
    font-size: 11px;
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "Meiryo UI", "ＭＳ Ｐゴシック", sans-serif;
}
}


/* fair plan */
.fair {
    background-color: #f2f2f2;
    width: 100%;
    text-align: center;
    padding-top: 78px;
    padding-bottom: 75px;
}
.fair__title {
    margin: 0 auto 20px;
    width: 252px;
}
.fair__title img {
    width: 100%;
    height: auto;
}
.fair__txt {
    font-size: 16px;
    margin-bottom: 35px;
}
.fair__title_s {
    font-size: 22px;
    font-weight: normal;
    color: #b99505;
    max-width: 1000px;
    margin: 0 auto 20px;
}
.fair__list_area {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 34px;
}
.fair__list_area .fair__list {
    width: 32%;
    padding: 0 2% 0 3%;
    float: left;
    text-align: left;
    list-style: none;
    margin-bottom: 20px;
}
.fair__list a {
    color: #000000;
    text-decoration: none;
}
.fair__list a:hover * {
    opacity: 0.7;
}
.fair__list_img {
    margin-bottom: 10px;
}
.fair__list_img img {
    border-radius: 50%;
    width: 270px;
    height: 270px;
}
.fair__list_date {
    color: #917503;
    font-size: 14px;
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "Meiryo UI", "ＭＳ Ｐゴシック", sans-serif;
    margin-bottom: 10px;
}
.fair__list_date span {
    color: #000000;
}
.fair__list_txt {
    font-size: 14px;
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "Meiryo UI", "ＭＳ Ｐゴシック", sans-serif;
}

@media (max-width: 768px) {
.fair {
    padding-top: 30px;
    padding-bottom: 34px;
}
.fair__title {
    margin: 0 auto 8px;
    width: 165px;
}
.fair__txt {
    font-size: 11px;
    margin-bottom: 14px;
}
.fair__title_s {
    font-size: 16px;
    font-weight: normal;
    color: #b99505;
    max-width: 1000px;
    margin: 0 auto 20px;
}
.fair__list_area {
    margin: 0 auto 16px;
}
.fair__list_area .fair__list {
    width: 100%;
    float: none;
    padding: 0 40px 0;
    margin-bottom: 15px;
}
.fair__list_img {
    margin-bottom: 10px;
}
.fair__list_img img {
    border-radius: 50%;
    width: 100%;
    height: auto;
}
.fair__list_date {
    font-size: 10px;
    margin-bottom: 5px;
}
.fair__list_txt {
    line-height: 14px;
    height: 42px;
    font-size: 11px;
}
}


/* contact */
.contact {
    background-color: #ffffff;
    background-image: url(../images/contact_bg.png);
    background-size: cover;
    background-position: center;
    width: 100%;
    text-align: center;
    padding-top: 78px;
    padding-bottom: 102px;
}
.contact__title {
    margin: 0 auto 20px;
    width: 170px;
    color: #ffffff;
}
.contact__title img {
    width: 100%;
    height: auto;
}
.contact__txt {
    font-size: 16px;
    margin-bottom: 50px;
    color: #ffffff;
    font-weight: normal;
}
.contact__txt2 {
    font-size: 14px;
    color: #ffffff;
    font-weight: normal;
    width: 100%;
    max-width: 810px;
    margin: 0 auto;
}

.contact__enkai {
    width: 100%;
    max-width: 810px;
    margin: 0 auto;
    opacity: 0.9;
}

.contact__enkai2 {
    padding : 20px ;
    width: 100%;
    max-width: 810px;
    margin: 0 auto;
    opacity: 0.9;
}

@media (max-width: 768px) {
.contact {
    background-color: #ffffff;
    background-image: url(../images/contact_bg_s.png);
    background-size: cover;
    background-position: center;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 44px;
    padding-left: 6px;
    padding-right: 6px;
}
.contact__title {
    margin: 0 auto 15px;
    width: 115px;
}
.contact__txt {
    font-size: 11px;
    margin-bottom: 20px;
}
.contact__txt2 {
    font-size: 11px;
    color: #ffffff;
    font-weight: normal;
}
}

.contact__area {
    width: 810px;
    height: 180px;
    background-color: rgba(255,255,255,0.75);
    margin: 0 auto 20px;
    display: table;
    text-align: center;
}
.contact__tel {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
    border-right: rgba(172,172,172,0.8) solid 1px;
}
.contact__mail {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
}
.contact__area_ttl {
    color: #333333;
    font-size: 18px;
    margin-bottom: 15px;
}
.contact__tel_num {
    font-size: 34px;
    margin-bottom: 10px;
}
.contact__tel_num a {
    color: #000000;
    text-decoration: none;
}
.contact__mail .btn {
    margin-bottom: 15px;
}
.contact__cap {
    color: #333333;
    font-size: 13px;
}

@media (max-width: 768px) {
.contact__area {
    width: 100%;
    height: auto;
    background-color: rgba(255,255,255,0.75);
    margin: 0 auto 20px;
    display: block;
    text-align: center;
}
.contact__tel {
    display: block;
    width: 100%;
    border-right: none;
    border-bottom: rgba(172,172,172,0.8) solid 1px;
    padding: 20px 0;
}
.contact__mail {
    display: block;
    width: 100%;
    padding: 20px 0;
}
.contact__area_ttl {
    font-size: 14px;
    margin-bottom: 10px;
}
.contact__tel_num {
    font-size: 25px;
    margin-bottom: 10px;
    line-height: 1;
}
.contact__mail .btn {
    margin-bottom: 15px;
    width: 180px;
    height: 38px;
    line-height: 38px;
}
.contact__cap {
    font-size: 11px;
}
}


/* btn */
.btn_area {
    text-align: center;
    margin-bottom: 30px;
}
.btn_area p {
    font-size: 14px;
    margin-bottom: 10px;
}
.btn {
    background-color: #b99505;
    display: inline-block;
    color: #ffffff;
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "Meiryo UI", "ＭＳ Ｐゴシック", sans-serif;
    font-size: 14px;
    text-decoration: none;
    width: 210px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    vertical-align: middle;
    position: relative;
    margin: 0 10px;
}
.btn span:after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -5px;
    width: 6px;
    height: 10px;
    background-image: url(../images/btn_arrow.png);
    background-size: cover;
}
.btn:hover {
    color: #ffffff;
    opacity: 0.7;
}
.btn_s {
    width: 150px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
}
.back_btn {
    background-color: #7a7a7a;
}
.back_btn span:after {
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    margin-top: -5px;
    width: 6px;
    height: 10px;
    background-image: url(../images/btn_arrow_b.png);
    background-size: cover;
}

@media (max-width: 768px) {
.btn_area {
    text-align: center;
    margin-bottom: 15px;
}
.btn_area p {
    font-size: 11px;
    margin-bottom: 10px;
}
.btn {
    font-size: 10px;
    width: 155px;
    height: 36px;
    line-height: 36px;
    margin-bottom: 10px;
}
.btn span:after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -3px;
    width: 4px;
    height: 6px;
}
.btn_s {
    width: 106px;
    height: 28px;
    line-height: 28px;
    font-size: 10px;
    margin-bottom: 0;
}
.btn_s span:after {
    display: none;
}
}


/* footer */
.footer {
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
}
.footer__inner {
    padding-top: 55px;
    padding-bottom: 40px;
}
.footer__logo {
    margin: 0 auto 30px;
    width: 220px;
}
.footer__logo img {
    width: 100%;
    height: auto;
}
.footer__gnav {
    text-align: center;
    margin-bottom: 20px;
}
.footer__gnav .footer__gnav__list > li {
    display: inline-block;
    font-size: 14px;
    margin: 0 15px;
    position: relative;
}
.footer__gnav .footer__gnav__list > li.has_sub {
    padding-right: 20px;
}
.footer__gnav .footer__gnav__list > li.has_sub:after {
    content: "";
    position: absolute;
    right: 0;
    top: 8px;
    width: 10px;
    height: 6px;
    display: inline-block;
    background-image: url(../images/nav_arrow_w.png);
    background-size: cover;
}
.footer__gnav .footer__gnav__list > li > a {
    text-decoration: none;
    color: #b99505;
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "Meiryo UI", "ＭＳ Ｐゴシック", sans-serif;
}
.footer__gnav_sub_list {
    position: absolute;
    left: 50%;
    top: 28px;
    margin-left: -80px;
    z-index: 9999;
    width: 160px;
    background-color: rgba(32,32,32,0.8);
    padding: 10px;
    display: none;
}
.is_active .footer__gnav_sub_list {
    display: block;
}
.footer__gnav_sub_list > li {
    display: block;
    color: #ffffff;
    margin: 0px;
    font-size: 13px;
    width: 100%;
    text-align: left;
}
.footer__gnav_sub_list > li > a {
    color: #ffffff;
    text-decoration: none;
    padding: 5px 0;
    display: block;
}
.footer__gnav_sub_list > li > a:hover {
    text-decoration: underline;
}
.footer__instagram {
    font-size: 13px;
    margin-bottom: 40px;
}
.footer__instagram a {
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "Meiryo UI", "ＭＳ Ｐゴシック", sans-serif;
    color: #8c8b8b;
    text-decoration: none;
    position: relative;
    padding-left: 30px;
}
.footer__instagram a:before {
    content: "";
    width: 23px;
    height: 22px;
    display: inline-block;
    background-image: url(../images/icn_insta.png);
    background-size: cover;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -11px;
}
.footer__nav {
    width: 100%;
    border-top: #474747 solid 1px;
    padding-top: 35px;
    text-align: center;
    margin-bottom: 25px;
}
.footer__nav .footer__nav__list li {
    display: inline-block;
    font-size: 12px;
    margin: 0 15px;
}
.footer__nav .footer__nav__list li a {
    text-decoration: none;
    color: #ffffff;
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "Meiryo UI", "ＭＳ Ｐゴシック", sans-serif;
}
.footer__copyrights {
    color: #605e5e;
    font-size: 12px;
}

@media (max-width: 768px) {
.footer__inner {
    padding-top: 25px;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
}
.footer__logo {
    margin: 0 auto 20px;
    width: 130px;
}
.footer__gnav {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: #474747 solid 1px;
}
.footer__gnav .footer__gnav__list > li {
    display: block;
    font-size: 12px;
    margin: 0px;
    width: 100%;
    text-align: left;
    border-top: #474747 solid 1px;
}
.footer__gnav .footer__gnav__list > li.has_sub:after {
    content: "";
    position: absolute;
    right: 0;
    top: 15px;
    width: 10px;
    height: 6px;
    display: inline-block;
    background-image: url(../images/nav_arrow_w.png);
    background-size: cover;
}
.footer__gnav .footer__gnav__list > li > a {
    text-decoration: none;
    color: #b99505;
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "Meiryo UI", "ＭＳ Ｐゴシック", sans-serif;
    width: 100%;
    display: block;
    padding: 12px 0;
}
.footer__gnav_sub_list {
    position: static;
    left: 0;
    top: 0;
    margin-left: 0px;
    z-index: 9999;
    width: 100%;
    background: none;
    padding: 0;
    display: block;
    font-size: 0;
    margin-bottom: 10px;
}
.is_active .footer__gnav_sub_list {
    display: block;
}
.footer__gnav_sub_list > li {
    display: inline-block;
    color: #ffffff;
    margin: 0px;
    font-size: 11px;
    width: 50%;
    text-align: left;
}
.footer__gnav_sub_list > li > a {
    color: #ffffff;
    text-decoration: none;
    padding: 5px 0;
    display: block;
}
.footer__instagram {
    font-size: 12px;
    margin-bottom: 20px;
}
.footer__instagram a {
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "Meiryo UI", "ＭＳ Ｐゴシック", sans-serif;
    color: #8c8b8b;
    text-decoration: none;
    position: relative;
    padding-left: 24px;
}
.footer__instagram a:before {
    content: "";
    width: 16px;
    height: 16px;
    display: inline-block;
    background-image: url(../images/icn_insta.png);
    background-size: cover;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -8px;
}
.footer__nav {
    width: 100%;
    padding-top: 19px;
    text-align: center;
    margin-bottom: 20px;
}
.footer__nav .footer__nav__list li {
    display: inline-block;
    font-size: 10px;
    margin: 0 15px;
}
.footer__nav .footer__nav__list li a {
    text-decoration: none;
    color: #ffffff;
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "Meiryo UI", "ＭＳ Ｐゴシック", sans-serif;
}
.footer__copyrights {
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "Meiryo UI", "ＭＳ Ｐゴシック", sans-serif;
    color: #605e5e;
    font-size: 9px;
}
}


/* concept */
.concept_main {
    background-image: url(../images/concept/main_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 732px;
    position: relative;
}
.concept_main__inner {
    width: 100%;
    display: table;
}
.concept_main__title_area {
    vertical-align: middle;
    display: table-cell;
    text-align: center;
    height: 732px;
    width: 100%;
}
.concept_main__title {
    margin: 0 auto 20px;
    color: #ffffff;
    width: 264px;
}
.concept_main__title img {
    width: 100%;
    height: auto;
}
.concept_main__subtitle {
    margin: 0 0 30px;
    line-height: 2;
    color: #ffffff;
    font-size: 20px;
}

@media (max-width: 768px) {
.concept_main {
    background-image: url(../images/concept/main_bg_s.png);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
}
.concept_main__inner {
    position: relative;
    width: 100%;
    height: auto;
}
.concept_main__title_area {
    width: 100%;
    position: static;
    right: 0px;
    bottom: auto;
    background:none;
    padding: 0 15px 0;
    font-size: 12px;
    text-align: center;
    height: 366px;
}
.concept_main__title {
    margin: 0 auto 20px;
    width: 110px;
}
.concept_main__subtitle {
    margin: 0 0 20px;
    font-size: 10px;
    line-height: 2;
}
}

.concept {
    text-align: center;
    font-size: 16px;
    padding-top: 70px;
    padding-top: 240px;
    line-height: 2;
    padding-bottom: 60px;
    background-color: #090909;
    color: #ffffff;
}
.concept__cap {
    margin-bottom: 100px;
    font-size: 18px;
    line-height: 2;
}
.concept__txt {
    margin-bottom: 50px;
    line-height: 2;
}
.concept__img_s {
    width: 100%;
    max-width: 864px;
    margin: 0 auto 50px;
}
.concept__img_s img {
    width: 100%;
    height: auto;
}
.concept__tbl {
    display: table;
    width: 100%;
    max-width: 1100px;
    margin:0 auto 80px;
}
.concept__tbl_cel {
    display: table-cell;
    width: 50%;
    text-align: center;
    vertical-align: middle;
}
.concept__tbl_cel img {
    max-width: 500px;
    width: 100%;
    height: auto;
}
.concept__tbl_cel p {
    text-align: left;
    line-height: 2;
    font-size: 18px;
}


@media (max-width: 768px) {
.concept {
    font-size: 12px;
    padding-top: 35px;
    line-height: 2;
    padding-bottom: 30px;
}
.concept__cap {
    margin-bottom: 70px;
    padding:0 0;
    font-size: 14px;
}
.concept__txt {
    padding:0 12px;
    text-align: left;
}
.concept__img_s {
    margin: 0 auto 15px;
    padding: 0 15px;
}
.concept__tbl {
    display: block;
    margin:0 auto 50px;
}
.concept__tbl_cel {
    display: block;
    width: 100%;
    vertical-align: top;
    margin-bottom: 15px;
    padding: 0 12px;
}
.concept__tbl_cel p {
    line-height: 2;
    font-size: 12px;
}
.concept__tbl_cel img {
    width: 67%;
    height: auto;
}
}


/* chapel */
.chapel_main {
    background-image: url(../images/chapel/main_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 732px;
    position: relative;
}
.chapel_main__inner {
    width: 100%;
    display: table;
}
.chapel_main__title_area {
    vertical-align: middle;
    display: table-cell;
    text-align: center;
    height: 732px;
    width: 100%;
}
.chapel_main__title {
    margin: 0 auto 20px;
    color: #ffffff;
    width: 224px;
}
.chapel_main__title img {
    width: 100%;
    height: auto;
}
.chapel_main__subtitle {
    margin: 0 0 30px;
    line-height: 2;
    color: #ffffff;
    font-size: 20px;
}

@media (max-width: 768px) {
.chapel_main {
    background-image: url(../images/chapel/main_bg_s.png);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
}
.chapel_main__inner {
    position: relative;
    width: 100%;
    height: auto;
}
.chapel_main__title_area {
    width: 100%;
    position: static;
    right: 0px;
    bottom: auto;
    background:none;
    padding: 0 15px 0;
    font-size: 12px;
    text-align: center;
    height: 366px;
}
.chapel_main__title {
    margin: 0 auto 20px;
    width: 110px;
}
.chapel_main__subtitle {
    margin: 0 0 20px;
    font-size: 10px;
    line-height: 2;
}
}

.chapel_story {
    text-align: center;
    font-size: 16px;
    padding-top: 70px;
    line-height: 2;
    padding-bottom: 60px;
    background-color: #ffffff;
}
.chapel_main__cap {
    margin-bottom: 140px;
    font-size: 16px;
}
.chapel_story__title {
    width: 390px;
    margin: 0 auto 30px;
}
.chapel_story__title img {
    width: 100%;
    height: auto;
}
.chapel_story__txt {
    margin-bottom: 40px;
    line-height: 2;
    font-size: 16px;
}
.chapel_story__txt2 {
    margin-bottom: 100px;
    line-height: 2;
    font-size: 16px;
}
.chapel_story__img {
    width: 100%;
    margin-bottom: 100px;
}
.chapel_story__img_s {
    width: 100%;
    max-width: 864px;
    margin: 0 auto 50px;
}
.chapel_story__img_m {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 50px;
}
.chapel_story__img img,
.chapel_story__img_s img,
.chapel_story__img_m img {
    width: 100%;
    height: auto;
}
.chapel_story__tbl {
    display: table;
    width: 100%;
    max-width: 1100px;
    margin:0 auto 50px;
}
.chapel_story__tbl_cel {
    display: table-cell;
    width: 50%;
    text-align: center;
    vertical-align: middle;
}
.chapel_story__tbl_cel img {
    max-width: 430px;
    width: 100%;
    height: auto;
}
.chapel_story__tbl_cel p {
    text-align: left;
    line-height: 2;
    font-size: 16px;
}

@media (max-width: 768px) {
.chapel_story {
    font-size: 12px;
    padding-top: 35px;
    line-height: 2;
    padding-bottom: 30px;
}
.chapel_main__cap {
    margin-bottom: 70px;
    font-size: 13px;
}
.chapel_story__title {
    width: 260px;
    margin: 0 auto 15px;
}
.chapel_story__txt {
    margin-bottom: 30px;
    padding: 0 14px;
    font-size: 12px;
    text-align: left;
}
.chapel_story__txt2 {
    margin-bottom: 35px;
    padding: 0 14px;
    font-size: 12px;
    text-align: left;
}
.chapel_story__img {
    width: 100%;
    margin-bottom: 45px;
}
.chapel_story__img_s,
.chapel_story__img_m {
    margin: 0 auto 15px;
    padding: 0 15px;
}
.chapel_story__tbl {
    display: block;
    margin:0 auto 50px;
}
.chapel_story__tbl_cel {
    display: block;
    width: 100%;
    vertical-align: top;
    margin-bottom: 15px;
    padding: 0 15px;
}
.chapel_story__tbl_cel p {
    line-height: 2;
    font-size: 12px;
    text-align: left;
}
.chapel_story__tbl_cel img {
    width: 67%;
    height: auto;
}
}


/* banquet */
.banquet_main {
    background-image: url(../images/banquet/main_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 732px;
    position: relative;
}
.banquet_main__inner {
    width: 100%;
    display: table;
}
.banquet_main__title_area {
    vertical-align: middle;
    display: table-cell;
    text-align: center;
    height: 732px;
    width: 100%;
}
.banquet_main__title {
    margin: 0 auto 20px;
    color: #ffffff;
    width: 224px;
}
.banquet_main__title img {
    width: 100%;
    height: auto;
}
.banquet_main__subtitle {
    margin: 0 0 30px;
    line-height: 2;
    color: #ffffff;
    font-size: 20px;
}
.banquet_main__logo {
    position: absolute;
    left: 20px;
    top: 470px;
    width: 200px;
}
.banquet_main__logo img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
.banquet_main {
    background-image: url(../images/banquet/main_bg_s.png);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
}
.banquet_main__inner {
    position: relative;
    width: 100%;
    height: auto;
}
.banquet_main__title_area {
    width: 100%;
    position: static;
    right: 0px;
    bottom: auto;
    background:none;
    padding: 0 15px 0;
    font-size: 12px;
    text-align: center;
    height: 366px;
}
.banquet_main__title {
    margin: 0 auto 20px;
    width: 110px;
}
.banquet_main__subtitle {
    margin: 0 0 20px;
    font-size: 10px;
    line-height: 2;
}
.banquet_main__logo {
    position: static;
    left: 0px;
    top: 0px;
    width: 100%;
    text-align: center;
}
.banquet_main__logo img {
    width: 100px;
    height: auto;
}
}

.banquet_list {
    text-align: center;
    padding-top: 70px;
    font-size: 16px;
    background-color: #ffffff;
    padding-bottom: 40px;
}
.banquet_main__cap {
    margin-bottom: 120px;
    line-height: 2;
    font-size: 18px;
}
.banquet_list__title {
    width: 320px;
    margin:0 auto 20px;
}
.banquet_list__title_br {
    width: 380px;
}
.banquet_list__title img {
    width: 100%;
    height: auto;
}
.banquet_list__title_s {
    font-size: 16px;
    margin-bottom: 50px;
}
.banquet_list__txt {
    margin-bottom: 50px;
    line-height: 2;
    font-size: 16px;
}
.banquet_list__img_list {
    width: 100%;
    margin-bottom: 100px;
    position: relative;
}
.banquet_list__img_main {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
}
.banquet_list__img_main img {
    width: 100%;
    height: auto;
}
.banquet_list__img_txt {
    position: absolute;
    right: 30px;
    bottom: 160px;
    background-color: rgba(255,255,255,0.8);
    width: 404px;
    padding: 30px 20px;
    text-align: left;
    line-height: 2;
    font-size: 14px;
}
.banquet_list__img_txt p {
    line-height: 2;
    font-size: 14px;
}
.banquet_list__img_thum {
    width: 100%;
    font-size: 0;
}
.banquet_list__img_thum_list {
    display: inline-block;
    font-size: 16px;
    margin: 0 8px;
    width: 205px;
    cursor: pointer;
}
.banquet_list__img_thum_list img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
.banquet_list {
    text-align: center;
    padding-top: 35px;
    font-size: 12px;
    padding-bottom: 20px;
}
.banquet_main__cap {
    margin-bottom: 45px;
    line-height: 2;
    padding: 0 15px;
    font-size: 13px;
}
.banquet_list__title {
    width: 170px;
    margin:0 auto 10px;
}
.banquet_list__title_br {
    width: 200px;
}
.banquet_list__title_s {
    font-size: 12px;
    margin-bottom: 30px;
}
.banquet_list__txt {
    margin-bottom: 16px;
    line-height: 2;
    font-size: 11px;
}
.banquet_list__img_list {
    width: 100%;
    margin-bottom: 40px;
}
.banquet_list__img_main {
    width: 100%;
    margin-bottom: 10px;
    position: relative;
}
.banquet_list__img_txt {
    display: none;
}
.banquet_list__img_thum {
    width: 100%;
    font-size: 0;
    height: 30px;
    padding: 10px 0 0;
}
.banquet_list__img_thum_list {
    margin: 0 1%;
    width: 18%;
    display: inline-block;
}
/*
.banquet_list__img_thum_list {
    margin: 0 6px;
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    background-color: #999999;
}
.banquet_list__img_thum_list img {
    display: none;
}
*/
}


/* cuisine */
.cuisine_main {
    background-image: url(../images/cuisine/main_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 732px;
    position: relative;
}
.cuisine_main__inner {
    width: 100%;
    display: table;
}
.cuisine_main__title_area {
    vertical-align: middle;
    display: table-cell;
    text-align: center;
    height: 732px;
    width: 100%;
}
.cuisine_main__title {
    margin: 0 auto 20px;
    color: #ffffff;
    width: 224px;
}
.cuisine_main__title img {
    width: 100%;
    height: auto;
}
.cuisine_main__subtitle {
    margin: 0 0 30px;
    line-height: 2;
    color: #ffffff;
    font-size: 20px;
}
.cuisine_main__tbl {
    display: table;
    width: 100%;
    max-width: 1100px;
    margin:0 auto 50px;
}
.cuisine_main__tbl_cel {
    display: table-cell;
    width: 50%;
    text-align: center;
    vertical-align: middle;
}
.cuisine_main__tbl_cel p {
    line-height: 2;
}
.cuisine_main__logo {
    position: absolute;
    left: 20px;
    top: 470px;
    width: 200px;
}
.cuisine_main__logo img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
.cuisine_main {
    background-image: url(../images/cuisine/main_bg.jpg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
}
.cuisine_main__inner {
    position: relative;
    width: 100%;
    height: auto;
}
.cuisine_main__title_area {
    width: 100%;
    position: static;
    right: 0px;
    bottom: auto;
    background:none;
    padding: 0 15px 0;
    font-size: 12px;
    text-align: center;
    height: 366px;
}
.cuisine_main__title {
    margin: 0 auto 20px;
    width: 80px;
}
.cuisine_main__subtitle {
    margin: 0 0 20px;
    font-size: 10px;
    line-height: 2;
}
.cuisine_main__tbl {
    display: block;
    margin:0 auto 50px;
}
.cuisine_main__tbl_cel {
    display: block;
    width: 100%;
    vertical-align: top;
    margin-bottom: 15px;
    padding: 0 15px;
}
.cuisine_main__tbl_cel img {
    width: 67%;
    height: auto;
}
.cuisine_main__logo {
    position: static;
    left: 0px;
    top: 0px;
    width: 100%;
    text-align: center;
}
.cuisine_main__logo img {
    width: 100px;
    height: auto;
}
}

.cuisine_list {
    text-align: center;
    padding-top: 70px;
    font-size: 16px;
    background-color: #ffffff;
    padding-bottom: 40px;
}
.h2title {
    margin-bottom: 20px;
}
.cuisine_main__cap {
    margin-bottom: 120px;
    line-height: 2;
}
.cuisine_list__cap {
    font-size: 18px;
    margin-bottom: 50px;
    line-height: 2;
}
.cuisine_list__txt {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 2;
}
.cuisine_list__txt2 {
    margin-bottom: 50px;
    font-size: 14px;
    line-height: 2;
}
.cuisine_list__img_list {
    width: 100%;
    margin-bottom: 100px;
}
.cuisine_list__img_main {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
}
.cuisine_list__img_main img {
    width: 100%;
    height: auto;
}
.cuisine_list__img_txt {
    position: absolute;
    right: 30px;
    bottom: 30px;
    background-color: rgba(255,255,255,0.8);
    width: 404px;
    padding: 30px 15px;
    text-align: left;
    line-height: 2;
    font-size: 14px;
}
.cuisine_list__img_thum {
    width: 100%;
    font-size: 0;
}
.cuisine_list__img_thum_list {
    display: inline-block;
    font-size: 16px;
    margin: 0 8px;
    width: 205px;
}
.cuisine_list__img_thum_list img {
    width: 100%;
    height: auto;
}

.cuisine_list_block {
    margin-bottom: 50px;
}
.cuisine_list_block h2 {
    font-size: 18px;
    margin-bottom: 10px;
}
.cuisine_list_block p {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 20px;
}
.cuisine_list__title {
    margin: 0 auto 10px;
}
.cuisine_list__title img {
    width: auto;
    height: 30px;
}
.cuisine_list_block p.cuisine_list__title_s {
    font-size: 16px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
.cuisine_list {
    text-align: center;
    padding-top: 35px;
    font-size: 12px;
    padding-bottom: 20px;
}
.h2title {
    font-size: 14px;
    margin-bottom: 10px;
}
.cuisine_main__cap {
    margin-bottom: 45px;
    line-height: 2;
    padding: 0 15px;
}
.cuisine_list__cap {
    font-size: 13px;
    margin-bottom: 30px;
    line-height: 2;
    padding: 0 12px;
}
.cuisine_list__title {
    width: 170px;
    margin:0 auto 15px;
}
.cuisine_list__title_br {
    width: 200px;
}
.cuisine_list__txt {
    margin-bottom: 20px;
    line-height: 2;
    font-size: 12px;
    padding: 0 15px;
}
.cuisine_list__txt2 {
    font-size: 12px;
    padding: 0 15px;
}
.cuisine_list_block {
    padding: 0 10px;
}
.cuisine_list_block h2 {
    font-size: 15px;
    margin-bottom: 20px;
}
.cuisine_list_block p {
    font-size: 12px;
    line-height: 2;
    margin-bottom: 20px;
}
.cuisine_list__img_list {
    width: 100%;
    margin-bottom: 40px;
}
.cuisine_list__img_main {
    width: 100%;
    margin-bottom: 10px;
    position: relative;
}
.cuisine_list__img_txt {
    display: none;
}
.cuisine_list__img_thum {
    width: 100%;
    font-size: 0;
    height: 30px;
    padding: 10px 0 0;
}
.cuisine_list__img_thum_list {
    margin: 0 6px;
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    background-color: #999999;
}
.cuisine_list__img_thum_list img {
    display: none;
}
}


/* plan */
.plan_main {
    background-image: url(../images/plan/main_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 732px;
    position: relative;
}
.plan_main__inner {
    width: 100%;
    display: table;
}
.plan_main__title_area {
    vertical-align: middle;
    display: table-cell;
    text-align: center;
    height: 732px;
    width: 100%;
}
.plan_main__title {
    margin: 0 auto 20px;
    color: #ffffff;
    width: 148px;
}
.plan_main__title img {
    width: 100%;
    height: auto;
}
.plan_main__subtitle {
    margin: 0 0 30px;
    line-height: 2;
    color: #ffffff;
    font-size: 20px;
}

@media (max-width: 768px) {
.plan_main {
    background-image: url(../images/plan/main_bg_s.png);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
}
.plan_main__inner {
    position: relative;
    width: 100%;
    height: auto;
}
.plan_main__title_area {
    width: 100%;
    position: static;
    right: 0px;
    bottom: auto;
    background:none;
    padding: 0 15px 0;
    font-size: 12px;
    text-align: center;
    height: 366px;
}
.plan_main__title {
    margin: 0 auto 20px;
    width: 110px;
}
.plan_main__subtitle {
    margin: 0 0 20px;
    font-size: 10px;
    line-height: 2;
}
}

.wedding_plan {
    text-align: center;
    font-size: 16px;
    padding-top: 70px;
    line-height: 2;
    padding-bottom: 100px;
    background-color: #ffffff;
    width: 100%;
}
.wedding_plan__title {
    width: 314px;
    margin: 0 auto 40px;
}
.wedding_plan__title img {
    width: 100%;
    height: auto;
}
.wedding_plan__list {
    width: 100%;
    max-width: 940px;
    margin:0 auto;
}
.wedding_plan__list_item {
    background-color: #f2f2f2;
    margin-bottom: 20px;
    display: table;
    width: 100%;
}
.wedding_plan__list_item_img {
    display: table-cell;
    vertical-align: top;
    padding: 30px;
    width: 395px;
}
.wedding_plan__list_item_img img {
    width: 100%;
    height: auto;
}
.wedding_plan__list_item_info {
    display: table-cell;
    vertical-align: top;
    padding: 30px 40px 30px 0;
    text-align: left;
}
.wedding_plan__list_item_info h3 {
    font-size: 18px;
    line-height: 1.4;
    font-weight: normal;
    margin-bottom: 10px;
}
.wedding_plan__list_item_info dl {
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "Meiryo UI", "ＭＳ Ｐゴシック", sans-serif;
    font-size: 14px;
    width: 100%;
    display: table;
    margin-bottom: 12px;
    line-height: 1.4;
}
.wedding_plan__list_item_info dl dt {
    display: table-cell;
    text-align: left;
    width: 90px;
    position: relative;
}
.wedding_plan__list_item_info dl dt:after {
    content: ":";
    position: absolute;
    right: 0;
    top: 0;
}
.wedding_plan__list_item_info dl dd {
    display: table-cell;
    text-align: left;
    padding-left: 30px;
}
.wedding_plan__list_item_info .btn {
    margin: 0;
}

@media (max-width: 768px) {
.wedding_plan {
    font-size: 12px;
    padding-top: 35px;
    line-height: 2;
    padding-bottom: 30px;
}
.wedding_plan__title {
    width: 160px;
    margin: 0 auto 15px;
}
.wedding_plan__list {
    width: 100%;
    max-width: 940px;
    margin:0 auto;
    padding: 0 15px;
}
.wedding_plan__list_item {
    background-color: #f2f2f2;
    margin-bottom: 20px;
    display: block;
    width: 100%;
    padding: 15px;
}
.wedding_plan__list_item_img {
    display: block;
    width: 100%;
    vertical-align: top;
    padding: 0;
    margin-bottom: 15px;
}
.wedding_plan__list_item_info {
    display: block;
    width: 100%;
    vertical-align: top;
    padding: 0;
    text-align: left;
}
.wedding_plan__list_item_info h3 {
    font-size: 14px;
    line-height: 1.4;
    font-weight: normal;
    margin-bottom: 10px;
}
.wedding_plan__list_item_info dl {
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "Meiryo UI", "ＭＳ Ｐゴシック", sans-serif;
    font-size: 12px;
    width: 100%;
    display: table;
    margin-bottom: 10px;
    line-height: 1.4;
}
.wedding_plan__list_item_info dl dt {
    display: table-cell;
    text-align: left;
    width: 60px;
    position: relative;
}
.wedding_plan__list_item_info dl dt:after {
    content: ":";
    position: absolute;
    right: 0;
    top: 0;
}
.wedding_plan__list_item_info dl dd {
    display: table-cell;
    text-align: left;
    padding-left: 10px;
}
.wedding_plan__list_item_info .btn {
    margin: 20px auto 0;
    display: block;
}
}


/* plan page */
.planpage {
    background-color: #ffffff;
    padding-top: 138px;
    padding-bottom: 70px;
}
.planpage__inner {
    text-align: center;
    padding-top: 50px;
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "Meiryo UI", "ＭＳ Ｐゴシック", sans-serif;
}
.planpage__inner .box_fair {
    width: 100%;
    max-width: 900px;
    margin:0 auto 30px;
    text-align: left;
}
.plan_detail {
    width: 100%;
    max-width: 900px;
    margin:0 auto;
    text-align: left;
    padding-bottom: 40px;
}
.plan_detail_sub_ttl {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 14px;
}
.plan_detail_date {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 20px;
}
.plan_detail_ttl {
    font-size: 30px;
    font-weight: normal;
    margin-bottom: 24px;
}
.plan_detail_img {
    width: 100%;
    margin: 0 0px 20px 0;
}
.plan_detail_img img {
    width: 100%;
    height: auto;
}
.plan_detail_price,
.plan_detail_num {
    font-size: 20px;
    vertical-align: bottom;
    font-weight: normal;
    margin-bottom: 10px;
}
.plan_detail_price span,
.plan_detail_num span {
    font-size: 20px;
    font-weight: normal;
}
.plan_detail_price2 {
    font-size: 24px;
    vertical-align: bottom;
    font-weight: bold;
    margin-bottom: 20px;
}
.plan_detail_txt {
    font-size: 14px;
    margin-bottom: 30px;
}
.plan_detail table {
    margin-bottom: 30px;
}
.box_dis {
    margin-bottom: 30px;
}
.md_fair {
    font-weight: bold;
}
@media (max-width: 768px) {
.planpage {
    padding-top: 50px;
    padding-bottom: 40px;
}
.planpage__inner {
    text-align: center;
    padding-top: 45px;
}
.plan_detail {
    width: 100%;
    max-width: 900px;
    margin:0 auto;
    padding: 0 15px;
}
.plan_detail_ttl {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 24px;
}
.plan_detail_img {
    width: 100%;
    float: none;
    margin: 0 0 20px;
}
.plan_detail_img img {
    width: 100%;
    height: auto;
}
.plan_detail_price,
.plan_detail_num {
    font-size: 16px;
    vertical-align: bottom;
    font-weight: bold;
    margin-bottom: 10px;
}
.plan_detail_price span,
.plan_detail_num span {
    font-size: 12px;
    font-weight: normal;
}
.plan_detail_txt {
    font-size: 12px;
    margin-bottom: 30px;
}
.plan_detail table {
    margin-bottom: 30px;
}

.plan_detail table {
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
  display: block;
  font-size: 14px;
}
.plan_detail table thead,
.plan_detail table tbody,
.plan_detail table tr {
  width: 100%;
  display: block;
}
.plan_detail table td,
.plan_detail table th {
  width: 100%;
  display: block;
  padding: 0;
  font-size: 12px;
}
.plan_detail table th {
  background-color: #c2c2c2;
  border:none;
  padding: 10px;
  margin-top: 4px;
}
.plan_detail table td {
  background-color: #f2f2f2;
  border:none;
  padding: 10px;
}
}


/* fair */
.fair_main {
    background-image: url(../images/fair/main_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 732px;
    position: relative;
}
.fair_main__inner {
    width: 100%;
    display: table;
}
.fair_main__title_area {
    vertical-align: middle;
    display: table-cell;
    text-align: center;
    height: 732px;
    width: 100%;
}
.fair_main__title {
    margin: 0 auto 20px;
    color: #ffffff;
    width: 344px;
}
.fair_main__title img {
    width: 100%;
    height: auto;
}
.fair_main__subtitle {
    margin: 0 0 30px;
    line-height: 2;
    color: #ffffff;
    font-size: 20px;
}

@media (max-width: 768px) {
.fair_main {
    background-image: url(../images/fair/main_bg_s.png);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
}
.fair_main__inner {
    position: relative;
    width: 100%;
    height: auto;
}
.fair_main__title_area {
    width: 100%;
    position: static;
    right: 0px;
    bottom: auto;
    background:none;
    padding: 0 15px 0;
    font-size: 12px;
    text-align: center;
    height: 366px;
}
.fair_main__title {
    margin: 0 auto 20px;
    width: 70px;
}
.fair_main__subtitle {
    margin: 0 0 20px;
    font-size: 10px;
    line-height: 2;
}
}


.wedding_fair {
    text-align: center;
    font-size: 16px;
    padding-top: 70px;
    line-height: 2;
    padding-bottom: 100px;
    background-color: #ffffff;
    width: 100%;
}
.wedding_fair__title {
    width: 310px;
    margin: 0 auto 40px;
}
.wedding_fair__title img {
    width: 100%;
    height: auto;
}
.wedding_fair__cal {
    margin: 0 auto 30px;
    width: 100%;
    max-width: 940px;
    font-size: 14px;
}
.wedding_fair__cal .fair_title {
    font-size: 18px;
    margin-bottom: 10px;
}
.wedding_fair__cal .box_fair {
    width: 100%;
    margin-bottom: 30px;
}
.wedding_fair__cal .box_fair table th {
    width: 14.28%;
}
.wedding_fair__cal .box_fair table th,
.wedding_fair__cal .box_fair table td {
    border:none;
    line-height: 1.4;
    font-size: 14px;
    border-left: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    vertical-align: top;
}
.wedding_fair__cal .box_fair table tbody tr:nth-child(2n) td {
    border-bottom: 1px solid #ffffff;
    padding-top: 0;
}
.wedding_fair__list {
    width: 100%;
    max-width: 940px;
    margin:0 auto 40px;
}
.wedding_fair__list_item {
    background-color: #f2f2f2;
    margin-bottom: 20px;
    display: table;
    width: 100%;
}
.wedding_fair__list_item_img {
    display: table-cell;
    vertical-align: top;
    padding: 30px;
    width: 280px;
}
.wedding_fair__list_item_img img {
    width: 100%;
    height: auto;
}
.wedding_fair__list_item_info {
    display: table-cell;
    vertical-align: top;
    padding: 30px 40px 30px 0;
    text-align: left;
}
.wedding_fair__list_item_info h3 {
    font-size: 18px;
    line-height: 1.4;
    font-weight: normal;
    margin-bottom: 10px;
}
.wedding_fair__list_item_info p {
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "Meiryo UI", "ＭＳ Ｐゴシック", sans-serif;
    font-size: 14px;
    width: 100%;
    margin-bottom: 12px;
    line-height: 1.4;
}
.wedding_fair__list_item_info .btn {
    margin: 0 5px 0 0;
}

@media (max-width: 768px) {
.wedding_fair {
    font-size: 12px;
    padding-top: 35px;
    line-height: 2;
    padding-bottom: 30px;
}
.wedding_fair__title {
    width: 155px;
    margin: 0 auto 15px;
}
.wedding_fair__cal .fair_cal {
    width: 100%;
    overflow:auto;
    border: #ffffff solid 10px;
}
.wedding_fair__cal .fair_cal table {
    width: 100%;
}
.wedding_fair__cal .box_fair table tr {
    border-bottom: 2px solid #ffffff;
}
.wedding_fair__cal .box_fair table th {
    width: 60px;
    text-align: center;
    vertical-align: top;
}
.wedding_fair__cal .box_fair table td {
    text-align: left;
    vertical-align: top;
}
.wedding_fair__cal .box_fair table tbody tr:nth-child(2n) td {
    border-bottom: none;
}
.wedding_fair__cal .box_fair table td p {
    padding: 10px 0;
}
.wedding_fair__list {
    width: 100%;
    margin:0 auto 40px;
    padding: 0 15px;
}
.wedding_fair__list_item {
    background-color: #f2f2f2;
    margin-bottom: 15px;
    display: block;
    width: 100%;
    padding: 15px;
}
.wedding_fair__list_item_img {
    display: block;
    vertical-align: top;
    padding: 0px;
    width: 100%;
    margin-bottom: 20px;
}
.wedding_fair__list_item_info {
    display: block;
    vertical-align: top;
    padding: 0;
    text-align: left;
}
.wedding_fair__list_item_info h3 {
    font-size: 14px;
    line-height: 1.4;
    font-weight: normal;
    margin-bottom: 10px;
}
.wedding_fair__list_item_info p {
    font-size: 12px;
    width: 100%;
    margin-bottom: 12px;
    line-height: 1.4;
}
.wedding_fair__list_item_info .btn {
    margin: 15px auto 0;
    display: block;
}
}


/* blog */
.blog {
    background-color: #ffffff;
    padding-top: 138px;
    padding-bottom: 70px;
}
.blog__inner {
    text-align: center;
    padding-top: 50px;
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "Meiryo UI", "ＭＳ Ｐゴシック", sans-serif;
}
.blog_ttl {
    margin-bottom: 80px;
}
.blog_list {
    width: 100%;
    max-width: 1040px;
    margin:0 auto;
    display: block;
}
.blog_list_item {
    width: 260px;
    float: left;
    display: block;
    padding: 0 30px;
    margin-bottom: 60px;
}
.blog_list_item a {
    text-decoration: none;
}
.blog_list_item_date {
    color: #333333;
    font-size: 20px;
}
.blog_list_item_cat {
    color: #666666;
    font-size: 14px;
    margin-bottom: 20px;
}
.blog_list_item_img {
    width: 100%;
    margin-bottom: 20px;
}
.blog_list_item_img {
    width: 100%;
    height: auto;
}
.blog_list_item_ttl {
    text-align: left;
    color: #000000;
    font-size: 16px;
    line-height: 20px;
    height: 40px;
    overflow:hidden;
    margin-bottom: 20px;
}
.blog_list_item_txt {
    text-align: left;
    color: #333333;
    font-size: 12px;
    line-height: 16px;
    height: 64px;
    overflow:hidden;
}
.blog_list_item a:hover img {
    opacity: 0.7;
}
.blog_list_item a:hover .blog_list_item_ttl {
    text-decoration: underline;
}

@media (max-width: 768px) {
.blog {
    padding-top: 50px;
    padding-bottom: 40px;
}
.blog__inner {
    text-align: center;
    padding-top: 45px;
}
.blog_ttl {
    width: 80px;
    margin: 0 auto 40px;
}
.blog_list {
    width: 100%;
    margin:0 auto;
    display: block;
}
.blog_list_item {
    width: 50%;
    float: left;
    display: block;
    padding: 0 25px;
    margin-bottom: 30px;
}
.blog_list_item_date {
    font-size: 14px;
}
.blog_list_item_cat {
    font-size: 11px;
    margin-bottom: 10px;
}
.blog_list_item_img {
    width: 100%;
    margin-bottom: 15px;
}
.blog_list_item_ttl {
    font-size: 12px;
    line-height: 16px;
    height: 32px;
    margin-bottom: 10px;
}
.blog_list_item_txt {
    font-size: 10px;
    line-height: 14px;
    height: 56px;
}
}

.blog_detail {
    width: 100%;
    max-width: 640px;
    margin:0 auto;
}
.blog_detail_ttl {
    font-size: 30px;
    font-weight: normal;
    margin-bottom: 24px;
}
.blog_detail_date {
    color: #333333;
    font-size: 20px;
    margin-bottom: 5px;
}
.blog_detail_cat {
    color: #666666;
    font-size: 14px;
    margin-bottom: 40px;
}
.blog_detail_cat a {
    color: #666666;
    text-decoration: none;
}
.blog_detail_cat a:hover {
    text-decoration: underline;
}
.blog_detail_body {
    width: 100%;
    padding-bottom: 90px;
    text-align: left;
    font-size: 14px;
    color: #333333;
}
/*
.blog_detail_body img {
    width: 100%;
    height: auto;
}
.blog_detail_body p {
    margin-bottom: 20px;
}
*/

@media (max-width: 768px) {
.blog_detail {
    width: 100%;
    margin:0 auto;
}
.blog_detail_ttl {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 17px;
}
.blog_detail_date {
    font-size: 14px;
    margin-bottom: 5px;
}
.blog_detail_cat {
    font-size: 11px;
    margin-bottom: 24px;
}
.blog_detail_body {
    width: 100%;
    padding-bottom: 50px;
    text-align: left;
    font-size: 12px;
    color: #333333;
}
.blog_detail_body p {
    margin-bottom: 10px;
    padding: 0 15px;
}
}


/* bread */
.bread {
    width: 100%;
    border-top: #e1e1e1 solid 1px;
    border-bottom: #e1e1e1 solid 1px;
}
.bread_inner {
    padding: 10px 15px;
}
.bread ul li {
    list-style: none;
    display: inline-block;
    font-size: 13px;
    color: #666666;
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "Meiryo UI", "ＭＳ Ｐゴシック", sans-serif;
}
.bread ul li a {
    color: #666666;
    text-decoration: none;
}
.bread ul li a:after {
    content: ">";
    display: inline-block;
    margin:0 8px;
}
.bread ul li a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
.bread {
}
.bread_inner {
    padding: 6px 15px;
}
.bread ul li {
    font-size: 10px;
}
.bread ul li a:after {
    margin:0 5px;
}
}


/* pagination */
.pagination {
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "Meiryo UI", "ＭＳ Ｐゴシック", sans-serif;
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 640px;
    margin:0 auto;
}
.pagination ul {
    font-size: 0;
    position: relative;
    display: inline-block;
    width: auto;
    padding: 0 60px;
}
.pagination ul li {
    list-style: none;
    display: inline-block;
    font-size: 14px;
    text-align: center;
    margin: 0 5px;
}
.pagination ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-decoration: none;
    display: block;
    color: #000000;
}
.pagination ul li a:hover {
    background-color: #eeeeee;
}
.pagination ul li span {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: block;
    background-color: #e1e1e1;
}
.pagination ul li.prev {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -8px;
}
.pagination ul li.prev a {
    background-image: url(../images/icn_arrot_prev.png);
    background-size: cover;
    width: 10px;
    height: 16px;
    display: block;
    text-indent: -9999px;
}
.pagination ul li.next {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -8px;
}
.pagination ul li.next a {
    background-image: url(../images/icn_arrot_next.png);
    background-size: cover;
    width: 10px;
    height: 16px;
    display: block;
    text-indent: -9999px;
}
.pagination .page_prev {
    position: absolute;
    left: 0;
    top: 0;
}
.pagination .page_prev a {
    position: relative;
    color: #333333;
    font-size: 16px;
    padding-left: 20px;
    text-decoration: none;
}
.pagination .page_prev a:before {
    content: "";
    background-image: url(../images/icn_arrot_prev.png);
    background-size: cover;
    width: 10px;
    height: 16px;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -8px;
}
.pagination .page_next {
    position: absolute;
    right: 0;
    top: 0;
}
.pagination .page_next a {
    position: relative;
    color: #333333;
    font-size: 16px;
    padding-right: 20px;
    text-decoration: none;
}
.pagination .page_next a:before {
    content: "";
    background-image: url(../images/icn_arrot_next.png);
    background-size: cover;
    width: 10px;
    height: 16px;
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -8px;
}
.page_menu {
    display: inline-block;
    line-height: 30px;
    padding-top: 6px;
}
.page_menu a {
    width: 18px;
    height: 18px;
    background-image: url(../images/icn_menu.png);
    background-size: cover;
    display: block;
    text-indent: -9999px;
}
.pagination .page_prev a:hover,
.pagination .page_next a:hover,
.page_menu a:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
.pagination {
}
.pagination ul {
    font-size: 0;
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 0 60px;
}
.pagination ul li {
    list-style: none;
    display: inline-block;
    font-size: 12px;
    text-align: center;
    margin: 0px;
}
.pagination ul li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
}
.pagination ul li span {
    width: 35px;
    height: 35px;
    line-height: 35px;
}
.pagination ul li.prev {
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -7px;
}
.pagination ul li.prev a {
    background-image: url(../images/icn_arrot_prev_s.png);
    background-size: cover;
    width: 9px;
    height: 14px;
    display: block;
    text-indent: -9999px;
}
.pagination ul li.next {
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -7px;
}
.pagination ul li.next a {
    background-image: url(../images/icn_arrot_next_s.png);
    background-size: cover;
    width: 9px;
    height: 14px;
    display: block;
    text-indent: -9999px;
}
.pagination .page_prev {
    position: absolute;
    left: 0;
    top: 0;
}
.pagination .page_prev a {
    position: relative;
    color: #333333;
    font-size: 12px;
    padding-left: 30px;
    text-decoration: none;
}
.pagination .page_prev a:before {
    content: "";
    background-image: url(../images/icn_arrot_prev_s.png);
    background-size: cover;
    width: 9px;
    height: 14px;
    display: block;
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -7px;
}
.pagination .page_next {
    position: absolute;
    right: 0;
    top: 0;
}
.pagination .page_next a {
    position: relative;
    color: #333333;
    font-size: 12px;
    padding-right: 30px;
    text-decoration: none;
}
.pagination .page_next a:before {
    content: "";
    background-image: url(../images/icn_arrot_next_s.png);
    background-size: cover;
    width: 9px;
    height: 14px;
    display: block;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -7px;
}
.page_menu {
    display: inline-block;
    line-height: 30px;
    padding-top: 6px;
}
.page_menu a {
    width: 14px;
    height: 14px;
    background-image: url(../images/icn_menu.png);
    background-size: cover;
    display: block;
    text-indent: -9999px;
}
}



/* report */
.report {
    background-color: #ffffff;
    padding-top: 138px;
    padding-bottom: 70px;
}
.report__inner {
    text-align: center;
    padding-top: 50px;
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "Meiryo UI", "ＭＳ Ｐゴシック", sans-serif;
}
.report_ttl {
    margin-bottom: 80px;
}
.report_list {
    width: 100%;
    max-width: 1040px;
    margin:0 auto;
    display: block;
}
.report_list_item {
    width: 260px;
    float: left;
    display: block;
    padding: 0 30px;
    margin-bottom: 30px;
}
.report_list_item a {
    text-decoration: none;
}
.report_list_item_img {
    width: 100%;
    margin-bottom: 20px;
}
.report_list_item_img img {
    width: 100%;
    height: auto;
}
.report_list_item_ttl {
    text-align: left;
    color: #000000;
    font-size: 16px;
    line-height: 20px;
    height: 40px;
    overflow:hidden;
    margin-bottom: 20px;
}
.report_list_item a:hover img {
    opacity: 0.7;
}
.report_list_item a:hover .blog_list_item_ttl {
    text-decoration: underline;
}
.report_detail {
    width: 100%;
    max-width: 640px;
    margin:0 auto;
}
.report_detail_ttl {
    font-size: 30px;
    font-weight: normal;
    margin-bottom: 24px;
}
.report_detail_body {
    width: 100%;
    padding-bottom: 90px;
    text-align: left;
    font-size: 14px;
    color: #333333;
}
.report_detail_body img {
    width: 100%;
    height: auto;
}
.report_detail_body > p {
    margin-bottom: 20px;
}
.kimete {
    border:solid 1px #dddddd;
    padding:20px;
    margin-bottom: 20px;
}
.kimete .label {
    background-color: #b99505;
    color: #ffffff;
    padding:4px;
    font-size: 12px;
}
.comment {
    margin-bottom: 30px;
}
.box_report {
    border:solid 1px #dddddd;
    padding:20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
.report {
    padding-top: 50px;
    padding-bottom: 40px;
}
.report__inner {
    text-align: center;
    padding-top: 45px;
}
.report_ttl {
    width: 180px;
    margin:0 auto 60px;
}
.report_list {
    width: 100%;
    margin:0 auto;
    display: block;
}
.report_list_item {
    width: 50%;
    float: left;
    display: block;
    padding: 0 25px;
    margin-bottom: 30px;
}
.report_list_item_img {
    width: 100%;
    margin-bottom: 10px;
}
.report_list_item_ttl {
    text-align: left;
    color: #000000;
    font-size: 14px;
    line-height: 18px;
    height: 36px;
    overflow:hidden;
    margin-bottom: 20px;
}
.report_list_item a:hover img {
    opacity: 0.7;
}
.report_list_item a:hover .blog_list_item_ttl {
    text-decoration: underline;
}
.report_detail {
    width: 100%;
    max-width: 640px;
    margin:0 auto;
}
.report_detail_ttl {
    font-size: 30px;
    font-weight: normal;
    margin-bottom: 24px;
}
.report_detail_body {
    width: 100%;
    padding-bottom: 90px;
    text-align: left;
    font-size: 14px;
    color: #333333;
}
.report_detail_body img {
    width: 100%;
    height: auto;
}
.report_detail_body > p {
    margin-bottom: 20px;
}
.kimete {
    border:solid 1px #dddddd;
    padding:20px;
    margin-bottom: 20px;
}
.kimete .label {
    background-color: #b99505;
    color: #ffffff;
    padding:4px;
    font-size: 12px;
}
.comment {
    margin-bottom: 30px;
}
.box_report {
    border:solid 1px #dddddd;
    padding:20px;
    margin-bottom: 20px;
}
}


/* topics */
.topics_main {
    background-color: #ffffff;
    padding-top: 138px;
    padding-bottom: 70px;
}
.topics_main__inner {
    text-align: center;
    padding-top: 50px;
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "Meiryo UI", "ＭＳ Ｐゴシック", sans-serif;
}
.topics_main_ttl {
    margin-bottom: 80px;
}
.topics_main_list {
    width: 100%;
    max-width: 1040px;
    margin:0 auto;
    display: block;
}
.topics_main__list_item {
    width: 100%;
    display: block;
    padding: 20px;
    text-align:left;
    border-top:solid 1px #dddddd;
}
.topics_main__list_item a {
    text-decoration: none;
    color: #000000;
}
.topics_main__list_item a:hover {
    text-decoration: underline;
}
.topics_main__list_item_date {
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    vertical-align: middle;
    margin-right: 20px;
    color: #917503;
    width: 100px;
}
.topics_main__list_item_ttl {
    vertical-align: middle;
    text-align: left;
    color: #000000;
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    height: 20px;
    overflow:hidden;
    display: inline-block;
}

@media (max-width: 768px) {
.topics_main {
    padding-top: 50px;
    padding-bottom: 40px;
}
.topics_main__inner {
    text-align: center;
    padding-top: 45px;
}
.topics_main_ttl {
    width: 80px;
    margin: 0 auto 40px;
}
.topics_main_list {
    width: 100%;
    margin:0 auto 50px;
    display: block;
    border-bottom :solid 1px #dddddd;
}
.topics_main__list_item {
    width: 100%;
    display: block;
    padding: 15px;
    text-align:left;
}
.topics_main__list_item a {
    text-decoration: none;
    color: #000000;
}
.topics_main__list_item a:hover {
    text-decoration: underline;
}
.topics_main__list_item_date {
    display: inline-block;
    font-size: 12px;
    line-height: 20px;
    vertical-align: middle;
    margin-right: 20px;
    color: #917503;
    width: 100px;
}
.topics_main__list_item_ttl {
    vertical-align: middle;
    text-align: left;
    color: #000000;
    font-size: 12px;
    font-weight: normal;
    line-height: 20px;
    height: 20px;
    overflow:hidden;
    display: inline-block;
}
}


.report_detail {
    width: 100%;
    max-width: 640px;
    margin:0 auto;
}
.report_detail_ttl {
    font-size: 30px;
    font-weight: normal;
    margin-bottom: 24px;
}
.report_detail_body {
    width: 100%;
    padding-bottom: 90px;
    text-align: left;
    font-size: 14px;
    color: #333333;
}
.report_detail_body img {
    width: 100%;
    height: auto;
}
.report_detail_body .ph,
.report_detail_body > p {
    margin-bottom: 20px;
}
#ph_set li {
    margin-bottom: 10px;
}
.kimete {
    border:solid 1px #dddddd;
    padding:20px;
    margin-bottom: 20px;
}
.kimete .label {
    background-color: #b99505;
    color: #ffffff;
    padding:4px;
    font-size: 12px;
}
.comment {
    margin-bottom: 30px;
}
.box_report {
    border:solid 1px #dddddd;
    padding:20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
.report_detail {
    width: 100%;
    margin:0 auto;
}
.report_detail_ttl {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 24px;
}
.report_detail_body {
    width: 100%;
    text-align: left;
    font-size: 12px;
    color: #333333;
    padding: 0 15px 40px;
}
.report_detail_body > p {
    margin-bottom: 20px;
}
.kimete {
    border:solid 1px #dddddd;
    padding:10px;
    margin-bottom: 20px;
}
.kimete .label {
    background-color: #b99505;
    color: #ffffff;
    padding:4px;
    font-size: 10px;
}
.comment {
    margin-bottom: 30px;
}
.box_report {
    border:solid 1px #dddddd;
    padding:10px;
    margin-bottom: 20px;
}
}


/* mail */
.mail {
    background-color: #ffffff;
    padding-top: 138px;
    padding-bottom: 70px;
}
.mail__inner {
    text-align: center;
    padding-top: 50px;
}
.mail_ttl {
    margin-bottom: 20px;
}
.mail_ttl_sub {
    font-size: 16px;
    margin-bottom: 80px;
}
.mail_detail {
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "Meiryo UI", "ＭＳ Ｐゴシック", sans-serif;
    width: 100%;
    max-width: 900px;
    margin:0 auto;
    text-align: left;
}
.mail_detail_txt {
    margin-bottom: 20px;
}
.red {
    color: #ff0000;
}
.form_tbl {
    border-top: #dddddd solid 1px;
    border-bottom: #dddddd solid 1px;
    padding: 30px 0;
    margin-bottom: 30px;
}
.form_tbl > table > tbody > tr > th {
    background-color: #ffffff;
    font-size: 16px;
    font-weight: normal;
    padding: 10px 0;
    vertical-align: top;
}
.required {
    font-size: 14px;
    color: #ff0000;
}
.required:before {
    content: "*";
    display: inline;
}
.form_tbl > table > tbody > tr  > th p {
    font-size: 12px;
}
.form_tbl > table > tbody > tr > td {
    background-color: #ffffff;
    padding: 10px 0;
    vertical-align: top;
    font-size: 16px;
}
.form_tbl > table > tbody > tr > td select {
    background:  none;
    font-size: 16px;
    background-color: #f3f3f3;
    height: 60px;
    line-height: 60px;
    min-width: 100px;
}
.form_tbl > table > tbody > tr > td input {
    background-color: #f3f3f3;
    border: #d0d0d0 solid 1px;
    padding: 0 18px;
    font-size: 16px;
    height: 60px;
    line-height: 60px;
    vertical-align: middle;
}
.form_tbl > table > tbody > tr > td label {
     margin-right: 10px;
     line-height: 60px;
     display: inline-block;
}
.form_tbl > table > tbody > tr > td textarea {
    width: 100%;
    height: 100px;
    display: block;
    background-color: #f3f3f3;
    border: #d0d0d0 solid 1px;
    padding: 18px;
    font-size: 16px;
}

@media (max-width: 768px) {
.mail {
    padding-top: 50px;
    padding-bottom: 40px;
}
.mail__inner {
    text-align: center;
    padding-top: 45px;
}
.mail_ttl {
    width: 130px;
    margin:0 auto 20px;
}
.mail_ttl_sub {
    font-size: 13px;
    margin-bottom: 40px;
}
.mail_detail {
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "Meiryo UI", "ＭＳ Ｐゴシック", sans-serif;
    width: 100%;
    max-width: 900px;
    margin:0 auto;
    text-align: left;
    padding: 0 15px;
}
.mail_detail_txt {
    margin-bottom: 20px;
}
.form_tbl {
    border-top: #dddddd solid 1px;
    border-bottom: #dddddd solid 1px;
    padding: 20px 0;
    margin-bottom: 20px;
}
.form_tbl > table {
    display: block;
    width: 100%;
}
.form_tbl > table > thead,
.form_tbl > table > tbody {
    display: block;
    width: 100%;
}
.form_tbl > table > tbody > tr {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}
.form_tbl > table > tbody > tr > th {
    display: block;
    width: 100%;
    background-color: #ffffff;
    font-size: 14px;
    font-weight: normal;
    padding: 0;
    line-height: 1.4;
    vertical-align: top;
    margin-bottom: 8px;
}
.required {
    font-size: 12px;
}
.form_tbl > table > tbody > tr  > th p {
    font-size: 11px;
}
.form_tbl > table > tbody > tr > td {
    display: block;
    width: 100%;
    background-color: #ffffff;
    padding: 0 0 15px;
    vertical-align: top;
    font-size: 13px;
}
.form_tbl > table > tbody > tr > td select {
    background:  none;
    font-size: 12px;
    background-color: #f3f3f3;
    height: 40px;
    line-height: 40px;
    min-width: 80px;
}
.form_tbl > table > tbody > tr > td input {
    background-color: #f3f3f3;
    border: #d0d0d0 solid 1px;
    padding: 0 18px;
    font-size: 12px;
    height: 40px;
    line-height: 40px;
    vertical-align: top;
    margin-bottom: 8px;
}
.form_tbl > table > tbody > tr > td input[type="checkbox"] {
    height: auto;
    vertical-align: middle;
    line-height: 1.6;
}
.form_tbl > table > tbody > tr > td label {
     margin-right: 10px;
     line-height: 1.6;
     display: inline-block;
     margin-bottom: 10px;
}
.form_tbl > table > tbody > tr > td textarea {
    width: 100%;
    height: 100px;
    display: block;
    background-color: #f3f3f3;
    border: #d0d0d0 solid 1px;
    padding: 18px;
    font-size: 12px;
}
}


/* datepicker */
.ui-datepicker th {
    background-color: #ffffff !important;
}
.ui-widget-header {
    background: none !important;
}
.ui-datepicker .ui-datepicker-title {
    font-size: 14px !important;
}
@media (max-width: 768px) {
.ui-datepicker.ui-datepicker-multi {
    width: auto !important;
}
.ui-datepicker-multi .ui-datepicker-group {
    float: none !important;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
    width: 100% !important;
}
}


/* access */
.access {
    background-color: #ffffff;
    padding-top: 138px;
    padding-bottom: 70px;
}
.access__inner {
    text-align: center;
    padding-top: 50px;
}
.access_ttl {
    margin-bottom: 80px;
}
.access_detail {
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "Meiryo UI", "ＭＳ Ｐゴシック", sans-serif;
    width: 100%;
    max-width: 900px;
    margin:0 auto;
}
.range_hlf {
    text-align: right;
    margin-bottom: 50px;
}
.access_adr {
    margin-bottom: 40px;
    text-align: left;
}
.access_adr p {
    margin-bottom: 10px;
    font-size: 14px;
}
.access_txt {
    margin-bottom: 40px;
    border:solid 1px #dddddd;
    padding: 20px 20px 0;
    text-align: left;
}
.access_txt p {
    margin-bottom: 10px;
}
.access_txt ul {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
.access {
    padding-top: 50px;
    padding-bottom: 40px;
}
.access__inner {
    text-align: center;
    padding-top: 45px;
}
.access_ttl {
    width: 100px;
    margin:0 auto 40px;
}
.access_detail {
    width: 100%;
    max-width: 900px;
    margin:0 auto;
    padding: 0 15px;
}
.range_hlf {
    text-align: right;
    margin-bottom: 20px;
}
.range_hlf iframe {
    height: 200px !important;
}
.access_adr {
    margin-bottom: 20px;
    text-align: left;
}
.access_adr p {
    margin-bottom: 10px;
    font-size: 12px;
}
.access_txt {
    margin-bottom: 40px;
    border:solid 1px #dddddd;
    padding: 20px 20px 0;
    text-align: left;
}
.access_txt p {
    margin-bottom: 10px;
}
.access_txt ul {
    margin-bottom: 20px;
}
.access .btn_area {
    display: none;
}
}


/* sitemap */
.sitemap {
    background-color: #ffffff;
    padding-top: 138px;
    padding-bottom: 70px;
}
.sitemap__inner {
    text-align: center;
    padding-top: 50px;
}
.sitemap_ttl {
    margin-bottom: 80px;
}
.sitemap_detail {
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "Meiryo UI", "ＭＳ Ｐゴシック", sans-serif;
    width: 100%;
    max-width: 900px;
    margin:0 auto;
    text-align: left;
}
.sitemap_detail a {
    color: #000000;
    text-decoration: none;
}
.sitemap_detail a:hover {
    text-decoration: underline;
}
.sitemap_block {
    margin-bottom: 50px;
    display: block;
}
.sitemap_detail h3 {
    font-size: 20px;
    margin-bottom: 15px;
}
.sitemap_detail ul {
    margin-bottom: 0px;
}
.sitemap_detail ul li {
    font-size: 20px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
.sitemap {
    padding-top: 50px;
    padding-bottom: 40px;
}
.sitemap__inner {
    text-align: center;
    padding-top: 45px;
}
.sitemap_ttl {
    width: 110px;
    margin:0 auto 60px;
}
.sitemap_detail {
    width: 100%;
    max-width: 900px;
    margin:0 auto;
    padding: 0 15px;
}
.sitemap_block {
    margin-bottom: 30px;
    display: block;
}
.sitemap_detail h3 {
    font-size: 14px;
    margin-bottom: 15px;
}
.sitemap_detail ul {
    margin-bottom: 0px;
}
.sitemap_detail ul li {
    font-size: 13px;
    margin-bottom: 10px;
}
}


/* privacypolicy */
.privacypolicy {
    background-color: #ffffff;
    padding-top: 138px;
    padding-bottom: 70px;
}
.privacypolicy__inner {
    text-align: center;
    padding-top: 50px;
}
.privacypolicy_ttl {
    margin-bottom: 80px;
}
.privacypolicy_detail {
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "Meiryo UI", "ＭＳ Ｐゴシック", sans-serif;
    width: 100%;
    max-width: 900px;
    margin:0 auto;
    text-align: left;
}
.privacypolicy_detail__inner {
    border-bottom: solid 1px #dddddd;
    margin-bottom: 100px;
    padding-bottom: 100px;
}
.privacypolicy_detail__block {
    margin-bottom: 50px;
}
.privacypolicy_detail h3 {
    font-size: 20px;
    margin-bottom: 50px;
}
.privacypolicy_detail .htitle {
    margin-bottom: 10px;
}
.privacypolicy_detail p {
    font-size: 14px;
    margin-bottom: 30px;
}
.privacypolicy_detail ol {
    margin-left: 30px;
    margin-bottom: 30px;
    font-size: 14px;
}
.privacypolicy_detail ol li {
    margin-bottom: 15px;
}
.privacypolicy_detail ol li ol {
    margin-top: 10px;
    list-style: upper-alpha;
}

@media (max-width: 768px) {
.privacypolicy {
    padding-top: 50px;
    padding-bottom: 40px;
}
.privacypolicy__inner {
    text-align: center;
    padding-top: 45px;
}
.privacypolicy_ttl {
    width: 200px;
    margin:0 auto 60px;
}
.privacypolicy_detail {
    width: 100%;
    max-width: 900px;
    margin:0 auto;
    padding: 0 15px;
}
.privacypolicy_detail__inner {
    border-bottom: solid 1px #dddddd;
    margin-bottom: 50px;
    padding-bottom: 50px;
}
.privacypolicy_detail__block {
    margin-bottom: 20px;
}
.privacypolicy_detail h3 {
    font-size: 16px;
    margin-bottom: 30px;
}
.privacypolicy_detail .htitle {
    margin-bottom: 10px;
}
.privacypolicy_detail p {
    font-size: 12px;
    margin-bottom: 30px;
}
.privacypolicy_detail ol {
    margin-left: 30px;
    margin-bottom: 30px;
    font-size: 12px;
}
.privacypolicy_detail ol li {
    margin-bottom: 15px;
}
.privacypolicy_detail ol li ol {
    margin-top: 10px;
    list-style: upper-alpha;
}
.privacypolicy_detail img {
    margin-top: 20px;
    width: 50px;
    height: auto;
}
}


/* sitepolicy */
.sitepolicy {
    background-color: #ffffff;
    padding-top: 138px;
    padding-bottom: 70px;
}
.sitepolicy__inner {
    text-align: center;
    padding-top: 50px;
}
.sitepolicy_ttl {
    margin-bottom: 80px;
}
.sitepolicy_detail {
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "Meiryo UI", "ＭＳ Ｐゴシック", sans-serif;
    width: 100%;
    max-width: 900px;
    margin:0 auto;
    text-align: left;
}
.sitepolicy_detail__inner {
    border-bottom: solid 1px #dddddd;
    margin-bottom: 100px;
    padding-bottom: 100px;
}
.sitepolicy_detail__block {
    margin-bottom: 50px;
}
.sitepolicy_detail h3 {
    font-size: 20px;
    margin-bottom: 50px;
}
.sitepolicy_detail .htitle {
    margin-bottom: 20px;
}
.sitepolicy_detail p {
    font-size: 14px;
    margin-bottom: 30px;
}
.sitepolicy_detail ol {
    margin-left: 30px;
    margin-bottom: 30px;
    font-size: 14px;
}
.sitepolicy_detail ol li {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
.sitepolicy {
    padding-top: 50px;
    padding-bottom: 40px;
}
.sitepolicy__inner {
    text-align: center;
    padding-top: 45px;
}
.sitepolicy_ttl {
    width: 140px;
    margin:0 auto 60px;
}
.sitepolicy_detail {
    width: 100%;
    max-width: 900px;
    margin:0 auto;
    padding: 0 15px;
}
.sitepolicy_detail__inner {
    margin-bottom: 0px;
    border: none;
}
.sitepolicy_detail__block {
    margin-bottom: 50px;
}
.sitepolicy_detail h3 {
    font-size: 16px;
    margin-bottom: 30px;
}
.sitepolicy_detail .htitle {
    margin-bottom: 10px;
}
.sitepolicy_detail p {
    font-size: 12px;
    margin-bottom: 30px;
}
.sitepolicy_detail ol {
    margin-left: 30px;
    margin-bottom: 30px;
    font-size: 12px;
}
.sitepolicy_detail ol li {
    margin-bottom: 15px;
}
}


/* guide */
.guide {
    background-color: #ffffff;
    padding-top: 138px;
    padding-bottom: 70px;
}
.guide__inner {
    text-align: center;
    padding-top: 50px;
}
.guide_ttl {
    margin-bottom: 40px;
}
.guide_detail {
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "Meiryo UI", "ＭＳ Ｐゴシック", sans-serif;
    width: 100%;
    max-width: 900px;
    margin:0 auto;
    text-align: left;
}
.guide_detail__inner {
    padding-bottom: 100px;
}
.guide_detail__block {
    margin-bottom: 40px;
}
.qtitle {
    color: #b99505;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
    font-size: 16px;
}
.qtitle:before {
    content: "Q.";
    position: absolute;
    left: 0;
    top: 0;
}
.guide_detail h3 {
    border-top: solid 1px #dddddd;
    border-bottom: solid 1px #dddddd;
    font-size: 18px;
    padding: 8px 0;
    margin-bottom: 30px;
}
.guide_detail p {
    margin-bottom: 20px;
}
.guide_detail__block p {
    position: relative;
    padding-left: 30px;
    margin-bottom: 50px;
}
.guide_detail__block p:before {
    content: "A.";
    position: absolute;
    left: 0;
    top: 0;
}

@media (max-width: 768px) {
.guide {
    padding-top: 50px;
    padding-bottom: 40px;
}
.guide__inner {
    text-align: center;
    padding-top: 45px;
}
.guide_ttl {
    width: 60px;
    margin:0 auto 20px;
}
.guide_ttl2 {
    width: 140px;
}
.guide_detail {
    width: 100%;
    margin:0 auto;
    padding: 0;
}
.guide_detail__inner {
    padding-bottom: 50px;
}
.guide_detail__inner p {
    padding: 0 15px;
}
.guide_detail__block {
    margin-bottom: 40px;
}
.qtitle {
    color: #b99505;
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
    padding-right: 15px;
    font-size: 14px;
}
.qtitle:before {
    content: "Q.";
    position: absolute;
    left: 15px;
    top: 0;
}
.guide_detail h3 {
    border-top: solid 1px #dddddd;
    border-bottom: solid 1px #dddddd;
    font-size: 14px;
    padding: 8px 15px;
    margin-bottom: 30px;
}
.guide_detail p {
    margin-bottom: 20px;
}
.guide_detail__block p {
    position: relative;
    padding-left: 40px;
    margin-bottom: 50px;
    padding-right: 15px;
}
.guide_detail__block p:before {
    content: "A.";
    position: absolute;
    left: 15px;
    top: 0;
}
}


/* instagram */
.instagram {
    width: 100%;
    background-color: #ffffff;
}
.instagram__inner {
    padding: 50px 0;
    text-align: center;
}
.instagram__inner h2 {
    margin-bottom: 20px;
}
.instagram__list {
    text-align: center;
    font-size: 0;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}
.insta_photo {
    display: inline-block;
    font-size: 14px;
    width: 25%;
    padding: 10px;
}
.insta_photo img {
    width: 100%;
    height: auto;
}
.instagram__inner .btn_area a {
    text-decoration: none;
    color: #333333;
    font-size: 14px;
}

@media (max-width: 768px) {
.insta_photo {
    display: inline-block;
    font-size: 14px;
    width: 50%;
    padding: 10px;
}
}


/* youtube */
.youtube {
    width: 100%;
    background-color: #f2f2f2;
}
.youtube__inner {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 50px 0 50px;
    text-align: center;
}
.youtube__inner h2 {
    margin-bottom: 40px;
}
.youtube_movie {
    position: relative;
    width: calc(100% - 10px);
    margin: 0 auto;
}
.youtube_movie_frame {
    height: 0;
    padding-bottom: 62.5%;
}
.youtube__inner iframe {
    position: absolute;
    top: 0;
    left: 0;
}


/* banner */
.banner {
    width: 100%;
    background-color: #ffffff;
}
.banner__inner {
    padding: 50px 0;
    text-align: center;
}
.banner__list {
    text-align: center;
    font-size: 0;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.banner__item {
    display: inline-block;
    vertical-align: top;
    padding: 0 10px 20px;
}
.banner__item_img {
    margin-bottom: 20px;
    display: inline-block;
    padding: 0 10px;
}

#mwedBlogPartsArea {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
.banner__item {
    display: block;
}
.banner__item_img {
    text-align: center;
}
.banner__item_img img {
    width: 135px;
    height: auto;
}
#mwedBlogPartsArea {
    width: 100% !important;
}
}


/* policy_ch */
.policy_ch {
    margin-bottom: 40px;
}
.policy_ch_title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}
.policy_ch .ofauto {
    overflow: auto;
    width: 100%;
    height: 300px;
    display: block;
    border: solid 1px #dddddd;
    padding: 20px;
    text-align: left;
    margin-bottom: 20px;
}
.policy_ch .ofauto p {
    text-align: left;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}
.policy_ch .ofauto ol,
.policy_ch .ofauto ul {
    margin-left: 20px;
}
.policy_ch .ofauto li {
    text-align: left;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}
.policy_ch .ofauto p.text-policy_ch_pmark {
    text-align: center;
    margin-bottom: 30px;
}
.text-policy_ch_pmark img {
    width: 100px;
    height: auto;
}
.policy_ch .fp16 {
    text-align: center;
    font-size: 14px;
    margin-bottom: 15px;
}
.policy_ch_chkarea {
    text-align: center;
    padding: 20px;
    background-color: #efefef;
    font-size: 16px;
}


/* attention */
.attention_lead {
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 9000;
    background-color: #9d1313;
    display: table;
    width: 100%;
}
.attention_lead .attention_lead_inner {
    height: 50px;
    text-align: left;
    display: table-cell;
    vertical-align: middle;
    font-size: 14px;
    width: 100%;
}
.attention_lead span {
    display: inline-block;
    background-color: #ffffff;
    color: #9d1313;
    font-size: 12px;
    padding: 3px 5px;
    margin-right: 10px;
}
.attention_lead a {
    padding: 0 15px;
    width: 100%;
    display: block;
    color: #ffffff;
    text-decoration: none;
}
.attention_lead a:hover {
    opacity: 0.7;
}
.attention_box {
    display: block;
    height: 50px;
}
.attention_modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 9990;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.8);
}
.attention_modal.is_active {
    display: flex;
}
.attention_modal_inner {
    width: 90%;
    width: 90vw;
    max-width: 800px;
    max-height: 90vh;
    padding: 50px 0 0;
    background-color: #ffffff;
    position: relative;
}
.attention_close {
    font-size: 30px;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: inherit;
    text-decoration: none;
    color: #000000;
}
.attention_modal_content {
    width: 100%;
    height: 100%;
    max-height: calc(90vh - 50px);
    overflow: auto;
    padding: 10px 30px 20px;
}
.attention_modal_content h3 {
    color: #9d1313;
    margin-bottom: 40px;
    font-size: 16px;
}
.attention_modal_content p {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .attention_lead .attention_lead_inner {
        height: 40px;
        font-size: 12px;
    }
    .attention_lead span {
        font-size: 11px;
        padding: 2px 4px;
        margin-right: 8px;
    }
    .attention_lead a {
        padding: 0 10px;
    }
    .attention_box {
        height: 40px;
    }
}

/* parts */
.tac {
    text-align: center;
}
.tar {
    text-align: right;
}

.fl {
    float: left;
}
.fr {
    float: right;
}

.mb100 {
    margin-bottom: 100px;
}
.mb50 {
    margin-bottom: 50px;
}

.sp {
    display: none;
}
@media (max-width: 768px) {
.sp {
    display: block;
}
.pc {
    display: none;
}
}

/* clearfix */
.clearfix:before,
.clearfix:after {
  display: table;
  content: " ";
}

.clearfix:after {
  clear: both;
}

