@charset 'utf-8';


/* ------------------------------------------------------------ COMMON ------------------------------------------------------------ */

/* 基本 */

html {
	font-size: 62.5%;
    background-color: #fff;
}

@media only screen and (min-width: 1440px) {
    html {
        font-size: 68.75%;
    }
}

body {
	width:100%;
    font-size: 1.6rem; /* 初期値16px */
	line-height:1.8;
    text-align: justify;
    color:#00634c;
    /* font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;*/
    
    /* Noto Sans JP 有効 */
    font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    
    /* Noto Serif JP 有効 */
    /* font-family: "Noto Serif JP", 游明朝, YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "HGS明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
}

/* box-sizing */

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* 見出し（cssreset上書き） */

h1,h2,h3,h4,h5,h6 {
	font-weight: inherit;
}

/* 画像 */

img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
	height: auto;
}

/* ウェブフォント読み込み中の挙動（Chromeのみ） */

@font-face {
	font-display:swap;
}

/* 表示の切り替え */

.disp_pc {
    display: block !important;
}

.disp_sp {
    display: none !important;
}

br.disp_pc {
    display: inline !important;
}

br.disp_sp {
    display: none !important;
}

/* 汎用スタイル */

.f-bold {
    font-weight: bold;
}

.f-large {
    font-size: 110%;
}

.f-small {
    font-size: 90%;
}

.f-tl {
    text-align: left;
}

.f-tc {
    text-align: center;
}

.f-tr {
    text-align: right;
}

.f-red {
    color: crimson;
}

.mt {
    margin-top: 1em; 
}

.mb {
    margin-bottom: 1em; 
}


@media only screen and (max-width: 812px) {

    html {
        font-size: 56.25%;
    }
    
    body {
        /* font-size: 1.5rem; *//* 初期値15px */
        -webkit-text-size-adjust: 100%;
        -webkit-tap-highlight-color:rgba(0,156,255,0.4);
    }

    /* 表示の切り替え */

    .disp_pc {
        display: none !important;
    }

    .disp_sp {
        display: block !important;
    }

    br.disp_pc {
        display: none !important;
    }

    br.disp_sp {
        display: inline !important;
    }
}

/* ページ遷移のトランジション + ローディング */

body #loader-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99999;
    background-color: #00634c;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity .8s ease;
    transition: opacity .8s ease;
    will-change: opacity;
}

body.transition #loader-wrapper {
    opacity: 1;
}

body #loader-wrapper #loader {
    position: absolute;
    top:calc(50% - 22px);
    left:calc(50% - 22px);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    border-top: 3px solid rgba(255, 255, 255, 0.2);
    border-right: 3px solid rgba(255, 255, 255, 0.2);
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
    border-left: 3px solid rgba(255, 255, 255, 0.8);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: loader 1.1s infinite linear;
    animation: loader 1.1s infinite linear;
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* ------------------------------------------------------------ LINK ------------------------------------------------------------ */

/* リンク基本スタイル */

a,
a img,
a svg {
	-webkit-transition: 0.4s;
	transition: 0.4s;

    /* GPU acceleration */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: opacity, transform;
    /*
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    */
}

