@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:where([hidden]:not([hidden='until-found'])) {
    display: none !important;
}
:where(html) {
    -webkit-text-size-adjust: 100%;
    color-scheme: light;
}
@supports not (min-block-size: 100dvb) {
    :where(html) {
        block-size: 100%;
    }
}
/*@media (prefers-reduced-motion: no-preference) {
    :where(html:focus-within) {
        scroll-behavior: smooth;
    }
}*/
:where(body) {
    block-size: 100%;
    block-size: 100dvb;
    line-height: 1.5;
    font-family: system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}
:where(input, button, textarea, select) {
    font: inherit;
    color: inherit;
}
:where(textarea) {
    resize: vertical;
    resize: block;
}
:where(button, label, select, summary, [role='button'], [role='option']) {
    cursor: pointer;
}
:where(:disabled) {
    cursor: not-allowed;
}
:where(label:has(> input:disabled), label:has(+ input:disabled)) {
    cursor: not-allowed;
}
:where(button) {
    border-style: solid;
}
:where(a) {
    text-underline-offset: 0.2ex;
}
:where(ul, ol) {
    list-style: none;
}
:where(img, svg, video, canvas, audio, iframe, embed, object) {
    display: block;
}
:where(img, picture, svg) {
    max-inline-size: none;
    block-size: auto;
}
:where(p, h1, h2, h3, h4, h5, h6) {
    overflow-wrap: break-word;
    font-weight: normal;
}
:where(h1, h2, h3) {
    line-height: calc(1em + 0.5rem);
}
:where(hr) {
    border: none;
    border-block-start: 1px solid;
    color: inherit;
    block-size: 0;
    overflow: visible;
}
:where(:focus-visible) {
    outline: 2px solid var(--focus-color, Highlight);
    outline-offset: 2px;
}
:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
    clip-path: inset(50%) !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden !important;
    position: absolute !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.wf-loading { visibility: hidden;}
