@charset "utf-8";

.only-pc {
    display: block;
}

.only-mov {
    display: none;
}

@media screen and (max-width:767px) {
    .only-pc {
        display: none;
    }

    .only-mov {
        display: block;
    }
}

@media screen and (max-width:767px) {
    .mv_haikei.only-pc {
        display: block;
    }

    .mv_haikei.only-mov {
        display: none;
    }
}
@media screen and (max-width:750px) {
    .mv_haikei.only-pc {
        display: none;
    }

    .mv_haikei.only-mov {
        display: block;
    }
}


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

.wrap {
    max-width: 1200px;
    margin: auto;
}

@media screen and (max-width: 1280px) {
    .wrap {
        max-width: 93%;
    }
}

/*改行調整*/
br.pad_br,
br.m_br {
    display: none;
}

@media screen and (max-width: 1023px) {
    br.pad_br {
        display: block;
    }

    br.p_br1023 {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    br.p_br {
        display: none;
    }

    br.m_br {
        display: block;
    }
}

/*アンカーリンク調節*/
.anchor {
    display: block;
    padding-top: 80px;
    margin-top: -80px;
}

/*影*/
.shadow {
    box-shadow: 1.5px 1.5px 1.5px 1.5px #8a8a8a;
    -webkit-box-shadow: 1.5px 1.5px 1.5px 1.5px #8a8a8a;
    -moz-box-shadow: 1.5px 1.5px 1.5px 1.5px #8a8a8a;
}

/*ハンバーガーメニュー*/
@media screen and (min-width:1025px) {
    .globalnavi .only-mov {
        display: none
    }
}

@media screen and (max-width:1024px) {
    .globalnavi .only-pc {
        display: none
    }

    .globalnavi .only-mov {
        display: block
    }

    .globalnavi {
        margin: 0;
    }
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.left {
    text-align: left;
}

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

.body {
    padding-top: 60px;
}

/* --------------------------------------------------- ふわっとアニメーション*/
.fuwat {
    opacity: 0;
    transform: translateY(20px);
    transition: all 2s;
}

@media screen and (max-width: 768px) {
    .fuwat {
        transition: none;
        opacity: 1;
    }
}

@media screen and (max-width: 750px) {
    .fuwat {
        transition: none;
    }
}

/* --------------------------------------------------- 自然に出てくるアニメーション*/
.natural {
    animation-name: fadein;
    animation-duration: 3s;
}

@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ======================================================
/*               ++ 装飾・アニメーション ++
   ====================================================== */
/* ----- ■ -----*/
.square {
    position: relative;
    margin-left: 24px;
}

.square::before {
    font-family: FontAwesome;
    content: '\f0c8';
    color: #ccc;
    position: absolute;
    top: 2px;
    left: -22px;
    font-size: 0.85em;
}

/* ----- キランと光る -----*/
.kiran-box {
    opacity: 0;
}

.kiran-box.kiran {
    opacity: 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.kiran-box.kiran::before {
    background: #fff;
    content: "";
    display: block;
    position: absolute;
    top: -100px;
    left: 0;
    width: 30px;
    height: 100%;
    opacity: 0;
    transition: cubic-bezier(0.32, 0, 0.67, 0);
}

.kiran-box.kiran:hover::before {
    animation: kiran 0.3s linear 1;
}

@keyframes kiran {
    0% {
        transform: scale(2) rotate(45deg);
        opacity: 0;
    }

    20% {
        transform: scale(20) rotate(45deg);
        opacity: 0.6;
    }

    40% {
        transform: scale(30) rotate(45deg);
        opacity: 0.4;
    }

    80% {
        transform: scale(45) rotate(45deg);
        opacity: 0.2;
    }

    100% {
        transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

.rotateRightZ {
    animation-name: rotateRightZAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes rotateRightZAnime {
    from {
        transform: rotateZ(0);
    }

    to {
        transform: rotateZ(360deg);
    }
}

.fadeIn {
    animation-name: fadeInAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.flipLeftTop {
    animation-name: flipLeftTopAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes flipLeftTopAnime {
    from {
        transform: translate(-20px, 80px) rotate(-15deg);
        opacity: 0;
    }

    to {
        transform: translate(0, 0) rotate(0deg);
        opacity: 1;
    }
}

.flipRightTop {
    animation-name: flipRightTopAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes flipRightTopAnime {
    from {
        transform: translate(-20px, 80px) rotate(25deg);
        opacity: 0;
    }

    to {
        transform: translate(0, 1) rotate(0deg);
        opacity: 1;
    }
}

.zoomIn {
    animation-name: zoomInAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

@keyframes zoomInAnime {
    from {
        transform: scale(0.6);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.fadeUpTrigger,
.zoomInTrigger,
.flipLeftTopTrigger,
.flipRightTopTrigger {
    opacity: 0;
}

figure {
    margin: 0 !important;
}

figure.hover-zoom {
    overflow: hidden;
}

figure.hover-zoom img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

figure.hover-zoom:hover img {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}



/* ======================================================
/*               ◆ ヘッダー ◆
/* ====================================================== 

/* グローバルメニュー */
/* ------------------スマホヘッダー-------------------- */
.panel-inner {
    position: relative;
    top: 7px;
    width: 100%;
    height: 100vh;
    background: #0058d1;
    transition: all 0.5s;
    padding-top: 4%;
    z-index: 2;
    padding-bottom: 2%;
}

@media screen and (max-width: 1024px) {
    .panel-inner {
        top: 3px;
    }
}

@media screen and (max-width: 900px) {
    .panel-inner {
        top: 9px;
    }
}

@media screen and (max-width: 768px) {
    .panel-inner {
        margin-top: -1%;
        padding-top: 5%;
        margin-top: -3px;
        padding-bottom: 5%;
    }
}

@media screen and (max-width: 650px) {
    .panel-inner {
        margin-top: 0%;
        padding: 10% 0%;
        background: #0058d1;
    }
}

.panel {
    display: none;
}

.only-mov header {
    background: #fff;
    box-shadow: rgba(0, 0, 0, .05) 0 0 10px 3px;
    position: fixed;
    height: 60px;
    width: 100%;
    z-index: 99;
}

.only-mov .btn-square {
    float: left;
    font-size: 1.2rem;
}

.global-nav {
    z-index: 50;
}

.only-mov .global-nav ul {
    display: none;
}

.only-mov .global-nav .sub li {
    background: #d6d1c2;
}

.only-mov .global-nav li {
    font-size: 1.5rem;
    color: #5c3417;
    margin-bottom: 20px;
}

.only-mov .global-nav li p {
    padding: 0 100px;
}

.only-mov .global-nav a {
    color: #fff;
    font-size: 1.7rem;
    font-weight: normal;
}

.only-mov .global-nav span {
    display: block;
    padding: 15px 50px;
    background-position: 93% center;
    background-repeat: no-repeat;
    border: none;
    font-size: 1.7rem;
    line-height: 15px;
}

@media screen and (max-width: 768px) {
    .only-mov .global-nav a {
        text-decoration: none;
    }

    .only-mov .global-nav .nav-item {
        padding: 1% 3%;
    }
}

@media screen and (max-width: 768px) {
    .only-mov .global-nav span {
        padding: 5px 25px;
        line-height: 25px;
    }

    .only-mov .global-nav .tel_txt {
        padding: 5px 10px;
        font-size: 1.2rem;
        display: inline-block;
        line-height: 1.4;
        margin: 4px 10px 0 0;
    }

    .only-mov .global-nav li p {
        padding: 0px 30px;
    }

    .tel_number {
        display: flex;
        align-items: center;
    }
}

@media screen and (max-width: 650px) {
    .only-mov .global-nav .nav-item {
        padding: 3%;
    }

    .only-mov .global-nav li {
        margin: 0 0 15px;
    }
}

.only-mov .global-nav li.panel_btn{
	margin-top: 24px;
}
.panel-inner .panel_entry a{
	background-color: #ffd500;
    color: #2a3554;
    padding: 7px 70px;
    border-radius: 30px;
	font-weight:bold;
}
.panel-inner .panel_request a{
	background-color: #e3265c;
    color: #fff;
    padding: 7px 70px;
    border-radius: 30px;
	font-weight:bold;	
}
.panel-inner .panel_contact a{
    background-color: #ffffff;
    color: #0058d1;
    padding: 7px 70px;
    border-radius: 30px;
    font-weight: bold;	
}



/* --------------------------------------------------- Toggle Button */
#nav-toggle {
    display: none;
    position: absolute;
    right: 3px;
    top: 10px;
    width: 60px;
    height: 45px;
    cursor: pointer;
    z-index: 999;
}

@media screen and (max-width: 768px) {
    #nav-toggle {
        top: 10px;
    }
}

#nav-toggle div {
    position: relative;
}

#nav-toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 90%;
    border-radius: 10px;
    background: #0F3763;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}

#nav-toggle span:nth-child(1) {
    top: 0;
}

#nav-toggle span:nth-child(2) {
    top: 12px;
}

#nav-toggle span:nth-child(3) {
    top: 24px;
}

@media screen and (max-width: 1024px) {
    #nav-toggle {
        display: block;
        padding: 8px;
    }

    /*----------#nav-toggle 切り替えアニメーション----------*/
    #js-popout-close {
        position: absolute;
        right: 10px;
        top: -50px;
        width: 50px;
        height: 45px;
        cursor: pointer;
        z-index: 999;
        padding: 8px;
    }

    #js-popout-close div {
        position: relative;
    }

    #js-popout-close span {
        display: block;
        position: absolute;
        height: 4px;
        width: 100%;
        background: #515151;
        left: 0;
    }

    #js-popout-close span:nth-child(1) {
        top: 14px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }

    #js-popout-close span:nth-child(2) {
        width: 0;
        left: 50%;
    }

    #js-popout-close span:nth-child(3) {
        top: 14px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }
}

