/*#region var*/
:root {
    --pxunit: 10px;
    --fontB: 'Noto Sans JP', sans-serif;
    /* Base font */
    --fontT: 'Poppins', serif;
    /* Title font */
    --fontD: 'DIN 2014';
    --headerH: 80px;
}

* {
    box-sizing: border-box;
    color: #2F3D4C;
    font-family: var(--fontB);
    font-weight: 400;
    line-height: 1.2;
}

body {
    margin: 0;
    padding: 0;
    overflow-y: auto;
}

.hx1 {
    content: "";
    height: var(--pxunit);
}

.hx2 {
    content: "";
    height: calc(var(--pxunit)*2);
}

.hx3 {
    content: "";
    height: calc(var(--pxunit)*3);
}

.hx4 {
    content: "";
    height: calc(var(--pxunit)*4);
}

.hx5 {
    content: "";
    height: calc(var(--pxunit)*5);
}

.hx6 {
    content: "";
    height: calc(var(--pxunit)*6);
}

.hx7 {
    content: "";
    height: calc(var(--pxunit)*7);
}

.hx8 {
    content: "";
    height: calc(var(--pxunit)*8);
}

.hx9 {
    content: "";
    height: calc(var(--pxunit)*9);
}

.hx10 {
    content: "";
    height: calc(var(--pxunit)*10);
}

.hx11 {
    content: "";
    height: calc(var(--pxunit)*11);
}

.hx12 {
    content: "";
    height: calc(var(--pxunit)*12);
}

.hx13 {
    content: "";
    height: calc(var(--pxunit)*13);
}

.hx14 {
    content: "";
    height: calc(var(--pxunit)*14);
}

.hx15 {
    content: "";
    height: calc(var(--pxunit)*15);
}

.hx16 {
    content: "";
    height: calc(var(--pxunit)*16);
}

.hx17 {
    content: "";
    height: calc(var(--pxunit)*17);
}

.hx18 {
    content: "";
    height: calc(var(--pxunit)*18);
}

.hx19 {
    content: "";
    height: calc(var(--pxunit)*19);
}

.hx20 {
    content: "";
    height: calc(var(--pxunit)*20);
}

/*#endregion var*/

/*#region RESET*/
html,
body {
margin:0;
}

html {
    scroll-behavior: smooth;
}
/*br{
display:none;
}*/

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    padding: 0px;
    font-weight: normal;
}

p {
    margin: 0px;
    padding: 0px;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:hover,
a:focus,
a:active {
    outline: none;
    text-decoration: none;
}

input {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

input:hover,
input:focus,
input:active {
    outline: none;
}

input::-webkit-input-placeholder {
    color: #333333;
}

input::-moz-placeholder {
    color: #333333;
}

input:-ms-input-placeholder {
    color: #333333;
}

input:-moz-placeholder {
    color: #333333;
}

textarea::-webkit-input-placeholder {
    color: #333333;
}

textarea::-moz-placeholder {
    color: #333333;
}

textarea:-ms-input-placeholder {
    color: #333333;
}

textarea:-moz-placeholder {
    color: #333333;
}

button:focus {
    outline: 0;
}

ul {
    margin: 0px;
    padding: 0px;
}

ul li {
    list-style-type: none;
}

img {
    border: 0px;
}

.clearfix {
    clear: both;
    overflow: hidden;
}

/*#endregion RESET*/

/*#region pspander*/
.pspander_header {
    cursor: pointer;
}

.pspander_opened {
    display: block;
}

.pspander_closed {
    display: none;
}

.pspander.pst_show .pspander_opened {
    display: none;
}

.pspander.pst_show .pspander_closed {
    display: block;
}

.pspander_collapse {
    display: none;
}

/*#endregion pspander*/
/*#region ANIMATION*/
/*#region opacity animation*/
.js_opac {
    opacity: 0;
    transition: all .6s;
    transition-delay: .3s;
}

.js_opac.on {
    opacity: 1;
}

/*#endregion opacity animation*/
/*#region spin animation*/
/* spin1 */
@keyframes spin1 {
    0% {
        transform: rotate(0deg)translate3d(7px, 0, 0);
    }

    100% {
        transform: rotate(360deg)translate3d(7px, 0, 0);
    }
}

/* spin2 */
@keyframes spin2 {
    0% {
        transform: rotate(0deg)translate3d(5px, 0, 0);
    }

    100% {
        transform: rotate(360deg)translate3d(5px, 0, 0);
    }
}

/* spin3 */
@keyframes spin3 {
    0% {
        transform: rotate(0deg)translate3d(6px, 0, 0);
    }

    100% {
        transform: rotate(360deg)translate3d(6px, 0, 0);
    }
}

/* spin4 */
@keyframes spin4 {
    0% {
        transform: rotate(0deg)translate3d(3px, 0, 0);
    }

    100% {
        transform: rotate(-360deg)translate3d(3px, 0, 0);
    }
}

/* spin5 */
@keyframes spin5 {
    0% {
        transform: rotate(0deg)translate3d(2px, 0, 0);
    }

    100% {
        transform: rotate(-360deg)translate3d(2px, 0, 0);
    }
}

.circleWrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.circle {
    position: absolute;
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.c_pos01 {
    top: 0;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.9);
    -webkit-animation: spin1 5s linear infinite;
    -moz-animation: spin1 5s linear infinite;
    -ms-animation: spin1 5s linear infinite;
    -o-animation: spin1 5s linear infinite;
    animation: spin1 5s linear infinite;
    /*  	animation: bo-co1 10s infinite;
    ﾃつ�ﾃつ�  -webkit-animation: bo-co1 10s infinite; */
}

.c_pos02 {
    top: 0;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.9);
    -webkit-animation: spin2 4s linear infinite;
    -moz-animation: spi2 4s linear infinite;
    -ms-animation: spin2 4s linear infinite;
    -o-animation: spin2 4s linear infinite;
    animation: spin2 4s linear infinite;
    /* 	animation: bo-co2 9s infinite;
    ﾃつ�ﾃつ�  -webkit-animation: bo-co2 9s infinite; */
}

.c_pos03 {
    top: 0;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.9);
    -webkit-animation: spin3 7s linear infinite;
    -moz-animation: spi3 7s linear infinite;
    -ms-animation: spin3 7s linear infinite;
    -o-animation: spin3 7s linear infinite;
    animation: spin3 7s linear infinite;
    /* 	animation: bo-co3 11s infinite;
    ﾃつ�ﾃつ�  -webkit-animation: bo-co3 11s infinite; */
}