a:link,
a:visited { color:inherit; text-decoration:none; }
a:hover,
a:active { color:#666; text-decoration:none; }

a svg {
    fill:#000;
}

a:hover svg {
    fill:#666;
}

/* 電話番号リンクの無効化 */

a[href^="tel:"] {
    pointer-events: none;
}

/* 矢印付きリンクテキスト */

.link_txt {
    margin: 30px auto 0;
}

.link_txt a {
}

.link_txt a svg {
	width:16px;
	height:16px;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	top:-2px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	will-change: transform;
    margin: 0 5px;
}

.link_txt a:hover svg {
	-webkit-transform:translate3d(3px, 0, 0);
	transform:translate3d(3px, 0, 0);
}

/* リンクボタン */

.link_btn {
	margin: 30px auto 0;
    width: 50%;
    min-width: 400px;
	height:70px;
	line-height: 70px;
	font-size: 1.8rem;
	letter-spacing: 0.05em;
	text-align: center;
}

.link_btn a {
 	display: block;
	width: 100%;
	height: 100%;
}

.link_btn a:link,
.link_btn a:visited { color:#fff; background-color: #000; }
.link_btn a:hover,
.link_btn a:active { color:#000; background-color: #ccc; }

.link_btn a svg {
	width:16px;
	height:16px;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	top:-2px;
	margin: 0 5px;
	fill:#fff;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	will-change: transform;
}

/* 右向き（初期値） */

.link_btn a:hover svg {
	fill:#000;
    -webkit-transform:translate3d(3px, 0, 0);
	transform:translate3d(3px, 0, 0);
}

/* 動きなし */

.link_btn.stp a:hover svg {
    -webkit-transform:translate3d(0, 0, 0);
    transform:translate3d(0, 0, 0);
}

/* 左向き（反転） */

.link_btn.rev a:hover svg {
    -webkit-transform:translate3d(-3px, 0, 0);
    transform:translate3d(-3px, 0, 0);
}

/* 下向き */

.link_btn.dn a:hover svg {
    -webkit-transform:translate3d(0, 3px, 0);
    transform:translate3d(0, 3px, 0);
}

/* 拡大ボタン */

.zoom a img {
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.zoom a:hover img {
    opacity: 1 !important;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

@media only screen and (max-width: 812px) {

    .zoom a:hover img {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
/* ============================== SP ============================== */

@media only screen and (max-width: 812px) {

	/* リンク基本スタイル */
    
    a {
        word-break: break-all; /* URLが長い場合の配慮 */
    }

	a:link,
    a:visited { color:inherit; text-decoration:none; }
	a:hover,
    a:active { color:inherit; text-decoration:none; }
    
    a svg {
        fill:#000;
    }

    a:hover svg {
        fill:#000;
    }
    
    /* 電話番号リンクの無効化解除 */

    a[href^="tel:"] {
        pointer-events: auto;
    }

	/* 矢印付きリンクテキスト */
	
	.link_txt {
        margin: 20px auto 0;
	}
	
	.link_txt a {
	}
	
	.link_txt a svg {
	}
	
	.link_txt a:hover svg {
		fill:#000;
		-webkit-transform:translate3d(0, 0, 0);
		transform:translate3d(0, 0, 0);
	}
	
	/* リンクボタン */
	
	.link_btn {
        margin: 20px auto 0;
		width:80%;
		min-width: 240px;
		height: 50px;
		line-height: 50px;
/*		font-size: 1.5rem;*/
	}
	
	.link_btn a:link,
	.link_btn a:visited { color:#fff; background-color: #000; }
	.link_btn a:hover,
	.link_btn a:active { color:#fff; background-color: #000; }
	
	
	.link_btn a svg {
	}
	
	.link_btn a:hover svg,
    .link_btn.stp a:hover svg,
    .link_btn.rev a:hover svg,
    .link_btn.dn a:hover svg {
		fill:#fff;
        -webkit-transform:translate3d(0, 0, 0);
        transform:translate3d(0, 0, 0);
	}

}


/* ------------------------------------------------------------ SNSアイコン ------------------------------------------------------------ */

/*
.icon_sns_insta {
    fill:#f10073;
}

.icon_sns_fb {
    fill:#1877f2;
}

.icon_sns_tw {
    fill:#1da1f2;
}

.icon_sns_note {
    fill:#41C9B4;
}
*/


/* ------------------------------------------------------------ 共通コンテナ ------------------------------------------------------------ */

.container {
    display:block;
    width:100%;
    max-width:1280px;
    min-width: 990px;
    margin:0 auto;
    padding-left:3%;
    padding-right:3%;
    overflow:hidden;
}

.container::after {
    content: "";
    display: block;
    clear: both;
}

@media only screen and (min-width: 1280px) {
    .container {
        padding-left: 38px;
        padding-right: 38px;
    }
}

@media only screen and (max-width: 990px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media only screen and (max-width: 812px) {
    .container {
        max-width:none;
        min-width: 0;
        padding-left:5%;
        padding-right:5%;
    }
}

.container.wide {
    max-width:none;
    min-width: 0;
    padding-left: 0;
    padding-right: 0;
}


/* 汎用インナー */

.inner {
    width:100%;
    max-width:1280px;
    min-width: 990px;
    margin-left:auto;
    margin-right:auto;
    padding-left: 3%;
    padding-right: 3%;
    overflow: hidden;
}

.inner::after {
    content: "";
    display: block;
    clear: both;
}

@media only screen and (min-width: 1280px) {
    .inner {
        padding-left: 38px;
        padding-right: 38px;
    }
}

@media only screen and (max-width: 990px) {
    .inner {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media only screen and (max-width: 812px) {
    .inner {
        max-width:none;
        min-width:0;
        padding-left: 5%;
        padding-right: 5%;
    }
}

/* 汎用ボックス */

.box {
    width:100%;
    margin: 0 auto 3em;
}

.box:last-child {
    margin: 0 auto;
}

/*
.box::after {
    content: "";
    display: block;
    clear: both;
}
*/

@media only screen and (max-width: 812px) {
    .box {
        margin: 0 auto 3em;
    }
}

/* pタグ共通 */
    
p {
    margin-bottom: 1.2em;
}

@media only screen and (max-width: 812px) {
    p {
        margin-bottom: 1em;
    }
}


/* ------------------------------------------------------------ HEADER ------------------------------------------------------------ */

/*--------------------------------
	ヘッダー
--------------------------------*/

header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10005;
    pointer-events: none;
	display: block;
	width:100%;
/*	height: 80px;*/
/*	background-color: rgba(204, 204, 204, 0.95);*/
}

header::after {
    content: "";
    display: block;
    clear: both;
}

header .container {
    max-width:none;
    min-width: 0;
    padding-top:0;
    padding-bottom:0;
}

/* ロゴマーク */

header .container #header_logo {
	float: left;
	width: 150px;
    margin: 20px 0 0; /* 位置調整 */
    pointer-events: auto;
}

header .container #header_logo img {
	width: 100%;
	height: auto;
}

/* SNS */

header .container #header_sns {
    float: right;
    pointer-events: auto;
}

header .container #header_sns ul {
    font-size:0;
    margin: 18px 40px 0 0;
}

header .container #header_sns ul li {
    display: inline-block;
    vertical-align: middle;
}

header .container #header_sns ul li + li {
    margin: 0 0 0 15px;
}

header .container #header_sns ul li img {
    width: 32px;
    height: 32px;
}
header .container #header_sns ul li:first-child img {
  width: 28px;
  height: 28px;
}

@media only screen and (max-width: 812px) {

    header {
        height: 50px;
        background-color: rgba(255, 255, 255, 1);
/*        backdrop-filter: blur(3px);*/
    }

    header .container {
        padding-left: 3%;
        padding-right: 3%;
    }
    
    /* ロゴマーク */
    
    header .container #header_logo {
        width: 120px;
        margin: 17px auto 0; /* 位置調整 */
    }

    /* SNS */

    header .container #header_sns ul {
        margin: 9px 55px 0 0; 
    }
    
/*
    header .container #header_sns ul li svg {
        width: 20px;
        height: 20px;
    }
*/
    
}


/*--------------------------------
	ナビゲーション
--------------------------------*/

nav {
	margin: 0;
}

nav #navi_logo {
    display: block;
    width: 150px;
    margin:  0 auto 40px;
}

