@charset "UTF-8";
*, *::before, *::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body{
    color: #333;
    font-family: 'YuGothic','Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', 'Meiryo','MS ゴシック',sans-serif;
    background:#FEF8E3;
}
main {
    margin-top: 70px;
}
@media(min-width:768px) {
    main {
        margin-top: 70px;
    }
}
/* ------------------------------------------------- *
 * 文字サイズ
 * ------------------------------------------------- */
.text-s {
    font-size: 18px;
    color: #fff;
}
@media(min-width:768px) {
    .text-s {
        font-size: 24px;
    }
}
/* ------------------------------------------------- *
 * ラベル
 * ------------------------------------------------- */
.label-b {
    display: inline-block;
    margin: 5px 0;
    padding: 1px 10px;
    text-align: center;
    border-radius: 2px;
    background: #594626;
    color: #fff;
}
/* ------------------------------------------------- *
 * リンク設定
 * ------------------------------------------------- */
a {
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}
a:hover {
    opacity: 1;
}
@media(min-width:768px) {
    a:hover {
        opacity: .7;
    }
}
.f-size-L {
    font-size: 120%;
}
.f-size-S {
    font-size: 80%;
}
/* ------------------------------------------------- *
 * 文字色を変更
 * ------------------------------------------------- */
.text-color-001 {
    color: #f00;
}
/* ------------------------------------------------- *
 * 改行コントロール
 * ------------------------------------------------- */
@media screen and (min-width: 768px){   
    .pc { display:block; }
    .sp { display:none; }
}
@media screen and (max-width: 769px){   
    .pc { display:none; }
    .sp { display:block; }
}
/* ------------------------------------------------- *
 * アンカーリンクのずれ解消
 * ------------------------------------------------- */
 a.anchor {
    display: block;
    padding-top: 0px; 
    margin-top: -0px;
}
/* ------------------------------------------------- *
 * google_map
 * ------------------------------------------------- */
iframe.map{
    margin: 20px 0 0;
    transform: translateY(50px);
    opacity: 0;
    transition: 1s;
}
iframe.map.show {
    opacity: 1;
    transform: none;
}
iframe.map:before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 66.6%;
}
@media(min-width:769px) {
    iframe {
        margin: 50px 0 0;
    }
}
/* ------------------------------------------------- *
 * ヘッダー全体
 * ------------------------------------------------- */
 header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background-color: #000;
    height: 70px;
    width: 100%;
    border-bottom: 1px solid #ccc;
    opacity: 0.98;
    visibility: visible;
    transform: none;
}
/* ------------------------------------------------- *
 * ヘッダーメニュー（ロゴに横並びのテキストリンク）
 * ------------------------------------------------- */
 .headermenu {
    display: none;
}
@media(min-width:768px) {
    .headermenu {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        top: 12px;
        right: 50px;
        width: 800px;
        height: 45px;
        padding: 0 10px;
        background-color: #000;
    }
}
.headermenu li {
    display: block;
    font-size: 14px;
    color: #FFF;
    font-family: 'YuGothic','Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', 'Meiryo','MS ゴシック',sans-serif;
}
.headermenu li a {
    font-weight: 700;
    color: #FFF;
    position: relative;
    opacity: 1;
}
.headermenu li a::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 3px;
    border-radius: 50px;
    background-color: #B12E32;
    bottom: -10px;
    left: 10%;
    transform-origin: center;
    transform: scaleX(0);
    transition: transform .2s ease-in-out;
  }
  .headermenu li a:hover {
    color: #B12E32;
    position: relative;
    opacity: 1;
}
  .headermenu li a:hover::before {
    transform-origin: center;
    transform: scaleX(1);
  }
/* ------------------------------------------------- *
 * ヘッダー内h1ロゴ
 * ------------------------------------------------- */
h1 {
    margin: 0;
    display: block;
}
h1 img {
    height: 32px;
    padding-left: 10px;
}
@media(min-width:768px) {
    h1 img {
        height: 40px;
        padding-left: 30px;
    }
}
/* ------------------------------------------------- *
 * ハンバーガーボタン
 * ------------------------------------------------- */
