@charset "UTF-8";

/* 要素 */

:root {
    --main-color: #6C8543;
    --sub-color: #fff;
    --background: #f8f9f5;
    --menuback: #b6c2a1;
}

html {
    /* font-family: "M PLUS Rounded 1c", sans-serif; */
    font-family: fot-tsukuardgothic-std, sans-serif;
    font-style: normal;
    font-weight: 400;
}

header {
    padding-top: 25px;
    padding-bottom: 25px;
    background: var(--sub-color);
}

a:hover {
    opacity: 0.6;
}

/* 共通クラス */

.align_center {
    align-items: center;
}

.align_end {
    align-items: flex-end;
}

.br::after {
    content: "\A";
    white-space: pre;
}

.btn_style_01,.btn_style_02 {
    padding: 12px 37px;
    width: 260px;
    font-size: 1.25em;
    font-weight: 700;
    position: relative;
}

.btn_style_01 {
    background-color: var(--main-color);
    color: var(--sub-color);
}

.btn_style_01::before,.btn_style_02::before {
    content: "";
    display: block;
    width: 23px;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.btn_style_01::before {
    border-bottom: 1px solid var(--sub-color);
    opacity: 0.26;
}

.btn_style_01::after,.btn_style_02::after {
    content: attr(value);
    position: absolute;
    right: 10px;
    bottom: 0;
    line-height: 1;
}

.btn_style_01::after {
    opacity: 0.26;
}

.btn_style_02 {
    background-color: var(--sub-color);
    color: var(--main-color);
}

.btn_style_02::before {
    border-bottom: 1px solid var(--main-color);
}

.h2_style_01 {
    color: var(--main-color);
    font-size: 2.25em;
    font-style: normal;
    font-weight: bold;
    letter-spacing: -2.6px;
    margin: 16px auto;
    width: fit-content;
}

.h3_style_01 {
    font-size: 2.1875em;
    font-weight: bold;
    line-height: 1.75;
    margin-bottom: 1em;
}

.h3_style_02 {
    text-align: center;
    color: var(--main-color);
    font-size: 2.25em;
    font-weight: bold;
    line-height: 1.5;
}

.h3_style_03 {
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1.75;
    margin-bottom: 1em;
    width: 100%;
    background-color: var(--sub-color);
    padding: 24px;
    border-bottom: 10px solid var(--main-color);
}

.h4_style_01 {
    background-color: var(--main-color);
    color: var(--sub-color);
    font-size: 1.25em;
    font-weight: bold;
    padding: 1em;
    width: fit-content;
    margin-bottom: 20px;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.d_flex {
    display: flex;
}

.flex_d {
    flex-direction: column;
}

.flex_wrap {
    flex-wrap: wrap;
}

.justify_content_c {
    justify-content: center;
}

.justify_content_sb {
    justify-content: space-between;
}

.red {
    color: #C00;
    font-weight: bold;
}

/* メインビジュアル */

.main_visial {
    height: 960px;
    width: 100%;
    display: block;
    /* background-image: url(../img/AdobeStock_175729454_Preview.jpeg); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 0;
    position: relative;
}

.main_visial_area {
    /* position: relative; */
    height: 100%;
}

#video-area{
    position: fixed;
    z-index: -1;/*最背面に設定*/
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
}

#video ,#video-area img {
    /*天地中央配置*/
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}

.main_catch {
    width: 100%;
    height: 100%;
}

.main_visial_text {
    color: var(--sub-color);
    margin-left: 52px;
}

.main_visial_text .text_s,
.main_visial_text .text_m {
    line-height: 1.75;
}

.main_visial_text .text_s {
    font-size: 30px;
}

.main_visial_text .text_m {
    font-size: 38px
}

.main_visial_sns {
    position: absolute;
    top: 0;
    right: 0;
    padding: 35px;
}

.main_visial_sns a {
    margin-bottom: 13px;
}

.main_visial_sns a:last-child {
    margin-bottom: 0;
}

.under_section {
    padding: 100px 20px 150px;
    background-color: var(--background);
}

/* ヘッダー */

.header__title {
    flex-basis: 50%;
}