nav #navi_logo img {
    width: 100%;
    height: auto;
}

nav ul {
	width:100%;
	margin: 0 auto;
	text-align: center;
	font-size: 0;
}

nav ul li {
	display: block;
	vertical-align: middle;
    margin: 0 auto;
	font-size: 1.6rem;
}

nav ul li a:link,
nav ul li a:visited { color:#fff; text-decoration:none; }
nav ul li a:hover,
nav ul li a:active { color:#ccc; text-decoration:none; }


nav ul li a.active { /* 現在地表示 */
/*    font-weight: bold;*/
}

nav ul li a svg {
	width: 20px;
	height: 20px;
	vertical-align: middle;
    fill:#fff;
}

@media only screen and (max-width: 812px) {
    nav ul li {
    }
}

/*--------------------------------
    ナビ 横スライド型
--------------------------------*/

nav.slideIn_navi {
    display: block;
    position: fixed;
    top:0;
    right:0;
    z-index: 10004;
    background-color: #B1D561;
    width:25vw;
    min-width:300px;
    max-width: 900px;
    height:100vh;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: 0.3s;
    transition: 0.3s;

    /* GPU acceleration */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: opacity, transform
        
    display: -webkit-flex; /* Safari */
    display: flex; /* Chrome, Firefox, IE11 */
    -webkit-flex-wrap:wrap;
    flex-wrap:wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-align-content:center;
    align-content:center;
}

body.nav-show nav.slideIn_navi {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

nav.slideIn_navi ul {
    /* flex: flex-grow flex-shrink flex-basis; */
    -ms-flex:0 0 70%;
    flex:0 0 70%;
    max-width:70%;
    width: 70%;
}

nav.slideIn_navi ul li + li {
    margin-top: 1.5vh;
}

nav.slideIn_navi .btnlink {
    /* flex: flex-grow flex-shrink flex-basis; */
    -ms-flex:0 0 70%;
    flex:0 0 70%;
    max-width:70%;
    width: 70%;
    margin-top: 4vh;
}

@media only screen and (max-width: 812px) {

    nav.slideIn_navi {
        width:100vw;
        min-width:0;
        max-width: none;
        padding-top: 90px;
    }
    
    nav.slideIn_navi ul {
        /* flex: flex-grow flex-shrink flex-basis; */
        -ms-flex:0 0 60%;
        flex:0 0 60%;
        max-width:60%;
        width: 60%;
    }
    
    nav.slideIn_navi ul li + li {
        margin-top: 1.0vh;
    }

    nav.slideIn_navi .btnlink {
        margin-top: 2.5vh;
    }
    
    /* ナビ出現時に背景でスクロールを止める処理 */

    body.nav-show {
        overflow: hidden;
        height: 100%;
    }

}

/*--------------------------------
    ハンバーガーメニュー
--------------------------------*/

#nav_btnwrapper {
    position: fixed;
    top: 10px;
    right: 10px;
    background-color: transparent;
    z-index: 10001;
    pointer-events: auto;
}

#nav_btnwrapper #nav_btn {
    display: block;
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

#nav_btnwrapper #nav_btn #nav_btn_icon {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 2px;

    -webkit-transform:translate(-50%, -50%);
    transform:translate(-50%, -50%);
    background-color: #000;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

#nav_btnwrapper #nav_btn #nav_btn_icon::before,
#nav_btnwrapper #nav_btn #nav_btn_icon::after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

#nav_btnwrapper #nav_btn #nav_btn_icon::before {
    -webkit-transform:translate(0, -400%);
    transform:translate(0, -400%);
}

#nav_btnwrapper #nav_btn #nav_btn_icon::after {
    -webkit-transform:translate(0, 400%);
    transform:translate(0, 400%);
}

#nav_btnwrapper #nav_btn:hover #nav_btn_icon,
#nav_btnwrapper #nav_btn:hover #nav_btn_icon::before,
#nav_btnwrapper #nav_btn:hover #nav_btn_icon::after {
    background-color: #00634c;
}

body.nav-show #nav_btnwrapper #nav_btn #nav_btn_icon {
    background: transparent;
}

body.nav-show #nav_btnwrapper #nav_btn #nav_btn_icon::before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