.wf-active { visibility: visible;}
/*------------------------------------------------------------
    main contents style
------------------------------------------------------------*/
html {
    scroll-behavior: auto;
    font-size: 62.5%;
}
body {
    font-family: 'YakuHanJP', "Roboto", hiragino-kaku-gothic-pron, sans-serif;
    font-size: 15px;
    letter-spacing: .05em;
    line-height: 2;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
table, tr, th, td {
    border-collapse: collapse;
}
input, textarea, select, button {
    font-family: 'YakuHanJP', "Roboto", hiragino-kaku-gothic-pron, sans-serif;
    font-size: 100%;
    letter-spacing: .05em;
    font-size: 15px;
}
ul, ol, dl {
    margin: 0;
    padding: 0;
}
h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;
}
img {
    vertical-align: bottom;
    image-rendering: -webkit-optimize-contrast;
}
a img {
    border: medium none;
    image-rendering: -webkit-optimize-contrast;
}
a {
    color: #3f3f3f;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
a:link {
    color: #3f3f3f;
    text-decoration: none;
}
a:visited {
    color: #3f3f3f;
    text-decoration: none;
}
a:hover, a:active, a:focus {
    color: #3f3f3f;
    text-decoration: none;
}
.pc_tab_br {
    
}
.pc_br {

}
.tab_br {
    display: none;
}
.sp_br {
    display: none;
}
.wrapper {
    color: #3f3f3f;
    position: relative;
    background-color: #ffffff;
    will-change: opacity;
    transform: translateZ(0);
}
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
body{
    animation: fadeIn 2s forwards;
}
/*------------------------------------------------------------
	key visual
------------------------------------------------------------*/
.header_wrap {
    padding: 40px 80px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    transition: padding 0.3s ease, background 0.3s ease;
}
.header_wrap.is_scrolled {
    padding: 15px 80px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;    
    margin-bottom: 20px;
    transition: margin 0.3s ease;
}
.header_wrap.is_scrolled .header {
    margin-bottom: 0;
}
.header_left {
    display: flex;
    align-items: center;
}
.header_logo {
    padding: 0;
    margin-right: 20px;
}
.header_logo a {
    display: flex;
}
.header_logo img {
    width: 220px;
    transition: width 0.3s ease;
}
.header_wrap.is_scrolled .header_logo img {
    width: 160px;
}
.header_right {
    display: flex;
    align-items: center;
}
.gnav {
    
}
.gnav ul {
    display: flex;
}
.gnav ul li {
    margin-right: 50px;
}
.gnav ul li:last-of-type {
    margin-right: 0px;
}
.gnav ul li a {
    padding: 15px 0;
    display: inline-block;
    font-weight: bold;
    font-size: 18px;
    transition: font-size 0.3s ease;
}
.header_wrap.is_scrolled .gnav ul li a {
    font-size: 16px;
}

/**/
.hero_section {
    position: relative;
    z-index: 3;
}
.circle_blur {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.circle_blur img {
    width: 1200px;
    height: auto;
    margin: -150px auto 0;
}
.hero_wrap {
    width: 100%;
    padding: 110px 8% 140px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;    
}
.hero_inner {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.hero_copy_en {
    color: #22b7c3;
    font-family: "Caveat", cursive;
    font-size: 78px;
    text-align: center;
    line-height: 1.4;
    z-index: 3;
    position: relative;
    letter-spacing: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.hero_copy_en.is_show {
    opacity: 1;
}
.hero_image_wrap {
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: -35px;
}
.hero_image_left {
    width: 370px;
    margin-right: -100px;
    position: relative;
    bottom: -95px;
    opacity: 0;
    transform: scale(1.3);
    transition: opacity 1s ease, transform 1s ease;
}
.hero_image_left.is_show {
    opacity: 1;
    transform: scale(1);
}
.hero_image_left img {
    object-fit: cover;
    width: 100%;
    height: auto;
    border-radius: 10px;
    filter: blur(10px);
    flex: none;
}
.hero_image_center {
    width: 370px;
    z-index: 2;
    position: relative;
    opacity: 0;
    transform: scale(1.3);
    transition: opacity 1s ease, transform 1s ease;
}
.hero_image_center.is_show {
    opacity: 1;
    transform: scale(1);
}
.hero_image_center img {
    object-fit: cover;
    width: 100%;
    height: auto;
    border-radius: 10px;
    flex: none;
}
.hero_image_rignt {
    width: 370px;
    margin-left: -100px;
    position: relative;
    bottom: -55px;
    opacity: 0;
    transform: scale(1.3);
    transition: opacity 1s ease, transform 1s ease;
}
.hero_image_rignt.is_show {
    opacity: 1;
    transform: scale(1);
}
.hero_image_rignt img {
    object-fit: cover;
    width: 100%;
    height: auto;
    border-radius: 10px;
    filter: blur(10px);
    flex: none;
}
.hero_image_treat_1 {
    position: absolute;
    left: -20px;
    top: 120px;
    opacity: 0;
    transform: scale(1.3);
    transition: opacity 1s ease, transform 1s ease;
}
.hero_image_treat_1.is_show {
    opacity: 1;
    transform: scale(1);
}
.hero_image_treat_1 img {
    width: 290px;
}
.hero_image_treat_2 {
    position: absolute;
    right: 10px;
    top: 60px;
    opacity: 0;
    transform: scale(1.3);
    transition: opacity 1s ease, transform 1s ease;
}
.hero_image_treat_2.is_show {
    opacity: 1;
    transform: scale(1);
}
.hero_image_treat_2 img {
    width: 290px;
}
.hero_copy_jp {
    color: #22b7c3;
    text-align: center;
    position: relative;
    z-index: 3;
    margin-top: 20px;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.hero_copy_jp.is_show {
    opacity: 1;
}
.hero_copy_jp h2 {
    font-family: 'YakuHanJP', "source-han-sans-japanese", sans-serif;
    font-weight: 900;
    font-size: 50px;
    line-height: 1.4;
    margin-bottom: 5px;
}
.hero_copy_jp p {
    font-size: 15px;
    line-height: 1.6;
    font-weight: bold;
}





.scrolldown {
    position: absolute;
    right: 10%;
    bottom: 10%;
}
.scrolldown img {
    width: 190px;
}

/* ハンバーガーボタン */
.hamburger_btn {
    display: none;
    width: 60px;
    height: 40px;
    background-color: #00bcd4;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 10px;
    z-index: 101;
    display: none;
}
.hamburger_btn.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: none;
}
.hamburger_line {
    width: 24px;
    height: 1px;
    background-color: white;
    margin: 2px 0;
    transition: all 0.3s ease;
    display: block;
}
.hamburger_btn.open .hamburger_line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}
.hamburger_btn.open .hamburger_line:nth-child(2) {
    opacity: 0;
}
.hamburger_btn.open .hamburger_line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}
/* メニュー */
.mobile_menu {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 10% 6%;
    z-index: 100;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    pointer-events: none;
    display: none;
}
.mobile_menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.menu_content {
    flex: 1;
}
.mobile_menu_head {
    margin-bottom: 15px;
}
.mobile_menu_head h2 {
    
}
.mobile_menu_head h2 img {
    width: 200px;
}
.menu_group {
    padding: 1.8rem 0;
    border-bottom: 1px solid #e3e3e3;
}
.menu_item {    
    text-decoration: none;
    font-weight: bold;
    display: block;
    transition: color 0.3s ease;
    cursor: pointer;
    color: #00bcd4 !important;
}
.menu_item:hover {
    color: #00bcd4;
}
.submenu_toggle {
    color: #00bcd4;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}
.submenu_toggle:hover {
    color: #00bcd4;
}
.submenu_toggle.active {
    color: #00bcd4;
}
.submenu_toggle .arrow {
    display: inline-block;
    transition: transform 0.4s ease;
    font-size: 1.5rem;
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}
.submenu_toggle .arrow::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 1px;
    background-color: currentColor;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.submenu_toggle .arrow::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 15px;
    background-color: currentColor;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s ease;
}
.submenu_toggle.active .arrow::after {
    opacity: 0;
}
.submenu_list {
    list-style: none;
    padding-left: 1.5rem;
    border-left: 1px solid #00bcd4;
    margin-left: 0.5rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    display: block;
}
.submenu_list.open {
    max-height: 1000px;
    opacity: 1;
}
.submenu_item {
    text-decoration: none;
    padding: 0.3rem 0;
    display: block;
    transition: all 0.3s ease;
    list-style: none;
}
.submenu_item:hover {
    color: #00bcd4;
}
.footer_menu {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.footer_item {
    color: #666;
    text-decoration: none;
    font-size: 12px;
    display: block;
    transition: color 0.3s ease;
}
.footer_item:hover {
    color: #00bcd4;
}
/*@media (max-width: 768px) {
    .hamburger_btn.active {
        display: flex;
    }
}
@media (min-width: 769px) {
    .hamburger_btn {
        display: none !important;
    }

    .mobile_menu {
        display: none !important;
    }
}*/
.hamburger_info {
    display: flex;
}
.hmi_regist {
    background-color: #ff664e;
    color: #fff !important;
    font-weight: bold;
    padding: 7px 30px;
    border-radius: 100vh;
    margin-right: 20px;
    font-size: 14px;
}
.hmi_login {
    background-color: #3f3f3f;
    color: #fff !important;
    font-weight: bold;
    padding: 7px 30px;
    border-radius: 100vh;
    font-size: 14px;
}


#main_top {
    
}
#main_top_ex {
    background-color: #f8f8f8;
}
#main_top_faq {
    background-color: #e2f5f7;
}
/*------------------------------------------------------------
    top
------------------------------------------------------------*/
.top_about_wrap {
    width: 100%;
    padding: 60px 8% 140px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    background-image: url(../images/circle_blur_2.png);
    background-size: 787px auto;
    background-repeat: no-repeat;
    background-position: top left;
}
.top_about_treat {
    position: absolute;
    left: 5%;
    bottom: 5%;
}
.top_about_treat img {
    width: 200px;
    height: auto;
}
.top_about_inner {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.sec_top_about {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top_about_cont {
    width: 50%;
    margin-top: -60px;
}
.tac_ttl {
    margin-bottom: 40px;
}
.tac_ttl h2 {
    font-family: "Caveat", cursive;
    letter-spacing: 0;
    font-size: 100px;
    line-height: 1;
    color: #22b7c3;
    margin-bottom: 10px;
    margin-left: -10px;
}
.tac_ttl p {
    font-size: 15px;
    line-height: 1.6;
    font-weight: bold;
}
.tac_txt {
    
}
.tac_txt p {
    margin-bottom: 30px;
    line-height: 1.8;
}
.tac_txt p:last-of-type {
    margin-bottom: 0px;
}
.top_about_img_wrap {
    width: 40%;
}
.top_about_img {
    width: 100%;
    position: relative;
}
.top_about_img img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 0.9;
    border-radius: 10px;
}
.top_about_img:before {
    content: "";
    background-size: cover;
    background-color: #3f3f3f;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    top: -29px;
    position: absolute;
    transform: rotate(4deg); 
    z-index: -2;
}
.top_about_img:after {
    content: "";
    background-size: cover;
    background-color: #ffb100;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    top: -26px;
    position: absolute;
    transform: rotate(8deg); 
    z-index: -1;
}
/**/
.top_service_wrap {
    width: 100%;
    height: 900px;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    background-image: url(../images/top_service.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: flex-end;
}
.top_service_wrap:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(180deg,rgba(34, 183, 195, 0),rgba(34, 183, 195, 0.7) 80%,rgba(34, 183, 195, 1));*/
    background: linear-gradient(rgba(34, 183, 195,0) 40%, rgba(34, 183, 195, 1));
}
.top_service_treat_1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}
.top_service_treat_1 img {
    width: 100%;
}
.top_service_treat_2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}
.top_service_treat_2 img {
    width: 100%;
}
.top_service_head_wrap {
    width: 100%;
    padding: 0 8% 240px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    z-index: 3;
}
.top_service_head_inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.top_service_ttl {

}
.top_service_ttl h2 {
    font-family: "Caveat", cursive;
    letter-spacing: 0;
    line-height: 1;
    font-size: 100px;
    margin-left: -10px;
}
.top_service_ttl p {
    font-size: 15px;
    font-weight: bold;
}
.top_service_ttl_sub {

}
/**/
.top_service_cont_wrap {
    width: 100%;
    padding: 0 8% 140px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    z-index: 3;
    margin-top: -180px;
}
.top_service_cont_inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.top_service_list {

}
.top_service_card_large {
    padding: 60px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 50px;
}
.tscl_cont {
    width: 50%;
    padding: 15px 0 15px 15px;
}
.tscl_ttl {
    margin-bottom: 15px;
}
.tscl_ttl p {
    color: #d4145a;
    font-size: 16px;
    font-weight: bold;
}
.tscl_ttl h3 {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.6;
}
.tscl_txt {
    margin-bottom: 30px;
}
.tscl_btn {

}
.tscl_btn a {
    display: inline-block;
    background-color: #22b7c3;
    border-radius: 100vh;
    color: #ffffff;
    padding: 12px 60px;
    font-weight: bold;
    font-size: 14px;
}
.tscl_btn a:hover {
    box-shadow: 0 0 20px rgba(34, 183, 195, 0.4);
}
.tscl_image {
    width: 40%;
}
.tscl_image img {
    width: 100%;
    object-fit: cover;
    /*aspect-ratio: 1.2;*/
    border-radius: 10px;
}
.top_service_card_small_list {
    display: flex;
    justify-content: space-between;
}