.menuButton {
    display: block;
    height: 50px;
    width: 50px;
    cursor: pointer;
    /* background: #fff; */
    position: fixed;
    /* top: 4px; MENUあり */
    top: 10px;
    right: 7px;
    z-index: 88;
    transition: .6s;
}
.menuButton div {
    height: 2px;
    width: 50%;
    background: #FFF;
    border-radius: 20%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .2s;
}
.menuButton div:nth-last-of-type(1) {
    transform: translate(-50%, -9px);
}
.menuButton div:nth-last-of-type(2) {
    opacity: 1;
}
.menuButton div:nth-last-of-type(3) {
    transform: translate(-50%, 7px);
}
.menuButton.active {
    transform: rotate(0deg);
    top: 10px;
}
.menuButton.active  div:nth-last-of-type(1) {
    transform: rotate(45deg) translate(-50%, -0px);
    transform-origin: 0% 50%;
}
.menuButton.active  div:nth-last-of-type(2) {
    opacity: 0;
    transform: translate(0%, -50%);
}
.menuButton.active  div:nth-last-of-type(3) {
    transform: rotate(-45deg) translate(-50%, 0px);
    transform-origin: 0% 50%;
}
.menuButton span {
    display: block;
}
.menuButton.active span {
    display: none;
}
.menuButton span {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    color: #B12E32;
    text-align: center;
    font-size: 7px;
    letter-spacing: 0.08em;
}
@media(min-width:768px) {
    .menuButton {
        display: none;
    }
}
/* ------------------------------------------------- *
 * メニューボタンクリックで透明黒のマスク処理
 * ------------------------------------------------- */