body.nav-show #nav_btnwrapper #nav_btn #nav_btn_icon::after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}


@media only screen and (max-width: 812px) {
    
    #nav_btnwrapper {
        top: 0;
        right: 5px;
    }
    
    #nav_btnwrapper #nav_btn:hover #nav_btn_icon,
    #nav_btnwrapper #nav_btn:hover #nav_btn_icon::before,
    #nav_btnwrapper #nav_btn:hover #nav_btn_icon::after {
        background-color: #000;
    }
    
}



/*--------------------------------
    タイトルヘッダー
--------------------------------*/

#topHeader {
    width: 100%;
    position: relative;
}

#topHeader .centerTitle {
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 10002;
    display: block;
    width: 25%;
    max-width: 450px;
    -webkit-transform:translate(-50%, 0);
    transform:translate(-50%, 0);
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

#topHeader .centerTitle a:hover img {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

/*
#topHeader .leftObj {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10003;
    display: block;
    width: 30%;
    pointer-events: none;
    -webkit-transform:translate(0, -70%);
    transform:translate(0, -70%);
}

#topHeader .rightObj {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10003;
    display: block;
    width: 30%;
    pointer-events: none;
    -webkit-transform:translate(0, -70%);
    transform:translate(0, -70%);
}
*/


#topHeader .leftObj {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10003;
    display: block;
    width: 20%;
    pointer-events: none;
    -webkit-transform:translate(0, 0);
    transform:translate(0, 0);
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

#topHeader .rightObj {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10003;
    display: block;
    width: 20%;
    pointer-events: none;
    -webkit-transform:translate(0, 0);
    transform:translate(0, 0);
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

body.aspect #topHeader .leftObj {
    width: 30%;
}

body.aspect #topHeader .rightObj {
    width: 30%;
}

body.switch #topHeader .leftObj {
    -webkit-transform:translate(-100%, 0);
    transform:translate(-100%, 0);
}

body.switch #topHeader .rightObj {
    -webkit-transform:translate(100%, 0);
    transform:translate(100%, 0);
}


/* セカンドページ調整 */

body.second #topHeader .leftObj,
body.second #topHeader .rightObj {
    display: none;
}


@media only screen and (max-width: 812px) {

    #topHeader .centerTitle {
/*        position: absolute;*/
        top: 49px;
        width: 60%;
    }

    #topHeader .centerTitle a:hover img {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    #topHeader .leftObj {
        top: 50px;
/*
        -webkit-transform:translate(0, -30%);
        transform:translate(0, -30%);
*/
    }

    #topHeader .rightObj {
        top: 50px;
/*
        -webkit-transform:translate(0, -30%);
        transform:translate(0, -30%);
*/
    }
}




/*--------------------------------
    プレゼントバナー
--------------------------------*/

#bannerPresent {
    position: fixed;
    bottom: 200px;
    right:10px;
    z-index: 10004;
    display: block;
    width: 12%;
    min-width: 140px;
    max-width: 220px;
    height: auto;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

@media only screen and (min-width: 1600px) {
    #bannerPresent {
        bottom: 240px;
    }
}

#bannerPresent a {
}

#bannerPresent a img {
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

#bannerPresent a:hover img {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

/* ナビ表示時は消える */

body.nav-show #bannerPresent {
    opacity: 0;
    pointer-events: none;
}


/* アンケートページでは削除 */

body.contact #bannerPresent {
    display: none
}


@media only screen and (max-width: 812px) {
    
    #bannerPresent {
        top: auto;
/*
        bottom: -15px;
        right:-15px;
*/
        bottom: 145px; /* fallback for enviroment can't use calc & env function */
        bottom: calc(env(safe-area-inset-bottom) + 145px);
        
        right:0;
        width: 30%;
        
        min-width: 100px;
        max-width: 150px;
    }

    #bannerPresent a:hover img {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    
    /* ナビ表示時は消える を解除 */

/*
    body.nav-show #bannerPresent {
        opacity: 1;
        pointer-events: auto;
    }
*/

}


/*--------------------------------
    資料請求バナー
--------------------------------*/

#bannerRequest {
    position: fixed;
    bottom: 80px;
    right:10px;
    z-index: 10004;
    display: block;
    width: 12%;
    min-width: 140px;
    max-width: 240px;
    height: auto;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

#bannerRequest a {
}

#bannerRequest a img {
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

#bannerRequest a:hover img {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

/* ナビ表示時は消える */

body.nav-show #bannerRequest {
    opacity: 0;
    pointer-events: none;
}


/* アンケートページでは削除 */

body.contact #bannerRequest {
    display: none
}


@media only screen and (max-width: 812px) {

    #bannerRequest {
        top: auto;
        /*
        bottom: -15px;
        right:-15px;
        */
        bottom: 60px; /* fallback for enviroment can't use calc & env function */
        bottom: calc(env(safe-area-inset-bottom) + 60px);

        right:0;
        width: 30%;

        min-width: 100px;
        max-width: 150px;
    }

    #bannerRequest a:hover img {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    /* ナビ表示時は消える を解除 */

    /*
    body.nav-show #bannerRequest {
    opacity: 1;
    pointer-events: auto;
}
    */

}


