@charset "utf-8";

/*content*/
.content {
    max-width: 1200px;
    margin: 0 auto
}

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

@media screen and (min-width: 2500px) {
    .content {
        max-width: 1940px;
    }
}

@media screen and (max-width: 1260px) {
    .content {
        max-width: 90%;
    }
}

/*アンカーリンク調節*/
.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
    }
}

.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);
    }
}

/*共通*/
.top-5 {
    margin-top: 5%;
}

.btm-5 {
    margin-bottom: 5%;
}



/* ======================================================
/*               ++ 装飾・アニメーション ++
   ====================================================== */
/* ----- ■ -----*/
.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);
}



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

/* グローバルメニュー */
/* ------------------スマホヘッダー-------------------- */

.panel {
    background: url(./img/bg_menu.jpg) center / cover no-repeat;
    position: relative;
    top: -70px;
}

.panel-inner {
    position: relative;
    top: 0;
    width: 100%;
    height: 100vh;
    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: #005bac;
    }
}

.panel {
    display: none;
}

.only-mov header {
    background-color: #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-color: #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;
    line-height: 25px;
    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: 750px) {
    .only-mov .global-nav span {
        padding: 5px 25px;
        line-height: 25px;
    }

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

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

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

/* --------------------------------------------------- Toggle Button */
#nav-toggle {
    display: block;
    padding: 13px;
    width: 40px;
    height: 45px;
    cursor: pointer;
    z-index: 999;
    background: #005bac;
    position: absolute;
    right: 0;
    top: 0;
}

#nav-toggle div {
    position: relative;
}

#nav-toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #fff;
    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;
}

#nav-toggle small {
    color: #fff;
    position: absolute;
    top: 30px;
}


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

    #nav-toggle {
        display: block;
        padding: 10px;
        width: 30px;
        height: 30px;
    }

    #nav-toggle span {
        height: 3px;
    }

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

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

    #nav-toggle small {
        top: 25px;
        font-size: 1rem;
    }
}

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

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

#js-popout-close span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #fff;
    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);
}

#js-popout-close small {
    color: #fff;
    position: absolute;
    top: 35px;
}

.menu_logo {
    position: absolute;
    top: 50px;
    left: 3%;
}

.menu_logo img {
    display: block;
    max-width: 240px;
    width: 100%;
}

@media screen and (max-width: 780px) {
    #js-popout-close {
        top: 22px;
        right: 15px;
        width: 25px;
        height: 25px;
    }

    .menu_logo {
        top: 30px;
    }

    #js-popout-close small {
        font-size: 1rem;
        top: 30px;
    }
}


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

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

    header .top_head img {
        width: 200px;
        margin-top: 13px;
        margin-left: 15px;
    }

    .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 #fff;
    }
}

/* ------------------------ヘッダー--------------------------------------- */
.globalnavi {
    width: 100%;
    /*position: fixed;*/
    z-index: 10;
    margin-top: 0px;
}

@media screen and (max-width: 750px) {
    .globalnavi {
        display: contents;
        background-color: #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 {
    height: 70px;
    position: fixed;
    width: 100%;
    background: #fff;
    z-index: 999;
}

.header {
    position: relative;
    display: flex;
    justify-content: space-between;
}

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

.dropmenu {
    text-align: end;
    margin-right: 15px;
}

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

.dropmenu:after {
    clear: both;
}

.dropmenu li {
    display: inline-block;
    text-align: center;
    margin: 5px 0;
}

.dropmenu li a {
    display: block;
    margin: 0;
    font-size: 1.5rem;
    line-height: 21px;
    text-decoration: none;
    color: #252525;
    font-family: YakuHanJP, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-weight: bold;
    margin: 0 7px;
}

.header {
    height: 73px;
    align-items: center;
}

.header .bbb {
    margin-top: 0;
    margin-left: 40px;
}

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

.header .aaa {
    padding-top: 0;
}

.dropmenu li {
    display: block;
    text-align: center;
    margin: 0 10px;
}

.dropmenu li a {
    display: inline-block;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 700;
    margin: 0;
}

.dropmenu li.flex {
    display: flex;
    margin: 0;
}

.dropmenu li.flex a {
    background-color: #0000b8;
    padding: 0 20px;
    line-height: 73px;
    color: #fff;
    transition: 0.25s;
    margin: 0;
}

.dropmenu li.flex a.btn2 {
    background-color: #F17276;
    color: #fff;
    line-height: 3;
    border-radius: 3rem;
    padding: 0 25px;
}

.dropmenu {
    margin-right: 25px;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 1090px) {
    .header .bbb img {
        max-width: 360px;
    }
}

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

    header .top_head img {
        width: 250px;
        margin-top: 0;
        margin-left: 5%;
    }

    .header {
        display: none;
    }
}

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

    .dropmenu li {
        margin: 0 5px;
    }

    .header .bbb img {
        max-width: 300px;
    }
}

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

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