.logo_image {
    padding-left: 20px;
}

.header__nav {
    flex-basis: 33%;
    margin: 0 20px 0 auto;
}

.mobile__nav {
    display: none;
}

#menu-header-navi,
#menu-mobile-navi {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    flex-basis: 50%;
    width: 100%;
}

#menu-header-navi a,
#menu-mobile-navi a {
    display: inline-flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
}

#menu-header-navi a::before,
#menu-mobile-navi a::before {
    height: 50px;
}

#menu-mobile-navi li:first-child a::before {
    content: url(../img/house-solid.svg)
}

#menu-header-navi li:first-child a::before ,
#menu-mobile-navi li:nth-child(2) a::before {
    content: url(../img/icon_menu_01.svg)
}

#menu-header-navi li:nth-child(2) a::before ,
#menu-mobile-navi li:nth-child(3) a::before {
    content: url(../img/icon_menu_02.svg)
}

#menu-header-navi li:nth-child(3) a::before ,
#menu-mobile-navi li:nth-child(4) a::before {
    content: url(../img/icon_menu_03.svg)
}

#menu-header-navi li:last-child a::before ,
#menu-mobile-navi li:nth-child(5) a::before {
    content: url(../img/icon_menu_04.svg)
}


/* フッター */

footer {
    background-color: var(--main-color);
    padding: 120px 0 125px;
    color: var(--sub-color);
    position: relative;
}

.footer-area {
    padding: 125px 20px;
    flex-wrap: wrap;
}

.footer_logoarea {
    flex-basis: 33%;
    text-align: center;
}

.footer_logoarea p {
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 25px;
}

.footer_logoarea img {
    max-height: 200px;
}

.common {
    flex-basis: 66%;
    padding-left: 110px;
    font-weight: normal;
}

.menu-footer-navi-container {
    margin-bottom: 40px;
}

#menu-footer-navi {
    font-weight: bold;
    /* text-decoration-line: underline; */
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.common>ul {
    display: flex;
    margin-bottom: 60px;
}

.common>ul li:nth-child(2) {
    margin: 0 24px;
}

.common>p {
    line-height: 1.75;
}

.footer_sns {
    margin: 63px 0 77px;
    width: 145px;
}

.copywriter {
    font-weight: bold;
    text-align: center;
}

footer.under_footer .c-wave2 {
    background-color: var(--background);
}

.single_title {
    background-color: var(--sub-color);
    border: 1px solid var(--main-color);
    border-radius: 10px;
    display: inline-block;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 22px;
    padding: 24px;
    position: relative;
}

.single_title:before {
    position: absolute;
    left: 23px;
    bottom: -24px;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 23px 23px 0;
    border-color: transparent var(--main-color) transparent transparent;
}

.single_title:after {
    position: absolute;
    left: 24px;
    bottom: -21px;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 21px 21px 0;
    border-color: transparent var(--sub-color) transparent transparent;
}

/*========= to top ===============*/
/*リンクの形状*/
.btn--circle{
    display: flex;
    justify-content:center;
    align-items:center;
    background: var(--sub-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    color: var(--main-color);
    text-align: center;
    text-transform: uppercase; 
    text-decoration: none;
    font-size:0.6rem;
    transition:all 0.3s;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
}

#page-top a:hover{
    background: var(--menuback);
}

.btn--circle i {
    font-size: 300%;
    line-height: 60px;
    -webkit-transition: all .3s;
    transition: all .3s;
    letter-spacing: 0;
}

.btn--circle:hover i {
    line-height: 55px;
}

/*リンクを右下に固定*/
#page-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 20;
    /*はじめは非表示*/
    opacity: 0;
    transform: translateX(100px);
}

/*　左の動き　*/
#page-top.LeftMove{
    animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime{
    from {
    opacity: 0;
    transform: translateX(100px);
    }
    to {
    opacity: 1;
    transform: translateX(0);
    }
}

/*　右の動き　*/
#page-top.RightMove{
    animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime{
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 1;
        transform: translateX(100px);
    }
}

/* トップページ -------- */
.top_news {
    background-color: var(--background);
    padding: 115px 0 180px;
}   