@media screen and (max-width: 1024px) {
    header .top_head img {
        width: 270px;
        margin-top: 20px;
        margin-left: 15px;
    }
}

@media screen and (max-width: 750px) {
    #js-popout-close {
        top: -53px;
    }
}


@media screen and (max-width: 767px) {
    header .top_head {
        height: 50px;
        position: relative;
    }

    header .link_health {
        position: absolute;
        top: 9px;
        right: 50px;
    }

    .btn-square {
        font-size: 0.85em;
        margin-right: 0;
        background: #BAE3F9;
        border: none;
        padding: 8px 10px 7px;
        border-bottom: solid 4px #63A4C2;
    }

    ul.global-nav ul.sub {
        display: none;
    }

    ul.global-nav li p {
        cursor: pointer;
        color: #fff;
    }

    ul.global-nav li.order {
        display: block;
        padding: 15px 15px;
        color: #fff;
        border: none;
    }

    ul.global-nav li.order a {
        color: #ffffff;
        font-weight: 100;
        text-decoration: none;
    }

    .nav-item a {
        display: block;
        text-decoration: none;
    }

    ul.global-nav span {
        display: block;
        padding: 15px 15px;
        background-position: 93% center;
        background-repeat: no-repeat;
        color: #fff;
        border-bottom: 1px solid #80181a;
    }
}