.navMask {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 66;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}
.navMask.active {
    opacity: .5;
    visibility: visible;
}
/* ------------------------------------------------- *
 * ハンバーガーボタンで開くナビゲーションの中身
 * ------------------------------------------------- */
 nav {
    transform: translateX(100%);
    transition: .5s;
    position: fixed;
    top: 70.5px;
    right: 0;
    z-index: 77;
    background-color: #fff;
    padding: 0 0 70px;
    width: 60%;
    height: 100vh;
    overflow: auto;
}
@media(min-width:769px) {
    nav {
        width: 500px;
    }
}
nav.active {
    transform: translateX(0%);
}
nav ul li .nav-menu {
    display: flex;
    justify-content: space-between;
    padding: 15px 10px;
    background-color: #FEFBF3;
    color: #333;
    font-size: 16px;
    border-bottom: .5px solid #333;
    transition: .3s;
}
@media(min-width:768px) {
    nav ul li .nav-menu {
        font-size: 18px;
    }
}
nav ul li .nav-menu:hover {
    background-color: #FEFBF3;
    color: #333;
}
@media(min-width:768px) {
    nav ul li .nav-menu:hover {
        background-color: #F0E5CF;
        transition: .3s;
        transform: scale(1.01,1.01);
    }
}
nav ul li .nav-menu.active {
    background-color: #78A73D;
    color: #fff;
}
nav ul li .nav-menu::after {
    color: #B12E32;
    font-family: 'FontAwesome';
    content: "\f055";
    transition: .3s;
}
nav ul li .nav-menu.active::after {
    color: #fff;
    font-family: 'FontAwesome';
    content: "\f055";
    transform: rotate(405deg) translateY(-0px);
    transition: 1.5s;
}
nav ul li a {
    display: block;
    padding: 15px 10px;
    background-color: #FEFBF3;
    color: #333;
    font-size: 16px;
    border-bottom: .5px solid #333;
    transition: .3s;
}
@media(min-width:768px) {
    nav ul li a {
        font-size: 18px;
    }
}
nav ul li a:hover {
    background-color: #FEFBF3;
    color: #333;
}
@media(min-width:768px) {
    nav ul li a:hover {
        background-color: #F0E5CF;
        transition: .3s;
        transform: scale(1.01,1.01);
        overflow: hidden;
    }
}
nav ul li span.footer {
    color: #fff;
    font-size: 12px;
    text-align: center;
    display: block;
    padding: 15px 0;
    background-color: #30492C;
}
nav ul li img {
    display: block;
    width: 100%;
}
/* ------------------------------------------------- *
 * アコーディオン-menu
 * ------------------------------------------------- */
 @keyframes show {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.accordion ul {
    display: none;
    transition: 10s;
}
.accordion ul.active {
    display: block;
    animation: show 1s linear;
}
.accordion  li ul a {
    padding-left:  30px;
    background-color: #EEE;
    font-size: 13px;
}
@media(min-width:768px) {
    .accordion  li ul a {
        font-size: 16px;
    }
}
.accordion li .accordion li .menu {
    padding-left:  30px;
    background-color: #EEE;
}
.accordion li .accordion li .menu:hover {
    background-color: #EEE;
    color: #333;
}
@media(min-width:768px) {
    .accordion li .accordion li .menu:hover {
        background-color: #F0E5CF;
        transition: .3s;
        transform: scale(1.01,1.01);
    }
}
.accordion li .accordion li .menu.active {
    background-color: #B12E32;
    color: #fff;
}
.accordion table {
    margin: 0 auto;
}
.accordion table tr {
    border-bottom: 1px solid #ccc;
}
.accordion table td {
    padding: 10px;
    width: 50%;
    background-color: #FDF3E1;
}
.accordion li ul table a {
    display: block;
    padding: 0;
    border: none;
    background-color: #FDF3E1;
}
.accordion li ul table a:hover {
    opacity: .7;
}
.accordion table img {
    width: 100%;
    border-radius: 5px;
}
.accordion table tr td p {
    margin-top: 10px;
    color: #333;
    font-size: 12px;
    text-align: center;
}
/* ------------------------------------------------- *
 * スライダー
 * ------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@400;700&display=swap");
:root {
    --easing: cubic-bezier(.2, 1, .2, 1);
    --transition: .8s var(--easing);
    --color-base: #f8f8f8;
    --color-gray: #ddd;
    --color-theme: #f5695f;
    --color-theme-darken: #f12617;
    --box-shadow: .8rem .8rem 1.2rem rgba(0, 0, 0, .05), -.8rem -.8rem 1.2rem #fff;
    --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, .08), -1rem -1rem 1.5rem #fff;
    --box-shadow-inset: inset .8rem .8rem 1.2rem rgba(0, 0, 0, .05), inset -.8rem -.8rem 1.2rem #fff;
    --box-shadow-dark: .8rem .8rem 1.2rem rgba(0, 0, 0, .1), -.8rem -.8rem 1.2rem rgba(#fff,.2);
}
.l-section {
    font-family: 'YuGothic','Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', 'Meiryo','MS ゴシック',sans-serif;
    font-size: 62.5%;
    line-height: 1.8;
    height: 100%;
    /* word-break: break-word; */
    color: #333;
}
.l-inner {
    position: relative;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
}
.l-section .l-inner {
    padding-top: 70px;
    padding-bottom: 10px;
}
@media(min-width:768px) {
    .l-section .l-inner {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
[class*=swiper]:focus {
    outline: none;
}
.slide-media,
.thumb-media {
    position: relative;
    overflow: hidden;
}
.slide-media img,
.thumb-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
        object-fit: cover;
}
.swiper-button-prev, .swiper-button-next {
    display: grid;
    place-content: center;
    width: 50px;
    height: 50px;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.swiper-button-prev::before, .swiper-button-next::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    border-radius: 50%;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}
.swiper-button-prev::after, .swiper-button-next::after {
    width: 10px;
    height: 10px;
    content: "";
    border: solid var(--color-gray);
    border-width: 3px 3px 0 0;
}
.swiper-button-prev::after {
    margin-left: 0.4rem;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
}
.swiper-button-next::after {
    margin-right: 0.4rem;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}
.swiper-button-disabled {
    pointer-events: none;
    opacity: 0;
}
/* ------------------------------------------------- *
 * スライダー　メインビジュアル（バナー用）
 * ------------------------------------------------- */
.mv01 .swiper-fade .swiper-slide {
    -webkit-transition-property: opacity, -webkit-transform !important;
    transition-property: opacity, -webkit-transform !important;
    transition-property: opacity, transform !important;
    transition-property: opacity, transform, -webkit-transform !important;
    pointer-events: none;
}
.mv01 .swiper-fade .swiper-slide-active {
    pointer-events: auto;
}
.mv01 .swiper-pagination-bullet {
    margin-top: 10px;
    width: 20px;
    height: 5px;
    border-radius: 0%;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    background-color: #666;
}
.mv01 .swiper-pagination-bullet:not(:first-child) {
    margin-left: 0.8rem;
}
.mv01 .swiper-pagination-bullet-active {
    background-color: var(--color-theme);
}
.mv01 .slide-media {
    width: 100%;
    height: 100px;
}
@media(min-width: 600px) and (max-device-width: 768px) {
    .mv01 .slide-media {
        height: 250px;
        }
}
@media(min-width:769px) {
    .mv01 .slide-media {
        height: 300px;
        }
}
.mv01 .slide-media img {
    max-width: 100%;
    height: auto;
    -webkit-transition: 7s 1s ease-out;
    transition: 7s 1s ease-out;
}
.mv01 .slide-title {
    font-size: 4rem;
    font-weight: normal;
    line-height: 1.6;
    position: absolute;
    right: 8rem;
    bottom: 15%;
    margin-left: 16rem;
    text-align: right;
    color: #fff;
}
.mv01 .swiper-slide[class*=-active] .slide-media img {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
}
.mv01 .swiper-slide[class*=-active] .slide-title {
    -webkit-animation: mv01-fadeIn 2s 0.5s var(--easing) both;
            animation: mv01-fadeIn 2s 0.5s var(--easing) both;
}
@-webkit-keyframes mv01-fadeIn {
    0% {
        -webkit-transform: scale(0.5);
                transform: scale(0.5);
        opacity: 0;
        -webkit-filter: blur(300px);
                filter: blur(300px);
    }
    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
        opacity: 1;
        -webkit-filter: blur(0);
                filter: blur(0);
    }
}
@keyframes mv01-fadeIn {
    0% {
        -webkit-transform: scale(0.5);
                transform: scale(0.5);
        opacity: 0;
        -webkit-filter: blur(300px);
                filter: blur(300px);
    }
    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
        opacity: 1;
        -webkit-filter: blur(0);
                filter: blur(0);
    }
}
/* ------------------------------------------------- *
 * スライダー　メインビジュアル
 * ------------------------------------------------- */