.dropmenu li a:hover {
    color: #008de9;
}

.dropmenu li a:hover .dropmenu li .flo-wrap .icon-p p {
    color: #fff;
}

.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 ul li a {
    padding: 13px 15px;
    background-color: #f6f2e7;
}

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

#normal li ul {
    display: none;
}

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

.header .bbb {
    margin-top: 12px;
    margin-left: 40px;
}

.header .bbb img {
    width: 200px;
}

.header .aaa {
    padding-top: 3px;
}


/* -----------------------グローバルメニューお試し-------------------------------- */
.header {
    height: 75px;
    background-color: #fff;
}

.global-nav {
    position: absolute;
    width: 90%;
    margin: 8% auto 0;
    justify-self: center;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
}

.global-nav li {
    width: 33.3%;
    margin: 0 0 60px;
}

.global-nav li a {
    color: #fff;
    font-size: 3.8rem;
    line-height: 1.4;
}

.global-nav li a small {
    display: block;
    font-size: 1.6rem;
}

@media screen and (max-width: 1024px) {
    .global-nav {
        position: unset;
    }

}

.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-color: #fff;
    box-shadow: 0 2px 2px rgba(0, 0, 0, .2);
}

.header-left h1 img {
    max-width: 350px;
    padding-left: 5%;
}

.top_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    height: 70px;
}

.nav_btn {
    width: 31%;
}

.nav_btn a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50px;
    text-align: center;
    padding: 1.5rem 3.5rem;
    background: #005bac;
}

.nav_btn.nav_btn2 a {
    background: #03acef;
    margin: 0 0 0 3%;
}

.header-left {
    width: 38%;
}

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

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

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

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

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

    .global-nav li {
        width: 100%;
        margin: 0 0 20px;
    }

    .global-nav li a {
        font-size: 2.8rem;
    }

    .global-nav {
        margin: 70px auto 0;
    }

    header {
        position: fixed;
        height: auto;
        width: 100%;
        z-index: 999;
        background: #fff;
    }
}

.clone-nav {
    display: none;
}

.is-fixed-nav.clone-nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #fff;
}

.clone-nav {
    display: none;
}

.clone-nav.is-fixed-nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #fff;
}

#js-popout-panel {
    display: none;
}

#js-popout-panel.is-open {
    display: block;
}

/*===================================
        メニュー内のナビ
===================================*/


#g-nav .box {
    margin: 0 0 20px auto;
    width: 85%;
}

#g-nav.panelactive {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

.circle-bg {
    position: fixed;
    z-index: 998;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #005bac;
    transform: scale(0);
    top: -50px;
    left: calc(50% - 50px);
    transition: all .6s;
}

.circle-bg.circleactive {
    transform: scale(50);
    background: #005bac;
}

#g-nav-list {
    display: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav-list .left {
    width: 31%;
}

#g-nav-list .center {
    width: 31%;
    text-align: left;
}

#g-nav-list .right {
    width: 31%;
}

#g-nav.panelactive #g-nav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 85%;
    margin: 1% auto 0;
}

#g-nav {
    opacity: 0;
}

#g-nav.panelactive {
    opacity: 1;
    overflow-y: auto;
}

#g-nav .box ul {
    margin: 10px 0;
}

#g-nav .box ul li {
    position: relative;
}

