@charset "utf-8";

/* *****共通設定***** */
* {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: normal;
    line-break: strict;
}

main {
    display: block;
    background-color: #fbfbf2;
}
main .btn {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    font-size: 1.5rem;
}
h1 {
    font-size: 4.5rem;
}
h2,
h3 {
    color: #401f0f;
}
.gray {
    color: #6c757d;
}
.cards {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    gap: 20px;
    padding: 0;
}

.cards.col--2 {
    max-width: 600px;
}

.cards.col--2 .card {
    width: calc(50% - 10px);
}

.cards.col--3 .card {
    width: calc(33% - calc(34px / 3));
}
.card {
    border-color: #e0c7b2;
    min-height: 65px;
}

@media screen and (max-width: 767.98px) {
    .card {
        min-height: inherit;
    }
}

.card--single {
    display: grid;
    place-content: center;
}

.cards + .cards {
    margin-top: 60px;
}
.sp {
    display: none;
}
@media screen and (max-width: 767.98px) {
    .sp {
        display: block;
    }
    .cards {
        display: block;
        max-width: inherit;
    }
    .cards.col--2 .card,
    .cards.col--3 .card {
        width: 100%;
    }

    .card + .card {
        margin-top: 20px;
    }
}

@media screen and (max-width: 767.98px) {
    .cards.sp-col--2 {
        justify-content: space-between;
        gap: 20px 0;
        display: flex;
    }
    .cards.sp-col--2 .card {
        width: 48%;
    }
    .cards.sp-col--2 .card + .card {
        margin-top: 0;
    }
}

.bgcolo-white {
    background-color: #fff;
    margin-top: 20px;
    padding: 20px;
}

.txtcolor--red {
    text-align: center;
    font-weight: bold;
    color: red;
    font-size: 2.4rem;
}

@media screen and (max-width: 767.98px) {
    .txtcolor--red {
        font-size: 1.6rem;
    }
}
.card-body {
    display: flex;
    flex-direction: column;
    padding: 1em;
}

.card .card-title {
    font-size: 1.2rem;
    padding: 0.5em;
    margin-bottom: 0;
    text-align: center;
}

.card-img-top {
    flex-shrink: 0;
}

.card-body .note {
    display: block;
    font-size: 80%;
    margin-top: 0.5em;
}

.img-thumbnail {
    width: 100%;
    padding: 0.25rem;
    background-color: transparent;
    border: none;
}

.link {
    transition: 0.3s;
    display: inline-block;
}
@media (any-hover: hover) {
    .link:hover {
        opacity: 0.7;
    }
}

#sec7 {
}
#sec7 .container {
    max-width: 800px;
}
#sec7 h2 {
    font-size: 2rem;
    color: #401f0f;
    font-weight: bold;
}

#sec7 .content_heading {
    text-align: center;
    margin-bottom: 30px;
}

#sec7 .card {
    min-height: inherit;
}
/* ヘッダー(navbar) */
.navbar {
    border-bottom: 1px solid #a29080;
    background-color: #401f0f;
}
.navbar .navbar-collapse {
    flex-grow: 0;
}
.navbar .navbar-brand {
    height: 50px;
}
.navbar .navbar-brand img {
    height: 100%;
}
.navbar .navbar-nav .active > .nav-link {
    color: #ffce11;
}
.navbar .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: rgba(251, 251, 241, 1);
}

/* フッター */
#footer {
    background-color: #563322;
}
@media screen and (max-width: 1024px) {
    #footer {
        padding-bottom: 21vw;
    }
}
#footer .container {
    color: #e0c7b2;
}
#footer .footer-ttl {
    font-size: 1rem;
    font-weight: bold;
    margin: 1.5rem 0;
    color: #ffce11;
}
#footer address p,
#footer #footer-news li {
    margin-bottom: 0.5rem;
}
#footer #footer-news ul {
    margin: 0;
    padding: 0;
}
#footer #footer-news ul {
    list-style: none;
}
#footer #footer-news li span {
    display: inline-block;
    margin-right: 0.5rem;
}
#footer #copyright {
    border-top: 1px solid #774831;
    background-color: #401f0f;
    color: #e0c7b2;
}
#footer img {
    width: 360px;
}

/* *****トップページ***** */
/* メイン画像 */
h1 {
    font-weight: bold !important;
    color: #ffce11;
}
#page-top h1 + span {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    line-height: 110%;
    margin-top: 0.2rem;
    display: block;
}
#page-top .jumbotron-fluid {
}
#page-top .jumbotron-fluid .container {
    height: 100%;
}
#page-top .jumbotron-fluid .btn {
    padding-left: 3rem;
    padding-right: 3rem;
    margin-top: 1.5rem;
    font-weight: bold;
    border-width: 3px;
    border-color: #fff;
}