.main-slide .swiper-fade .swiper-slide {
    -webkit-transition-property: opacity, -webkit-transform !important;
    transition-property: opacity, -webkit-transform !important;
    transition-property: opacity, transform !important;
    transition-property: opacity, transform, -webkit-transform !important;
    pointer-events: none;
}
.main-slide .swiper-fade .swiper-slide-active {
    pointer-events: auto;
}
.main-slide .swiper-pagination-bullet {
    margin-top: 10px;
    width: 20px;
    height: 5px;
    border-radius: 0%;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    background-color: #666;
}
.main-slide .swiper-pagination-bullet:not(:first-child) {
    margin-left: 0.8rem;
}
.main-slide .swiper-pagination-bullet-active {
    background-color: var(--color-theme);
}
.main-slide .slide-media {
    width: 100%;
    height: 250px;
}
@media(min-width: 600px) and (max-device-width: 768px) {
    .main-slide .slide-media {
        height: 500px;
        }
}
@media(min-width:769px) {
    .main-slide .slide-media {
        height: 750px;
        }
}
.main-slide .slide-media img {
    max-width: 100%;
    height: auto;
    -webkit-transition: 7s 1s ease-out;
    transition: 7s 1s ease-out;
}
.main-slide .slide-title {
    font-size: 4rem;
    font-weight: normal;
    line-height: 1.6;
    position: absolute;
    right: 8rem;
    bottom: 15%;
    margin-left: 16rem;
    text-align: right;
    color: #fff;
}
.main-slide .swiper-slide[class*=-active] .slide-media img {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
}
.main-slide .swiper-slide[class*=-active] .slide-title {
    -webkit-animation: mv-stay-fadeIn 2s 0.5s var(--easing) both;
            animation: mv-stay-fadeIn 2s 0.5s var(--easing) both;
}
@-webkit-keyframes main-slide-fadeIn {
    0% {
        -webkit-transform: scale(0.5);
                transform: scale(0.5);
        opacity: 0;
        -webkit-filter: blur(300px);
                filter: blur(300px);
    }
    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
        opacity: 1;
        -webkit-filter: blur(0);
                filter: blur(0);
    }
}
@keyframes main-slide-fadeIn {
    0% {
        -webkit-transform: scale(0.5);
                transform: scale(0.5);
        opacity: 0;
        -webkit-filter: blur(300px);
                filter: blur(300px);
    }
    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
        opacity: 1;
        -webkit-filter: blur(0);
                filter: blur(0);
    }
}
 /* ------------------------------------------------- *
 * セクション
 * ------------------------------------------------- */