.top_service_card_small {
    width: 48%;
    padding: 60px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.tscs_image {
    margin-bottom: 30px;
}
.tscs_image img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1.6;
    border-radius: 10px;
}
.tscs_cont {
    
}
.tscs_ttl {
    margin-bottom: 15px;
}
.tscs_ttl p {
    color: #d4145a;
    font-size: 16px;
    font-weight: bold;
}
.tscs_ttl h3 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
}
.tscs_txt {
    margin-bottom: 25px;
    line-height: 1.7;
}
.tscs_btn {
    text-align: center;
}
.tscs_btn a {
    display: inline-block;
    background-color: #22b7c3;
    border-radius: 100vh;
    color: #ffffff;
    padding: 12px 60px;
    font-weight: bold;
    font-size: 14px;
}
.tscs_btn a:hover {
    box-shadow: 0 0 20px rgba(34, 183, 195, 0.4);
}
/**/
.top_news_wrap {
    width: 100%;
    padding: 0 8% 100px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}
.top_news_inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 100px;
    border-top: 1px solid #d1dae8;
}
.top_news_head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 30px;
}
.top_news_ttl {

}
.top_news_ttl h2 {
    font-family: "Caveat", cursive;
    letter-spacing: 0;
    line-height: 1;
    font-size: 80px;
    color: #22b7c3;
    margin-left: -10px;
}
.top_news_ttl p {
    font-weight: bold;
    font-size: 15px;
}
.top_news_btn {

}
.top_news_btn a {
    display: inline-block;
    background-color: #22b7c3;
    border-radius: 100vh;
    color: #ffffff;
    padding: 12px 30px;
    font-weight: bold;
    font-size: 14px;
}
.top_news_btn a:hover {
    box-shadow: 0 0 20px rgba(34, 183, 195, 0.4);
}
.top_news_btn_sp {
    display: none;
}
.news_list_wrap {
    display: flex;
    flex-wrap: wrap;
    margin-right: -2%;
}
.news_list_box {
    width: 31.33333%;
    margin-right: 2%;
    margin-bottom: 60px;
}
.nlb_image {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 10px;
}
.nlb_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1.6;    
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.news_list_box:hover .nlb_image img {
    transform: scale(1.1);
}
.nlb_lead {

}
.nlb_lead h3 {
    font-weight: bold;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.8;
    margin-bottom: 5px;
    font-size: 15px;
}
.nlb_date {
    display: flex;
    font-size: 12px;
    line-height: 1.7;
}
.nlb_date span {
    margin: 0 4px;
    display: inline-block;
}