/* 各セクション */
#page-top section {
    border-bottom: 1px solid #e0c7b2;
    background-color: #fbfbf2;
    padding: 3rem 0;
}

.bgcolor-brown {
    background-color: #e0c7b2 !important;
}

#page-top section:nth-child(odd) {
    /* background-color: #e0c7b2; */
}
#page-top section .container > h2 {
    margin-bottom: 30px;
    font-size: 2.5rem;
}
#page-top section .container > h2 + p {
    max-width: 700px;
    margin: 0 auto 50px;
}
#sec1 h3 {
    font-size: 1.2rem;
}

#sec1 .container {
    max-width: 800px;
    margin: 0 auto;
}

@media screen and (max-width: 767.98px) {
    #page-top .jumbotron-fluid {
        height: auto !important;
    }
    .jumbotron-fluid .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
@media screen and (min-width: 767.98px) {
    #page-top .jumbotron-fluid {
        height: auto !important;
    }
    .jumbotron-fluid .container {
        width: 100% !important;
        height: auto !important;
        max-width: inherit;
    }
}

@media screen and (min-width: 576px) {
    #page-top .jumbotron-fluid {
        height: auto !important;
        padding-bottom: 20px;
    }
    .jumbotron-fluid .container {
        width: 100% !important;
        height: auto !important;
        max-width: inherit;
    }
}

section#sec2 {
    line-height: 180%;
}

section#sec2 .list {
    padding: 0;
    font-size: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    list-style: none;
    justify-content: space-between;
    gap: 5px 0;
}

.category-title {
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

section#sec2 .list li {
    font-size: 1.2rem !important;
    width: 48%;
    text-align: left;
    padding: 5px;
}

section#sec2 .container {
    background-color: #fff;
    padding: 20px;
}

@media screen and (max-width: 767.98px) {
    section#sec2 .container {
        margin-left: 15px;
        margin-right: 15px;
        width: calc(100% - 30px);
    }
    section#sec2 .container .category-title {
        font-size: 1.2rem !important;
    }
}

section#sec2 .block + .block {
    margin-top: 40px;
}

section#sec2 .list li h3 {
    font-size: 1.2rem !important;
}

@media screen and (max-width: 767.98px) {
    section#sec1 {
        padding-bottom: 30px !important;
    }
    section#sec2 {
        padding-bottom: 30px !important;
    }
    .lead {
        font-size: 1rem;
        line-height: 1.8;
    }
    section#sec2 .list li h3 {
        font-size: 1rem !important;
    }
    section#sec2 .list li {
        padding: 10px;
        font-size: 1rem !important;
    }
}

#sec2 .container {
    max-width: 700px;
    margin: 0 auto;
}
#sec2 .container p {
    font-size: 1.2rem;
    line-height: 1.8;
}

#sec2 h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: center;
    color: #401f0f;
    font-weight: bold;
}

@media screen and (max-width: 767.98px) {
    #page-top section .container h3 {
        font-size: 1rem !important;
    }
    #sec1 {
        padding-bottom: 10px !important;
    }
    #sec2 {
        padding-bottom: 10px !important;
    }
    #sec3 {
        padding-bottom: 30px !important;
    }
    #sec2 .container p {
        font-size: 1rem;
    }
    .row {
        justify-content: space-between;
    }
    .col-lg-4 {
        width: 50%;
        margin-bottom: 2rem !important;
    }
}
#sec1 h1 {
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #401f0f;
}

@media screen and (max-width: 767.98px) {
    #sec1 h1 {
        font-size: 1.5rem;
    }
}

#sec2 .container p + p {
    margin-top: 2em;
}
#sec2 .row {
    min-height: 160px;
    color: #2f2f2f;
}
#sec4 .card-body .clearfix p,
#sec4 .card-body .clearfix h3 {
    margin-left: 115px;
    line-height: 130%;
}
#sec4 .card-body .card-title {
    margin-bottom: 5px;
    color: #401f0f;
}
#sec4 .card-body .card-subtitle {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #968075;
}
#sec4 .flex {
    display: flex;
    background-color: #fff;
    max-width: 1000px;
    align-items: center;
    padding: 20px;
    gap: 0 20px;
}