.card_title {
    flex-wrap: wrap;
    height: max-content;
    justify-content: center;
    margin-right: 50px;
    max-width: 260px;
}

.card_title h2 {
    text-align: center;
}

.card_title h2 p {
    font-size: 2.25em;
    font-style: normal;
    font-weight: bold;
    margin: 16px auto;
    letter-spacing: -2.6px;
}

.top_news_title h2 p ,
.top_event_title h2 p ,
.what_parune h2 p {
    color: var(--main-color);
}

.top_shop_title h2 p {
    color: var(--sub-color);
}

.card_title>p {
    font-weight: bold;
    margin: 0 0 2em;
}

.top_news_index {
    width: calc(100% - 310px);
}

.card_content {
    max-width: 230px;
    display: inline-block;
    width: calc(25% - 20px);
    margin-right: 20px;
}

.card_content:last-of-type { 
    margin-right: 0;
}

.thumbnail,.shop_image {
    width: 100%;
    margin-bottom: 18px;
}

.thumbnail img ,
.top_shop_content .shop_image img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    height: 220px;
}

.thumbnail img {
    /* clip-path: url(#clip); */
    -webkit-mask-image: url(../img/clippath.svg);
    mask-image: url(../img/clippath.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center; 
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.top_shop_content .shop_image img {
    clip-path: none;
    border-radius: 20px 20px 0 0;
    height: 50%;
    padding-left: 20px;
    padding-top: 25px;
}

.clippath {
    display: block;
    position: absolute;
}

.time_cat {
    color: var(--main-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.time_cat>* {
    display: inline-block;
}

.time_cat time {
    font-weight: bold;
}

.cat_icon {
    /* height: 16px; */
    width: 54px;
    border: 1px solid #707070;
    font-size: 0.5625em;
    font-weight: bold;
    text-align: center;
    padding: 3px 0 2px;
}

.psot_title {
    line-height: 1.75;
    text-decoration: underline;
    text-underline-position: auto;
    text-decoration-skip-ink: auto;
    text-decoration-skip: skip;
    font-weight: bold;
}

.backimage_01 {
    background-image: url(../img/AdobeStock_129535443_Preview.jpeg);
    background-position-y: 40%;
}

.backimage_02 {
    background-image: url(../img/AdobeStock_212180263_Preview.jpeg);
    background-position-y: 50%;
}

.top_event {
    padding: 110px 0 220px;
    background-color: var(--background);
}

.top_event>div,
.top_shop>div,
.what_parune>div {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

.top_event_title,
.top_shop_title,
.what_parune .card_title,
.ambassador .card_title {
    margin: 0 0 30px;
    max-width: none;
    flex-direction: column;
}

.top_event_index {
    margin-bottom: 60px;
}

.top_event_index_post.card_content {
    width: calc(20% - 20px);
}

.backimage_00,.top_shop {
    background-color: var(--main-color);
}

.top_shop {
    padding: 100px 0 150px;
    margin-top: -20px;
}

.top_shop_title>p {
    color: var(--sub-color);
}

.h3_style_topshop {
    text-align: center;
    margin: 0 auto 15px;
    color: var(--sub-color);
    font-weight: bold;
    font-size: 1.5em;
    letter-spacing: -1.5px;
    padding: 0 3em;
    width: fit-content;
    position: relative;
}

.speeker img {
    margin-right: 1em;
    padding-bottom: 3px;
}

.h3_style_topshop::before,
.h3_style_topshop::after {
    content: "";
    width: 30px;
    border: 1px solid var(--sub-color);
    position: absolute;
    top: 10px;
}

.h3_style_topshop::before {
    left: -30px;
    transform: rotate(45deg);
}

.h3_style_topshop::after {
    right: -30px;
    transform: rotate(-45deg);
}

.top_newshop_index {
    margin: 0 auto 70px;
    max-width: 1400px;
}

.top_newshop_image {
    position: relative;
}

.slick-slide {
    padding: 0 5px;
}

.area_icon {
    background-color: var(--sub-color);
    width: 73px;
    height: 73px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    color: var(--main-color);
    font-size: large;
    font-weight: bold;
}

.shop_name_cat {
    padding-left: 20px;
    color: var(--sub-color);
}

.shop_cat {
    display: flex;
    justify-content: space-between;
}

.shop_junle {
    font-size: smaller;
    letter-spacing: -2.4px;
}

.shop_category {
    background-color: #FF5B16;
    padding: 2px 10px;
    font-size: x-small;
}

.shop_name_cat .psot_title {
    letter-spacing: -2.5px;
    text-decoration: none;
    font-weight: normal;
}

.top_shop_content .container.d_flex {
    flex-wrap: wrap;
    justify-content: space-around;
}

.area_shop {
    flex-basis: 50%;
    margin-bottom: 70px;
}

.area_shop .card_content {
    width: 50%;
}

.area_shop .card_index {
    display: flex;
    justify-content: center;
}

.top_shop_content {
    margin-bottom: 70px;
}

.top_shop_image {
    position: relative;
}

.what_parune {
    background-color: var(--background);
    padding: 100px 0;
}

.what_parune_content figure {
    width: 55%;
}

.what_parune_content img {
    width: 100%;
}

.what_parune_textare {
    width: 40%;
    margin-left: 5%;
}

.what_parune_textare2 {
    padding: 0 20px;
    line-height: 1.75;
    margin-bottom: 2em;
}

.what_parune_textare p {
    line-height: 1.75;
    font-weight: bold;
    margin-bottom: 3em;
}

.what_parune_content {
    align-items: center;
    flex-wrap: wrap;
}

.what_parune_name {
    border: 1px solid var(--main-color);
    border-radius: 10px;
    padding: 35px 65px 46px;
    margin: 0 auto;
    max-width: 1200px;
}

.what_parune_name>div {
    margin-top: 35px;
    align-items: center;
    flex-wrap: wrap;
}

.what_parune_name>div>* {
    width: 50%;
}

.what_parune_name>div>p {
    font-weight: bold;
    line-height: 1.75;
}

.what_parune_name img {
    width: 100%;
    padding-left: 5%;
}

.ambassador {
    padding: 100px 0 50px;
    background-color: var(--sub-color);
}

.ambassador .card_title {
    color: var(--main-color);
}
.ambassador .card_title h2 p:nth-of-type(1) {

    margin-bottom: 0;
    font-weight: normal;
}

.ambassador .card_title h2 p:nth-of-type(2) {
    margin-top: 0;
}

.ambassador_content p {
    margin-bottom: 45px;
    text-align: center;
    font-weight: bold;
    line-height: 1.5;
}

.ambassador_card_index {
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.ambassador_card {
    max-width: 250px;
}

.ambassador_card img {
    width: 100%;
}

.ambassador_content .ambassador_card>p {
    margin: 0.5em;
}

.company_name,.ambassador_content .ambassador_card>p:nth-of-type(2) {
    font-size: 1.25em;
}

.ambassador_content .ambassador_card>p:nth-of-type(3) {
    color: var(--main-color);
}

/* =================================================================
news
===*/
.news .card {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.news .card_title {
    width: 100%;
    margin: 0;
}

.news .card_title>* {
    width: 100%;
    text-align: center;
}

.news .card_index {
    margin: 100px 0 150px;
    width: 100%;
}

.news .card_content {
    width: calc( 20% - 20px);
    margin: 0 20px 50px 0;
}

.news .card_content:nth-child(5n) {
    margin-right: 0;
}

/* ページナビ */
.page_navi {
    font-size: 1.5em;
    font-weight: bold;
}

.page_navi>* ,.nav-links a  {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
}
.next,.prev,.current ,.nav-links a {
    color: var(--sub-color);
    background-color: var(--main-color);
}

/* =================================================================
single
===*/
.single_time {
    justify-content: flex-end;
}
.single_time>* {
    margin-left: 1em;
}

figure.single_image {
    margin: 50px auto;
}

.single_image img {
    width: 100%;
    height: auto;
}

.single_text p {
    line-height: 1.75;
    margin-bottom: 50px;
}

.sfsiaftrpstwpr {
    margin-bottom: 50px;
}

.screen-reader-text {
    display: none;
}

.nav-links {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.nav-previous,.nav-next {
    display: inline-block;
    margin: 0;
}

.nav-previous {
    margin-right: auto;
}

.nav-next {
    margin-left: auto;
}

.parune .what_parune_content figure {
    width: 80%;
    position: relative;
}

.parune .what_parune_content figure figcaption {
    position: absolute;
    right: 50px;
    bottom: 20px;
}
.parune .what_parune_content {
    margin-bottom: 100px;
}
.what_parune_app {
    width: 100%;
    margin-bottom: 100px;
}

/*================================================================*/
/*========= ローディング画面のためのCSS ===============*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: var(--menuback);;
	z-index: 9999999;
	text-align:center;
	color:var(--sub-color);
}

#splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    z-index: 9999998;
}

/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/

body{
    background:var(--menuback);;/*遷移アニメーションと同じ色を指定*/
}

body.appear{
    background:var(--menuback);/*画面を開いた後の背景色を指定*/
}

.splashbg{
    display: none;
	content: "";
	position:fixed;
	transform: scale(100);
	background-color: var(--menuback);/*伸びる背景色の設定*/
	z-index: 999;
    /*丸のスタートの形状*/
    top:calc(50% - 1rem);/*50%から円の半径を引いた値*/
    left:calc(50% - 1rem);/*50%から円の半径を引いた値*/
	width: 2rem;
	height: 2rem;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg{
    display: block;
    border-radius: 50%;	
	animation-name:PageAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes PageAnime{
	0% {/*丸のスタート位置と形状*/
		transform: scale(100);
	
	}
	100% {/*丸の終了位置と形状*/
		transform: scale(0);
		display: none;/*終了時は消える*/
	}
}

/*画面遷移の後現れるコンテンツ設定*/
#container{
	opacity: 0;/*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay: 0.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
    }
}

#menu-footer-navi li ,
.footer_menu li {
    margin-bottom:20px;
}

#menu-footer-navi li a ,
.footer_menu li a {
    /*線の基点とするためrelativeを指定*/
	position: relative;
    display: block;
    padding:10px 20px;
    text-decoration: none;
}

.footer_menu li p {
    padding: 10px 0;
}

#menu-footer-navi li.current-menu-item a,
#menu-footer-navi li a:hover,
.footer_menu li a :hover {
	color:var(--sub-color);
}

#menu-footer-navi li a::after,
.footer_menu li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 10%;
    /*線の形状*/
    width: 80%;
    height: 2px;
    background:var(--sub-color);
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: center top;/*上部中央基点*/
}

#menu-footer-navi li a:hover,
.footer_menu li a:hover {
    opacity: 1;
}

/*現在地とhoverの設定*/
#menu-footer-navi li.current-menu-item a::after,
#menu-footer-navi li a:hover::after,
.footer_menu li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}

.pp_content {
    line-height: 1.75;
    margin: 20px 0;
}

.pp_content:first-of-type {
    margin-top: 100px;
}

.pp_head {
    font-weight: bold;
    font-size: 1.25em;
}

.pp_content a {
    background: linear-gradient(transparent 70%, #cfc 0%);
    font-weight: bold;
    padding: 0 5px;
}

.text_r {
    text-align: end;
}

.site_content {
    margin: 100px auto 0;
    width: 100%;
    max-width: 800px;
    border-top: 1px dotted #ccc;
    /* display: flex; */
    /* flex-wrap: wrap; */
}

.site_content dl {
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
    border-bottom: 1px dotted #ccc;
    margin: 0;
}

.site_content dt {
    /* padding: 1em 0; */
    line-height: 3;
    width: 30%;
}

.site_content dd {
    width: 70%;
    line-height: 3;
}

.under_section .card_title {
    width: 100%;
    flex-basis: 100%;
}

.under_section .container.card {
    flex-wrap: wrap;
    justify-content: center;
}

.under_section .card_content {
    width: calc(20% - 20px);
}

.under_section .card_content:nth-child(5n) {
    margin-right: 0;
}