@charset "UTF-8";
/* CSS Document */
/*FROG PROJECT Ver 1.0 20221226*/

*{
	box-sizing: border-box;
	color: #333;
}

section{
	width: 100%;
	margin: 3rem 0;
	padding: 2rem 0;
}

section > div{
	padding: 0 1rem;
}

figure img{
	width: 100%;
}

section.innerbox{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

section.innerbox > div{
	padding: 0;
}
@media (max-width:768px){
	section.innerbox > div{
		padding: 0 1rem;
	}
}

/**********************************************
ヘッダー
**********************************************/

/*ヘッダーパータン1　左ロゴ・グロバルナビ無・CTA無*/
header.header-ptn01 {
    display: flex;
    align-items: center;
	width: 100%;
	padding: 1rem;
}

header.header-ptn01 .logo-area{
	width: 20%;
	max-width: 240px;
}

@media (max-width:768px){
	header.header-ptn01 .logo-area {
		width: 50%;
		max-width: 200px;
	}
}

@media (max-width:480px){
	header.header-ptn01 {
		padding: 10px;
	}
}
/*ヘッダーパータン　左ロゴ・グロバルナビ無・CTA無*/

/*ヘッダーパータン2　ロゴセンター・グロバルナビ無・CTA無*/
header.header-ptn02 {
    display: flex;
    align-items: center;
	justify-content: center;
	width: 100%;
	padding: 1rem;
}

header.header-ptn02 .logo-area{
	width: 20%;
	max-width: 240px;
}

@media (max-width:768px){
	header.header-ptn02 .logo-area {
		width: 50%;
		max-width: 200px;
	}
}

@media (max-width:480px){
	header.header-ptn02 {
		padding: 10px;
	}
}
/*ヘッダーパータン2　ロゴセンター・グロバルナビ無・CTA無*/

/*ヘッダーパータン3　グロナビ・ヘッダーCTAあり*/
header.header-ptn03 {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

header.header-ptn03 .logo-area{
	width: 18%;
	max-width: 240px;
}

header.header-ptn03 nav.global-navi {
    display: flex;
    width: 80%;
    justify-content: end;
}

header.header-ptn03 nav.global-navi ul.global-navi-list {
    display: flex;
    justify-content: end;
    align-items: center;
	width: 80%;
}

header.header-ptn03 nav.global-navi ul.global-navi-list li {
    margin: 0 20px 0 0;
}

header.header-ptn03 nav.global-navi ul.global-navi-list li a {
    line-height: 1;
    padding: 0 15px 0 0;
    position: relative;
    display: flex;
    font-weight: bold;
    font-size: 0.9rem;
}

header.header-ptn03 nav.global-navi ul.global-navi-list li a:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #222;
    border-right: 2px solid #222;
    position: absolute;
    transform: rotate(45deg);
    right: 0;
}

header.header-ptn03 nav.global-navi div.global-navi-cta {
    display: flex;
    justify-content: center;
	align-items: center;
    width: 20%;
}

header.header-ptn03 nav.global-navi div.global-navi-cta a {
    width: 100%;
    justify-content: center;
    display: flex;
    background: #ff3b3b;
    color: #fff;
    text-align: center;
    padding: 15px 30px 15px 20px;
    border-radius: 30px;
    line-height: 1;
    font-size: 1rem;
    font-weight: bold;
    position: relative;
    align-items: center;
    box-shadow: 2px 2px 9px 2px rgb(0 0 0 / 20%);
	transition: all 0.2s ease-out;
}

header.header-ptn03 nav.global-navi div.global-navi-cta a:hover{
	transition: all 0.2s ease-out;
	background: #db0202;
}

header.header-ptn03 nav.global-navi div.global-navi-cta a:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    transform: rotate(45deg) translateY(-1px);
    right: 9%;
}

header.header-ptn03 .global-navi-switch, span.draw-nav-shadow {
    display: none;
}

@media (max-width:1280px){
	header.header-ptn03 nav.global-navi div.global-navi-cta a {
		padding: 15px 20px 15px 0px;
		font-size: 0.9rem;
	}
}