/* ------------------------------------------------------------ セカンド共通フッターリンク ------------------------------------------------------------ */

.footerlink {
    display: none
}


/* ------------------------------------------------------------ FOOTER ------------------------------------------------------------ */

/*--------------------------------
	フッター
--------------------------------*/

footer {
	position: relative;
    background-color: #fff;
    color: #333;
}

footer .container {
    max-width:none;
    padding-top: 20px;
    padding-bottom: 20px;
}

footer .contaner::after {
    content: "";
    display: block;
    clear: both;
}

/* SNS */

footer .container .footer_sns {
	text-align: center;
    margin: 0 auto 60px;
}

footer .container .footer_sns li {
	display: inline-block;
	vertical-align: middle;
	margin: 0 15px;
}

footer .container .footer_sns li svg {
	width: 30px;
	height: 30px;
/*	fill: #000;*/
	vertical-align: middle;
}

/*
footer .container .footer_sns li svg:hover {
	fill: #666;
}
*/

/* プライバシーポリシー */

footer .container .footer_link {
	float: right;
	text-align: right;
}

footer .container .footer_link li {
	display: inline-block;
	vertical-align: middle;
	margin: 0 0 0 20px;
    font-size: 1.3rem;
}

/* コピーライト */

footer .container .footer_copyright {
	text-align:center;
	font-size: 1.1rem;
}


@media only screen and (max-width: 812px) {

	footer .container {
        padding-top: 10px;
        padding-bottom: 10px;
	}
    
    /* SNS */
	
	footer .container .footer_sns {
		float: none;
		text-align: center;
		margin: 0 auto 20px;
	}
	
	footer .container .footer_sns li {
		margin: 0 10px;
	}
	
	footer .container .footer_nav .footer_sns li svg {
		width: 24px;
		height: 24px;
	}
    
/*
    footer .container .footer_sns li svg:hover {
        fill: #000;
    }
*/
	
    /* プライバシーポリシー */

    footer .container .footer_link {
		float: none;
		text-align: center;

        margin: 0 auto 20px;
    }
    
    footer .container .footer_link li {
/*        font-size: 1.2rem;*/
    }
    
    /* コピーライト */

    footer .container .footer_copyright {
        float: none;
/*        font-size: 1.0rem;*/
    }

}


/*--------------------------------
    ページトップボタン
--------------------------------*/