#g-nav .box ul li::after {
    content: '\f061';
    font-family: "Font Awesome 5 Free";
    font-size: 1.6rem;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    transition: .5s;
    font-weight: 600;
}

#g-nav .box ul li a {
    font-size: 1.6rem;
    display: block;
}

#g-nav .box ul li a:hover {
    color: #F94C0D;
}

#g-nav.panelactive ul li,
#g-nav-list .right h2,
#g-nav-list .left .p-oc .link,
#g-nav-list p,
#g-nav-list img {
    animation-name: gnaviAnime;
    animation-duration: 1s;
    animation-delay: .2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes gnaviAnime {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.openbtn {
    position: relative;
    top: 0;
    right: 0;
    z-index: 9999;
    background: #005bac;
    cursor: pointer;
    width: 70px;
    height: 70px;
    overflow: hidden;
}

.openbtn .openbtn-area {
    transition: all .4s;
}

.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    height: 2px;
    background: #fff;
    width: 60%;
}

.openbtn span:nth-of-type(1) {
    top: 15px;
}

.openbtn span:nth-of-type(2) {
    top: 25px;
}

.openbtn span:nth-of-type(3) {
    top: 35px;
}

.openbtn.active .openbtn-area {
    transform: rotateX(360deg);
}

.openbtn.active span:nth-of-type(1) {
    top: 12px;
    transform: translateY(6px) rotate(-135deg);
    width: 50%;
}

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

.openbtn.active span:nth-of-type(3) {
    top: 24px;
    transform: translateY(-6px) rotate(135deg);
    width: 50%;
}

.openbtn p {
    position: absolute;
    border: 0;
    text-align: center;
    bottom: 18%;
    left: 0;
    right: 0;
    letter-spacing: .034em;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
}

.nav_img {
    width: 100%;
    margin: 0 0 5%;
}

.nav_img img {
    width: 100%;
    min-width: 300px;
    display: block;
}

#g-nav .sub_nav {
    margin: 15% 0 0 auto;
}

nav {
    width: 50%;
    min-width: 700px;
}

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

@media screen and (max-width:1200px) {
    .nav_btn {
        display: none;
    }

    nav {
        width: auto;
        min-width: auto;
    }
}

@media screen and (max-width:780px) {
    #g-nav.panelactive ul li {
        width: 100%;
    }

    .openbtn p {
        letter-spacing: .045em;
        font-size: 1.5rem;
    }

    .openbtn.active span:nth-of-type(1),
    .openbtn.active span:nth-of-type(3) {
        transform: rotate(135deg);
        top: 24px;
    }

    .openbtn.active span:nth-of-type(1) {
        transform: rotate(-135deg);
    }

    #g-nav-list .left,
    #g-nav-list .center,
    #g-nav-list .right {
        width: 100%;
    }

    #g-nav .box,
    #g-nav .sub_nav {
        margin: 0 0 20px;
        width: 100%;
    }

    #g-nav .box ul li a,
    #g-nav .box ul li::after {
        font-size: 1.3rem;
    }

    #g-nav.panelactive #g-nav-list {
        margin: 8% auto 0;
    }

    .nav_img img {
        min-width: 230px;
    }
}

/*トップに戻るボタン*/
#page-top {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 0;
    bottom: 0;
    background: #2f2f2f;
    opacity: 0.6;
    z-index: 999;
}

#page-top a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
}

#page-top a::before {
    font-family: "Font Awesome 5 Free";
    content: '\f062';
    font-size: 26px;
    color: #fff;
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
    line-height: 48px;
}

.cta_btn {
    position: fixed;
    right: -3%;
    bottom: -5%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0;
    z-index: 50;
}

.rotate-text {
    transform-origin: 165px 165px;
    animation: rotateCircleText 18s linear infinite;
}

.rotate-text text {
    opacity: .9;
}

@keyframes rotateCircleText {
    100% {
        transform: rotate(360deg);
    }
}

@media screen and (max-width:1200px) {
    .cta_btn svg {
        width: 180px;
        height: 180px;
    }

    .cta_btn {
        right: -3%;
        bottom: -5%;
    }
}

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