@media (max-width:768px){
	header.header-ptn03 {
		min-height: 72px;
	}
	header.header-ptn03 .logo-area {
		width: 50%;
		max-width: 200px;
	}
	header.header-ptn03 .global-navi-switch {
		position: absolute;
		right: 6%;
		display: flex;
		display: inline-block;
		width: 41px;
		height: 40px;
		background: #fff;
		border-radius: 5px;
		position: fixed;
		right: 15px;
		top: 15px;
		padding: 10px 0 0 8px;
		box-shadow: 0px 0px 6px rgb(0 0 0 / 20%), -9px -9px 16px rgb(255 255 255 / 10%);
		z-index: 10000;
	}

	header.header-ptn03 .global-navi-switch span{
		position: absolute;
		height: 3px;
		width: 25px;
		border-radius: 3px;
		background: #333;
		display: block;
		content: '';
		cursor: pointer;
	}

	header.header-ptn03 .global-navi-switch span:before, header.header-ptn03 .global-navi-switch span:after {
		position: absolute;
		height: 3px;
		width: 25px;
		border-radius: 3px;
		background: #333;
		display: block;
		content: '';
		cursor: pointer;
	}
	header.header-ptn03 .global-navi-switch span:before {
		margin-top: 16px;
	}
	header.header-ptn03 .global-navi-switch span:after {
		margin-top: 8px;
	}
	header.header-ptn03 nav.global-navi{
		display: block;
		top: 0;
		right: 0;
		overflow: auto;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 10001;
		width: 90%;
		max-width: 300px;
		height: 100%;
		background: #fff;
		transition: .3s ease-in-out;
		box-shadow: 6px 0 25px rgb(0 0 0 / 15%);
		transform: translateX(100%);
	}
	header.header-ptn03 nav.global-navi.active {
		transform: translateX(0);
	}

	header.header-ptn03 nav.global-navi ul.global-navi-list {
		display: flex;
		justify-content: center;
		align-items:flex-start;
		width: 100%;
		flex-wrap: wrap;
	}
	header.header-ptn03 nav.global-navi ul.global-navi-list li {
		margin: 0;
		padding: 15px;
		width: 100%;
		border-bottom: 1px solid #ddd;
	}
	header.header-ptn03 nav.global-navi ul.global-navi-list li a {
		line-height: 1;
		padding: 15px;
		position: relative;
		display: flex;
		font-weight: bold;
		font-size: 1.2rem;
	}
	header.header-ptn03 nav.global-navi ul.global-navi-list li a:after {
		right: 6%;
	}
	header.header-ptn03 nav.global-navi div.global-navi-cta {
		width: 100%;
		padding: 5%;
	}
	span.draw-nav-shadow.active {
		display: block;
		position: fixed;
		width: 100%;
		height: 100%;
		background: #0000005c;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 10000;
	}
}

@media (max-width:480px){
	header.header-ptn03 {
		padding: 10px;
	}
}
/*ヘッダーパータン3　グロナビ・ヘッダーCTAあり*/


/**********************************************
ヘッダーend
**********************************************/

/**********************************************
FV
**********************************************/
#fv{
	background: #e2e9ff;
}

#fv img{
	width: 100%;
}

.fv-inner {
    width: 100%;
    padding: 0 5%;
}

/*fv 横構成*/
#fv.layout-yoko {
    width: 100%;
    position: relative;
    padding: 10% 0;
    overflow: hidden;
}

#fv.layout-yoko .fv-inner{
	position: relative;
    display: flex;
    flex-wrap: wrap;
	align-items: center;
}

#fv.layout-yoko .fv-txt {
    width: 55%;
	text-align: center;
}

#fv.layout-yoko .fv-txt h1.lp-main-txt {
    font-size: 3.8rem;
    font-weight: bold;
    margin: 0 0 40px 0;
}

#fv.layout-yoko .fv-txt h1.lp-main-txt span{
	font-size: 50%;
	display: block;
	line-height: 1;
	padding: 0 0 20px 0;
}

#fv.layout-yoko .fv-txt p.lp-sub-txt {
    width: auto;
    font-size: 1.5rem;
    line-height: 1.8;
    margin: 20px 0 30px;
    padding: 0 1rem;
}

#fv.layout-yoko .fv-main-img {
    width: 50%;
    position: absolute;
    right: -8%;
}