/*------------------------------------------------------------
    共通
------------------------------------------------------------*/
.page_head_wrap {
    width: 100%;
    padding: 200px 8% 200px 8%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    background-color: #f8f8f8;
    overflow: hidden;
}
.page_head_inner {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.page_head_ttl {
    color: #22b7c3;
}
.page_head_ttl h2 {
    font-family: "Caveat", cursive;
    letter-spacing: 0;
    line-height: 1;
    font-size: 100px;
    margin-left: -10px;
    padding-bottom: 5px;
    clip-path: inset(0 100% 0 0);
    animation: handwriting 2.5s ease forwards;
    animation-delay: 0.3s;
}
@keyframes handwriting {
    to {
        clip-path: inset(0 0 0 0);
    }
}
.page_head_ttl p {
    font-size: 15px;
    font-weight: bold;
    padding-left: 10px;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 1s;
}
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
.page_head_treat {
    position: absolute;
    bottom: 0;
    right: 5%;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease forwards;
    animation-delay: 0.5s;
}
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.page_head_treat img {
    height: 400px;
}
#main {
    background-color: #fff;
    border-radius: 60px 60px 0 0;
    margin-top: -60px;
    position: relative;
}

.page_head_wrap_ex {
    width: 100%;
    padding: 200px 8% 200px 8%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    background-color: #f8f8f8;
    overflow: hidden;
    height: 530px;
}
.page_head_inner_ex {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/*------------------------------------------------------------
    service
------------------------------------------------------------*/
.service_top_wrap {
    width: 100%;
    padding: 140px 8% 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}
.service_top_inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.service_top_copy {
    width: 45%;
    background: url(../images/treat_4.svg) no-repeat left 50px center / auto 100%; 
}
.service_top_copy h2 {
    font-family: "Caveat", cursive;
    letter-spacing: 0;
    line-height: -1;
    font-size: 110px;
    margin-bottom: 20px;
    margin-left: -10px;
}
.service_top_copy p {
    font-size: 16px;
    font-weight: bold;
}
.service_top_txt {
    width: 50%;
}
.service_top_txt p {
    margin-bottom: 20px;
}
.service_top_txt p:last-of-type {
    margin-bottom: 0px;
}
/**/
.service_outline_wrap {
    width: 100%;
    padding: 100px 8% 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}

.concept_loop {
    padding: 0;
    position: absolute;
    top: 200px;
    left: 0;
    width: 100%;
}
.bbs {
    align-items: center;    
    display: flex;
    width: 100%;
    white-space: nowrap;
    z-index: 1;
}
.bbs ul {
    animation: flowing 100s linear infinite;
    transform: translateX(100%);
    margin: 0;
    padding: 0;
}
.bbs ul li {
    display: inline-block;
    font-family: "Caveat", cursive;
    letter-spacing: 0;
    line-height: 1;
    font-size: 400px;
    color: #dfdfdf;
    margin-right: 30px;
}
@keyframes flowing {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.service_outline_inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.service_outline_top {
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
}
.sob_sub {
    position: absolute;
    top: 5%;
    right: 10%;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.8;
}
.service_outline_box {
    width: 355px;
    height: 355px;
    border-radius: 100vh;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid #ebeffa;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 20px;
}
.sob_ico {
    margin-bottom: 15px;
}
.sob_ico img {
    height: 130px;
}
.sob_ttl {
    text-align: center;
    font-weight: bold;
    font-size: 17px;
    line-height: 1.6;
}
/**/
.service_rm_wrap {
    width: 100%;
    padding: 140px 8% 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}
.srm_treat {
    position: absolute;
    width: 100%;
    top: 35%;
    left: 0;
}
.srm_treat img {
    width: 100%;
}
.service_rm_inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    position: relative;
}
.service_detail_cont {
    width: 52%;
    padding: 60px 0;
}
.sdc_label {
    margin-bottom: 15px;
    font-weight: bold;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
}
.sdc_label span {
    width: 10px;
    height: 10px;
    margin-right: 7px;
    display: inline-block;    
    border-radius: 100vh;
}
.sdcc_1 {
    background-color: #22b7c3;
}
.sdcc_2 {
    background-color: #ffb100;
}
.sdcc_3 {
    background-color: #d4145a;
}
.sdc_ttl {
    margin-bottom: 40px;
}
.sdc_ttl h3 {
    font-family: "Caveat", cursive;
    letter-spacing: 0;
    line-height: 1;
    font-size: 60px;
    margin-bottom: 5px;
    margin-left: -10px;
}
.sdc_ttl p {
    font-weight: bold;
    font-size: 14px;
}
.sdc_txt {

}
.sdc_txt p {
    margin-bottom: 15px;
}
.sdc_txt p:last-of-type {
    margin-bottom: 0px;
}
.service_detail_image {
    width: 40%;
}
.service_detail_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
/**/
.service_rr_wrap {
    width: 100%;
    padding: 160px 14% 0 4%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}
.srr_treat {
    position: absolute;
    width: 100%;
    top: 40%;
    left: 0;
}
.srr_treat img {
    width: 50%;
}
.service_rr_inner {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    position: relative;
}
.srr_image {
    width: 65%;
}
.srr_image img {
    width: 100%;
}
.srr_cont {
    width: 45%;
    margin-left: -10%;
}
.srrc_ttl {
    margin-bottom: 40px;
}
.srrc_ttl img {
    width: 415px;
}
.srrc_txt {
    margin-bottom: 40px;
}
.srrc_txt p {
    margin-bottom: 15px;
}
.srrc_txt p:last-of-type {
    margin-bottom: 0px;
}
.rr_btn {
    padding: 40px 60px;
    border-radius: 10px;
    background: rgba(34, 183, 195, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
}
.rr_btn_inner {
    flex: 1;
}
.rr_btn_inner h3 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.7;
    color: #22b7c3;
}
.rr_btn_inner p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 40px;
}
.rr_btn_inner h4 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.7;
}
.rr_btn_arrow {
    display: flex;
    align-items: center;
}
.rr_btn_arrow span {
    width: 35px;
    height: 35px;
    background-color: #22b7c3;
    border-radius: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.rr_btn_arrow span img {
    width: 8px;  
}
/**/
.service_imgae_list {
    align-content: center;
    align-items: center;
    background: transparent;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 32px;
    height: auto;
    justify-content: center;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    position: relative;
}
.sli_box {
    height: auto;
    width: 16vw;
}
.sli_box img {
    height: auto;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 0.55;
    border-radius: 100vh;
}
.sli_box {
    height: auto;
    width: 16vw;
}
.sli_box:nth-of-type(2n) {
    padding-top: 150px;
}

.service_bottom_wrap {
    position: relative;
}
.sb_treat {
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
}
.sb_treat img {
    width: 45%;
}
.service_im_wrap {
    width: 100%;
    padding: 160px 8% 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}
.service_im_inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    position: relative;
}
.service_ad_wrap {
    width: 100%;
    padding: 140px 8% 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}