section {
    padding: 0 20px;
    text-align: center;
}
@media(min-width:768px) {
    section {
        padding: 0;
    }
}
section p {
    font-size: 14px;
    line-height: 1.5;
}
@media(min-width:768px) {
    section p {
        font-size: 20px;
        line-height: 1.7;
    }
}
 /* ------------------------------------------------- *
 * 最大幅
 * ------------------------------------------------- */
 .w1000 {
    max-width: 1000px;
    margin: 0 auto;
}
.w1500 {
    max-width: 1500px;
    margin: 0 auto;
}
 /* ------------------------------------------------- *
 * box
 * ------------------------------------------------- */
.menu {
    padding-top: 50px;
    padding-bottom: 50px;
    background-image: url(../images/bg.jpg);
}
@media(min-width:768px) {
    .menu {
        padding-top: 100px;
        padding-bottom: 150px;
        /* background-image: none; */
    }
}
.menu-sp {
    display: block;
}
@media(min-width:768px) {
    .menu-sp {
        display: none;
    }
}
.menu-pc {
    display: none;
}
@media(min-width:768px) {
    .menu-pc {
        display: block;
    }
}
 /* ------------------------------------------------- *
 * margin
 * ------------------------------------------------- */
.m-f {
    margin-top: 50px;
}
@media(min-width:768px) {
    .m-f {
        margin-top: 100px;
    }
}
.m-o {
    margin-top: 50px;
    margin-bottom: 50px;
}
@media(min-width:768px) {
    .m-o {
        margin-top: 0px;
        margin-bottom: 150px;
    }
}
.m-l {
    margin-top: 50px;
    margin-bottom: 100px;
}
@media(min-width:768px) {
    .m-l {
        margin-top: 100px;
        margin-bottom: 150px;
    }
}
.m5 {
    margin-top: 5px;
}
.m15 {
    margin-top: 15px;
}
.m30 {
    margin-top: 30px;
}
.m50 {
    margin-top: 50px;
}
.m150 {
    margin-top: 50px;
}
@media(min-width:768px) {
    .m150 {
        margin-top: 150px;
    }
}
/* ------------------------------------------------- *
 * 横位置 
 * ------------------------------------------------- */
.t-left {
     text-align: left;
 }
.t-center {
    text-align: center;
}
.t-right {
    text-align: right;
}
/* ------------------------------------------------- *
 * ヘッドライン 
 * ------------------------------------------------- */
.hl-001 {
    font-weight: bold;
    padding-bottom: 0.5em;
    font-size: 30px;
    text-align: center;
    position: relative;
    color: #FFF;  
}
.hl-001::before, .hl-001::after {
    content: '';
    position: absolute;
    margin:auto;
    left: 0;
    bottom: 0;
    width: 2em;
    background-color: #468F45;
    height: 5px;
    right: 2em; 
}
.hl-001::before { 
    background-color:#B12E32;
    left:2em;
    width:4em;
}
@media(min-width:768px) {
    .hl-001 {
        font-size: 60px;
        /* color: #000; */
    }
}
.hl-001-b {
    font-weight: bold;
    padding-bottom: 0.5em;
    font-size: 30px;
    text-align: center;
    position: relative;
    color: #000;
}
.hl-001-b::before, .hl-001-b::after {
    content: '';
    position: absolute;
    margin:auto;
    left: 0;
    bottom: 0;
    width: 2em;
    background-color: #468F45;
    height: 5px;
    right: 2em; 
}
.hl-001-b::before { 
    background-color:#B12E32;
    left:2em;
    width:4em;
}
@media(min-width:768px) {
    .hl-001-b {
        font-size: 60px;
        color: #000;
    }
}
 /* ------------------------------------------------- *
 * 画像の横並び表示
 * ------------------------------------------------- */