@media (max-width:1440px){
	#fv.layout-yoko .fv-txt h1.lp-main-txt {
		font-size: 3.4rem;
	}
	#fv.layout-yoko .fv-txt p.lp-sub-txt {
		font-size: 1.2rem;
	}
}

@media (max-width:1280px){
	#fv.layout-yoko .fv-txt h1.lp-main-txt {
		font-size: 3rem;
	}
	#fv.layout-yoko .fv-txt p.lp-sub-txt {
		font-size: 1rem;
	}
}

@media (max-width:768px){
	#fv.layout-yoko .fv-txt {
		width: 100%;
	}
	#fv.layout-yoko .fv-txt h1.lp-main-txt {
		font-size: 3.5rem;
	}
	#fv.layout-yoko .fv-txt p.lp-sub-txt {
		font-size: 1.5rem;
	}
	#fv.layout-yoko .fv-main-img {
		width: 100%;
		position: relative;
		right: 0;
	}
	#fv.layout-yoko .fv-main-img figure {
		width: 90%;
		margin: 10% auto 0;
	}
}

@media (max-width:580px){
	#fv.layout-yoko .fv-txt h1.lp-main-txt {
		font-size: 2.4rem;
		margin: 0 0 20px 0;
	}
	#fv.layout-yoko .fv-txt h1.lp-main-txt span {
		font-size: 60%;
	}
	#fv.layout-yoko .fv-txt p.lp-sub-txt {
		font-size: 1rem;
	}
}

@media (max-width:480px){
	#fv.layout-yoko .fv-txt h1.lp-main-txt {
		font-size: 1.8rem;
		margin: 0 0 20px 0;
	}
	#fv.layout-yoko .fv-txt p.lp-sub-txt {
		font-size: 0.8rem;
	}
}

@media (max-width:375px){
	#fv.layout-yoko .fv-txt h1.lp-main-txt {
		font-size: 1.6rem;
		margin: 0 0 20px 0;
	}
	#fv.layout-yoko .fv-txt p.lp-sub-txt {
		font-size: 0.8rem;
	}
	#fv.layout-yoko .fv-txt p.lp-sub-txt {
		margin: 20px 0;
	}
}
/*fv 横構成*/

/*fv 縦構成*/
#fv.layout-tate {
    width: 100%;
    position: relative;
	padding: 5% 0;
}

#fv.layout-tate .fv-inner{
	position: relative;
    display: flex;
    flex-wrap: wrap;
	align-items: center;
}

#fv.layout-tate .fv-txt {
    width: 100%;
	text-align: center;
}

#fv.layout-tate .fv-txt h1.lp-main-txt {
    font-size: 3.8rem;
    font-weight: bold;
    margin: 0 0 40px 0;
}

#fv.layout-tate .fv-txt h1.lp-main-txt span{
	font-size: 50%;
	display: block;
	line-height: 1;
	padding: 0 0 20px 0;
}

#fv.layout-tate .fv-txt p.lp-sub-txt {
    width: auto;
    font-size: 1.5rem;
    line-height: 1.8;
    margin: 20px auto 30px;
    padding: 0 1rem;
    width: 80%;
}

#fv.layout-tate .fv-main-img {
    width: 100%;
}

#fv.layout-tate .fv-main-img figure {
    padding: 5% 0 0 0;
    width: 60%;
    margin: 0 auto;
}

@media (max-width:1440px){
	#fv.layout-tate .fv-txt h1.lp-main-txt {
		font-size: 3.4rem;
	}
	#fv.layout-tate .fv-txt p.lp-sub-txt {
		font-size: 1.2rem;
	}
}

@media (max-width:1280px){
	#fv.layout-tate .fv-txt h1.lp-main-txt {
		font-size: 3rem;
	}
	#fv.layout-tate .fv-txt p.lp-sub-txt {
		font-size: 1rem;
	}
}

@media (max-width:768px){
	#fv.layout-tate {
		padding: 10% 0;
	}
	#fv.layout-tate .fv-txt {
		width: 100%;
	}
	#fv.layout-tate .fv-txt h1.lp-main-txt {
		font-size: 3.5rem;
	}
	#fv.layout-tate .fv-txt p.lp-sub-txt {
		font-size: 1.5rem;
		width: 100%;
	}
	#fv.layout-tate .fv-main-img {
		width: 100%;
		position: relative;
		right: 0;
	}
	#fv.layout-tate .fv-main-img figure {
		width: 90%;
		margin: 10% auto 0;
		padding: 0;
	}
}

