/*body*/
body {
    font-family: century-gothic, Century Gothic pro, Noto Sans JP, sans-serif;
    font-weight: 300;
    padding-top: 5rem;
    color: #000000;
    letter-spacing: 0.15rem;
    background-color: #ffffff;
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

/*=================================
　fadein
===================================*/

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

/*body 背景の指定*/
/*body {
background-image: url("../images/common/navy_dots.png");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% auto;
}


@media only screen and (max-width:500px) {
body {
background-image: url("../images/common/svg_bg_dot_680px.svg");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% auto;
     }
}

@media only screen and (min-width:501px) {
body {
background-image: url("../images/common/svg_bg_dot_1200px.svg");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% auto;
     }
}*/


/*=================================
見出し
===================================*/

title {
  font-family: century-gothic, Century Gothic pro, Noto Sans JP, sans-serif;
  font-size: 5vw;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.5rem;

}


/*=================================
リンク
===================================*/

a {
  color: #00AA83;
}

a:hover {
  color: #e50017 !important;
}

/*=================================
.imgの設定
===================================*/

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

.mx-auto {
  width: auto !important;
  margin: 0 auto; 
}

/*=================================
.bg-lightを変更
===================================*/

.bg-light  {
  background-color: #fcfbf9 !important;
}


/*=================================
　ナビ
===================================*/

.bg-white {
  opacity: 0.97;  
}


.navbar-nav {
  font-weight: 400;
}

/*=================================
　カード
===================================*/

.card {
  border: none;
}

.border-color: red;{


}
.card-img-top {
    padding: 0px 0px 0px; /* 上 左右 下 */
}


/*=================================
　ハンバーガーメニュー  ボタン
===================================*/

.navbar-toggler{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	position: relative;
	background:#fff;
	cursor: pointer;
    width: 50px;
    height:50px;
	border-radius: 50px;
	border: 0px;
}

/*ボタン内側*/
.navbar-toggler span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 4px;
    border-radius: 2px;
	  background: #E50017;
   /* background: #016d3e;*/
  }


.navbar-toggler span:nth-of-type(1) {
	top:15px;	
  	width: 53%;
}

.navbar-toggler span:nth-of-type(2) {
	top:25px;
  	width: 43%;
  	background-color: #00AA83;
}

.navbar-toggler span:nth-of-type(3) {
	top:35px;
  	width: 28%;
}

button:focus {
  outline: 0px;
}

/*activeクラスが付与されると線が回転して×になる*/

.navbar-toggler.active span:nth-of-type(1) {
    top: 18px;
    left: 17px;
    transform: translateY(6px) rotate(-135deg);
    width: 43%;
    background-color: #00AA83;
}

.navbar-toggler.active span:nth-of-type(2) {
	opacity: 0;
}

.navbar-toggler.active span:nth-of-type(3){
    top: 30px;
    left: 17px;
    transform: translateY(-6px) rotate(135deg);
    width: 43%;
}

/*=================================
　ボタン
===================================*/

/*ボタンのサイズ*/

.btn-xl {
	text-transform: uppercase;
	padding-top: 1.5rem;
	padding-right: 3rem;
	padding-bottom: 1.5rem;
	padding-left: 3rem;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.3rem;
}

.btn {
  padding-top: 0.5rem;
	padding-right: 2rem;
	padding-bottom: 0.3rem;
	padding-left: 2rem;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.2rem;
}

/**primaryボタン**/
/*ボタンの色*/


/*ボタンホバーの色
.btn-primary:hover,
.open>.dropdown-toggle{
    color: #fff;
    background-color: #001428;
    border-color: #001428; 
}

.btn-primary:active {
  color: #fff;
  background-color: #001428 !important;
  border-color: #001428 !important;
}
*/

/**infoボタン
/*ボタンの色*/
.btn-info {
    color: #ffffff;
    background-color: #00AA83;/*green*/
    border-color: #00AA83;
}

/*ボタンホバーの色*/
.btn-info:hover,
.open>.dropdown-toggle{
    color: #ffffff;
    background-color: #028b6b;
    border-color: #028b6b; 
}

.btn-info:active {
  color: #ffffff;
  background-color: #028b6b !important;
  border-color: #028b6b !important; 
}

/*リンクをクリックした時の青い線を削除*/ 
.btn:focus {
  outline: none !important;
  box-shadow: none !important;
}

/*=================================
  ページ内リンク先の調整
===================================*/