.ElementList1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 0px 15px;
    margin-left: -20px;
}
.ElementList1 > li {
    width : calc(100% / 1) ;
    padding-left: 20px;
}
.ElementList2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 0px 15px;
    margin-left: -20px;
}
.ElementList2 > li {
    width : calc(100% / 2) ;
    padding-left: 20px;
}
.ElementList3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 0px 15px;
    margin-left: -20px;
}
.ElementList3 > li {
    width : calc(100% / 3) ;
    padding-left: 20px;
}
.ElementList5 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 0px 15px;
    margin-left: -20px;
}
.ElementList5 > li {
    width : calc(100% / 5) ;
    padding-left: 20px;
}
.ElementList1-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 0px 15px;
    margin-left: -20px;
}
.ElementList1-2 > li {
    margin-bottom: 20px;
    width : calc(100% / 1) ;
    padding-left: 20px;
}
@media(min-width:768px) {
    .ElementList1-2 > li {
        width : calc(100% / 2) ;
    }
}
.ElementList1-3 {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    margin: 30px 0px 15px;
    margin-left: -20px;
}
.ElementList1-3 > li {
    margin-bottom: 20px;
    width : calc(100% / 1) ;
    padding-left: 20px;
}
@media(min-width:768px) {
    .ElementList1-3 > li {
        width : calc(100% / 3) ;
    }
}
.ElementList1-4 {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    margin: 30px 0px 15px;
    margin-left: -20px;
}
.ElementList1-4 > li {
    margin-bottom: 20px;
    width : calc(100% / 1) ;
    padding-left: 20px;
}
@media(min-width:768px) {
    .ElementList1-4 > li {
        width : calc(100% / 4) ;
    }
}
.ElementList1-5 {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    margin: 30px 0px 15px;
    margin-left: -20px;
}
.ElementList1-5 > li {
    margin-bottom: 20px;
    width : calc(100% / 1) ;
    padding-left: 20px;
}
@media(min-width:768px) {
    .ElementList1-5 > li {
        width : calc(100% / 5) ;
    }
}
.ElementList2-3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 0px 15px;
    margin-left: -20px;
}
.ElementList2-3 > li {
    margin-bottom: 20px;
    width : calc(100% / 2) ;
    padding-left: 20px;
}
@media(min-width:768px) {
    .ElementList2-3 > li {
        width : calc(100% / 3) ;
    }
}
.ElementList2-4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 0px 15px;
    margin-left: -20px;
}
.ElementList2-4 > li {
    margin-bottom: 20px;
    width : calc(100% / 2) ;
    padding-left: 20px;
}
@media(min-width:768px) {
    .ElementList2-4 > li {
        width : calc(100% / 4) ;
    }
}
.ElementList2-4-b {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    margin: 30px 0px 15px;
    margin-left: -20px;
}
.ElementList2-4-b > li {
    margin-bottom: 20px;
    width : calc(100% / 2) ;
    padding-left: 20px;
}
@media(min-width:768px) {
    .ElementList2-4-b > li {
        width : calc(100% / 4) ;
    }
}
.ElementList2-5 {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    margin: 30px 0px 15px;
    margin-left: -20px;
}
.ElementList2-5 > li {
    margin-bottom: 20px;
    width : calc(100% / 2) ;
    padding-left: 20px;
}
@media(min-width:768px) {
    .ElementList2-5 > li {
        width : calc(100% / 5) ;
    }
}
.ElementList2-6 {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    margin: 30px 0px 15px;
    margin-left: -20px;
}
.ElementList2-6 > li {
    margin-bottom: 20px;
    width : calc(100% / 2) ;
    padding-left: 20px;
}
@media(min-width:768px) {
    .ElementList2-6 > li {
        width : calc(100% / 6) ;
    }
}
/* ------------------------------------------------- *
 * 画像の角丸
 * ------------------------------------------------- */