@media (max-width:580px){
	#fv.layout-tate .fv-txt h1.lp-main-txt {
		font-size: 2.4rem;
		margin: 0 0 20px 0;
	}
	#fv.layout-tate .fv-txt h1.lp-main-txt span {
		font-size: 60%;
	}
	#fv.layout-tate .fv-txt p.lp-sub-txt {
		font-size: 1rem;
	}
}

@media (max-width:480px){
	#fv.layout-tate .fv-txt h1.lp-main-txt {
		font-size: 1.8rem;
		margin: 0 0 20px 0;
	}
	#fv.layout-tate .fv-txt p.lp-sub-txt {
		font-size: 0.8rem;
	}
}

@media (max-width:375px){
	#fv.layout-tate .fv-txt h1.lp-main-txt {
		font-size: 1.6rem;
		margin: 0 0 20px 0;
	}
	#fv.layout-tate .fv-txt p.lp-sub-txt {
		font-size: 0.8rem;
	}
	#fv.layout-tate .fv-txt p.lp-sub-txt {
		margin: 20px 0;
	}
}
/*fv 縦構成*/

/**********************************************
FV end
**********************************************/

/**********************************************
ヘッドライン
**********************************************/

/*ヘッドライン ptn1*/
.headline-ptn01 {
    line-height: 1;
    padding: 3% 5% 5%;
}

.headline-ptn01 h3 {
    text-align: center;
    font-size: 38px;
    font-weight: bold;
    line-height: 1.6;
}

.headline-ptn01 span{
	font-size: 60%;
	display: block;
	line-height: 1;
	padding: 0 0 20px 0;
}

.headline-ptn01 p.headline-cpation {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.8;
    padding: 80px 0 50px;
}
/*ヘッドライン ptn1*/

/*ヘッドライン ptn2*/
.headline-ptn02 {
	padding-top: 3%;
	padding-bottom: 5%;
}

.headline-ptn02 h3{
	display: flex;
    align-items: center;
	font-size: 30px;
	font-weight: bold;
	line-height: 1.8;
}

.headline-ptn02 h3 span{
	display: block;
	padding: 0 40px 0 0;
	font-size: 60%;
	width: 10%;
}

.headline-ptn02 p.headline-cpation {
    padding: 50px 0 0 0;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.8;
}

@media (max-width:768px){
	.headline-ptn02 h3 {
		flex-wrap: wrap;
	}
	.headline-ptn02 h3 span {
		padding: 0 0 15px 0;
		width: 100%;
	}
}

/*ヘッドライン ptn2*/

/*ヘッドライン ptn3*/
.headline-ptn03 {
	padding-top: 3%;
	padding-bottom: 5%;
}

.headline-ptn03 h3 {
    display: flex;
    align-items: center;
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
    padding: 8px 0px 8px 20px;
    border-left: 12px solid #ff6b64;
}

.headline-ptn03 p.headline-cpation {
    padding: 30px 0 0 0;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.8;
}

@media (max-width:768px){
	
}
/*ヘッドライン ptn3*/

/**********************************************
ヘッドライン　end
**********************************************/


/**********************************************
コンテンツ部分
**********************************************/