.service_ad_inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    position: relative;
}
/**/
.service_ls_wrap {
    width: 100%;
    padding: 140px 8% 160px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}
.sls_treat {
    position: absolute;
    left: 15%;
    top: 0;
}
.sls_treat img {
    width: 170px;
}
.service_ls_inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.service_ls_inner h2 {
    font-weight: bold;
    font-size: 40px;
    line-height: 1.6;
    margin-bottom: 30px;
}
.service_ls_inner p {
    line-height: 1.8;
}
/*------------------------------------------------------------
    company
------------------------------------------------------------*/
.company_wrap {
    width: 100%;
    padding: 140px 8% 160px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}
.company_inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;    
}
.company_cont {
    display: flex;
    justify-content: space-between;
    margin-bottom: 140px;
}
.company_lead {
    width: 260px;
}
.company_lead_inner {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 20px;
}
.company_lead_inner span {
    width: 16px;
    height: 16px;
    border-radius: 100vh;
    background-color: #22b7c3;
    margin-right: 10px;
}
.company_overview {
    flex: 1;
    border-top: 1px solid #e5e7eb;
}
.company_overview dl {
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    padding: 40px 10px;
}
.company_overview dl dt {
    width: 200px;
    font-weight: bold;
}
.company_overview dl dd {
    flex: 1;
}