.c_pos04 {
    top: 0;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.9);
    -webkit-animation: spin4 7s linear infinite;
    -moz-animation: spi4 7s linear infinite;
    -ms-animation: spin4 7s linear infinite;
    -o-animation: spin4 7s linear infinite;
    animation: spin4 7s linear infinite;
    /* 	animation: bo-co1 12s infinite;
    ﾃつ�ﾃつ�  -webkit-animation: bo-co1 12s infinite; */
}

.c_pos05 {
    top: 0;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.9);
    -webkit-animation: spin5 8s linear infinite;
    -moz-animation: spi5 8s linear infinite;
    -ms-animation: spin5 8s linear infinite;
    -o-animation: spin5 8s linear infinite;
    animation: spin5 8s linear infinite;
    /* 	animation: bo-co2 10s infinite;
    ﾃつ�ﾃつ�  -webkit-animation: bo-co2 10s infinite; */
}

/*#endregion spn animation*/
/*#region rotate animation*/
.rot360 {
    transform: rotate(0deg);
    animation: anim_rotate360 10s linear infinite;
}

@keyframes anim_rotate360 {
    0% {
        transform: rotate(0deg);
    }

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

/*#endregion rotate animation*/
/*#region clip-left-right animation*/
.panir3 {
    display: inline-block;
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
    transition: all 1s cubic-bezier(0.5, 1, 0.89, 1);
    vertical-align: middle;
}

.panir3.on {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
}

.panil3 {
    display: inline-block;
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%);
    transition: all 1s cubic-bezier(0.5, 1, 0.89, 1);
    vertical-align: middle;
}

.panil3.on {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
}

/*#endregion clip-left-right animation*/
/*#region pani text rising animation*/
.pani4 {
    display: flex;
    overflow: hidden;
}

.pani4 span {
    display: block;
    transform: translateY(100%);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: transparent;
}

.pani4.on span {
    color: #222;
    transform: translateY(0);
}

.pani4 span:nth-child(0) {
    transition-delay: 0ms;
}

.pani4 span:nth-child(1) {
    transition-delay: 80ms;
}

.pani4 span:nth-child(2) {
    transition-delay: 160ms;
}

.pani4 span:nth-child(3) {
    transition-delay: 240ms;
}

.pani4 span:nth-child(4) {
    transition-delay: 320ms;
}

.pani4 span:nth-child(5) {
    transition-delay: 400ms;
}

.pani4 span:nth-child(6) {
    transition-delay: 480ms;
}

.pani4 span:nth-child(7) {
    transition-delay: 560ms;
}

.pani4 span:nth-child(8) {
    transition-delay: 640ms;
}

.pani4 span:nth-child(9) {
    transition-delay: 720ms;
}

.pani4 span:nth-child(10) {
    transition-delay: 800ms;
}

.pani4 span:nth-child(11) {
    transition-delay: 880ms;
}

.pani4 span:nth-child(12) {
    transition-delay: 960ms;
}

.pani4 span:nth-child(13) {
    transition-delay: 1040ms;
}

.pani4 span:nth-child(14) {
    transition-delay: 1120ms;
}

.pani4 span:nth-child(15) {
    transition-delay: 1200ms;
}

.pani4 span:nth-child(16) {
    transition-delay: 1280ms;
}

.pani4 span:nth-child(17) {
    transition-delay: 1360ms;
}

.pani4 span:nth-child(18) {
    transition-delay: 1440ms;
}

.pani4 span:nth-child(19) {
    transition-delay: 1520ms;
}

.pani4 span:nth-child(19) {
    transition-delay: 1600ms;
}

/*endregion pani text rising animation*/
/*#region evelit animaiton*/
.initani {
    overflow: hidden;
    position: relative;
}

.initani::before,
.initani::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.initani_bw::before {
    background-color: #2b3f6c;
}

.initani_bw::after {
    background-color: #fff;
}

.initani.initani_ww::before {
    background-color: #fff;
}

.initani.initani_ww::after {
    background-color: #fff;
}

.initani.initani_wb::before {
    background-color: #fff;
}

.initani.initani_wb::after {
    background-color: #2b3f6c;
}

.initani.initani_wbk::before {
    background-color: #fff;
}

.initani.initani_wbk::after {
    background-color: #1A1A1A;
}

.initani.initani_bkw::before {
    background-color: #1A1A1A;
}

.initani.initani_bkw::after {
    background-color: #fff;
}