.pagetop {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: fixed;
    bottom:30px;
    right:30px;
    z-index: 5000;
    zoom:1;
    width:50px;
    height:30px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.pagetop.exist {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.pagetop a {
    display: block;
    width: 100%;
    height: 100%;
}

.pagetop a:hover img {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}


@media only screen and (max-width: 812px) {

/*
    .pagetop {
        display: none;
    }
*/
    
    .pagetop {
        bottom:0px; /* fallback for enviroment can't use calc & env function */
        bottom: calc(env(safe-area-inset-bottom) + 0px);
        right:10px;
    }
}


/* ------------------------------------------------------------ MAIN ------------------------------------------------------------ */

/*--------------------------------
	共通レイアウト
--------------------------------*/

main {
    display: block; /* for IE */
	width:100%;
	margin: 0 auto;
	overflow: hidden;
}

main::after {
    content: "";
    display: block;
    clear: both;
}

main section {
    display:block;
    width:100%;
    margin:0 auto;
    padding:100px 0;
    overflow:hidden;
}

main section::after {
    content: "";
    display: block;
    clear: both;
}

/* ヘッダーの高さ依存 */

main section:first-of-type {
/*    margin-top: 80px;*/
    padding-bottom: 0;
}

@media only screen and (max-width: 812px) {
    
    main section {
        padding:50px 0;
    }

    /* ヘッダーの高さ依存 */

    main section:first-of-type {
        margin-top: 60px;
    }

}


/*--------------------------------
    タイトル + 見出し
--------------------------------*/

/* タイトル */

.heading_title {
    margin: 0 auto;
	font-size: 2.8rem;
	font-weight: bold;
    text-align: center;
}

.heading_title em {
    display: block;
    font-size: 1.4rem;
}

/* 見出し */

.heading_gr1 {
    display: block;
    margin: 1.8em auto .9em;
    font-size: 2.4rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-align: center;
}

.heading_gr1 em {
    display: block;
    font-size: 1.2rem;
}

.heading_gr2 {
    display: block;
    margin: 1.6em auto .8em;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.heading_gr2 em {
    display: block;
    font-size: 1.2rem;
}

.heading_gr3 {
    display: block;
    margin: 1.4em auto .7em;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.heading_gr4 {
    display: block;
    margin: 1.4em auto .7em;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}

@media only screen and (max-width: 812px) {
    
    /* タイトル */

/*
    .heading_title {
        font-size: 2.0rem;
    }

    .heading_title em {
        font-size: 1.2rem;
    }
*/

    /* 見出し */

/*
    .heading_gr1 {
        font-size: 1.8rem;
    }

    .heading_gr1 em {
        font-size: 1.1rem;
    }

    .heading_gr2 {
        font-size: 1.6rem;
    }

    .heading_gr2 em {
        font-size: 1.1rem;
    }

    .heading_gr3 {
        font-size: 1.5rem;
    }

    .heading_gr4 {
        font-size: 1.5rem;
    }
*/

}





/* ------------------------------------------------------------ スクロールアニメーション ------------------------------------------------------------ */

/*--------------------------------
	基本
--------------------------------*/

.io {
	-webkit-transition: opacity 1.0s ease 0s, -webkit-transform 1.0s ease 0s;
	transition: opacity 1.0s ease 0s, transform 1.0s ease 0s;

	/* GPU acceleration */
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	/* -webkit-transform: translate3d(0, 0, 0); */
	/* transform: translate3d(0, 0, 0); */
	will-change: opacity, transform;
}

.io.delay,
.io .io {
    -webkit-transition: opacity 1.0s ease 0.5s, -webkit-transform 1.0s ease 0.5s;
    transition: opacity 1.0s ease 0.5s, transform 1.0s ease 0.5s;
}

.io.delay .io,
.io .io.delay {
    -webkit-transition: opacity 1.0s ease 0.8s, -webkit-transform 1.0s ease 0.8s;
    transition: opacity 1.0s ease 0.8s, transform 1.0s ease 0.8s;
}

.io.move {
    opacity: 1 !important;
    -webkit-transform: translate3d(0, 0, 0) scale(1) rotate(0deg) !important;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg) !important;
}


/*--------------------------------
	汎用
--------------------------------*/

.io.fade {
	opacity: 0;
}

.io.lr {
	-webkit-transform: translate3d(-40px, 0, 0);
	transform: translate3d(-40px, 0, 0);
}

.io.rl {
	-webkit-transform: translate3d(40px, 0, 0);
	transform: translate3d(40px, 0, 0); 
}

.io.upL {
	-webkit-transform: translate3d(0, 40px, 0);
	transform: translate3d(0, 40px, 0);
}

.io.upS {
	-webkit-transform: translate3d(0, 20px, 0);
	transform: translate3d(0, 20px, 0);
}

.io.downL {
	-webkit-transform: translate3d(0, -40px, 0);
	transform: translate3d(0, -40px, 0);
}

.io.downS {
	-webkit-transform: translate3d(0, -20px, 0);
	transform: translate3d(0, -20px, 0);
}

.io.scaleUp {
	-webkit-transform: scale(0.8);
	transform: scale(0.8);
}

.io.scaleDown {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}

.io.rotateL {
 	-webkit-transform: rotate(30deg);
 	transform: rotate(30deg);
}

.io.rotateR {
	-webkit-transform: rotate(-30deg);
	transform: rotate(-30deg);
}



/* ------------------------------------------------------------ sunippet ------------------------------------------------------------ */

/*--------------------------------
    flexレイアウト
--------------------------------*/

.flexbox {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin: 0 auto 3em;
}

.flexbox .contents_main {
    background-color: #eee;
    margin: 0;
    padding: 10px;
    /* flex: flex-grow flex-shrink flex-basis; */
    -ms-flex: 1 0 auto; 
    flex: 1 0 auto;
    -webkit-order: 2;
    order: 2;
}

.flexbox .contents_sub {
    background-color: #ddd;
    margin-right: 3%;
    padding: 10px;
    width:300px;
    /* flex: flex-grow flex-shrink flex-basis; */
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
    -webkit-order: 1;
    order: 1;
}

@media only screen and (max-width: 812px) {
    
    .flexbox {
        -webkit-flex-direction: column;
        flex-direction: column;
    }
    
    .flexbox .contents_main {
        margin: 0 0 20px;
        -webkit-order: 1;
        order: 1;
    }

    .flexbox .contents_sub {
        margin: 0 0 20px;
        width:100%;
        -webkit-order: 2;
        order: 2;
    }
    
}


/*--------------------------------
    横一列のカラムわけ
--------------------------------*/

.col1-1 img,
.col1-2 img,
.col1-3 img,
.col2-1 img,
.col3-1 img,
.col1-1-1 img {
    width: 100%;
    margin: 0;
}

/* 1:1 */

.col1-1 {
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.col1-1 > * {
    width:48.5%;
    -ms-flex: 0 0 48.5%;
    flex: 0 0 48.5%;
}

@media only screen and (max-width: 812px) {

    .col1-1 {
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .col1-1 > * {
        width:100% !important;
        margin:0 0 1em 0;
    }

}

/* 1:2 */

.col1-2 {
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.col1-2 > *:nth-child(1) {
    width:31.5%;
    -ms-flex: 0 0 31.5%;
    flex: 0 0 31.5%;
}

.col1-2 > *:nth-child(2) {
    width:65.5%;
    -ms-flex: 0 0 65.5%;
    flex: 0 0 65.5%;
}

@media only screen and (max-width: 812px) {

    .col1-2 {
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .col1-2 > * {
        width:100% !important;
        margin:0 0 1em 0;
    }

}

/* 1:3 */

.col1-3 {
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.col1-3 > *:nth-child(1) {
    width:23.5%;
    -ms-flex: 0 0 23.5%;
    flex: 0 0 23.5%;
}

.col1-3 > *:nth-child(2) {
    width:73.5%;
    -ms-flex: 0 0 73.5%;
    flex: 0 0 73.5%;
}

@media only screen and (max-width: 812px) {

    .col1-3 {
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .col1-3 > * {
        width:100% !important;
        margin:0 0 1em 0;
    }

}

/* 2:1 */

.col2-1 {
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.col2-1 > *:nth-child(1) {
    width: 65.5%;
    -ms-flex: 0 0 65.5%;
    flex: 0 0 65.5%;
}

.col2-1 > *:nth-child(2) {
    width:31.5%;
    -ms-flex: 0 0 31.5%;
    flex: 0 0 31.5%;
}

@media only screen and (max-width: 812px) {

    .col2-1 {
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .col2-1 > * {
        width:100% !important;
        margin:0 0 1em 0;
    }

}

/* 3:1 */

.col3-1 {
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.col3-1 > *:nth-child(1) {
    width:73.5%;
    -ms-flex: 0 0 73.5%;
    flex: 0 0 73.5%;
}

.col3-1 > *:nth-child(2) {
    width:23.5%;
    -ms-flex: 0 0 23.5%;
    flex: 0 0 23.5%;
}

@media only screen and (max-width: 812px) {

    .col3-1 {
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .col3-1 > * {
        width:100% !important;
        margin:0 0 1em 0;
    }

}

/* 1:1:1 */

.col1-1-1 {
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.col1-1-1 > * {
    width:32%;
    -ms-flex: 0 0 32%;
    flex: 0 0 32%;
}

@media only screen and (max-width: 812px) {

    .col1-1-1 {
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .col1-1-1 > * {
        width:100% !important;
        margin:0 0 1em 0;
    }

}


/*--------------------------------
    カラムボックスリスト
--------------------------------*/

.box_list {
    margin: 100px auto 50px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* 3カラム */

.box_list li {
    width: 30.3333%;
    -ms-flex: 0 0 30.3333%;
    flex: 0 0 30.3333%;
    margin: 0 1.5% 3em;
}

/* 4カラム */

/*
.box_list li {
    width: 23%;
    -ms-flex: 0 0 23%;
    flex: 0 0 23%;
    margin: 0 1% 3em;
}
*/

/* flex未対応ver */

/*
.box_list {
margin: 100px auto 50px;
font-size: 0;
}

.box_list li {
display: inline-block;
vertical-align: top;
width: 30%;
margin: 0 5% 60px 0;
}

.box_list li:nth-of-type(3n) {
margin-right: 0;
}

*/

.box_list li img {
    width: 100%;
    height: auto;
}

.box_list li a:hover img {
    opacity: 0.7;
}

.box_list li a > div {
    font-size: 1.5rem;
    padding: 10px 0 0;
}

.box_list li a > div .postInfo {
    margin: 0 0 10px 0;
}

.box_list li a > div .postInfo span {
    display: inline-block;
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin: 0 20px 0 0;
}

.box_list li a > div .postInfo em {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: normal;
    margin: 0 0 0 10px;
}

.box_list li a > div .postTitle {
    font-size: 1.8rem;
    line-height: 1.6;
    margin: 0 0 10px;
}

.box_list li a > div .postExcerpt {
    font-size: 1.4rem;
}

@media only screen and (max-width: 812px) {

    .box_list {
        margin: 50px auto 30px;
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .box_list li {
        width: 100%;
        margin: 0 0 3em;
    }

    .box_list li a:hover img {
        opacity: 1;
    }

/*
    .box_list li a > div {
        font-size: 1.4rem;
    }

    .box_list li a > div .postTitle {
        font-size: 1.6rem;
    }
*/

}


/*--------------------------------
    基本表組
--------------------------------*/

dl.table {
    width: 990px;
    font-size: 1.5rem;
    margin: 0 auto;
}

dl.table dt {
    width: 12em;
    margin: 0 3em 1.5em 0;
    float: left;
    clear: both;
}

dl.table dd {
    width: calc(100% - 15em);
    margin: 0 0 1.5em 0;
    float: right;
}

@media only screen and (max-width: 812px) {
    
    dl.table {
        width: 100%;
    }

    dl.table dt {
        width: 100%;
        margin: 0 0 .3em 0;
        float: none;
        font-weight: bold;
    }

    dl.table dd {
        width: 100%;
        margin: 0 0 1.5em 0;
        float: none;
    }    
    
}

/*--------------------------------
    基本テーブル
--------------------------------*/

table {
    width: 990px;
    table-layout: fixed;
    margin: 0 auto;
    font-size: 1.5rem;
}

table tr th {
    border: 1px solid #ccc;
    background-color: #eee;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
}

table tr th:first-of-type {
    width: 80px;
}

table tr td {
    border: 1px solid #ccc;
    padding: 10px;
    vertical-align: middle;
}

@media only screen and (max-width: 812px) {

    table {
        width: 100%;
/*        table-layout: auto;*/
/*        font-size: 1.3rem;*/
    }

    table tr th {
        padding: 5px;
    }
    
    table tr td {
        padding: 5px;
    }

}

/*--------------------------------
    slick
--------------------------------*/

.slide {
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
}

.slide.slick-initialized { /* slick動作開始時に表示 */
    opacity: 1;
}

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

.slide .slidePrev,
.slide .slideNext {
    display: block;
    cursor: pointer;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.slide .slidePrev {
    position: absolute;
    z-index: 1001;
    top:calc(50% - 18px);
    left: 3%;
}

.slide .slideNext {
    position: absolute;
    z-index: 1001;
    top:calc(50% - 18px);
    right:3%;
}

.slide .slidePrev svg,
.slide .slideNext svg {
    display: block;
    margin: 0 auto;
    width: 36px;
    height: 36px;
    fill:#00634c;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    will-change: fill;
    max-width:100%;
}

.slide .slidePrev:hover svg,
.slide .slideNext:hover svg {
    fill:#999;
}

.slide .slick-dots {
    bottom:-40px;
}

.slide .slick-dots li {
    width: 30px !important;
    height: 30px !important;
    margin: 0 !important;
}

.slide .slick-dots li button {
    width: 30px;
    height: 30px;
}

.slide .slick-dots li button::before {
    color: #fff;
    font-size: 11px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    opacity: 0.9;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    will-change: color;
}

.slide .slick-dots li:hover button::before,
.slide .slick-dots li.slick-active button::before {
    color: #ccc;
    opacity: 0.9;
}

@media only screen and (max-width: 812px) {

    .slide .slidePrev,
    .slide .slideNext {
        width:16px;
        height:16px;
    }

    .slide .slidePrev {
        top:calc(50% - 8px);
        left:8px;
    }

    .slide .slideNext {
        top:calc(50% - 8px);
        right:8px;
    }

    .slide .slidePrev svg,
    .slide .slideNext svg {
        width: 16px;
        height: 16px;
    }

    .slide .slidePrev:hover svg,
    .slide .slideNext:hover svg {
        fill:#00634c;
    }

    .slide .slick-dots {
        bottom:-40px;
    }

    .slide .slick-dots li {
        width: 28px !important;
        height: 28px !important;
        margin: 0 !important;
    }

    .slide .slick-dots li button {
        width: 28px;
        height: 28px;
    }

    .slide .slick-dots li button::before {
        color: #fff;
        font-size: 11px;
        width: 28px;
        height: 28px;
        line-height: 28px;
    }

    .slide .slick-dots li:hover button::before {
        color: #fff;
    }

    .slide .slick-dots li.slick-active button::before {
        color: #333;
        opacity: 0.9;
    }


}

/*--------------------------------
    fancybox
--------------------------------*/

.fancybox {
}

.fancybox a {
}

.fancybox:hover {
}

@media only screen and (max-width: 812px) {

    .fancybox-slide {
        padding: 6% !important;
    }

}

/*--------------------------------
	トグル
--------------------------------*/

.toggle {
	text-align: left;
	margin: 30px 0 0;
    padding: 10px 55px 10px 10px;
	background-color: #eee;
	position: relative;
	cursor: pointer;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.toggle:first-of-type {
    margin: 0;
}

.toggle:hover {
	color: #fff;
	background-color: #333;
}

.toggle svg {
    position: absolute;
    top:50%;
    right: 20px;
    display: block;
    margin: -12px 0 0 0;;
    width: 24px;
    height: 24px;
    fill:#000;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    will-change: transform;
    max-width:100%;
}

.toggle:hover svg {
    fill:#fff;
}

.toggle.open svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transform-origin: center;
    transform-origin: center;
}

.toggle + div {
    padding: 30px;
    background-color: #ddd;
}

@media only screen and (max-width: 812px) {

    .toggle {
        margin: 20px 0 0;
        padding: 10px 40px 10px 10px;
    }

    .toggle:hover {
        color: #000;
        background-color: #eee;
    }
    
    .toggle svg {
        right: 15px;
    }

    .toggle:hover svg {
        fill:#000;
    }
    
}


/*--------------------------------
    背景pallarax
--------------------------------*/

.bg_pallarax {
    width: 100%;
    height: 70vh;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}

#TITLE01 .bg_pallarax {
    background-image: url(/images/img01.jpg);
}

#TITLE02 .bg_pallarax {
    background-image: url(/images/img02.jpg);
}


/*--------------------------------
	センター揃え
--------------------------------*/

.center_transform_container {
    position: relative;
}

.center_transform_item {
    position: absolute;
    top:50%;
    left:50%;
    -webkit-transform:translate(-50%, -50%);
    transform:translate(-50%, -50%);
}

.center_table_item {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.center_position_item {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.flex_container {
    display: -webkit-flex; /* Safari */
    display: flex; /* Chrome, Firefox, IE11 */
	-webkit-justify-content: center;
	justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.flex_container .flex_item {
	/* flex: flex-grow flex-shrink flex-basis; */
	-ms-flex:0 0 auto;
	flex:0 0 auto;
	max-width:100%;
}

/*--------------------------------
	onject-fit
--------------------------------*/

.onject-fit-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	font-family: 'object-fit: cover;'
}

/*--------------------------------
	CSS3
--------------------------------*/

.round {
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.shadow {
	-webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0, 0.2);
	box-shadow: 3px 3px 5px 0px rgba(0,0,0, 0.2);
}

/*--------------------------------
	animation
--------------------------------*/

.animation {
	animation: animation-name 0.5s linear 0s infinite forwards;
}

@-webkit-keyframes animation-name {
	0%		{ background-color: #fff; }
	100%	{ background-color: #000; }
}
@keyframes animation-name {
	0%		{ background-color: #fff; }
	100%	{ background-color: #000; }
}