.company_link {

}
.company_link a {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    padding: 60px;
    border-radius: 15px;
    background-image: url(../images/company_link.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    overflow: hidden;
}
.company_link a:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(34, 183, 195, 0) 40%, rgba(34, 183, 195, 1));
}
.company_link a:hover {
    box-shadow: 0 0 20px rgba(34, 183, 195, 0.4);
}
.company_link h2 {
    color: #fff;
    font-family: "Caveat", cursive;
    letter-spacing: 0;
    line-height: 1;
    font-size: 80px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}
.company_link p {
    color: #fff;
    font-size: 14px;
    padding-left: 10px;
    font-weight: bold;
    padding-right: 24px;
    background: url(../images/arrow_2.svg) no-repeat right center / 18px auto;
    position: relative;
    z-index: 2;
}


/*------------------------------------------------------------
    news
------------------------------------------------------------*/
.news_wrap {
    width: 100%;
    padding: 140px 8% 160px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}
.news_inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;    
}
.news_kiji_wrap {
    width: 100%;
    padding: 0 8%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    top: -250px;
}
.news_kiji_inner {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;    
}
.kiji_head_wrap {
    margin-bottom: 40px;
}
.kiji_head_info {
    display: flex;
    align-items: center;
}
.khi_1 {
    width: 6px;
    height: 6px;
    border-radius: 100vh;
    background-color: #22b7c3;
    margin-right: 5px;
    display: inline-block;
    position: relative;
    bottom: -1px;
}
.khi_2 {
    font-size: 13px;
    margin-right: 10px;
}
.khi_3 {
    font-size: 13px;
}
.kiji_ttl {
    line-height: 1.6;
    font-size: 26px;
    font-weight: bold;
}
.article {
    margin-bottom: 80px;
}
.article p {
    margin-bottom: 30px;
}
.article figure img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}
.article p img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}
.news_back {
    display: flex;
    justify-content: center;
}
.news_back a {
    display: inline-block;
    background-color: #22b7c3;
    color: #fff;
    font-weight: bold;
    padding: 12px 40px;
    border-radius: 100vh;
    font-size: 14px;
}
.news_back a:hover {
    box-shadow: 0 0 20px rgba(34, 183, 195, 0.4);
}