/* ------------------------ヘッダー--------------------------------------- */
.globalnavi {
    width: 100%;
    z-index: 10;
    position: relative;
}

@media screen and (max-width: 1024px) {
    .globalnavi {
        margin: 0;
    }
}

@media screen and (max-width: 750px) {
    .globalnavi {
        display: contents;
        background: #fffbf0;
        width: 100%;
        position: fixed;
        z-index: 10;
    }
}

#top-head {
    background: #fff;
    height: 90px;
}

@media screen and (min-width: 1141px) {
    #top-head.sticky {
        box-shadow: rgba(0, 0, 0, .05) 0 0 10px 3px;
        background: rgba(255, 255, 255, 0.81) !important;
    }
}

.header {
    background: #fff;
    height: 80px;
    align-items: center;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.header li {
    display: inline-block;
    vertical-align: middle;
}

.dropmenu:before,
.dropmenu:after {
    content: "";
    display: table;
}

.dropmenu:after {
    clear: both;
}

.dropmenu li a {
    display: block;
    font-weight: 700;
    font-size: 1.4rem;
}

.header .bbb img {
    width: 100%;
    max-width: 400px;
}

.dropmenu li {
    display: block;
    text-align: center;
    margin: 0 1%;
}

.dropmenu li.flex {
    display: flex;
}

.dropmenu li.flex a {
    transition: 0.25s;
    margin: 0;
    font-weight: 700;
    padding: 10px 15px 10px;
}

.dropmenu li.flex a.btn2 {
    background: #E3265C;
    color: #fff;
}

.dropmenu li.flex a.btn3 {
    background: #FFBA22;
}

.dropmenu {
    display: flex;
    align-items: center;
    justify-content: end;
}

.tel_txt {
    color: #fff;
    background: #B4BEC7;
    padding: 3px 3%;
    font-size: 1.3rem;
    text-align: center;
    display: inline-block;
    line-height: 1.8;
    margin: 0 10px 0 0;
}

.dropmenu li.tel_number {
    display: flex;
    align-items: center;
    width: 270px;
    padding: 0 0 0 30px;
    border-left: solid 1px #ccc;
}

.tel_number a {
    font-size: 2.2rem;
    color: #005BAC;
}

.tel_number small {
    display: block;
    font-size: 1.3rem;
    color: #666666;
    text-align: center;
}

@media screen and (max-width: 1200px) {
    .dropmenu li {
        margin: 0 10px;
    }
}

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

    .header {
        display: none;
    }
}