#sec4 .flex + .flex {
    margin-top: 40px;
}
@media screen and (max-width: 1000px) {
    #sec4 .flex {
        display: block;
    }
    #sec4 .flex .text {
        margin-top: 20px;
    }
}

#sec4 .flex .text {
    line-height: 1.8;
}

#sec4 .img {
    height: 100%;
    flex-grow: 1;
}
#sec4 img {
}
#sec4 .btn {
    width: 100%;
    background-color: #401f0f;
    border: none;
    padding: 1rem 0;
}

#sec4 .container {
    max-width: 1000px;
}

#sec3 .container {
    max-width: 700px;
    margin: 0 auto;
}

#sec6 .container {
    max-width: 700px;
    margin: 0 auto;
    height: 800px;
    overflow-y: scroll;
}

#sec5 article > .row {
    border: 1px solid #dddddd;
}
#sec5 > div:nth-child(1) img {
    width: 100%;
}
/*#sec4 > div:nth-child(2){
    margin-left: 220px;
}*/
#sec5 h3 {
    margin-bottom: 0.1rem;
}
#sec5 article > div div header {
    padding: 10px;
}

/* *****下層ページ***** */

#breadcrumb-wrapper {
    border-bottom: 1px solid #a29080;
}
#breadcrumb-wrapper,
.breadcrumb {
    font-size: 0.9rem;
    background-color: #563322;
}
.breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
}
.breadcrumb a:hover,
.breadcrumb a:focus {
    color: rgba(255, 255, 255, 1);
}
.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    padding-right: 1rem;
    color: rgba(255, 255, 255, 0.5);
}
.breadcrumb-item.active {
    color: #ffffff;
}
h1.page-ttl {
    font-size: 2rem;
}
#page h1 + span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    line-height: 110%;
    margin-top: 0.2rem;
    display: block;
}

#page article {
    padding: 5rem 0;
}

#page section {
    padding-bottom: 5rem;
}
#page section:last-child {
    padding-bottom: 0rem;
}

#page h1 + small {
    font-size: 1.5rem;
    color: #ffffff;
    line-height: 110%;
    margin-top: 0.2rem;
}
#page .jumbotron {
    background-color: #f1efff;
    border-bottom: #dddddd;
    background: url("../img/top-main.jpg") no-repeat center center;
    background-size: cover;
    border-radius: initial;
}
#page .jumbotron .container {
    padding: 0;
}
#page .jumbotron .container p {
    margin-bottom: 0;
}
#page h2 + p {
    margin: 0 0 1.2rem;
}
#page main img {
    max-width: 100%;
}
#page .sample-title {
    display: flex;
    align-items: center;
    text-align: center;
}

#page .sample-title::after {
    border-top: 3px dotted;
    content: "";
    display: inline; /* for IE */
    flex-grow: 1;
    margin-left: 0.5em;
}
#page .sample-title span {
    background-color: #fbfbf2;
}
#page .sample-subtitle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #401f0f;
}

/* *****フォーム***** */

.form1 label {
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.form1 input,
.form1 textarea,
.form1 select {
    max-width: 768px;
}
.form1 .form-group {
    margin-bottom: 2rem;
}

img {
    max-width: 100%;
    height: auto;
}

/* 地図追加 */

#sec8 {
}
#sec8 .container {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.map_wrapper {
    margin-top: 20px;
    aspect-ratio: 600/450;
}

.map_wrapper iframe {
    width: 100% !important;
    height: 100% !important;
}

@media screen and (min-width: 1025px) {
    #sec8 .container {
        max-width: 970px;
    }
    .info_container {
        display: flex;
        gap: 0 30px;
    }
    .map_wrapper {
        flex-grow: 1;
        margin-top: 0;
    }
}

.fix_btn {
    opacity: 0;
    pointer-events: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    transition: 0.3s;
}

@media screen and (max-width: 1025px) {
    .fix_btn.is-show {
        opacity: 1;
        pointer-events: auto;
    }
}

.fix_btn figure {
    margin: 0;
}

.fix_btn a {
    width: 100%;
}

.fix_btn a img {
    width: 100%;
}

.youtube_player {
    aspect-ratio: 16/9;
    max-width: 970px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: content-box;
}

.youtube_player iframe {
    width: 100% !important;
    height: 100% !important;
}

.youtube-ttl {
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #401f0f;
    text-align: center;
}

@media screen and (max-width: 767.98px) {
    .youtube-ttl {
        font-size: 1.6rem;
    }
}