/* ページャー */
nav.cp_navi *, nav.cp_navi *:after, nav.cp_navi *:before {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
nav.cp_navi a {
    text-decoration: none;
}
nav.cp_navi {
    text-align: center;
}
.cp_navi .cp_pagination {
    display: flex;
    justify-content: center;
    padding: 0 0.5em;
}
.cp_navi .cp_pagination li {
    list-style: none;
}
.cp_navi .cp_pagenum {
    font-size: 1em;
    line-height: 50px;
    display: block;
    float: left;
    transition: 400ms ease;
    letter-spacing: 0.1em;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin: auto .5em;
}
.cp_navi .cp_pagenum:hover,
.cp_navi .cp_pagenum.current {
    font-weight: bold;
    color: #ffffff !important;
    background-color: #22b7c3;
    border-radius: 50%;
}
.cp_navi .cp_pagenum.prev:hover,
.cp_navi .cp_pagenum.next:hover {
    color: #757575 !important;
    background-color: transparent;
    border-radius: 50%;
}
@media only screen and (max-width: 960px) {
    .cp_navi .cp_pagination {
        padding: 0 10px;
    }
    .cp_navi .cp_pagenum {
    font-size: 0.8em;
    line-height: 25px;
    width: 45px;
    height: 25px;
    margin: auto .1em;
    border-radius: 0.3em;
}
    .cp_navi .cp_pagenum.prev,
    .cp_navi .cp_pagenum.next {
        padding: 0 25px 0 0;
    }
    .cp_navi .cp_pagenum:hover,
    .cp_navi .cp_pagenum.current {
        border-radius: 0.3em;
    }
    .cp_navi .cp_pagenum.prev:hover,
    .cp_navi .cp_pagenum.next:hover {
        border-radius: 0.3em;
    }
}
@media only screen and (min-width: 120px) and (max-width: 767px) {
    .cp_navi .cp_pagenum {
    display: none;
    border-radius: 0.3em;
    }
    .cp_navi .cp_pagenum:nth-of-type(2) {
    position: relative;
    padding-right: 20px;
    }
    .cp_navi .cp_pagenum:nth-of-type(2)::after {
    font-size: 1.2em;
    position: absolute;
    top: 0;
    left: 25px;
    content: '...';
    }
    .cp_navi .cp_pagenum:nth-child(-n+3),
    .cp_navi .cp_pagenum:nth-last-child(-n+3) {
        display: block;
    }
    .cp_navi .cp_pagenum:nth-last-child(-n+4) {
        padding: 0 5px;
    }
    .cp_navi .cp_pagenum:nth-last-child(-n+4)::after {
        content: none;
    }
    .cp_navi .cp_pagenum:hover,
    .cp_navi .cp_pagenum.current {
        border-radius: 0.3em;
    }
    .cp_navi .cp_pagenum.prev:hover,
    .cp_navi .cp_pagenum.next:hover {
        border-radius: 0.3em;
    }
}


/*------------------------------------------------------------
    contact
------------------------------------------------------------*/
.contact_wrap {
    width: 100%;
    padding: 140px 8% 160px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}
.contact_inner {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;    
}
.contact_head {
    margin-bottom: 80px;
}
.contact_head h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}
.contact_head p {
    line-height: 1.8;
}