@media screen and (max-width: 980px) {
    .dropmenu li a {
        font-size: 1.4rem;
    }

    .dropmenu li {
        margin: 0 20px;
    }
}

@media screen and (max-width: 850px) {
    .header .bbb {
        margin-left: 10px;
    }
}

.dropmenu li ul {
    list-style: none;
    position: absolute;
    z-index: 9999;
    top: 100%;
    left: 0;
    margin: 0;
    padding: 0;
}

.dropmenu li ul li {
    width: 100%;
}


.dropmenu li a:hover .dropmenu li a {
    background: #000;
}

#normal li ul {
    display: none;
}

#normal li:hover ul {
    display: block;
}

.header .aaa {
    width: 60%;
    margin: 0 2% 0 0;
}

.header .bbb {
    margin: 0 0 0 2%;
}

.global-nav {
    position: absolute;
    width: 100%;
    z-index: 10;
}

@media screen and (max-width: 1350px) {
    .header .aaa {
        width: 95%;
        margin: 0;
    }

    .dropmenu li a {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 1100px) {}

@media screen and (max-width: 1024px) {
    .global-nav {
        position: unset;
        width: 80%;
        margin: auto;
        text-align: center;
    }
}

.global-nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}

.global-nav__list li {
    padding: 0 14px;
}

.global-nav__list li a {
    display: block;
    height: 50px;
    line-height: 50px;
    color: #111;
    text-decoration: none;
}

.global-nav.clone-nav {
    position: fixed;
    top: -130px;
    left: 0;
    transition: all 1s;
    background: #fff;
    box-shadow: 0 2px 2px rgba(0, 0, 0, .2);
}

@media screen and (max-width: 850px) {
    .header .bbb {
        margin-left: 10px;
    }

    .dropmenu li.flex a {
        padding: 0 7px;
    }
}

@media screen and (max-width: 768px) {
    .global-nav.clone-nav {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .is-fixed-nav {
        display: none;
    }

    .tel_number small {
        color: #fff;
    }
}

.global-nav.clone-nav.is-fixed-nav {
    top: 0;
    z-index: 99;
}

@media screen and (max-width: 768px) {
    #js-trigger {
        display: none;
    }
}

/*============================
フッター
============================*/
.footer_read .flex{
	align-items: center;
	justify-content: center;
}
.footer_read .flex img{
	width: 260px;
    margin: 0 50px;
}
.footer_read .text{
    line-height: 35px;
}
.footer_group{
	background-color:#F4F4F4;
	padding:3% 0;
}
.footer_copyright{
    background-color: #171C61;	
	padding: 15px 0;
}
.footer_copyright p{
    font-size:12px;
	color:#fff;
}
.footer_read{
	padding:5% 0;
}
.footer_group img{
	width:250px;
}