img.radius0 {
    width: 100%;
    border-radius: 0%;
}
img.radius5 {
    width: 100%;
    border-radius: 10px;
}
/* ------------------------------------------------- *
 * アニメーション上から表示
 * ------------------------------------------------- */
 .anime-ue {
    transform: translateY(-50px);
    opacity: 0;
    transition: .5s;
}
.anime-ue.show {
    opacity: 1;
    transform: none;
}
.anime-ue2 {
    transform: translateY(-50px);
    opacity: 0;
    transition: 1s;
}
.anime-ue2.show {
    opacity: 1;
    transform: none;
}
/* ------------------------------------------------- *
 * アニメーション下から表示
 * ------------------------------------------------- */
 .anime-sita {
    transform: translateY(50px);
    opacity: 0;
    transition: .5s;
}
.anime-sita.show {
    opacity: 1;
    transform: none;
}
.anime-sita2 {
    transform: translateY(50px);
    opacity: 0;
    transition: 1s;
}
.anime-sita2.show {
    opacity: 1;
    transform: none;
}
/* ------------------------------------------------- *
 * アニメーション左から表示
 * ------------------------------------------------- */
 .anime-sa {
    transform: translateX(-50px);
    opacity: 0;
    transition: .5s;
}
.anime-sa.show {
    opacity: 1;
    transform: none;
}
.anime-sa2 {
    transform: translateX(-50px);
    opacity: 0;
    transition: 1s;
}
.anime-sa2.show {
    opacity: 1;
    transform: none;
}
/* ------------------------------------------------- *
 * アニメーション右から表示
 * ------------------------------------------------- */
 .anime-yu {
    transform: translateX(50px);
    opacity: 0;
    transition: .5s;
}
.anime-yu.show {
    opacity: 1;
    transform: none;
}
.anime-yu2 {
    transform: translateX(50px);
    opacity: 0;
    transition: 1s;
}
.anime-yu2.show {
    opacity: 1;
    transform: none;
}
/* ------------------------------------------------- *
 * pvエリア
 * ------------------------------------------------- */
 .pv {
    margin: 0 auto;
    width: 100%;
    height: auto;
}
video {
    display: block;
    width: 100%;
}
/* ------------------------------------------------- *
 * 動画埋め込み
 * ------------------------------------------------- */
 .video {
    position: relative;
    align-items: bottom;
    width: 100%;
    height: 0;
    margin: 0px auto 50px;
    padding-top: calc(9 / 16 * 100%);
    /* background-color: #09f; */
}
@media(min-width:768px) {
    .video {
        margin: -30px auto 100px;
    }
}
.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* ------------------------------------------------- *
 * 動画埋め込み 画像下にテキスト
 * ------------------------------------------------- */
.video2 {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: calc(9 / 16 * 100%);
    margin: 30px auto 30px;
    /* background-color: #09f; */
}
@media(min-width:768px) {
    .video2 {
        margin: 10px auto 70px;
    }
}
.video2 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video2 p {
    margin: 10px 0 50px;
    text-align: center;
    font-size: 10px;
    line-height: 1.3;
}
@media(min-width:768px) {
    .video2 p {
        margin: 60px 0 50px;
        font-size: 12px;
    }
}
/* ------------------------------------------------- *
 * キャッチコピーエリア
 * ------------------------------------------------- */
p.copy {
    margin: 20px 0;
    font-size: 14px;
    line-height: 2;
    font-family: 'YuGothic','Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', 'Meiryo','MS ゴシック',sans-serif;
}
@media(min-width:768px) {
    p.copy {
        margin: 80px 0;
        font-size: 30px;
        line-height: 2;
    }
}
/* ------------------------------------------------- *
 * メニュー　アコーディオン
 * ------------------------------------------------- */
 .menu-list {
    margin: 30px 0 50px;
}
.menu-list dl {
    position: relative;
    cursor: pointer;
}
.menu-list dl::before {
    position: absolute;
    display: block;
    margin: auto;
    content: '';
    transform: rotate(135deg);
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    top: 80px;
    right: 49%;
    width: 10px;
    height: 10px;
}
.menu-list .open::before {
    transform: rotate(-45deg);
}
.menu-list dd {
    margin-top: 50px;
}
/* ------------------------------------------------- *
 * SNS
 * ------------------------------------------------- */