.contents {
	padding-top: 100px;
	padding-bottom: 100px;
}

.contents-last {
	padding-top: 100px;
	padding-bottom: 10px;
}

/*=================================
　ナビ
===================================*/

.navbar {
　transform: translate(-300px);
　transition: 0.3s ease-out;
}

/*=================================
　ページトップに戻るボタン
===================================*/

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

/*　上に上がる動き　*/
#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(750px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/
#page-top.DownMove{
	animation: DownAnime 1s forwards;
}

@keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(750px);
  }
}

/*画像の切り替えと動き*/
#page-top a {
    /*aタグの形状*/

	display: block;
	width: 50px;
	height: 50px;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;


    /*背景画像の指定*/
	background: url("../images/common/up-icon_lem.svg") no-repeat center;
	background-size: contain;
	opacity: 1;
}

#page-top.floatAnime a{
	width: 70px;
	height: 70px;
    /*背景画像の指定*/
	background: url("../images/common/heart-icon_lem.svg") no-repeat center;
	background-size: contain;
    /*アニメーションの指定*/
	animation: floatAnime 2s linear infinite;
	opacity: 1;
}


/*ゆらゆら*/
@keyframes floatAnime {
  0% { transform: rotate(10deg); opacity: 0.5; }
  50% { transform: rotate(-10deg); opacity: 0.8; }
  100% { transform: rotate(10deg); opacity: 0; }
}

/*水平方向に回転
@keyframes floatAnime {
  0% { transform: rotateY(0deg); opacity: 0.8; }
  50% { transform: rotateY(360deg); opacity: 0; }
  100% { transform: rotateY(0deg); opacity: 0.8; }
}

*/

/*
  @keyframes floatAnime {
  0% { transform: translateX(-10px); opacity: 0.8; }
  25% { transform: translateX(0); opacity: 0.6; }
  50% { transform: translateX(-20) }
  100% { transform: translateX(0px); opacity: 0; }
}

*/

/*=================================
　メディア別の設定
===================================*/

/*500px以下では改行が無効*/
@media only screen and (max-width: 500px) {
  .text br {
    display: none;
  }
}

/*iPad以上のサイズのデバイスでは改行が無効*/

@media screen and (min-width: 680px){
.br-sp {display: none; }
}


/*=================================
　アンダーライン
===================================*/

.under {
  background: linear-gradient(transparent 60%, #fdd023 60%);
}

/*=================================
　もっと読む
===================================*/

.cp_box *, .cp_box *:before, .cp_box *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.cp_box {
	position: relative;
}
.cp_box label {
	position: absolute;
	z-index: 1;
	bottom: 0;
	width: 100%;
	height: 90px; /* グラデーションの高さ */
	cursor: pointer;
	text-align: center;
	/* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
	background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 0%, rgba(255, 255, 255, 255) 90%);
    margin-bottom: 0;
}
.cp_box input:checked + label {
	background: inherit; /* 開いた時にグラデーションを消す */
}
.cp_box label:after {
	line-height: 2.5rem;
	position: absolute;
	z-index: 2;
	bottom: 20px;
	left: 50%;
	width: 16rem;
	font-family: FontAwesome, futura-pt, Noto Sans JP, sans-serif;
	content: '\f107'' READ MORE';
	transform: translate(-50%, 0);
	letter-spacing: 0.1em;
	color: #ffffff;
	border-radius: 20px;
	background-color: #001428;
}
.cp_box input {
	display: none;
}
.cp_box .cp_container {
	overflow: hidden;
	height: 230px; /* 開く前に見えている部分の高さ */
	transition: all 0.5s;
}
.cp_box input:checked + label {
	/* display: none ; 閉じるボタンを消す場合解放 */
}
.cp_box input:checked + label:after {
	font-family: FontAwesome, futura-pt, Noto Sans JP, sans-serif;
	content: '\f106'' CLOSE';
}
.cp_box input:checked ~ .cp_container {
	height: auto;
	padding-bottom: 80px; /* 閉じるボタンのbottomからの位置 */
	transition: all 0.5s;
}


/*=================================
　Footer
===================================

.foot {
  color:#fff;
  background:#fdd023;
}*/



.v-enter {
  opacity: 0;
}

.v-enter-active,
.v-leave-active {
  transition: opacity 1s;
}

.v-enter-to {
  opacity: 1;
}

.v-leave-to {
  opacity: 0;
  transition: opacity 1s;
}