.initani.initani_bg::before {
    background-color: #2b3f6c;
}

.initani.initani_bg::after {
    background-color: #DEE9EC;
}

.initani.initani_bc::before {
    background-color: #2b3f6c;
}

.initani.initani_bc::after {
    background-color: #E9F9FA;
}

.initani.initani_wg::before {
    background-color: #fff;
}

.initani.initani_wg::after {
    background-color: #A9CD36;
}

.initani.initani_wy::before {
    background-color: #fff;
}

.initani.initani_wy::after {
    background-color: #A9CD36;
}

.initani.initani_wc::before {
    background-color: #fff;
}

.initani.initani_wc::after {
    background-color: #E9F9FA;
}

.initani.initani_tw::before {
    background-color: transparent;
}

.initani.initani_tw::after {
    background-color: #fff;
}

.initani.initani_tb::before {
    background-color: transparent;
}

.initani.initani_tb::after {
    background-color: #2b3f6c;
}

.initani::before {
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: -webkit-transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.initani::after {
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0) translateX(0);
    -ms-transform: scaleX(0) translateX(0);
    transform: scaleX(0) translateX(0);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: -webkit-transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.anistart::before {
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}

.anistart::after {
    -webkit-transform: scaleX(1) translateX(101%);
    -ms-transform: scaleX(1) translateX(101%);
    transform: scaleX(1) translateX(101%);
}

/*#endregion evelit animaiton*/
/*region coiran animation*/
@keyframes slideShow {
    0% {
        opacity: 0;
        transform: scale(1);
        -ms-transform: scale(1);
    }

    5% {
        opacity: 1
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
        transform: scale(1.1);
        -ms-transform: scale(1.1);
    }

    100% {
        opacity: 0;
        transform: scale(1);
        -ms-transformm: scale(1);
    }
}

@-o-keyframes slideShow {
    0% {
        opacity: 0;
        -o-transform: scale(1);
    }

    5% {
        opacity: 1
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
        -o-transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -o-transformm: scale(1);
    }
}

@-moz-keyframes slideShow {
    0% {
        opacity: 0;
        -moz-transform: scale(1);
    }

    5% {
        opacity: 1
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
        -moz-transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -moz-transformm: scale(1);
    }
}

@-webkit-keyframes slideShow {
    0% {
        opacity: 0;
        -webkit-transform: scale(1);
    }

    5% {
        opacity: 1
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
        -webkit-transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -webkit-transformm: scale(1);
    }
}

/*endregion coiran animation*/
/*#region io animation*/
.pioup {
    -webkit-transition: color 0.4s ease 0s, background-color 0.4s ease 0s, opacity 1.0s ease 0s, -webkit-transform 1.0s ease 0s;
    transition: color 0.4s ease 0s, background-color 0.4s ease 0s, opacity 1.0s ease 0s, transform 1.0s ease 0s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: opacity, transform;
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
}

.pioup.on {
    opacity: 1 !important;
    -webkit-transform: translate3d(0, 0, 0) scale(1) rotate(0deg) !important;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg) !important;
}

/*#endregion io animation*/
/*#endregion ANIMATION*/

/*#region COMMON*/
.pmh_anchor {
    transform: translateY(-100px);
    content: "";
    width: 100%;
    height: 0;
}

.jp_wbr {
    word-break: keep-all;
}

.disb_sp {
    display: none !important;
}

.disb_pc {
    display: block !important;
}

/*#endregion COMMON*/

/*#region HEADER*/

header {
    margin: 0px;
    width: 100%;
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--headerH);
    z-index: 111;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
}