@media screen and (max-width: 1200px) {
	.footer_read .flex img {
        width: 210px;
    }
}
@media screen and (max-width: 780px) {
    .footer_head {
        padding: 60px 0 40px;
    }

    .footer_head p {
        font-size: 1.3rem;
        margin: 0 0 20px;
    }
}
@media screen and (max-width: 768px) {
	.footer_read .flex img {
        width: 180px;
    }
}

@media screen and (max-width: 640px) {
    .footer_read {
        padding: 15% 0;
    }
    .footer_read .flex img {
        width: 120px;
        margin: 0 12px;
    }
    .footer_read .text {
        line-height: 25px;
        font-size: 13px;
    }
	.footer_group img{
		width: 150px;
	}
	footer{
	    margin-bottom: 70px;
	}
}




/* ======================================================
/*               ++ 装飾・アニメーション ++
   ====================================================== */
/* ----- ■ -----*/
.square {
    position: relative;
    margin-left: 24px;
}

.square::before {
    font-family: FontAwesome;
    content: '\f0c8';
    color: #ccc;
    position: absolute;
    top: 2px;
    left: -22px;
    font-size: 0.85em;
}

/* ----- キランと光る -----*/
.kiran-box {
    opacity: 0;
}

.kiran-box.kiran {
    opacity: 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.kiran-box.kiran::before {
    background-color: #fff;
    content: "";
    display: block;
    position: absolute;
    top: -100px;
    left: 0;
    width: 30px;
    height: 100%;
    opacity: 0;
    transition: cubic-bezier(0.32, 0, 0.67, 0);
}

.kiran-box.kiran:hover::before {
    animation: kiran 0.3s linear 1;
}

@keyframes kiran {
    0% {
        transform: scale(2) rotate(45deg);
        opacity: 0;
    }

    20% {
        transform: scale(20) rotate(45deg);
        opacity: 0.6;
    }

    40% {
        transform: scale(30) rotate(45deg);
        opacity: 0.4;
    }

    80% {
        transform: scale(45) rotate(45deg);
        opacity: 0.2;
    }

    100% {
        transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

.rotateRightZ {
    animation-name: rotateRightZAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes rotateRightZAnime {
    from {
        transform: rotateZ(0);
    }

    to {
        transform: rotateZ(360deg);
    }
}

.fadeIn {
    animation-name: fadeInAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.flipLeftTop {
    animation-name: flipLeftTopAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes flipLeftTopAnime {
    from {
        transform: translate(-20px, 80px) rotate(-15deg);
        opacity: 0;
    }

    to {
        transform: translate(0, 0) rotate(0deg);
        opacity: 1;
    }
}

.flipRightTop {
    animation-name: flipRightTopAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes flipRightTopAnime {
    from {
        transform: translate(-20px, 80px) rotate(25deg);
        opacity: 0;
    }

    to {
        transform: translate(0, 1) rotate(0deg);
        opacity: 1;
    }
}

.zoomIn {
    animation-name: zoomInAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

@keyframes zoomInAnime {
    from {
        transform: scale(0.6);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.fadeUpTrigger,
.zoomInTrigger,
.flipLeftTopTrigger,
.flipRightTopTrigger {
    opacity: 0;
}

figure {
    margin: 0 !important;
}

figure.hover-zoom {
    overflow: hidden;
}

figure.hover-zoom img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

figure.hover-zoom:hover img {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}


/* SPの長押し禁止 */
img {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-touch-callout: none;
    -moz-user-select: none;
    user-select: none;
}

/*============================
右下固定ボタン
============================*/
.kotei_btn {
	position: fixed;
    bottom: 12%;
    right: 0;
    z-index: 100;
}

.kotei_btn a:hover {
    opacity: 1;
}

.kotei_btn .fixed-btn{
    width: 80px;
    height: 80px;
}
.fixed-btn .flex{
    display: inline-block;
    text-align: center;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    height: 100%;
}
.fixed-btn .flex{
    justify-content: center;
}
.kotei_btn .fixed-btn.app {
    background: #ffd500;
	transition: .5s;
}
.kotei_btn .fixed-btn.app:hover{
    background: #ffe45d;
}
.kotei_btn .fixed-btn.demo {
    background: #14b7b5;
	transition: .5s;
}
.kotei_btn .fixed-btn.demo:hover{
    background: #27d6d4;
}
.kotei_btn .fixed-btn.pamphlet {
    background: #e3265c;
    transition: .5s;
}
.kotei_btn .fixed-btn.pamphlet:hover{
    background: #ff4278;	
}
.kotei_btn .fixed-btn.contact {
    background: #057af0;
    transition: .5s;
}
.kotei_btn .fixed-btn.contact:hover{
    background: #0e90ff;	
}
.fixed-btn .sent {
    font-size: .8rem;
}
.fixed-btn .sent {
    font-size: 13px;
    color: #fff;
    font-weight: 700;
    letter-spacing: .05em;
    line-height: 1.1em;
    margin: 5px 0 0;
}
.fixed-btn .flex i{
	color: #fff;
    font-size: 30px;
}
.fixed-btn.app i{
    color: #2a3554;	
}
.fixed-btn.app p{
    color: #2a3554;	
}

@media screen and (max-width: 750px) {
.kotei_btn {
    bottom: 0%;
    display: flex;
}
.kotei_btn .fixed-btn{	
    width: calc(100vw / 3);
	height:70px;
}
.p_top {
    position: fixed;
    bottom: 13%;
}
.fixed-btn .flex i {
    font-size: 25px;
}
}

/*トップに戻るボタン*/
.p_top {
    position: fixed;
    bottom: 3%;
    right: 20px;
    z-index: 10;
}
.p_top a {
    background-color: #000;
    border-radius: 30px;
    color: #fff;
    display: block;
    padding: 8px 14px;
    font-size: 20px;
}


/* ======================================================
/*               ++ 装飾・アニメーション ++
   ====================================================== */
/* ----- ■ -----*/
.square {
    position: relative;
    margin-left: 24px;
}

.square::before {
    font-family: FontAwesome;
    content: '\f0c8';
    color: #ccc;
    position: absolute;
    top: 2px;
    left: -22px;
    font-size: 0.85em;
}

/* ----- キランと光る -----*/
.kiran-box {
    opacity: 0;
}

.kiran-box.kiran {
    opacity: 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.kiran-box.kiran::before {
    background-color: #fff;
    content: "";
    display: block;
    position: absolute;
    top: -100px;
    left: 0;
    width: 30px;
    height: 100%;
    opacity: 0;
    transition: cubic-bezier(0.32, 0, 0.67, 0);
}

.kiran-box.kiran:hover::before {
    animation: kiran 0.3s linear 1;
}

@keyframes kiran {
    0% {
        transform: scale(2) rotate(45deg);
        opacity: 0;
    }

    20% {
        transform: scale(20) rotate(45deg);
        opacity: 0.6;
    }

    40% {
        transform: scale(30) rotate(45deg);
        opacity: 0.4;
    }

    80% {
        transform: scale(45) rotate(45deg);
        opacity: 0.2;
    }

    100% {
        transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

.rotateRightZ {
    animation-name: rotateRightZAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes rotateRightZAnime {
    from {
        transform: rotateZ(0);
    }

    to {
        transform: rotateZ(360deg);
    }
}

.fadeIn {
    animation-name: fadeInAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.flipLeftTop {
    animation-name: flipLeftTopAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes flipLeftTopAnime {
    from {
        transform: translate(-20px, 80px) rotate(-15deg);
        opacity: 0;
    }

    to {
        transform: translate(0, 0) rotate(0deg);
        opacity: 1;
    }
}

.flipRightTop {
    animation-name: flipRightTopAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes flipRightTopAnime {
    from {
        transform: translate(-20px, 80px) rotate(25deg);
        opacity: 0;
    }

    to {
        transform: translate(0, 1) rotate(0deg);
        opacity: 1;
    }
}

.zoomIn {
    animation-name: zoomInAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

@keyframes zoomInAnime {
    from {
        transform: scale(0.6);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.fadeUpTrigger,
.zoomInTrigger,
.flipLeftTopTrigger,
.flipRightTopTrigger {
    opacity: 0;
}

figure {
    margin: 0 !important;
}

figure.hover-zoom {
    overflow: hidden;
}

figure.hover-zoom img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

figure.hover-zoom:hover img {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

/*リキャプチャマーク非表示*/
.grecaptcha-badge{
	display:none;
}