/*コンテンツパータン　３カラムコンテンツ*/
.cont-ptn01 {
    width: 100%;
    display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.cont-ptn01-box {
    width: 30%;
}

h3.cont-ptn01-ttl {
    padding: 1rem 0;
    font-size: 1.1rem;
    line-height: 1.5;
    min-height: 5.5rem;
    display: flex;
    align-items: center;
}

p.cont-ptn01-txt {
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width:768px){
	.cont-ptn01-box {
		width: 32%;
	}
}

@media (max-width:580px){
	.cont-ptn01-box {
		width: 100%;
		margin: 0 0 3rem 0;
	}
	.cont-ptn01-box:last-of-type{
		margin-bottom: 0;
	}
	h3.cont-ptn01-ttl {
		min-height: auto;
	}
}
/*コンテンツパータン　３カラムコンテンツ*/

/*コンテンツパータン　4カラムコンテンツ*/
.cont-ptn02 {
    width: 100%;
    display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.cont-ptn02-box {
    width: 24%;
}

h3.cont-ptn02-ttl {
    padding: 1rem 0;
    font-size: 1.1rem;
    line-height: 1.5;
    min-height: 5.5rem;
    display: flex;
    align-items: center;
}

p.cont-ptn02-txt {
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width:768px){
	.cont-ptn02-box {
		width: 48%;
		margin: 0 0 2rem 0;
	}
}

@media (max-width:580px){
	.cont-ptn02-box {
		width: 100%;
		margin: 0 0 3rem 0;
	}
	.cont-ptn02-box:last-of-type{
		margin-bottom: 0;
	}
	h3.cont-ptn02-ttl {
		min-height: auto;
	}
}
/*コンテンツパータン　4カラムコンテンツ*/



/*コンテンツパータン　左画像　右テキスト*/
.cont-ptn03-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	margin: 0 0 2rem 0;
}

figure.cont-ptn03-img {
    width: 40%;
}

.cont-ptn03-txt {
    width: 60%;
    padding: 0 0 0 4%;
}

h3.cont-ptn03-ttl {
    font-size: 1.8rem;
    line-height: 1.6;
    padding: 0 0 1rem 0;
    border-bottom: 2px solid #555;
    margin: 0 0 1rem 0;
}

p.cont-ptn03-capt {
    font-size: 1rem;
    line-height: 1.8;
}

@media (max-width:768px){
	figure.cont-ptn03-img {
		width: 48%;
	}
	.cont-ptn03-txt {
		width: 48%;
		padding: 0;
	}
	h3.cont-ptn03-ttl {
		font-size: 1.2rem;
		padding: 0 0 0.5rem 0;
		margin: 0 0 0.7rem 0;
	}
	p.cont-ptn03-capt {
		font-size: 0.9rem;
		line-height: 1.6;
	}
}

@media (max-width:580px){
	figure.cont-ptn03-img {
		width: 100%;
	}
	.cont-ptn03-txt {
		width: 100%;
	}
	h3.cont-ptn03-ttl {
		padding: 1rem 0;
		font-size: 1.1rem;
		line-height: 1.5;
	}
	
}
/*コンテンツパータン　左画像　右テキスト*/


/*コンテンツパータン　画像・テキストジグザグ*/
.cont-ptn04-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	padding: 3rem 0;
}

figure.cont-ptn04-img {
    width: 40%;
}

.cont-ptn04-txt {
    width: 56%;
}

h3.cont-ptn04-ttl {
    font-size: 1.8rem;
    line-height: 1.6;
    padding: 0 0 1rem 0;
    border-bottom: 2px solid #555;
    margin: 0 0 1rem 0;
}

p.cont-ptn04-capt {
    font-size: 1rem;
    line-height: 1.8;
}

.cont-ptn04-box:nth-child(odd) figure.cont-ptn04-img{
	order: 2;
}

.cont-ptn04-box:nth-child(odd) .cont-ptn04-txt {
    order: 1;
}


@media (max-width:768px){
	figure.cont-ptn04-img {
		width: 48%;
	}
	.cont-ptn04-txt {
		width: 48%;
		padding: 0;
	}
	h3.cont-ptn04-ttl {
		font-size: 1.2rem;
		padding: 0 0 0.5rem 0;
		margin: 0 0 0.7rem 0;
	}
	p.cont-ptn04-capt {
		font-size: 0.9rem;
		line-height: 1.6;
	}
}

@media (max-width:580px){
	.cont-ptn04-box {
		padding: 1rem 0;
	}
	figure.cont-ptn04-img {
		width: 100%;
	}
	.cont-ptn04-txt {
		width: 100%;
	}
	h3.cont-ptn04-ttl {
		padding: 1rem 0;
		font-size: 1.1rem;
		line-height: 1.5;
	}
	.cont-ptn04-box:nth-child(odd) figure.cont-ptn04-img{
		order: 1;
	}

	.cont-ptn04-box:nth-child(odd) .cont-ptn04-txt {
		order: 2;
	}

	
}
/*コンテンツパータン　画像・テキストジグザグ*/

/**********************************************
コンテンツ部分　end
**********************************************/