.header_set {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_left {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_logo {
    color: #1571DA;
    font-size: 24px;
    line-height: 1.2;
}

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

.headmenu_ul {
    display: flex;
    justify-content: flex-end;
}

.headmenu_a {
    padding: 0 16px;
    height: var(--headerH);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all .1s;
}

.headmenu_a .headmenu_cap {
    letter-spacing: 1.5px
}

.headmenu_shape {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.headmenu_uline {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: "";
    height: 1px;
    background-color: #000;
    width: 0;
    transition: all .3s;
}

.headmenu_a:hover .headmenu_uline {
    width: 100%;
}

.headmenu_a.headmenu_contact {
    margin-left: 20px;
    padding-right: 0;
}

.headmenu_a.headmenu_contact .headmenu_shape {
    padding: 0 30px;
    height: 40px;
    border: solid 1px #fff;
    border-radius: 30px;
    transition: all .9s;
    background: linear-gradient(271.09deg, #1854D6 3.34%, #1A82FA 98.56%);
    display: flex;
    align-items: center;
}

.headmenu_a.headmenu_contact:hover .headmenu_shape {
    opacity: 0.6;
}

.headmenu_a.headmenu_contact img {
    padding: 0 5px;
}

.headmenu_a.headmenu_contact .headmenu_shape .headmenu_cap {
    color: #FFFF;
}

.hamburger_set {
    display: none;
    min-height: 36px;
    line-height: 34px;
    text-align: center;
    font-size: 10px;
    position: relative;
    z-index: 130;
}

.hamburger_set a {
    color: #000;
}

.hamburger_btn {
    margin: 0;
    vertical-align: middle;
    display: inline-block;
    padding: 0px;
    width: 32px;
    height: 15px;
    cursor: pointer;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.hamburger_btn span {
    background: #000;
    display: block;
    width: 30px;
    height: 2px;
    border-radius: 0px;
    margin: 0px 1px 4px 1px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.pst_blackheader .hamburger_btn span {
    background: #1A1A1A;
}

.hamburger_btn span:last-child {
    margin-bottom: 0px;
}

.hamburger_btn span:nth-child(2) {
    width: 23px;
}

.hamburger_btn span:nth-child(3) {
    width: 15px;
}

.hamburger_btn.pst_open span:nth-child(1),
.hamburger_btn.pst_open span:nth-child(3) {
    transform: translate(0px, 7px) rotate(-45deg) scalex(1);
    margin-bottom: 0px;
}

.hamburger_btn.pst_open span:nth-child(2) {
    height: 0;
    margin-bottom: 0px;
    width: 0px;
}

.hamburger_btn.pst_open span:nth-child(3) {
    transform: translate(0px, 5px) rotate(45deg) scalex(1);
    width: 30px;
}

.menu-toggle-btn-text-hp {
    font-size: 10px;
    line-height: 6px;
    color: #00B5C4;
    font-weight: 600;
    letter-spacing: -0.39px;
    text-transform: uppercase;
    text-align: center;
    margin: 0px;
    padding: 9px 0px 0px;
    position: relative;
}

.hide-scroll {
    overflow: hidden !important;
}

/*#endregion HEADER*/


/*#region pg specials*/
.display-flex {
    display: flex;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

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

.justify-content-end {
    display: flex;
    justify-content: flex-end;
}

.justify-content-center {
    display: flex;
    justify-content: center;
}

.justify-content-start {
    display: flex;
    justify-content: flex-start;
}

.align-items-end {
    align-items: flex-end;
}

.align-items-baseline {
    align-items: baseline;
}

.align-items-center {
    align-items: center;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.justify-flex-end {
    display: flex;
    justify-content: flex-end;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.row_reverse {
    flex-direction: row-reverse;
}

/* -----theme block start------- */
.light {
    background-color: #F3F8FD;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .container {
        width: 90%;
        margin: 0 auto;
    }
}

@media (max-width: 450px) {
    .container {
        width: auto;
        margin: 0 20px;
    }
}

.w_50 {
    width: 50%;
}

.w_45 {
    width: 45%;
}

.w_48 {
    width: 48%;
}

.w_60 {
    width: 60%;
}

.w_35 {
    width: 35%;
}

.w_25 {
    width: 25%;
}

.w_100 {
    width: 100%;
}

.w_70 {
    width: 70%;
}

img {
    object-fit: cover;
    margin: 0;
    padding: 0;
}

/* -----theme block end------- */

/* ----------page content style---------- */
/* ---------banner block----------- */
.theme-block {
    position: relative;
    z-index: 10;
}

.fixed_circles {
    z-index: 0;
    position: fixed;
    height: 100vh;
    width: 100%;
}

.fixed_circles img:last-child {
    position: absolute;
    bottom: 0;
    right: -1100px;
}

.fixed_circles img:first-child {
    position: absolute;
    top: 0;
    left: -1000px;
}

.header_logo {
    padding-top: 50px;
}

.banner_circle {
    position: absolute;
    top: 22.6vw;
    width: 44vw;
    height: 44vw;
    opacity: 0.2;
    backdrop-filter: blur(200px);
    left: -19.9vw;
    background-color: #18B2A8;
    border-radius: 50%;
}

.fixed_btn {
    position: fixed;
    z-index: 99;
    bottom: 0;
    right: 0;
    display: none;
}

@media (max-width: 767px) {
    .fixed_btn {
        width: 100%;
        text-align: center;
    }
}

.inquiry_btn {
    display: inline-block;
    text-align: center;
    animation: btnanimation 1.5s linear 0s infinite alternate;
}

@keyframes btnanimation {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.inquiry_btn img {
    margin-bottom: -30px;
}

.inquiry_btn .btn_wrapper {
    width: fit-content;
    padding: 0 30px 0 50px;
    height: 100px;
    border-radius: 100px;
    background-image: linear-gradient(295.41deg, #FE9D00 13.25%, #FF5900 80.1%);
    box-shadow: 0px 2px 10px 0px #2876CB4D;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: 0px 2px 10px 0px #2876CB4D;
}

.inquiry_btn .btn_wrapper p {
    color: #FFF;
    font-size: 32px;
    line-height: 1.2;
    margin: 0;
}

.inquiry_btn .btn_wrapper .btn_circle {
    width: 60px;
    height: 60px;
    border: 1px solid #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FE6100;
    background-color: #FFF;
    font-size: 20px;
    line-height: 1.2;

    flex-shrink: 0;
}

@media (max-width :1100px) {
    .inquiry_btn .btn_wrapper {
        height: 80px;
        padding: 0 20px 0 40px;
    }

    .inquiry_btn .btn_wrapper p {
        font-size: 26px;
    }

    .inquiry_btn img {
        height: 70px;
    }

    .inquiry_btn .btn_wrapper .btn_circle {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .inquiry_btn img {
        height: 54px;
    }
}

@media (max-width : 576px) {
    .inquiry_btn .btn_wrapper {
        height: 60px;
        padding: 0 20px;
        gap: 10px;
    }

    .inquiry_btn .btn_wrapper p {
        font-size: 18px;
    }

    .inquiry_btn img {
        height: 50px;
        margin-bottom: -20px;
    }

    .inquiry_btn .btn_wrapper .btn_circle {
        width: 45px;
        height: 45px;
        font-size: 15px;
    }
}

.banner_block {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url(../img/background.png);
    background-position: center;
    background-size: cover;
}

.banner_content {
    margin-top: 115px;
}

.banner_content p {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 35px;
}

.banner_content p span {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0%;
}

.banner_content h3 {
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
}

.banner_content .text_container {
    margin-bottom: 62px;
}

@media (max-width : 1200px) {
    .banner_block {
        height: auto;
        padding-bottom: 7.4vw;
    }

    .banner_content {
        margin-top: 9.5vw;
    }

    .banner_content .text_container {
        margin-bottom: 5vw;
    }

    .banner_content p span {
        font-size: 2vw;
    }

    .banner_content p {
        font-size: 1.33vw;
        margin-bottom: 3vw;
    }

    .banner_content h3 {
        font-size: 3.33vw;
    }

    .banner_block .inquiry_btn .btn_wrapper {
        height: 13vw;
        padding: 0 2.5vw 0 4.16vw;
    }

    .banner_block .inquiry_btn .btn_wrapper p {
        font-size: 2.66vw;
    }

    .banner_block .inquiry_btn img {
        margin-bottom: -2.5vw;
        width: 37vw;
        height: auto;
    }

    .banner_block .inquiry_btn .btn_wrapper .btn_circle {
        width: 5vw;
        height: 5vw;
        font-size: 1.66vw;
    }

    .btn_wrapper svg {
        width: 2.1vw;
    }
}

@media (max-width :991px) {
    .header_logo img {
        width: 170px;
    }
}

@media (max-width :576px) {
    .header_logo img {
        width: 280px;
    }

    .banner_block {
        height: auto;
        padding-bottom: 70px;
        background-position: 80%;
    }

    .banner_content {
        margin-top: 9.5vw;
    }

    .banner_content .text_container {
        margin-bottom: 5vw;
    }

    .banner_content p span {
        font-size: 16px;
    }

    .banner_content p {
        font-size: 14px;
        margin-bottom: 3vw;
    }

    .banner_content h3 {
        font-size: 18px;
    }

    .banner_block .inquiry_btn .btn_wrapper {
        height: 13vw;
        padding: 0 2.5vw 0 4.16vw;
        gap: 10px;
    }

    .banner_block .inquiry_btn .btn_wrapper p {
        font-size: 15px;
    }

    .banner_block .inquiry_btn img {
        margin-bottom: -15px;
        width: 200px;
    }

    .banner_block .inquiry_btn .btn_wrapper .btn_circle {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }

    .btn_wrapper svg {
        width: 12px;
    }
}

/* -----------explanation block----------- */
.explanation_block {
    position: relative;
}

.explanation_block .inquiry_btn {
    position: absolute;
    top: 0;
    right: 20px;
}

h2.block_title {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h2.block_title span:first-child {
    font-size: 40px;
    line-height: 1.2;
    position: absolute;
}

h2.block_title span:last-child {
    font-weight: 275;
    font-size: 120px;
    line-height: 1.5;
    font-family: var(--fontT);
    color: #2876CB;
    opacity: .1;
    margin-left: auto;
}

@media (max-width : 1100px) {
    h2.block_title span:first-child {
        font-size: 36px;
    }

    h2.block_title span:last-child {
        font-size: 110px;
    }
}

@media (max-width : 991px) {
    h2.block_title span:first-child {
        font-size: 32px;
    }

    h2.block_title span:last-child {
        font-size: 96px;
    }
}

@media (max-width : 676px) {
    h2.block_title span:first-child {
        font-size: 32px;
    }

    h2.block_title span:last-child {
        font-size: 96px;
    }
}

@media (max-width : 576px) {
    h2.block_title span:first-child {
        font-size: 24px;
        position: relative;
    }

    h2.block_title span:last-child {
        font-size: 68px;
        margin: 0 auto;
    }

    h2.block_title {
        flex-direction: column;
    }
}

.explanation_content img {
    width: 100%;
}

.explanation_content p {
    padding: 20px;
    font-size: 18px;
    line-height: 1.2;
    color: #6B7D90;
}

@media (max-width: 1300px) {
    .explanation_content p {
        font-size: 17px;
        padding: 15px 10px;
    }
}

/* ---------------price block style-------------- */
.taxe_table p {
    font-size: 16px;
    line-height: 1.5;
    color: #6B7D90;
}

.taxe_table .table_wrapper {
    overflow-x: auto;
    width: 100%;
}

.taxe_table .table_wrapper table {
    width: 100%;
}

@media screen and (max-width:768px) {
    .taxe_table .table_wrapper table {
        white-space: nowrap;
        width: 650px;

    }
}

.taxe_table .table_wrapper table th {
    background-color: #455D73;
    color: #FFF;
    border-collapse: collapse;
    border-spacing: 0;
    text-align: center;
    padding: 13px 0;
}

.taxe_table .table_wrapper table,
td,
th {
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 16;
}

.taxe_table .table_wrapper table td {
    color: #6B7D90;
    padding: 19px 0;
    border-bottom: 1px solid #DCE9F6;
}

.taxe_table .table_wrapper table tr td:first-child {
    padding-left: 38px;
    width: 30%;
    text-align: left;
    color: #2F3D4C;
}

.taxe_table .table_wrapper p {
    font-size: 17px;
    line-height: 1.5;
}

.taxe_table .table_wrapper table tr td {
    text-align: center;
}

.price_block .salary {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.2;
}

.price_block .salary img {
    width: 100%;
}

@media (max-width :991px) {
    .taxe_table .table_wrapper table tr td:first-child {
        padding-left: 20px;
    }

    .price_block .salary {
        font-size: 21px;
    }
}

@media (max-width : 676px) {
    .taxe_table .table_wrapper table tr td:first-child {
        padding-left: 10px;
    }

    .taxe_table .table_wrapper table th {
        font-size: 15px;
    }
}

/* -----------------voice block------------------- */
.voice_block {
   }

.voice_content {
    display: flex;
    gap: 30px;
}

@media screen and (max-width:767px) {
    .voice_content {
        margin-bottom: 40px;
    }
}

.voice_item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0px 2px 6px 0px #2876CB38;
}

.voice_item .row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.voice_item .row span {
    font-size: 14px;
    line-height: 1.2;
    color: #000000;
}

.voice_item .row img {
    width: 60px;
    border-radius: 50%;
    background-color: #2876CB;
}

.voice_item .row p {
    font-size: 14px;
    line-height: 1.2;
    color: #000000;
}

.voice_item .row p span {
    font-size: 24px;
    line-height: 1.2;
    color: #000000;
}

.voice_item>p {
    font-size: 14px;
    line-height: 1.2;
    color: #000000;
}

/* ---------------reasone block------------------- */
.reasone_content {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 60px 40px;
}

.reasone_item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.reasone_item:before {
    left: 10px;
    top: 0;
    font-family: DIN 2014;
    font-weight: 400;
    font-size: 32px;
    line-height: 40.83px;
    letter-spacing: 0%;
}

.reasone_item:after {
    position: absolute;
    font-size: 32px;
    line-height: 1.25;
    color: #2876CB;
    left: 10px;
    top: -20px;
}

.reasone_item:nth-child(1):after {
    content: "01";
}

.reasone_item:nth-child(2):after {
    content: "02";
}

.reasone_item:nth-child(3):after {
    content: "03";
}

.reasone_item:nth-child(4):after {
    content: "04";
}

.reasone_item:nth-child(5):after {
    content: "05";
}

.reasone_item:nth-child(6):after {
    content: "06";
}

.reasone_item img {
    width: 100%;
}

.reasone_item h3 {
    font-size: 24px;
    line-height: 1.2;
}

.reasone_item p {
    font-size: 16px;
    line-height: 1.2;
    color: #6B7D90;
}

@media (max-width: 1100px) {
    .reasone_content {
        gap: 45px 20px;
    }

    .reasone_item h3 {
        font-size: 19px;
    }

    .reasone_item p {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .reasone_content {
        grid-template-columns: auto auto;
        gap: 45px 40px;
    }

    .reasone_item h3 {
        font-size: 19px;
    }

    .reasone_item p {
        font-size: 15px;
    }
}

@media (max-width: 450px) {
    .reasone_content {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .reasone_item h3 {
        font-size: 19px;
    }

    .reasone_item p {
        font-size: 15px;
    }
}

/* ------------------btn block------------------ */
.btn_block {
    text-align: center;
}

/* ----------------company block---------------- */
.company_content {
    display: flex;

    justify-content: space-between;
}

.company_content .company_left {
    width: 40%;
}

.company_content .company_left img {
    width: 100%;
}

.company_content .company_right {
    width: 53.33%;
}

.company_content .comapny_item {
    display: grid;
    grid-template-columns: 37.65% 62.35%;
    align-items: center;
    border-bottom: 1px solid #DCE9F6;
    position: relative;
    padding: 33px 0;
}

.company_content .comapny_item:first-child {
    padding-top: 0;
}

.company_content .comapny_item .item_heading {
    padding: 0 40px;
    position: relative;
}

.company_content .comapny_item span {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 37.65%;
    height: 1px;
    background-color: #2876CB;
}

.company_content .item_heading,
.company_content .item_content p {
    font-size: 16px;
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .company_content .comapny_item {
        padding: 25px 0;
    }

    .company_content .comapny_item .item_heading {
        padding-left: 10px;
    }
}

@media (max-width : 821px) {
    .company_content {
        flex-direction: column;
        gap: 30px;
    }

    .company_content .company_left {
        width: 60%;
        margin: 0 auto;
    }

    .company_content .company_right {
        width: 75%;
    }
}

@media (max-width : 676px) {
    .company_content .company_left {
        width: 70%;
        margin: 0 auto;
    }

    .company_content .company_right {
        width: 100%;
    }
}

@media (max-width : 450px) {
    .company_content .company_left {
        width: 100%;
    }

    .company_content .comapny_item {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .company_content .comapny_item .item_heading {
        padding: 0;
    }

    .company_content .item_heading,
    .company_content .item_content p {
        font-size: 15px;
    }
}

/* ------------------contact block---------------- */
.contactinfo_btn {
    border-radius: 5px;
    border: 1px solid #2876CB;
    display: flex;
    display: grid;
    grid-template-columns: auto auto;
    width: fit-content;
    align-items: center;
    background-color: #2876CB;
    margin: 0 auto;
}

.contact_form .form_field.agree {
    display: flex;
    justify-content: center;
}

.contact_form {
    width: 752px;
    margin: 0 auto;
}

.contact_form .form_field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 15px 0;
}

.contact_form .form_field.dates .field_control {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact_form .form_field .field_cap {
    font-size: 16px;
    line-height: 1.5;
    width: 204px;
    color: #000000;
}

.contact_form .form_field .field_cap span {
    color: #FF0000;
}

.contact_form .form_field .field_control {
    width: 68.6%;
}

.contact_form .form_field.inquiry_item,
.pagecontact .contact_form .form_field.inquiry_content {
    align-items: flex-start;
}

.contact_form .form_field.inquiry_item .field_control {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact_form .form_field .field_control input,
textarea,
select {
    width: 100%;
    background-color: transparent;
    border: 1px solid #DCE9F6;
    padding: 8px 15px;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 3px;
    outline: none;
}

.contact_form .form_field .field_control textarea {
    height: 40px;
}

.contact_form .form_field .field_control input::placeholder,
textarea::placeholder {
    color: #000000;
    opacity: .4;
}

.radio_btn {
    position: relative;
    cursor: pointer;
    font-size: 17px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 11px;
}

.radio_btn input[type=checkbox] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio_btn span {
    color: #000000;
    font-size: 16px;
    line-height: 1.5;
}

.contact_form .form_field .field_control input.month,
.contact_form .form_field .field_control input.day {
    width: 52px;
    height: 40px;
    z-index: 20;
}

.checkmark {
    position: relative;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border-radius: 2px;
    border: 1px solid #DCE9F6;
}

.dates .checkmark {
    border-radius: 50%;
}

.radio_btn input:checked~.checkmark {
    background-color: transparent;
}

.dates .radio_btn .checkmark:after {
    border-radius: 50%;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio_btn input:checked~.checkmark:after {
    display: block;
}

.radio_btn .checkmark:after {
    top: 5px;
    left: 5px;
    width: 8px;
    height: 8px;
    background-color: #000000;
}

.contact_form .field_contactbtn {
    text-align: center;
}

.contact_form .field_contactbtn input,
.contact_form .field_contactbtn #form_submit,
.contact_form .field_contactbtn .form_submit,
.c-btn a {
    /*display: inline-block;
    font-size: 16px;
    line-height: 1.5;
    background-color: #2876CB;
    color: #FFF;
    padding: 15px 30px;
    border-radius: 5px;
    border: 1px solid #2876CB;*/
}

.contact_form .field_contactbtn .form_submit.back {
    color: #2876CB;
    background-color: #fff;
}

@media (max-width : 991px) {
    .contact_form {
        width: 80%;
    }

    .contactinfo_btn .col span {
        font-size: 18px;
    }

    .contactinfo_btn .col h2 {
        font-size: 36px;
    }

    .contactinfo_btn span:first-child {
        width: 50px;
        height: 50px;
    }
}

@media (max-width : 767px) {
    .contact_form .form_field {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .contact_form {
        width: 90%;
    }

    .contact_form .form_field .field_control {
        width: 100%;
    }

}

@media (max-width :676px) {
    .contactinfo_btn {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .contactinfo_btn .col:last-child {
        width: 100%;
    }

    .contactinfo_btn .col {
        padding: 15px 30px;
    }
}

@media (max-width : 450px) {
    .contact_form {
        width: 100%;
    }

    .contact_form .form_field .field_cap {
        font-size: 15px;
        width: 100%;
    }

    .contact_form .field_contactbtn input {
        padding: 10px 30px;
    }

    .contact_form .form_field .field_control input,
    textarea,
    select {
        font-size: 15px;
    }
}

/* -----------------doctor block----------------- */
.doctor_content {
    display: flex;
    justify-content: space-between;
}

.doctor_content .doctor_left {
    width: 42%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.doctor_content .doctor_left img {
    width: 100%;
}

.doctor_content .doctor_left p {
    font-size: 16px;
    line-height: 1;
}

.doctor_content .doctor_left p span {
    font-size: 24px;
    line-height: 1;
}

.doctor_content .doctor_right {
    width: 53.33%;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.doctor_content .doctor_right .col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.doctor_content .doctor_right h3 {
    font-size: 24px;
    line-height: 1.2;
}

.doctor_content .doctor_right p {
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
}

@media (max-width: 1100px) {
    .doctor_content .doctor_right {
        gap: 30px;
    }

    .doctor_content .doctor_right .col {
        gap: 15px;
    }
}

@media (max-width: 991px) {
    .doctor_content .doctor_right p {
        font-size: 15px;
    }

    .doctor_content .doctor_right h3 {
        font-size: 21px;
    }
}

@media (max-width :676px) {
    .doctor_content {
        flex-direction: column;
        gap: 40px;
    }

    .doctor_content .doctor_right {
        width: 100%;
    }

    .doctor_content .doctor_left {
        width: 50%;
    }

    .doctor_content .doctor_left p span {
        font-size: 21px;
    }

    .doctor_content .doctor_left p {
        font-size: 15px;
    }
}

@media (max-width : 450px) {
    .doctor_content .doctor_left {
        width: 100%;
    }
}

/* ---------------footer style----------------- */
footer {
    position: relative;
    background-color: #EEF4FB;
    z-index: 1000;
}

footer .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.footer_bottom {
    display: flex;
    gap: 50px;
}

footer p {
    font-size: 16px;
    line-height: 1.5;
}

footer a {
    text-decoration: underline;
    font-size: 16px;
    line-height: 1.5;
}

@media (max-width : 991px) {
    footer p {
        font-size: 15px;
    }

}

@media (max-width : 676px) {
    footer .footer_top {
        flex-direction: column-reverse;
        gap: 30px;
    }

    footer .footer_bottom {
        flex-direction: column;
        gap: 40px;
    }

    .footer_logo img {
        width: 300px;
    }

}

/* ------------owl casusel style------------ */
.owl-theme .owl-dots {
    bottom: -40px;
    height: 1px;
    left: 0;
    width: 201px;
    background-color: #DCE9F6;
}

.owl-theme .owl-dots .owl-dot span {
    height: 2px;
    width: 67px;
    background-color: #DCE9F6;
    margin: 0;
    bottom: -40px;
}

.owl-theme .owl-dots .owl-dot.active span {
    width: 67px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #2F3D4C;
}

@media (max-width :767px) {
    .owl-theme .owl-dots .owl-dot span {
        width: 40px;
    }
}

@media (max-width : 576px) {
    .owl-theme .owl-dots .owl-dot span {
        width: 15px;
    }
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    bottom: -60px;
    top: unset;
    left: unset;
    right: 60px;
}

.owl-carousel .owl-nav button.owl-prev {
    right: 0;
}

.owl-theme .owl-dots::after {
    content: "";
}

.owl-theme .owl-dots::before {
    content: "";
    font-size: 27px;
    color: red;
}

.error-txt {
    color: #e03535;
    margin: 5px 0 0 0;
}


.term_popup {
    display: none;
    padding: 3%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    opacity: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

.term_popup.on {
    display: block;
    opacity: 1;
}

.term_popup .contents {
    padding: 15px;
    max-width: 780px;
    background-color: #fff;
    border-radius: 4px;
    position: relative;
    overflow: auto;
}

@media screen and (min-width: 768px) {
    .term_popup .contents {
        margin: 0 auto;
        padding: 15px 45px 20px;
        max-width: 950px;
    }
}

.term_popup .term_popup_title:nth-of-type(n + 2) {
    margin-top: 20px;
}

.term_popup p:not([class]) {
    font-size: 12px;
    margin-bottom: 10px;
}

.term_popup ol {
    margin-bottom: 10px;
}

.term_popup ol li {
    font-size: 12px;
    text-indent: -1em;
    padding-left: 1em;
}

.term_popup ul {
    margin-bottom: 10px;
}

.term_popup ul li {
    font-size: 12px;
    text-indent: -1em;
    padding-left: 1em;
}

.term_popup .btn_close {
    font-size: 26px;
    text-align: right;
    cursor: pointer;
}

.fv_btn_wrap {
    display: inline-block;
    margin-top: 62px;
    ;
    position: relative;
}

.btn_block {
    position: relative;
}

.popup {
    position: absolute;
    z-index: 1;
    display: inline-block;
    width: 450px;
    top: -60%;
    left: calc(50% - 225px);
    cursor: pointer;
    animation: btnanimation 1.5s linear 0s infinite alternate;
}

@media screen and (max-width:767px) {
    .popup {
        width: 280px;
        left: calc(50% - 140px);
    }

    .fv_btn_wrap .popup {
        width: 210px;
        left: calc(50% - 105px);
        top: -30px;
    }

    .price_block {
        margin-top: 50px;
    }
}

.popup img {
    width: 100%;
}

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

@media screen and (min-width:768px) {
    .sp {
        display: none;
    }
}

.c-btn a span {
    color: #fff;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    height: 100%;
}



.seminar_outer {
    padding: 0 0 5em;
}

.seminar_outer.pt50 {
    padding-top: 5em;
}

@media screen and (min-width:768px) {
    .seminar_outer .seminar_details {
        display: flex;
        flex-wrap: wrap;
        margin: 0 auto;
        max-width: 900px;
    }
}

.seminar_outer .seminar_details dt {
    font-size: 18px;
    margin: 25px auto 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #DCE9F6;
    position: relative;
}

@media screen and (min-width:768px) {
    .seminar_outer .seminar_details dt {
        width: 30%;
    }
}

.seminar_outer .seminar_details dt::after {
    content: "";
    display: block;
    width: 43.65%;
    height: 1px;
    background-color: #2876CB;
    position: absolute;
    bottom: -1px;
    left: 0;
}

@media screen and (min-width:768px) {
    .seminar_outer .seminar_details dt::after {
        width: 52.65%;
    }
}

.seminar_outer .seminar_details dd {
    font-size: 14px;
    padding-left: 15px;
}

@media screen and (min-width:768px) {
    .seminar_outer .seminar_details dd {
        margin: 25px auto 10px;
        padding-bottom: 5px;
        width: 70%;
        border-bottom: 1px solid #DCE9F6;
    }
}

.seminar_outer .seminar_details dd p {
    font-size: 15px;
    line-height: 1.4;
}

@media screen and (min-width:768px) {
    .seminar_outer .seminar_details dd p {
        font-size: 16px;
    }
}

.seminar_outer .seminar_details dd p:nth-of-type(n+2) {
    margin-top: 1em;
}

.seminar_outer .map {
    margin-top: 15px;
    max-width: 500px;
    position: relative;
}

.seminar_outer .map iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}

.seminar_outer h3 {
    font-size: 20px;
}

.seminar_outer .lecturer_img {
    margin: 0 auto;
    max-width: 700px;
}

.seminar_outer .lecturer_img img {
    width: 100%;
}

.seminar_outer .lecturer_introduction {}

.seminar_outer .lecturer_introduction dt {}

.seminar_outer .lecturer_introduction dd {}



.owl-carousel .owl-stage{
    display: flex;
}
.owl-carousel.owl-drag .owl-item{
    margin-bottom: 10px;
    height: auto;
}
.voice_item{
    height: 100%;
}
.voice_item p:last-child{
    margin-top: auto;
}