.contact_form {
    
}
.contact_form dl {
    margin-bottom: 30px;    
    line-height: 1.6;
}
.conf_br {
    padding-bottom: 25px;
    border-bottom: 1px solid #d1d1d1;
}
.contact_form dl:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}
.contact_form dl dt {
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
}
.contact_form dl dt span {
    color: #d4145a;
    font-size: 14px;
    font-weight: normal;
}
.contact_form dl dd {
    
}
.input_text {
    width: 100%;
    height: 65px;
    padding: 10px 20px 10px;
    box-sizing: border-box;
    background: #f8f8f8;
    margin: 0;
    border: none;
    border-radius: 10px;
}
.ipw_1 {
    width: 100px !important;
}
.form_select {
    -webkit-appearance: none;
    appearance: none;
    height: 65px;
    padding: 10px 35px 10px 20px;
    background-image: url(../images/arrow_4.svg);
    background-position: right 18px center;
    background-repeat: no-repeat;
    background-size: 9px auto;
    border: none;
    width: 100%;
    background-color: #f8f8f8;
    border-radius: 10px;
}
.fsw_1 {
    width: 200px !important;
}
.fsw_2 {
    width: 100px !important;
}
.textarea {
    width: 100%;
    padding: 20px;
    background: #f8f8f8;
    border: none;
    box-sizing: border-box;
    min-height: 180px;
    margin: 0;
    border-radius: 10px;
}
.radio_btn_wrap {
    display: flex;
    flex-wrap: wrap;
}
.radio_btn {
    margin-right: 15px;
}
.contact_btn {
    
}
.apply_btn_wrap {
    margin-top: 60px;
    text-align: center;
}
.apply_btn {
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    width: 100%;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    margin: 0 auto;
    color: #fff;
    background-color: #22b7c3;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}
.apply_btn:hover {
    opacity: 0.8;
}
.apply_btn_wrap a {
    margin-top: 20px;
    display: inline-block;
    text-decoration: underline;
    font-size: 13px;
}
.back_btn {
    border: 1px solid #22b7c3;
    background-color: #fff;
    padding: 5px 20px;
    border-radius: 100vh;
    font-size: 13px;
    color: #22b7c3;
    cursor: pointer;
}

.form_check {
    margin-bottom: 40px;
}
.retain {
    font-size: 13px;
    cursor: pointer;
}
.retain a {
    text-decoration: underline;
}
.retain_check {

}

.contact_fin_msg {
    padding: 70px 60px;
    background-color: #fff;
    border-radius: 20px;
}
.contact_fin_msg h2 {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
}
.contact_fin_msg p {
    text-align: center;
}
















/*------------------------------------------------------------
    privacy policy & terms
------------------------------------------------------------*/
.terms_wrap {
    width: 100%;
    padding: 140px 8% 160px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.terms_inner {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.content_ttl {
    margin-bottom: 40px;
}
.content_ttl h3 {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.6;
}
.content_ttl h2 {
    font-size: 32px;
    font-family: "source-han-sans-japanese", sans-serif;
    font-weight: 700;
    line-height: 1.5;
}
.terms_content {
    
}
.terms_intro {
    margin-bottom: 40px;
}
.terms_content a {
    text-decoration: underline;
}
.terms_ttl {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.6;
    margin-top: 40px;
}
.terms_sub_ttl {
    margin-bottom: 20px;
}
.terms_sub_ttl p {
    text-indent: -1.2em;
    padding-left: 1.2em;
    line-height: 1.6;
    margin-bottom: 10px;
}
.terms_item {
    margin-bottom: 20px;
    margin-top: 15px;
}
.terms_item p {
    text-indent: -1.7em;
    padding-left: 1.7em;
    line-height: 1.6;
    margin-bottom: 10px;
}




/*------------------------------------------------------------
    footer
------------------------------------------------------------*/
.page_footer_wrap {
    background: linear-gradient(180deg,rgba(34, 183, 195, 0),rgba(34, 183, 195, 0.7) 20%,rgba(34, 183, 195, 1));
}

.cta_contact_wrap {
    width: 100%;
    padding: 160px 6% 120px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    color: #fff;
}
.cta_contact_inner {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.cta_contact_head {
    margin-bottom: 30px;
}
.cta_contact_head h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}
.cta_contact_head p {
    
}
.ccb_ttl {
    font-family: "Caveat", cursive;
    letter-spacing: 0;
    line-height: 1;
    font-size: 150px;
    color: #fff !important;
    padding-right: 200px;
    background: url(../images/megaphone.svg) no-repeat right center / 160px auto;
}
.ccb_ttl:hover {
    opacity: 0.7;
}
.contact_ico {

}
.contact_ico img {
    width: 160px;
}

.footer {
    width: 100%;
    padding: 0 6% 160px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}
.footer_inner {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}
.footer_info_wrap {
    padding-top: 100px;
    border-top: 1px solid  rgba(255,255,255,0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}
.footer_info_head {
    
}
.footer_logo_wrap {
    
}
.footer_logo {
    
}
.footer_logo img {
    width: 220px;
}
.footer_address {
    font-size: 13px;
    letter-spacing: 1px;
    color: #fff;
}
.footer_nav_wrap {
    
}
.footer_nav {
    display: flex;
}
.footer_nav li {
    margin-right: 35px;
}
.footer_nav li:last-child {
    margin-right: 0px;
}
.footer_nav li a {
    display: block;
    letter-spacing: 1px;
    font-size: 15px;
    font-weight: bold;
    color: #fff !important;
}
.footer_cont {

}
.footer_bottom {
    display: flex;
    justify-content: space-between;
}
.footer_privacy {
    color: #fff !important;
    font-size: 12px;
    letter-spacing: 1px;
}
.copyright {
    font-size: 12px;
    letter-spacing: 1px;
    color: #fff;
}

.anchorlink {
    position: relative;
    display: block;
}

/*------------------------------------------------------------
    pagetop
------------------------------------------------------------*/
.page-top {
    position: fixed;
    bottom: 40px;
    z-index: 16;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
}
.ubbs__2 {
    position: relative;
    padding: 20px 40px;
    background-color: #22b7c3;
    border: 2px solid #fff;
    border-radius: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.2);
}
.floating_menu {
    display: flex;
    flex-wrap: wrap;
}
.floating_menu li {
    border-right: 1px solid #6ddce5;
}
.floating_menu li:last-of-type {
    border-right: none;
}
.floating_menu li a {
    padding: 0 20px;
    display: flex;
    align-items: center;
}
.floating_menu li a p {
    margin-right: 8px;
}
.floating_menu li a p img {
    height: 26px;
}
.floating_menu li a span {
    color: #fff;
    font-weight: bold;
    font-size: 15px;
}


/*------------------------------------------------------------
    scroll animation
------------------------------------------------------------*/
.fade-in-element {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.fade-in-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}














