/**********************************************
footer
**********************************************/
#footer {
    padding: 40px 0;
    background: #2389ca;
}

.ftr-inner {
    width: 100%;
    padding: 0 2%;
    display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
}

ul.ftr-logo-list {
    display: flex;
    align-items: center;
	max-width: 40%;
}

ul.ftr-logo-list li{
	margin: 0 15px 0 0;
}

ul.ftr-logo-list li img{
	max-height: 2rem;
}

ul.ftr-logo-list li:first-child {
    min-width: 124px;
}

.ftr-text {
    display: flex;
    flex-wrap: wrap;
	max-width: 60%;
}

ul.ftr-text-link {
    width: 100%;
    display: flex;
    justify-content: flex-end;
	flex-wrap: wrap;
}

ul.ftr-text-link li {
    margin: 0 15px 0 0;
}

ul.ftr-text-link li:last-child{
	margin-right: 0;
}

ul.ftr-text-link li a{
	font-size: 0.9rem;
	color: #fff;
}

p.copyright {
    color: #fff;
    width: 100%;
    text-align: right;
    font-size: 0.8rem;
    line-height: 1;
    padding: 15px 0 0 0;
}

@media (max-width:768px){
	ul.ftr-logo-list {
		max-width: 100%;
		width: 100%;
		padding: 0 0 5% 0;
		justify-content: center;
		flex-wrap: wrap;
	}

	ul.ftr-logo-list li:first-child {
		width: 100%;
		text-align: center;
		padding: 0 0 5% 0;
	}

	ul.ftr-logo-list li:first-child img{
		max-height: 2.5rem;
	}
	.ftr-text {
		max-width: 100%;
	}
	ul.ftr-text-link {
		justify-content: center;
	}
	p.copyright {
		text-align: center;
	}
}

@media (max-width:580px){
	ul.ftr-text-link li {
		line-height: 1;
		padding: 10px 0;
	}
	p.copyright {
		line-height: 1.4;
	}
}

/**********************************************
footer end
**********************************************/




/**********************************************
CTA ボタン
**********************************************/

/*CTA basic*/
.cta-btn a {
    text-align: center;
    display: block;
    width: 90%;
    max-width: 480px;
    line-height: 1;
    font-size: 20px;
    font-weight: bold;
    background: #dadada;
    padding: 30px 0;
    margin: 0 auto;
    box-shadow: 0px 5px 8px 0px rgb(0 0 0 / 20%);
}

@media (max-width:768px){
	.cta-btn a {
		transition: 0.2s ease-out;
	}
}

@media (max-width:580px){
	.cta-btn a {
		font-size: 15px;
		padding: 20px 0;
	}
}

/*CTA basic*/

/*CTA 角丸*/
.cta-btn.ctn-bdr-radi a{
	border-radius: 10px;
}

.cta-btn.ctn-bdr-radi100 a{
	border-radius: 100px;
}
/*CTA 角丸*/

/*CTA 赤*/
.cta-btn.ctn-clr-red a {
    background: #ff6060;
    color: #fff;
    transition: 0.2s ease-out;
}

.cta-btn.ctn-clr-red a:hover {
    background: #b13030;
    transition: 0.2s ease-out;
}
/*CTA 赤*/

/*CTA 黄色*/
.cta-btn.ctn-clr-yellow a {
    background: #efef11;
    color: #222;
    transition: 0.2s ease-out;
}

.cta-btn.ctn-clr-yellow a:hover {
    background: #efab11;
    transition: 0.2s ease-out;
}
/*CTA 黄色*/

/*CTA オレンジ*/
.cta-btn.ctn-clr-orange a {
    background: #ff9900;
    color: #FFFFFF;
    transition: 0.2s ease-out;
}

.cta-btn.ctn-clr-orange a:hover {
    background: #d9590f;
    transition: 0.2s ease-out;
}
/*CTA オレンジ*/

/**********************************************
CTA ボタン end
**********************************************/

/* follow */
.follow {
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    position: fixed;
    bottom: -140px;
    left: 0;
    z-index: 10;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    padding: 0 0 20px 0;
}
.follow.show {
	bottom: 0;
}
.follow p {
    font-size: 1.4rem;
    text-align: center;
    padding: 20px 15px 15px;
    margin-bottom: 10px;
}