.insta {
    margin: 50px auto 100px;
}
@media(min-width:768px) {
    .insta {
        margin: 50px auto 80px;
    }
}
.sns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 0px -120px;
    margin-left: 0px;
}
@media(min-width:768px) {
    .sns {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 30px 0px 0px;
        margin-left: -50px;
    }
}
.sns > li {
    width: 100%;
    margin: 0 0 50px;
}
@media(min-width:768px) {
    .sns > li {
        width : calc(100% / 2) ;
        padding-left: 50px;
    }
}
.fb-page {
    width: 100%;
    padding-bottom: 50px;
}
.sns-tw {
    width: 100%;
    margin-top: 3px;
    /* border: 0.5px solid #E8EAEE; */
}
/* ------------------------------------------------- *
 * パンくずリスト
 * ------------------------------------------------- */
.breadcrumb-area {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    font-family: 'YuGothic','Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', 'Meiryo','MS ゴシック',sans-serif;
 }
.breadcrumb {
    padding: 0 20px;
}
@media(min-width:768px) {
    .breadcrumb {
        padding: 0;
    }
}
.breadcrumb li {
    display: inline-block;
    font-size: 10px;
}
@media(min-width:768px) {
    .breadcrumb li {
        font-size: 12px;
    }
}
.breadcrumb li:not(:last-child)::after {
    content: '>';
    margin: 0 5px;
}
/* ------------------------------------------------- *
 * フッター・ロゴ
 * ------------------------------------------------- */
 footer {
    display: block;
    align-items: center;
    justify-content: space-between;
    bottom: 50px;
    left: 0;
    z-index: 97;
    background-color:#B12E32;
    height:270px;
    width: 100%;
    margin: 30px auto 0;
    padding: 0;
    border-top: 1px solid #ccc;
    text-align: center;
}
@media(min-width:768px) {
    footer {
        height: 300px;
        margin: 30px auto 0;
    }
}
/* ------------------------------------------------- *
 * フッタートップへ戻るボタン
 * ------------------------------------------------- */
.topButton2 {
    display: block;
    color: #000;
    background-color: #fff;
    width: 100%;
    padding: 30px 20px;
    font-family: 'FontAwesome';
}
@media(min-width:768px) {
    .topButton2 {
        padding: 50px 20px;
    }
}
.topButton2:hover {
    background-color: #eee;
}
.topButton2 span {
    font-size: 20px;
}
@media(min-width:768px) {
    .topButton2 span {
        font-size: 30px;
    }
}
.topButton2 p {
    font-size: 14px;
    line-height: 3;
    letter-spacing: 0.08em;
}
/* ------------------------------------------------- *
 * フッター
 * ------------------------------------------------- */
.footer-box {
    display: block;
    bottom: 320px;
    left: 0;
    z-index: 999;
    background-color: #B12E32;
    width: 100%;
    padding: 0 20px 50px;
}
.footer-box img {
    width: 60%;
    margin: 40px auto 0;
}
@media(min-width:768px) {
    .footer-box img {
        height: 160px;
        margin: 50px auto 0;
    }
}
.footer-box p {
    margin: 30px auto 0;
    color: #fff;
    text-align: center;
    font-size: 18px;
    line-height: 2;
}
@media(min-width:768px) {
    .footer-box p {
        margin: 50px auto 0;
    }
}
.footer-box a {
    color: #fff;
}

.footer-box .SnsList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    padding: 50px 30px;
}
@media(min-width:768px) {
    .footer-box .SnsList {
        padding: 50px 400px;
    }
}
.footer-box .SnsList > li {
    width : calc(100% / 3) ;
    padding: 0;
}
.footer-box .icon {
    color: #fff;
    font-size: 25px;
}
@media(min-width:768px) {
    .footer-box .icon {
        font-size: 35px;
    }
}
/* ------------------------------------------------- *
 * フッターコピーライト
 * ------------------------------------------------- */
.footer-copy {
    display: block;
    align-items :center;
    bottom: 0;
    left: 0;
    z-index: 999;
    background-color: #000;
    height: 50px;
    width: 100%;
    padding: 16px 20px;
}
.footer-copy p {
    align-items: center;
    color: #fff;
    font-size: 16px;
}