@charset "utf-8";

:root {
	--white: #fff;
	--black: #333333;
	--yellow: #FFFF66;
	--main: #272B76;
	--pharmacy: #009933;
	--food: #FF9966;
	--f-large: 16px;
	--f-normal: 13px;
	--f-small: 12px;
}

/* 背景 --------*/
main {
	font-size: 1.1em !important;
	line-height: 1.7em;
}

section {
	margin: 0 auto 60px;
	max-width: 980px;
	width: 92%;
}

/*-------- hタグ --------*/
h2,h3,h4,h5 {letter-spacing: 0.05em;}

h2 {
	width: 100%;
	max-width: 780px;
	margin: 0 auto 20px;
	text-align: center;
}

/* ------------------------------------
#sec1 パンくず
------------------------------------*/
#sec1 {
	background: #f0f3f5;
	color: var(--black);
	padding: 10px 0;
	max-width: 100%;
	width: 100%;
	font-size: 80% !important;
}

/*-------- 本文 --------*/
.sub_title {
	width: 580px;
	display: block;
	margin: 0 auto 15px;
}

/* ------------------------------------
デモ機貸出 ボタン
------------------------------------*/
.btn_form {
	min-width: 180px;
    margin: 25px auto 0;
    padding: 5px 10px;
    display: inline-block;
    color: var(--main);
    text-align: center;
    border-radius: 50px;
	position: relative;
	overflow:hidden;
	font-size: var(--f-normal);
	font-weight: 400;
    border: 1px solid var(--main);
	z-index: 10;
}

.btn_form:before{
	content:"";
	width:100%;
	height:100%;
	position:absolute;
	z-index:-1;
	left:0;
	top: 0;
	transition:0.5s;
    background: linear-gradient(115deg, rgba(249, 197, 32, 1), rgba(254, 250, 204, 1) 47%, rgba(249, 197, 32, 1) 79%, rgba(252, 225, 111, 1));
}

.btn_form:after {
	content:"";
	width:100%;
	height:100%;
	position:absolute;
	z-index:-2;
	left:0;
	top: 0;
	background: var(--white);
}

.btn_form:hover:before{
	opacity:0;
}

.btn_form:hover {
	color: var(--main);
	opacity: 1;
	box-shadow: 0 0 10px var(--yellow);
}

.btn_form span::before {
	content: "";
	position: absolute;
	display: block;
	background: linear-gradient(to right,rgba(255,255,255,0), rgba(255,255,255,0.9));
	width: 30px;
	height: 30px;
	top: -30px;
	left: -30px;

	/* アニメーションの動作指定 */
	animation-name:shine-run;	/* アニメーション名 */
	animation-delay:0s;		/* アニメーション開始時間 */
	animation-duration: 3s;	/* アニメーション動作時間 */
	animation-timing-function: ease-in;
	animation-iteration-count: infinite;
}

/* ------------------------------------
デモ機貸出 ボタン アニメーション
------------------------------------*/
@keyframes shine-run {
    0% {
        transform: scale(0) rotate(50deg); /* 開始時大きさ0、50度の傾き */
        opacity: 0;
	}

    50% {
        transform: scale(1) rotate(50deg); /* 40%まで進む間に大きさを等倍*/
        opacity: 1;
    }

    100% {
        transform: scale(150) rotate(50deg); /* 元の大きさの150倍*/
        opacity: 0;
    }
}

/* ------------------------------------
ボタン
------------------------------------*/
a.btn {
	width: 80%;
	max-width: 200px;
	margin: 40px auto 0;
	padding: 1em;
	font-weight: 400;
	display: block;
	color: var(--main);
	text-align: center;
	background: var(--white);
	border: 2px solid var(--white);
	display: block;
	cursor: pointer;
}

a.btn:hover {
	color: var(--white);
	background: none;
	opacity: 1;
}

a.btn i {
	margin-left: 7px;
	font-size: 120%;
}

/* ------------------------------------
簡単ご使用ガイド　ボタン
------------------------------------*/
a.manual_btn {
    min-width: 200px;
    margin: 20px 0 0;
    padding: 5px 10px;
    display: inline-block;
    color: #333;
    text-align: center;
    background: #ffff66;
    border: 1px solid #333;
    border-radius: 100px;
	font-size: var(--f-normal);
	font-weight: 400;
}

a.manual_btn:hover {
    color: #ffff66;
    background: #333;
    opacity: 1;
}

/* ------------------------------------
#kome 注釈
------------------------------------*/
#kome {
	padding: 30px 0 40px;
	margin: 40px auto 0;
	border-top: 1px solid var(--white);
}

#kome img {
	width: 85px;
	margin: -5px 3px 0 3px;
	display: inline-block;
	vertical-align: middle;
	filter: invert(97%) sepia(0%) saturate(583%) hue-rotate(152deg) brightness(107%) contrast(101%);
}

/* ========================================
mobile（タブレット）
=========================================== */
@media screen and (max-width: 990px){

}

/* ========================================
mobile（スマホ）
=========================================== */
@media screen and (max-width: 768px){

}