/* ハンバーガーメニュー */
.hamburger-wrapper {
    width: 54px;
    height: 47px;
    z-index: 1000;
    position: fixed;
    top: 20px;
    right: 40px;
}

.hamburger {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.2);
    border: none;
    position: relative;
    border-radius: 5px;
    cursor: pointer;
}
.hamburger:focus {
    outline: none;
}

.h-line {
    position: absolute;
    height: 3px;
    background-color: #000;
    left: 0;
    right: 0;
    width: 70%;
    margin: 0 auto;
    transition: 0.3s;
}

.h-line:first-of-type {
    top: calc(50% - 13px);
}

.h-line:nth-of-type(2) {
    top: calc(50% - 1.5px);
}

.h-line:last-of-type {
    top: calc(50% + 10px);
}

.hamburger.is-cross .h-line:first-of-type {
    top: calc(50% - 1.5px);
    transform: rotate(45deg);
}

.hamburger.is-cross .h-line:nth-of-type(2) {
    opacity: 0;
}

.hamburger.is-cross .h-line:last-of-type {
    top: calc(50% - 1.5px);
    transform: rotate(-45deg);
}

.nav-close {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    z-index: 10;
    pointer-events: none;
    visibility: hidden;
}
.nav-close.is-show {
    pointer-events: auto;
    visibility: visible;
}

.nav {
    position: fixed;
    background: rgba(208, 208, 208, 0.7);
    min-height: 580px;
    top: 0;
    right: 0;
    padding: 23px 50px;
    transform: translateX(100%);
    transition: transform 0.3s;
    z-index: 100;
}
.nav.is-open {
    transform: translateX(0);
}
.nav-inner {
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 290px;
    margin-top: 120px;
}

.nav-item {
}

.nav-item + .nav-item {
    margin-top: 20px;
}

.nav-item a {
    background-color: #ff0000;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    border-radius: 10px;
    font-size: 2.4rem;
    font-weight: bold;
    min-height: 55px;
    width: 100%;
    transition: opacity 0.3s;
    display: grid;
    place-content: center;
}
@media (any-hover: hover) {
    .nav-item a:hover {
        opacity: 0.7;
    }
}

@media screen and (max-width: 767.98px) {
    .hamburger-wrapper {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    .nav-item a {
        font-size: 1.2rem;
    }

    .h-line:first-of-type {
        top: calc(50% - 10px);
    }

    .h-line:nth-of-type(2) {
        top: calc(50% - 1.5px);
    }

    .h-line:last-of-type {
        top: calc(50% + 7px);
    }
    .nav {
        min-height: inherit;
    }
    .nav-inner {
        margin-top: 50px;
        min-width: 170px;
    }
}

/* slick-slideに指定 */
.slick-slide {
    height: auto !important;
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
}

/*==================================================
スライダーのためのcss
===================================*/
.gallery {
    padding-top: 60px;
}
.gallery-list {
    /*横幅94%で左右に余白を持たせて中央寄せ*/
    width: 94%;
    margin: 0 auto;
    padding: 0;
}

.gallery-list figure {
    margin: 0;
    display: block;
}

.slick-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-list img {
    width: 60vw; /*スライダー内の画像を60vwにしてレスポンシブ化*/
    height: auto;
}

.gallery-list .slick-slide {
    transform: scale(0.8); /*左右の画像のサイズを80%に*/
    transition: all 0.5s; /*拡大や透過のアニメーションを0.5秒で行う*/
    opacity: 0.5; /*透過50%*/
}

.gallery-list .slick-slide.slick-center {
    transform: scale(1); /*中央の画像のサイズだけ等倍に*/
    opacity: 1; /*透過なし*/
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
    position: absolute; /*絶対配置にする*/
    top: 42%;
    cursor: pointer; /*マウスカーソルを指マークに*/
    outline: none; /*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666; /*矢印の色*/
    border-right: 2px solid #666; /*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {
    /*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {
    /*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align: center;
    margin: 20px 0 0 0;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width: 12px; /*ドットボタンのサイズ*/
    height: 12px; /*ドットボタンのサイズ*/
    display: block;
    border-radius: 50%;
    background: #ccc; /*ドットボタンの色*/
    border: none;
    cursor: pointer;
}

.slick-dots .slick-active button {
    background: #333; /*ドットボタンの現在地表示の色*/
}

@media screen and (max-width: 767.98px) {
    .gallery-list {
        width: 80%;
    }
    .slick-prev {
        left: -7.5%;
    }
    .slick-next {
        right: -7.5%;
    }
}
